@rotki/ui-library 0.5.1 → 0.7.0
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/dist/all-icons.d.ts +82 -21
- package/dist/all-icons.es.js +4996 -4752
- package/dist/components/alerts/Alert.vue.d.ts +1 -1
- package/dist/components/buttons/button/Button.vue.d.ts +39 -95
- package/dist/components/buttons/button-group/ButtonGroup.vue.d.ts +29 -41
- package/dist/components/cards/Card.vue.d.ts +21 -1
- package/dist/components/cards/CardHeader.vue.d.ts +1 -1
- package/dist/components/chips/Chip.vue.d.ts +1 -1
- package/dist/components/divider/Divider.vue.d.ts +17 -0
- package/dist/components/forms/auto-complete/AutoComplete.vue.d.ts +25 -25
- package/dist/components/forms/auto-complete/AutoCompleteSelection.vue.d.ts +1 -1
- package/dist/components/forms/checkbox/Checkbox.vue.d.ts +36 -16
- package/dist/components/forms/radio-button/radio/Radio.vue.d.ts +37 -17
- package/dist/components/forms/radio-button/radio-group/RadioGroup.vue.d.ts +63 -12
- package/dist/components/forms/revealable-text-field/RevealableTextField.vue.d.ts +160 -1
- package/dist/components/forms/select/SimpleSelect.vue.d.ts +1 -1
- package/dist/components/forms/text-area/TextArea.vue.d.ts +233 -0
- package/dist/components/forms/text-field/TextField.vue.d.ts +66 -34
- package/dist/components/helpers/FormTextDetail.vue.d.ts +32 -0
- package/dist/components/icons/Icon.vue.d.ts +1 -1
- package/dist/components/index.d.ts +22 -18
- package/dist/components/index.es.js +29 -24
- package/dist/components/loaders/Skeleton.vue.d.ts +27 -0
- package/dist/components/loaders/SkeletonBase.vue.d.ts +17 -0
- package/dist/components/logos/Logo.vue.d.ts +1 -1
- package/dist/components/overlays/badge/Badge.vue.d.ts +1 -1
- package/dist/components/overlays/dialog/Dialog.vue.d.ts +1 -1
- package/dist/components/overlays/tooltip/Tooltip.vue.d.ts +1 -1
- package/dist/components/progress/Progress.vue.d.ts +1 -1
- package/dist/components/steppers/FooterStepper.vue.d.ts +1 -1
- package/dist/components/steppers/Stepper.vue.d.ts +1 -1
- package/dist/components/steppers/StepperCustomIcon.vue.d.ts +1 -1
- package/dist/components/steppers/StepperIcon.vue.d.ts +1 -1
- package/dist/components/tables/DataTable.vue.d.ts +8 -1
- package/dist/components/tables/TablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/Tab.vue.d.ts +6 -2
- package/dist/components/tabs/tab-item/TabItem.vue.d.ts +1 -1
- package/dist/components/tabs/tab-items/TabItems.vue.d.ts +1 -1
- package/dist/components/tabs/tabs/Tabs.vue.d.ts +1 -1
- package/dist/composables/index.es.js +2 -2
- package/dist/composables/popper.d.ts +1 -1
- package/dist/index-Q2a5R3OH.js +6090 -0
- package/dist/{index-393a0e94.js → index-W2poXQa4.js} +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2629 -2563
- package/dist/style.css +1 -1
- package/dist/theme/index.es.js +1 -1
- package/dist/utils/form-text-detail.d.ts +8 -0
- package/dist/utils/helpers.d.ts +27 -0
- package/package.json +44 -42
- package/dist/index-c62f6196.js +0 -5605
- /package/dist/{colors-01d79c7b.js → colors-ikihApJv.js} +0 -0
|
@@ -1,29 +1,36 @@
|
|
|
1
1
|
import { type ContextColorsType } from '../../../consts/colors';
|
|
2
2
|
import { type RuiIcons } from '~/src';
|
|
3
|
-
export interface
|
|
3
|
+
export interface TextFieldProps {
|
|
4
4
|
modelValue?: string;
|
|
5
5
|
label?: string;
|
|
6
6
|
placeholder?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
variant?: 'default' | 'filled' | 'outlined';
|
|
9
|
-
color?:
|
|
9
|
+
color?: ContextColorsType;
|
|
10
|
+
textColor?: ContextColorsType;
|
|
10
11
|
dense?: boolean;
|
|
11
12
|
hint?: string;
|
|
12
13
|
as?: string | object;
|
|
13
|
-
errorMessages?: string[];
|
|
14
|
+
errorMessages?: string | string[];
|
|
15
|
+
successMessages?: string | string[];
|
|
14
16
|
hideDetails?: boolean;
|
|
15
17
|
prependIcon?: RuiIcons;
|
|
16
18
|
appendIcon?: RuiIcons;
|
|
17
19
|
readonly?: boolean;
|
|
20
|
+
clearable?: boolean;
|
|
18
21
|
}
|
|
19
22
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
23
|
+
readonly: {
|
|
24
|
+
type: globalThis.PropType<boolean>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
20
27
|
variant: {
|
|
21
28
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
22
29
|
default: string;
|
|
23
30
|
};
|
|
24
31
|
color: {
|
|
25
|
-
type: globalThis.PropType<"
|
|
26
|
-
default:
|
|
32
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
33
|
+
default: undefined;
|
|
27
34
|
};
|
|
28
35
|
label: {
|
|
29
36
|
type: globalThis.PropType<string>;
|
|
@@ -37,30 +44,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
44
|
type: globalThis.PropType<boolean>;
|
|
38
45
|
default: boolean;
|
|
39
46
|
};
|
|
40
|
-
|
|
41
|
-
type: globalThis.PropType<
|
|
42
|
-
default:
|
|
47
|
+
errorMessages: {
|
|
48
|
+
type: globalThis.PropType<string | string[]>;
|
|
49
|
+
default: () => never[];
|
|
50
|
+
};
|
|
51
|
+
successMessages: {
|
|
52
|
+
type: globalThis.PropType<string | string[]>;
|
|
53
|
+
default: () => never[];
|
|
54
|
+
};
|
|
55
|
+
hint: {
|
|
56
|
+
type: globalThis.PropType<string>;
|
|
57
|
+
default: string;
|
|
43
58
|
};
|
|
44
59
|
modelValue: {
|
|
45
60
|
type: globalThis.PropType<string>;
|
|
46
61
|
default: string;
|
|
47
62
|
};
|
|
63
|
+
textColor: {
|
|
64
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
48
67
|
dense: {
|
|
49
68
|
type: globalThis.PropType<boolean>;
|
|
50
69
|
default: boolean;
|
|
51
70
|
};
|
|
52
|
-
hint: {
|
|
53
|
-
type: globalThis.PropType<string>;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
71
|
as: {
|
|
57
72
|
type: globalThis.PropType<string | object>;
|
|
58
73
|
default: string;
|
|
59
74
|
};
|
|
60
|
-
errorMessages: {
|
|
61
|
-
type: globalThis.PropType<string[]>;
|
|
62
|
-
default: () => never[];
|
|
63
|
-
};
|
|
64
75
|
hideDetails: {
|
|
65
76
|
type: globalThis.PropType<boolean>;
|
|
66
77
|
default: boolean;
|
|
@@ -73,19 +84,28 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
73
84
|
type: globalThis.PropType<RuiIcons>;
|
|
74
85
|
default: undefined;
|
|
75
86
|
};
|
|
87
|
+
clearable: {
|
|
88
|
+
type: globalThis.PropType<boolean>;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
76
91
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
77
92
|
"update:modelValue": (modelValue: string) => void;
|
|
78
93
|
"focus-input": (event: Event) => void;
|
|
79
94
|
blur: (event: Event) => void;
|
|
80
95
|
remove: (value: unknown) => void;
|
|
81
|
-
|
|
96
|
+
clear: () => void;
|
|
97
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
98
|
+
readonly: {
|
|
99
|
+
type: globalThis.PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
82
102
|
variant: {
|
|
83
103
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
84
104
|
default: string;
|
|
85
105
|
};
|
|
86
106
|
color: {
|
|
87
|
-
type: globalThis.PropType<"
|
|
88
|
-
default:
|
|
107
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
108
|
+
default: undefined;
|
|
89
109
|
};
|
|
90
110
|
label: {
|
|
91
111
|
type: globalThis.PropType<string>;
|
|
@@ -99,30 +119,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
99
119
|
type: globalThis.PropType<boolean>;
|
|
100
120
|
default: boolean;
|
|
101
121
|
};
|
|
102
|
-
|
|
103
|
-
type: globalThis.PropType<
|
|
104
|
-
default:
|
|
122
|
+
errorMessages: {
|
|
123
|
+
type: globalThis.PropType<string | string[]>;
|
|
124
|
+
default: () => never[];
|
|
125
|
+
};
|
|
126
|
+
successMessages: {
|
|
127
|
+
type: globalThis.PropType<string | string[]>;
|
|
128
|
+
default: () => never[];
|
|
129
|
+
};
|
|
130
|
+
hint: {
|
|
131
|
+
type: globalThis.PropType<string>;
|
|
132
|
+
default: string;
|
|
105
133
|
};
|
|
106
134
|
modelValue: {
|
|
107
135
|
type: globalThis.PropType<string>;
|
|
108
136
|
default: string;
|
|
109
137
|
};
|
|
138
|
+
textColor: {
|
|
139
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
140
|
+
default: undefined;
|
|
141
|
+
};
|
|
110
142
|
dense: {
|
|
111
143
|
type: globalThis.PropType<boolean>;
|
|
112
144
|
default: boolean;
|
|
113
145
|
};
|
|
114
|
-
hint: {
|
|
115
|
-
type: globalThis.PropType<string>;
|
|
116
|
-
default: string;
|
|
117
|
-
};
|
|
118
146
|
as: {
|
|
119
147
|
type: globalThis.PropType<string | object>;
|
|
120
148
|
default: string;
|
|
121
149
|
};
|
|
122
|
-
errorMessages: {
|
|
123
|
-
type: globalThis.PropType<string[]>;
|
|
124
|
-
default: () => never[];
|
|
125
|
-
};
|
|
126
150
|
hideDetails: {
|
|
127
151
|
type: globalThis.PropType<boolean>;
|
|
128
152
|
default: boolean;
|
|
@@ -135,26 +159,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
135
159
|
type: globalThis.PropType<RuiIcons>;
|
|
136
160
|
default: undefined;
|
|
137
161
|
};
|
|
162
|
+
clearable: {
|
|
163
|
+
type: globalThis.PropType<boolean>;
|
|
164
|
+
default: boolean;
|
|
165
|
+
};
|
|
138
166
|
}>> & {
|
|
139
167
|
onBlur?: ((event: Event) => any) | undefined;
|
|
140
168
|
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
141
169
|
"onFocus-input"?: ((event: Event) => any) | undefined;
|
|
142
170
|
onRemove?: ((value: unknown) => any) | undefined;
|
|
171
|
+
onClear?: (() => any) | undefined;
|
|
143
172
|
}, {
|
|
173
|
+
readonly: boolean;
|
|
144
174
|
variant: "default" | "outlined" | "filled";
|
|
145
|
-
color: "
|
|
175
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
146
176
|
label: string;
|
|
147
177
|
placeholder: string;
|
|
148
178
|
disabled: boolean;
|
|
149
|
-
|
|
179
|
+
errorMessages: string | string[];
|
|
180
|
+
successMessages: string | string[];
|
|
181
|
+
hint: string;
|
|
150
182
|
modelValue: string;
|
|
183
|
+
textColor: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
151
184
|
dense: boolean;
|
|
152
|
-
hint: string;
|
|
153
185
|
as: string | object;
|
|
154
|
-
errorMessages: string[];
|
|
155
186
|
hideDetails: boolean;
|
|
156
187
|
prependIcon: RuiIcons;
|
|
157
188
|
appendIcon: RuiIcons;
|
|
189
|
+
clearable: boolean;
|
|
158
190
|
}, {}>, {
|
|
159
191
|
prepend?(_: {}): any;
|
|
160
192
|
append?(_: {}): any;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
errorMessages: {
|
|
3
|
+
type: globalThis.PropType<string | string[]>;
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
successMessages: {
|
|
7
|
+
type: globalThis.PropType<string | string[]>;
|
|
8
|
+
default: () => never[];
|
|
9
|
+
};
|
|
10
|
+
hint: {
|
|
11
|
+
type: globalThis.PropType<string>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
|
+
errorMessages: {
|
|
16
|
+
type: globalThis.PropType<string | string[]>;
|
|
17
|
+
default: () => never[];
|
|
18
|
+
};
|
|
19
|
+
successMessages: {
|
|
20
|
+
type: globalThis.PropType<string | string[]>;
|
|
21
|
+
default: () => never[];
|
|
22
|
+
};
|
|
23
|
+
hint: {
|
|
24
|
+
type: globalThis.PropType<string>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
errorMessages: string | string[];
|
|
29
|
+
successMessages: string | string[];
|
|
30
|
+
hint: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
type: globalThis.PropType<string | number>;
|
|
19
19
|
default: number;
|
|
20
20
|
};
|
|
21
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
21
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
22
22
|
name: {
|
|
23
23
|
type: globalThis.PropType<RuiIcons>;
|
|
24
24
|
required: true;
|
|
@@ -1,27 +1,31 @@
|
|
|
1
|
-
import { default as RuiAlert } from '../components/alerts/Alert.vue';
|
|
1
|
+
import { type Props as AlertProps, default as RuiAlert } from '../components/alerts/Alert.vue';
|
|
2
2
|
import { type Props as AutoCompleteProps, default as RuiAutoComplete } from '../components/forms/auto-complete/AutoComplete.vue';
|
|
3
3
|
import { type Props as ButtonProps, default as RuiButton } from '../components/buttons/button/Button.vue';
|
|
4
|
-
import { default as RuiButtonGroup } from '../components/buttons/button-group/ButtonGroup.vue';
|
|
5
|
-
import { default as RuiIcon } from '../components/icons/Icon.vue';
|
|
6
|
-
import { default as RuiCheckbox } from '../components/forms/checkbox/Checkbox.vue';
|
|
4
|
+
import { type Props as ButtonGroupProps, default as RuiButtonGroup } from '../components/buttons/button-group/ButtonGroup.vue';
|
|
5
|
+
import { type Props as IconProps, default as RuiIcon } from '../components/icons/Icon.vue';
|
|
6
|
+
import { type Props as CheckboxProps, default as RuiCheckbox } from '../components/forms/checkbox/Checkbox.vue';
|
|
7
7
|
import { type Props as ChipProps, default as RuiChip } from '../components/chips/Chip.vue';
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
8
|
+
import { type Props as DividerProps, default as RuiDivider } from '../components/divider/Divider.vue';
|
|
9
|
+
import { default as RuiStepper, type Props as StepperProps } from '../components/steppers/Stepper.vue';
|
|
10
|
+
import { default as RuiTextArea, type Props as TextAreaProps } from '../components/forms/text-area/TextArea.vue';
|
|
11
|
+
import { default as RuiTextField, type TextFieldProps } from '../components/forms/text-field/TextField.vue';
|
|
10
12
|
import { default as RuiTooltip, type Props as TooltipProps } from '../components/overlays/tooltip/Tooltip.vue';
|
|
11
13
|
import { type Props as BadgeProps, default as RuiBadge } from '../components/overlays/badge/Badge.vue';
|
|
12
14
|
import { type Props as DialogProps, default as RuiDialog } from '../components/overlays/dialog/Dialog.vue';
|
|
13
|
-
import { default as RuiFooterStepper } from '../components/steppers/FooterStepper.vue';
|
|
14
|
-
import { default as RuiProgress } from '../components/progress/Progress.vue';
|
|
15
|
-
import { default as RuiRadioGroup } from '../components/forms/radio-button/radio-group/RadioGroup.vue';
|
|
16
|
-
import { default as RuiRadio } from '../components/forms/radio-button/radio/Radio.vue';
|
|
17
|
-
import { default as RuiRevealableTextField } from '../components/forms/revealable-text-field/RevealableTextField.vue';
|
|
18
|
-
import { default as RuiLogo } from '../components/logos/Logo.vue';
|
|
15
|
+
import { type Props as FooterStepperProps, default as RuiFooterStepper } from '../components/steppers/FooterStepper.vue';
|
|
16
|
+
import { type Props as ProgressProps, default as RuiProgress } from '../components/progress/Progress.vue';
|
|
17
|
+
import { type Props as RadioGroupProps, default as RuiRadioGroup } from '../components/forms/radio-button/radio-group/RadioGroup.vue';
|
|
18
|
+
import { type RadioProps as RadioProps, default as RuiRadio } from '../components/forms/radio-button/radio/Radio.vue';
|
|
19
|
+
import { type Props as RevealableTextFieldProps, default as RuiRevealableTextField } from '../components/forms/revealable-text-field/RevealableTextField.vue';
|
|
20
|
+
import { type Props as LogoProps, default as RuiLogo } from '../components/logos/Logo.vue';
|
|
19
21
|
import { default as RuiSimpleSelect, type Props as SimpleSelectProps } from '../components/forms/select/SimpleSelect.vue';
|
|
20
22
|
import { type TableColumn as DataTableColumn, type TableOptions as DataTableOptions, type Props as DataTableProps, type SortColumn as DataTableSortColumn, default as RuiDataTable } from '../components/tables/DataTable.vue';
|
|
21
|
-
import { type TablePaginationData } from '../components/tables/TablePagination.vue';
|
|
23
|
+
import { default as RuiTablePagination, type TablePaginationData, type Props as TablePaginationProps } from '../components/tables/TablePagination.vue';
|
|
22
24
|
import { type Props as CardProps, default as RuiCard } from '../components/cards/Card.vue';
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
|
|
25
|
+
import { type Props as CardHeaderProps, default as RuiCardHeader } from '../components/cards/CardHeader.vue';
|
|
26
|
+
import { default as RuiTabs, type Props as TabsProps } from '../components/tabs/tabs/Tabs.vue';
|
|
27
|
+
import { default as RuiTab, type Props as TabProps } from '../components/tabs/tab/Tab.vue';
|
|
28
|
+
import { default as RuiTabItems, type Props as TabItemsProps } from '../components/tabs/tab-items/TabItems.vue';
|
|
29
|
+
import { default as RuiTabItem, type Props as TabItemProps } from '../components/tabs/tab-item/TabItem.vue';
|
|
30
|
+
import { default as RuiSkeletonLoader, type Props as SkeletonLoaderProps } from '../components/loaders/Skeleton.vue';
|
|
31
|
+
export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiTextField, RuiTooltip, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, AutoCompleteProps, ChipProps, TooltipProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, };
|
|
@@ -1,35 +1,40 @@
|
|
|
1
|
-
import { A as
|
|
1
|
+
import { A as p, a as l, R as m, B as d, b as T, k as b, l as n, C as g, c as C, D as x, j as S, t as c, F as A, I as B, _ as D, P as F, d as I, e as h, f as k, i as P, r as f, g as v, n as G, p as L, o as j, q, m as H, s as _, h as w, T as y } from "../index-Q2a5R3OH.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "@vueuse/shared";
|
|
4
|
-
import "../index-
|
|
4
|
+
import "../index-W2poXQa4.js";
|
|
5
5
|
import "../all-icons.es.js";
|
|
6
6
|
import "@vueuse/core";
|
|
7
|
-
import "../colors-
|
|
7
|
+
import "../colors-ikihApJv.js";
|
|
8
8
|
import "vue-router";
|
|
9
9
|
export {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
p as RuiAlert,
|
|
11
|
+
l as RuiAutoComplete,
|
|
12
|
+
m as RuiBadge,
|
|
13
|
+
d as RuiButton,
|
|
14
|
+
T as RuiButtonGroup,
|
|
15
|
+
b as RuiCard,
|
|
16
|
+
n as RuiCardHeader,
|
|
16
17
|
g as RuiCheckbox,
|
|
17
18
|
C as RuiChip,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
x as RuiDataTable,
|
|
20
|
+
S as RuiDialog,
|
|
21
|
+
c as RuiDivider,
|
|
22
|
+
A as RuiFooterStepper,
|
|
21
23
|
B as RuiIcon,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
D as RuiLogo,
|
|
25
|
+
F as RuiProgress,
|
|
26
|
+
I as RuiRadio,
|
|
25
27
|
h as RuiRadioGroup,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
f as
|
|
29
|
-
|
|
30
|
-
G as
|
|
31
|
-
|
|
32
|
-
j as
|
|
33
|
-
|
|
34
|
-
|
|
28
|
+
k as RuiRevealableTextField,
|
|
29
|
+
P as RuiSimpleSelect,
|
|
30
|
+
f as RuiSkeletonLoader,
|
|
31
|
+
v as RuiStepper,
|
|
32
|
+
G as RuiTab,
|
|
33
|
+
L as RuiTabItem,
|
|
34
|
+
j as RuiTabItems,
|
|
35
|
+
q as RuiTablePagination,
|
|
36
|
+
H as RuiTabs,
|
|
37
|
+
_ as RuiTextArea,
|
|
38
|
+
w as RuiTextField,
|
|
39
|
+
y as RuiTooltip
|
|
35
40
|
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type Props as SkeletonBaseProps } from '../../components/loaders/SkeletonBase.vue';
|
|
2
|
+
export interface Props extends SkeletonBaseProps {
|
|
3
|
+
type?: 'text' | 'paragraph' | 'heading' | 'article' | 'button' | 'icon' | 'avatar' | 'thumbnail' | 'custom';
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
|
+
type: {
|
|
7
|
+
type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
rounded: {
|
|
11
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
|
+
type: {
|
|
16
|
+
type: globalThis.PropType<"article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail">;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
rounded: {
|
|
20
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>>, {
|
|
24
|
+
type: "article" | "button" | "text" | "icon" | "heading" | "paragraph" | "custom" | "avatar" | "thumbnail";
|
|
25
|
+
rounded: "none" | "sm" | "lg" | "md" | "full";
|
|
26
|
+
}, {}>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface Props {
|
|
2
|
+
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
rounded: {
|
|
6
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
9
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
10
|
+
rounded: {
|
|
11
|
+
type: globalThis.PropType<"none" | "sm" | "lg" | "md" | "full">;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
}>>, {
|
|
15
|
+
rounded: "none" | "sm" | "lg" | "md" | "full";
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
type: globalThis.PropType<string>;
|
|
12
12
|
default: undefined;
|
|
13
13
|
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
15
|
text: {
|
|
16
16
|
type: globalThis.PropType<boolean>;
|
|
17
17
|
default: boolean;
|
|
@@ -58,7 +58,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
58
58
|
type: globalThis.PropType<string | number>;
|
|
59
59
|
default: number;
|
|
60
60
|
};
|
|
61
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
61
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
62
62
|
color: {
|
|
63
63
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success" | "default">;
|
|
64
64
|
default: string;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:model-value": (modelValue: boolean) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
27
27
|
size: {
|
|
28
28
|
type: globalThis.PropType<"sm" | "lg" | "md">;
|
|
29
29
|
default: string;
|
|
@@ -37,7 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
37
|
type: globalThis.PropType<string>;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
40
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
41
41
|
text: {
|
|
42
42
|
type: globalThis.PropType<string | null>;
|
|
43
43
|
default: null;
|
|
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
type: globalThis.PropType<string | number>;
|
|
57
57
|
default: number;
|
|
58
58
|
};
|
|
59
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
59
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
60
60
|
value: {
|
|
61
61
|
type: globalThis.PropType<number>;
|
|
62
62
|
default: number;
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (modelValue: number) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
27
27
|
variant: {
|
|
28
28
|
type: globalThis.PropType<"progress" | "numeric" | "bullet" | "pill">;
|
|
29
29
|
default: string;
|
|
@@ -42,7 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
42
42
|
type: globalThis.PropType<boolean>;
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
46
46
|
orientation: {
|
|
47
47
|
type: globalThis.PropType<StepperOrientation>;
|
|
48
48
|
default: "horizontal";
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: globalThis.PropType<number>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
12
|
state: {
|
|
13
13
|
type: globalThis.PropType<StepperState>;
|
|
14
14
|
default: "inactive";
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: globalThis.PropType<number>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
12
|
state: {
|
|
13
13
|
type: globalThis.PropType<StepperState>;
|
|
14
14
|
default: "inactive";
|
|
@@ -120,6 +120,10 @@ export interface Props<T, K extends keyof T> {
|
|
|
120
120
|
* flag to outline the flag with a border
|
|
121
121
|
*/
|
|
122
122
|
outlined?: boolean;
|
|
123
|
+
/**
|
|
124
|
+
* should add zebra-striping to the table row
|
|
125
|
+
*/
|
|
126
|
+
striped?: boolean;
|
|
123
127
|
/**
|
|
124
128
|
* flag to show loading state of the table
|
|
125
129
|
* triggers an indefinite progress at the bottom of the table header
|
|
@@ -153,6 +157,7 @@ declare const _default: <T extends object, IdType extends keyof T = keyof T>(__V
|
|
|
153
157
|
}) => any>> & {
|
|
154
158
|
"no-data"?(_: {}): any;
|
|
155
159
|
"empty-description"?(_: {}): any;
|
|
160
|
+
"body.append"?(_: {}): any;
|
|
156
161
|
tfoot?(_: {}): any;
|
|
157
162
|
};
|
|
158
163
|
emit: {
|
|
@@ -161,7 +166,7 @@ declare const _default: <T extends object, IdType extends keyof T = keyof T>(__V
|
|
|
161
166
|
(e: 'update:sort', value?: SortColumn<T> | SortColumn<T>[] | undefined): void;
|
|
162
167
|
(e: 'update:options', value: TableOptions<T>): void;
|
|
163
168
|
};
|
|
164
|
-
}, "attrs" | "
|
|
169
|
+
}, "attrs" | "emit" | "slots"> | undefined, __VLS_expose?: ((exposed: {}) => void) | undefined, __VLS_setup?: Promise<{
|
|
165
170
|
props: Props<T, IdType>;
|
|
166
171
|
expose(exposed: {}): void;
|
|
167
172
|
attrs: any;
|
|
@@ -174,6 +179,7 @@ declare const _default: <T extends object, IdType extends keyof T = keyof T>(__V
|
|
|
174
179
|
}) => any>> & {
|
|
175
180
|
"no-data"?(_: {}): any;
|
|
176
181
|
"empty-description"?(_: {}): any;
|
|
182
|
+
"body.append"?(_: {}): any;
|
|
177
183
|
tfoot?(_: {}): any;
|
|
178
184
|
};
|
|
179
185
|
emit: {
|
|
@@ -198,6 +204,7 @@ declare const _default: <T extends object, IdType extends keyof T = keyof T>(__V
|
|
|
198
204
|
}) => any>> & {
|
|
199
205
|
"no-data"?(_: {}): any;
|
|
200
206
|
"empty-description"?(_: {}): any;
|
|
207
|
+
"body.append"?(_: {}): any;
|
|
201
208
|
tfoot?(_: {}): any;
|
|
202
209
|
};
|
|
203
210
|
emit: {
|
|
@@ -24,7 +24,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
};
|
|
25
25
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
"update:model-value": (value: TablePaginationData) => void;
|
|
27
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
27
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
28
28
|
loading: {
|
|
29
29
|
type: globalThis.PropType<boolean>;
|
|
30
30
|
default: boolean;
|
|
@@ -64,7 +64,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
64
|
};
|
|
65
65
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
66
66
|
click: (tabValue: string | number) => void;
|
|
67
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
67
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
68
68
|
color: {
|
|
69
69
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
70
70
|
default: undefined;
|
|
@@ -128,7 +128,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
128
128
|
tabValue: string | number;
|
|
129
129
|
exact: boolean;
|
|
130
130
|
exactPath: boolean;
|
|
131
|
-
}, {}>,
|
|
131
|
+
}, {}>, {
|
|
132
|
+
default?(props?: object | undefined): any;
|
|
133
|
+
prepend?(props?: object | undefined): any;
|
|
134
|
+
append?(props?: object | undefined): any;
|
|
135
|
+
}>;
|
|
132
136
|
export default _default;
|
|
133
137
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
134
138
|
new (): {
|
|
@@ -21,7 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
21
21
|
type: globalThis.PropType<boolean>;
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
24
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
25
25
|
reverse: {
|
|
26
26
|
type: globalThis.PropType<boolean>;
|
|
27
27
|
default: boolean;
|
|
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
type: globalThis.PropType<string | number>;
|
|
7
7
|
default: undefined;
|
|
8
8
|
};
|
|
9
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
9
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
10
10
|
modelValue: {
|
|
11
11
|
type: globalThis.PropType<string | number>;
|
|
12
12
|
default: undefined;
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
};
|
|
35
35
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
36
|
"update:modelValue": (modelValue: string | number) => void;
|
|
37
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
37
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
38
38
|
color: {
|
|
39
39
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
40
40
|
default: undefined;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { u as s, a } from "../index-
|
|
1
|
+
import { u as s, a } from "../index-W2poXQa4.js";
|
|
2
2
|
import "../all-icons.es.js";
|
|
3
3
|
import "@vueuse/core";
|
|
4
4
|
import "vue";
|
|
5
5
|
import "@vueuse/shared";
|
|
6
|
-
import "../colors-
|
|
6
|
+
import "../colors-ikihApJv.js";
|
|
7
7
|
export {
|
|
8
8
|
s as useIcons,
|
|
9
9
|
a as useRotkiTheme
|