🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

144 lines
3.5 KiB

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent, AntdProps } from './component';
import { VNodeChild } from 'vue';
export declare class Slider extends AntdComponent {
$props: AntdProps & {
/**
* get focus when component mounted
* @default false
* @type boolean
*/
autofocus?: boolean;
/**
* The default value of slider. When range is false, use number, otherwise, use [number, number]
* @default 0 | [0, 0]
* @type number | number[]
*/
defaultValue?: number | number[];
/**
* If true, the slider will not be interactable.
* @default false
* @type boolean
*/
disabled?: boolean;
/**
* Whether the thumb can drag over tick only.
* @default false
* @type boolean
*/
dots?: boolean;
/**
* Make effect when marks not null,true means containment and false means coordinative
* @default true
* @type boolean
*/
included?: boolean;
/**
* Tick mark of Slider, type of key must be number, and must in closed interval [min, max] ,each mark can declare its own style.
* @default { number: string|VNode } | { number: { style: object, label: string|VNode } } | { number: () => VNode }
* @type object
*/
marks?: {
[key: number]: string | VNodeChild | { style: object; label: string | VNodeChild } | Function;
};
/**
* The maximum value the slider can slide to
* @default 100
* @type number
*/
max?: number;
/**
* The minimum value the slider can slide to.
* @default 0
* @type number
*/
min?: number;
/**
* dual thumb mode
* @default false
* @type boolean
*/
range?: boolean;
/**
* The granularity the slider can step through values.
* Must greater than 0, and be divided by (max - min) . When marks no null, step can be null.
* @default 1
* @type number | null
*/
step?: number | null;
/**
* Slider will pass its value to tipFormatter, and display its value in Tooltip, and hide Tooltip when return value is null.
* @default IDENTITY
* @type Function | null
*/
tipFormatter?: Function | null;
/**
* The value of slider. When range is false, use number, otherwise, use [number, number]
* @type number | number[]
*/
value?: number | number[];
/**
* If true, the slider will be vertical.
* @default false
* @type boolean
*/
vertical?: boolean;
/**
* If true, Tooltip will show always, or it will not show anyway, even if dragging or hovering.
* @default false
* @type boolean
*/
tooltipVisible?: boolean;
/**
* Set Tooltip display position. Ref Tooltip
* @see https://antdv.com/components/tooltip/
*/
tooltipPlacement?: string;
/**
* The DOM container of the Tooltip,
* the default behavior is to create a div element in body.
*/
getTooltipPopupContainer?: Function;
/**
* Fire when mouseup is fired.
* @param value
*/
onAfterChange?: (value?: any) => void;
/**
* Callback function that is fired when the user changes the slider's value.
* @param value
*/
onChange?: (value?: any) => void;
};
/**
* remove focus
*/
blur(): void;
/**
* get focus
*/
focus(): void;
}