@club-employes/utopia 4.335.0 → 4.336.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/atoms/InputText/InputText.d.ts +4 -4
- package/dist/components/atoms/TextArea/TextArea.d.ts +1 -1
- package/dist/components/molecules/CountryDropDown/CountryDropDown.d.ts +3 -3
- package/dist/components/molecules/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/molecules/DropDown/DropDown.d.ts +10 -10
- package/dist/components/molecules/FormGroup/FormGroup.d.ts +1 -1
- package/dist/components/molecules/IconPicker/IconPicker.d.ts +1 -1
- package/dist/components/molecules/InputCode/InputCode.d.ts +2 -2
- package/dist/components/molecules/InputPhone/InputPhone.d.ts +20 -20
- package/dist/components/molecules/MultiSelect/MultiSelect.d.ts +1 -1
- package/dist/components/molecules/PostalCodeInput/PostalCodeInput.d.ts +1 -1
- package/dist/components/organisms/DropFile/DropFile.d.ts +15 -15
- package/dist/components/organisms/InputSearch/InputSearch.d.ts +1 -1
- package/dist/components/organisms/MyEditor/MyEditor.d.ts +2 -2
- package/dist/index.js +190 -189
- package/dist/theme-provider/ThemeProvider.d.ts +15 -1
- package/dist/theme-provider/index.d.ts +16 -0
- package/dist/utopia.css +1 -1
- package/package.json +2 -1
|
@@ -8,7 +8,7 @@ declare const _default: DefineComponent<InputTextProps, {}, {}, {}, {}, Componen
|
|
|
8
8
|
keydown: (event: KeyboardEvent) => any;
|
|
9
9
|
paste: (event: ClipboardEvent) => any;
|
|
10
10
|
"update:modelValue": (value: string | number) => any;
|
|
11
|
-
"update:state": (value: "
|
|
11
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
12
12
|
"update:message": (value: string) => any;
|
|
13
13
|
"icon-click": (event: MouseEvent) => any;
|
|
14
14
|
}, string, PublicProps, Readonly<InputTextProps> & Readonly<{
|
|
@@ -19,16 +19,16 @@ declare const _default: DefineComponent<InputTextProps, {}, {}, {}, {}, Componen
|
|
|
19
19
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
20
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
21
21
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
22
|
-
"onUpdate:state"?: ((value: "
|
|
22
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
23
23
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
24
24
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
27
|
+
required: boolean;
|
|
26
28
|
label: string;
|
|
27
29
|
message: string;
|
|
28
30
|
icon: string;
|
|
29
31
|
size: "extra-small" | "small" | "medium" | "large";
|
|
30
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
31
|
-
required: boolean;
|
|
32
32
|
disabled: boolean;
|
|
33
33
|
iconPosition: "left" | "right";
|
|
34
34
|
modelValue: string | number;
|
|
@@ -13,11 +13,11 @@ declare const _default: DefineComponent<TextAreaProps, {}, {}, {}, {}, Component
|
|
|
13
13
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
14
14
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
+
required: boolean;
|
|
16
17
|
label: string;
|
|
17
18
|
resize: "none" | "vertical" | "horizontal" | "both";
|
|
18
19
|
message: string;
|
|
19
20
|
size: "small" | "medium" | "large";
|
|
20
|
-
required: boolean;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
modelValue: string;
|
|
23
23
|
placeholder: string;
|
|
@@ -12,7 +12,7 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
12
12
|
close: () => any;
|
|
13
13
|
focus: (event: FocusEvent) => any;
|
|
14
14
|
"update:modelValue": (value: string | undefined) => any;
|
|
15
|
-
"update:state": (value: NonNullable<"
|
|
15
|
+
"update:state": (value: NonNullable<"default" | "error" | "valid" | "incomplete" | "completed" | undefined>) => any;
|
|
16
16
|
"update:message": (value: string) => any;
|
|
17
17
|
open: () => any;
|
|
18
18
|
"update:countryName": (value: string) => any;
|
|
@@ -22,15 +22,15 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
|
|
|
22
22
|
onClose?: (() => any) | undefined;
|
|
23
23
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
25
|
-
"onUpdate:state"?: ((value: NonNullable<"
|
|
25
|
+
"onUpdate:state"?: ((value: NonNullable<"default" | "error" | "valid" | "incomplete" | "completed" | undefined>) => any) | undefined;
|
|
26
26
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
27
27
|
onOpen?: (() => any) | undefined;
|
|
28
28
|
"onUpdate:countryName"?: ((value: string) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
+
required: boolean;
|
|
30
31
|
label: string;
|
|
31
32
|
message: string;
|
|
32
33
|
size: "extra-small" | "small" | "medium" | "large";
|
|
33
|
-
required: boolean;
|
|
34
34
|
disabled: boolean;
|
|
35
35
|
placeholder: string;
|
|
36
36
|
state: "default" | "error" | "valid" | "incomplete" | "completed";
|
|
@@ -11,10 +11,10 @@ declare const _default: DefineComponent<DatePickerProps, {
|
|
|
11
11
|
onChange?: ((value: string | Date | null) => any) | undefined;
|
|
12
12
|
"onUpdate:modelValue"?: ((value: string | Date | null) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
|
+
required: boolean;
|
|
14
15
|
label: string;
|
|
15
16
|
message: string;
|
|
16
17
|
size: "small" | "medium" | "large";
|
|
17
|
-
required: boolean;
|
|
18
18
|
disabled: boolean;
|
|
19
19
|
modelValue: string | Date | null;
|
|
20
20
|
teleport: boolean;
|
|
@@ -7,7 +7,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
7
7
|
close: () => any;
|
|
8
8
|
focus: (event: FocusEvent) => any;
|
|
9
9
|
"update:modelValue": (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
|
|
10
|
-
"update:state": (value: "
|
|
10
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
11
11
|
"update:message": (value: string) => any;
|
|
12
12
|
open: () => any;
|
|
13
13
|
}, string, PublicProps, Readonly<DropDownProps> & Readonly<{
|
|
@@ -16,14 +16,14 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
16
16
|
onClose?: (() => any) | undefined;
|
|
17
17
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
18
18
|
"onUpdate:modelValue"?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
19
|
-
"onUpdate:state"?: ((value: "
|
|
19
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
20
20
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
21
21
|
onOpen?: (() => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
+
required: boolean;
|
|
23
24
|
label: string;
|
|
24
25
|
message: string;
|
|
25
26
|
size: "extra-small" | "small" | "medium" | "large";
|
|
26
|
-
required: boolean;
|
|
27
27
|
disabled: boolean;
|
|
28
28
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
29
29
|
options: DropDownOption[];
|
|
@@ -50,7 +50,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
50
50
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
51
51
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
52
52
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
53
|
-
"onUpdate:state"?: ((value: "
|
|
53
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
54
54
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
55
55
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
56
56
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -61,16 +61,16 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
61
61
|
keydown: (event: KeyboardEvent) => any;
|
|
62
62
|
paste: (event: ClipboardEvent) => any;
|
|
63
63
|
"update:modelValue": (value: string | number) => any;
|
|
64
|
-
"update:state": (value: "
|
|
64
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
65
65
|
"update:message": (value: string) => any;
|
|
66
66
|
"icon-click": (event: MouseEvent) => any;
|
|
67
67
|
}, PublicProps, {
|
|
68
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
69
|
+
required: boolean;
|
|
68
70
|
label: string;
|
|
69
71
|
message: string;
|
|
70
72
|
icon: string;
|
|
71
73
|
size: "extra-small" | "small" | "medium" | "large";
|
|
72
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
73
|
-
required: boolean;
|
|
74
74
|
disabled: boolean;
|
|
75
75
|
iconPosition: "left" | "right";
|
|
76
76
|
modelValue: string | number;
|
|
@@ -99,16 +99,16 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
99
99
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
100
100
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
101
101
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
102
|
-
"onUpdate:state"?: ((value: "
|
|
102
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
103
103
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
104
104
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
105
105
|
}>, {}, {}, {}, {}, {
|
|
106
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
107
|
+
required: boolean;
|
|
106
108
|
label: string;
|
|
107
109
|
message: string;
|
|
108
110
|
icon: string;
|
|
109
111
|
size: "extra-small" | "small" | "medium" | "large";
|
|
110
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
111
|
-
required: boolean;
|
|
112
112
|
disabled: boolean;
|
|
113
113
|
iconPosition: "left" | "right";
|
|
114
114
|
modelValue: string | number;
|
|
@@ -18,10 +18,10 @@ declare const __VLS_component: DefineComponent<FormGroupProps, {
|
|
|
18
18
|
errorId: string;
|
|
19
19
|
descriptionId: string;
|
|
20
20
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormGroupProps> & Readonly<{}>, {
|
|
21
|
+
required: boolean;
|
|
21
22
|
legend: string;
|
|
22
23
|
error: string;
|
|
23
24
|
icon: string;
|
|
24
|
-
required: boolean;
|
|
25
25
|
disabled: boolean;
|
|
26
26
|
id: string;
|
|
27
27
|
description: string;
|
|
@@ -5,9 +5,9 @@ declare const _default: DefineComponent<IconPickerProps, {}, {}, {}, {}, Compone
|
|
|
5
5
|
}, string, PublicProps, Readonly<IconPickerProps> & Readonly<{
|
|
6
6
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
7
7
|
}>, {
|
|
8
|
+
required: boolean;
|
|
8
9
|
label: string;
|
|
9
10
|
size: "small" | "medium" | "large";
|
|
10
|
-
required: boolean;
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
placeholder: string;
|
|
@@ -30,11 +30,11 @@ declare const _default: DefineComponent<Props, {
|
|
|
30
30
|
onComplete?: ((value: string) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
length: number;
|
|
33
|
+
type: "text" | "number";
|
|
34
|
+
required: boolean;
|
|
33
35
|
label: string;
|
|
34
36
|
message: string;
|
|
35
37
|
size: "small" | "medium" | "large";
|
|
36
|
-
type: "text" | "number";
|
|
37
|
-
required: boolean;
|
|
38
38
|
disabled: boolean;
|
|
39
39
|
modelValue: string;
|
|
40
40
|
state: "default" | "error" | "valid";
|
|
@@ -17,11 +17,11 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
17
17
|
"onCountry-change"?: ((countryCode: string) => any) | undefined;
|
|
18
18
|
"onValidity-change"?: ((isValid: boolean) => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
|
+
required: boolean;
|
|
20
21
|
label: string;
|
|
21
22
|
error: string | boolean;
|
|
22
23
|
name: string;
|
|
23
24
|
size: "small" | "medium" | "large";
|
|
24
|
-
required: boolean;
|
|
25
25
|
success: boolean;
|
|
26
26
|
disabled: boolean;
|
|
27
27
|
modelValue: string | null;
|
|
@@ -43,7 +43,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
43
43
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
44
44
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
45
45
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
46
|
-
"onUpdate:state"?: ((value: "
|
|
46
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
47
47
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
48
48
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
49
49
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -54,16 +54,16 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
54
54
|
keydown: (event: KeyboardEvent) => any;
|
|
55
55
|
paste: (event: ClipboardEvent) => any;
|
|
56
56
|
"update:modelValue": (value: string | number) => any;
|
|
57
|
-
"update:state": (value: "
|
|
57
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
58
58
|
"update:message": (value: string) => any;
|
|
59
59
|
"icon-click": (event: MouseEvent) => any;
|
|
60
60
|
}, PublicProps, {
|
|
61
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
62
|
+
required: boolean;
|
|
61
63
|
label: string;
|
|
62
64
|
message: string;
|
|
63
65
|
icon: string;
|
|
64
66
|
size: "extra-small" | "small" | "medium" | "large";
|
|
65
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
66
|
-
required: boolean;
|
|
67
67
|
disabled: boolean;
|
|
68
68
|
iconPosition: "left" | "right";
|
|
69
69
|
modelValue: string | number;
|
|
@@ -92,16 +92,16 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
92
92
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
93
93
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
94
94
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
95
|
-
"onUpdate:state"?: ((value: "
|
|
95
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
96
96
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
97
97
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
98
98
|
}>, {}, {}, {}, {}, {
|
|
99
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
100
|
+
required: boolean;
|
|
99
101
|
label: string;
|
|
100
102
|
message: string;
|
|
101
103
|
icon: string;
|
|
102
104
|
size: "extra-small" | "small" | "medium" | "large";
|
|
103
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
104
|
-
required: boolean;
|
|
105
105
|
disabled: boolean;
|
|
106
106
|
iconPosition: "left" | "right";
|
|
107
107
|
modelValue: string | number;
|
|
@@ -120,7 +120,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
120
120
|
onClose?: (() => any) | undefined;
|
|
121
121
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
122
122
|
"onUpdate:modelValue"?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
123
|
-
"onUpdate:state"?: ((value: "
|
|
123
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
124
124
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
125
125
|
onOpen?: (() => any) | undefined;
|
|
126
126
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -129,14 +129,14 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
129
129
|
close: () => any;
|
|
130
130
|
focus: (event: FocusEvent) => any;
|
|
131
131
|
"update:modelValue": (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
|
|
132
|
-
"update:state": (value: "
|
|
132
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
133
133
|
"update:message": (value: string) => any;
|
|
134
134
|
open: () => any;
|
|
135
135
|
}, PublicProps, {
|
|
136
|
+
required: boolean;
|
|
136
137
|
label: string;
|
|
137
138
|
message: string;
|
|
138
139
|
size: "extra-small" | "small" | "medium" | "large";
|
|
139
|
-
required: boolean;
|
|
140
140
|
disabled: boolean;
|
|
141
141
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
142
142
|
options: DropDownOption[];
|
|
@@ -163,7 +163,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
163
163
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
164
164
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
165
165
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
166
|
-
"onUpdate:state"?: ((value: "
|
|
166
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
167
167
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
168
168
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
169
169
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -174,16 +174,16 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
174
174
|
keydown: (event: KeyboardEvent) => any;
|
|
175
175
|
paste: (event: ClipboardEvent) => any;
|
|
176
176
|
"update:modelValue": (value: string | number) => any;
|
|
177
|
-
"update:state": (value: "
|
|
177
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
178
178
|
"update:message": (value: string) => any;
|
|
179
179
|
"icon-click": (event: MouseEvent) => any;
|
|
180
180
|
}, PublicProps, {
|
|
181
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
182
|
+
required: boolean;
|
|
181
183
|
label: string;
|
|
182
184
|
message: string;
|
|
183
185
|
icon: string;
|
|
184
186
|
size: "extra-small" | "small" | "medium" | "large";
|
|
185
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
186
|
-
required: boolean;
|
|
187
187
|
disabled: boolean;
|
|
188
188
|
iconPosition: "left" | "right";
|
|
189
189
|
modelValue: string | number;
|
|
@@ -212,16 +212,16 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
212
212
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
213
213
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
214
214
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
215
|
-
"onUpdate:state"?: ((value: "
|
|
215
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
216
216
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
217
217
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
218
218
|
}>, {}, {}, {}, {}, {
|
|
219
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
220
|
+
required: boolean;
|
|
219
221
|
label: string;
|
|
220
222
|
message: string;
|
|
221
223
|
icon: string;
|
|
222
224
|
size: "extra-small" | "small" | "medium" | "large";
|
|
223
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
224
|
-
required: boolean;
|
|
225
225
|
disabled: boolean;
|
|
226
226
|
iconPosition: "left" | "right";
|
|
227
227
|
modelValue: string | number;
|
|
@@ -247,14 +247,14 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
247
247
|
onClose?: (() => any) | undefined;
|
|
248
248
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
249
249
|
"onUpdate:modelValue"?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
250
|
-
"onUpdate:state"?: ((value: "
|
|
250
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
251
251
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
252
252
|
onOpen?: (() => any) | undefined;
|
|
253
253
|
}>, {}, {}, {}, {}, {
|
|
254
|
+
required: boolean;
|
|
254
255
|
label: string;
|
|
255
256
|
message: string;
|
|
256
257
|
size: "extra-small" | "small" | "medium" | "large";
|
|
257
|
-
required: boolean;
|
|
258
258
|
disabled: boolean;
|
|
259
259
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
260
260
|
options: DropDownOption[];
|
|
@@ -7,8 +7,8 @@ declare const _default: DefineComponent<MultiSelectProps, {}, {}, {}, {}, Compon
|
|
|
7
7
|
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
8
8
|
"onAction-click"?: (() => any) | undefined;
|
|
9
9
|
}>, {
|
|
10
|
-
size: "small" | "medium" | "large";
|
|
11
10
|
required: boolean;
|
|
11
|
+
size: "small" | "medium" | "large";
|
|
12
12
|
modelValue: (string | number)[];
|
|
13
13
|
options: SelectOption[];
|
|
14
14
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -13,10 +13,10 @@ declare const _default: DefineComponent<PostalCodeInputProps, {}, {}, {}, {}, Co
|
|
|
13
13
|
"onUpdate:countryName"?: ((value: string) => any) | undefined;
|
|
14
14
|
"onUpdate:countryCode"?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
+
required: boolean;
|
|
16
17
|
label: string;
|
|
17
18
|
error: string | boolean;
|
|
18
19
|
size: "small" | "medium" | "large";
|
|
19
|
-
required: boolean;
|
|
20
20
|
success: boolean;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
modelValue: string | null;
|
|
@@ -167,7 +167,7 @@ declare function __VLS_template(): {
|
|
|
167
167
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
168
168
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
169
169
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
170
|
-
"onUpdate:state"?: ((value: "
|
|
170
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
171
171
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
172
172
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
173
173
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -178,16 +178,16 @@ declare function __VLS_template(): {
|
|
|
178
178
|
keydown: (event: KeyboardEvent) => any;
|
|
179
179
|
paste: (event: ClipboardEvent) => any;
|
|
180
180
|
"update:modelValue": (value: string | number) => any;
|
|
181
|
-
"update:state": (value: "
|
|
181
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
182
182
|
"update:message": (value: string) => any;
|
|
183
183
|
"icon-click": (event: MouseEvent) => any;
|
|
184
184
|
}, PublicProps, {
|
|
185
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
186
|
+
required: boolean;
|
|
185
187
|
label: string;
|
|
186
188
|
message: string;
|
|
187
189
|
icon: string;
|
|
188
190
|
size: "extra-small" | "small" | "medium" | "large";
|
|
189
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
190
|
-
required: boolean;
|
|
191
191
|
disabled: boolean;
|
|
192
192
|
iconPosition: "left" | "right";
|
|
193
193
|
modelValue: string | number;
|
|
@@ -216,16 +216,16 @@ declare function __VLS_template(): {
|
|
|
216
216
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
217
217
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
218
218
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
219
|
-
"onUpdate:state"?: ((value: "
|
|
219
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
220
220
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
221
221
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
222
222
|
}>, {}, {}, {}, {}, {
|
|
223
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
224
|
+
required: boolean;
|
|
223
225
|
label: string;
|
|
224
226
|
message: string;
|
|
225
227
|
icon: string;
|
|
226
228
|
size: "extra-small" | "small" | "medium" | "large";
|
|
227
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
228
|
-
required: boolean;
|
|
229
229
|
disabled: boolean;
|
|
230
230
|
iconPosition: "left" | "right";
|
|
231
231
|
modelValue: string | number;
|
|
@@ -249,10 +249,10 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
249
249
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
250
250
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
251
251
|
}>, {
|
|
252
|
+
required: boolean;
|
|
252
253
|
label: string;
|
|
253
254
|
message: string;
|
|
254
255
|
variant: DropFileVariant;
|
|
255
|
-
required: boolean;
|
|
256
256
|
disabled: boolean;
|
|
257
257
|
modelValue: File | File[] | null;
|
|
258
258
|
id: string;
|
|
@@ -287,7 +287,7 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
287
287
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
288
288
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
289
289
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
290
|
-
"onUpdate:state"?: ((value: "
|
|
290
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
291
291
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
292
292
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
293
293
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -298,16 +298,16 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
298
298
|
keydown: (event: KeyboardEvent) => any;
|
|
299
299
|
paste: (event: ClipboardEvent) => any;
|
|
300
300
|
"update:modelValue": (value: string | number) => any;
|
|
301
|
-
"update:state": (value: "
|
|
301
|
+
"update:state": (value: "default" | "error" | "valid") => any;
|
|
302
302
|
"update:message": (value: string) => any;
|
|
303
303
|
"icon-click": (event: MouseEvent) => any;
|
|
304
304
|
}, PublicProps, {
|
|
305
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
306
|
+
required: boolean;
|
|
305
307
|
label: string;
|
|
306
308
|
message: string;
|
|
307
309
|
icon: string;
|
|
308
310
|
size: "extra-small" | "small" | "medium" | "large";
|
|
309
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
310
|
-
required: boolean;
|
|
311
311
|
disabled: boolean;
|
|
312
312
|
iconPosition: "left" | "right";
|
|
313
313
|
modelValue: string | number;
|
|
@@ -336,16 +336,16 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
336
336
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
337
337
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
338
338
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
339
|
-
"onUpdate:state"?: ((value: "
|
|
339
|
+
"onUpdate:state"?: ((value: "default" | "error" | "valid") => any) | undefined;
|
|
340
340
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
341
341
|
"onIcon-click"?: ((event: MouseEvent) => any) | undefined;
|
|
342
342
|
}>, {}, {}, {}, {}, {
|
|
343
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
344
|
+
required: boolean;
|
|
343
345
|
label: string;
|
|
344
346
|
message: string;
|
|
345
347
|
icon: string;
|
|
346
348
|
size: "extra-small" | "small" | "medium" | "large";
|
|
347
|
-
type: "text" | "email" | "password" | "number" | "tel" | "url";
|
|
348
|
-
required: boolean;
|
|
349
349
|
disabled: boolean;
|
|
350
350
|
iconPosition: "left" | "right";
|
|
351
351
|
modelValue: string | number;
|
|
@@ -20,9 +20,9 @@ declare const __VLS_component: DefineComponent<InputSearchProps, {}, {}, {}, {},
|
|
|
20
20
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
21
|
"onUpdate:fieldValue"?: ((value: string | number | boolean | undefined) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
+
type: "text" | "number";
|
|
23
24
|
message: string;
|
|
24
25
|
size: "extra-small" | "small" | "medium" | "large";
|
|
25
|
-
type: "text" | "number";
|
|
26
26
|
disabled: boolean;
|
|
27
27
|
modelValue: string;
|
|
28
28
|
state: "default" | "error" | "valid";
|
|
@@ -106,12 +106,12 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
106
106
|
"onUpdate:state"?: ((...args: any[]) => any) | undefined;
|
|
107
107
|
"onUpdate:message"?: ((...args: any[]) => any) | undefined;
|
|
108
108
|
}>, {
|
|
109
|
+
required: boolean;
|
|
109
110
|
label: string;
|
|
110
111
|
output: "html" | "json";
|
|
111
112
|
message: string;
|
|
112
|
-
required: boolean;
|
|
113
113
|
modelValue: string | Record<string, unknown>;
|
|
114
|
-
state: "
|
|
114
|
+
state: "default" | "error" | "valid";
|
|
115
115
|
toolbarConfig: Record<string, any>;
|
|
116
116
|
labels: Partial<EditorLabels>;
|
|
117
117
|
maxImageSize: number | null;
|