@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.
Files changed (52) hide show
  1. package/dist/all-icons.d.ts +82 -21
  2. package/dist/all-icons.es.js +4996 -4752
  3. package/dist/components/alerts/Alert.vue.d.ts +1 -1
  4. package/dist/components/buttons/button/Button.vue.d.ts +39 -95
  5. package/dist/components/buttons/button-group/ButtonGroup.vue.d.ts +29 -41
  6. package/dist/components/cards/Card.vue.d.ts +21 -1
  7. package/dist/components/cards/CardHeader.vue.d.ts +1 -1
  8. package/dist/components/chips/Chip.vue.d.ts +1 -1
  9. package/dist/components/divider/Divider.vue.d.ts +17 -0
  10. package/dist/components/forms/auto-complete/AutoComplete.vue.d.ts +25 -25
  11. package/dist/components/forms/auto-complete/AutoCompleteSelection.vue.d.ts +1 -1
  12. package/dist/components/forms/checkbox/Checkbox.vue.d.ts +36 -16
  13. package/dist/components/forms/radio-button/radio/Radio.vue.d.ts +37 -17
  14. package/dist/components/forms/radio-button/radio-group/RadioGroup.vue.d.ts +63 -12
  15. package/dist/components/forms/revealable-text-field/RevealableTextField.vue.d.ts +160 -1
  16. package/dist/components/forms/select/SimpleSelect.vue.d.ts +1 -1
  17. package/dist/components/forms/text-area/TextArea.vue.d.ts +233 -0
  18. package/dist/components/forms/text-field/TextField.vue.d.ts +66 -34
  19. package/dist/components/helpers/FormTextDetail.vue.d.ts +32 -0
  20. package/dist/components/icons/Icon.vue.d.ts +1 -1
  21. package/dist/components/index.d.ts +22 -18
  22. package/dist/components/index.es.js +29 -24
  23. package/dist/components/loaders/Skeleton.vue.d.ts +27 -0
  24. package/dist/components/loaders/SkeletonBase.vue.d.ts +17 -0
  25. package/dist/components/logos/Logo.vue.d.ts +1 -1
  26. package/dist/components/overlays/badge/Badge.vue.d.ts +1 -1
  27. package/dist/components/overlays/dialog/Dialog.vue.d.ts +1 -1
  28. package/dist/components/overlays/tooltip/Tooltip.vue.d.ts +1 -1
  29. package/dist/components/progress/Progress.vue.d.ts +1 -1
  30. package/dist/components/steppers/FooterStepper.vue.d.ts +1 -1
  31. package/dist/components/steppers/Stepper.vue.d.ts +1 -1
  32. package/dist/components/steppers/StepperCustomIcon.vue.d.ts +1 -1
  33. package/dist/components/steppers/StepperIcon.vue.d.ts +1 -1
  34. package/dist/components/tables/DataTable.vue.d.ts +8 -1
  35. package/dist/components/tables/TablePagination.vue.d.ts +1 -1
  36. package/dist/components/tabs/tab/Tab.vue.d.ts +6 -2
  37. package/dist/components/tabs/tab-item/TabItem.vue.d.ts +1 -1
  38. package/dist/components/tabs/tab-items/TabItems.vue.d.ts +1 -1
  39. package/dist/components/tabs/tabs/Tabs.vue.d.ts +1 -1
  40. package/dist/composables/index.es.js +2 -2
  41. package/dist/composables/popper.d.ts +1 -1
  42. package/dist/index-Q2a5R3OH.js +6090 -0
  43. package/dist/{index-393a0e94.js → index-W2poXQa4.js} +1 -1
  44. package/dist/index.d.ts +1 -0
  45. package/dist/index.es.js +2629 -2563
  46. package/dist/style.css +1 -1
  47. package/dist/theme/index.es.js +1 -1
  48. package/dist/utils/form-text-detail.d.ts +8 -0
  49. package/dist/utils/helpers.d.ts +27 -0
  50. package/package.json +44 -42
  51. package/dist/index-c62f6196.js +0 -5605
  52. /package/dist/{colors-01d79c7b.js → colors-ikihApJv.js} +0 -0
@@ -1,12 +1,14 @@
1
1
  import { type ContextColorsType } from '../../../../consts/colors';
