@cnamts/synapse 0.0.16-alpha → 1.0.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/Accordion/Accordion.d.ts +39 -0
- package/dist/components/Accordion/config.d.ts +9 -0
- package/dist/components/ChipList/ChipList.d.ts +1 -1
- package/dist/components/CopyBtn/CopyBtn.d.ts +2 -0
- package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +12 -0
- package/dist/components/Customs/SySelect/SySelect.d.ts +43 -16
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +17 -17
- package/dist/components/DatePicker/DatePicker.d.ts +34 -34
- package/dist/components/DatePicker/DateTextInput.d.ts +16 -16
- package/dist/components/DiacriticPicker/DiacriticPicker.d.ts +27 -0
- package/dist/components/DiacriticPicker/config.d.ts +14 -0
- package/dist/components/DiacriticPicker/locales.d.ts +6 -0
- package/dist/components/DownloadBtn/DownloadBtn.d.ts +1 -1
- package/dist/components/FooterBar/FooterBar.d.ts +1 -1
- package/dist/components/NirField/NirField.d.ts +34 -32
- package/dist/components/NotificationBar/NotificationBar.d.ts +1 -1
- package/dist/components/PasswordField/PasswordField.d.ts +1 -1
- package/dist/components/PeriodField/PeriodField.d.ts +64 -64
- package/dist/components/PhoneField/PhoneField.d.ts +1 -0
- package/dist/components/PhoneField/tests/types.d.ts +18 -0
- package/dist/components/SyTextArea/SyTextArea.d.ts +900 -0
- package/dist/components/SyTextArea/locales.d.ts +3 -0
- package/dist/components/SyTextArea/trimStartOnUpdate.d.ts +1 -0
- package/dist/components/SyTextArea/useTextActions.d.ts +13 -0
- package/dist/components/SyTextArea/wrapText.d.ts +1 -0
- package/dist/components/TableToolbar/TableToolbar.d.ts +10 -4
- package/dist/components/TableToolbar/config.d.ts +3 -2
- package/dist/components/index.d.ts +3 -0
- package/dist/composables/date/useHolidayDay.d.ts +36 -0
- package/dist/design-system-v3.js +4202 -3529
- package/dist/design-system-v3.umd.cjs +4 -1
- package/dist/designTokens/tokens/pa/paLightTheme.d.ts +1 -32
- package/dist/style.css +1 -1
- package/dist/utils/rules/index.d.ts +1 -0
- package/dist/utils/rules/isHolidayDay/index.d.ts +11 -0
- package/dist/utils/rules/isHolidayDay/locales.d.ts +2 -0
- package/package.json +3 -2
- package/src/assets/settings.scss +12 -0
- package/src/components/Accordion/Accordion.mdx +69 -0
- package/src/components/Accordion/Accordion.stories.ts +262 -0
- package/src/components/Accordion/Accordion.vue +319 -0
- package/src/components/Accordion/config.ts +9 -0
- package/src/components/Accordion/tests/__snapshots__/accordion.spec.ts.snap +155 -0
- package/src/components/Accordion/tests/accordion.spec.ts +492 -0
- package/src/components/CopyBtn/CopyBtn.stories.ts +189 -0
- package/src/components/CopyBtn/CopyBtn.vue +29 -1
- package/src/components/CopyBtn/tests/CopyBtn.spec.ts +102 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +155 -1
- package/src/components/Customs/SyInputSelect/SyInputSelect.vue +97 -14
- package/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.ts +386 -106
- package/src/components/Customs/SySelect/SySelect.stories.ts +121 -2
- package/src/components/Customs/SySelect/SySelect.vue +33 -8
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +290 -1
- package/src/components/Customs/SyTextField/SyTextField.vue +5 -3
- package/src/components/DatePicker/DatePicker.vue +16 -3
- package/src/components/DatePicker/DateTextInput.vue +16 -5
- package/src/components/DatePicker/examples/DatePickerHolidayRule.vue +130 -0
- package/src/components/DiacriticPicker/DiacriticPicker.mdx +104 -0
- package/src/components/DiacriticPicker/DiacriticPicker.stories.ts +447 -0
- package/src/components/DiacriticPicker/DiacriticPicker.vue +262 -0
- package/src/components/DiacriticPicker/config.ts +15 -0
- package/src/components/DiacriticPicker/locales.ts +6 -0
- package/src/components/DiacriticPicker/tests/DiatriticPicker.spec.ts +132 -0
- package/src/components/DialogBox/DialogBox.vue +1 -3
- package/src/components/NirField/NirField.stories.ts +172 -0
- package/src/components/NirField/NirField.vue +15 -7
- package/src/components/NotificationBar/Accessibilite.stories.ts +1 -1
- package/src/components/NotificationBar/NotificationBar.stories.ts +14 -0
- package/src/components/NotificationBar/NotificationBar.vue +26 -3
- package/src/components/NotificationBar/{options.ts → config.ts} +0 -1
- package/src/components/PaginatedTable/PaginatedTable.vue +0 -11
- package/src/components/PasswordField/PasswordField.stories.ts +4 -3
- package/src/components/PasswordField/PasswordField.vue +26 -18
- package/src/components/PasswordField/tests/PasswordField.spec.ts +1 -10
- package/src/components/PhoneField/PhoneField.stories.ts +143 -0
- package/src/components/PhoneField/PhoneField.vue +88 -30
- package/src/components/PhoneField/tests/PhoneField.additional.spec.ts +266 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +248 -28
- package/src/components/PhoneField/tests/types.d.ts +19 -0
- package/src/components/SyTextArea/SyTextArea.mdx +17 -0
- package/src/components/SyTextArea/SyTextArea.stories.ts +322 -0
- package/src/components/SyTextArea/SyTextArea.vue +113 -0
- package/src/components/SyTextArea/locales.ts +3 -0
- package/src/components/SyTextArea/tests/SyTextArea.spec.ts +194 -0
- package/src/components/SyTextArea/trimStartOnUpdate.ts +12 -0
- package/src/components/SyTextArea/useTextActions.ts +52 -0
- package/src/components/SyTextArea/wrapText.ts +42 -0
- package/src/components/TableToolbar/TableToolbar.mdx +86 -1
- package/src/components/TableToolbar/TableToolbar.stories.ts +422 -74
- package/src/components/TableToolbar/TableToolbar.vue +25 -8
- package/src/components/TableToolbar/config.ts +3 -2
- package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +35 -12
- package/src/components/index.ts +3 -0
- package/src/composables/date/useHolidayDay.ts +98 -0
- package/src/composables/rules/useFieldValidation.ts +16 -3
- package/src/composables/validation/useValidation.ts +2 -1
- package/src/designTokens/tokens/pa/paLightTheme.ts +10 -41
- package/src/stories/Accessibilite/Introduction.mdx +5 -2
- package/src/stories/DesignTokens/colors.stories.ts +100 -41
- package/src/utils/rules/index.ts +1 -0
- package/src/utils/rules/isHolidayDay/IsHolidayDay.mdx +52 -0
- package/src/utils/rules/isHolidayDay/IsHolidayDay.stories.ts +129 -0
- package/src/utils/rules/isHolidayDay/index.ts +36 -0
- package/src/utils/rules/isHolidayDay/locales.ts +5 -0
- package/src/utils/rules/isHolidayDay/tests/isHolidayDay.spec.ts +35 -0
- /package/dist/components/NotificationBar/{options.d.ts → config.d.ts} +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { CustomizableOptions } from '../../composables/useCustomizableOptions';
|
|
2
|
+
interface ContentObject {
|
|
3
|
+
title: string;
|
|
4
|
+
content: string;
|
|
5
|
+
}
|
|
6
|
+
interface AccordionItem {
|
|
7
|
+
id: string;
|
|
8
|
+
title: string;
|
|
9
|
+
content: string | ContentObject;
|
|
10
|
+
headingLevel?: number;
|
|
11
|
+
}
|
|
12
|
+
interface Props extends CustomizableOptions {
|
|
13
|
+
items: AccordionItem[];
|
|
14
|
+
headingLevel?: number;
|
|
15
|
+
groupId?: string;
|
|
16
|
+
vuetifyOptions?: {
|
|
17
|
+
accordion?: {
|
|
18
|
+
backgroundColor?: string;
|
|
19
|
+
titleColor?: string;
|
|
20
|
+
hoverColor?: string;
|
|
21
|
+
focusColor?: string;
|
|
22
|
+
activeColor?: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
27
|
+
headingLevel: number;
|
|
28
|
+
groupId: string;
|
|
29
|
+
vuetifyOptions: {
|
|
30
|
+
accordion?: {
|
|
31
|
+
backgroundColor?: string | undefined;
|
|
32
|
+
titleColor?: string | undefined;
|
|
33
|
+
hoverColor?: string | undefined;
|
|
34
|
+
focusColor?: string | undefined;
|
|
35
|
+
activeColor?: string | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
};
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
|
+
export default _default;
|
|
@@ -26,6 +26,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
26
26
|
onRemove?: ((item: ChipItem) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
readonly: boolean;
|
|
29
|
+
items: ChipItem[];
|
|
29
30
|
vuetifyOptions: {
|
|
30
31
|
chip?: {
|
|
31
32
|
color?: string | undefined;
|
|
@@ -37,7 +38,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
37
38
|
[x: string]: unknown;
|
|
38
39
|
};
|
|
39
40
|
};
|
|
40
|
-
items: ChipItem[];
|
|
41
41
|
overflowLimit: number;
|
|
42
42
|
resetText: string;
|
|
43
43
|
displayPrependStateIcon: boolean;
|
|
@@ -5,6 +5,7 @@ type __VLS_Props = CustomizableOptions & {
|
|
|
5
5
|
textToCopy: (() => string) | string;
|
|
6
6
|
hideTooltip?: boolean;
|
|
7
7
|
tooltipDuration?: number;
|
|
8
|
+
separatorsToRemove?: string | string[];
|
|
8
9
|
};
|
|
9
10
|
declare function copy(): void;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_Props, {
|
|
@@ -16,6 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
16
17
|
textToCopy: string | (() => string);
|
|
17
18
|
hideTooltip: boolean;
|
|
18
19
|
tooltipDuration: number;
|
|
20
|
+
separatorsToRemove: string | string[];
|
|
19
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
20
22
|
icon?(_: {}): any;
|
|
21
23
|
tooltip?(_: {}): any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CustomizableOptions } from '../../../composables/useCustomizableOptions';
|
|
2
|
+
import { ValidationRule } from '../../../composables/validation/useValidation';
|
|
2
3
|
type __VLS_Props = CustomizableOptions & {
|
|
3
4
|
modelValue?: Record<string, unknown> | string | null;
|
|
4
5
|
items?: Record<string, unknown>[] | string[];
|
|
@@ -11,6 +12,9 @@ type __VLS_Props = CustomizableOptions & {
|
|
|
11
12
|
isHeaderToolbar?: boolean;
|
|
12
13
|
displayAsterisk?: boolean;
|
|
13
14
|
readonly?: boolean;
|
|
15
|
+
clearable?: boolean;
|
|
16
|
+
customRules?: ValidationRule[];
|
|
17
|
+
disableErrorHandling?: boolean;
|
|
14
18
|
};
|
|
15
19
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
16
20
|
isOpen: import('vue').Ref<boolean, boolean>;
|
|
@@ -18,10 +22,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
18
22
|
selectItem: (item: any) => void;
|
|
19
23
|
selectedItem: import('vue').Ref<string | Record<string, unknown> | null, string | Record<string, unknown> | null>;
|
|
20
24
|
getItemText: (item: unknown) => any;
|
|
25
|
+
validateOnSubmit: () => boolean;
|
|
26
|
+
validateField: (value: unknown) => boolean;
|
|
27
|
+
checkForErrors: () => boolean;
|
|
21
28
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
29
|
"update:modelValue": (...args: any[]) => void;
|
|
30
|
+
"update:errorMessages": (...args: any[]) => void;
|
|
23
31
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
32
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
"onUpdate:errorMessages"?: ((...args: any[]) => any) | undefined;
|
|
25
34
|
}>, {
|
|
26
35
|
required: boolean;
|
|
27
36
|
outlined: boolean;
|
|
@@ -30,6 +39,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
30
39
|
errorMessages: string | string[];
|
|
31
40
|
readonly: boolean;
|
|
32
41
|
displayAsterisk: boolean;
|
|
42
|
+
customRules: ValidationRule[];
|
|
43
|
+
disableErrorHandling: boolean;
|
|
44
|
+
clearable: boolean;
|
|
33
45
|
items: string[] | Record<string, unknown>[];
|
|
34
46
|
textKey: string;
|
|
35
47
|
valueKey: string;
|
|
@@ -55,6 +55,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
55
|
type: BooleanConstructor;
|
|
56
56
|
default: boolean;
|
|
57
57
|
};
|
|
58
|
+
density: {
|
|
59
|
+
type: PropType<"default" | "comfortable" | "compact" | undefined>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
58
62
|
bgColor: {
|
|
59
63
|
type: StringConstructor;
|
|
60
64
|
default: undefined;
|
|
@@ -67,6 +71,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
67
71
|
type: BooleanConstructor;
|
|
68
72
|
default: boolean;
|
|
69
73
|
};
|
|
74
|
+
hideMessages: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
78
|
+
width: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
70
82
|
}>, {
|
|
71
83
|
isOpen: import('vue').Ref<boolean, boolean>;
|
|
72
84
|
closeList: () => void;
|
|
@@ -125,6 +137,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
137
|
type: BooleanConstructor;
|
|
126
138
|
default: boolean;
|
|
127
139
|
};
|
|
140
|
+
density: {
|
|
141
|
+
type: PropType<"default" | "comfortable" | "compact" | undefined>;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
128
144
|
bgColor: {
|
|
129
145
|
type: StringConstructor;
|
|
130
146
|
default: undefined;
|
|
@@ -137,6 +153,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
137
153
|
type: BooleanConstructor;
|
|
138
154
|
default: boolean;
|
|
139
155
|
};
|
|
156
|
+
hideMessages: {
|
|
157
|
+
type: BooleanConstructor;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
width: {
|
|
161
|
+
type: StringConstructor;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
140
164
|
}>> & Readonly<{
|
|
141
165
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
142
166
|
}>, {
|
|
@@ -147,7 +171,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
147
171
|
errorMessages: string | readonly string[];
|
|
148
172
|
readonly: boolean;
|
|
149
173
|
bgColor: string;
|
|
174
|
+
density: "default" | "comfortable" | "compact" | undefined;
|
|
150
175
|
disabled: boolean;
|
|
176
|
+
width: string;
|
|
151
177
|
displayAsterisk: boolean;
|
|
152
178
|
disableErrorHandling: boolean;
|
|
153
179
|
clearable: boolean;
|
|
@@ -156,6 +182,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
156
182
|
textKey: string;
|
|
157
183
|
valueKey: string;
|
|
158
184
|
returnObject: boolean;
|
|
185
|
+
hideMessages: boolean;
|
|
159
186
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
160
187
|
input: import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
161
188
|
flat: boolean;
|
|
@@ -170,7 +197,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
170
197
|
disabled: boolean;
|
|
171
198
|
readonly: boolean | null;
|
|
172
199
|
messages: string | readonly string[];
|
|
173
|
-
rules: readonly import('vuetify/lib/
|
|
200
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
174
201
|
focused: boolean;
|
|
175
202
|
errorMessages: string | readonly string[] | null;
|
|
176
203
|
maxErrors: string | number;
|
|
@@ -293,7 +320,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
293
320
|
disabled: boolean | null;
|
|
294
321
|
readonly: boolean | null;
|
|
295
322
|
messages: string | readonly string[];
|
|
296
|
-
rules: readonly import('vuetify/lib/
|
|
323
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
297
324
|
focused: boolean;
|
|
298
325
|
errorMessages: string | readonly string[] | null;
|
|
299
326
|
maxErrors: string | number;
|
|
@@ -309,7 +336,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
309
336
|
disabled: boolean | null;
|
|
310
337
|
readonly: boolean | null;
|
|
311
338
|
messages: string | readonly string[];
|
|
312
|
-
rules: readonly import('vuetify/lib/
|
|
339
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
313
340
|
focused: boolean;
|
|
314
341
|
errorMessages: string | readonly string[] | null;
|
|
315
342
|
maxErrors: string | number;
|
|
@@ -374,7 +401,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
374
401
|
disabled: boolean | null;
|
|
375
402
|
readonly: boolean | null;
|
|
376
403
|
messages: string | readonly string[];
|
|
377
|
-
rules: readonly import('vuetify/lib/
|
|
404
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
378
405
|
focused: boolean;
|
|
379
406
|
errorMessages: string | readonly string[] | null;
|
|
380
407
|
maxErrors: string | number;
|
|
@@ -419,7 +446,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
419
446
|
disabled: boolean | null;
|
|
420
447
|
readonly: boolean | null;
|
|
421
448
|
messages: string | readonly string[];
|
|
422
|
-
rules: readonly import('vuetify/lib/
|
|
449
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
423
450
|
focused: boolean;
|
|
424
451
|
errorMessages: string | readonly string[] | null;
|
|
425
452
|
maxErrors: string | number;
|
|
@@ -471,7 +498,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
471
498
|
disabled: boolean | null;
|
|
472
499
|
readonly: boolean | null;
|
|
473
500
|
messages: string | readonly string[];
|
|
474
|
-
rules: readonly import('vuetify/lib/
|
|
501
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
475
502
|
focused: boolean;
|
|
476
503
|
errorMessages: string | readonly string[] | null;
|
|
477
504
|
maxErrors: string | number;
|
|
@@ -487,7 +514,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
487
514
|
disabled: boolean | null;
|
|
488
515
|
readonly: boolean | null;
|
|
489
516
|
messages: string | readonly string[];
|
|
490
|
-
rules: readonly import('vuetify/lib/
|
|
517
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
491
518
|
focused: boolean;
|
|
492
519
|
errorMessages: string | readonly string[] | null;
|
|
493
520
|
maxErrors: string | number;
|
|
@@ -810,7 +837,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
810
837
|
disabled: boolean;
|
|
811
838
|
readonly: boolean | null;
|
|
812
839
|
messages: string | readonly string[];
|
|
813
|
-
rules: readonly import('vuetify/lib/
|
|
840
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
814
841
|
focused: boolean;
|
|
815
842
|
errorMessages: string | readonly string[] | null;
|
|
816
843
|
maxErrors: string | number;
|
|
@@ -887,7 +914,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
887
914
|
disabled: boolean;
|
|
888
915
|
readonly: boolean | null;
|
|
889
916
|
messages: string | readonly string[];
|
|
890
|
-
rules: readonly import('vuetify/lib/
|
|
917
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
891
918
|
focused: boolean;
|
|
892
919
|
errorMessages: string | readonly string[] | null;
|
|
893
920
|
maxErrors: string | number;
|
|
@@ -1010,7 +1037,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1010
1037
|
disabled: boolean | null;
|
|
1011
1038
|
readonly: boolean | null;
|
|
1012
1039
|
messages: string | readonly string[];
|
|
1013
|
-
rules: readonly import('vuetify/lib/
|
|
1040
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1014
1041
|
focused: boolean;
|
|
1015
1042
|
errorMessages: string | readonly string[] | null;
|
|
1016
1043
|
maxErrors: string | number;
|
|
@@ -1026,7 +1053,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1026
1053
|
disabled: boolean | null;
|
|
1027
1054
|
readonly: boolean | null;
|
|
1028
1055
|
messages: string | readonly string[];
|
|
1029
|
-
rules: readonly import('vuetify/lib/
|
|
1056
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1030
1057
|
focused: boolean;
|
|
1031
1058
|
errorMessages: string | readonly string[] | null;
|
|
1032
1059
|
maxErrors: string | number;
|
|
@@ -1091,7 +1118,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1091
1118
|
disabled: boolean | null;
|
|
1092
1119
|
readonly: boolean | null;
|
|
1093
1120
|
messages: string | readonly string[];
|
|
1094
|
-
rules: readonly import('vuetify/lib/
|
|
1121
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1095
1122
|
focused: boolean;
|
|
1096
1123
|
errorMessages: string | readonly string[] | null;
|
|
1097
1124
|
maxErrors: string | number;
|
|
@@ -1136,7 +1163,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1136
1163
|
disabled: boolean | null;
|
|
1137
1164
|
readonly: boolean | null;
|
|
1138
1165
|
messages: string | readonly string[];
|
|
1139
|
-
rules: readonly import('vuetify/lib/
|
|
1166
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1140
1167
|
focused: boolean;
|
|
1141
1168
|
errorMessages: string | readonly string[] | null;
|
|
1142
1169
|
maxErrors: string | number;
|
|
@@ -1188,7 +1215,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1188
1215
|
disabled: boolean | null;
|
|
1189
1216
|
readonly: boolean | null;
|
|
1190
1217
|
messages: string | readonly string[];
|
|
1191
|
-
rules: readonly import('vuetify/lib/
|
|
1218
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1192
1219
|
focused: boolean;
|
|
1193
1220
|
errorMessages: string | readonly string[] | null;
|
|
1194
1221
|
maxErrors: string | number;
|
|
@@ -1204,7 +1231,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1204
1231
|
disabled: boolean | null;
|
|
1205
1232
|
readonly: boolean | null;
|
|
1206
1233
|
messages: string | readonly string[];
|
|
1207
|
-
rules: readonly import('vuetify/lib/
|
|
1234
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1208
1235
|
focused: boolean;
|
|
1209
1236
|
errorMessages: string | readonly string[] | null;
|
|
1210
1237
|
maxErrors: string | number;
|
|
@@ -1522,7 +1549,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1522
1549
|
disabled: boolean;
|
|
1523
1550
|
readonly: boolean | null;
|
|
1524
1551
|
messages: string | readonly string[];
|
|
1525
|
-
rules: readonly import('vuetify/lib/
|
|
1552
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1526
1553
|
focused: boolean;
|
|
1527
1554
|
errorMessages: string | readonly string[] | null;
|
|
1528
1555
|
maxErrors: string | number;
|
|
@@ -172,7 +172,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
172
172
|
disabled: boolean;
|
|
173
173
|
readonly: boolean | null;
|
|
174
174
|
messages: string | readonly string[];
|
|
175
|
-
rules: readonly import('vuetify/lib/
|
|
175
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
176
176
|
focused: boolean;
|
|
177
177
|
errorMessages: string | readonly string[] | null;
|
|
178
178
|
maxErrors: string | number;
|
|
@@ -295,11 +295,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
295
295
|
disabled: boolean | null;
|
|
296
296
|
readonly: boolean | null;
|
|
297
297
|
messages: string | readonly string[];
|
|
298
|
-
rules: readonly import('vuetify/lib/
|
|
298
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
299
299
|
focused: boolean;
|
|
300
300
|
errorMessages: string | readonly string[] | null;
|
|
301
301
|
maxErrors: string | number;
|
|
302
|
-
|
|
302
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
303
303
|
centerAffix: boolean;
|
|
304
304
|
glow: boolean;
|
|
305
305
|
hideSpinButtons: boolean;
|
|
@@ -311,7 +311,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
311
311
|
disabled: boolean | null;
|
|
312
312
|
readonly: boolean | null;
|
|
313
313
|
messages: string | readonly string[];
|
|
314
|
-
rules: readonly import('vuetify/lib/
|
|
314
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
315
315
|
focused: boolean;
|
|
316
316
|
errorMessages: string | readonly string[] | null;
|
|
317
317
|
maxErrors: string | number;
|
|
@@ -376,7 +376,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
376
376
|
disabled: boolean | null;
|
|
377
377
|
readonly: boolean | null;
|
|
378
378
|
messages: string | readonly string[];
|
|
379
|
-
rules: readonly import('vuetify/lib/
|
|
379
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
380
380
|
focused: boolean;
|
|
381
381
|
errorMessages: string | readonly string[] | null;
|
|
382
382
|
maxErrors: string | number;
|
|
@@ -421,7 +421,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
421
421
|
disabled: boolean | null;
|
|
422
422
|
readonly: boolean | null;
|
|
423
423
|
messages: string | readonly string[];
|
|
424
|
-
rules: readonly import('vuetify/lib/
|
|
424
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
425
425
|
focused: boolean;
|
|
426
426
|
errorMessages: string | readonly string[] | null;
|
|
427
427
|
maxErrors: string | number;
|
|
@@ -473,7 +473,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
473
473
|
disabled: boolean | null;
|
|
474
474
|
readonly: boolean | null;
|
|
475
475
|
messages: string | readonly string[];
|
|
476
|
-
rules: readonly import('vuetify/lib/
|
|
476
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
477
477
|
focused: boolean;
|
|
478
478
|
errorMessages: string | readonly string[] | null;
|
|
479
479
|
maxErrors: string | number;
|
|
@@ -489,7 +489,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
489
489
|
disabled: boolean | null;
|
|
490
490
|
readonly: boolean | null;
|
|
491
491
|
messages: string | readonly string[];
|
|
492
|
-
rules: readonly import('vuetify/lib/
|
|
492
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
493
493
|
focused: boolean;
|
|
494
494
|
errorMessages: string | readonly string[] | null;
|
|
495
495
|
maxErrors: string | number;
|
|
@@ -812,7 +812,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
812
812
|
disabled: boolean;
|
|
813
813
|
readonly: boolean | null;
|
|
814
814
|
messages: string | readonly string[];
|
|
815
|
-
rules: readonly import('vuetify/lib/
|
|
815
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
816
816
|
focused: boolean;
|
|
817
817
|
errorMessages: string | readonly string[] | null;
|
|
818
818
|
maxErrors: string | number;
|
|
@@ -889,7 +889,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
889
889
|
disabled: boolean;
|
|
890
890
|
readonly: boolean | null;
|
|
891
891
|
messages: string | readonly string[];
|
|
892
|
-
rules: readonly import('vuetify/lib/
|
|
892
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
893
893
|
focused: boolean;
|
|
894
894
|
errorMessages: string | readonly string[] | null;
|
|
895
895
|
maxErrors: string | number;
|
|
@@ -1012,7 +1012,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1012
1012
|
disabled: boolean | null;
|
|
1013
1013
|
readonly: boolean | null;
|
|
1014
1014
|
messages: string | readonly string[];
|
|
1015
|
-
rules: readonly import('vuetify/lib/
|
|
1015
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1016
1016
|
focused: boolean;
|
|
1017
1017
|
errorMessages: string | readonly string[] | null;
|
|
1018
1018
|
maxErrors: string | number;
|
|
@@ -1028,7 +1028,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1028
1028
|
disabled: boolean | null;
|
|
1029
1029
|
readonly: boolean | null;
|
|
1030
1030
|
messages: string | readonly string[];
|
|
1031
|
-
rules: readonly import('vuetify/lib/
|
|
1031
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1032
1032
|
focused: boolean;
|
|
1033
1033
|
errorMessages: string | readonly string[] | null;
|
|
1034
1034
|
maxErrors: string | number;
|
|
@@ -1093,7 +1093,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1093
1093
|
disabled: boolean | null;
|
|
1094
1094
|
readonly: boolean | null;
|
|
1095
1095
|
messages: string | readonly string[];
|
|
1096
|
-
rules: readonly import('vuetify/lib/
|
|
1096
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1097
1097
|
focused: boolean;
|
|
1098
1098
|
errorMessages: string | readonly string[] | null;
|
|
1099
1099
|
maxErrors: string | number;
|
|
@@ -1138,7 +1138,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1138
1138
|
disabled: boolean | null;
|
|
1139
1139
|
readonly: boolean | null;
|
|
1140
1140
|
messages: string | readonly string[];
|
|
1141
|
-
rules: readonly import('vuetify/lib/
|
|
1141
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1142
1142
|
focused: boolean;
|
|
1143
1143
|
errorMessages: string | readonly string[] | null;
|
|
1144
1144
|
maxErrors: string | number;
|
|
@@ -1190,7 +1190,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1190
1190
|
disabled: boolean | null;
|
|
1191
1191
|
readonly: boolean | null;
|
|
1192
1192
|
messages: string | readonly string[];
|
|
1193
|
-
rules: readonly import('vuetify/lib/
|
|
1193
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1194
1194
|
focused: boolean;
|
|
1195
1195
|
errorMessages: string | readonly string[] | null;
|
|
1196
1196
|
maxErrors: string | number;
|
|
@@ -1206,7 +1206,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1206
1206
|
disabled: boolean | null;
|
|
1207
1207
|
readonly: boolean | null;
|
|
1208
1208
|
messages: string | readonly string[];
|
|
1209
|
-
rules: readonly import('vuetify/lib/
|
|
1209
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1210
1210
|
focused: boolean;
|
|
1211
1211
|
errorMessages: string | readonly string[] | null;
|
|
1212
1212
|
maxErrors: string | number;
|
|
@@ -1524,7 +1524,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
1524
1524
|
disabled: boolean;
|
|
1525
1525
|
readonly: boolean | null;
|
|
1526
1526
|
messages: string | readonly string[];
|
|
1527
|
-
rules: readonly import('vuetify/lib/
|
|
1527
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
1528
1528
|
focused: boolean;
|
|
1529
1529
|
errorMessages: string | readonly string[] | null;
|
|
1530
1530
|
maxErrors: string | number;
|