@rotki/ui-library 0.13.0 → 0.14.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/components/accordions/accordion/Accordion.vue.d.ts +71 -0
- package/dist/components/accordions/accordions/Accordions.vue.d.ts +31 -0
- package/dist/components/alerts/Alert.vue.d.ts +10 -10
- package/dist/components/cards/Card.vue.d.ts +3 -3
- package/dist/components/chips/Chip.vue.d.ts +18 -18
- package/dist/components/forms/auto-complete/AutoComplete.vue.d.ts +58 -172
- package/dist/components/forms/auto-complete/AutoCompleteSelection.vue.d.ts +26 -77
- package/dist/components/forms/checkbox/Checkbox.vue.d.ts +9 -9
- package/dist/components/forms/radio-button/radio/Radio.vue.d.ts +9 -9
- package/dist/components/forms/radio-button/radio-group/RadioGroup.vue.d.ts +9 -9
- package/dist/components/forms/select/MenuSelect.vue.d.ts +62 -0
- package/dist/components/forms/slider/Slider.vue.d.ts +192 -0
- package/dist/components/forms/switch/Switch.vue.d.ts +9 -9
- package/dist/components/forms/text-area/TextArea.vue.d.ts +9 -9
- package/dist/components/icons/Icon.vue.d.ts +6 -6
- package/dist/components/index.d.ts +6 -1
- package/dist/components/index.es.js +38 -42
- package/dist/components/loaders/Skeleton.vue.d.ts +6 -6
- package/dist/components/loaders/SkeletonBase.vue.d.ts +3 -3
- package/dist/components/overlays/badge/Badge.vue.d.ts +15 -15
- package/dist/components/overlays/dialog/Dialog.vue.d.ts +3 -3
- package/dist/components/overlays/menu/Menu.vue.d.ts +108 -0
- package/dist/components/progress/Progress.vue.d.ts +6 -6
- package/dist/components/tables/DataTable.vue.d.ts +4 -2
- package/dist/components/tables/TablePagination.vue.d.ts +10 -0
- package/dist/components/tabs/tab/Tab.vue.d.ts +28 -28
- package/dist/components/tabs/tabs/Tabs.vue.d.ts +9 -9
- package/dist/composables/defaults/table.d.ts +1 -0
- package/dist/composables/forms/auto-complete/index.d.ts +9 -0
- package/dist/composables/index.es.js +5 -9
- package/dist/composables/popper.d.ts +2 -2
- package/dist/composables/sticky-header.d.ts +5 -5
- package/dist/consts/forms/auto-complete/index.d.ts +4 -0
- package/dist/index-4pX97qAk.js +8090 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2786 -2785
- package/dist/style.css +1 -1
- package/dist/utils/forms/auto-complete/index.d.ts +2 -0
- package/package.json +27 -27
- package/dist/index-Ph4f0pga.js +0 -7435
|
@@ -12,6 +12,10 @@ export interface Props {
|
|
|
12
12
|
hideDetails?: boolean;
|
|
13
13
|
}
|
|
14
14
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
15
|
+
size: {
|
|
16
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
15
19
|
indeterminate: {
|
|
16
20
|
type: globalThis.PropType<boolean>;
|
|
17
21
|
default: boolean;
|
|
@@ -20,10 +24,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
20
24
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
21
25
|
default: undefined;
|
|
22
26
|
};
|
|
23
|
-
size: {
|
|
24
|
-
type: globalThis.PropType<"sm" | "lg">;
|
|
25
|
-
default: undefined;
|
|
26
|
-
};
|
|
27
27
|
label: {
|
|
28
28
|
type: globalThis.PropType<string>;
|
|
29
29
|
default: string;
|
|
@@ -56,6 +56,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
56
56
|
"update:modelValue": (modelValue: boolean) => void;
|
|
57
57
|
"update:indeterminate": (indeterminate: boolean) => void;
|
|
58
58
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
59
|
+
size: {
|
|
60
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
59
63
|
indeterminate: {
|
|
60
64
|
type: globalThis.PropType<boolean>;
|
|
61
65
|
default: boolean;
|
|
@@ -64,10 +68,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
68
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
65
69
|
default: undefined;
|
|
66
70
|
};
|
|
67
|
-
size: {
|
|
68
|
-
type: globalThis.PropType<"sm" | "lg">;
|
|
69
|
-
default: undefined;
|
|
70
|
-
};
|
|
71
71
|
label: {
|
|
72
72
|
type: globalThis.PropType<string>;
|
|
73
73
|
default: string;
|
|
@@ -100,9 +100,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
100
100
|
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
101
101
|
"onUpdate:indeterminate"?: ((indeterminate: boolean) => any) | undefined;
|
|
102
102
|
}, {
|
|
103
|
+
size: "sm" | "lg";
|
|
103
104
|
indeterminate: boolean;
|
|
104
105
|
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
105
|
-
size: "sm" | "lg";
|
|
106
106
|
label: string;
|
|
107
107
|
disabled: boolean;
|
|
108
108
|
errorMessages: string | string[];
|
|
@@ -12,6 +12,10 @@ export interface RadioProps {
|
|
|
12
12
|
hideDetails?: boolean;
|
|
13
13
|
}
|
|
14
14
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
15
|
+
size: {
|
|
16
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
15
19
|
value: {
|
|
16
20
|
type: globalThis.PropType<string>;
|
|
17
21
|
required: true;
|
|
@@ -20,10 +24,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
20
24
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
21
25
|
default: undefined;
|
|
22
26
|
};
|
|
23
|
-
size: {
|
|
24
|
-
type: globalThis.PropType<"sm" | "lg">;
|
|
25
|
-
default: undefined;
|
|
26
|
-
};
|
|
27
27
|
label: {
|
|
28
28
|
type: globalThis.PropType<string>;
|
|
29
29
|
default: string;
|
|
@@ -55,6 +55,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
55
55
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
56
56
|
"update:modelValue": (modelValue: string) => void;
|
|
57
57
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
58
|
+
size: {
|
|
59
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
58
62
|
value: {
|
|
59
63
|
type: globalThis.PropType<string>;
|
|
60
64
|
required: true;
|
|
@@ -63,10 +67,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
63
67
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
64
68
|
default: undefined;
|
|
65
69
|
};
|
|
66
|
-
size: {
|
|
67
|
-
type: globalThis.PropType<"sm" | "lg">;
|
|
68
|
-
default: undefined;
|
|
69
|
-
};
|
|
70
70
|
label: {
|
|
71
71
|
type: globalThis.PropType<string>;
|
|
72
72
|
default: string;
|
|
@@ -98,8 +98,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
98
98
|
}>> & {
|
|
99
99
|
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
100
100
|
}, {
|
|
101
|
-
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
102
101
|
size: "sm" | "lg";
|
|
102
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
103
103
|
label: string;
|
|
104
104
|
disabled: boolean;
|
|
105
105
|
errorMessages: string | string[];
|
|
@@ -12,14 +12,14 @@ export interface Props {
|
|
|
12
12
|
size?: 'sm' | 'lg';
|
|
13
13
|
}
|
|
14
14
|
declare const _default: import("vue").DefineComponent<{
|
|
15
|
-
color: {
|
|
16
|
-
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
17
|
-
default: undefined;
|
|
18
|
-
};
|
|
19
15
|
size: {
|
|
20
16
|
type: globalThis.PropType<"sm" | "lg">;
|
|
21
17
|
default: undefined;
|
|
22
18
|
};
|
|
19
|
+
color: {
|
|
20
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
23
|
label: {
|
|
24
24
|
type: globalThis.PropType<string>;
|
|
25
25
|
default: string;
|
|
@@ -55,14 +55,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
55
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
56
56
|
"update:modelValue": (value: string) => void;
|
|
57
57
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
58
|
-
color: {
|
|
59
|
-
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
60
|
-
default: undefined;
|
|
61
|
-
};
|
|
62
58
|
size: {
|
|
63
59
|
type: globalThis.PropType<"sm" | "lg">;
|
|
64
60
|
default: undefined;
|
|
65
61
|
};
|
|
62
|
+
color: {
|
|
63
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
64
|
+
default: undefined;
|
|
65
|
+
};
|
|
66
66
|
label: {
|
|
67
67
|
type: globalThis.PropType<string>;
|
|
68
68
|
default: string;
|
|
@@ -98,8 +98,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
98
|
}>> & {
|
|
99
99
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
100
100
|
}, {
|
|
101
|
-
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
102
101
|
size: "sm" | "lg";
|
|
102
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
103
103
|
label: string;
|
|
104
104
|
disabled: boolean;
|
|
105
105
|
errorMessages: string | string[];
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { type Props as MenuProps } from '../../../components/overlays/menu/Menu.vue';
|
|
2
|
+
export interface Props<T, K extends keyof T = keyof T> {
|
|
3
|
+
options: T[];
|
|
4
|
+
keyAttr: K;
|
|
5
|
+
textAttr: K;
|
|
6
|
+
modelValue?: T | null;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
dense?: boolean;
|
|
9
|
+
outlined?: boolean;
|
|
10
|
+
label?: string;
|
|
11
|
+
menuOptions?: MenuProps;
|
|
12
|
+
labelClass?: string;
|
|
13
|
+
menuClass?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: <T extends object, K extends keyof T = keyof T>(__VLS_props: Props<T, K> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
|
|
16
|
+
props: Props<T, K>;
|
|
17
|
+
expose(exposed: {}): void;
|
|
18
|
+
attrs: any;
|
|
19
|
+
slots: {
|
|
20
|
+
activator?(_: {
|
|
21
|
+
disabled: boolean;
|
|
22
|
+
value: T | null | undefined;
|
|
23
|
+
outlined: boolean;
|
|
24
|
+
on: any;
|
|
25
|
+
open: any;
|
|
26
|
+
}): any;
|
|
27
|
+
};
|
|
28
|
+
emit: (e: 'update:model-value', value?: T | null | undefined) => void;
|
|
29
|
+
}, "attrs" | "emit" | "slots"> | undefined, __VLS_expose?: ((exposed: {}) => void) | undefined, __VLS_setup?: Promise<{
|
|
30
|
+
props: Props<T, K>;
|
|
31
|
+
expose(exposed: {}): void;
|
|
32
|
+
attrs: any;
|
|
33
|
+
slots: {
|
|
34
|
+
activator?(_: {
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
value: T | null | undefined;
|
|
37
|
+
outlined: boolean;
|
|
38
|
+
on: any;
|
|
39
|
+
open: any;
|
|
40
|
+
}): any;
|
|
41
|
+
};
|
|
42
|
+
emit: (e: 'update:model-value', value?: T | null | undefined) => void;
|
|
43
|
+
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
}> & {
|
|
46
|
+
__ctx?: {
|
|
47
|
+
props: Props<T, K>;
|
|
48
|
+
expose(exposed: {}): void;
|
|
49
|
+
attrs: any;
|
|
50
|
+
slots: {
|
|
51
|
+
activator?(_: {
|
|
52
|
+
disabled: boolean;
|
|
53
|
+
value: T | null | undefined;
|
|
54
|
+
outlined: boolean;
|
|
55
|
+
on: any;
|
|
56
|
+
open: any;
|
|
57
|
+
}): any;
|
|
58
|
+
};
|
|
59
|
+
emit: (e: 'update:model-value', value?: T | null | undefined) => void;
|
|
60
|
+
} | undefined;
|
|
61
|
+
};
|
|
62
|
+
export default _default;
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import type { ContextColorsType } from '~/src';
|
|
2
|
+
export interface Props {
|
|
3
|
+
modelValue?: number;
|
|
4
|
+
min?: number;
|
|
5
|
+
max?: number;
|
|
6
|
+
step?: number;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
showThumbLabel?: boolean;
|
|
9
|
+
showTicks?: boolean;
|
|
10
|
+
hideTrack?: boolean;
|
|
11
|
+
tickSize?: number;
|
|
12
|
+
vertical?: boolean;
|
|
13
|
+
color?: ContextColorsType;
|
|
14
|
+
label?: string;
|
|
15
|
+
hint?: string;
|
|
16
|
+
errorMessages?: string | string[];
|
|
17
|
+
successMessages?: string | string[];
|
|
18
|
+
hideDetails?: boolean;
|
|
19
|
+
sliderClass?: string;
|
|
20
|
+
tickClass?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const _default: import("vue").DefineComponent<{
|
|
23
|
+
vertical: {
|
|
24
|
+
type: globalThis.PropType<boolean>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
color: {
|
|
28
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
label: {
|
|
32
|
+
type: globalThis.PropType<string>;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
max: {
|
|
36
|
+
type: globalThis.PropType<number>;
|
|
37
|
+
default: number;
|
|
38
|
+
};
|
|
39
|
+
min: {
|
|
40
|
+
type: globalThis.PropType<number>;
|
|
41
|
+
default: number;
|
|
42
|
+
};
|
|
43
|
+
disabled: {
|
|
44
|
+
type: globalThis.PropType<boolean>;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
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;
|
|
58
|
+
};
|
|
59
|
+
modelValue: {
|
|
60
|
+
type: globalThis.PropType<number>;
|
|
61
|
+
default: number;
|
|
62
|
+
};
|
|
63
|
+
hideDetails: {
|
|
64
|
+
type: globalThis.PropType<boolean>;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
step: {
|
|
68
|
+
type: globalThis.PropType<number>;
|
|
69
|
+
default: number;
|
|
70
|
+
};
|
|
71
|
+
showThumbLabel: {
|
|
72
|
+
type: globalThis.PropType<boolean>;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
showTicks: {
|
|
76
|
+
type: globalThis.PropType<boolean>;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
hideTrack: {
|
|
80
|
+
type: globalThis.PropType<boolean>;
|
|
81
|
+
default: boolean;
|
|
82
|
+
};
|
|
83
|
+
tickSize: {
|
|
84
|
+
type: globalThis.PropType<number>;
|
|
85
|
+
default: number;
|
|
86
|
+
};
|
|
87
|
+
sliderClass: {
|
|
88
|
+
type: globalThis.PropType<string>;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
tickClass: {
|
|
92
|
+
type: globalThis.PropType<string>;
|
|
93
|
+
default: string;
|
|
94
|
+
};
|
|
95
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
96
|
+
"update:model-value": (value: number) => void;
|
|
97
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
98
|
+
vertical: {
|
|
99
|
+
type: globalThis.PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
102
|
+
color: {
|
|
103
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
label: {
|
|
107
|
+
type: globalThis.PropType<string>;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
max: {
|
|
111
|
+
type: globalThis.PropType<number>;
|
|
112
|
+
default: number;
|
|
113
|
+
};
|
|
114
|
+
min: {
|
|
115
|
+
type: globalThis.PropType<number>;
|
|
116
|
+
default: number;
|
|
117
|
+
};
|
|
118
|
+
disabled: {
|
|
119
|
+
type: globalThis.PropType<boolean>;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
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;
|
|
133
|
+
};
|
|
134
|
+
modelValue: {
|
|
135
|
+
type: globalThis.PropType<number>;
|
|
136
|
+
default: number;
|
|
137
|
+
};
|
|
138
|
+
hideDetails: {
|
|
139
|
+
type: globalThis.PropType<boolean>;
|
|
140
|
+
default: boolean;
|
|
141
|
+
};
|
|
142
|
+
step: {
|
|
143
|
+
type: globalThis.PropType<number>;
|
|
144
|
+
default: number;
|
|
145
|
+
};
|
|
146
|
+
showThumbLabel: {
|
|
147
|
+
type: globalThis.PropType<boolean>;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
showTicks: {
|
|
151
|
+
type: globalThis.PropType<boolean>;
|
|
152
|
+
default: boolean;
|
|
153
|
+
};
|
|
154
|
+
hideTrack: {
|
|
155
|
+
type: globalThis.PropType<boolean>;
|
|
156
|
+
default: boolean;
|
|
157
|
+
};
|
|
158
|
+
tickSize: {
|
|
159
|
+
type: globalThis.PropType<number>;
|
|
160
|
+
default: number;
|
|
161
|
+
};
|
|
162
|
+
sliderClass: {
|
|
163
|
+
type: globalThis.PropType<string>;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
tickClass: {
|
|
167
|
+
type: globalThis.PropType<string>;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
}>> & {
|
|
171
|
+
"onUpdate:model-value"?: ((value: number) => any) | undefined;
|
|
172
|
+
}, {
|
|
173
|
+
vertical: boolean;
|
|
174
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
175
|
+
label: string;
|
|
176
|
+
max: number;
|
|
177
|
+
min: number;
|
|
178
|
+
disabled: boolean;
|
|
179
|
+
errorMessages: string | string[];
|
|
180
|
+
successMessages: string | string[];
|
|
181
|
+
hint: string;
|
|
182
|
+
modelValue: number;
|
|
183
|
+
hideDetails: boolean;
|
|
184
|
+
step: number;
|
|
185
|
+
showThumbLabel: boolean;
|
|
186
|
+
showTicks: boolean;
|
|
187
|
+
hideTrack: boolean;
|
|
188
|
+
tickSize: number;
|
|
189
|
+
sliderClass: string;
|
|
190
|
+
tickClass: string;
|
|
191
|
+
}, {}>;
|
|
192
|
+
export default _default;
|
|
@@ -11,14 +11,14 @@ export interface Props {
|
|
|
11
11
|
hideDetails?: boolean;
|
|
12
12
|
}
|
|
13
13
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
14
|
-
color: {
|
|
15
|
-
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
16
|
-
default: undefined;
|
|
17
|
-
};
|
|
18
14
|
size: {
|
|
19
15
|
type: globalThis.PropType<"sm">;
|
|
20
16
|
default: undefined;
|
|
21
17
|
};
|
|
18
|
+
color: {
|
|
19
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
22
|
label: {
|
|
23
23
|
type: globalThis.PropType<string>;
|
|
24
24
|
default: string;
|
|
@@ -50,14 +50,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
50
50
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
51
51
|
"update:modelValue": (modelValue: boolean) => void;
|
|
52
52
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
53
|
-
color: {
|
|
54
|
-
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
55
|
-
default: undefined;
|
|
56
|
-
};
|
|
57
53
|
size: {
|
|
58
54
|
type: globalThis.PropType<"sm">;
|
|
59
55
|
default: undefined;
|
|
60
56
|
};
|
|
57
|
+
color: {
|
|
58
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
61
|
label: {
|
|
62
62
|
type: globalThis.PropType<string>;
|
|
63
63
|
default: string;
|
|
@@ -89,8 +89,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
89
89
|
}>> & {
|
|
90
90
|
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
91
91
|
}, {
|
|
92
|
-
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
93
92
|
size: "sm";
|
|
93
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
94
94
|
label: string;
|
|
95
95
|
disabled: boolean;
|
|
96
96
|
errorMessages: string | string[];
|
|
@@ -24,14 +24,14 @@ export interface Props {
|
|
|
24
24
|
autoGrow?: boolean;
|
|
25
25
|
}
|
|
26
26
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
27
|
-
readonly: {
|
|
28
|
-
type: globalThis.PropType<boolean>;
|
|
29
|
-
default: boolean;
|
|
30
|
-
};
|
|
31
27
|
value: {
|
|
32
28
|
type: globalThis.PropType<string>;
|
|
33
29
|
default: string;
|
|
34
30
|
};
|
|
31
|
+
readonly: {
|
|
32
|
+
type: globalThis.PropType<boolean>;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
35
|
variant: {
|
|
36
36
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
37
37
|
default: string;
|
|
@@ -112,14 +112,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
112
112
|
input: (modelValue: string) => void;
|
|
113
113
|
"click:clear": () => void;
|
|
114
114
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
115
|
-
readonly: {
|
|
116
|
-
type: globalThis.PropType<boolean>;
|
|
117
|
-
default: boolean;
|
|
118
|
-
};
|
|
119
115
|
value: {
|
|
120
116
|
type: globalThis.PropType<string>;
|
|
121
117
|
default: string;
|
|
122
118
|
};
|
|
119
|
+
readonly: {
|
|
120
|
+
type: globalThis.PropType<boolean>;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
123
|
variant: {
|
|
124
124
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
125
125
|
default: string;
|
|
@@ -200,8 +200,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
200
200
|
onInput?: ((modelValue: string) => any) | undefined;
|
|
201
201
|
"onClick:clear"?: (() => any) | undefined;
|
|
202
202
|
}, {
|
|
203
|
-
readonly: boolean;
|
|
204
203
|
value: string;
|
|
204
|
+
readonly: boolean;
|
|
205
205
|
variant: "default" | "outlined" | "filled";
|
|
206
206
|
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
207
207
|
label: string;
|
|
@@ -6,6 +6,10 @@ export interface Props {
|
|
|
6
6
|
color?: ContextColorsType;
|
|
7
7
|
}
|
|
8
8
|
declare const _default: import("vue").DefineComponent<{
|
|
9
|
+
size: {
|
|
10
|
+
type: globalThis.PropType<string | number>;
|
|
11
|
+
default: number;
|
|
12
|
+
};
|
|
9
13
|
name: {
|
|
10
14
|
type: globalThis.PropType<RuiIcons>;
|
|
11
15
|
required: true;
|
|
@@ -14,11 +18,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
18
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
15
19
|
default: undefined;
|
|
16
20
|
};
|
|
21
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
17
22
|
size: {
|
|
18
23
|
type: globalThis.PropType<string | number>;
|
|
19
24
|
default: number;
|
|
20
25
|
};
|
|
21
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
22
26
|
name: {
|
|
23
27
|
type: globalThis.PropType<RuiIcons>;
|
|
24
28
|
required: true;
|
|
@@ -27,12 +31,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
31
|
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
28
32
|
default: undefined;
|
|
29
33
|
};
|
|
30
|
-
size: {
|
|
31
|
-
type: globalThis.PropType<string | number>;
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
34
|
}>>, {
|
|
35
|
-
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
36
35
|
size: string | number;
|
|
36
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
37
37
|
}, {}>;
|
|
38
38
|
export default _default;
|
|
@@ -5,12 +5,14 @@ import { type Props as ButtonGroupProps, default as RuiButtonGroup } from '../co
|
|
|
5
5
|
import { type Props as IconProps, default as RuiIcon } from '../components/icons/Icon.vue';
|
|
6
6
|
import { type Props as CheckboxProps, default as RuiCheckbox } from '../components/forms/checkbox/Checkbox.vue';
|
|
7
7
|
import { default as RuiSwitch, type Props as SwitchProps } from '../components/forms/switch/Switch.vue';
|
|
8
|
+
import { default as RuiSlider, type Props as SliderProps } from '../components/forms/slider/Slider.vue';
|
|
8
9
|
import { type Props as ChipProps, default as RuiChip } from '../components/chips/Chip.vue';
|
|
9
10
|
import { type Props as DividerProps, default as RuiDivider } from '../components/divider/Divider.vue';
|
|
10
11
|
import { default as RuiStepper, type Props as StepperProps } from '../components/steppers/Stepper.vue';
|
|
11
12
|
import { default as RuiTextArea, type Props as TextAreaProps } from '../components/forms/text-area/TextArea.vue';
|
|
12
13
|
import { default as RuiTextField, type TextFieldProps } from '../components/forms/text-field/TextField.vue';
|
|
13
14
|
import { default as RuiTooltip, type Props as TooltipProps } from '../components/overlays/tooltip/Tooltip.vue';
|
|
15
|
+
import { type Props as MenuProps, default as RuiMenu } from '../components/overlays/menu/Menu.vue';
|
|
14
16
|
import { type Props as BadgeProps, default as RuiBadge } from '../components/overlays/badge/Badge.vue';
|
|
15
17
|
import { type Props as DialogProps, default as RuiDialog } from '../components/overlays/dialog/Dialog.vue';
|
|
16
18
|
import { type Props as FooterStepperProps, default as RuiFooterStepper } from '../components/steppers/FooterStepper.vue';
|
|
@@ -30,5 +32,8 @@ import { default as RuiTab, type Props as TabProps } from '../components/tabs/ta
|
|
|
30
32
|
import { default as RuiTabItems, type Props as TabItemsProps } from '../components/tabs/tab-items/TabItems.vue';
|
|
31
33
|
import { default as RuiTabItem, type Props as TabItemProps } from '../components/tabs/tab-item/TabItem.vue';
|
|
32
34
|
import { default as RuiSkeletonLoader, type Props as SkeletonLoaderProps } from '../components/loaders/Skeleton.vue';
|
|
35
|
+
import { type Props as MenuSelectProps, default as RuiMenuSelect } from '../components/forms/select/MenuSelect.vue';
|
|
36
|
+
import { type Props as AccordionsProps, default as RuiAccordions } from '../components/accordions/accordions/Accordions.vue';
|
|
37
|
+
import { type AccordionProps, default as RuiAccordion } from '../components/accordions/accordion/Accordion.vue';
|
|
33
38
|
import type { TableColumn as DataTableColumn, GroupKeys as DataTableGroupKeys, SortColumn as DataTableSortColumn, TableSortData as DataTableSortData } from '../components/tables/TableHead.vue';
|
|
34
|
-
export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiSwitch, RuiTextField, RuiTooltip, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, RuiTableRowExpander, AutoCompleteProps, ChipProps, TooltipProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, SwitchProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, ExpandButtonProps, DataTableSortData, DataTableGroupKeys, };
|
|
39
|
+
export { RuiAlert, RuiAutoComplete, RuiBadge, RuiButton, RuiButtonGroup, RuiCheckbox, RuiChip, RuiFooterStepper, RuiIcon, RuiLogo, RuiProgress, RuiRadio, RuiRadioGroup, RuiRevealableTextField, RuiStepper, RuiSwitch, RuiTextField, RuiTooltip, RuiMenu, RuiDataTable, RuiSimpleSelect, RuiDialog, RuiCard, RuiCardHeader, RuiTabs, RuiTab, RuiTabItems, RuiTabItem, RuiTablePagination, RuiSkeletonLoader, RuiTextArea, RuiDivider, RuiTableRowExpander, RuiMenuSelect, RuiSlider, RuiAccordions, RuiAccordion, AutoCompleteProps, ChipProps, TooltipProps, MenuProps, SimpleSelectProps, DataTableProps, DataTableColumn, DataTableSortColumn, DataTableOptions, TablePaginationData, DialogProps, ButtonProps, ButtonGroupProps, CardProps, CardHeaderProps, BadgeProps, AlertProps, CheckboxProps, SwitchProps, ProgressProps, RadioGroupProps, RadioProps, LogoProps, StepperProps, TextFieldProps, IconProps, FooterStepperProps, TabsProps, TabProps, TabItemsProps, TabItemProps, TablePaginationProps, RevealableTextFieldProps, SkeletonLoaderProps, DividerProps, TextAreaProps, ExpandButtonProps, DataTableSortData, DataTableGroupKeys, MenuSelectProps, SliderProps, AccordionsProps, AccordionProps, };
|
|
@@ -1,44 +1,40 @@
|
|
|
1
|
-
import { A as
|
|
2
|
-
import "vue";
|
|
3
|
-
import "@vueuse/shared";
|
|
4
|
-
import "../theme-DT8UjYf9.js";
|
|
5
|
-
import "../icons/icons_1.es.js";
|
|
6
|
-
import "../icons/icons_2.es.js";
|
|
7
|
-
import "../icons/icons_5.es.js";
|
|
8
|
-
import "@vueuse/core";
|
|
9
|
-
import "../colors-ikihApJv.js";
|
|
10
|
-
import "vue-router";
|
|
1
|
+
import { G as u, z as s, A as e, a as R, B as o, b as t, d as r, o as l, p as d, C as p, e as n, D as T, n as b, x as c, F as S, I as x, _ as g, l as m, M as A, P as C, R as h, f as B, g as D, m as F, v as I, y as k, h as v, i as w, r as G, t as M, s as P, u as f, E, q as L, w as j, j as q, k as y } from "../index-4pX97qAk.js";
|
|
11
2
|
export {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
3
|
+
u as RuiAccordion,
|
|
4
|
+
s as RuiAccordions,
|
|
5
|
+
e as RuiAlert,
|
|
6
|
+
R as RuiAutoComplete,
|
|
7
|
+
o as RuiBadge,
|
|
8
|
+
t as RuiButton,
|
|
9
|
+
r as RuiButtonGroup,
|
|
10
|
+
l as RuiCard,
|
|
11
|
+
d as RuiCardHeader,
|
|
12
|
+
p as RuiCheckbox,
|
|
13
|
+
n as RuiChip,
|
|
14
|
+
T as RuiDataTable,
|
|
15
|
+
b as RuiDialog,
|
|
16
|
+
c as RuiDivider,
|
|
17
|
+
S as RuiFooterStepper,
|
|
18
|
+
x as RuiIcon,
|
|
19
|
+
g as RuiLogo,
|
|
20
|
+
m as RuiMenu,
|
|
21
|
+
A as RuiMenuSelect,
|
|
22
|
+
C as RuiProgress,
|
|
23
|
+
h as RuiRadio,
|
|
24
|
+
B as RuiRadioGroup,
|
|
25
|
+
D as RuiRevealableTextField,
|
|
26
|
+
F as RuiSimpleSelect,
|
|
27
|
+
I as RuiSkeletonLoader,
|
|
28
|
+
k as RuiSlider,
|
|
29
|
+
v as RuiStepper,
|
|
30
|
+
w as RuiSwitch,
|
|
31
|
+
G as RuiTab,
|
|
32
|
+
M as RuiTabItem,
|
|
33
|
+
P as RuiTabItems,
|
|
34
|
+
f as RuiTablePagination,
|
|
35
|
+
E as RuiTableRowExpander,
|
|
36
|
+
L as RuiTabs,
|
|
37
|
+
j as RuiTextArea,
|
|
38
|
+
q as RuiTextField,
|
|
39
|
+
y as RuiTooltip
|
|
44
40
|
};
|