2
- export interface Props {
2
+ export interface RadioProps {
3
3
  value: string;
4
4
  modelValue?: string;
5
5
  disabled?: boolean;
6
6
  color?: ContextColorsType;
7
7
  size?: 'sm' | 'lg';
8
+ label?: string;
8
9
  hint?: string;
9
- errorMessages?: string[];
10
+ errorMessages?: string | string[];
11
+ successMessages?: string | string[];
10
12
  hideDetails?: boolean;
11
13
  }
12
14
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
@@ -22,21 +24,29 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
22
24
  type: globalThis.PropType<"sm" | "lg">;
23
25
  default: undefined;
24
26
  };
27
+ label: {
28
+ type: globalThis.PropType<string>;
29
+ default: string;
30
+ };
25
31
  disabled: {
26
32
  type: globalThis.PropType<boolean>;
27
33
  default: boolean;
28
34
  };
29
- modelValue: {
30
- type: globalThis.PropType<string>;
31
- default: string;
35
+ errorMessages: {
36
+ type: globalThis.PropType<string | string[]>;
37
+ default: () => never[];
38
+ };
39
+ successMessages: {
40
+ type: globalThis.PropType<string | string[]>;
41
+ default: () => never[];
32
42
  };
33
43
  hint: {
34
44
  type: globalThis.PropType<string>;
35
45
  default: string;
36
46
  };
37
- errorMessages: {
38
- type: globalThis.PropType<string[]>;
39
- default: () => never[];
47
+ modelValue: {
48
+ type: globalThis.PropType<string>;
49
+ default: string;
40
50
  };
41
51
  hideDetails: {
42
52
  type: globalThis.PropType<boolean>;
@@ -44,7 +54,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
44
54
  };
45
55
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
46
56
  "update:modelValue": (modelValue: string) => void;
47
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
57
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
48
58
  value: {
49
59
  type: globalThis.PropType<string>;
50
60
  required: true;
@@ -57,21 +67,29 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
57
67
  type: globalThis.PropType<"sm" | "lg">;
58
68
  default: undefined;
59
69
  };
70
+ label: {
71
+ type: globalThis.PropType<string>;
72
+ default: string;
73
+ };
60
74
  disabled: {
61
75
  type: globalThis.PropType<boolean>;
62
76
  default: boolean;
63
77
  };
64
- modelValue: {
65
- type: globalThis.PropType<string>;
66
- default: string;
78
+ errorMessages: {
79
+ type: globalThis.PropType<string | string[]>;
80
+ default: () => never[];
81
+ };
82
+ successMessages: {
83
+ type: globalThis.PropType<string | string[]>;
84
+ default: () => never[];
67
85
  };
68
86
  hint: {
69
87
  type: globalThis.PropType<string>;
70
88
  default: string;
71
89
  };
72
- errorMessages: {
73
- type: globalThis.PropType<string[]>;
74
- default: () => never[];
90
+ modelValue: {
91
+ type: globalThis.PropType<string>;
92
+ default: string;
75
93
  };
76
94
  hideDetails: {
77
95
  type: globalThis.PropType<boolean>;
@@ -82,10 +100,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
82
100
  }, {
83
101
  color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
84
102
  size: "sm" | "lg";
103
+ label: string;
85
104
  disabled: boolean;
86
- modelValue: string;
105
+ errorMessages: string | string[];
106
+ successMessages: string | string[];
87
107
  hint: string;
88
- errorMessages: string[];
108
+ modelValue: string;
89
109
  hideDetails: boolean;
90
110
  }, {}>, {
91
111
  default?(_: {}): any;
@@ -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
- modelValue: {
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
- errorMessages: {
18
- type: globalThis.PropType<string[]>;
19
- default: () => never[];
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<import("vue").ExtractPropTypes<{
32
- modelValue: {
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
- errorMessages: {
41
- type: globalThis.PropType<string[]>;
42
- default: () => never[];
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
- modelValue: string;
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
- errorMessages: string[];
108
+ modelValue: string;
58
109
  hideDetails: boolean;
59
110
  inline: boolean;
60
111
  }, {}>;
@@ -1,4 +1,163 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
1
+ import { type TextFieldProps } from '../../../components/forms/text-field/TextField.vue';
2
+ export interface Props extends TextFieldProps {
3
+ }
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5
+ readonly: {
6
+ type: globalThis.PropType<boolean>;
7
+ default: boolean;
8
+ };
9
+ variant: {
10
+ type: globalThis.PropType<"default" | "outlined" | "filled">;
11
+ default: string;
12
+ };
13
+ color: {
14
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
15
+ default: undefined;
16
+ };
17
+ label: {
18
+ type: globalThis.PropType<string>;
19
+ default: string;
20
+ };
21
+ placeholder: {
22
+ type: globalThis.PropType<string>;
23
+ default: string;
24
+ };
25
+ disabled: {
26
+ type: globalThis.PropType<boolean>;
27
+ default: boolean;
28
+ };
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;
40
+ };
41
+ modelValue: {
42
+ type: globalThis.PropType<string>;
43
+ default: string;
44
+ };
45
+ textColor: {
46
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
47
+ default: undefined;
48
+ };
49
+ dense: {
50
+ type: globalThis.PropType<boolean>;
51
+ default: boolean;
52
+ };
53
+ as: {
54
+ type: globalThis.PropType<string | object>;
55
+ default: undefined;
56
+ };
57
+ hideDetails: {
58
+ type: globalThis.PropType<boolean>;
59
+ default: boolean;
60
+ };
61
+ prependIcon: {
62
+ type: globalThis.PropType<import("../../..").RuiIcons>;
63
+ default: undefined;
64
+ };
65
+ appendIcon: {
66
+ type: globalThis.PropType<import("../../..").RuiIcons>;
67
+ default: undefined;
68
+ };
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
+ };
78
+ variant: {
79
+ type: globalThis.PropType<"default" | "outlined" | "filled">;
80
+ default: string;
81
+ };
82
+ color: {
83
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
84
+ default: undefined;
85
+ };
86
+ label: {
87
+ type: globalThis.PropType<string>;
88
+ default: string;
89
+ };
90
+ placeholder: {
91
+ type: globalThis.PropType<string>;
92
+ default: string;
93
+ };
94
+ disabled: {
95
+ type: globalThis.PropType<boolean>;
96
+ default: boolean;
97
+ };
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;
109
+ };
110
+ modelValue: {
111
+ type: globalThis.PropType<string>;
112
+ default: string;
113
+ };
114
+ textColor: {
115
+ type: globalThis.PropType<"primary" | "secondary" | "error" | "warning" | "info" | "success">;
116
+ default: undefined;
117
+ };
118
+ dense: {
119
+ type: globalThis.PropType<boolean>;
120
+ default: boolean;
121
+ };
122
+ as: {
123
+ type: globalThis.PropType<string | object>;
124
+ default: undefined;
125
+ };
126
+ hideDetails: {
127
+ type: globalThis.PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ prependIcon: {
131
+ type: globalThis.PropType<import("../../..").RuiIcons>;
132
+ default: undefined;
133
+ };
134
+ appendIcon: {
135
+ type: globalThis.PropType<import("../../..").RuiIcons>;
136
+ default: undefined;
137
+ };
138
+ clearable: {
139
+ type: globalThis.PropType<boolean>;
140
+ default: boolean;
141
+ };
142
+ }>>, {
143
+ readonly: boolean;
144
+ variant: "default" | "outlined" | "filled";
145
+ color: "primary" | "secondary" | "error" | "warning" | "info" | "success";
146
+ label: string;
147
+ placeholder: string;
148
+ disabled: boolean;
149
+ errorMessages: string | string[];
150
+ successMessages: string | string[];
151
+ hint: string;
152
+ modelValue: string;
153
+ textColor: "primary" | "secondary" | "error" | "warning" | "info" | "success";
154
+ dense: boolean;
155
+ as: string | object;
156
+ hideDetails: boolean;
157
+ prependIcon: import("../../..").RuiIcons;
158
+ appendIcon: import("../../..").RuiIcons;
159
+ clearable: boolean;
160
+ }, {}>, {
2
161
  prepend?(_: {}): any;
3
162
  append?(_: {}): any;
4
163
  }>;
@@ -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<import("vue").ExtractPropTypes<{
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
+ };