@rotki/ui-library 0.6.0 → 0.8.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/README.md +11 -8
- package/dist/all-icons.d.ts +82 -21
- package/dist/all-icons.es.js +4996 -4752
- package/dist/components/alerts/Alert.vue.d.ts +10 -10
- package/dist/components/buttons/button/Button.vue.d.ts +1 -0
- package/dist/components/buttons/button-group/ButtonGroup.vue.d.ts +1 -0
- 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 +55 -15
- 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 +52 -43
- 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 +59 -47
- 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 +6 -2
- package/dist/components/index.es.js +28 -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 +4 -4
- 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 +47 -2
- package/dist/components/tables/ExpandButton.vue.d.ts +34 -0
- package/dist/components/tables/TablePagination.vue.d.ts +1 -1
- package/dist/components/tabs/tab/Tab.vue.d.ts +1 -1
- 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/defaults/table.d.ts +9 -0
- package/dist/composables/index.es.js +2 -2
- package/dist/composables/popper.d.ts +1 -1
- package/dist/composables/sticky-header.d.ts +9 -0
- package/dist/index-2YbRDW3N.js +6333 -0
- package/dist/{index-393a0e94.js → index-W2poXQa4.js} +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.es.js +2578 -2505
- 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 +39 -39
- package/dist/index-2e3eeb1f.js +0 -5701
- /package/dist/{colors-01d79c7b.js → colors-ikihApJv.js} +0 -0
|
@@ -1,22 +1,48 @@
|
|
|
1
|
+
import { type ContextColorsType } from '~/src';
|
|
1
2
|
export interface Props {
|
|
2
3
|
modelValue?: string;
|
|
3
4
|
inline?: boolean;
|
|
5
|
+
label?: string;
|
|
4
6
|
hint?: string;
|
|
5
|
-
errorMessages?: string[];
|
|
7
|
+
errorMessages?: string | string[];
|
|
8
|
+
successMessages?: string | string[];
|
|
6
9
|
hideDetails?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
color?: ContextColorsType;
|
|
12
|
+
size?: 'sm' | 'lg';
|
|
7
13
|
}
|
|
8
14
|
declare const _default: import("vue").DefineComponent<{
|
|
9
|
-
|
|
15
|
+
color: {
|
|
16
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
19
|
+
size: {
|
|
20
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
label: {
|
|
10
24
|
type: globalThis.PropType<string>;
|
|
11
25
|
default: string;
|
|
12
26
|
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: globalThis.PropType<boolean>;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
errorMessages: {
|
|
32
|
+
type: globalThis.PropType<string | string[]>;
|
|
33
|
+
default: () => never[];
|
|
34
|
+
};
|
|
35
|
+
successMessages: {
|
|
36
|
+
type: globalThis.PropType<string | string[]>;
|
|
37
|
+
default: () => never[];
|
|
38
|
+
};
|
|
13
39
|
hint: {
|
|
14
40
|
type: globalThis.PropType<string>;
|
|
15
41
|
default: string;
|
|
16
42
|
};
|
|
17
|
-
|
|
18
|
-
type: globalThis.PropType<string
|
|
19
|
-
default:
|
|
43
|
+
modelValue: {
|
|
44
|
+
type: globalThis.PropType<string>;
|
|
45
|
+
default: string;
|
|
20
46
|
};
|
|
21
47
|
hideDetails: {
|
|
22
48
|
type: globalThis.PropType<boolean>;
|
|
@@ -28,18 +54,38 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
54
|
};
|
|
29
55
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
56
|
"update:modelValue": (value: string) => void;
|
|
31
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
32
|
-
|
|
57
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
58
|
+
color: {
|
|
59
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
62
|
+
size: {
|
|
63
|
+
type: globalThis.PropType<"sm" | "lg">;
|
|
64
|
+
default: undefined;
|
|
65
|
+
};
|
|
66
|
+
label: {
|
|
33
67
|
type: globalThis.PropType<string>;
|
|
34
68
|
default: string;
|
|
35
69
|
};
|
|
70
|
+
disabled: {
|
|
71
|
+
type: globalThis.PropType<boolean>;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
errorMessages: {
|
|
75
|
+
type: globalThis.PropType<string | string[]>;
|
|
76
|
+
default: () => never[];
|
|
77
|
+
};
|
|
78
|
+
successMessages: {
|
|
79
|
+
type: globalThis.PropType<string | string[]>;
|
|
80
|
+
default: () => never[];
|
|
81
|
+
};
|
|
36
82
|
hint: {
|
|
37
83
|
type: globalThis.PropType<string>;
|
|
38
84
|
default: string;
|
|
39
85
|
};
|
|
40
|
-
|
|
41
|
-
type: globalThis.PropType<string
|
|
42
|
-
default:
|
|
86
|
+
modelValue: {
|
|
87
|
+
type: globalThis.PropType<string>;
|
|
88
|
+
default: string;
|
|
43
89
|
};
|
|
44
90
|
hideDetails: {
|
|
45
91
|
type: globalThis.PropType<boolean>;
|
|
@@ -52,9 +98,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
98
|
}>> & {
|
|
53
99
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
54
100
|
}, {
|
|
55
|
-
|
|
101
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
102
|
+
size: "sm" | "lg";
|
|
103
|
+
label: string;
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
errorMessages: string | string[];
|
|
106
|
+
successMessages: string | string[];
|
|
56
107
|
hint: string;
|
|
57
|
-
|
|
108
|
+
modelValue: string;
|
|
58
109
|
hideDetails: boolean;
|
|
59
110
|
inline: boolean;
|
|
60
111
|
}, {}>;
|
|
@@ -2,13 +2,17 @@ import { type TextFieldProps } from '../../../components/forms/text-field/TextFi
|
|
|
2
2
|
export interface Props extends TextFieldProps {
|
|
3
3
|
}
|
|
4
4
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
5
|
+
readonly: {
|
|
6
|
+
type: globalThis.PropType<boolean>;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
5
9
|
variant: {
|
|
6
10
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
7
11
|
default: string;
|
|
8
12
|
};
|
|
9
13
|
color: {
|
|
10
|
-
type: globalThis.PropType<"
|
|
11
|
-
default:
|
|
14
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
15
|
+
default: undefined;
|
|
12
16
|
};
|
|
13
17
|
label: {
|
|
14
18
|
type: globalThis.PropType<string>;
|
|
@@ -22,38 +26,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
22
26
|
type: globalThis.PropType<boolean>;
|
|
23
27
|
default: boolean;
|
|
24
28
|
};
|
|
25
|
-
|
|
26
|
-
type: globalThis.PropType<
|
|
27
|
-
default:
|
|
29
|
+
errorMessages: {
|
|
30
|
+
type: globalThis.PropType<string | string[]>;
|
|
31
|
+
default: () => never[];
|
|
32
|
+
};
|
|
33
|
+
successMessages: {
|
|
34
|
+
type: globalThis.PropType<string | string[]>;
|
|
35
|
+
default: () => never[];
|
|
36
|
+
};
|
|
37
|
+
hint: {
|
|
38
|
+
type: globalThis.PropType<string>;
|
|
39
|
+
default: string;
|
|
28
40
|
};
|
|
29
41
|
modelValue: {
|
|
30
42
|
type: globalThis.PropType<string>;
|
|
31
43
|
default: string;
|
|
32
44
|
};
|
|
33
45
|
textColor: {
|
|
34
|
-
type: globalThis.PropType<"
|
|
46
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
35
47
|
default: undefined;
|
|
36
48
|
};
|
|
37
49
|
dense: {
|
|
38
50
|
type: globalThis.PropType<boolean>;
|
|
39
51
|
default: boolean;
|
|
40
52
|
};
|
|
41
|
-
hint: {
|
|
42
|
-
type: globalThis.PropType<string>;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
53
|
as: {
|
|
46
54
|
type: globalThis.PropType<string | object>;
|
|
47
55
|
default: undefined;
|
|
48
56
|
};
|
|
49
|
-
errorMessages: {
|
|
50
|
-
type: globalThis.PropType<string[]>;
|
|
51
|
-
default: () => never[];
|
|
52
|
-
};
|
|
53
|
-
successMessages: {
|
|
54
|
-
type: globalThis.PropType<string[]>;
|
|
55
|
-
default: () => never[];
|
|
56
|
-
};
|
|
57
57
|
hideDetails: {
|
|
58
58
|
type: globalThis.PropType<boolean>;
|
|
59
59
|
default: boolean;
|
|
@@ -66,14 +66,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
66
66
|
type: globalThis.PropType<import("../../..").RuiIcons>;
|
|
67
67
|
default: undefined;
|
|
68
68
|
};
|
|
69
|
-
|
|
69
|
+
clearable: {
|
|
70
|
+
type: globalThis.PropType<boolean>;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
74
|
+
readonly: {
|
|
75
|
+
type: globalThis.PropType<boolean>;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
70
78
|
variant: {
|
|
71
79
|
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
72
80
|
default: string;
|
|
73
81
|
};
|
|
74
82
|
color: {
|
|
75
|
-
type: globalThis.PropType<"
|
|
76
|
-
default:
|
|
83
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
84
|
+
default: undefined;
|
|
77
85
|
};
|
|
78
86
|
label: {
|
|
79
87
|
type: globalThis.PropType<string>;
|
|
@@ -87,38 +95,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
87
95
|
type: globalThis.PropType<boolean>;
|
|
88
96
|
default: boolean;
|
|
89
97
|
};
|
|
90
|
-
|
|
91
|
-
type: globalThis.PropType<
|
|
92
|
-
default:
|
|
98
|
+
errorMessages: {
|
|
99
|
+
type: globalThis.PropType<string | string[]>;
|
|
100
|
+
default: () => never[];
|
|
101
|
+
};
|
|
102
|
+
successMessages: {
|
|
103
|
+
type: globalThis.PropType<string | string[]>;
|
|
104
|
+
default: () => never[];
|
|
105
|
+
};
|
|
106
|
+
hint: {
|
|
107
|
+
type: globalThis.PropType<string>;
|
|
108
|
+
default: string;
|
|
93
109
|
};
|
|
94
110
|
modelValue: {
|
|
95
111
|
type: globalThis.PropType<string>;
|
|
96
112
|
default: string;
|
|
97
113
|
};
|
|
98
114
|
textColor: {
|
|
99
|
-
type: globalThis.PropType<"
|
|
115
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
100
116
|
default: undefined;
|
|
101
117
|
};
|
|
102
118
|
dense: {
|
|
103
119
|
type: globalThis.PropType<boolean>;
|
|
104
120
|
default: boolean;
|
|
105
121
|
};
|
|
106
|
-
hint: {
|
|
107
|
-
type: globalThis.PropType<string>;
|
|
108
|
-
default: string;
|
|
109
|
-
};
|
|
110
122
|
as: {
|
|
111
123
|
type: globalThis.PropType<string | object>;
|
|
112
124
|
default: undefined;
|
|
113
125
|
};
|
|
114
|
-
errorMessages: {
|
|
115
|
-
type: globalThis.PropType<string[]>;
|
|
116
|
-
default: () => never[];
|
|
117
|
-
};
|
|
118
|
-
successMessages: {
|
|
119
|
-
type: globalThis.PropType<string[]>;
|
|
120
|
-
default: () => never[];
|
|
121
|
-
};
|
|
122
126
|
hideDetails: {
|
|
123
127
|
type: globalThis.PropType<boolean>;
|
|
124
128
|
default: boolean;
|
|
@@ -131,23 +135,28 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
131
135
|
type: globalThis.PropType<import("../../..").RuiIcons>;
|
|
132
136
|
default: undefined;
|
|
133
137
|
};
|
|
138
|
+
clearable: {
|
|
139
|
+
type: globalThis.PropType<boolean>;
|
|
140
|
+
default: boolean;
|
|
141
|
+
};
|
|
134
142
|
}>>, {
|
|
143
|
+
readonly: boolean;
|
|
135
144
|
variant: "default" | "outlined" | "filled";
|
|
136
|
-
color: "
|
|
145
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
137
146
|
label: string;
|
|
138
147
|
placeholder: string;
|
|
139
148
|
disabled: boolean;
|
|
140
|
-
|
|
149
|
+
errorMessages: string | string[];
|
|
150
|
+
successMessages: string | string[];
|
|
151
|
+
hint: string;
|
|
141
152
|
modelValue: string;
|
|
142
|
-
textColor: "
|
|
153
|
+
textColor: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
143
154
|
dense: boolean;
|
|
144
|
-
hint: string;
|
|
145
155
|
as: string | object;
|
|
146
|
-
errorMessages: string[];
|
|
147
|
-
successMessages: string[];
|
|
148
156
|
hideDetails: boolean;
|
|
149
157
|
prependIcon: import("../../..").RuiIcons;
|
|
150
158
|
appendIcon: import("../../..").RuiIcons;
|
|
159
|
+
clearable: boolean;
|
|
151
160
|
}, {}>, {
|
|
152
161
|
prepend?(_: {}): any;
|
|
153
162
|
append?(_: {}): any;
|
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
};
|
|
29
29
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
30
|
"update:model-value": (value?: string | number | undefined) => void;
|
|
31
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<
|
|
31
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
32
32
|
name: {
|
|
33
33
|
type: globalThis.PropType<string>;
|
|
34
34
|
default: string;
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
import { type ContextColorsType } from '../../../consts/colors';
|
|
2
|
+
import { type RuiIcons } from '~/src';
|
|
3
|
+
export interface Props {
|
|
4
|
+
value?: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
variant?: 'default' | 'filled' | 'outlined';
|
|
9
|
+
color?: ContextColorsType;
|
|
10
|
+
textColor?: ContextColorsType;
|
|
11
|
+
dense?: boolean;
|
|
12
|
+
hint?: string;
|
|
13
|
+
errorMessages?: string | string[];
|
|
14
|
+
successMessages?: string | string[];
|
|
15
|
+
hideDetails?: boolean;
|
|
16
|
+
prependIcon?: RuiIcons;
|
|
17
|
+
appendIcon?: RuiIcons;
|
|
18
|
+
readonly?: boolean;
|
|
19
|
+
clearable?: boolean;
|
|
20
|
+
noResize?: boolean;
|
|
21
|
+
minRows?: number | string;
|
|
22
|
+
maxRows?: number | string;
|
|
23
|
+
rowHeight?: number | string;
|
|
24
|
+
autoGrow?: boolean;
|
|
25
|
+
}
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
27
|
+
readonly: {
|
|
28
|
+
type: globalThis.PropType<boolean>;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
value: {
|
|
32
|
+
type: globalThis.PropType<string>;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
variant: {
|
|
36
|
+
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
color: {
|
|
40
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
label: {
|
|
44
|
+
type: globalThis.PropType<string>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
placeholder: {
|
|
48
|
+
type: globalThis.PropType<string>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
disabled: {
|
|
52
|
+
type: globalThis.PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
errorMessages: {
|
|
56
|
+
type: globalThis.PropType<string | string[]>;
|
|
57
|
+
default: () => never[];
|
|
58
|
+
};
|
|
59
|
+
successMessages: {
|
|
60
|
+
type: globalThis.PropType<string | string[]>;
|
|
61
|
+
default: () => never[];
|
|
62
|
+
};
|
|
63
|
+
hint: {
|
|
64
|
+
type: globalThis.PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
textColor: {
|
|
68
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
69
|
+
default: undefined;
|
|
70
|
+
};
|
|
71
|
+
dense: {
|
|
72
|
+
type: globalThis.PropType<boolean>;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
hideDetails: {
|
|
76
|
+
type: globalThis.PropType<boolean>;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
prependIcon: {
|
|
80
|
+
type: globalThis.PropType<RuiIcons>;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
83
|
+
appendIcon: {
|
|
84
|
+
type: globalThis.PropType<RuiIcons>;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
|
+
clearable: {
|
|
88
|
+
type: globalThis.PropType<boolean>;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
noResize: {
|
|
92
|
+
type: globalThis.PropType<boolean>;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
95
|
+
minRows: {
|
|
96
|
+
type: globalThis.PropType<string | number>;
|
|
97
|
+
default: number;
|
|
98
|
+
};
|
|
99
|
+
maxRows: {
|
|
100
|
+
type: globalThis.PropType<string | number>;
|
|
101
|
+
default: undefined;
|
|
102
|
+
};
|
|
103
|
+
rowHeight: {
|
|
104
|
+
type: globalThis.PropType<string | number>;
|
|
105
|
+
default: number;
|
|
106
|
+
};
|
|
107
|
+
autoGrow: {
|
|
108
|
+
type: globalThis.PropType<boolean>;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
112
|
+
input: (modelValue: string) => void;
|
|
113
|
+
"click:clear": () => void;
|
|
114
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
|
|
115
|
+
readonly: {
|
|
116
|
+
type: globalThis.PropType<boolean>;
|
|
117
|
+
default: boolean;
|
|
118
|
+
};
|
|
119
|
+
value: {
|
|
120
|
+
type: globalThis.PropType<string>;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
123
|
+
variant: {
|
|
124
|
+
type: globalThis.PropType<"default" | "outlined" | "filled">;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
color: {
|
|
128
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
131
|
+
label: {
|
|
132
|
+
type: globalThis.PropType<string>;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
placeholder: {
|
|
136
|
+
type: globalThis.PropType<string>;
|
|
137
|
+
default: string;
|
|
138
|
+
};
|
|
139
|
+
disabled: {
|
|
140
|
+
type: globalThis.PropType<boolean>;
|
|
141
|
+
default: boolean;
|
|
142
|
+
};
|
|
143
|
+
errorMessages: {
|
|
144
|
+
type: globalThis.PropType<string | string[]>;
|
|
145
|
+
default: () => never[];
|
|
146
|
+
};
|
|
147
|
+
successMessages: {
|
|
148
|
+
type: globalThis.PropType<string | string[]>;
|
|
149
|
+
default: () => never[];
|
|
150
|
+
};
|
|
151
|
+
hint: {
|
|
152
|
+
type: globalThis.PropType<string>;
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
textColor: {
|
|
156
|
+
type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
159
|
+
dense: {
|
|
160
|
+
type: globalThis.PropType<boolean>;
|
|
161
|
+
default: boolean;
|
|
162
|
+
};
|
|
163
|
+
hideDetails: {
|
|
164
|
+
type: globalThis.PropType<boolean>;
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
prependIcon: {
|
|
168
|
+
type: globalThis.PropType<RuiIcons>;
|
|
169
|
+
default: undefined;
|
|
170
|
+
};
|
|
171
|
+
appendIcon: {
|
|
172
|
+
type: globalThis.PropType<RuiIcons>;
|
|
173
|
+
default: undefined;
|
|
174
|
+
};
|
|
175
|
+
clearable: {
|
|
176
|
+
type: globalThis.PropType<boolean>;
|
|
177
|
+
default: boolean;
|
|
178
|
+
};
|
|
179
|
+
noResize: {
|
|
180
|
+
type: globalThis.PropType<boolean>;
|
|
181
|
+
default: boolean;
|
|
182
|
+
};
|
|
183
|
+
minRows: {
|
|
184
|
+
type: globalThis.PropType<string | number>;
|
|
185
|
+
default: number;
|
|
186
|
+
};
|
|
187
|
+
maxRows: {
|
|
188
|
+
type: globalThis.PropType<string | number>;
|
|
189
|
+
default: undefined;
|
|
190
|
+
};
|
|
191
|
+
rowHeight: {
|
|
192
|
+
type: globalThis.PropType<string | number>;
|
|
193
|
+
default: number;
|
|
194
|
+
};
|
|
195
|
+
autoGrow: {
|
|
196
|
+
type: globalThis.PropType<boolean>;
|
|
197
|
+
default: boolean;
|
|
198
|
+
};
|
|
199
|
+
}>> & {
|
|
200
|
+
onInput?: ((modelValue: string) => any) | undefined;
|
|
201
|
+
"onClick:clear"?: (() => any) | undefined;
|
|
202
|
+
}, {
|
|
203
|
+
readonly: boolean;
|
|
204
|
+
value: string;
|
|
205
|
+
variant: "default" | "outlined" | "filled";
|
|
206
|
+
color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
207
|
+
label: string;
|
|
208
|
+
placeholder: string;
|
|
209
|
+
disabled: boolean;
|
|
210
|
+
errorMessages: string | string[];
|
|
211
|
+
successMessages: string | string[];
|
|
212
|
+
hint: string;
|
|
213
|
+
textColor: "primary" | "secondary" | "error" | "warning" | "info" | "success";
|
|
214
|
+
dense: boolean;
|
|
215
|
+
hideDetails: boolean;
|
|
216
|
+
prependIcon: RuiIcons;
|
|
217
|
+
appendIcon: RuiIcons;
|
|
218
|
+
clearable: boolean;
|
|
219
|
+
noResize: boolean;
|
|
220
|
+
minRows: string | number;
|
|
221
|
+
maxRows: string | number;
|
|
222
|
+
rowHeight: string | number;
|
|
223
|
+
autoGrow: boolean;
|
|
224
|
+
}, {}>, {
|
|
225
|
+
prepend?(_: {}): any;
|
|
226
|
+
append?(_: {}): any;
|
|
227
|
+
}>;
|
|
228
|
+
export default _default;
|
|
229
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
230
|
+
new (): {
|
|
231
|
+
$slots: S;
|
|
232
|
+
};
|
|
233
|
+
};
|