@wikicasa-dev/components 2.0.7 → 2.0.9
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/AccessibleSelect.js +1 -1
- package/dist/BaseAutocomplete.js +1 -1
- package/dist/BaseFloatingLabel.js +21 -19
- package/dist/BaseInput.js +107 -101
- package/dist/BasePagination.js +1 -1
- package/dist/BaseTextarea.js +13 -12
- package/dist/UIKit/AccessibleSelect.vue.d.ts +22 -74
- package/dist/UIKit/BaseAutocomplete.vue.d.ts +29 -39
- package/dist/UIKit/BaseBadge.vue.d.ts +3 -3
- package/dist/UIKit/BaseFloatingLabel.vue.d.ts +6 -5
- package/dist/UIKit/BaseInput.vue.d.ts +11 -14
- package/dist/UIKit/BaseSlider.vue.d.ts +25 -34
- package/dist/UIKit/BaseTextarea.vue.d.ts +3 -6
- package/dist/UIKit/types.d.ts +3 -1
- package/dist/assets/BaseBadge.css +1 -1
- package/dist/assets/BaseCard.css +1 -1
- package/dist/assets/BaseFloatingLabel.css +1 -1
- package/dist/assets/BaseInput.css +1 -1
- package/dist/assets/BaseTextarea.css +1 -1
- package/dist/assets/index.css +1 -1
- package/dist/chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.CfwgKf93.js +233 -0
- package/dist/chunks/{BaseAutocomplete.vue_vue_type_script_setup_true_lang.m5rScY4N.js → BaseAutocomplete.vue_vue_type_script_setup_true_lang.i1drmEOH.js} +83 -82
- package/dist/chunks/{BasePagination.vue_vue_type_script_setup_true_lang.DxPb8OYe.js → BasePagination.vue_vue_type_script_setup_true_lang.C_KW3jtP.js} +2 -2
- package/dist/index.js +3 -3
- package/package.json +3 -2
- package/dist/chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.YIp2u7gd.js +0 -231
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Nullable, BaseAutocompleteThemes } from '@wikicasa-dev/types';
|
|
2
|
-
import { AccessibleSelectOptions } from './types';
|
|
2
|
+
import { AccessibleSelectOptions, ClassTypeProp } from './types';
|
|
3
3
|
type ModelValueType<T = unknown> = AccessibleSelectOptions<T>;
|
|
4
4
|
declare let __VLS_typeProps: {
|
|
5
|
-
border?: boolean;
|
|
6
5
|
isValid?: Nullable<boolean>;
|
|
7
6
|
theme?: BaseAutocompleteThemes;
|
|
8
7
|
label?: string;
|
|
@@ -16,6 +15,8 @@ declare let __VLS_typeProps: {
|
|
|
16
15
|
* If true, we will close the dropdown when the user clicks or touches the body of the document
|
|
17
16
|
*/
|
|
18
17
|
closeDropdownOnBodyPressed?: boolean;
|
|
18
|
+
inputClasses?: ClassTypeProp;
|
|
19
|
+
fieldsetClasses?: ClassTypeProp;
|
|
19
20
|
};
|
|
20
21
|
type __VLS_PublicProps = {
|
|
21
22
|
modelValue?: ModelValueType | undefined;
|
|
@@ -33,7 +34,7 @@ declare function __VLS_template(): {
|
|
|
33
34
|
$data: {};
|
|
34
35
|
$props: {
|
|
35
36
|
readonly modelValue?: string | number | undefined;
|
|
36
|
-
readonly inputClass?:
|
|
37
|
+
readonly inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
37
38
|
readonly labelText?: string | undefined;
|
|
38
39
|
readonly feedback?: import('./types').FeedbackLabels | undefined;
|
|
39
40
|
readonly isValid?: Nullable<boolean> | undefined;
|
|
@@ -42,6 +43,12 @@ declare function __VLS_template(): {
|
|
|
42
43
|
formatFn: (n: number | string) => string;
|
|
43
44
|
unFormatFn: (v: string) => string | number | null;
|
|
44
45
|
}>> | undefined;
|
|
46
|
+
readonly labelClasses?: ClassTypeProp;
|
|
47
|
+
readonly fieldsetClasses?: ClassTypeProp;
|
|
48
|
+
readonly labelTextClasses?: ClassTypeProp;
|
|
49
|
+
readonly withLeftIcon?: boolean | undefined;
|
|
50
|
+
readonly withRightIcon?: boolean | undefined;
|
|
51
|
+
readonly dataCy?: string | undefined;
|
|
45
52
|
readonly onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
46
53
|
readonly "onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
47
54
|
readonly onFocusin?: (() => any) | undefined;
|
|
@@ -67,7 +74,7 @@ declare function __VLS_template(): {
|
|
|
67
74
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
68
75
|
modelValue?: string | number | undefined;
|
|
69
76
|
} & {
|
|
70
|
-
inputClass?: import('
|
|
77
|
+
inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
71
78
|
labelText?: string;
|
|
72
79
|
feedback?: import('./types').FeedbackLabels;
|
|
73
80
|
isValid?: Nullable<boolean>;
|
|
@@ -76,6 +83,12 @@ declare function __VLS_template(): {
|
|
|
76
83
|
formatFn: (n: number | string) => string;
|
|
77
84
|
unFormatFn: (v: string) => string | number | null;
|
|
78
85
|
}>>;
|
|
86
|
+
labelClasses?: ClassTypeProp;
|
|
87
|
+
fieldsetClasses?: ClassTypeProp;
|
|
88
|
+
labelTextClasses?: ClassTypeProp;
|
|
89
|
+
withLeftIcon?: boolean;
|
|
90
|
+
withRightIcon?: boolean;
|
|
91
|
+
dataCy?: string;
|
|
79
92
|
}> & Readonly<{
|
|
80
93
|
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
81
94
|
"onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
@@ -94,16 +107,7 @@ declare function __VLS_template(): {
|
|
|
94
107
|
keydown: (args_0: KeyboardEvent) => any;
|
|
95
108
|
keyup: (args_0: KeyboardEvent) => any;
|
|
96
109
|
keydownEnterPressed: () => any;
|
|
97
|
-
}, string, {
|
|
98
|
-
inputClass: import('@wikicasa-dev/types').ClassType | unknown[];
|
|
99
|
-
isValid: Nullable<boolean>;
|
|
100
|
-
labelText: string;
|
|
101
|
-
keepFloatingLabel: boolean;
|
|
102
|
-
formatter: Nullable<Partial<{
|
|
103
|
-
formatFn: (n: number | string) => string;
|
|
104
|
-
unFormatFn: (v: string) => string | number | null;
|
|
105
|
-
}>>;
|
|
106
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
110
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
107
111
|
beforeCreate?: (() => void) | (() => void)[];
|
|
108
112
|
created?: (() => void) | (() => void)[];
|
|
109
113
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -123,19 +127,10 @@ declare function __VLS_template(): {
|
|
|
123
127
|
$forceUpdate: () => void;
|
|
124
128
|
$nextTick: typeof import('vue').nextTick;
|
|
125
129
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
126
|
-
} & Readonly<{
|
|
127
|
-
inputClass: import('@wikicasa-dev/types').ClassType | unknown[];
|
|
128
|
-
isValid: Nullable<boolean>;
|
|
129
|
-
labelText: string;
|
|
130
|
-
keepFloatingLabel: boolean;
|
|
131
|
-
formatter: Nullable<Partial<{
|
|
132
|
-
formatFn: (n: number | string) => string;
|
|
133
|
-
unFormatFn: (v: string) => string | number | null;
|
|
134
|
-
}>>;
|
|
135
|
-
}> & Omit<Readonly<{
|
|
130
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
136
131
|
modelValue?: string | number | undefined;
|
|
137
132
|
} & {
|
|
138
|
-
inputClass?: import('
|
|
133
|
+
inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
139
134
|
labelText?: string;
|
|
140
135
|
feedback?: import('./types').FeedbackLabels;
|
|
141
136
|
isValid?: Nullable<boolean>;
|
|
@@ -144,6 +139,12 @@ declare function __VLS_template(): {
|
|
|
144
139
|
formatFn: (n: number | string) => string;
|
|
145
140
|
unFormatFn: (v: string) => string | number | null;
|
|
146
141
|
}>>;
|
|
142
|
+
labelClasses?: ClassTypeProp;
|
|
143
|
+
fieldsetClasses?: ClassTypeProp;
|
|
144
|
+
labelTextClasses?: ClassTypeProp;
|
|
145
|
+
withLeftIcon?: boolean;
|
|
146
|
+
withRightIcon?: boolean;
|
|
147
|
+
dataCy?: string;
|
|
147
148
|
}> & Readonly<{
|
|
148
149
|
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
149
150
|
"onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
@@ -152,7 +153,7 @@ declare function __VLS_template(): {
|
|
|
152
153
|
onKeydown?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
153
154
|
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
154
155
|
onKeydownEnterPressed?: (() => any) | undefined;
|
|
155
|
-
}>, "select"
|
|
156
|
+
}>, "select"> & import('vue').ShallowUnwrapRef<{
|
|
156
157
|
select: () => void;
|
|
157
158
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
158
159
|
$slots: {
|
|
@@ -160,7 +161,7 @@ declare function __VLS_template(): {
|
|
|
160
161
|
righticon?(_: {
|
|
161
162
|
handleClean: () => void;
|
|
162
163
|
handleShowPasswd: () => void;
|
|
163
|
-
curType:
|
|
164
|
+
curType: import('@wikicasa-dev/types').InputTypeHTMLAttribute;
|
|
164
165
|
}): any;
|
|
165
166
|
feedback?(_: {}): any;
|
|
166
167
|
"under-label"?(_: {}): any;
|
|
@@ -186,18 +187,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
186
187
|
onKeydownEnterPressed?: (() => any) | undefined;
|
|
187
188
|
"onUpdate:dropdownState"?: ((args_0: boolean) => any) | undefined;
|
|
188
189
|
onChangedValue?: ((args_0: string) => any) | undefined;
|
|
189
|
-
}>, {
|
|
190
|
-
label: string;
|
|
191
|
-
isValid: Nullable<boolean>;
|
|
192
|
-
border: boolean;
|
|
193
|
-
dropdownClasses: string;
|
|
194
|
-
keepState: Nullable<"closed" | "open">;
|
|
195
|
-
theme: BaseAutocompleteThemes;
|
|
196
|
-
disableCb: boolean;
|
|
197
|
-
onOptionSelectedCb: Nullable<(v: AccessibleSelectOptions) => void>;
|
|
198
|
-
cleanupOnClose: boolean;
|
|
199
|
-
closeDropdownOnBodyPressed: boolean;
|
|
200
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
190
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
201
191
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
202
192
|
export default _default;
|
|
203
193
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -7,11 +7,11 @@ declare function __VLS_template(): {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
9
|
declare const __VLS_component: import('vue').DefineComponent<{
|
|
10
|
-
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary";
|
|
10
|
+
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary" | "uikit-badge-w-danger";
|
|
11
11
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
-
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary";
|
|
12
|
+
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary" | "uikit-badge-w-danger";
|
|
13
13
|
}> & Readonly<{}>, {
|
|
14
|
-
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary";
|
|
14
|
+
badgeClass: "uikit-badge-w-warning" | "uikit-badge-w-lavender" | "uikit-badge-outline-tag" | "uikit-badge-w-primary-sm" | "uikit-badge-outline-tag-listing" | "uikit-badge-w-dark-primary" | "uikit-badge-w-danger";
|
|
15
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
17
|
export default _default;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { Nullable } from '@wikicasa-dev/types';
|
|
2
|
+
import { ClassTypeProp } from './types';
|
|
2
3
|
type LabelState = "inline-label" | "floating-label";
|
|
3
4
|
declare const _default: import('vue').DefineComponent<{
|
|
4
5
|
labelState?: LabelState;
|
|
5
6
|
isValid?: Nullable<boolean>;
|
|
6
7
|
labelText: string;
|
|
7
8
|
disabled?: string | boolean;
|
|
9
|
+
labelClasses?: ClassTypeProp;
|
|
10
|
+
labelTextClasses?: ClassTypeProp;
|
|
8
11
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
12
|
click: (...args: any[]) => void;
|
|
10
13
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -12,11 +15,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
12
15
|
isValid?: Nullable<boolean>;
|
|
13
16
|
labelText: string;
|
|
14
17
|
disabled?: string | boolean;
|
|
18
|
+
labelClasses?: ClassTypeProp;
|
|
19
|
+
labelTextClasses?: ClassTypeProp;
|
|
15
20
|
}> & Readonly<{
|
|
16
21
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
}>, {
|
|
18
|
-
disabled: string | boolean;
|
|
19
|
-
isValid: Nullable<boolean>;
|
|
20
|
-
labelState: LabelState;
|
|
21
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
23
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Nullable,
|
|
2
|
-
import { FeedbackLabels } from './types';
|
|
1
|
+
import { Nullable, InputTypeHTMLAttribute } from '@wikicasa-dev/types';
|
|
2
|
+
import { ClassType, ClassTypeProp, FeedbackLabels } from './types';
|
|
3
3
|
declare let __VLS_typeProps: {
|
|
4
|
-
inputClass?: ClassType |
|
|
4
|
+
inputClass?: ClassType | ClassType[];
|
|
5
5
|
labelText?: string;
|
|
6
6
|
feedback?: FeedbackLabels;
|
|
7
7
|
isValid?: Nullable<boolean>;
|
|
@@ -10,6 +10,12 @@ declare let __VLS_typeProps: {
|
|
|
10
10
|
formatFn: (n: number | string) => string;
|
|
11
11
|
unFormatFn: (v: string) => string | number | null;
|
|
12
12
|
}>>;
|
|
13
|
+
labelClasses?: ClassTypeProp;
|
|
14
|
+
fieldsetClasses?: ClassTypeProp;
|
|
15
|
+
labelTextClasses?: ClassTypeProp;
|
|
16
|
+
withLeftIcon?: boolean;
|
|
17
|
+
withRightIcon?: boolean;
|
|
18
|
+
dataCy?: string;
|
|
13
19
|
};
|
|
14
20
|
type __VLS_PublicProps = {
|
|
15
21
|
modelValue?: string | number | undefined;
|
|
@@ -20,7 +26,7 @@ declare function __VLS_template(): {
|
|
|
20
26
|
righticon?(_: {
|
|
21
27
|
handleClean: () => void;
|
|
22
28
|
handleShowPasswd: () => void;
|
|
23
|
-
curType:
|
|
29
|
+
curType: InputTypeHTMLAttribute;
|
|
24
30
|
}): any;
|
|
25
31
|
feedback?(_: {}): any;
|
|
26
32
|
"under-label"?(_: {}): any;
|
|
@@ -49,16 +55,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
49
55
|
onKeydown?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
50
56
|
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
51
57
|
onKeydownEnterPressed?: (() => any) | undefined;
|
|
52
|
-
}>, {
|
|
53
|
-
inputClass: ClassType | unknown[];
|
|
54
|
-
isValid: Nullable<boolean>;
|
|
55
|
-
labelText: string;
|
|
56
|
-
keepFloatingLabel: boolean;
|
|
57
|
-
formatter: Nullable<Partial<{
|
|
58
|
-
formatFn: (n: number | string) => string;
|
|
59
|
-
unFormatFn: (v: string) => string | number | null;
|
|
60
|
-
}>>;
|
|
61
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
58
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
62
59
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
63
60
|
export default _default;
|
|
64
61
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -43,7 +43,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
43
43
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
44
44
|
modelValue?: string | number | undefined;
|
|
45
45
|
} & {
|
|
46
|
-
inputClass?: import('
|
|
46
|
+
inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
47
47
|
labelText?: string;
|
|
48
48
|
feedback?: import('./types').FeedbackLabels;
|
|
49
49
|
isValid?: Nullable<boolean>;
|
|
@@ -52,6 +52,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
52
52
|
formatFn: (n: number | string) => string;
|
|
53
53
|
unFormatFn: (v: string) => string | number | null;
|
|
54
54
|
}>>;
|
|
55
|
+
labelClasses?: import('./types').ClassTypeProp;
|
|
56
|
+
fieldsetClasses?: import('./types').ClassTypeProp;
|
|
57
|
+
labelTextClasses?: import('./types').ClassTypeProp;
|
|
58
|
+
withLeftIcon?: boolean;
|
|
59
|
+
withRightIcon?: boolean;
|
|
60
|
+
dataCy?: string;
|
|
55
61
|
}> & Readonly<{
|
|
56
62
|
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
57
63
|
"onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
@@ -70,16 +76,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
76
|
keydown: (args_0: KeyboardEvent) => any;
|
|
71
77
|
keyup: (args_0: KeyboardEvent) => any;
|
|
72
78
|
keydownEnterPressed: () => any;
|
|
73
|
-
}, import('vue').PublicProps, {
|
|
74
|
-
inputClass: import('@wikicasa-dev/types').ClassType | unknown[];
|
|
75
|
-
isValid: Nullable<boolean>;
|
|
76
|
-
labelText: string;
|
|
77
|
-
keepFloatingLabel: boolean;
|
|
78
|
-
formatter: Nullable<Partial<{
|
|
79
|
-
formatFn: (n: number | string) => string;
|
|
80
|
-
unFormatFn: (v: string) => string | number | null;
|
|
81
|
-
}>>;
|
|
82
|
-
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
79
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
83
80
|
P: {};
|
|
84
81
|
B: {};
|
|
85
82
|
D: {};
|
|
@@ -89,7 +86,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
86
|
}, Readonly<{
|
|
90
87
|
modelValue?: string | number | undefined;
|
|
91
88
|
} & {
|
|
92
|
-
inputClass?: import('
|
|
89
|
+
inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
93
90
|
labelText?: string;
|
|
94
91
|
feedback?: import('./types').FeedbackLabels;
|
|
95
92
|
isValid?: Nullable<boolean>;
|
|
@@ -98,6 +95,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
95
|
formatFn: (n: number | string) => string;
|
|
99
96
|
unFormatFn: (v: string) => string | number | null;
|
|
100
97
|
}>>;
|
|
98
|
+
labelClasses?: import('./types').ClassTypeProp;
|
|
99
|
+
fieldsetClasses?: import('./types').ClassTypeProp;
|
|
100
|
+
labelTextClasses?: import('./types').ClassTypeProp;
|
|
101
|
+
withLeftIcon?: boolean;
|
|
102
|
+
withRightIcon?: boolean;
|
|
103
|
+
dataCy?: string;
|
|
101
104
|
}> & Readonly<{
|
|
102
105
|
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
103
106
|
"onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
@@ -108,23 +111,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
111
|
onKeydownEnterPressed?: (() => any) | undefined;
|
|
109
112
|
}>, {
|
|
110
113
|
select: () => void;
|
|
111
|
-
}, {}, {}, {}, {
|
|
112
|
-
inputClass: import('@wikicasa-dev/types').ClassType | unknown[];
|
|
113
|
-
isValid: Nullable<boolean>;
|
|
114
|
-
labelText: string;
|
|
115
|
-
keepFloatingLabel: boolean;
|
|
116
|
-
formatter: Nullable<Partial<{
|
|
117
|
-
formatFn: (n: number | string) => string;
|
|
118
|
-
unFormatFn: (v: string) => string | number | null;
|
|
119
|
-
}>>;
|
|
120
|
-
}>;
|
|
114
|
+
}, {}, {}, {}, {}>;
|
|
121
115
|
__isFragment?: never;
|
|
122
116
|
__isTeleport?: never;
|
|
123
117
|
__isSuspense?: never;
|
|
124
118
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
125
119
|
modelValue?: string | number | undefined;
|
|
126
120
|
} & {
|
|
127
|
-
inputClass?: import('
|
|
121
|
+
inputClass?: import('./types').ClassType | import('./types').ClassType[];
|
|
128
122
|
labelText?: string;
|
|
129
123
|
feedback?: import('./types').FeedbackLabels;
|
|
130
124
|
isValid?: Nullable<boolean>;
|
|
@@ -133,6 +127,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
133
127
|
formatFn: (n: number | string) => string;
|
|
134
128
|
unFormatFn: (v: string) => string | number | null;
|
|
135
129
|
}>>;
|
|
130
|
+
labelClasses?: import('./types').ClassTypeProp;
|
|
131
|
+
fieldsetClasses?: import('./types').ClassTypeProp;
|
|
132
|
+
labelTextClasses?: import('./types').ClassTypeProp;
|
|
133
|
+
withLeftIcon?: boolean;
|
|
134
|
+
withRightIcon?: boolean;
|
|
135
|
+
dataCy?: string;
|
|
136
136
|
}> & Readonly<{
|
|
137
137
|
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
138
138
|
"onUpdate:modelValue"?: ((modelValue: string | number | undefined) => any) | undefined;
|
|
@@ -151,22 +151,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
151
151
|
keydown: (args_0: KeyboardEvent) => any;
|
|
152
152
|
keyup: (args_0: KeyboardEvent) => any;
|
|
153
153
|
keydownEnterPressed: () => any;
|
|
154
|
-
}, string, {
|
|
155
|
-
inputClass: import('@wikicasa-dev/types').ClassType | unknown[];
|
|
156
|
-
isValid: Nullable<boolean>;
|
|
157
|
-
labelText: string;
|
|
158
|
-
keepFloatingLabel: boolean;
|
|
159
|
-
formatter: Nullable<Partial<{
|
|
160
|
-
formatFn: (n: number | string) => string;
|
|
161
|
-
unFormatFn: (v: string) => string | number | null;
|
|
162
|
-
}>>;
|
|
163
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
154
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
164
155
|
$slots: {
|
|
165
156
|
leftIcon?(_: {}): any;
|
|
166
157
|
righticon?(_: {
|
|
167
158
|
handleClean: () => void;
|
|
168
159
|
handleShowPasswd: () => void;
|
|
169
|
-
curType:
|
|
160
|
+
curType: import('@wikicasa-dev/types').InputTypeHTMLAttribute;
|
|
170
161
|
}): any;
|
|
171
162
|
feedback?(_: {}): any;
|
|
172
163
|
"under-label"?(_: {}): any;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { Nullable } from '@wikicasa-dev/types';
|
|
2
|
-
import { FeedbackLabels } from './types';
|
|
2
|
+
import { FeedbackLabels, ClassTypeProp } from './types';
|
|
3
3
|
declare let __VLS_typeProps: {
|
|
4
4
|
labelText?: string;
|
|
5
5
|
feedback?: FeedbackLabels;
|
|
6
6
|
isValid?: Nullable<boolean>;
|
|
7
7
|
resize?: boolean;
|
|
8
|
+
labelClasses?: ClassTypeProp;
|
|
8
9
|
};
|
|
9
10
|
type __VLS_PublicProps = {
|
|
10
11
|
modelValue?: string | undefined;
|
|
@@ -25,9 +26,5 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
25
26
|
onFocusin?: (() => any) | undefined;
|
|
26
27
|
onFocusout?: (() => any) | undefined;
|
|
27
28
|
onKeydown?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
28
|
-
}>, {
|
|
29
|
-
isValid: Nullable<boolean>;
|
|
30
|
-
resize: boolean;
|
|
31
|
-
labelText: string;
|
|
32
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
33
30
|
export default _default;
|
package/dist/UIKit/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Icon, LabelItem, IconItem, AccordionItem } from '@wikicasa-dev/types';
|
|
2
2
|
import { TwPrefix } from '../types';
|
|
3
3
|
export type CardTypes = "mini" | "vertical" | "news" | "";
|
|
4
4
|
export type CardRootTypes = "div" | "article";
|
|
@@ -56,4 +56,6 @@ export type RadioButtonType<T = unknown> = {
|
|
|
56
56
|
export type AccordionItemDecorated<T = unknown> = Record<string | number, T & Partial<AccordionItem>>;
|
|
57
57
|
type BtnPrefix = "btn-";
|
|
58
58
|
export type ButtonType = `${TwPrefix}${BtnPrefix}${"w-primary" | "w-secondary" | "w-warning" | "w-danger" | "transparent" | "light" | "show-more" | "multi-selection" | "single-selection" | "facile"}`;
|
|
59
|
+
export type ClassType = string | Record<string, boolean> | null | undefined | ClassType[];
|
|
60
|
+
export type ClassTypeProp = ClassType | ClassType[];
|
|
59
61
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.uikit-badge{display:inline-flex;height:1.75rem;cursor:default;align-items:center;justify-content:center;border-radius:20px;padding-left:11px;padding-right:11px;padding-top:.25rem;padding-bottom:.25rem;font-weight:600}.uikit-badge-w-warning{--tw-bg-opacity: 1;background-color:rgb(255 209 103 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(42 55 97 / var(--tw-text-opacity, 1))}.uikit-badge-w-lavender{--tw-bg-opacity: 1;background-color:rgb(233 239 254 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(42 55 97 / var(--tw-text-opacity, 1));--tw-shadow: 0 1px 6px #79797929;--tw-shadow-colored: 0 1px 6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.uikit-badge-outline-tag{height:2.25rem;border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));padding-left:18px;padding-right:18px;padding-top:.5rem;padding-bottom:.5rem;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-outline-tag-listing{border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));font-size:12px;line-height:16px;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-w-primary-sm{height:23px;border-radius:10px;--tw-bg-opacity: 1;background-color:rgb(43 93 255 / var(--tw-bg-opacity, 1));font-size:10px;line-height:14px;font-weight:500;line-height:inherit;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.uikit-badge-w-dark-primary{z-index:10;--tw-bg-opacity: 1;background-color:rgb(42 55 97 / var(--tw-bg-opacity, 1));padding-left:11px;padding-right:11px}@media (min-width: 576px){.uikit-badge-w-dark-primary{padding-right:10px;font-size:12px;line-height:16px}}
|
|
1
|
+
.uikit-badge{display:inline-flex;height:1.75rem;cursor:default;align-items:center;justify-content:center;border-radius:20px;padding-left:11px;padding-right:11px;padding-top:.25rem;padding-bottom:.25rem;font-weight:600}.uikit-badge-w-warning{--tw-bg-opacity: 1;background-color:rgb(255 209 103 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(42 55 97 / var(--tw-text-opacity, 1))}.uikit-badge-w-lavender{--tw-bg-opacity: 1;background-color:rgb(233 239 254 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(42 55 97 / var(--tw-text-opacity, 1));--tw-shadow: 0 1px 6px #79797929;--tw-shadow-colored: 0 1px 6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.uikit-badge-outline-tag{height:2.25rem;border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));padding-left:18px;padding-right:18px;padding-top:.5rem;padding-bottom:.5rem;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-outline-tag-listing{border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));font-size:12px;line-height:16px;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-w-primary-sm{height:23px;border-radius:10px;--tw-bg-opacity: 1;background-color:rgb(43 93 255 / var(--tw-bg-opacity, 1));font-size:10px;line-height:14px;font-weight:500;line-height:inherit;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.uikit-badge-w-dark-primary{z-index:10;--tw-bg-opacity: 1;background-color:rgb(42 55 97 / var(--tw-bg-opacity, 1));padding-left:11px;padding-right:11px}@media (min-width: 576px){.uikit-badge-w-dark-primary{padding-right:10px;font-size:12px;line-height:16px}}.uikit-badge-w-danger{--tw-bg-opacity: 1;background-color:rgb(250 79 100 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}
|
package/dist/assets/BaseCard.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.card[data-v-335ec407]{--card-max-height: none;--card-max-width: 930px;--card-height: auto;--card-width: auto;--card-border-radius-top-left: 20px;--card-border-radius-top-right: 20px;--card-border-radius-bottom-left: 20px;--card-border-radius-bottom-right: 20px;border-top-left-radius:var(--card-border-radius-top-left);border-top-right-radius:var(--card-border-radius-top-right);border-bottom-left-radius:var(--card-border-radius-bottom-left);border-bottom-right-radius:var(--card-border-radius-bottom-right);height:var(--card-height);width:var(--card-width);max-width:var(--card-max-width);max-height:var(--card-max-height);position:relative;z-index:0;display:flex;overflow:hidden;--tw-shadow: 0 0 8px #2222221F;--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}@media screen and (min-width: 576px){.card[data-v-335ec407]{--card-img-max-width: 300px;--card-height: 240px }}.card .card-body[data-v-335ec407]{--card-body-width: 100%;box-sizing:border-box;width:var(--card-body-width);padding:10px 15px}.card .card-img[data-v-335ec407]{--card-img-height: var(--card-height);--card-img-width: 100%;--card-img-max-height: none;--card-img-max-width: none;height:var(--card-img-height);width:var(--card-img-width);max-width:var(--card-img-max-width);max-height:var(--card-img-max-height)}@media screen and (min-width: 576px){.card .card-img[data-v-335ec407]{--card-img-max-width: 300px }}.card.vertical[data-v-335ec407]{flex-direction:column}@media not all and (min-width: 576px){.card.vertical[data-v-335ec407]{min-height:100px;min-width:335px}}@media screen and (min-width: 576px){.card.vertical[data-v-335ec407]{--card-height: fit-content }}.card.vertical .card-img[data-v-335ec407]{--card-img-width: 100%;--card-img-max-width: 100%}.card.mini[data-v-335ec407]{--card-max-height: 100px;--card-max-width: 370px}.card.mini .card-img[data-v-335ec407]{--card-img-max-height: 110px;--card-img-max-width: 120px}@media (min-width: 576px){.card.news-card[data-v-335ec407]{flex-direction:column}}.card.news-card[data-v-335ec407]{--card-height: 270px}@media screen and (max-width: 576px){.card.news-card[data-v-335ec407]{--card-height: 100px;--card-width: 320px }.card.news-card .card-img[data-v-335ec407]{--card-height: 100px;--card-img-max-width: 100px }}@media screen and (min-width: 576px){.card.news-card .card-img[data-v-335ec407]{--card-height: 150px;--card-img-max-width: 100% }}
|
|
1
|
+
.card[data-v-335ec407]{--card-max-height: none;--card-max-width: 930px;--card-height: auto;--card-width: auto;--card-border-radius-top-left: 20px;--card-border-radius-top-right: 20px;--card-border-radius-bottom-left: 20px;--card-border-radius-bottom-right: 20px;border-top-left-radius:var(--card-border-radius-top-left);border-top-right-radius:var(--card-border-radius-top-right);border-bottom-left-radius:var(--card-border-radius-bottom-left);border-bottom-right-radius:var(--card-border-radius-bottom-right);height:var(--card-height);width:var(--card-width);max-width:var(--card-max-width);max-height:var(--card-max-height);position:relative;z-index:0;display:flex;overflow:hidden;--tw-shadow: 0 0 8px #2222221F;--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}@media screen and (min-width: 576px){.card[data-v-335ec407]{--card-img-max-width: 300px;--card-height: 240px }}.card .card-body[data-v-335ec407]{--card-body-width: 100%;box-sizing:border-box;width:var(--card-body-width);padding:10px 15px}.card .card-img[data-v-335ec407]{--card-img-height: var(--card-height);--card-img-width: 100%;--card-img-max-height: none;--card-img-max-width: none;height:var(--card-img-height);width:var(--card-img-width);max-width:var(--card-img-max-width);max-height:var(--card-img-max-height)}@media screen and (min-width: 576px){.card .card-img[data-v-335ec407]{--card-img-max-width: 300px }}.card.vertical[data-v-335ec407]{--card-vertical-height: var(--card-height);height:var(--card-vertical-height);flex-direction:column}@media not all and (min-width: 576px){.card.vertical[data-v-335ec407]{min-height:100px;min-width:335px}}@media screen and (min-width: 576px){.card.vertical[data-v-335ec407]{--card-vertical-height: fit-content }}.card.vertical .card-img[data-v-335ec407]{--card-img-width: 100%;--card-img-max-width: 100%}.card.mini[data-v-335ec407]{--card-max-height: 100px;--card-max-width: 370px}.card.mini .card-img[data-v-335ec407]{--card-img-max-height: 110px;--card-img-max-width: 120px}@media (min-width: 576px){.card.news-card[data-v-335ec407]{flex-direction:column}}.card.news-card[data-v-335ec407]{--card-height: 270px}@media screen and (max-width: 576px){.card.news-card[data-v-335ec407]{--card-height: 100px;--card-width: 320px }.card.news-card .card-img[data-v-335ec407]{--card-height: 100px;--card-img-max-width: 100px }}@media screen and (min-width: 576px){.card.news-card .card-img[data-v-335ec407]{--card-height: 150px;--card-img-max-width: 100% }}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.floating-label[data-v-
|
|
1
|
+
.floating-label[data-v-2b36371e]{top:-10px;left:1.25rem;border-radius:5px;font-size:14px;line-height:18px}.inline-label[data-v-2b36371e]{top:.75rem;background-color:transparent;font-size:16px;line-height:20px}.inline-label>span[data-v-2b36371e]{--tw-text-opacity: 1;color:rgb(109 118 135 / var(--tw-text-opacity, 1))}.floating-label[data-v-2b36371e],.inline-label[data-v-2b36371e]{transition-property:top,left;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;will-change:top,left}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.input-wrapper[data-v-
|
|
1
|
+
.input-wrapper[data-v-f62de9f5]{--icon-default-size: 44px}.invalid-bg[data-v-f62de9f5]{--invalid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMicgaGVpZ2h0PScxMicgZmlsbD0nbm9uZScgc3Ryb2tlPScjRkE0RjY0Jz48Y2lyY2xlIGN4PSc2JyBjeT0nNicgcj0nNC41Jy8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSdyb3VuZCcgZD0nTTUuOCAzLjZoLjRMNiA2LjV6Jy8+PGNpcmNsZSBjeD0nNicgY3k9JzguMicgcj0nLjYnIGZpbGw9JyNGQTRGNjQnIHN0cm9rZT0nbm9uZScvPjwvc3ZnPg==);background-image:var(--invalid-img)}.valid-bg[data-v-f62de9f5]{--valid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyMyQjVERkYnIGQ9J00yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeicvPjwvc3ZnPg==);background-image:var(--valid-img)}.invalid-bg[data-v-f62de9f5],.valid-bg[data-v-f62de9f5]{background-position:top 10px right 12px;background-size:20px}.has-right-icon[data-v-f62de9f5]>label.inline-label{right:var(--icon-default-size)}.has-left-icon[data-v-f62de9f5]>label.inline-label{left:var(--icon-default-size)}[data-v-f62de9f5] .text-input-icon{position:absolute;z-index:20;box-sizing:border-box;--icon-size-sm: 16px;--icon-size-md: 20px;--icon-size-lg: 25px}[data-v-f62de9f5] .text-input-icon.left{left:5px}[data-v-f62de9f5] .text-input-icon.right{right:5px}[data-v-f62de9f5] .text-input-icon{--icon-top: 5px;--icon-size: var(--icon-size-sm);width:var(--icon-default-size);height:var(--icon-default-size);padding:calc((var(--icon-default-size) - var(--icon-size)) / 2);top:var(--icon-top)}[data-v-f62de9f5] .text-input-icon.md{--icon-size: var(--icon-size-md)}[data-v-f62de9f5] .text-input-icon.lg{--icon-top: 0;--icon-size: var(--icon-size-lg)}.under-label[data-v-f62de9f5]{left:4px;font-style:italic}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.invalid-bg[data-v-
|
|
1
|
+
.invalid-bg[data-v-4c1a3e1d]{--invalid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMicgaGVpZ2h0PScxMicgZmlsbD0nbm9uZScgc3Ryb2tlPScjRkE0RjY0Jz48Y2lyY2xlIGN4PSc2JyBjeT0nNicgcj0nNC41Jy8+PHBhdGggc3Ryb2tlLWxpbmVqb2luPSdyb3VuZCcgZD0nTTUuOCAzLjZoLjRMNiA2LjV6Jy8+PGNpcmNsZSBjeD0nNicgY3k9JzguMicgcj0nLjYnIGZpbGw9JyNGQTRGNjQnIHN0cm9rZT0nbm9uZScvPjwvc3ZnPg==);background-image:var(--invalid-img)}.valid-bg[data-v-4c1a3e1d]{--valid-img: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyMyQjVERkYnIGQ9J00yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeicvPjwvc3ZnPg==);background-image:var(--valid-img)}.invalid-bg[data-v-4c1a3e1d],.valid-bg[data-v-4c1a3e1d]{background-position:top 0px right 12px;background-size:20px}.textarea-scrollbar[data-v-4c1a3e1d]::-webkit-scrollbar{width:8px;height:6px}.textarea-scrollbar[data-v-4c1a3e1d]::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}.textarea-scrollbar[data-v-4c1a3e1d]::-webkit-scrollbar-thumb{border-radius:5px;--tw-bg-opacity: 1;background-color:rgb(180 194 240 / var(--tw-bg-opacity, 1))}.is-valid.textarea-scrollbar[data-v-4c1a3e1d]::-webkit-scrollbar-thumb{background-color:#2b5dff!important}.is-invalid.textarea-scrollbar[data-v-4c1a3e1d]::-webkit-scrollbar-thumb{background-color:#fa4f64!important}
|