mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Use gender-neutral pronouns * Minor tweaks to comments * Remove 'their' artifact * Revert Dojo (failing package)
128 lines
4.5 KiB
TypeScript
128 lines
4.5 KiB
TypeScript
// Type definitions for nanoScroller 0.8
|
|
// Project: http://jamesflorentino.github.io/nanoScrollerJS/, https://github.com/jamesflorentino/nanoscrollerjs
|
|
// Definitions by: Yannick Beauchamp-Hurtubise <https://github.com/zihark17>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
declare namespace JQueryNanoScroller {
|
|
interface NanoScrollerOptions {
|
|
/**
|
|
* To scroll at the top or bottom.
|
|
*/
|
|
scroll?: 'top' | 'bottom';
|
|
/**
|
|
* To scroll at the top with an offset value.
|
|
*/
|
|
scrollTop?: number;
|
|
/**
|
|
* To scroll at the bottom with an offset value.
|
|
*/
|
|
scrollBottom?: number;
|
|
/**
|
|
* To scroll to an element.
|
|
*/
|
|
scrollTo?: JQuery;
|
|
/**
|
|
* To stop the operation.
|
|
* This option will tell the plugin to disable all event bindings and hide the gadget scrollbar from the UI.
|
|
*/
|
|
stop?: boolean;
|
|
/**
|
|
* Destroys nanoScroller and restores browser's native scrollbar.
|
|
*/
|
|
destroy?: boolean;
|
|
/**
|
|
* To flash the scrollbar gadget for an amount of time defined in plugin settings (defaults to 1,5s).
|
|
* Useful if you want to show the user that there is more content waiting for them.
|
|
*/
|
|
flash?: boolean;
|
|
/**
|
|
* Set to true if you want to use native scrolling in iOS 5+.
|
|
* This will disable your custom nanoScroller scrollbar in iOS 5+ and use the native one instead.
|
|
* While the native iOS scrollbar usually works much better, there could possibly be bugs in certain situations.
|
|
* @default false
|
|
*/
|
|
iOSNativeScrolling?: boolean;
|
|
/**
|
|
* Sets the minimum height of the slider element.
|
|
* @default 20
|
|
*/
|
|
sliderMinHeight?: number;
|
|
/**
|
|
* Sets the maximum height of the slider element.
|
|
* @default null
|
|
*/
|
|
sliderMaxHeight?: number | null;
|
|
/**
|
|
* Set to true to prevent page scrolling when top or bottom inside the content div is reached.
|
|
* @default false
|
|
*/
|
|
preventPageScrolling?: boolean;
|
|
/**
|
|
* Set to true to disable the resize from nanoscroller.
|
|
* Useful if you want total control of the resize event.
|
|
* If you set this option to true remember to call the reset method so that the scroll don't have strange behavior.
|
|
* @default false
|
|
*/
|
|
disableResize?: boolean;
|
|
/**
|
|
* Set to true to stop the scrollbar from auto-hiding itself.
|
|
* @default false
|
|
*/
|
|
alwaysVisible?: boolean;
|
|
/**
|
|
* Use this setting to specify the scrollbar hide delay in milliseconds if you have enabled the flash option.
|
|
* @default 1500
|
|
*/
|
|
flashDelay?: number;
|
|
/**
|
|
* A classname for scrollbar track element.
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'nano-pane'
|
|
*/
|
|
paneClass?: string;
|
|
/**
|
|
* A classname for scrollbar thumb element.
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'nano-slider'
|
|
*/
|
|
sliderClass?: string;
|
|
/**
|
|
* A classname for your content div.
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'nano-content'
|
|
*/
|
|
contentClass?: string;
|
|
/**
|
|
* A classname for scrollbar enabled mode.
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'has-scrollbar'
|
|
*/
|
|
enabledClass?: string;
|
|
/**
|
|
* A classname for scrollbar flashed mode.
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'flashed'
|
|
*/
|
|
flashedClass?: string;
|
|
/**
|
|
*
|
|
* If you change this setting, you also have to change it in the plugin's CSS file.
|
|
* @default 'active'
|
|
*/
|
|
activeClass?: string;
|
|
/**
|
|
* Set the tab order of the scrollable content.
|
|
* Set to -1 to skip over the scrollable content when tabbing.
|
|
* @default 0
|
|
*/
|
|
tabIndex?: number;
|
|
}
|
|
}
|
|
|
|
interface JQuery {
|
|
nanoScroller(options?: JQueryNanoScroller.NanoScrollerOptions): JQuery;
|
|
}
|