@cnamts/synapse 1.0.25 → 1.0.26
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/{AutocompleteFilter-D7qBuCAP.js → AutocompleteFilter-BPR-a55G.js} +1 -1
- package/dist/{DateFilter-BitMWrMU.js → DateFilter-CknrJWs2.js} +2 -2
- package/dist/{NumberFilter-BTLUxw0a.js → NumberFilter-DJ-yNlzv.js} +1 -1
- package/dist/{PeriodFilter-B5rUIPAC.js → PeriodFilter-CiB5Oa9Z.js} +1 -1
- package/dist/{SelectFilter-l4QnRcuk.js → SelectFilter-EiafX97M.js} +1 -1
- package/dist/{TextFilter-C9hj6Qrp.js → TextFilter-BzOmpdxj.js} +1 -1
- package/dist/{apLightTheme-DnIM24Lv.js → apLightTheme-DS0Uy44H.js} +20 -16
- package/dist/components/Customs/Selects/SyAutocomplete/SyAutocomplete.d.ts +4 -2
- package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +60 -289
- package/dist/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.d.ts +1 -0
- package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +1 -0
- package/dist/components/Customs/SyRadioGroup/SyRadioGroup.d.ts +1 -0
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +2 -4
- package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +50 -49
- package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +29 -28
- package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +8 -8
- package/dist/components/DatePicker/composables/useDatePickerState.d.ts +3 -3
- package/dist/components/DatePicker/composables/useDateTextField.d.ts +2 -2
- package/dist/components/DatePicker/composables/useInputBlurHandler.d.ts +2 -2
- package/dist/components/DatePicker/types.d.ts +1 -2
- package/dist/components/LunarCalendar/useLunarCalendarValidation.d.ts +1 -0
- package/dist/components/MonthPicker/MonthPicker.d.ts +1 -1
- package/dist/components/MonthPicker/MonthPickerText/MonthPickerInput.d.ts +1 -1
- package/dist/components/NirField/NirField.d.ts +8 -4
- package/dist/components/NirField/useNirValidation.d.ts +6 -2
- package/dist/components/PeriodField/PeriodField.d.ts +102 -102
- package/dist/components/PhoneField/PhoneField.d.ts +11 -1
- package/dist/components/RangeField/RangeSlider/RangeSlider.d.ts +0 -3
- package/dist/components/RatingPicker/EmotionPicker/EmotionPicker.d.ts +3 -1
- package/dist/components/RatingPicker/NumberPicker/NumberPicker.d.ts +4 -3
- package/dist/components/RatingPicker/RatingPicker.d.ts +18 -5
- package/dist/components/RatingPicker/StarsPicker/StarsPicker.d.ts +3 -1
- package/dist/components/RatingPicker/tests/RatingPicker.a11y.spect.d.ts +1 -0
- package/dist/components/RatingPicker/useRatingFocus.d.ts +18 -0
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +4 -4
- package/dist/components/Tables/SyTable/SyTable.d.ts +4 -4
- package/dist/components/Tables/common/SyTablePagination.d.ts +152 -364
- package/dist/components/Tables/common/TableHeader.d.ts +1 -1
- package/dist/components/Tables/common/filters/DateFilter.d.ts +4 -4
- package/dist/composables/date/useDateInitializationDayjs.d.ts +3 -1
- package/dist/composables/unifyValidation/useCustomValidation.d.ts +3 -1
- package/dist/composables/unifyValidation/useValidation.d.ts +12 -6
- package/dist/composables/unifyValidation/useVuetifyValidation.d.ts +1 -1
- package/dist/composables/validation/useValidation.d.ts +1 -0
- package/dist/design-system-v3.js +2 -2
- package/dist/designTokens/tokens/amelipro/apLightTheme.d.ts +2 -0
- package/dist/designTokens/tokens/cnam/cnamLightTheme.d.ts +2 -0
- package/dist/{main-Cpx8Co6H.js → main-BsJ9ec3i.js} +9103 -9018
- package/dist/synapse.css +1 -1
- package/dist/vuetifyConfig.js +1 -1
- package/package.json +8 -7
- package/src/assets/overrides/_icons.scss +0 -13
- package/src/assets/overrides/_otp.scss +0 -1
- package/src/components/Accordion/Accordion.vue +2 -0
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +2 -1
- package/src/components/CookiesSelection/CookiesSelection.vue +2 -1
- package/src/components/CopyBtn/CopyBtn.vue +9 -0
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.vue +1 -1
- package/src/components/Customs/Selects/SySelect/SySelect.stories.ts +413 -96
- package/src/components/Customs/Selects/SySelect/SySelect.vue +270 -225
- package/src/components/Customs/Selects/SySelect/tests/SySelect.spec.ts +245 -6
- package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.vue +3 -3
- package/src/components/Customs/SyCheckbox/SyCheckbox.vue +23 -2
- package/src/components/Customs/SyRadioGroup/SyRadioGroup.vue +23 -5
- package/src/components/Customs/SyTabs/SyTabs.stories.ts +5 -5
- package/src/components/Customs/SyTabs/config.ts +3 -3
- package/src/components/Customs/SyTextField/SyTextField.vue +31 -4
- package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +1 -1
- package/src/components/DatePicker/CalendarMode/DatePicker.vue +17 -14
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +1 -1
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +8 -7
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +1 -1
- package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.stories.ts +1 -1
- package/src/components/DatePicker/DateTextInput/DateTextInput.vue +57 -23
- package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +1 -1
- package/src/components/DatePicker/composables/useDatePickerState.ts +33 -14
- package/src/components/DatePicker/composables/useDateRangeInput.ts +2 -1
- package/src/components/DatePicker/composables/useDateSelection.ts +2 -1
- package/src/components/DatePicker/composables/useDateTextField.ts +2 -2
- package/src/components/DatePicker/composables/useInputBlurHandler.ts +2 -2
- package/src/components/DatePicker/types.ts +1 -2
- package/src/components/DialogBox/DialogBox.stories.ts +8 -8
- package/src/components/DialogBox/accessibilite/Accessibility.mdx +86 -22
- package/src/components/FilterSideBar/FilterSideBar.vue +2 -1
- package/src/components/LangBtn/LangBtn.vue +2 -1
- package/src/components/NotificationBar/Notification/Notification.vue +2 -2
- package/src/components/PaginatedTable/PaginatedTable.vue +1 -1
- package/src/components/PaginatedTable/Pagination.vue +1 -1
- package/src/components/PasswordField/PasswordField.vue +7 -3
- package/src/components/PhoneField/PhoneField.vue +4 -2
- package/src/components/RangeField/RangeSlider/RangeSlider.vue +11 -18
- package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +32 -48
- package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +5 -0
- package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +48 -53
- package/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.ts +2 -1
- package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +40 -13
- package/src/components/RatingPicker/RatingPicker.stories.ts +65 -88
- package/src/components/RatingPicker/RatingPicker.vue +71 -15
- package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +28 -37
- package/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.ts +1 -1
- package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +5 -0
- package/src/components/RatingPicker/accessibilite/Accessibility.mdx +137 -9
- package/src/components/RatingPicker/tests/RatingPicker.a11y.spect.ts +123 -0
- package/src/components/RatingPicker/tests/RatingPicker.spec.ts +3 -2
- package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +40 -11
- package/src/components/RatingPicker/useRatingFocus.ts +97 -0
- package/src/components/SyTextArea/SyTextArea.vue +32 -1
- package/src/components/Tables/SyServerTable/SyServerTable.vue +1 -1
- package/src/components/Tables/SyTable/SyTable.vue +1 -1
- package/src/components/Tables/common/SyTableFilter.vue +4 -4
- package/src/components/Tables/common/SyTablePagination.vue +1 -0
- package/src/components/Tables/common/TableHeader.vue +1 -1
- package/src/components/Tables/common/filters/DateFilter.vue +2 -2
- package/src/composables/date/tests/useDateFormatDayjs.spec.ts +81 -0
- package/src/composables/date/tests/{useDateInitialization.spec.ts → useDateInitializationDayjs.spec.ts} +39 -3
- package/src/composables/date/useDateInitializationDayjs.ts +4 -1
- package/src/composables/unifyValidation/documentationValidationProps.ts +7 -7
- package/src/composables/unifyValidation/tests/useCustomValidation.spec.ts +2 -1
- package/src/composables/unifyValidation/tests/useValidation.spec.ts +22 -0
- package/src/composables/unifyValidation/useCustomValidation.ts +16 -4
- package/src/composables/unifyValidation/useValidation.ts +46 -15
- package/src/composables/unifyValidation/useVuetifyValidation.ts +2 -2
- package/src/composables/useFormFieldErrorHandling.ts +4 -1
- package/src/composables/validation/tests/useValidation.spec.ts +2 -2
- package/src/composables/validation/useValidation.ts +15 -3
- package/src/composantsVuetify/VCard/VCard.mdx +59 -0
- package/src/composantsVuetify/VCard/v-card.stories.ts +279 -0
- package/src/designTokens/tokens/amelipro/apColors2026.ts +1 -1
- package/src/designTokens/tokens/amelipro/apLightTheme.ts +3 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +3 -0
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +61 -91
- package/src/stories/Accessibilite/AuditDesignSystem.mdx +5 -8
- package/src/stories/Accessibilite/AuditEtContreAudit/Exemptions-derogations.mdx +1 -1
- package/src/stories/Accessibilite/AuditEtContreAudit/Introduction.mdx +11 -8
- package/src/stories/Accessibilite/AuditEtContreAudit/RGAA.mdx +6 -7
- package/src/stories/Accessibilite/Introduction.mdx +30 -30
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +168 -78
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +13 -6
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +66 -45
- package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +23 -49
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru/FauxPositifs.stories.ts +6 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru/Utilisation.mdx +7 -19
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +18 -20
- package/src/stories/Components/Components.stories.ts +52 -3
- package/dist/AutocompleteFilter-Df9i5mAl.cjs +0 -1
- package/dist/DateFilter-BJD6FMev.cjs +0 -1
- package/dist/NumberFilter-DGCzCXzI.cjs +0 -1
- package/dist/PeriodFilter-DO_ecTZW.cjs +0 -1
- package/dist/SelectFilter-CGwcKWLm.cjs +0 -1
- package/dist/TextFilter-B8nf7xoK.cjs +0 -1
- package/dist/apLightTheme-CEK4iY3f.cjs +0 -1
- package/dist/composables/date/useDateFormat.d.ts +0 -26
- package/dist/composables/date/useDateInitialization.d.ts +0 -18
- package/dist/design-system-v3.umd.cjs +0 -1
- package/dist/main-ByDPHpae.cjs +0 -1067
- package/dist/tooth-11-D3sLWv2n.cjs +0 -1
- package/dist/tooth-12-CXrLuH03.cjs +0 -1
- package/dist/tooth-13-BSfo5fpT.cjs +0 -1
- package/dist/tooth-14-DMzulx0h.cjs +0 -1
- package/dist/tooth-15-BKRFVi-9.cjs +0 -1
- package/dist/tooth-16-CpuxAbuM.cjs +0 -1
- package/dist/tooth-17-BPoahUdg.cjs +0 -1
- package/dist/tooth-18-DhHJz8sy.cjs +0 -1
- package/dist/tooth-21-Dgd5hn_X.cjs +0 -1
- package/dist/tooth-22-C2Tn19sB.cjs +0 -1
- package/dist/tooth-23-C9uaaSGb.cjs +0 -1
- package/dist/tooth-24-BrK9UGpf.cjs +0 -1
- package/dist/tooth-25-CE_EfGNp.cjs +0 -1
- package/dist/tooth-26-Ctv4i9Fy.cjs +0 -1
- package/dist/tooth-27-C5J7JkWM.cjs +0 -1
- package/dist/tooth-28-Z9oWqjo0.cjs +0 -1
- package/dist/tooth-31-BrYqmkTi.cjs +0 -1
- package/dist/tooth-32-BNNR0oCZ.cjs +0 -1
- package/dist/tooth-33-DuxvqO2J.cjs +0 -1
- package/dist/tooth-34-BCSCXMB6.cjs +0 -1
- package/dist/tooth-35-BLUXkX88.cjs +0 -1
- package/dist/tooth-36-IrKHYqlA.cjs +0 -1
- package/dist/tooth-37-BYqpdMwo.cjs +0 -1
- package/dist/tooth-38-B_eNXXdu.cjs +0 -1
- package/dist/tooth-41-Ddva4Ot8.cjs +0 -1
- package/dist/tooth-42-szcDqlM0.cjs +0 -1
- package/dist/tooth-43-B3ka6rQm.cjs +0 -1
- package/dist/tooth-44-CazyQucj.cjs +0 -1
- package/dist/tooth-45-B4HQtc8n.cjs +0 -1
- package/dist/tooth-46-BPM40gbG.cjs +0 -1
- package/dist/tooth-47-Dvr20dlh.cjs +0 -1
- package/dist/tooth-48-Bd8ljGsF.cjs +0 -1
- package/dist/tooth-51-OBpwCOF3.cjs +0 -1
- package/dist/tooth-52-aKxyHcmq.cjs +0 -1
- package/dist/tooth-53-vCwJjTOc.cjs +0 -1
- package/dist/tooth-54-DsWu2iFy.cjs +0 -1
- package/dist/tooth-55-BxC1X2Dn.cjs +0 -1
- package/dist/tooth-61-BbLvxMQi.cjs +0 -1
- package/dist/tooth-62-CmTkWczP.cjs +0 -1
- package/dist/tooth-63-DI7l_2qI.cjs +0 -1
- package/dist/tooth-64-B21sOsJh.cjs +0 -1
- package/dist/tooth-65-D2ZC2VEr.cjs +0 -1
- package/dist/tooth-71-D473PPO5.cjs +0 -1
- package/dist/tooth-72-Drh1wnNu.cjs +0 -1
- package/dist/tooth-73-DzlwYI23.cjs +0 -1
- package/dist/tooth-74-8aGvcZPg.cjs +0 -1
- package/dist/tooth-75-BFK7At_r.cjs +0 -1
- package/dist/tooth-81-BZmR-I0M.cjs +0 -1
- package/dist/tooth-82-euVfUUZV.cjs +0 -1
- package/dist/tooth-83-KV010j64.cjs +0 -1
- package/dist/tooth-84-BBg1RjhZ.cjs +0 -1
- package/dist/tooth-85-Cr-kc1wM.cjs +0 -1
- package/dist/vuetifyConfig.umd.cjs +0 -1
- package/src/composables/date/tests/useDateFormat.spec.ts +0 -67
- package/src/composables/date/useDateFormat.ts +0 -110
- package/src/composables/date/useDateInitialization.ts +0 -92
|
@@ -121,11 +121,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
121
121
|
useCombinedMode?: boolean;
|
|
122
122
|
width?: string;
|
|
123
123
|
}> & Readonly<{
|
|
124
|
-
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
124
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
125
125
|
onBlur?: (() => any) | undefined;
|
|
126
126
|
onFocus?: (() => any) | undefined;
|
|
127
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
128
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
127
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
128
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
129
129
|
onClosed?: (() => any) | undefined;
|
|
130
130
|
}>, {
|
|
131
131
|
validateOnSubmit: () => Promise<any>;
|
|
@@ -139,11 +139,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
139
139
|
updateSelectedDates: (input: Date | Date[] | string | string[] | null | undefined) => void;
|
|
140
140
|
handleSelectToday: () => void;
|
|
141
141
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
142
|
-
input: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
142
|
+
input: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
143
143
|
blur: () => any;
|
|
144
144
|
focus: () => any;
|
|
145
|
-
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
146
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
145
|
+
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
146
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
147
147
|
closed: () => any;
|
|
148
148
|
}, import('vue').PublicProps, {
|
|
149
149
|
title: string | false;
|
|
@@ -213,7 +213,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
213
213
|
isOutlined?: boolean;
|
|
214
214
|
isValidateOnBlur?: boolean;
|
|
215
215
|
label: string;
|
|
216
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
216
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
217
217
|
noIcon?: boolean;
|
|
218
218
|
persistentHint?: boolean;
|
|
219
219
|
placeholder?: string;
|
|
@@ -225,8 +225,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
225
225
|
onInput?: ((value: string) => any) | undefined;
|
|
226
226
|
onBlur?: (() => any) | undefined;
|
|
227
227
|
onFocus?: (() => any) | undefined;
|
|
228
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
229
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
228
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
229
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
230
230
|
}>, {
|
|
231
231
|
validateOnSubmit: () => Promise<boolean>;
|
|
232
232
|
reset: () => void;
|
|
@@ -236,15 +236,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
236
236
|
input: (value: string) => any;
|
|
237
237
|
blur: () => any;
|
|
238
238
|
focus: () => any;
|
|
239
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
240
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
239
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
240
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
241
241
|
}, import('vue').PublicProps, {
|
|
242
242
|
title: string | false;
|
|
243
243
|
disabled: boolean;
|
|
244
244
|
placeholder: string;
|
|
245
245
|
density: "default" | "comfortable" | "compact";
|
|
246
246
|
readonly: boolean;
|
|
247
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
247
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
248
248
|
bgColor: string;
|
|
249
249
|
required: boolean;
|
|
250
250
|
showSuccessMessages: boolean;
|
|
@@ -281,7 +281,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
281
281
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
282
282
|
readonly isClearable?: boolean | undefined;
|
|
283
283
|
readonly showDivider?: boolean | undefined;
|
|
284
|
-
readonly label
|
|
284
|
+
readonly label?: string | undefined;
|
|
285
285
|
readonly readonly?: boolean | undefined;
|
|
286
286
|
readonly isActive?: boolean | undefined;
|
|
287
287
|
readonly baseColor?: string | undefined;
|
|
@@ -2133,7 +2133,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2133
2133
|
isOutlined?: boolean;
|
|
2134
2134
|
isValidateOnBlur?: boolean;
|
|
2135
2135
|
label: string;
|
|
2136
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
2136
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
2137
2137
|
noIcon?: boolean;
|
|
2138
2138
|
persistentHint?: boolean;
|
|
2139
2139
|
placeholder?: string;
|
|
@@ -2145,8 +2145,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2145
2145
|
onInput?: ((value: string) => any) | undefined;
|
|
2146
2146
|
onBlur?: (() => any) | undefined;
|
|
2147
2147
|
onFocus?: (() => any) | undefined;
|
|
2148
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2149
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2148
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2149
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2150
2150
|
}>, {
|
|
2151
2151
|
validateOnSubmit: () => Promise<boolean>;
|
|
2152
2152
|
reset: () => void;
|
|
@@ -2158,7 +2158,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2158
2158
|
placeholder: string;
|
|
2159
2159
|
density: "default" | "comfortable" | "compact";
|
|
2160
2160
|
readonly: boolean;
|
|
2161
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
2161
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
2162
2162
|
bgColor: string;
|
|
2163
2163
|
required: boolean;
|
|
2164
2164
|
showSuccessMessages: boolean;
|
|
@@ -2230,8 +2230,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2230
2230
|
onInput?: ((value: string) => any) | undefined;
|
|
2231
2231
|
onBlur?: (() => any) | undefined;
|
|
2232
2232
|
onFocus?: (() => any) | undefined;
|
|
2233
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2234
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2233
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2234
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2235
2235
|
onClosed?: (() => any) | undefined;
|
|
2236
2236
|
}>, {
|
|
2237
2237
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -2260,15 +2260,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2260
2260
|
message: string;
|
|
2261
2261
|
};
|
|
2262
2262
|
displayFormattedDate: import('vue').Ref<string, string>;
|
|
2263
|
-
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
2263
|
+
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => void;
|
|
2264
2264
|
resetViewMode: () => void;
|
|
2265
2265
|
reset: () => void;
|
|
2266
2266
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2267
2267
|
input: (value: string) => any;
|
|
2268
2268
|
blur: () => any;
|
|
2269
2269
|
focus: () => any;
|
|
2270
|
-
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
2271
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
2270
|
+
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
2271
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
2272
2272
|
closed: () => any;
|
|
2273
2273
|
}, import('vue').PublicProps, {
|
|
2274
2274
|
title: string | false;
|
|
@@ -2337,7 +2337,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2337
2337
|
isOutlined?: boolean;
|
|
2338
2338
|
isValidateOnBlur?: boolean;
|
|
2339
2339
|
label: string;
|
|
2340
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
2340
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
2341
2341
|
noIcon?: boolean;
|
|
2342
2342
|
persistentHint?: boolean;
|
|
2343
2343
|
placeholder?: string;
|
|
@@ -2349,8 +2349,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2349
2349
|
onInput?: ((value: string) => any) | undefined;
|
|
2350
2350
|
onBlur?: (() => any) | undefined;
|
|
2351
2351
|
onFocus?: (() => any) | undefined;
|
|
2352
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2353
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
2352
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2353
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
2354
2354
|
}>, {
|
|
2355
2355
|
validateOnSubmit: () => Promise<boolean>;
|
|
2356
2356
|
reset: () => void;
|
|
@@ -2360,15 +2360,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2360
2360
|
input: (value: string) => any;
|
|
2361
2361
|
blur: () => any;
|
|
2362
2362
|
focus: () => any;
|
|
2363
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
2364
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
2363
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
2364
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
2365
2365
|
}, import('vue').PublicProps, {
|
|
2366
2366
|
title: string | false;
|
|
2367
2367
|
disabled: boolean;
|
|
2368
2368
|
placeholder: string;
|
|
2369
2369
|
density: "default" | "comfortable" | "compact";
|
|
2370
2370
|
readonly: boolean;
|
|
2371
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
2371
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
2372
2372
|
bgColor: string;
|
|
2373
2373
|
required: boolean;
|
|
2374
2374
|
showSuccessMessages: boolean;
|
|
@@ -2405,7 +2405,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2405
2405
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
2406
2406
|
readonly isClearable?: boolean | undefined;
|
|
2407
2407
|
readonly showDivider?: boolean | undefined;
|
|
2408
|
-
readonly label
|
|
2408
|
+
readonly label?: string | undefined;
|
|
2409
2409
|
readonly readonly?: boolean | undefined;
|
|
2410
2410
|
readonly isActive?: boolean | undefined;
|
|
2411
2411
|
readonly baseColor?: string | undefined;
|
|
@@ -4257,7 +4257,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4257
4257
|
isOutlined?: boolean;
|
|
4258
4258
|
isValidateOnBlur?: boolean;
|
|
4259
4259
|
label: string;
|
|
4260
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
4260
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
4261
4261
|
noIcon?: boolean;
|
|
4262
4262
|
persistentHint?: boolean;
|
|
4263
4263
|
placeholder?: string;
|
|
@@ -4269,8 +4269,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4269
4269
|
onInput?: ((value: string) => any) | undefined;
|
|
4270
4270
|
onBlur?: (() => any) | undefined;
|
|
4271
4271
|
onFocus?: (() => any) | undefined;
|
|
4272
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
4273
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
4272
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
4273
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
4274
4274
|
}>, {
|
|
4275
4275
|
validateOnSubmit: () => Promise<boolean>;
|
|
4276
4276
|
reset: () => void;
|
|
@@ -4282,7 +4282,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4282
4282
|
placeholder: string;
|
|
4283
4283
|
density: "default" | "comfortable" | "compact";
|
|
4284
4284
|
readonly: boolean;
|
|
4285
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
4285
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
4286
4286
|
bgColor: string;
|
|
4287
4287
|
required: boolean;
|
|
4288
4288
|
showSuccessMessages: boolean;
|
|
@@ -4323,7 +4323,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4323
4323
|
isOutlined?: boolean;
|
|
4324
4324
|
isValidateOnBlur?: boolean;
|
|
4325
4325
|
label: string;
|
|
4326
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
4326
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
4327
4327
|
noIcon?: boolean;
|
|
4328
4328
|
persistentHint?: boolean;
|
|
4329
4329
|
placeholder?: string;
|
|
@@ -4335,8 +4335,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4335
4335
|
onInput?: ((value: string) => any) | undefined;
|
|
4336
4336
|
onBlur?: (() => any) | undefined;
|
|
4337
4337
|
onFocus?: (() => any) | undefined;
|
|
4338
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
4339
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
4338
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
4339
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
4340
4340
|
}>, {
|
|
4341
4341
|
validateOnSubmit: () => Promise<boolean>;
|
|
4342
4342
|
reset: () => void;
|
|
@@ -4346,15 +4346,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4346
4346
|
input: (value: string) => any;
|
|
4347
4347
|
blur: () => any;
|
|
4348
4348
|
focus: () => any;
|
|
4349
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
4350
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
4349
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
4350
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
4351
4351
|
}, import('vue').PublicProps, {
|
|
4352
4352
|
title: string | false;
|
|
4353
4353
|
disabled: boolean;
|
|
4354
4354
|
placeholder: string;
|
|
4355
4355
|
density: "default" | "comfortable" | "compact";
|
|
4356
4356
|
readonly: boolean;
|
|
4357
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
4357
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
4358
4358
|
bgColor: string;
|
|
4359
4359
|
required: boolean;
|
|
4360
4360
|
showSuccessMessages: boolean;
|
|
@@ -4391,7 +4391,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4391
4391
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
4392
4392
|
readonly isClearable?: boolean | undefined;
|
|
4393
4393
|
readonly showDivider?: boolean | undefined;
|
|
4394
|
-
readonly label
|
|
4394
|
+
readonly label?: string | undefined;
|
|
4395
4395
|
readonly readonly?: boolean | undefined;
|
|
4396
4396
|
readonly isActive?: boolean | undefined;
|
|
4397
4397
|
readonly baseColor?: string | undefined;
|
|
@@ -6243,7 +6243,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6243
6243
|
isOutlined?: boolean;
|
|
6244
6244
|
isValidateOnBlur?: boolean;
|
|
6245
6245
|
label: string;
|
|
6246
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
6246
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
6247
6247
|
noIcon?: boolean;
|
|
6248
6248
|
persistentHint?: boolean;
|
|
6249
6249
|
placeholder?: string;
|
|
@@ -6255,8 +6255,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6255
6255
|
onInput?: ((value: string) => any) | undefined;
|
|
6256
6256
|
onBlur?: (() => any) | undefined;
|
|
6257
6257
|
onFocus?: (() => any) | undefined;
|
|
6258
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
6259
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
6258
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
6259
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
6260
6260
|
}>, {
|
|
6261
6261
|
validateOnSubmit: () => Promise<boolean>;
|
|
6262
6262
|
reset: () => void;
|
|
@@ -6268,7 +6268,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6268
6268
|
placeholder: string;
|
|
6269
6269
|
density: "default" | "comfortable" | "compact";
|
|
6270
6270
|
readonly: boolean;
|
|
6271
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
6271
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
6272
6272
|
bgColor: string;
|
|
6273
6273
|
required: boolean;
|
|
6274
6274
|
showSuccessMessages: boolean;
|
|
@@ -6788,8 +6788,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6788
6788
|
onInput?: ((value: string) => any) | undefined;
|
|
6789
6789
|
onBlur?: (() => any) | undefined;
|
|
6790
6790
|
onFocus?: (() => any) | undefined;
|
|
6791
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
6792
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
6791
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
6792
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
6793
6793
|
onClosed?: (() => any) | undefined;
|
|
6794
6794
|
}>, {
|
|
6795
6795
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -6818,7 +6818,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6818
6818
|
message: string;
|
|
6819
6819
|
};
|
|
6820
6820
|
displayFormattedDate: import('vue').Ref<string, string>;
|
|
6821
|
-
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
6821
|
+
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => void;
|
|
6822
6822
|
resetViewMode: () => void;
|
|
6823
6823
|
reset: () => void;
|
|
6824
6824
|
}, {}, {}, {}, {
|
|
@@ -6884,7 +6884,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6884
6884
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
6885
6885
|
readonly isClearable?: boolean | undefined;
|
|
6886
6886
|
readonly showDivider?: boolean | undefined;
|
|
6887
|
-
readonly label
|
|
6887
|
+
readonly label?: string | undefined;
|
|
6888
6888
|
readonly readonly?: boolean | undefined;
|
|
6889
6889
|
readonly isActive?: boolean | undefined;
|
|
6890
6890
|
readonly baseColor?: string | undefined;
|
|
@@ -9208,11 +9208,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9208
9208
|
useCombinedMode?: boolean;
|
|
9209
9209
|
width?: string;
|
|
9210
9210
|
}> & Readonly<{
|
|
9211
|
-
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9211
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9212
9212
|
onBlur?: (() => any) | undefined;
|
|
9213
9213
|
onFocus?: (() => any) | undefined;
|
|
9214
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9215
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9214
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9215
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9216
9216
|
onClosed?: (() => any) | undefined;
|
|
9217
9217
|
}>, {
|
|
9218
9218
|
validateOnSubmit: () => Promise<any>;
|
|
@@ -9324,11 +9324,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9324
9324
|
useCombinedMode?: boolean;
|
|
9325
9325
|
width?: string;
|
|
9326
9326
|
}> & Readonly<{
|
|
9327
|
-
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9327
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9328
9328
|
onBlur?: (() => any) | undefined;
|
|
9329
9329
|
onFocus?: (() => any) | undefined;
|
|
9330
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9331
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9330
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9331
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9332
9332
|
onClosed?: (() => any) | undefined;
|
|
9333
9333
|
}>, {
|
|
9334
9334
|
validateOnSubmit: () => Promise<any>;
|
|
@@ -9342,11 +9342,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9342
9342
|
updateSelectedDates: (input: Date | Date[] | string | string[] | null | undefined) => void;
|
|
9343
9343
|
handleSelectToday: () => void;
|
|
9344
9344
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9345
|
-
input: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
9345
|
+
input: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
9346
9346
|
blur: () => any;
|
|
9347
9347
|
focus: () => any;
|
|
9348
|
-
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
9349
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
9348
|
+
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
9349
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
9350
9350
|
closed: () => any;
|
|
9351
9351
|
}, import('vue').PublicProps, {
|
|
9352
9352
|
title: string | false;
|
|
@@ -9416,7 +9416,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9416
9416
|
isOutlined?: boolean;
|
|
9417
9417
|
isValidateOnBlur?: boolean;
|
|
9418
9418
|
label: string;
|
|
9419
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
9419
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
9420
9420
|
noIcon?: boolean;
|
|
9421
9421
|
persistentHint?: boolean;
|
|
9422
9422
|
placeholder?: string;
|
|
@@ -9428,8 +9428,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9428
9428
|
onInput?: ((value: string) => any) | undefined;
|
|
9429
9429
|
onBlur?: (() => any) | undefined;
|
|
9430
9430
|
onFocus?: (() => any) | undefined;
|
|
9431
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9432
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
9431
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9432
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
9433
9433
|
}>, {
|
|
9434
9434
|
validateOnSubmit: () => Promise<boolean>;
|
|
9435
9435
|
reset: () => void;
|
|
@@ -9439,15 +9439,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9439
9439
|
input: (value: string) => any;
|
|
9440
9440
|
blur: () => any;
|
|
9441
9441
|
focus: () => any;
|
|
9442
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
9443
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
9442
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
9443
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
9444
9444
|
}, import('vue').PublicProps, {
|
|
9445
9445
|
title: string | false;
|
|
9446
9446
|
disabled: boolean;
|
|
9447
9447
|
placeholder: string;
|
|
9448
9448
|
density: "default" | "comfortable" | "compact";
|
|
9449
9449
|
readonly: boolean;
|
|
9450
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
9450
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
9451
9451
|
bgColor: string;
|
|
9452
9452
|
required: boolean;
|
|
9453
9453
|
showSuccessMessages: boolean;
|
|
@@ -9484,7 +9484,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9484
9484
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
9485
9485
|
readonly isClearable?: boolean | undefined;
|
|
9486
9486
|
readonly showDivider?: boolean | undefined;
|
|
9487
|
-
readonly label
|
|
9487
|
+
readonly label?: string | undefined;
|
|
9488
9488
|
readonly readonly?: boolean | undefined;
|
|
9489
9489
|
readonly isActive?: boolean | undefined;
|
|
9490
9490
|
readonly baseColor?: string | undefined;
|
|
@@ -11336,7 +11336,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11336
11336
|
isOutlined?: boolean;
|
|
11337
11337
|
isValidateOnBlur?: boolean;
|
|
11338
11338
|
label: string;
|
|
11339
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
11339
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
11340
11340
|
noIcon?: boolean;
|
|
11341
11341
|
persistentHint?: boolean;
|
|
11342
11342
|
placeholder?: string;
|
|
@@ -11348,8 +11348,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11348
11348
|
onInput?: ((value: string) => any) | undefined;
|
|
11349
11349
|
onBlur?: (() => any) | undefined;
|
|
11350
11350
|
onFocus?: (() => any) | undefined;
|
|
11351
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11352
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11351
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11352
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11353
11353
|
}>, {
|
|
11354
11354
|
validateOnSubmit: () => Promise<boolean>;
|
|
11355
11355
|
reset: () => void;
|
|
@@ -11361,7 +11361,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11361
11361
|
placeholder: string;
|
|
11362
11362
|
density: "default" | "comfortable" | "compact";
|
|
11363
11363
|
readonly: boolean;
|
|
11364
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
11364
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
11365
11365
|
bgColor: string;
|
|
11366
11366
|
required: boolean;
|
|
11367
11367
|
showSuccessMessages: boolean;
|
|
@@ -11433,8 +11433,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11433
11433
|
onInput?: ((value: string) => any) | undefined;
|
|
11434
11434
|
onBlur?: (() => any) | undefined;
|
|
11435
11435
|
onFocus?: (() => any) | undefined;
|
|
11436
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11437
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11436
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11437
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11438
11438
|
onClosed?: (() => any) | undefined;
|
|
11439
11439
|
}>, {
|
|
11440
11440
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -11463,15 +11463,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11463
11463
|
message: string;
|
|
11464
11464
|
};
|
|
11465
11465
|
displayFormattedDate: import('vue').Ref<string, string>;
|
|
11466
|
-
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
11466
|
+
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => void;
|
|
11467
11467
|
resetViewMode: () => void;
|
|
11468
11468
|
reset: () => void;
|
|
11469
11469
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11470
11470
|
input: (value: string) => any;
|
|
11471
11471
|
blur: () => any;
|
|
11472
11472
|
focus: () => any;
|
|
11473
|
-
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
11474
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
11473
|
+
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
11474
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
11475
11475
|
closed: () => any;
|
|
11476
11476
|
}, import('vue').PublicProps, {
|
|
11477
11477
|
title: string | false;
|
|
@@ -11540,7 +11540,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11540
11540
|
isOutlined?: boolean;
|
|
11541
11541
|
isValidateOnBlur?: boolean;
|
|
11542
11542
|
label: string;
|
|
11543
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
11543
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
11544
11544
|
noIcon?: boolean;
|
|
11545
11545
|
persistentHint?: boolean;
|
|
11546
11546
|
placeholder?: string;
|
|
@@ -11552,8 +11552,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11552
11552
|
onInput?: ((value: string) => any) | undefined;
|
|
11553
11553
|
onBlur?: (() => any) | undefined;
|
|
11554
11554
|
onFocus?: (() => any) | undefined;
|
|
11555
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11556
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
11555
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11556
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
11557
11557
|
}>, {
|
|
11558
11558
|
validateOnSubmit: () => Promise<boolean>;
|
|
11559
11559
|
reset: () => void;
|
|
@@ -11563,15 +11563,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11563
11563
|
input: (value: string) => any;
|
|
11564
11564
|
blur: () => any;
|
|
11565
11565
|
focus: () => any;
|
|
11566
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
11567
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
11566
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
11567
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
11568
11568
|
}, import('vue').PublicProps, {
|
|
11569
11569
|
title: string | false;
|
|
11570
11570
|
disabled: boolean;
|
|
11571
11571
|
placeholder: string;
|
|
11572
11572
|
density: "default" | "comfortable" | "compact";
|
|
11573
11573
|
readonly: boolean;
|
|
11574
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
11574
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
11575
11575
|
bgColor: string;
|
|
11576
11576
|
required: boolean;
|
|
11577
11577
|
showSuccessMessages: boolean;
|
|
@@ -11608,7 +11608,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11608
11608
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
11609
11609
|
readonly isClearable?: boolean | undefined;
|
|
11610
11610
|
readonly showDivider?: boolean | undefined;
|
|
11611
|
-
readonly label
|
|
11611
|
+
readonly label?: string | undefined;
|
|
11612
11612
|
readonly readonly?: boolean | undefined;
|
|
11613
11613
|
readonly isActive?: boolean | undefined;
|
|
11614
11614
|
readonly baseColor?: string | undefined;
|
|
@@ -13460,7 +13460,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13460
13460
|
isOutlined?: boolean;
|
|
13461
13461
|
isValidateOnBlur?: boolean;
|
|
13462
13462
|
label: string;
|
|
13463
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
13463
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
13464
13464
|
noIcon?: boolean;
|
|
13465
13465
|
persistentHint?: boolean;
|
|
13466
13466
|
placeholder?: string;
|
|
@@ -13472,8 +13472,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13472
13472
|
onInput?: ((value: string) => any) | undefined;
|
|
13473
13473
|
onBlur?: (() => any) | undefined;
|
|
13474
13474
|
onFocus?: (() => any) | undefined;
|
|
13475
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
13476
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
13475
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
13476
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
13477
13477
|
}>, {
|
|
13478
13478
|
validateOnSubmit: () => Promise<boolean>;
|
|
13479
13479
|
reset: () => void;
|
|
@@ -13485,7 +13485,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13485
13485
|
placeholder: string;
|
|
13486
13486
|
density: "default" | "comfortable" | "compact";
|
|
13487
13487
|
readonly: boolean;
|
|
13488
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
13488
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
13489
13489
|
bgColor: string;
|
|
13490
13490
|
required: boolean;
|
|
13491
13491
|
showSuccessMessages: boolean;
|
|
@@ -13526,7 +13526,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13526
13526
|
isOutlined?: boolean;
|
|
13527
13527
|
isValidateOnBlur?: boolean;
|
|
13528
13528
|
label: string;
|
|
13529
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
13529
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
13530
13530
|
noIcon?: boolean;
|
|
13531
13531
|
persistentHint?: boolean;
|
|
13532
13532
|
placeholder?: string;
|
|
@@ -13538,8 +13538,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13538
13538
|
onInput?: ((value: string) => any) | undefined;
|
|
13539
13539
|
onBlur?: (() => any) | undefined;
|
|
13540
13540
|
onFocus?: (() => any) | undefined;
|
|
13541
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
13542
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
13541
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
13542
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
13543
13543
|
}>, {
|
|
13544
13544
|
validateOnSubmit: () => Promise<boolean>;
|
|
13545
13545
|
reset: () => void;
|
|
@@ -13549,15 +13549,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13549
13549
|
input: (value: string) => any;
|
|
13550
13550
|
blur: () => any;
|
|
13551
13551
|
focus: () => any;
|
|
13552
|
-
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
13553
|
-
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').
|
|
13552
|
+
"update:model-value": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
13553
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any;
|
|
13554
13554
|
}, import('vue').PublicProps, {
|
|
13555
13555
|
title: string | false;
|
|
13556
13556
|
disabled: boolean;
|
|
13557
13557
|
placeholder: string;
|
|
13558
13558
|
density: "default" | "comfortable" | "compact";
|
|
13559
13559
|
readonly: boolean;
|
|
13560
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
13560
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
13561
13561
|
bgColor: string;
|
|
13562
13562
|
required: boolean;
|
|
13563
13563
|
showSuccessMessages: boolean;
|
|
@@ -13594,7 +13594,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13594
13594
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
13595
13595
|
readonly isClearable?: boolean | undefined;
|
|
13596
13596
|
readonly showDivider?: boolean | undefined;
|
|
13597
|
-
readonly label
|
|
13597
|
+
readonly label?: string | undefined;
|
|
13598
13598
|
readonly readonly?: boolean | undefined;
|
|
13599
13599
|
readonly isActive?: boolean | undefined;
|
|
13600
13600
|
readonly baseColor?: string | undefined;
|
|
@@ -15446,7 +15446,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15446
15446
|
isOutlined?: boolean;
|
|
15447
15447
|
isValidateOnBlur?: boolean;
|
|
15448
15448
|
label: string;
|
|
15449
|
-
modelValue?: import('../../composables/date/useDateInitializationDayjs').
|
|
15449
|
+
modelValue?: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
15450
15450
|
noIcon?: boolean;
|
|
15451
15451
|
persistentHint?: boolean;
|
|
15452
15452
|
placeholder?: string;
|
|
@@ -15458,8 +15458,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15458
15458
|
onInput?: ((value: string) => any) | undefined;
|
|
15459
15459
|
onBlur?: (() => any) | undefined;
|
|
15460
15460
|
onFocus?: (() => any) | undefined;
|
|
15461
|
-
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
15462
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
15461
|
+
"onUpdate:model-value"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
15462
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
15463
15463
|
}>, {
|
|
15464
15464
|
validateOnSubmit: () => Promise<boolean>;
|
|
15465
15465
|
reset: () => void;
|
|
@@ -15471,7 +15471,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15471
15471
|
placeholder: string;
|
|
15472
15472
|
density: "default" | "comfortable" | "compact";
|
|
15473
15473
|
readonly: boolean;
|
|
15474
|
-
modelValue: import('../../composables/date/useDateInitializationDayjs').
|
|
15474
|
+
modelValue: import('../../composables/date/useDateInitializationDayjs').DateModelValue;
|
|
15475
15475
|
bgColor: string;
|
|
15476
15476
|
required: boolean;
|
|
15477
15477
|
showSuccessMessages: boolean;
|
|
@@ -15991,8 +15991,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15991
15991
|
onInput?: ((value: string) => any) | undefined;
|
|
15992
15992
|
onBlur?: (() => any) | undefined;
|
|
15993
15993
|
onFocus?: (() => any) | undefined;
|
|
15994
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
15995
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
15994
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
15995
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
15996
15996
|
onClosed?: (() => any) | undefined;
|
|
15997
15997
|
}>, {
|
|
15998
15998
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -16021,7 +16021,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16021
16021
|
message: string;
|
|
16022
16022
|
};
|
|
16023
16023
|
displayFormattedDate: import('vue').Ref<string, string>;
|
|
16024
|
-
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').
|
|
16024
|
+
handleDateSelected: (value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => void;
|
|
16025
16025
|
resetViewMode: () => void;
|
|
16026
16026
|
reset: () => void;
|
|
16027
16027
|
}, {}, {}, {}, {
|
|
@@ -16087,7 +16087,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16087
16087
|
readonly color?: import('../../types/vuetifyTypes').ColorType | undefined;
|
|
16088
16088
|
readonly isClearable?: boolean | undefined;
|
|
16089
16089
|
readonly showDivider?: boolean | undefined;
|
|
16090
|
-
readonly label
|
|
16090
|
+
readonly label?: string | undefined;
|
|
16091
16091
|
readonly readonly?: boolean | undefined;
|
|
16092
16092
|
readonly isActive?: boolean | undefined;
|
|
16093
16093
|
readonly baseColor?: string | undefined;
|
|
@@ -18411,11 +18411,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
18411
18411
|
useCombinedMode?: boolean;
|
|
18412
18412
|
width?: string;
|
|
18413
18413
|
}> & Readonly<{
|
|
18414
|
-
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
18414
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
18415
18415
|
onBlur?: (() => any) | undefined;
|
|
18416
18416
|
onFocus?: (() => any) | undefined;
|
|
18417
|
-
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
18418
|
-
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').
|
|
18417
|
+
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
18418
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateModelValue) => any) | undefined;
|
|
18419
18419
|
onClosed?: (() => any) | undefined;
|
|
18420
18420
|
}>, {
|
|
18421
18421
|
validateOnSubmit: () => Promise<any>;
|