@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
|
@@ -286,7 +286,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
286
286
|
disabled: boolean;
|
|
287
287
|
readonly: boolean | null;
|
|
288
288
|
messages: string | readonly string[];
|
|
289
|
-
rules: readonly import('vuetify/lib/
|
|
289
|
+
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>))[];
|
|
290
290
|
focused: boolean;
|
|
291
291
|
errorMessages: string | readonly string[] | null;
|
|
292
292
|
maxErrors: string | number;
|
|
@@ -409,7 +409,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
409
409
|
disabled: boolean | null;
|
|
410
410
|
readonly: boolean | null;
|
|
411
411
|
messages: string | readonly string[];
|
|
412
|
-
rules: readonly import('vuetify/lib/
|
|
412
|
+
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>))[];
|
|
413
413
|
focused: boolean;
|
|
414
414
|
errorMessages: string | readonly string[] | null;
|
|
415
415
|
maxErrors: string | number;
|
|
@@ -425,7 +425,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
425
425
|
disabled: boolean | null;
|
|
426
426
|
readonly: boolean | null;
|
|
427
427
|
messages: string | readonly string[];
|
|
428
|
-
rules: readonly import('vuetify/lib/
|
|
428
|
+
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>))[];
|
|
429
429
|
focused: boolean;
|
|
430
430
|
errorMessages: string | readonly string[] | null;
|
|
431
431
|
maxErrors: string | number;
|
|
@@ -490,7 +490,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
490
490
|
disabled: boolean | null;
|
|
491
491
|
readonly: boolean | null;
|
|
492
492
|
messages: string | readonly string[];
|
|
493
|
-
rules: readonly import('vuetify/lib/
|
|
493
|
+
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>))[];
|
|
494
494
|
focused: boolean;
|
|
495
495
|
errorMessages: string | readonly string[] | null;
|
|
496
496
|
maxErrors: string | number;
|
|
@@ -535,7 +535,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
535
535
|
disabled: boolean | null;
|
|
536
536
|
readonly: boolean | null;
|
|
537
537
|
messages: string | readonly string[];
|
|
538
|
-
rules: readonly import('vuetify/lib/
|
|
538
|
+
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>))[];
|
|
539
539
|
focused: boolean;
|
|
540
540
|
errorMessages: string | readonly string[] | null;
|
|
541
541
|
maxErrors: string | number;
|
|
@@ -587,7 +587,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
587
587
|
disabled: boolean | null;
|
|
588
588
|
readonly: boolean | null;
|
|
589
589
|
messages: string | readonly string[];
|
|
590
|
-
rules: readonly import('vuetify/lib/
|
|
590
|
+
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>))[];
|
|
591
591
|
focused: boolean;
|
|
592
592
|
errorMessages: string | readonly string[] | null;
|
|
593
593
|
maxErrors: string | number;
|
|
@@ -603,7 +603,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
603
603
|
disabled: boolean | null;
|
|
604
604
|
readonly: boolean | null;
|
|
605
605
|
messages: string | readonly string[];
|
|
606
|
-
rules: readonly import('vuetify/lib/
|
|
606
|
+
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>))[];
|
|
607
607
|
focused: boolean;
|
|
608
608
|
errorMessages: string | readonly string[] | null;
|
|
609
609
|
maxErrors: string | number;
|
|
@@ -926,7 +926,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
926
926
|
disabled: boolean;
|
|
927
927
|
readonly: boolean | null;
|
|
928
928
|
messages: string | readonly string[];
|
|
929
|
-
rules: readonly import('vuetify/lib/
|
|
929
|
+
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>))[];
|
|
930
930
|
focused: boolean;
|
|
931
931
|
errorMessages: string | readonly string[] | null;
|
|
932
932
|
maxErrors: string | number;
|
|
@@ -1003,7 +1003,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1003
1003
|
disabled: boolean;
|
|
1004
1004
|
readonly: boolean | null;
|
|
1005
1005
|
messages: string | readonly string[];
|
|
1006
|
-
rules: readonly import('vuetify/lib/
|
|
1006
|
+
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>))[];
|
|
1007
1007
|
focused: boolean;
|
|
1008
1008
|
errorMessages: string | readonly string[] | null;
|
|
1009
1009
|
maxErrors: string | number;
|
|
@@ -1126,7 +1126,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1126
1126
|
disabled: boolean | null;
|
|
1127
1127
|
readonly: boolean | null;
|
|
1128
1128
|
messages: string | readonly string[];
|
|
1129
|
-
rules: readonly import('vuetify/lib/
|
|
1129
|
+
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>))[];
|
|
1130
1130
|
focused: boolean;
|
|
1131
1131
|
errorMessages: string | readonly string[] | null;
|
|
1132
1132
|
maxErrors: string | number;
|
|
@@ -1142,7 +1142,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1142
1142
|
disabled: boolean | null;
|
|
1143
1143
|
readonly: boolean | null;
|
|
1144
1144
|
messages: string | readonly string[];
|
|
1145
|
-
rules: readonly import('vuetify/lib/
|
|
1145
|
+
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>))[];
|
|
1146
1146
|
focused: boolean;
|
|
1147
1147
|
errorMessages: string | readonly string[] | null;
|
|
1148
1148
|
maxErrors: string | number;
|
|
@@ -1207,7 +1207,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1207
1207
|
disabled: boolean | null;
|
|
1208
1208
|
readonly: boolean | null;
|
|
1209
1209
|
messages: string | readonly string[];
|
|
1210
|
-
rules: readonly import('vuetify/lib/
|
|
1210
|
+
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>))[];
|
|
1211
1211
|
focused: boolean;
|
|
1212
1212
|
errorMessages: string | readonly string[] | null;
|
|
1213
1213
|
maxErrors: string | number;
|
|
@@ -1252,7 +1252,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1252
1252
|
disabled: boolean | null;
|
|
1253
1253
|
readonly: boolean | null;
|
|
1254
1254
|
messages: string | readonly string[];
|
|
1255
|
-
rules: readonly import('vuetify/lib/
|
|
1255
|
+
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>))[];
|
|
1256
1256
|
focused: boolean;
|
|
1257
1257
|
errorMessages: string | readonly string[] | null;
|
|
1258
1258
|
maxErrors: string | number;
|
|
@@ -1304,7 +1304,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1304
1304
|
disabled: boolean | null;
|
|
1305
1305
|
readonly: boolean | null;
|
|
1306
1306
|
messages: string | readonly string[];
|
|
1307
|
-
rules: readonly import('vuetify/lib/
|
|
1307
|
+
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>))[];
|
|
1308
1308
|
focused: boolean;
|
|
1309
1309
|
errorMessages: string | readonly string[] | null;
|
|
1310
1310
|
maxErrors: string | number;
|
|
@@ -1320,7 +1320,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1320
1320
|
disabled: boolean | null;
|
|
1321
1321
|
readonly: boolean | null;
|
|
1322
1322
|
messages: string | readonly string[];
|
|
1323
|
-
rules: readonly import('vuetify/lib/
|
|
1323
|
+
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>))[];
|
|
1324
1324
|
focused: boolean;
|
|
1325
1325
|
errorMessages: string | readonly string[] | null;
|
|
1326
1326
|
maxErrors: string | number;
|
|
@@ -1638,7 +1638,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1638
1638
|
disabled: boolean;
|
|
1639
1639
|
readonly: boolean | null;
|
|
1640
1640
|
messages: string | readonly string[];
|
|
1641
|
-
rules: readonly import('vuetify/lib/
|
|
1641
|
+
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>))[];
|
|
1642
1642
|
focused: boolean;
|
|
1643
1643
|
errorMessages: string | readonly string[] | null;
|
|
1644
1644
|
maxErrors: string | number;
|
|
@@ -2150,7 +2150,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2150
2150
|
disabled: boolean;
|
|
2151
2151
|
readonly: boolean | null;
|
|
2152
2152
|
messages: string | readonly string[];
|
|
2153
|
-
rules: readonly import('vuetify/lib/
|
|
2153
|
+
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>))[];
|
|
2154
2154
|
focused: boolean;
|
|
2155
2155
|
errorMessages: string | readonly string[] | null;
|
|
2156
2156
|
maxErrors: string | number;
|
|
@@ -2273,7 +2273,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2273
2273
|
disabled: boolean | null;
|
|
2274
2274
|
readonly: boolean | null;
|
|
2275
2275
|
messages: string | readonly string[];
|
|
2276
|
-
rules: readonly import('vuetify/lib/
|
|
2276
|
+
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>))[];
|
|
2277
2277
|
focused: boolean;
|
|
2278
2278
|
errorMessages: string | readonly string[] | null;
|
|
2279
2279
|
maxErrors: string | number;
|
|
@@ -2289,7 +2289,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2289
2289
|
disabled: boolean | null;
|
|
2290
2290
|
readonly: boolean | null;
|
|
2291
2291
|
messages: string | readonly string[];
|
|
2292
|
-
rules: readonly import('vuetify/lib/
|
|
2292
|
+
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>))[];
|
|
2293
2293
|
focused: boolean;
|
|
2294
2294
|
errorMessages: string | readonly string[] | null;
|
|
2295
2295
|
maxErrors: string | number;
|
|
@@ -2354,7 +2354,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2354
2354
|
disabled: boolean | null;
|
|
2355
2355
|
readonly: boolean | null;
|
|
2356
2356
|
messages: string | readonly string[];
|
|
2357
|
-
rules: readonly import('vuetify/lib/
|
|
2357
|
+
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>))[];
|
|
2358
2358
|
focused: boolean;
|
|
2359
2359
|
errorMessages: string | readonly string[] | null;
|
|
2360
2360
|
maxErrors: string | number;
|
|
@@ -2399,7 +2399,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2399
2399
|
disabled: boolean | null;
|
|
2400
2400
|
readonly: boolean | null;
|
|
2401
2401
|
messages: string | readonly string[];
|
|
2402
|
-
rules: readonly import('vuetify/lib/
|
|
2402
|
+
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>))[];
|
|
2403
2403
|
focused: boolean;
|
|
2404
2404
|
errorMessages: string | readonly string[] | null;
|
|
2405
2405
|
maxErrors: string | number;
|
|
@@ -2451,7 +2451,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2451
2451
|
disabled: boolean | null;
|
|
2452
2452
|
readonly: boolean | null;
|
|
2453
2453
|
messages: string | readonly string[];
|
|
2454
|
-
rules: readonly import('vuetify/lib/
|
|
2454
|
+
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>))[];
|
|
2455
2455
|
focused: boolean;
|
|
2456
2456
|
errorMessages: string | readonly string[] | null;
|
|
2457
2457
|
maxErrors: string | number;
|
|
@@ -2467,7 +2467,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2467
2467
|
disabled: boolean | null;
|
|
2468
2468
|
readonly: boolean | null;
|
|
2469
2469
|
messages: string | readonly string[];
|
|
2470
|
-
rules: readonly import('vuetify/lib/
|
|
2470
|
+
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>))[];
|
|
2471
2471
|
focused: boolean;
|
|
2472
2472
|
errorMessages: string | readonly string[] | null;
|
|
2473
2473
|
maxErrors: string | number;
|
|
@@ -2790,7 +2790,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2790
2790
|
disabled: boolean;
|
|
2791
2791
|
readonly: boolean | null;
|
|
2792
2792
|
messages: string | readonly string[];
|
|
2793
|
-
rules: readonly import('vuetify/lib/
|
|
2793
|
+
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>))[];
|
|
2794
2794
|
focused: boolean;
|
|
2795
2795
|
errorMessages: string | readonly string[] | null;
|
|
2796
2796
|
maxErrors: string | number;
|
|
@@ -2867,7 +2867,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2867
2867
|
disabled: boolean;
|
|
2868
2868
|
readonly: boolean | null;
|
|
2869
2869
|
messages: string | readonly string[];
|
|
2870
|
-
rules: readonly import('vuetify/lib/
|
|
2870
|
+
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>))[];
|
|
2871
2871
|
focused: boolean;
|
|
2872
2872
|
errorMessages: string | readonly string[] | null;
|
|
2873
2873
|
maxErrors: string | number;
|
|
@@ -2990,7 +2990,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2990
2990
|
disabled: boolean | null;
|
|
2991
2991
|
readonly: boolean | null;
|
|
2992
2992
|
messages: string | readonly string[];
|
|
2993
|
-
rules: readonly import('vuetify/lib/
|
|
2993
|
+
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>))[];
|
|
2994
2994
|
focused: boolean;
|
|
2995
2995
|
errorMessages: string | readonly string[] | null;
|
|
2996
2996
|
maxErrors: string | number;
|
|
@@ -3006,7 +3006,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3006
3006
|
disabled: boolean | null;
|
|
3007
3007
|
readonly: boolean | null;
|
|
3008
3008
|
messages: string | readonly string[];
|
|
3009
|
-
rules: readonly import('vuetify/lib/
|
|
3009
|
+
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>))[];
|
|
3010
3010
|
focused: boolean;
|
|
3011
3011
|
errorMessages: string | readonly string[] | null;
|
|
3012
3012
|
maxErrors: string | number;
|
|
@@ -3071,7 +3071,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3071
3071
|
disabled: boolean | null;
|
|
3072
3072
|
readonly: boolean | null;
|
|
3073
3073
|
messages: string | readonly string[];
|
|
3074
|
-
rules: readonly import('vuetify/lib/
|
|
3074
|
+
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>))[];
|
|
3075
3075
|
focused: boolean;
|
|
3076
3076
|
errorMessages: string | readonly string[] | null;
|
|
3077
3077
|
maxErrors: string | number;
|
|
@@ -3116,7 +3116,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3116
3116
|
disabled: boolean | null;
|
|
3117
3117
|
readonly: boolean | null;
|
|
3118
3118
|
messages: string | readonly string[];
|
|
3119
|
-
rules: readonly import('vuetify/lib/
|
|
3119
|
+
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>))[];
|
|
3120
3120
|
focused: boolean;
|
|
3121
3121
|
errorMessages: string | readonly string[] | null;
|
|
3122
3122
|
maxErrors: string | number;
|
|
@@ -3168,7 +3168,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3168
3168
|
disabled: boolean | null;
|
|
3169
3169
|
readonly: boolean | null;
|
|
3170
3170
|
messages: string | readonly string[];
|
|
3171
|
-
rules: readonly import('vuetify/lib/
|
|
3171
|
+
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>))[];
|
|
3172
3172
|
focused: boolean;
|
|
3173
3173
|
errorMessages: string | readonly string[] | null;
|
|
3174
3174
|
maxErrors: string | number;
|
|
@@ -3184,7 +3184,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3184
3184
|
disabled: boolean | null;
|
|
3185
3185
|
readonly: boolean | null;
|
|
3186
3186
|
messages: string | readonly string[];
|
|
3187
|
-
rules: readonly import('vuetify/lib/
|
|
3187
|
+
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>))[];
|
|
3188
3188
|
focused: boolean;
|
|
3189
3189
|
errorMessages: string | readonly string[] | null;
|
|
3190
3190
|
maxErrors: string | number;
|
|
@@ -3502,7 +3502,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3502
3502
|
disabled: boolean;
|
|
3503
3503
|
readonly: boolean | null;
|
|
3504
3504
|
messages: string | readonly string[];
|
|
3505
|
-
rules: readonly import('vuetify/lib/
|
|
3505
|
+
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>))[];
|
|
3506
3506
|
focused: boolean;
|
|
3507
3507
|
errorMessages: string | readonly string[] | null;
|
|
3508
3508
|
maxErrors: string | number;
|
|
@@ -4470,7 +4470,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4470
4470
|
disabled: boolean;
|
|
4471
4471
|
readonly: boolean | null;
|
|
4472
4472
|
messages: string | readonly string[];
|
|
4473
|
-
rules: readonly import('vuetify/lib/
|
|
4473
|
+
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>))[];
|
|
4474
4474
|
focused: boolean;
|
|
4475
4475
|
errorMessages: string | readonly string[] | null;
|
|
4476
4476
|
maxErrors: string | number;
|
|
@@ -4593,7 +4593,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4593
4593
|
disabled: boolean | null;
|
|
4594
4594
|
readonly: boolean | null;
|
|
4595
4595
|
messages: string | readonly string[];
|
|
4596
|
-
rules: readonly import('vuetify/lib/
|
|
4596
|
+
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>))[];
|
|
4597
4597
|
focused: boolean;
|
|
4598
4598
|
errorMessages: string | readonly string[] | null;
|
|
4599
4599
|
maxErrors: string | number;
|
|
@@ -4609,7 +4609,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4609
4609
|
disabled: boolean | null;
|
|
4610
4610
|
readonly: boolean | null;
|
|
4611
4611
|
messages: string | readonly string[];
|
|
4612
|
-
rules: readonly import('vuetify/lib/
|
|
4612
|
+
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>))[];
|
|
4613
4613
|
focused: boolean;
|
|
4614
4614
|
errorMessages: string | readonly string[] | null;
|
|
4615
4615
|
maxErrors: string | number;
|
|
@@ -4674,7 +4674,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4674
4674
|
disabled: boolean | null;
|
|
4675
4675
|
readonly: boolean | null;
|
|
4676
4676
|
messages: string | readonly string[];
|
|
4677
|
-
rules: readonly import('vuetify/lib/
|
|
4677
|
+
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>))[];
|
|
4678
4678
|
focused: boolean;
|
|
4679
4679
|
errorMessages: string | readonly string[] | null;
|
|
4680
4680
|
maxErrors: string | number;
|
|
@@ -4719,7 +4719,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4719
4719
|
disabled: boolean | null;
|
|
4720
4720
|
readonly: boolean | null;
|
|
4721
4721
|
messages: string | readonly string[];
|
|
4722
|
-
rules: readonly import('vuetify/lib/
|
|
4722
|
+
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>))[];
|
|
4723
4723
|
focused: boolean;
|
|
4724
4724
|
errorMessages: string | readonly string[] | null;
|
|
4725
4725
|
maxErrors: string | number;
|
|
@@ -4771,7 +4771,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4771
4771
|
disabled: boolean | null;
|
|
4772
4772
|
readonly: boolean | null;
|
|
4773
4773
|
messages: string | readonly string[];
|
|
4774
|
-
rules: readonly import('vuetify/lib/
|
|
4774
|
+
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>))[];
|
|
4775
4775
|
focused: boolean;
|
|
4776
4776
|
errorMessages: string | readonly string[] | null;
|
|
4777
4777
|
maxErrors: string | number;
|
|
@@ -4787,7 +4787,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4787
4787
|
disabled: boolean | null;
|
|
4788
4788
|
readonly: boolean | null;
|
|
4789
4789
|
messages: string | readonly string[];
|
|
4790
|
-
rules: readonly import('vuetify/lib/
|
|
4790
|
+
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>))[];
|
|
4791
4791
|
focused: boolean;
|
|
4792
4792
|
errorMessages: string | readonly string[] | null;
|
|
4793
4793
|
maxErrors: string | number;
|
|
@@ -5110,7 +5110,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5110
5110
|
disabled: boolean;
|
|
5111
5111
|
readonly: boolean | null;
|
|
5112
5112
|
messages: string | readonly string[];
|
|
5113
|
-
rules: readonly import('vuetify/lib/
|
|
5113
|
+
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>))[];
|
|
5114
5114
|
focused: boolean;
|
|
5115
5115
|
errorMessages: string | readonly string[] | null;
|
|
5116
5116
|
maxErrors: string | number;
|
|
@@ -5187,7 +5187,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5187
5187
|
disabled: boolean;
|
|
5188
5188
|
readonly: boolean | null;
|
|
5189
5189
|
messages: string | readonly string[];
|
|
5190
|
-
rules: readonly import('vuetify/lib/
|
|
5190
|
+
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>))[];
|
|
5191
5191
|
focused: boolean;
|
|
5192
5192
|
errorMessages: string | readonly string[] | null;
|
|
5193
5193
|
maxErrors: string | number;
|
|
@@ -5310,7 +5310,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5310
5310
|
disabled: boolean | null;
|
|
5311
5311
|
readonly: boolean | null;
|
|
5312
5312
|
messages: string | readonly string[];
|
|
5313
|
-
rules: readonly import('vuetify/lib/
|
|
5313
|
+
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>))[];
|
|
5314
5314
|
focused: boolean;
|
|
5315
5315
|
errorMessages: string | readonly string[] | null;
|
|
5316
5316
|
maxErrors: string | number;
|
|
@@ -5326,7 +5326,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5326
5326
|
disabled: boolean | null;
|
|
5327
5327
|
readonly: boolean | null;
|
|
5328
5328
|
messages: string | readonly string[];
|
|
5329
|
-
rules: readonly import('vuetify/lib/
|
|
5329
|
+
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>))[];
|
|
5330
5330
|
focused: boolean;
|
|
5331
5331
|
errorMessages: string | readonly string[] | null;
|
|
5332
5332
|
maxErrors: string | number;
|
|
@@ -5391,7 +5391,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5391
5391
|
disabled: boolean | null;
|
|
5392
5392
|
readonly: boolean | null;
|
|
5393
5393
|
messages: string | readonly string[];
|
|
5394
|
-
rules: readonly import('vuetify/lib/
|
|
5394
|
+
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>))[];
|
|
5395
5395
|
focused: boolean;
|
|
5396
5396
|
errorMessages: string | readonly string[] | null;
|
|
5397
5397
|
maxErrors: string | number;
|
|
@@ -5436,7 +5436,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5436
5436
|
disabled: boolean | null;
|
|
5437
5437
|
readonly: boolean | null;
|
|
5438
5438
|
messages: string | readonly string[];
|
|
5439
|
-
rules: readonly import('vuetify/lib/
|
|
5439
|
+
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>))[];
|
|
5440
5440
|
focused: boolean;
|
|
5441
5441
|
errorMessages: string | readonly string[] | null;
|
|
5442
5442
|
maxErrors: string | number;
|
|
@@ -5488,7 +5488,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5488
5488
|
disabled: boolean | null;
|
|
5489
5489
|
readonly: boolean | null;
|
|
5490
5490
|
messages: string | readonly string[];
|
|
5491
|
-
rules: readonly import('vuetify/lib/
|
|
5491
|
+
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>))[];
|
|
5492
5492
|
focused: boolean;
|
|
5493
5493
|
errorMessages: string | readonly string[] | null;
|
|
5494
5494
|
maxErrors: string | number;
|
|
@@ -5504,7 +5504,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5504
5504
|
disabled: boolean | null;
|
|
5505
5505
|
readonly: boolean | null;
|
|
5506
5506
|
messages: string | readonly string[];
|
|
5507
|
-
rules: readonly import('vuetify/lib/
|
|
5507
|
+
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>))[];
|
|
5508
5508
|
focused: boolean;
|
|
5509
5509
|
errorMessages: string | readonly string[] | null;
|
|
5510
5510
|
maxErrors: string | number;
|
|
@@ -5822,7 +5822,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5822
5822
|
disabled: boolean;
|
|
5823
5823
|
readonly: boolean | null;
|
|
5824
5824
|
messages: string | readonly string[];
|
|
5825
|
-
rules: readonly import('vuetify/lib/
|
|
5825
|
+
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>))[];
|
|
5826
5826
|
focused: boolean;
|
|
5827
5827
|
errorMessages: string | readonly string[] | null;
|
|
5828
5828
|
maxErrors: string | number;
|
|
@@ -6334,7 +6334,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6334
6334
|
disabled: boolean;
|
|
6335
6335
|
readonly: boolean | null;
|
|
6336
6336
|
messages: string | readonly string[];
|
|
6337
|
-
rules: readonly import('vuetify/lib/
|
|
6337
|
+
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>))[];
|
|
6338
6338
|
focused: boolean;
|
|
6339
6339
|
errorMessages: string | readonly string[] | null;
|
|
6340
6340
|
maxErrors: string | number;
|
|
@@ -6457,7 +6457,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6457
6457
|
disabled: boolean | null;
|
|
6458
6458
|
readonly: boolean | null;
|
|
6459
6459
|
messages: string | readonly string[];
|
|
6460
|
-
rules: readonly import('vuetify/lib/
|
|
6460
|
+
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>))[];
|
|
6461
6461
|
focused: boolean;
|
|
6462
6462
|
errorMessages: string | readonly string[] | null;
|
|
6463
6463
|
maxErrors: string | number;
|
|
@@ -6473,7 +6473,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6473
6473
|
disabled: boolean | null;
|
|
6474
6474
|
readonly: boolean | null;
|
|
6475
6475
|
messages: string | readonly string[];
|
|
6476
|
-
rules: readonly import('vuetify/lib/
|
|
6476
|
+
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>))[];
|
|
6477
6477
|
focused: boolean;
|
|
6478
6478
|
errorMessages: string | readonly string[] | null;
|
|
6479
6479
|
maxErrors: string | number;
|
|
@@ -6538,7 +6538,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6538
6538
|
disabled: boolean | null;
|
|
6539
6539
|
readonly: boolean | null;
|
|
6540
6540
|
messages: string | readonly string[];
|
|
6541
|
-
rules: readonly import('vuetify/lib/
|
|
6541
|
+
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>))[];
|
|
6542
6542
|
focused: boolean;
|
|
6543
6543
|
errorMessages: string | readonly string[] | null;
|
|
6544
6544
|
maxErrors: string | number;
|
|
@@ -6583,7 +6583,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6583
6583
|
disabled: boolean | null;
|
|
6584
6584
|
readonly: boolean | null;
|
|
6585
6585
|
messages: string | readonly string[];
|
|
6586
|
-
rules: readonly import('vuetify/lib/
|
|
6586
|
+
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>))[];
|
|
6587
6587
|
focused: boolean;
|
|
6588
6588
|
errorMessages: string | readonly string[] | null;
|
|
6589
6589
|
maxErrors: string | number;
|
|
@@ -6635,7 +6635,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6635
6635
|
disabled: boolean | null;
|
|
6636
6636
|
readonly: boolean | null;
|
|
6637
6637
|
messages: string | readonly string[];
|
|
6638
|
-
rules: readonly import('vuetify/lib/
|
|
6638
|
+
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>))[];
|
|
6639
6639
|
focused: boolean;
|
|
6640
6640
|
errorMessages: string | readonly string[] | null;
|
|
6641
6641
|
maxErrors: string | number;
|
|
@@ -6651,7 +6651,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6651
6651
|
disabled: boolean | null;
|
|
6652
6652
|
readonly: boolean | null;
|
|
6653
6653
|
messages: string | readonly string[];
|
|
6654
|
-
rules: readonly import('vuetify/lib/
|
|
6654
|
+
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>))[];
|
|
6655
6655
|
focused: boolean;
|
|
6656
6656
|
errorMessages: string | readonly string[] | null;
|
|
6657
6657
|
maxErrors: string | number;
|
|
@@ -6974,7 +6974,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6974
6974
|
disabled: boolean;
|
|
6975
6975
|
readonly: boolean | null;
|
|
6976
6976
|
messages: string | readonly string[];
|
|
6977
|
-
rules: readonly import('vuetify/lib/
|
|
6977
|
+
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>))[];
|
|
6978
6978
|
focused: boolean;
|
|
6979
6979
|
errorMessages: string | readonly string[] | null;
|
|
6980
6980
|
maxErrors: string | number;
|
|
@@ -7051,7 +7051,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7051
7051
|
disabled: boolean;
|
|
7052
7052
|
readonly: boolean | null;
|
|
7053
7053
|
messages: string | readonly string[];
|
|
7054
|
-
rules: readonly import('vuetify/lib/
|
|
7054
|
+
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>))[];
|
|
7055
7055
|
focused: boolean;
|
|
7056
7056
|
errorMessages: string | readonly string[] | null;
|
|
7057
7057
|
maxErrors: string | number;
|
|
@@ -7174,7 +7174,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7174
7174
|
disabled: boolean | null;
|
|
7175
7175
|
readonly: boolean | null;
|
|
7176
7176
|
messages: string | readonly string[];
|
|
7177
|
-
rules: readonly import('vuetify/lib/
|
|
7177
|
+
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>))[];
|
|
7178
7178
|
focused: boolean;
|
|
7179
7179
|
errorMessages: string | readonly string[] | null;
|
|
7180
7180
|
maxErrors: string | number;
|
|
@@ -7190,7 +7190,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7190
7190
|
disabled: boolean | null;
|
|
7191
7191
|
readonly: boolean | null;
|
|
7192
7192
|
messages: string | readonly string[];
|
|
7193
|
-
rules: readonly import('vuetify/lib/
|
|
7193
|
+
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>))[];
|
|
7194
7194
|
focused: boolean;
|
|
7195
7195
|
errorMessages: string | readonly string[] | null;
|
|
7196
7196
|
maxErrors: string | number;
|
|
@@ -7255,7 +7255,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7255
7255
|
disabled: boolean | null;
|
|
7256
7256
|
readonly: boolean | null;
|
|
7257
7257
|
messages: string | readonly string[];
|
|
7258
|
-
rules: readonly import('vuetify/lib/
|
|
7258
|
+
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>))[];
|
|
7259
7259
|
focused: boolean;
|
|
7260
7260
|
errorMessages: string | readonly string[] | null;
|
|
7261
7261
|
maxErrors: string | number;
|
|
@@ -7300,7 +7300,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7300
7300
|
disabled: boolean | null;
|
|
7301
7301
|
readonly: boolean | null;
|
|
7302
7302
|
messages: string | readonly string[];
|
|
7303
|
-
rules: readonly import('vuetify/lib/
|
|
7303
|
+
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>))[];
|
|
7304
7304
|
focused: boolean;
|
|
7305
7305
|
errorMessages: string | readonly string[] | null;
|
|
7306
7306
|
maxErrors: string | number;
|
|
@@ -7352,7 +7352,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7352
7352
|
disabled: boolean | null;
|
|
7353
7353
|
readonly: boolean | null;
|
|
7354
7354
|
messages: string | readonly string[];
|
|
7355
|
-
rules: readonly import('vuetify/lib/
|
|
7355
|
+
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>))[];
|
|
7356
7356
|
focused: boolean;
|
|
7357
7357
|
errorMessages: string | readonly string[] | null;
|
|
7358
7358
|
maxErrors: string | number;
|
|
@@ -7368,7 +7368,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7368
7368
|
disabled: boolean | null;
|
|
7369
7369
|
readonly: boolean | null;
|
|
7370
7370
|
messages: string | readonly string[];
|
|
7371
|
-
rules: readonly import('vuetify/lib/
|
|
7371
|
+
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>))[];
|
|
7372
7372
|
focused: boolean;
|
|
7373
7373
|
errorMessages: string | readonly string[] | null;
|
|
7374
7374
|
maxErrors: string | number;
|
|
@@ -7686,7 +7686,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7686
7686
|
disabled: boolean;
|
|
7687
7687
|
readonly: boolean | null;
|
|
7688
7688
|
messages: string | readonly string[];
|
|
7689
|
-
rules: readonly import('vuetify/lib/
|
|
7689
|
+
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>))[];
|
|
7690
7690
|
focused: boolean;
|
|
7691
7691
|
errorMessages: string | readonly string[] | null;
|
|
7692
7692
|
maxErrors: string | number;
|
|
@@ -92,6 +92,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
92
92
|
validateOnSubmit: () => Promise<boolean>;
|
|
93
93
|
clearValidation: () => void;
|
|
94
94
|
};
|
|
95
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
95
96
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
96
97
|
"update:modelValue": (...args: any[]) => void;
|
|
97
98
|
change: (...args: any[]) => void;
|