@sxo/ui 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -70
- package/package.json +6 -7
- package/dist/index.cjs +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -1025
- package/dist/sxo-ui/src/components/Accordion.d.ts +0 -11
- package/dist/sxo-ui/src/components/Alert.d.ts +0 -13
- package/dist/sxo-ui/src/components/Avatar.d.ts +0 -10
- package/dist/sxo-ui/src/components/BackTop.d.ts +0 -4
- package/dist/sxo-ui/src/components/Badge.d.ts +0 -5
- package/dist/sxo-ui/src/components/Breadcrumb.d.ts +0 -11
- package/dist/sxo-ui/src/components/Button.d.ts +0 -11
- package/dist/sxo-ui/src/components/Calendar.d.ts +0 -19
- package/dist/sxo-ui/src/components/Card.d.ts +0 -7
- package/dist/sxo-ui/src/components/Cascader.d.ts +0 -17
- package/dist/sxo-ui/src/components/Checkbox.d.ts +0 -11
- package/dist/sxo-ui/src/components/DatePicker.d.ts +0 -22
- package/dist/sxo-ui/src/components/Descriptions.d.ts +0 -10
- package/dist/sxo-ui/src/components/Dialog.d.ts +0 -18
- package/dist/sxo-ui/src/components/Divider.d.ts +0 -18
- package/dist/sxo-ui/src/components/Drawer.d.ts +0 -13
- package/dist/sxo-ui/src/components/Dropdown.d.ts +0 -13
- package/dist/sxo-ui/src/components/Empty.d.ts +0 -9
- package/dist/sxo-ui/src/components/Feedback.d.ts +0 -16
- package/dist/sxo-ui/src/components/Form.d.ts +0 -19
- package/dist/sxo-ui/src/components/Input.d.ts +0 -13
- package/dist/sxo-ui/src/components/Mentions.d.ts +0 -14
- package/dist/sxo-ui/src/components/Menu.d.ts +0 -11
- package/dist/sxo-ui/src/components/Pagination.d.ts +0 -15
- package/dist/sxo-ui/src/components/Popconfirm.d.ts +0 -10
- package/dist/sxo-ui/src/components/Popover.d.ts +0 -10
- package/dist/sxo-ui/src/components/Radio.d.ts +0 -11
- package/dist/sxo-ui/src/components/Rate.d.ts +0 -11
- package/dist/sxo-ui/src/components/Result.d.ts +0 -10
- package/dist/sxo-ui/src/components/Search.d.ts +0 -11
- package/dist/sxo-ui/src/components/Select.d.ts +0 -10
- package/dist/sxo-ui/src/components/Skeleton.d.ts +0 -21
- package/dist/sxo-ui/src/components/Slider.d.ts +0 -11
- package/dist/sxo-ui/src/components/Statistic.d.ts +0 -8
- package/dist/sxo-ui/src/components/Steps.d.ts +0 -22
- package/dist/sxo-ui/src/components/Switch.d.ts +0 -9
- package/dist/sxo-ui/src/components/Table.d.ts +0 -21
- package/dist/sxo-ui/src/components/Tabs.d.ts +0 -9
- package/dist/sxo-ui/src/components/Tag.d.ts +0 -12
- package/dist/sxo-ui/src/components/Timeline.d.ts +0 -13
- package/dist/sxo-ui/src/components/Toast.d.ts +0 -13
- package/dist/sxo-ui/src/components/Tooltip.d.ts +0 -7
- package/dist/sxo-ui/src/components/Transfer.d.ts +0 -20
- package/dist/sxo-ui/src/components/Tree.d.ts +0 -11
- package/dist/sxo-ui/src/components/TreeSelect.d.ts +0 -13
- package/dist/sxo-ui/src/components/Upload.d.ts +0 -16
- package/dist/sxo-ui/src/components/VirtualList.d.ts +0 -8
- package/dist/sxo-ui/src/components/index.d.ts +0 -47
- package/dist/sxo-ui/src/index.d.ts +0 -2
- package/dist/sxo-ui/src/theme.d.ts +0 -5
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface AccordionOptions {
|
|
2
|
-
variant?: 'ghost' | 'bordered' | 'splitted';
|
|
3
|
-
}
|
|
4
|
-
export declare function getAccordionClasses(options?: AccordionOptions): {
|
|
5
|
-
root: string;
|
|
6
|
-
item: (isExpanded: boolean) => string;
|
|
7
|
-
trigger: string;
|
|
8
|
-
triggerText: string;
|
|
9
|
-
icon: (isExpanded: boolean) => string;
|
|
10
|
-
panel: string;
|
|
11
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface AlertOptions {
|
|
2
|
-
type?: 'info' | 'success' | 'warning' | 'error';
|
|
3
|
-
variant?: 'subtle' | 'solid' | 'outline';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getAlertClasses(options?: AlertOptions): {
|
|
7
|
-
container: string;
|
|
8
|
-
icon: string;
|
|
9
|
-
content: string;
|
|
10
|
-
title: string;
|
|
11
|
-
description: string;
|
|
12
|
-
closeButton: string;
|
|
13
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface BreadcrumbOptions {
|
|
2
|
-
separator?: string;
|
|
3
|
-
disabled?: boolean;
|
|
4
|
-
}
|
|
5
|
-
export declare function getBreadcrumbClasses(options?: BreadcrumbOptions): {
|
|
6
|
-
container: string;
|
|
7
|
-
item: string;
|
|
8
|
-
link: string;
|
|
9
|
-
current: string;
|
|
10
|
-
separator: string;
|
|
11
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface ButtonOptions {
|
|
2
|
-
variant?: 'primary' | 'secondary' | 'accent' | 'outline' | 'ghost';
|
|
3
|
-
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
loading?: boolean;
|
|
6
|
-
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
7
|
-
}
|
|
8
|
-
export declare function getButtonClasses(options?: ButtonOptions): {
|
|
9
|
-
container: string;
|
|
10
|
-
spinner: string;
|
|
11
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare function getCalendarClasses(): {
|
|
2
|
-
container: string;
|
|
3
|
-
header: string;
|
|
4
|
-
headerTitle: string;
|
|
5
|
-
headerActions: string;
|
|
6
|
-
headerBtn: string;
|
|
7
|
-
body: string;
|
|
8
|
-
weekRow: string;
|
|
9
|
-
weekDay: string;
|
|
10
|
-
grid: string;
|
|
11
|
-
day: string;
|
|
12
|
-
dayCurrent: string;
|
|
13
|
-
dayToday: string;
|
|
14
|
-
daySelected: string;
|
|
15
|
-
dayOutside: string;
|
|
16
|
-
dayText: string;
|
|
17
|
-
dayDot: string;
|
|
18
|
-
dayDotToday: string;
|
|
19
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export interface CardOptions {
|
|
2
|
-
variant?: 'outline' | 'elevated' | 'accent' | 'ghost';
|
|
3
|
-
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
-
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full';
|
|
5
|
-
interactive?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function getCardClasses(options?: CardOptions): string;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface CascaderOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
rounded?: boolean;
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getCascaderClasses(options?: CascaderOptions): {
|
|
7
|
-
container: string;
|
|
8
|
-
input: string;
|
|
9
|
-
icon: string;
|
|
10
|
-
iconOpen: string;
|
|
11
|
-
dropdown: string;
|
|
12
|
-
menu: string;
|
|
13
|
-
menuItem: string;
|
|
14
|
-
menuItemActive: string;
|
|
15
|
-
menuItemDisabled: string;
|
|
16
|
-
expandIcon: string;
|
|
17
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface CheckboxOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
color?: 'primary' | 'success';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getCheckboxClasses(isChecked: boolean, options?: CheckboxOptions): {
|
|
7
|
-
root: string;
|
|
8
|
-
icon: string;
|
|
9
|
-
label: string;
|
|
10
|
-
text: string;
|
|
11
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export interface DatePickerOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
variant?: 'outline' | 'ghost' | 'bottom-line';
|
|
4
|
-
rounded?: boolean;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function getDatePickerClasses(options?: DatePickerOptions): {
|
|
8
|
-
container: string;
|
|
9
|
-
input: string;
|
|
10
|
-
icon: string;
|
|
11
|
-
panel: string;
|
|
12
|
-
header: string;
|
|
13
|
-
headerButton: string;
|
|
14
|
-
headerTitle: string;
|
|
15
|
-
grid: string;
|
|
16
|
-
weekday: string;
|
|
17
|
-
day: string;
|
|
18
|
-
dayToday: string;
|
|
19
|
-
daySelected: string;
|
|
20
|
-
dayOutside: string;
|
|
21
|
-
footer: string;
|
|
22
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export interface DialogStylesOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
3
|
-
isCentered?: boolean;
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* 获取对话框各部分的样式类名
|
|
7
|
-
*/
|
|
8
|
-
export declare function getDialogClasses(options?: DialogStylesOptions): {
|
|
9
|
-
overlay: string;
|
|
10
|
-
container: string;
|
|
11
|
-
content: string;
|
|
12
|
-
header: string;
|
|
13
|
-
title: string;
|
|
14
|
-
description: string;
|
|
15
|
-
closeButton: string;
|
|
16
|
-
body: string;
|
|
17
|
-
footer: string;
|
|
18
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export interface DividerOptions {
|
|
2
|
-
direction?: 'horizontal' | 'vertical';
|
|
3
|
-
type?: 'solid' | 'dashed' | 'dotted';
|
|
4
|
-
contentPlacement?: 'left' | 'center' | 'right';
|
|
5
|
-
}
|
|
6
|
-
export declare function getDividerClasses(options?: DividerOptions): {
|
|
7
|
-
container: string;
|
|
8
|
-
text: string;
|
|
9
|
-
lineLeft?: undefined;
|
|
10
|
-
lineRight?: undefined;
|
|
11
|
-
line?: undefined;
|
|
12
|
-
} | {
|
|
13
|
-
container: string;
|
|
14
|
-
lineLeft: string;
|
|
15
|
-
lineRight: string;
|
|
16
|
-
line: string;
|
|
17
|
-
text: string;
|
|
18
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface DrawerOptions {
|
|
2
|
-
placement?: 'left' | 'right' | 'top' | 'bottom';
|
|
3
|
-
size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
4
|
-
}
|
|
5
|
-
export declare function getDrawerClasses(options?: DrawerOptions): {
|
|
6
|
-
overlay: string;
|
|
7
|
-
container: string;
|
|
8
|
-
header: string;
|
|
9
|
-
title: string;
|
|
10
|
-
content: string;
|
|
11
|
-
footer: string;
|
|
12
|
-
closeButton: string;
|
|
13
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface DropdownOptions {
|
|
2
|
-
placement?: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
3
|
-
disabled?: boolean;
|
|
4
|
-
}
|
|
5
|
-
export declare function getDropdownClasses(options?: DropdownOptions): {
|
|
6
|
-
container: string;
|
|
7
|
-
menu: string;
|
|
8
|
-
item: string;
|
|
9
|
-
itemActive: string;
|
|
10
|
-
itemDisabled: string;
|
|
11
|
-
divider: string;
|
|
12
|
-
header: string;
|
|
13
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export interface SpinnerOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
color?: 'primary' | 'secondary' | 'accent';
|
|
4
|
-
}
|
|
5
|
-
export declare function getSpinnerClasses(options?: SpinnerOptions): string;
|
|
6
|
-
export interface ProgressOptions {
|
|
7
|
-
value: number;
|
|
8
|
-
max?: number;
|
|
9
|
-
color?: 'primary' | 'success' | 'warning' | 'error';
|
|
10
|
-
size?: 'sm' | 'md' | 'lg';
|
|
11
|
-
}
|
|
12
|
-
export declare function getProgressClasses(options: ProgressOptions): {
|
|
13
|
-
root: string;
|
|
14
|
-
bar: string;
|
|
15
|
-
percentage: number;
|
|
16
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface FormOptions {
|
|
2
|
-
layout?: 'vertical' | 'horizontal' | 'inline';
|
|
3
|
-
size?: 'sm' | 'md' | 'lg';
|
|
4
|
-
}
|
|
5
|
-
export declare function getFormClasses(options?: FormOptions): {
|
|
6
|
-
root: string;
|
|
7
|
-
};
|
|
8
|
-
export interface FormItemOptions {
|
|
9
|
-
layout?: 'vertical' | 'horizontal';
|
|
10
|
-
required?: boolean;
|
|
11
|
-
hasError?: boolean;
|
|
12
|
-
}
|
|
13
|
-
export declare function getFormItemClasses(options?: FormItemOptions): {
|
|
14
|
-
root: string;
|
|
15
|
-
label: string;
|
|
16
|
-
control: string;
|
|
17
|
-
error: string;
|
|
18
|
-
extra: string;
|
|
19
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface InputOptions {
|
|
2
|
-
variant?: 'outline' | 'bottom-line' | 'ghost';
|
|
3
|
-
size?: 'sm' | 'md' | 'lg';
|
|
4
|
-
invalid?: boolean;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
readonly?: boolean;
|
|
7
|
-
}
|
|
8
|
-
export declare function getInputClasses(options?: InputOptions): {
|
|
9
|
-
container: string;
|
|
10
|
-
input: string;
|
|
11
|
-
prefix: string;
|
|
12
|
-
suffix: string;
|
|
13
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export interface MentionsOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
status?: 'error' | 'warning' | 'success';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
readonly?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function getMentionsClasses(options?: MentionsOptions): {
|
|
8
|
-
container: string;
|
|
9
|
-
textarea: string;
|
|
10
|
-
dropdown: string;
|
|
11
|
-
item: string;
|
|
12
|
-
itemActive: string;
|
|
13
|
-
avatar: string;
|
|
14
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface PaginationOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
variant?: 'outline' | 'ghost' | 'solid';
|
|
4
|
-
rounded?: boolean;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function getPaginationClasses(options?: PaginationOptions): {
|
|
8
|
-
container: string;
|
|
9
|
-
item: string;
|
|
10
|
-
active: string;
|
|
11
|
-
disabled: string;
|
|
12
|
-
jumper: string;
|
|
13
|
-
total: string;
|
|
14
|
-
ellipsis: string;
|
|
15
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export interface PopoverOptions {
|
|
2
|
-
placement?: 'top' | 'bottom' | 'left' | 'right';
|
|
3
|
-
}
|
|
4
|
-
export declare function getPopoverClasses(options?: PopoverOptions): {
|
|
5
|
-
container: string;
|
|
6
|
-
content: string;
|
|
7
|
-
arrow: string;
|
|
8
|
-
title: string;
|
|
9
|
-
description: string;
|
|
10
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface RadioOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
color?: 'primary' | 'success';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getRadioClasses(isSelected: boolean, options?: RadioOptions): {
|
|
7
|
-
root: string;
|
|
8
|
-
inner: string;
|
|
9
|
-
label: string;
|
|
10
|
-
text: string;
|
|
11
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export interface ResultOptions {
|
|
2
|
-
status?: 'success' | 'error' | 'info' | 'warning' | '404' | '500' | '403';
|
|
3
|
-
}
|
|
4
|
-
export declare function getResultClasses(options?: ResultOptions): {
|
|
5
|
-
container: string;
|
|
6
|
-
icon: string;
|
|
7
|
-
title: string;
|
|
8
|
-
subTitle: string;
|
|
9
|
-
extra: string;
|
|
10
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface SearchOptions {
|
|
2
|
-
variant?: 'outline' | 'ghost' | 'bottom-line';
|
|
3
|
-
size?: 'sm' | 'md' | 'lg';
|
|
4
|
-
rounded?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getSearchClasses(options?: SearchOptions): {
|
|
7
|
-
container: string;
|
|
8
|
-
input: string;
|
|
9
|
-
icon: string;
|
|
10
|
-
clear: string;
|
|
11
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export interface SelectOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
variant?: 'outline' | 'ghost' | 'subtle';
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function getSelectClasses(isOpen: boolean, options?: SelectOptions): {
|
|
7
|
-
trigger: string;
|
|
8
|
-
listbox: string;
|
|
9
|
-
option: (isSelected: boolean, disabled?: boolean) => string;
|
|
10
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export interface SkeletonOptions {
|
|
2
|
-
active?: boolean;
|
|
3
|
-
rounded?: boolean;
|
|
4
|
-
variant?: 'text' | 'avatar' | 'rect' | 'circle' | 'button';
|
|
5
|
-
animate?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare function getSkeletonClasses(options?: SkeletonOptions): {
|
|
8
|
-
root: string;
|
|
9
|
-
container: string;
|
|
10
|
-
row: string;
|
|
11
|
-
header: string;
|
|
12
|
-
avatar: string;
|
|
13
|
-
title: string;
|
|
14
|
-
paragraph: string;
|
|
15
|
-
line: string;
|
|
16
|
-
lineLast: string;
|
|
17
|
-
rect: string;
|
|
18
|
-
circle: string;
|
|
19
|
-
button: string;
|
|
20
|
-
base: string;
|
|
21
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export interface StepsOptions {
|
|
2
|
-
direction?: 'horizontal' | 'vertical';
|
|
3
|
-
}
|
|
4
|
-
export declare function getStepsClasses(options?: StepsOptions): {
|
|
5
|
-
container: string;
|
|
6
|
-
item: string;
|
|
7
|
-
head: string;
|
|
8
|
-
line: string;
|
|
9
|
-
linePending: string;
|
|
10
|
-
lineCompleted: string;
|
|
11
|
-
icon: string;
|
|
12
|
-
iconContainer: string;
|
|
13
|
-
iconPending: string;
|
|
14
|
-
iconProcess: string;
|
|
15
|
-
iconCompleted: string;
|
|
16
|
-
content: string;
|
|
17
|
-
title: string;
|
|
18
|
-
titlePending: string;
|
|
19
|
-
titleProcess: string;
|
|
20
|
-
titleCompleted: string;
|
|
21
|
-
description: string;
|
|
22
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export interface TableOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
hover?: boolean;
|
|
4
|
-
striped?: boolean;
|
|
5
|
-
border?: boolean;
|
|
6
|
-
loading?: boolean;
|
|
7
|
-
}
|
|
8
|
-
export declare function getTableClasses(options?: TableOptions): {
|
|
9
|
-
container: string;
|
|
10
|
-
table: string;
|
|
11
|
-
thead: string;
|
|
12
|
-
th: string;
|
|
13
|
-
tr: string;
|
|
14
|
-
trSelected: string;
|
|
15
|
-
trStriped: string;
|
|
16
|
-
td: string;
|
|
17
|
-
pagination: string;
|
|
18
|
-
empty: string;
|
|
19
|
-
loading: string;
|
|
20
|
-
spinner: string;
|
|
21
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface TagOptions {
|
|
2
|
-
variant?: 'solid' | 'outline' | 'subtle';
|
|
3
|
-
color?: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'neutral';
|
|
4
|
-
rounded?: 'none' | 'sm' | 'md' | 'full';
|
|
5
|
-
size?: 'sm' | 'md' | 'lg';
|
|
6
|
-
closable?: boolean;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function getTagClasses(options?: TagOptions): {
|
|
10
|
-
base: string;
|
|
11
|
-
closeIcon: string;
|
|
12
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface TimelineOptions {
|
|
2
|
-
mode?: 'left' | 'alternate' | 'right';
|
|
3
|
-
}
|
|
4
|
-
export declare function getTimelineClasses(options?: TimelineOptions): {
|
|
5
|
-
container: string;
|
|
6
|
-
item: string;
|
|
7
|
-
tail: string;
|
|
8
|
-
dot: string;
|
|
9
|
-
content: string;
|
|
10
|
-
label: string;
|
|
11
|
-
title: string;
|
|
12
|
-
description: string;
|
|
13
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface ToastStylesOptions {
|
|
2
|
-
type?: 'info' | 'success' | 'warning' | 'error';
|
|
3
|
-
position?: 'top' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
4
|
-
}
|
|
5
|
-
export declare function getToastClasses(options?: ToastStylesOptions): {
|
|
6
|
-
container: string;
|
|
7
|
-
item: string;
|
|
8
|
-
icon: string;
|
|
9
|
-
content: string;
|
|
10
|
-
title: string;
|
|
11
|
-
description: string;
|
|
12
|
-
close: string;
|
|
13
|
-
};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export interface TransferOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
}
|
|
4
|
-
export declare function getTransferClasses(options?: TransferOptions): {
|
|
5
|
-
container: string;
|
|
6
|
-
list: string;
|
|
7
|
-
header: string;
|
|
8
|
-
headerTitle: string;
|
|
9
|
-
headerCount: string;
|
|
10
|
-
search: string;
|
|
11
|
-
body: string;
|
|
12
|
-
item: string;
|
|
13
|
-
itemSelected: string;
|
|
14
|
-
itemDisabled: string;
|
|
15
|
-
itemLabel: string;
|
|
16
|
-
actions: string;
|
|
17
|
-
actionButton: string;
|
|
18
|
-
footer: string;
|
|
19
|
-
empty: string;
|
|
20
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface TreeSelectOptions {
|
|
2
|
-
size?: 'sm' | 'md' | 'lg';
|
|
3
|
-
rounded?: boolean;
|
|
4
|
-
}
|
|
5
|
-
export declare function getTreeSelectClasses(options?: TreeSelectOptions): {
|
|
6
|
-
container: string;
|
|
7
|
-
input: string;
|
|
8
|
-
icon: string;
|
|
9
|
-
iconOpen: string;
|
|
10
|
-
dropdown: string;
|
|
11
|
-
treeContainer: string;
|
|
12
|
-
empty: string;
|
|
13
|
-
};
|