gov-gui
Version:
Gov UI Component Library Demo ready Build
167 lines (166 loc) • 4.28 kB
TypeScript
import '../../global/animate.min.css';
/**
* A Slider is a UI component that allows users to select a value or range of values
* by dragging a handle along a track.
* It’s commonly used for settings like volume control, price ranges,
* or any scenario where users need to input a value within a defined range.
*/
declare const _default: {
title: string;
tags: string[];
parameters: {
actions: {
handles: string[];
};
};
argTypes: {
min: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: number;
};
category: string;
};
};
max: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: number;
};
category: string;
};
};
step: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: number;
};
category: string;
};
};
label: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
value: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: number;
};
category: string;
};
};
animation: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
animationDelay: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
animationSpeed: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
sliderChange: {
action: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: any;
};
category: string;
};
};
styles: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
classes: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
};
};
export default _default;
export declare const Slider: any;