@cnamts/synapse 1.0.1 → 1.0.2
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/README.md +1 -1
- package/dist/{DateFilter-BmRuzQ9Z.js → DateFilter-YWOTbfeL.js} +1 -1
- package/dist/{NumberFilter-CnIPDHqx.js → NumberFilter-DMmMgALM.js} +1 -1
- package/dist/{PeriodFilter-CZwZ8CnQ.js → PeriodFilter-Bok5BHcn.js} +1 -1
- package/dist/SelectFilter-BKud2WhN.js +136 -0
- package/dist/{TextFilter-DTxZHJwX.js → TextFilter-DvMf2thH.js} +1 -1
- package/dist/components/Accordion/Accordion.d.ts +2 -1
- package/dist/components/Accordion/composables/useAccordionGroupCommunication.d.ts +5 -0
- package/dist/components/Accordion/composables/useAccordionKeyboardNavigation.d.ts +12 -0
- package/dist/components/Accordion/composables/useAccordionState.d.ts +13 -0
- package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +85 -0
- package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
- package/dist/components/Customs/SySelect/SySelect.d.ts +33 -13
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +2 -2
- package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +1585 -1452
- package/dist/components/DatePicker/DatePicker/DatePicker.d.ts +16 -2
- package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +3 -1
- package/dist/components/DatePicker/composables/index.d.ts +2 -0
- package/dist/components/DatePicker/composables/useAsteriskDisplay.d.ts +14 -0
- package/dist/components/DatePicker/composables/useDateAutoClamp.d.ts +16 -0
- package/dist/components/DatePicker/composables/useDateRangeInput.d.ts +1 -1
- package/dist/components/DatePicker/composables/useDisplayedDateString.d.ts +3 -0
- package/dist/components/DatePicker/composables/useInputBlurHandler.d.ts +1 -0
- package/dist/components/DatePicker/composables/useMonthButtonCustomization.d.ts +5 -2
- package/dist/components/NirField/NirField.d.ts +7 -3
- package/dist/components/NirField/nirValidation.d.ts +1 -1
- package/dist/components/PasswordField/PasswordField.d.ts +2 -0
- package/dist/components/PeriodField/PeriodField.d.ts +52 -8
- package/dist/components/PhoneField/PhoneField.d.ts +2 -2
- package/dist/components/RangeField/RangeField.d.ts +2 -0
- package/dist/components/SearchListField/SearchListField.d.ts +9 -0
- package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +14 -9
- package/dist/components/Tables/SyTable/SyTable.d.ts +12 -7
- package/dist/components/Tables/common/SyTablePagination.d.ts +1636 -0
- package/dist/components/Tables/common/TableHeader.d.ts +2 -20
- package/dist/components/Tables/common/filters/SelectFilter.d.ts +5 -5
- package/dist/components/Tables/common/filters/getFilterComponent.d.ts +1 -0
- package/dist/components/Tables/common/filters/locales.d.ts +4 -0
- package/dist/components/Tables/common/filters/logics/date.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/number.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/period.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/select.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/text.d.ts +1 -0
- package/dist/components/Tables/common/locales.d.ts +21 -0
- package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +267 -0
- package/dist/components/Tables/common/organizeColumns/sortHeaders.d.ts +2 -0
- package/dist/components/Tables/common/tableFilterUtils.d.ts +1 -0
- package/dist/components/Tables/common/tableStorageUtils.d.ts +41 -1
- package/dist/components/Tables/common/tableUtils.d.ts +42 -5
- package/dist/components/Tables/common/types.d.ts +19 -8
- package/dist/components/Tables/common/usePagination.d.ts +22 -0
- package/dist/components/Tables/common/useTableCheckbox.d.ts +20 -0
- package/dist/components/Tables/common/useTableHeaders.d.ts +76 -0
- package/dist/components/Tables/common/useTableItems.d.ts +24 -0
- package/dist/components/Tables/common/useTableOptions.d.ts +18 -0
- package/dist/components/ToolbarContainer/ToolbarContainer.d.ts +11 -0
- package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +9 -2
- package/dist/components/index.d.ts +8 -6
- package/dist/design-system-v3.js +58 -56
- package/dist/design-system-v3.umd.cjs +22 -22
- package/dist/main-Cx8qG7YR.js +16344 -0
- package/dist/stories/Accessibilite/Vuetify/VuetifyItems.d.ts +14 -2
- package/dist/stories/DesignTokens/StylesTypographiques.stories.new.d.ts +8 -0
- package/dist/stories/DesignTokens/TypographyDisplay.d.ts +28 -0
- package/dist/stories/DesignTokens/vue-shims.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/common/imgs/accessibility-svgrepo-com.svg +4 -0
- package/src/components/Accordion/Accessibilite/AccessibilityGuide.mdx +249 -0
- package/src/components/Accordion/Accordion.vue +48 -76
- package/src/components/Accordion/composables/__tests__/useAccordionGroupCommunication.spec.ts +146 -0
- package/src/components/Accordion/composables/__tests__/useAccordionKeyboardNavigation.spec.ts +209 -0
- package/src/components/Accordion/composables/__tests__/useAccordionState.spec.ts +144 -0
- package/src/components/Accordion/composables/useAccordionGroupCommunication.ts +52 -0
- package/src/components/Accordion/composables/useAccordionKeyboardNavigation.ts +111 -0
- package/src/components/Accordion/composables/useAccordionState.ts +59 -0
- package/src/components/Accordion/tests/__snapshots__/accordion.spec.ts.snap +3 -0
- package/src/components/Customs/SyCheckbox/Accessibilite.mdx +303 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.mdx +50 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +630 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.vue +326 -0
- package/src/components/Customs/SyCheckbox/tests/SyCheckbox.spec.ts +201 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +1 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.vue +8 -1
- package/src/components/Customs/SySelect/SySelect.stories.ts +160 -0
- package/src/components/Customs/SySelect/SySelect.vue +291 -32
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +230 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +3 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +19 -8
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +241 -31
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +305 -57
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.events.spec.ts +161 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +4 -2
- package/src/components/DatePicker/DatePicker/DatePicker.stories.ts +259 -137
- package/src/components/DatePicker/DatePicker/DatePicker.vue +153 -25
- package/src/components/DatePicker/DatePicker/tests/DatePicker.events.spec.ts +189 -0
- package/src/components/DatePicker/DatePicker/{DatePicker.spec.ts → tests/DatePicker.spec.ts} +1 -15
- package/src/components/DatePicker/DateTextInput/DateRange.stories.ts +24 -14
- package/src/components/DatePicker/DateTextInput/DateTextInput.events.spec.ts +148 -0
- package/src/components/DatePicker/DateTextInput/DateTextInput.spec.ts +3 -1
- package/src/components/DatePicker/DateTextInput/DateTextInput.vue +200 -5
- package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +241 -31
- package/src/components/DatePicker/composables/index.ts +2 -0
- package/src/components/DatePicker/composables/tests/useDateAutoClamp.spec.ts +190 -0
- package/src/components/DatePicker/composables/tests/useInputBlurHandler.spec.ts +182 -4
- package/src/components/DatePicker/composables/tests/useMonthButtonCustomization.spec.ts +105 -80
- package/src/components/DatePicker/composables/useAsteriskDisplay.ts +31 -0
- package/src/components/DatePicker/composables/useDateAutoClamp.ts +136 -0
- package/src/components/DatePicker/composables/useDateRangeInput.ts +21 -18
- package/src/components/DatePicker/composables/useDisplayedDateString.ts +13 -1
- package/src/components/DatePicker/composables/useInputBlurHandler.ts +84 -20
- package/src/components/DatePicker/composables/useMonthButtonCustomization.ts +149 -51
- package/src/components/DiacriticPicker/DiacriticPicker.stories.ts +10 -0
- package/src/components/ErrorPage/Accessibilite.stories.ts +8 -0
- package/src/components/ErrorPage/ErrorPage.vue +12 -6
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
- package/src/components/NirField/NirField.mdx +22 -9
- package/src/components/NirField/NirField.stories.ts +26 -2
- package/src/components/NirField/NirField.vue +209 -22
- package/src/components/NirField/nirValidation.ts +17 -3
- package/src/components/NirField/tests/NirField.spec.ts +2 -2
- package/src/components/NotFoundPage/Accessibilite.stories.ts +8 -0
- package/src/components/NotFoundPage/NotFoundPage.vue +2 -1
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +8 -6
- package/src/components/PaginatedTable/PaginatedTable.mdx +2 -0
- package/src/components/PasswordField/PasswordField.stories.ts +4 -0
- package/src/components/PasswordField/PasswordField.vue +3 -0
- package/src/components/PeriodField/PeriodField.vue +2 -0
- package/src/components/PhoneField/PhoneField.stories.ts +15 -15
- package/src/components/PhoneField/PhoneField.vue +1 -1
- package/src/components/RangeField/RangeField.stories.ts +9 -0
- package/src/components/RangeField/RangeField.vue +4 -0
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +12 -0
- package/src/components/SearchListField/SearchListField.vue +5 -0
- package/src/components/SyTextArea/SyTextArea.vue +3 -0
- package/src/components/SyTextArea/tests/SyTextArea.spec.ts +0 -1
- package/src/components/Tables/SyServerTable/FilterRules.stories.ts +632 -15
- package/src/components/Tables/SyServerTable/SyServerTable.mdx +15 -5
- package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +2844 -1377
- package/src/components/Tables/SyServerTable/SyServerTable.vue +155 -66
- package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +256 -4
- package/src/components/Tables/SyTable/FilterRules.stories.ts +183 -0
- package/src/components/Tables/SyTable/SyTable.mdx +14 -4
- package/src/components/Tables/SyTable/SyTable.stories.ts +1265 -477
- package/src/components/Tables/SyTable/SyTable.vue +152 -72
- package/src/components/Tables/SyTable/tests/SyTable.spec.ts +366 -4
- package/src/components/Tables/common/SyTableFilter.vue +3 -56
- package/src/components/Tables/common/SyTablePagination.vue +375 -0
- package/src/components/Tables/common/TableHeader.vue +10 -26
- package/src/components/Tables/common/filters/SelectFilter.vue +131 -22
- package/src/components/Tables/common/filters/getFilterComponent.ts +54 -0
- package/src/components/Tables/common/filters/locales.ts +4 -0
- package/src/components/Tables/common/filters/logics/date.ts +12 -0
- package/src/components/Tables/common/filters/logics/number.ts +48 -0
- package/src/components/Tables/common/filters/logics/period.ts +25 -0
- package/src/components/Tables/common/filters/logics/select.ts +27 -0
- package/src/components/Tables/common/filters/logics/tests/TextFilterLogic.spec.ts +177 -0
- package/src/components/Tables/common/filters/logics/text.ts +62 -0
- package/src/components/Tables/common/filters/tests/TextFilter.spec.ts +11 -11
- package/src/components/Tables/common/locales.ts +24 -0
- package/src/components/Tables/common/organizeColumns/OrganizeColumns.vue +269 -0
- package/src/components/Tables/common/organizeColumns/sortHeaders.ts +9 -0
- package/src/components/Tables/common/tableFilterUtils.ts +43 -295
- package/src/components/Tables/common/tableStorageUtils.ts +27 -2
- package/src/components/Tables/common/tableStyles.scss +26 -0
- package/src/components/Tables/common/tableUtils.ts +3 -16
- package/src/components/Tables/common/tests/SyTablePagination.spec.ts +170 -0
- package/src/components/Tables/common/tests/filterByRange.spec.ts +215 -0
- package/src/components/Tables/common/tests/tableFilterUtils.spec.ts +0 -14
- package/src/components/Tables/common/tests/tableUtils.spec.ts +7 -51
- package/src/components/Tables/common/types.ts +17 -6
- package/src/components/Tables/common/usePagination.ts +83 -0
- package/src/components/Tables/common/useTableCheckbox.ts +58 -0
- package/src/components/Tables/common/useTableHeaders.ts +88 -0
- package/src/components/Tables/common/useTableItems.ts +87 -0
- package/src/components/Tables/common/useTableOptions.ts +93 -0
- package/src/components/ToolbarContainer/ToolbarContainer.mdx +16 -0
- package/src/components/ToolbarContainer/ToolbarContainer.stories.ts +675 -0
- package/src/components/ToolbarContainer/ToolbarContainer.vue +128 -0
- package/src/components/ToolbarContainer/tests/ToolbarContainer.spec.ts +156 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +74 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +19 -17
- package/src/components/index.ts +8 -6
- package/src/stories/Accessibilite/Aculturation/AuditDesignSystem.mdx +293 -20
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +448 -54
- package/src/stories/Accessibilite/Audit/RGAA.mdx +231 -23
- package/src/stories/Accessibilite/Avancement/Avancement.mdx +591 -7
- package/src/stories/Accessibilite/Avancement/Avancement.stories.ts +139 -38
- package/src/stories/Accessibilite/Introduction.mdx +258 -18
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +221 -31
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +204 -22
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +537 -24
- package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +577 -70
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +382 -31
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +419 -81
- package/src/stories/Accessibilite/Vuetify/Vuetify.mdx +132 -6
- package/src/stories/Accessibilite/Vuetify/Vuetify.stories.ts +370 -146
- package/src/stories/Accessibilite/Vuetify/VuetifyItems.ts +35 -57
- package/src/stories/Demarrer/Accueil.stories.ts +20 -5
- package/src/stories/DesignTokens/StylesTypographiques.mdx +10 -9
- package/src/stories/DesignTokens/StylesTypographiques.stories.new.ts +397 -0
- package/src/stories/DesignTokens/StylesTypographiques.stories.ts +397 -0
- package/src/stories/DesignTokens/TypographyDisplay.vue +155 -0
- package/src/stories/DesignTokens/vue-shims.d.ts +6 -0
- package/src/stories/GuideDuDev/LesBreackingChanges.mdx +0 -2
- package/src/stories/GuideDuDev/MigrationDepuisBridge.mdx +1 -1
- package/src/stories/GuideDuDev/MigrationDepuisVue2.mdx +1 -1
- package/src/stories/GuideDuDev/PortailAgent.mdx +10 -0
- package/src/stories/GuideDuDev/PortailAgent.stories.ts +506 -0
- package/src/stories/GuideDuDev/Theme.mdx +41 -0
- package/dist/SelectFilter-Cj-GW2Cc.js +0 -97
- package/dist/main-WDqeoGM-.js +0 -14788
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +0 -886
- package/src/components/Tables/SyServerTable/tests/__snapshots__/SyServerTable.spec.ts.snap +0 -521
- package/src/components/Tables/SyTable/tests/__snapshots__/SyTable.spec.ts.snap +0 -521
- package/src/stories/DesignTokens/ThemePA.mdx +0 -35
|
@@ -35,12 +35,15 @@ type __VLS_Props = {
|
|
|
35
35
|
hideDetails?: boolean | 'auto';
|
|
36
36
|
displayWeekendDays?: boolean;
|
|
37
37
|
displayTodayButton?: boolean;
|
|
38
|
+
displayHolidayDays?: boolean;
|
|
38
39
|
useCombinedMode?: boolean;
|
|
39
40
|
textFieldActivator?: boolean;
|
|
41
|
+
displayAsterisk?: boolean;
|
|
40
42
|
period?: {
|
|
41
43
|
min?: string;
|
|
42
44
|
max?: string;
|
|
43
45
|
};
|
|
46
|
+
autoClamp?: boolean;
|
|
44
47
|
};
|
|
45
48
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
46
49
|
validateOnSubmit: () => any;
|
|
@@ -55,11 +58,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
55
58
|
"update:modelValue": (value: DateValue) => any;
|
|
56
59
|
blur: () => any;
|
|
57
60
|
focus: () => any;
|
|
61
|
+
input: (value: DateValue) => any;
|
|
62
|
+
"date-selected": (value: DateValue) => any;
|
|
58
63
|
closed: () => any;
|
|
59
64
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
60
65
|
"onUpdate:modelValue"?: ((value: DateValue) => any) | undefined;
|
|
61
66
|
onBlur?: (() => any) | undefined;
|
|
62
67
|
onFocus?: (() => any) | undefined;
|
|
68
|
+
onInput?: ((value: DateValue) => any) | undefined;
|
|
69
|
+
"onDate-selected"?: ((value: DateValue) => any) | undefined;
|
|
63
70
|
onClosed?: (() => any) | undefined;
|
|
64
71
|
}>, {
|
|
65
72
|
required: boolean;
|
|
@@ -71,6 +78,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
71
78
|
disabled: boolean;
|
|
72
79
|
placeholder: string;
|
|
73
80
|
width: string;
|
|
81
|
+
displayAsterisk: boolean;
|
|
74
82
|
noIcon: boolean;
|
|
75
83
|
customRules: {
|
|
76
84
|
type: string;
|
|
@@ -92,11 +100,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
92
100
|
displayIcon: boolean;
|
|
93
101
|
displayAppendIcon: boolean;
|
|
94
102
|
displayPrependIcon: boolean;
|
|
103
|
+
autoClamp: boolean;
|
|
95
104
|
isBirthDate: boolean;
|
|
96
105
|
birthDate: boolean;
|
|
97
106
|
showWeekNumber: boolean;
|
|
98
107
|
displayTodayButton: boolean;
|
|
99
108
|
displayWeekendDays: boolean;
|
|
109
|
+
displayHolidayDays: boolean;
|
|
100
110
|
period: {
|
|
101
111
|
min?: string | undefined;
|
|
102
112
|
max?: string | undefined;
|
|
@@ -123,6 +133,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
123
133
|
showSuccessMessages?: boolean | undefined;
|
|
124
134
|
bgColor?: string | undefined;
|
|
125
135
|
displayRange?: boolean | undefined;
|
|
136
|
+
autoClamp?: boolean | undefined;
|
|
126
137
|
}> & Readonly<{
|
|
127
138
|
onBlur?: (() => any) | undefined;
|
|
128
139
|
onFocus?: (() => any) | undefined;
|
|
@@ -159,6 +170,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
159
170
|
displayIcon: boolean;
|
|
160
171
|
displayAppendIcon: boolean;
|
|
161
172
|
displayPrependIcon: boolean;
|
|
173
|
+
autoClamp: boolean;
|
|
162
174
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
163
175
|
inputRef: ({
|
|
164
176
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -1606,7 +1618,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1606
1618
|
disabled: boolean;
|
|
1607
1619
|
readonly: boolean | null;
|
|
1608
1620
|
messages: string | readonly string[];
|
|
1609
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
1621
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
1610
1622
|
focused: boolean;
|
|
1611
1623
|
errorMessages: string | readonly string[] | null;
|
|
1612
1624
|
maxErrors: string | number;
|
|
@@ -1997,6 +2009,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1997
2009
|
showSuccessMessages?: boolean | undefined;
|
|
1998
2010
|
bgColor?: string | undefined;
|
|
1999
2011
|
displayRange?: boolean | undefined;
|
|
2012
|
+
autoClamp?: boolean | undefined;
|
|
2000
2013
|
}> & Readonly<{
|
|
2001
2014
|
onBlur?: (() => any) | undefined;
|
|
2002
2015
|
onFocus?: (() => any) | undefined;
|
|
@@ -2027,6 +2040,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2027
2040
|
displayIcon: boolean;
|
|
2028
2041
|
displayAppendIcon: boolean;
|
|
2029
2042
|
displayPrependIcon: boolean;
|
|
2043
|
+
autoClamp: boolean;
|
|
2030
2044
|
}> | null;
|
|
2031
2045
|
dateCalendarTextInputRef: ({
|
|
2032
2046
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3474,7 +3488,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3474
3488
|
disabled: boolean;
|
|
3475
3489
|
readonly: boolean | null;
|
|
3476
3490
|
messages: string | readonly string[];
|
|
3477
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
3491
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
3478
3492
|
focused: boolean;
|
|
3479
3493
|
errorMessages: string | readonly string[] | null;
|
|
3480
3494
|
maxErrors: string | number;
|
|
@@ -21,6 +21,7 @@ type __VLS_Props = {
|
|
|
21
21
|
showSuccessMessages?: boolean;
|
|
22
22
|
bgColor?: string;
|
|
23
23
|
displayRange?: boolean;
|
|
24
|
+
autoClamp?: boolean;
|
|
24
25
|
};
|
|
25
26
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
26
27
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -58,6 +59,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
58
59
|
displayIcon: boolean;
|
|
59
60
|
displayAppendIcon: boolean;
|
|
60
61
|
displayPrependIcon: boolean;
|
|
62
|
+
autoClamp: boolean;
|
|
61
63
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
62
64
|
inputRef: ({
|
|
63
65
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -1505,7 +1507,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1505
1507
|
disabled: boolean;
|
|
1506
1508
|
readonly: boolean | null;
|
|
1507
1509
|
messages: string | readonly string[];
|
|
1508
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
1510
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
1509
1511
|
focused: boolean;
|
|
1510
1512
|
errorMessages: string | readonly string[] | null;
|
|
1511
1513
|
maxErrors: string | number;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { useDateInputEditing } from './useDateInputEditing';
|
|
2
2
|
export { useDateRangeInput } from './useDateRangeInput';
|
|
3
|
+
export { useDateAutoClamp } from './useDateAutoClamp';
|
|
3
4
|
export { useDateSelection } from './useDateSelection';
|
|
4
5
|
export { useDateValidation } from './useDateValidation';
|
|
5
6
|
export { useDateFormatValidation } from './useDateFormatValidation';
|
|
@@ -13,3 +14,4 @@ export { useInputBlurHandler } from './useInputBlurHandler';
|
|
|
13
14
|
export { useTodayButton } from './useTodayButton';
|
|
14
15
|
export { useWeekendDays } from './useWeekendDays';
|
|
15
16
|
export { useMonthButtonCustomization } from './useMonthButtonCustomization';
|
|
17
|
+
export { useAsteriskDisplay } from './useAsteriskDisplay';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Composable pour gérer l'affichage d'un astérisque à côté du label
|
|
3
|
+
* @param props - Les propriétés du composant contenant displayAsterisk et required
|
|
4
|
+
* @param labelProp - Le nom de la propriété contenant le label (par défaut: 'label')
|
|
5
|
+
* @returns Un objet contenant isShouldDisplayAsterisk et labelWithAsterisk
|
|
6
|
+
*/
|
|
7
|
+
export declare const useAsteriskDisplay: (props: {
|
|
8
|
+
[key: string]: unknown;
|
|
9
|
+
displayAsterisk?: boolean | undefined;
|
|
10
|
+
required?: boolean | undefined;
|
|
11
|
+
}, labelProp?: string) => {
|
|
12
|
+
isShouldDisplayAsterisk: import('vue').ComputedRef<boolean | undefined>;
|
|
13
|
+
labelWithAsterisk: import('vue').ComputedRef<string | undefined>;
|
|
14
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Composable pour gérer l'auto-clamping des dates invalides
|
|
3
|
+
* Cette fonctionnalité permet de ramener automatiquement les dates invalides
|
|
4
|
+
* (comme le 29/02 sur une année non bissextile ou 33/12) au dernier jour valide du mois
|
|
5
|
+
*/
|
|
6
|
+
export declare const useDateAutoClamp: () => {
|
|
7
|
+
autoClampDate: (dateStr: string, format: string) => {
|
|
8
|
+
clampedDate: string;
|
|
9
|
+
adjusted: boolean;
|
|
10
|
+
};
|
|
11
|
+
clampDayToValidDate: (day: number, month: number, year: number) => {
|
|
12
|
+
day: number;
|
|
13
|
+
adjusted: boolean;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export default useDateAutoClamp;
|
|
@@ -11,7 +11,7 @@ export declare function useDateRangeInput(format: string, isRangeMode: boolean,
|
|
|
11
11
|
extractRangeParts: (value: string) => [string, string];
|
|
12
12
|
formatRangeForDisplay: (startDate: Date | null, endDate: Date | null) => string;
|
|
13
13
|
parseRangeInput: (value: string) => [Date | null, Date | null];
|
|
14
|
-
handleRangeInput: (inputValue: string, newValue: string, cursorPosition?: number) => {
|
|
14
|
+
handleRangeInput: (inputValue: string | unknown, newValue: string | unknown, cursorPosition?: number) => {
|
|
15
15
|
formattedValue: string;
|
|
16
16
|
dates: [Date | null, Date | null];
|
|
17
17
|
isComplete: boolean;
|
|
@@ -16,6 +16,7 @@ export declare const useInputBlurHandler: (options: {
|
|
|
16
16
|
isManualInputActive: Ref<boolean>;
|
|
17
17
|
isUpdatingFromInternal: Ref<boolean>;
|
|
18
18
|
selectedDates: Ref<DateObjectValue>;
|
|
19
|
+
errors?: Ref<string[], string[]> | undefined;
|
|
19
20
|
validateDateFormat: (dateStr: string) => {
|
|
20
21
|
isValid: boolean;
|
|
21
22
|
message: string;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
1
2
|
/**
|
|
2
3
|
* Composable pour personnaliser les boutons du mois et de l'année dans les composants DatePicker
|
|
3
4
|
* @param isPickerVisibleGetter - Fonction qui retourne l'état de visibilité du DatePicker
|
|
5
|
+
* @param monthName - Référence au nom du mois à utiliser
|
|
6
|
+
* @param yearName - Référence au nom de l'année à utiliser
|
|
4
7
|
*/
|
|
5
|
-
export declare function useMonthButtonCustomization(isPickerVisibleGetter: () => boolean): {
|
|
6
|
-
monthButtonText:
|
|
8
|
+
export declare function useMonthButtonCustomization(isPickerVisibleGetter: () => boolean, monthName?: Ref<string | null>, yearName?: Ref<string | null>): {
|
|
9
|
+
monthButtonText: Ref<string, string>;
|
|
7
10
|
customizeMonthButton: () => void;
|
|
8
11
|
setupMonthButtonObserver: () => void;
|
|
9
12
|
};
|
|
@@ -34,6 +34,8 @@ type __VLS_Props = {
|
|
|
34
34
|
persistentHint?: boolean;
|
|
35
35
|
persistentPlaceholder?: boolean;
|
|
36
36
|
disableErrorHandling?: boolean;
|
|
37
|
+
nirType?: 'simple' | 'complexe';
|
|
38
|
+
withoutFieldset?: boolean;
|
|
37
39
|
};
|
|
38
40
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
39
41
|
validateOnSubmit: () => Promise<boolean>;
|
|
@@ -118,6 +120,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
118
120
|
customNumberWarningRules: ValidationRule[];
|
|
119
121
|
customKeyWarningRules: ValidationRule[];
|
|
120
122
|
customRulesPrecedence: boolean;
|
|
123
|
+
nirType: "simple" | "complexe";
|
|
124
|
+
withoutFieldset: boolean;
|
|
121
125
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
122
126
|
numberField: ({
|
|
123
127
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -1565,7 +1569,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1565
1569
|
disabled: boolean;
|
|
1566
1570
|
readonly: boolean | null;
|
|
1567
1571
|
messages: string | readonly string[];
|
|
1568
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
1572
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
1569
1573
|
focused: boolean;
|
|
1570
1574
|
errorMessages: string | readonly string[] | null;
|
|
1571
1575
|
maxErrors: string | number;
|
|
@@ -3375,7 +3379,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3375
3379
|
disabled: boolean;
|
|
3376
3380
|
readonly: boolean | null;
|
|
3377
3381
|
messages: string | readonly string[];
|
|
3378
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
3382
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
3379
3383
|
focused: boolean;
|
|
3380
3384
|
errorMessages: string | readonly string[] | null;
|
|
3381
3385
|
maxErrors: string | number;
|
|
@@ -3739,5 +3743,5 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3739
3743
|
details?(_: {}): any;
|
|
3740
3744
|
};
|
|
3741
3745
|
}) | null;
|
|
3742
|
-
},
|
|
3746
|
+
}, any>;
|
|
3743
3747
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const NUMBER_LENGTH = 13;
|
|
2
2
|
export declare const KEY_LENGTH = 2;
|
|
3
|
-
export declare function checkNIR(nir: string): boolean;
|
|
3
|
+
export declare function checkNIR(nir: string, nirType: string): boolean;
|
|
4
4
|
export declare function computeNIRKey(nir: string): string;
|
|
5
5
|
export declare function isNIRKeyValid(nir: string): boolean;
|
|
@@ -20,6 +20,7 @@ type __VLS_Props = {
|
|
|
20
20
|
displayAsterisk?: boolean;
|
|
21
21
|
isValidateOnBlur?: boolean;
|
|
22
22
|
disableErrorHandling?: boolean;
|
|
23
|
+
bgColor?: string;
|
|
23
24
|
} & CustomizableOptions;
|
|
24
25
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
25
26
|
showEyeIcon: import('vue').Ref<boolean, boolean>;
|
|
@@ -46,6 +47,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
46
47
|
warningMessages: string[] | null;
|
|
47
48
|
successMessages: string[] | null;
|
|
48
49
|
readonly: boolean;
|
|
50
|
+
bgColor: string;
|
|
49
51
|
disabled: boolean;
|
|
50
52
|
placeholder: string;
|
|
51
53
|
displayAsterisk: boolean;
|
|
@@ -104,16 +104,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
104
104
|
hideDetails?: boolean | "auto" | undefined;
|
|
105
105
|
displayWeekendDays?: boolean | undefined;
|
|
106
106
|
displayTodayButton?: boolean | undefined;
|
|
107
|
+
displayHolidayDays?: boolean | undefined;
|
|
107
108
|
useCombinedMode?: boolean | undefined;
|
|
108
109
|
textFieldActivator?: boolean | undefined;
|
|
110
|
+
displayAsterisk?: boolean | undefined;
|
|
109
111
|
period?: {
|
|
110
112
|
min?: string | undefined;
|
|
111
113
|
max?: string | undefined;
|
|
112
114
|
} | undefined;
|
|
115
|
+
autoClamp?: boolean | undefined;
|
|
113
116
|
}> & Readonly<{
|
|
114
117
|
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
115
118
|
onBlur?: (() => any) | undefined;
|
|
116
119
|
onFocus?: (() => any) | undefined;
|
|
120
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
121
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
117
122
|
onClosed?: (() => any) | undefined;
|
|
118
123
|
}>, {
|
|
119
124
|
validateOnSubmit: () => any;
|
|
@@ -128,6 +133,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
128
133
|
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
129
134
|
blur: () => any;
|
|
130
135
|
focus: () => any;
|
|
136
|
+
input: (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
137
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
131
138
|
closed: () => any;
|
|
132
139
|
}, import('vue').PublicProps, {
|
|
133
140
|
required: boolean;
|
|
@@ -139,6 +146,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
139
146
|
disabled: boolean;
|
|
140
147
|
placeholder: string;
|
|
141
148
|
width: string;
|
|
149
|
+
displayAsterisk: boolean;
|
|
142
150
|
noIcon: boolean;
|
|
143
151
|
customRules: {
|
|
144
152
|
type: string;
|
|
@@ -160,11 +168,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
160
168
|
displayIcon: boolean;
|
|
161
169
|
displayAppendIcon: boolean;
|
|
162
170
|
displayPrependIcon: boolean;
|
|
171
|
+
autoClamp: boolean;
|
|
163
172
|
isBirthDate: boolean;
|
|
164
173
|
birthDate: boolean;
|
|
165
174
|
showWeekNumber: boolean;
|
|
166
175
|
displayTodayButton: boolean;
|
|
167
176
|
displayWeekendDays: boolean;
|
|
177
|
+
displayHolidayDays: boolean;
|
|
168
178
|
period: {
|
|
169
179
|
min?: string | undefined;
|
|
170
180
|
max?: string | undefined;
|
|
@@ -191,6 +201,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
191
201
|
showSuccessMessages?: boolean | undefined;
|
|
192
202
|
bgColor?: string | undefined;
|
|
193
203
|
displayRange?: boolean | undefined;
|
|
204
|
+
autoClamp?: boolean | undefined;
|
|
194
205
|
}> & Readonly<{
|
|
195
206
|
onBlur?: (() => any) | undefined;
|
|
196
207
|
onFocus?: (() => any) | undefined;
|
|
@@ -227,6 +238,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
227
238
|
displayIcon: boolean;
|
|
228
239
|
displayAppendIcon: boolean;
|
|
229
240
|
displayPrependIcon: boolean;
|
|
241
|
+
autoClamp: boolean;
|
|
230
242
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
231
243
|
inputRef: ({
|
|
232
244
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -1674,7 +1686,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1674
1686
|
disabled: boolean;
|
|
1675
1687
|
readonly: boolean | null;
|
|
1676
1688
|
messages: string | readonly string[];
|
|
1677
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
1689
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
1678
1690
|
focused: boolean;
|
|
1679
1691
|
errorMessages: string | readonly string[] | null;
|
|
1680
1692
|
maxErrors: string | number;
|
|
@@ -2065,6 +2077,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2065
2077
|
showSuccessMessages?: boolean | undefined;
|
|
2066
2078
|
bgColor?: string | undefined;
|
|
2067
2079
|
displayRange?: boolean | undefined;
|
|
2080
|
+
autoClamp?: boolean | undefined;
|
|
2068
2081
|
}> & Readonly<{
|
|
2069
2082
|
onBlur?: (() => any) | undefined;
|
|
2070
2083
|
onFocus?: (() => any) | undefined;
|
|
@@ -2095,6 +2108,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2095
2108
|
displayIcon: boolean;
|
|
2096
2109
|
displayAppendIcon: boolean;
|
|
2097
2110
|
displayPrependIcon: boolean;
|
|
2111
|
+
autoClamp: boolean;
|
|
2098
2112
|
}> | null;
|
|
2099
2113
|
dateCalendarTextInputRef: ({
|
|
2100
2114
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3542,7 +3556,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3542
3556
|
disabled: boolean;
|
|
3543
3557
|
readonly: boolean | null;
|
|
3544
3558
|
messages: string | readonly string[];
|
|
3545
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
3559
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
3546
3560
|
focused: boolean;
|
|
3547
3561
|
errorMessages: string | readonly string[] | null;
|
|
3548
3562
|
maxErrors: string | number;
|
|
@@ -4081,7 +4095,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4081
4095
|
tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
|
|
4082
4096
|
landscape: boolean;
|
|
4083
4097
|
rounded: string | number | boolean;
|
|
4084
|
-
tile: boolean;
|
|
4098
|
+
/** @type { typeof __VLS_ctx.fromDateRef } */ tile: boolean;
|
|
4085
4099
|
divided: boolean;
|
|
4086
4100
|
nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
4087
4101
|
prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
@@ -4190,7 +4204,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4190
4204
|
minHeight?: string | number | undefined;
|
|
4191
4205
|
minWidth?: string | number | undefined;
|
|
4192
4206
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
4193
|
-
|
|
4207
|
+
text?: string | undefined;
|
|
4194
4208
|
month?: string | number | undefined;
|
|
4195
4209
|
year?: number | undefined;
|
|
4196
4210
|
class?: any;
|
|
@@ -4255,16 +4269,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4255
4269
|
hideDetails?: boolean | "auto" | undefined;
|
|
4256
4270
|
displayWeekendDays?: boolean | undefined;
|
|
4257
4271
|
displayTodayButton?: boolean | undefined;
|
|
4272
|
+
displayHolidayDays?: boolean | undefined;
|
|
4258
4273
|
useCombinedMode?: boolean | undefined;
|
|
4259
4274
|
textFieldActivator?: boolean | undefined;
|
|
4275
|
+
displayAsterisk?: boolean | undefined;
|
|
4260
4276
|
period?: {
|
|
4261
4277
|
min?: string | undefined;
|
|
4262
4278
|
max?: string | undefined;
|
|
4263
4279
|
} | undefined;
|
|
4280
|
+
autoClamp?: boolean | undefined;
|
|
4264
4281
|
}> & Readonly<{
|
|
4265
4282
|
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4266
4283
|
onBlur?: (() => any) | undefined;
|
|
4267
4284
|
onFocus?: (() => any) | undefined;
|
|
4285
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4286
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4268
4287
|
onClosed?: (() => any) | undefined;
|
|
4269
4288
|
}>, {
|
|
4270
4289
|
validateOnSubmit: () => any;
|
|
@@ -4285,6 +4304,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4285
4304
|
disabled: boolean;
|
|
4286
4305
|
placeholder: string;
|
|
4287
4306
|
width: string;
|
|
4307
|
+
displayAsterisk: boolean;
|
|
4288
4308
|
noIcon: boolean;
|
|
4289
4309
|
customRules: {
|
|
4290
4310
|
type: string;
|
|
@@ -4306,11 +4326,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4306
4326
|
displayIcon: boolean;
|
|
4307
4327
|
displayAppendIcon: boolean;
|
|
4308
4328
|
displayPrependIcon: boolean;
|
|
4329
|
+
autoClamp: boolean;
|
|
4309
4330
|
isBirthDate: boolean;
|
|
4310
4331
|
birthDate: boolean;
|
|
4311
4332
|
showWeekNumber: boolean;
|
|
4312
4333
|
displayTodayButton: boolean;
|
|
4313
4334
|
displayWeekendDays: boolean;
|
|
4335
|
+
displayHolidayDays: boolean;
|
|
4314
4336
|
period: {
|
|
4315
4337
|
min?: string | undefined;
|
|
4316
4338
|
max?: string | undefined;
|
|
@@ -4352,16 +4374,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4352
4374
|
hideDetails?: boolean | "auto" | undefined;
|
|
4353
4375
|
displayWeekendDays?: boolean | undefined;
|
|
4354
4376
|
displayTodayButton?: boolean | undefined;
|
|
4377
|
+
displayHolidayDays?: boolean | undefined;
|
|
4355
4378
|
useCombinedMode?: boolean | undefined;
|
|
4356
4379
|
textFieldActivator?: boolean | undefined;
|
|
4380
|
+
displayAsterisk?: boolean | undefined;
|
|
4357
4381
|
period?: {
|
|
4358
4382
|
min?: string | undefined;
|
|
4359
4383
|
max?: string | undefined;
|
|
4360
4384
|
} | undefined;
|
|
4385
|
+
autoClamp?: boolean | undefined;
|
|
4361
4386
|
}> & Readonly<{
|
|
4362
4387
|
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4363
4388
|
onBlur?: (() => any) | undefined;
|
|
4364
4389
|
onFocus?: (() => any) | undefined;
|
|
4390
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4391
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
4365
4392
|
onClosed?: (() => any) | undefined;
|
|
4366
4393
|
}>, {
|
|
4367
4394
|
validateOnSubmit: () => any;
|
|
@@ -4376,6 +4403,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4376
4403
|
"update:modelValue": (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
4377
4404
|
blur: () => any;
|
|
4378
4405
|
focus: () => any;
|
|
4406
|
+
input: (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
4407
|
+
"date-selected": (value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any;
|
|
4379
4408
|
closed: () => any;
|
|
4380
4409
|
}, import('vue').PublicProps, {
|
|
4381
4410
|
required: boolean;
|
|
@@ -4387,6 +4416,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4387
4416
|
disabled: boolean;
|
|
4388
4417
|
placeholder: string;
|
|
4389
4418
|
width: string;
|
|
4419
|
+
displayAsterisk: boolean;
|
|
4390
4420
|
noIcon: boolean;
|
|
4391
4421
|
customRules: {
|
|
4392
4422
|
type: string;
|
|
@@ -4408,11 +4438,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4408
4438
|
displayIcon: boolean;
|
|
4409
4439
|
displayAppendIcon: boolean;
|
|
4410
4440
|
displayPrependIcon: boolean;
|
|
4441
|
+
autoClamp: boolean;
|
|
4411
4442
|
isBirthDate: boolean;
|
|
4412
4443
|
birthDate: boolean;
|
|
4413
4444
|
showWeekNumber: boolean;
|
|
4414
4445
|
displayTodayButton: boolean;
|
|
4415
4446
|
displayWeekendDays: boolean;
|
|
4447
|
+
displayHolidayDays: boolean;
|
|
4416
4448
|
period: {
|
|
4417
4449
|
min?: string | undefined;
|
|
4418
4450
|
max?: string | undefined;
|
|
@@ -4439,6 +4471,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4439
4471
|
showSuccessMessages?: boolean | undefined;
|
|
4440
4472
|
bgColor?: string | undefined;
|
|
4441
4473
|
displayRange?: boolean | undefined;
|
|
4474
|
+
autoClamp?: boolean | undefined;
|
|
4442
4475
|
}> & Readonly<{
|
|
4443
4476
|
onBlur?: (() => any) | undefined;
|
|
4444
4477
|
onFocus?: (() => any) | undefined;
|
|
@@ -4475,6 +4508,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4475
4508
|
displayIcon: boolean;
|
|
4476
4509
|
displayAppendIcon: boolean;
|
|
4477
4510
|
displayPrependIcon: boolean;
|
|
4511
|
+
autoClamp: boolean;
|
|
4478
4512
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
4479
4513
|
inputRef: ({
|
|
4480
4514
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -5922,7 +5956,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5922
5956
|
disabled: boolean;
|
|
5923
5957
|
readonly: boolean | null;
|
|
5924
5958
|
messages: string | readonly string[];
|
|
5925
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
5959
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
5926
5960
|
focused: boolean;
|
|
5927
5961
|
errorMessages: string | readonly string[] | null;
|
|
5928
5962
|
maxErrors: string | number;
|
|
@@ -6313,6 +6347,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6313
6347
|
showSuccessMessages?: boolean | undefined;
|
|
6314
6348
|
bgColor?: string | undefined;
|
|
6315
6349
|
displayRange?: boolean | undefined;
|
|
6350
|
+
autoClamp?: boolean | undefined;
|
|
6316
6351
|
}> & Readonly<{
|
|
6317
6352
|
onBlur?: (() => any) | undefined;
|
|
6318
6353
|
onFocus?: (() => any) | undefined;
|
|
@@ -6343,6 +6378,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6343
6378
|
displayIcon: boolean;
|
|
6344
6379
|
displayAppendIcon: boolean;
|
|
6345
6380
|
displayPrependIcon: boolean;
|
|
6381
|
+
autoClamp: boolean;
|
|
6346
6382
|
}> | null;
|
|
6347
6383
|
dateCalendarTextInputRef: ({
|
|
6348
6384
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -7790,7 +7826,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7790
7826
|
disabled: boolean;
|
|
7791
7827
|
readonly: boolean | null;
|
|
7792
7828
|
messages: string | readonly string[];
|
|
7793
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
7829
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
7794
7830
|
focused: boolean;
|
|
7795
7831
|
errorMessages: string | readonly string[] | null;
|
|
7796
7832
|
maxErrors: string | number;
|
|
@@ -8329,7 +8365,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8329
8365
|
tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
|
|
8330
8366
|
landscape: boolean;
|
|
8331
8367
|
rounded: string | number | boolean;
|
|
8332
|
-
tile: boolean;
|
|
8368
|
+
/** @type { typeof __VLS_ctx.fromDateRef } */ tile: boolean;
|
|
8333
8369
|
divided: boolean;
|
|
8334
8370
|
nextIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
8335
8371
|
prevIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
@@ -8438,7 +8474,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8438
8474
|
minHeight?: string | number | undefined;
|
|
8439
8475
|
minWidth?: string | number | undefined;
|
|
8440
8476
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
8441
|
-
|
|
8477
|
+
text?: string | undefined;
|
|
8442
8478
|
month?: string | number | undefined;
|
|
8443
8479
|
year?: number | undefined;
|
|
8444
8480
|
class?: any;
|
|
@@ -8503,16 +8539,21 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8503
8539
|
hideDetails?: boolean | "auto" | undefined;
|
|
8504
8540
|
displayWeekendDays?: boolean | undefined;
|
|
8505
8541
|
displayTodayButton?: boolean | undefined;
|
|
8542
|
+
displayHolidayDays?: boolean | undefined;
|
|
8506
8543
|
useCombinedMode?: boolean | undefined;
|
|
8507
8544
|
textFieldActivator?: boolean | undefined;
|
|
8545
|
+
displayAsterisk?: boolean | undefined;
|
|
8508
8546
|
period?: {
|
|
8509
8547
|
min?: string | undefined;
|
|
8510
8548
|
max?: string | undefined;
|
|
8511
8549
|
} | undefined;
|
|
8550
|
+
autoClamp?: boolean | undefined;
|
|
8512
8551
|
}> & Readonly<{
|
|
8513
8552
|
"onUpdate:modelValue"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
8514
8553
|
onBlur?: (() => any) | undefined;
|
|
8515
8554
|
onFocus?: (() => any) | undefined;
|
|
8555
|
+
onInput?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
8556
|
+
"onDate-selected"?: ((value: import('../../composables/date/useDateInitializationDayjs').DateValue) => any) | undefined;
|
|
8516
8557
|
onClosed?: (() => any) | undefined;
|
|
8517
8558
|
}>, {
|
|
8518
8559
|
validateOnSubmit: () => any;
|
|
@@ -8533,6 +8574,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8533
8574
|
disabled: boolean;
|
|
8534
8575
|
placeholder: string;
|
|
8535
8576
|
width: string;
|
|
8577
|
+
displayAsterisk: boolean;
|
|
8536
8578
|
noIcon: boolean;
|
|
8537
8579
|
customRules: {
|
|
8538
8580
|
type: string;
|
|
@@ -8554,11 +8596,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8554
8596
|
displayIcon: boolean;
|
|
8555
8597
|
displayAppendIcon: boolean;
|
|
8556
8598
|
displayPrependIcon: boolean;
|
|
8599
|
+
autoClamp: boolean;
|
|
8557
8600
|
isBirthDate: boolean;
|
|
8558
8601
|
birthDate: boolean;
|
|
8559
8602
|
showWeekNumber: boolean;
|
|
8560
8603
|
displayTodayButton: boolean;
|
|
8561
8604
|
displayWeekendDays: boolean;
|
|
8605
|
+
displayHolidayDays: boolean;
|
|
8562
8606
|
period: {
|
|
8563
8607
|
min?: string | undefined;
|
|
8564
8608
|
max?: string | undefined;
|
|
@@ -63,7 +63,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
63
63
|
};
|
|
64
64
|
bgColor: {
|
|
65
65
|
type: StringConstructor;
|
|
66
|
-
default:
|
|
66
|
+
default: string;
|
|
67
67
|
};
|
|
68
68
|
readonly: {
|
|
69
69
|
type: BooleanConstructor;
|
|
@@ -152,7 +152,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
152
152
|
};
|
|
153
153
|
bgColor: {
|
|
154
154
|
type: StringConstructor;
|
|
155
|
-
default:
|
|
155
|
+
default: string;
|
|
156
156
|
};
|
|
157
157
|
readonly: {
|
|
158
158
|
type: BooleanConstructor;
|
|
@@ -3,6 +3,7 @@ type __VLS_Props = CustomizableOptions & {
|
|
|
3
3
|
min?: number;
|
|
4
4
|
max?: number;
|
|
5
5
|
step?: number;
|
|
6
|
+
bgColor?: string;
|
|
6
7
|
};
|
|
7
8
|
type __VLS_PublicProps = {
|
|
8
9
|
modelValue?: Array<number>;
|
|
@@ -14,6 +15,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
14
15
|
}>, {
|
|
15
16
|
min: number;
|
|
16
17
|
max: number;
|
|
18
|
+
bgColor: string;
|
|
17
19
|
step: number;
|
|
18
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
21
|
export default _default;
|