@cnamts/synapse 1.0.26 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/{AutocompleteFilter-BPR-a55G.js → AutocompleteFilter-DXd4szWO.js} +1 -1
- package/dist/{DateFilter-CknrJWs2.js → DateFilter-BD59Kgwf.js} +1 -1
- package/dist/{NumberFilter-DJ-yNlzv.js → NumberFilter-BSMZE7uw.js} +1 -1
- package/dist/{PeriodFilter-CiB5Oa9Z.js → PeriodFilter-keUdSSk0.js} +1 -1
- package/dist/{SelectFilter-EiafX97M.js → SelectFilter-Dhvvwazl.js} +1 -1
- package/dist/{TextFilter-BzOmpdxj.js → TextFilter-CU8FpXz0.js} +1 -1
- package/dist/apLightTheme2026-DbS7BPUf.js +612 -0
- package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproPostalAddressField/AmeliproPostalAddressCityRow/AmeliproPostalAddressCityRow.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproPostalAddressField/AmeliproPostalAddressField.d.ts +6 -6
- package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproTextArea/AmeliproTextArea.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproTextField/AmeliproTextField.d.ts +4 -4
- package/dist/components/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +2 -2
- package/dist/components/Customs/Selects/SyAutocomplete/SyAutocomplete.d.ts +2275 -487
- package/dist/components/Customs/Selects/SyAutocomplete/composables/useSyAutocompleteValidation.d.ts +18 -0
- package/dist/components/Customs/Selects/SyAutocomplete/utils/ariaManager.d.ts +1 -1
- package/dist/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.d.ts +3 -1
- package/dist/components/Customs/Selects/SyInputSelect/SyInputSelect.d.ts +1 -1
- package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +12 -15
- package/dist/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.d.ts +1 -0
- package/dist/components/Customs/Selects/SySelect/composables/useSySelectValidation.d.ts +15 -0
- package/dist/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.d.ts +4 -4
- package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +6 -6
- package/dist/components/Customs/SyIcon/SyIcon.d.ts +77 -1
- package/dist/components/Customs/SyIconButton/SyIconButton.d.ts +18 -0
- package/dist/components/Customs/SyRadioGroup/SyRadioGroup.d.ts +23 -41
- package/dist/components/Customs/SyRadioGroup/composables/useSyRadioGroupValidation.d.ts +50 -0
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +20 -80
- package/dist/components/Customs/SyTextField/locales.d.ts +7 -0
- package/dist/components/Customs/SyTextField/types.d.ts +67 -4
- package/dist/components/Customs/SyTextField/useNumberField.d.ts +23 -0
- package/dist/components/Customs/SyTextField/useSyTextFieldValidation.d.ts +38 -0
- package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +253 -694
- package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +121 -339
- package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +54 -164
- package/dist/components/DatePicker/composables/index.d.ts +1 -0
- package/dist/components/DatePicker/composables/useDatePickerValidationBridge.d.ts +51 -0
- package/dist/components/FilterInline/FilterInline.d.ts +3 -3
- package/dist/components/FilterSideBar/FilterSideBar.d.ts +4 -4
- package/dist/components/MonthPicker/MonthPicker.d.ts +49 -162
- package/dist/components/MonthPicker/MonthPickerText/MonthPickerInput.d.ts +49 -162
- package/dist/components/NirField/NirField.d.ts +120 -351
- package/dist/components/NirField/useNirValidation.d.ts +10 -20
- package/dist/components/PasswordField/PasswordField.d.ts +21 -40
- package/dist/components/PasswordField/locales.d.ts +2 -0
- package/dist/components/PasswordField/types.d.ts +16 -0
- package/dist/components/PasswordField/usePasswordFieldValidation.d.ts +38 -0
- package/dist/components/PeriodField/PeriodField.d.ts +485 -1365
- package/dist/components/PhoneField/PhoneField.d.ts +49 -162
- package/dist/components/SearchListField/SearchListField.d.ts +3 -3
- package/dist/components/SyTextArea/SyTextArea.d.ts +30 -17
- package/dist/components/SyTextArea/composables/useSyTextAreaValidation.d.ts +20 -0
- package/dist/components/SyTextArea/locales.d.ts +1 -0
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +1 -0
- package/dist/components/Tables/SyTable/SyTable.d.ts +1 -0
- package/dist/components/Tables/common/SyTablePagination.d.ts +33 -34
- package/dist/components/Tables/common/types.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/composables/unifyValidation/documentationValidationProps.d.ts +160 -160
- package/dist/composables/unifyValidation/useValidation.d.ts +17 -23
- package/dist/composables/useFilterable/useFilterable.d.ts +1 -2
- package/dist/design-system-v3.js +81 -80
- package/dist/designTokens/tokens/amelipro/apContextual.d.ts +6 -6
- package/dist/designTokens/tokens/amelipro/apDarkTheme.d.ts +3 -1
- package/dist/designTokens/tokens/amelipro/apLightTheme.d.ts +54 -100
- package/dist/designTokens/tokens/baseContextualTokens.d.ts +0 -6
- package/dist/designTokens/tokens/baseTokens.d.ts +232 -0
- package/dist/designTokens/tokens/cnam/cnamContextual.d.ts +6 -6
- package/dist/designTokens/tokens/cnam/cnamDarkTheme.d.ts +1 -1
- package/dist/designTokens/tokens/cnam/cnamLightTheme.d.ts +57 -101
- package/dist/designTokens/tokens/pa/paContextual.d.ts +0 -6
- package/dist/designTokens/tokens/pa/paDarkTheme.d.ts +1 -1
- package/dist/designTokens/tokens/pa/paLightTheme.d.ts +54 -97
- package/dist/designTokens/tokens/pa/paSemantic.d.ts +1 -0
- package/dist/designTokens/tokens/semanticTokens.d.ts +112 -0
- package/dist/main-D8ryUoS5.js +39481 -0
- package/dist/synapse.css +1 -1
- package/dist/vuetifyConfig.js +212 -74
- package/package.json +8 -5
- package/src/assets/overrides/_icons.scss +5 -4
- package/src/assets/overrides/_otp.scss +4 -4
- package/src/assets/overrides/_typography.scss +2 -1
- package/src/assets/overrides/_utilities.scss +1 -42
- package/src/components/Accordion/tests/Accordion.visual.cy.ts +44 -0
- package/src/components/Accordion/tests/__snapshots__/accordion-default.snap.png +0 -0
- package/src/components/Accordion/tests/__snapshots__/accordion-disabled-item.snap.png +0 -0
- package/src/components/Accordion/tests/__snapshots__/accordion-open-first.snap.png +0 -0
- package/src/components/BackBtn/tests/__snapshots__/back-btn-custom-bg.snap.png +0 -0
- package/src/components/BackBtn/tests/__snapshots__/back-btn-default.snap.png +0 -0
- package/src/components/BackBtn/tests/__snapshots__/back-btn-no-icon.snap.png +0 -0
- package/src/components/BackToTopBtn/tests/BackToTopBtn.visual.cy.ts +34 -0
- package/src/components/BackToTopBtn/tests/__snapshots__/back-to-top-btn-custom-nudge.snap.png +0 -0
- package/src/components/BackToTopBtn/tests/__snapshots__/back-to-top-btn-default.snap.png +0 -0
- package/src/components/Captcha/tests/Captcha.visual.cy.ts +45 -0
- package/src/components/Captcha/tests/__snapshots__/Captcha.spec.ts.snap +4 -0
- package/src/components/Captcha/tests/__snapshots__/captcha-audio-type.snap.png +0 -0
- package/src/components/Captcha/tests/__snapshots__/captcha-image-type.snap.png +0 -0
- package/src/components/Captcha/tests/__snapshots__/captcha-no-helpdesk.snap.png +0 -0
- package/src/components/ChipList/ChipList.vue +30 -18
- package/src/components/ChipList/tests/ChipList.visual.cy.ts +46 -0
- package/src/components/ChipList/tests/__snapshots__/chip-list-default.snap.png +0 -0
- package/src/components/ChipList/tests/__snapshots__/chip-list-readonly.snap.png +0 -0
- package/src/components/ChipList/tests/__snapshots__/chip-list-state-icons.snap.png +0 -0
- package/src/components/ChipList/tests/chipList.spec.ts +4 -4
- package/src/components/CollapsibleList/tests/CollapsibleList.visual.cy.ts +33 -0
- package/src/components/CollapsibleList/tests/__snapshots__/collapsible-list-default.snap.png +0 -0
- package/src/components/CollapsibleList/tests/__snapshots__/collapsible-list-no-title.snap.png +0 -0
- package/src/components/ContextualMenu/tests/ContextualMenu.visual.cy.ts +35 -0
- package/src/components/ContextualMenu/tests/__snapshots__/contextual-menu-default.snap.png +0 -0
- package/src/components/ContextualMenu/tests/__snapshots__/contextual-menu-selected.snap.png +0 -0
- package/src/components/CookieBanner/tests/CookieBanner.visual.cy.ts +29 -0
- package/src/components/CookieBanner/tests/__snapshots__/cookie-banner-default.snap.png +0 -0
- package/src/components/CookieBanner/tests/__snapshots__/cookie-banner-with-items.snap.png +0 -0
- package/src/components/CookiesSelection/tests/CookiesSelection.visual.cy.ts +21 -0
- package/src/components/CookiesSelection/tests/__snapshots__/cookies-selection-default.snap.png +0 -0
- package/src/components/CopyBtn/CopyBtn.vue +2 -2
- package/src/components/CopyBtn/tests/CopyBtn.visual.cy.ts +24 -0
- package/src/components/CopyBtn/tests/__snapshots__/copy-btn-default.snap.png +0 -0
- package/src/components/CopyBtn/tests/__snapshots__/copy-btn-no-tooltip.snap.png +0 -0
- package/src/components/Customs/Selects/SelectBtnField/SelectBtnField.stories.ts +4 -0
- package/src/components/Customs/Selects/SelectBtnField/SelectBtnField.vue +7 -6
- package/src/components/Customs/Selects/SelectBtnField/tests/SelectBtnField.spec.ts +223 -0
- package/src/components/Customs/Selects/SelectBtnField/tests/SelectBtnField.visual.cy.ts +60 -0
- package/src/components/Customs/Selects/SelectBtnField/tests/__snapshots__/select-btn-field-default.snap.png +0 -0
- package/src/components/Customs/Selects/SelectBtnField/tests/__snapshots__/select-btn-field-inline.snap.png +0 -0
- package/src/components/Customs/Selects/SelectBtnField/tests/__snapshots__/select-btn-field-readonly.snap.png +0 -0
- package/src/components/Customs/Selects/SelectBtnField/tests/__snapshots__/select-btn-field-selected.snap.png +0 -0
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.stories.ts +283 -351
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.vue +183 -219
- package/src/components/Customs/Selects/SyAutocomplete/composables/useSyAutocompleteValidation.ts +101 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.spec.ts +763 -1
- package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.visual.cy.ts +63 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/__snapshots__/sy-autocomplete-default.snap.png +0 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/__snapshots__/sy-autocomplete-loading.snap.png +0 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/__snapshots__/sy-autocomplete-multiple.snap.png +0 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/__snapshots__/sy-autocomplete-with-value.snap.png +0 -0
- package/src/components/Customs/Selects/SyAutocomplete/utils/ariaManager.ts +3 -1
- package/src/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.ts +79 -5
- package/src/components/Customs/Selects/SyAutocomplete/validation/Validation.stories.ts +936 -0
- package/src/components/Customs/Selects/SyInputSelect/tests/SyInputSelect.visual.cy.ts +48 -0
- package/src/components/Customs/Selects/SyInputSelect/tests/__snapshots__/sy-input-select-default.snap.png +0 -0
- package/src/components/Customs/Selects/SyInputSelect/tests/__snapshots__/sy-input-select-required.snap.png +0 -0
- package/src/components/Customs/Selects/SyInputSelect/tests/__snapshots__/sy-input-select-with-value.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/SySelect.stories.ts +9 -491
- package/src/components/Customs/Selects/SySelect/SySelect.vue +68 -126
- package/src/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.ts +3 -0
- package/src/components/Customs/Selects/SySelect/composables/useSySelectValidation.ts +64 -0
- package/src/components/Customs/Selects/SySelect/tests/SySelect.spec.ts +199 -3
- package/src/components/Customs/Selects/SySelect/tests/SySelect.visual.cy.ts +77 -0
- package/src/components/Customs/Selects/SySelect/tests/__snapshots__/sy-select-clearable.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/tests/__snapshots__/sy-select-default.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/tests/__snapshots__/sy-select-multiple-chips.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/tests/__snapshots__/sy-select-required.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/tests/__snapshots__/sy-select-with-value.snap.png +0 -0
- package/src/components/Customs/Selects/SySelect/validation/Validation.stories.ts +935 -0
- package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.stories.ts +18 -7
- package/src/components/Customs/SyCheckBoxGroup/SyCheckBoxGroup.vue +3 -3
- package/src/components/Customs/SyCheckBoxGroup/tests/SyCheckBoxGroup.visual.cy.ts +55 -0
- package/src/components/Customs/SyCheckBoxGroup/tests/__snapshots__/sy-checkbox-group-default.snap.png +0 -0
- package/src/components/Customs/SyCheckBoxGroup/tests/__snapshots__/sy-checkbox-group-disabled.snap.png +0 -0
- package/src/components/Customs/SyCheckBoxGroup/tests/__snapshots__/sy-checkbox-group-selected.snap.png +0 -0
- package/src/components/Customs/SyCheckBoxGroup/tests/__snapshots__/sy-checkbox-group-with-label.snap.png +0 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +8 -8
- package/src/components/Customs/SyCheckbox/SyCheckbox.vue +9 -17
- package/src/components/Customs/SyCheckbox/tests/SyCheckbox.spec.ts +1 -1
- package/src/components/Customs/SyCheckbox/tests/SyCheckbox.visual.cy.ts +61 -0
- package/src/components/Customs/SyCheckbox/tests/__snapshots__/sy-checkbox-checked.snap.png +0 -0
- package/src/components/Customs/SyCheckbox/tests/__snapshots__/sy-checkbox-disabled.snap.png +0 -0
- package/src/components/Customs/SyCheckbox/tests/__snapshots__/sy-checkbox-indeterminate.snap.png +0 -0
- package/src/components/Customs/SyCheckbox/tests/__snapshots__/sy-checkbox-required.snap.png +0 -0
- package/src/components/Customs/SyCheckbox/tests/__snapshots__/sy-checkbox-unchecked.snap.png +0 -0
- package/src/components/Customs/SyIcon/SyIcon.vue +19 -1
- package/src/components/Customs/SyIcon/accessibilite/Accessibility.mdx +0 -6
- package/src/components/Customs/SyIcon/tests/SyIcon.visual.cy.ts +83 -0
- package/src/components/Customs/SyIcon/tests/__snapshots__/sy-icon-color-error.snap.png +0 -0
- package/src/components/Customs/SyIcon/tests/__snapshots__/sy-icon-decorative.snap.png +0 -0
- package/src/components/Customs/SyIcon/tests/__snapshots__/sy-icon-informative.snap.png +0 -0
- package/src/components/Customs/SyIcon/tests/__snapshots__/sy-icon-role-button.snap.png +0 -0
- package/src/components/Customs/SyIcon/tests/__snapshots__/sy-icon-size-large.snap.png +0 -0
- package/src/components/Customs/SyIcon/utils/tests/iconUtils.spec.ts +107 -0
- package/src/components/Customs/SyIconButton/tests/SyIconButton.visual.cy.ts +55 -0
- package/src/components/Customs/SyIconButton/tests/__snapshots__/sy-icon-button-default.snap.png +0 -0
- package/src/components/Customs/SyIconButton/tests/__snapshots__/sy-icon-button-disabled.snap.png +0 -0
- package/src/components/Customs/SyIconButton/tests/__snapshots__/sy-icon-button-error.snap.png +0 -0
- package/src/components/Customs/SyIconButton/tests/__snapshots__/sy-icon-button-large.snap.png +0 -0
- package/src/components/Customs/SyPagination/tests/SyPagination.visual.cy.ts +40 -0
- package/src/components/Customs/SyPagination/tests/__snapshots__/sy-pagination-first-page.snap.png +0 -0
- package/src/components/Customs/SyPagination/tests/__snapshots__/sy-pagination-middle-page.snap.png +0 -0
- package/src/components/Customs/SyPagination/tests/__snapshots__/sy-pagination-with-label.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/SyRadioGroup.mdx +2 -2
- package/src/components/Customs/SyRadioGroup/SyRadioGroup.stories.ts +395 -201
- package/src/components/Customs/SyRadioGroup/SyRadioGroup.vue +83 -127
- package/src/components/Customs/SyRadioGroup/composables/useSyRadioGroupValidation.ts +127 -0
- package/src/components/Customs/SyRadioGroup/tests/SyRadioGroup.a11y.spec.ts +93 -1
- package/src/components/Customs/SyRadioGroup/tests/SyRadioGroup.spec.ts +146 -9
- package/src/components/Customs/SyRadioGroup/tests/SyRadioGroup.visual.cy.ts +165 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-asterisk.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-comfortable.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-compact.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-default.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-disabled.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-error.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-no-details.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-readonly.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-selected.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-success.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/tests/__snapshots__/sy-radio-group-warning.snap.png +0 -0
- package/src/components/Customs/SyRadioGroup/validation/Validation.stories.ts +809 -0
- package/src/components/Customs/SyTabs/config.ts +3 -3
- package/src/components/Customs/SyTabs/tests/SyTabs.spec.ts +265 -0
- package/src/components/Customs/SyTabs/tests/SyTabs.visual.cy.ts +30 -0
- package/src/components/Customs/SyTabs/tests/__snapshots__/sy-tabs-default.snap.png +0 -0
- package/src/components/Customs/SyTabs/tests/__snapshots__/sy-tabs-second-active.snap.png +0 -0
- package/src/components/Customs/SyTabs/tests/useTabTransition.spec.ts +188 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +166 -803
- package/src/components/Customs/SyTextField/SyTextField.vue +191 -168
- package/src/components/Customs/SyTextField/Validation/Validation.stories.ts +1164 -0
- package/src/components/Customs/SyTextField/locales.ts +12 -0
- package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +174 -8
- package/src/components/Customs/SyTextField/tests/SyTextField.visual.cy.ts +116 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-clearable.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-default.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-number-disabled.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-number-no-spinner.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-number.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-prepend-icon.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-readonly.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-required.snap.png +0 -0
- package/src/components/Customs/SyTextField/tests/__snapshots__/sy-text-field-with-value.snap.png +0 -0
- package/src/components/Customs/SyTextField/types.ts +70 -0
- package/src/components/Customs/SyTextField/useNumberField.ts +93 -0
- package/src/components/Customs/SyTextField/useSyTextFieldValidation.ts +104 -0
- package/src/components/DataList/DataList.stories.ts +1 -1
- package/src/components/DataList/tests/DataList.visual.cy.ts +85 -0
- package/src/components/DataList/tests/__snapshots__/data-list-default.snap.png +0 -0
- package/src/components/DataList/tests/__snapshots__/data-list-loading.snap.png +0 -0
- package/src/components/DataList/tests/__snapshots__/data-list-row.snap.png +0 -0
- package/src/components/DataList/tests/__snapshots__/data-list-with-icons.snap.png +0 -0
- package/src/components/DataList/tests/__snapshots__/data-list-with-title.snap.png +0 -0
- package/src/components/DataListGroup/tests/DataListGroup.visual.cy.ts +51 -0
- package/src/components/DataListGroup/tests/__snapshots__/data-list-group-default.snap.png +0 -0
- package/src/components/DataListGroup/tests/__snapshots__/data-list-group-loading.snap.png +0 -0
- package/src/components/DataListItem/tests/DataListItem.spec.ts +3 -1
- package/src/components/DataListItem/tests/DataListItem.visual.cy.ts +53 -0
- package/src/components/DataListItem/tests/__snapshots__/data-list-item-chip.snap.png +0 -0
- package/src/components/DataListItem/tests/__snapshots__/data-list-item-default.snap.png +0 -0
- package/src/components/DataListItem/tests/__snapshots__/data-list-item-placeholder.snap.png +0 -0
- package/src/components/DataListItem/tests/__snapshots__/data-list-item-row.snap.png +0 -0
- package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +1 -1
- package/src/components/DatePicker/CalendarMode/DatePicker.vue +43 -148
- package/src/components/DatePicker/CalendarMode/tests/DatePicker.coverage.spec.ts +156 -0
- package/src/components/DatePicker/CalendarMode/tests/DatePicker.spec.ts +495 -4
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +1 -1
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +51 -71
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +206 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/bridge-integration.regression.spec.ts +210 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/calendar-navigation.regression.spec.ts +214 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/validation-cross.regression.spec.ts +194 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/validation-success-messages.regression.spec.ts +83 -0
- package/src/components/DatePicker/DateTextInput/DateRange.stories.ts +1 -1
- package/src/components/DatePicker/DateTextInput/DateTextInput.vue +131 -56
- package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +1 -1
- package/src/components/DatePicker/DateTextInput/tests/DateTextInput.spec.ts +320 -0
- package/src/components/DatePicker/composables/index.ts +1 -0
- package/src/components/DatePicker/composables/tests/useCalendarKeyboardNavigation.spec.ts +360 -0
- package/src/components/DatePicker/composables/tests/useDatePickerValidationBridge.spec.ts +129 -0
- package/src/components/DatePicker/composables/tests/useTodayButton.spec.ts +10 -10
- package/src/components/DatePicker/composables/useCalendarKeyboardNavigation.ts +11 -2
- package/src/components/DatePicker/composables/useDatePickerValidationBridge.ts +205 -0
- package/src/components/DatePicker/docExamples/BidirectionalComplexValidation.vue +1 -1
- package/src/components/DatePicker/docExamples/DatePickerBidirectionalValidation.vue +1 -1
- package/src/components/DatePicker/tests/exposed-methods.coverage.spec.ts +75 -0
- package/src/components/DeclarationAccessibilityPage/tests/DeclarationAccessibilityPage.visual.cy.ts +35 -0
- package/src/components/DeclarationAccessibilityPage/tests/__snapshots__/declaration-a11y-page-default.snap.png +0 -0
- package/src/components/DeclarationAccessibilityPage/tests/__snapshots__/declaration-a11y-page-full.snap.png +0 -0
- package/src/components/DiacriticPicker/tests/DiacriticPicker.visual.cy.ts +24 -0
- package/src/components/DiacriticPicker/tests/__snapshots__/diacritic-picker-custom-title.snap.png +0 -0
- package/src/components/DiacriticPicker/tests/__snapshots__/diacritic-picker-default.snap.png +0 -0
- package/src/components/DialogBox/DialogBox.vue +1 -1
- package/src/components/DialogBox/tests/__snapshots__/dialog-box-custom-texts.snap.png +0 -0
- package/src/components/DialogBox/tests/__snapshots__/dialog-box-default.snap.png +0 -0
- package/src/components/DialogBox/tests/__snapshots__/dialog-box-no-actions.snap.png +0 -0
- package/src/components/DownloadBtn/tests/DownloadBtn.spec.ts +2 -2
- package/src/components/DownloadBtn/tests/DownloadBtn.visual.cy.ts +38 -0
- package/src/components/DownloadBtn/tests/__snapshots__/download-btn-dark.snap.png +0 -0
- package/src/components/DownloadBtn/tests/__snapshots__/download-btn-idle.snap.png +0 -0
- package/src/components/ErrorPage/tests/ErrorPage.visual.cy.ts +32 -0
- package/src/components/ErrorPage/tests/__snapshots__/error-page-custom.snap.png +0 -0
- package/src/components/ErrorPage/tests/__snapshots__/error-page-default.snap.png +0 -0
- package/src/components/ErrorPage/tests/__snapshots__/error-page-no-btn.snap.png +0 -0
- package/src/components/ExternalLinks/tests/ExternalLinks.visual.cy.ts +30 -0
- package/src/components/ExternalLinks/tests/__snapshots__/external-links-default.snap.png +0 -0
- package/src/components/ExternalLinks/tests/__snapshots__/external-links-fixed.snap.png +0 -0
- package/src/components/FileList/UploadItem/UploadItem.vue +4 -4
- package/src/components/FileList/tests/FileList.visual.cy.ts +31 -0
- package/src/components/FileList/tests/__snapshots__/file-list-default.snap.png +0 -0
- package/src/components/FileList/tests/__snapshots__/file-list-with-delete.snap.png +0 -0
- package/src/components/FilePreview/accessibilite/Accessibility.mdx +86 -8
- package/src/components/FileUpload/FileUpload.vue +2 -2
- package/src/components/FileUpload/FileUploadContent.vue +1 -1
- package/src/components/FileUpload/tests/FileUpload.visual.cy.ts +36 -0
- package/src/components/FileUpload/tests/__snapshots__/file-upload-default.snap.png +0 -0
- package/src/components/FileUpload/tests/__snapshots__/file-upload-disabled.snap.png +0 -0
- package/src/components/FileUpload/tests/__snapshots__/file-upload-multiple.snap.png +0 -0
- package/src/components/FilterInline/FilterInline.mdx +2 -2
- package/src/components/FilterInline/FilterInline.stories.ts +2 -0
- package/src/components/FilterInline/FilterInline.vue +10 -5
- package/src/components/FilterInline/tests/FilterInline.visual.cy.ts +25 -0
- package/src/components/FilterInline/tests/__snapshots__/filter-inline-default.snap.png +0 -0
- package/src/components/FilterSideBar/FilterSideBar.stories.ts +5 -2
- package/src/components/FilterSideBar/FilterSideBar.vue +13 -8
- package/src/components/FilterSideBar/tests/FilterSideBar.visual.cy.ts +37 -0
- package/src/components/FilterSideBar/tests/__snapshots__/filter-sidebar-default.snap.png +0 -0
- package/src/components/FilterSideBar/tests/__snapshots__/filter-sidebar-modale.snap.png +0 -0
- package/src/components/FooterBar/FooterBar.vue +7 -7
- package/src/components/FooterBar/tests/FooterBar.visual.cy.ts +37 -0
- package/src/components/FooterBar/tests/__snapshots__/footer-bar-default.snap.png +0 -0
- package/src/components/FooterBar/tests/__snapshots__/footer-bar-no-logo.snap.png +0 -0
- package/src/components/FooterBar/tests/__snapshots__/footer-bar-no-social.snap.png +0 -0
- package/src/components/FooterBar/tests/__snapshots__/footer-bar-version.snap.png +0 -0
- package/src/components/FranceConnectBtn/FranceConnectBtn.vue +1 -1
- package/src/components/FranceConnectBtn/tests/FranceConnectBtn.visual.cy.ts +38 -0
- package/src/components/FranceConnectBtn/tests/__snapshots__/france-connect-btn-dark.snap.png +0 -0
- package/src/components/FranceConnectBtn/tests/__snapshots__/france-connect-btn-default.snap.png +0 -0
- package/src/components/FranceConnectBtn/tests/__snapshots__/france-connect-btn-plus.snap.png +0 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +2 -2
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +7 -7
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +4 -4
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/header-burger-menu-generated-submenu-open.snap.png +0 -0
- package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +2 -2
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-custom-width.snap.png +0 -0
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-default.snap.png +0 -0
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-no-sticky.snap.png +0 -0
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-with-prepend.snap.png +0 -0
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-with-side.snap.png +0 -0
- package/src/components/HeaderBar/tests/__snapshots__/header-bar-with-subtitle.snap.png +0 -0
- package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +87 -8
- package/src/components/HeaderLoading/tests/HeaderLoading.visual.cy.ts +34 -0
- package/src/components/HeaderLoading/tests/__snapshots__/header-loading-custom-size.snap.png +0 -0
- package/src/components/HeaderLoading/tests/__snapshots__/header-loading-default.snap.png +0 -0
- package/src/components/HeaderLoading/tests/__snapshots__/header-loading-standalone.snap.png +0 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +3 -3
- package/src/components/HeaderNavigationBar/HorizontalNavbar/tests/HorizontalNavbar.spec.ts +589 -0
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +4 -4
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.visual.cy.ts +34 -0
- package/src/components/HeaderNavigationBar/tests/__snapshots__/header-navigation-bar-default.snap.png +0 -0
- package/src/components/HeaderNavigationBar/tests/__snapshots__/header-navigation-bar-subtitle.snap.png +0 -0
- package/src/components/HeaderToolbar/tests/HeaderToolBar.spec.ts +153 -1
- package/src/components/HeaderToolbar/tests/HeaderToolbar.visual.cy.ts +25 -0
- package/src/components/HeaderToolbar/tests/__snapshots__/header-toolbar-custom.snap.png +0 -0
- package/src/components/HeaderToolbar/tests/__snapshots__/header-toolbar-default.snap.png +0 -0
- package/src/components/HeaderToolbar/tests/useMobileRightMenu.spec.ts +258 -0
- package/src/components/LangBtn/tests/LangBtn.visual.cy.ts +33 -0
- package/src/components/LangBtn/tests/__snapshots__/lang-btn-default.snap.png +0 -0
- package/src/components/LangBtn/tests/__snapshots__/lang-btn-english.snap.png +0 -0
- package/src/components/LangBtn/tests/__snapshots__/lang-btn-no-arrow.snap.png +0 -0
- package/src/components/Logo/tests/__snapshots__/logo-avatar.snap.png +0 -0
- package/src/components/Logo/tests/__snapshots__/logo-default.snap.png +0 -0
- package/src/components/Logo/tests/__snapshots__/logo-no-organism.snap.png +0 -0
- package/src/components/Logo/tests/__snapshots__/logo-no-signature.snap.png +0 -0
- package/src/components/Logo/tests/__snapshots__/logo-risque-pro.snap.png +0 -0
- package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +2 -2
- package/src/components/LogoBrandSection/tests/LogoBrandSection.visual.cy.ts +43 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +1 -1
- package/src/components/LogoBrandSection/tests/__snapshots__/logo-brand-section-default.snap.png +0 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/logo-brand-section-mobile.snap.png +0 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/logo-brand-section-reduced.snap.png +0 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/logo-brand-section-with-title.snap.png +0 -0
- package/src/components/LunarCalendar/tests/LunarCalendar.visual.cy.ts +36 -0
- package/src/components/LunarCalendar/tests/__snapshots__/lunar-calendar-default.snap.png +0 -0
- package/src/components/LunarCalendar/tests/__snapshots__/lunar-calendar-required.snap.png +0 -0
- package/src/components/LunarCalendar/tests/__snapshots__/lunar-calendar-with-value.snap.png +0 -0
- package/src/components/LunarCalendar/tests/useLunarCalendarRules.spec.ts +184 -0
- package/src/components/MaintenancePage/tests/MaintenancePage.visual.cy.ts +22 -0
- package/src/components/MaintenancePage/tests/__snapshots__/maintenance-page-custom.snap.png +0 -0
- package/src/components/MaintenancePage/tests/__snapshots__/maintenance-page-default.snap.png +0 -0
- package/src/components/MonthPicker/MonthPickerVisual/MonthSelector.vue +3 -3
- package/src/components/MonthPicker/MonthPickerVisual/VisualPickerFooter.vue +1 -1
- package/src/components/MonthPicker/MonthPickerVisual/VisualPickerHeader.vue +2 -2
- package/src/components/MonthPicker/MonthPickerVisual/YearSelector.vue +1 -1
- package/src/components/MonthPicker/tests/MonthPicker.visual.cy.ts +37 -0
- package/src/components/MonthPicker/tests/__snapshots__/MonthPicker.spec.ts.snap +2 -0
- package/src/components/MonthPicker/tests/__snapshots__/month-picker-default.snap.png +0 -0
- package/src/components/MonthPicker/tests/__snapshots__/month-picker-disabled.snap.png +0 -0
- package/src/components/MonthPicker/tests/__snapshots__/month-picker-readonly.snap.png +0 -0
- package/src/components/MonthPicker/tests/__snapshots__/month-picker-with-value.snap.png +0 -0
- package/src/components/NirField/NirField.stories.ts +40 -682
- package/src/components/NirField/NirField.vue +101 -35
- package/src/components/NirField/tests/NirField.spec.ts +135 -14
- package/src/components/NirField/tests/NirField.visual.cy.ts +28 -0
- package/src/components/NirField/tests/__snapshots__/nir-field-complex.snap.png +0 -0
- package/src/components/NirField/tests/__snapshots__/nir-field-default.snap.png +0 -0
- package/src/components/NirField/tests/__snapshots__/nir-field-with-key.snap.png +0 -0
- package/src/components/NirField/tests/useNirValidation.spec.ts +168 -0
- package/src/components/NirField/useNirValidation.ts +28 -2
- package/src/components/NirField/validation/Validation.stories.ts +866 -0
- package/src/components/NotFoundPage/tests/NotFoundPage.visual.cy.ts +28 -0
- package/src/components/NotFoundPage/tests/__snapshots__/not-found-page-custom-btn.snap.png +0 -0
- package/src/components/NotFoundPage/tests/__snapshots__/not-found-page-default.snap.png +0 -0
- package/src/components/NotFoundPage/tests/__snapshots__/not-found-page-no-btn.snap.png +0 -0
- package/src/components/NotificationBar/Notification/Notification.vue +12 -12
- package/src/components/NotificationBar/NotificationBar.stories.ts +8 -8
- package/src/components/NotificationBar/tests/NotificationBar.visual.cy.ts +54 -0
- package/src/components/NotificationBar/tests/__snapshots__/notification-bar-bottom.snap.png +0 -0
- package/src/components/NotificationBar/tests/__snapshots__/notification-bar-info.snap.png +0 -0
- package/src/components/NotificationBar/tests/__snapshots__/notification-bar-multiple.snap.png +0 -0
- package/src/components/PageContainer/tests/PageContainer.visual.cy.ts +33 -0
- package/src/components/PageContainer/tests/__snapshots__/page-container-color.snap.png +0 -0
- package/src/components/PageContainer/tests/__snapshots__/page-container-default.snap.png +0 -0
- package/src/components/PageContainer/tests/__snapshots__/page-container-md.snap.png +0 -0
- package/src/components/PaginatedTable/Pagination.vue +2 -2
- package/src/components/PaginatedTable/accessibilite/Accessibility.mdx +99 -7
- package/src/components/PaginatedTable/tests/PaginatedTable.visual.cy.ts +41 -0
- package/src/components/PaginatedTable/tests/__snapshots__/paginated-table-default.snap.png +0 -0
- package/src/components/PaginatedTable/tests/__snapshots__/paginated-table-server.snap.png +0 -0
- package/src/components/PasswordField/PasswordField.mdx +5 -52
- package/src/components/PasswordField/PasswordField.stories.ts +74 -931
- package/src/components/PasswordField/PasswordField.vue +128 -199
- package/src/components/PasswordField/Validation/Validation.stories.ts +1295 -0
- package/src/components/PasswordField/locales.ts +2 -0
- package/src/components/PasswordField/tests/PasswordField.spec.ts +147 -109
- package/src/components/PasswordField/tests/PasswordField.visual.cy.ts +49 -0
- package/src/components/PasswordField/tests/__snapshots__/password-field-default.snap.png +0 -0
- package/src/components/PasswordField/tests/__snapshots__/password-field-disabled.snap.png +0 -0
- package/src/components/PasswordField/tests/__snapshots__/password-field-required.snap.png +0 -0
- package/src/components/PasswordField/tests/__snapshots__/password-field-underlined.snap.png +0 -0
- package/src/components/PasswordField/types.ts +17 -0
- package/src/components/PasswordField/usePasswordFieldValidation.ts +100 -0
- package/src/components/PeriodField/PeriodField.stories.ts +3 -1
- package/src/components/PeriodField/PeriodField.vue +1 -1
- package/src/components/PeriodField/tests/PeriodField.visual.cy.ts +39 -0
- package/src/components/PeriodField/tests/__snapshots__/period-field-default.snap.png +0 -0
- package/src/components/PeriodField/tests/__snapshots__/period-field-no-calendar.snap.png +0 -0
- package/src/components/PeriodField/tests/__snapshots__/period-field-required.snap.png +0 -0
- package/src/components/PeriodField/tests/__snapshots__/period-field-with-value.snap.png +0 -0
- package/src/components/PhoneField/PhoneField.vue +2 -2
- package/src/components/PhoneField/tests/PhoneField.spec.ts +1 -0
- package/src/components/PhoneField/tests/PhoneField.visual.cy.ts +28 -0
- package/src/components/PhoneField/tests/__snapshots__/phone-field-default.snap.png +0 -0
- package/src/components/PhoneField/tests/__snapshots__/phone-field-with-country-code.snap.png +0 -0
- package/src/components/PhoneField/tests/__snapshots__/phone-field-with-value.snap.png +0 -0
- package/src/components/RangeField/RangeSlider/RangeSlider.vue +2 -2
- package/src/components/RangeField/RangeSlider/Tooltip/Tooltip.vue +1 -1
- package/src/components/RangeField/tests/__snapshots__/range-field-custom-bg.snap.png +0 -0
- package/src/components/RangeField/tests/__snapshots__/range-field-custom-range.snap.png +0 -0
- package/src/components/RangeField/tests/__snapshots__/range-field-default.snap.png +0 -0
- package/src/components/RangeField/tests/__snapshots__/range-field-step.snap.png +0 -0
- package/src/components/RangeField/tests/__snapshots__/range-field-with-label.snap.png +0 -0
- package/src/components/RatingPicker/tests/RatingPicker.visual.cy.ts +52 -0
- package/src/components/RatingPicker/tests/__snapshots__/rating-picker-emotion.snap.png +0 -0
- package/src/components/RatingPicker/tests/__snapshots__/rating-picker-number.snap.png +0 -0
- package/src/components/RatingPicker/tests/__snapshots__/rating-picker-readonly.snap.png +0 -0
- package/src/components/RatingPicker/tests/__snapshots__/rating-picker-stars.snap.png +0 -0
- package/src/components/SearchListField/SearchListField.mdx +1 -1
- package/src/components/SearchListField/SearchListField.stories.ts +1 -1
- package/src/components/SearchListField/SearchListField.vue +9 -4
- package/src/components/SearchListField/tests/SearchListField.spec.ts +127 -0
- package/src/components/SearchListField/tests/SearchListField.visual.cy.ts +35 -0
- package/src/components/SearchListField/tests/__snapshots__/search-list-field-default.snap.png +0 -0
- package/src/components/SearchListField/tests/__snapshots__/search-list-field-with-selection.snap.png +0 -0
- package/src/components/SkipLink/tests/SkipLink.visual.cy.ts +16 -0
- package/src/components/SkipLink/tests/__snapshots__/skip-link-focused.snap.png +0 -0
- package/src/components/SocialMediaLinks/tests/SocialMediaLinks.visual.cy.ts +33 -0
- package/src/components/SocialMediaLinks/tests/__snapshots__/social-media-links-default.snap.png +0 -0
- package/src/components/SocialMediaLinks/tests/__snapshots__/social-media-links-no-native-heading.snap.png +0 -0
- package/src/components/StatusPage/tests/StatusPage.spec.ts +149 -0
- package/src/components/StatusPage/tests/StatusPage.visual.cy.ts +47 -0
- package/src/components/StatusPage/tests/__snapshots__/status-page-default.snap.png +0 -0
- package/src/components/StatusPage/tests/__snapshots__/status-page-full.snap.png +0 -0
- package/src/components/StatusPage/tests/__snapshots__/status-page-no-btn.snap.png +0 -0
- package/src/components/SubHeader/SubHeader.vue +1 -1
- package/src/components/SubHeader/tests/SubHeader.visual.cy.ts +48 -0
- package/src/components/SubHeader/tests/__snapshots__/sub-header-default.snap.png +0 -0
- package/src/components/SubHeader/tests/__snapshots__/sub-header-loading.snap.png +0 -0
- package/src/components/SubHeader/tests/__snapshots__/sub-header-no-back-btn.snap.png +0 -0
- package/src/components/SubHeader/tests/__snapshots__/sub-header-with-subtitle.snap.png +0 -0
- package/src/components/SyAlert/SyAlert.vue +23 -23
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-closable.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-error.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-info.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-success.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-variant-outlined.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-variant-tonal.snap.png +0 -0
- package/src/components/SyAlert/tests/__snapshots__/sy-alert-warning.snap.png +0 -0
- package/src/components/SyHeading/tests/SyHeading.visual.cy.ts +33 -0
- package/src/components/SyHeading/tests/__snapshots__/sy-heading-level-1.snap.png +0 -0
- package/src/components/SyHeading/tests/__snapshots__/sy-heading-level-2.snap.png +0 -0
- package/src/components/SyHeading/tests/__snapshots__/sy-heading-level-3.snap.png +0 -0
- package/src/components/SyTextArea/SyTextArea.stories.ts +202 -131
- package/src/components/SyTextArea/SyTextArea.vue +242 -83
- package/src/components/SyTextArea/composables/useSyTextAreaValidation.ts +81 -0
- package/src/components/SyTextArea/locales.ts +1 -0
- package/src/components/SyTextArea/tests/SyTextArea.a11y.spec.ts +18 -0
- package/src/components/SyTextArea/tests/SyTextArea.spec.ts +583 -1
- package/src/components/SyTextArea/tests/SyTextArea.visual.cy.ts +48 -0
- package/src/components/SyTextArea/tests/__snapshots__/sy-textarea-default.snap.png +0 -0
- package/src/components/SyTextArea/tests/__snapshots__/sy-textarea-filled.snap.png +0 -0
- package/src/components/SyTextArea/tests/__snapshots__/sy-textarea-required.snap.png +0 -0
- package/src/components/SyTextArea/tests/__snapshots__/sy-textarea-with-value.snap.png +0 -0
- package/src/components/SyTextArea/useDefaultValidationRules.ts +2 -7
- package/src/components/SyTextArea/validation/Validation.stories.ts +776 -0
- package/src/components/TableToolbar/TableToolbar.vue +6 -6
- package/src/components/TableToolbar/accessibilite/Accessibility.mdx +81 -7
- package/src/components/TableToolbar/tests/TableToolbar.visual.cy.ts +49 -0
- package/src/components/TableToolbar/tests/__snapshots__/table-toolbar-default.snap.png +0 -0
- package/src/components/TableToolbar/tests/__snapshots__/table-toolbar-filtered.snap.png +0 -0
- package/src/components/TableToolbar/tests/__snapshots__/table-toolbar-loading.snap.png +0 -0
- package/src/components/TableToolbar/tests/__snapshots__/table-toolbar-with-add-btn.snap.png +0 -0
- package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +163 -0
- package/src/components/Tables/SyServerTable/SyServerTable.vue +5 -4
- package/src/components/Tables/SyServerTable/accessibilite/Accessibility.mdx +114 -7
- package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +67 -0
- package/src/components/Tables/SyServerTable/tests/SyServerTable.visual.cy.ts +58 -0
- package/src/components/Tables/SyServerTable/tests/__snapshots__/sy-server-table-default.snap.png +0 -0
- package/src/components/Tables/SyServerTable/tests/__snapshots__/sy-server-table-loading.snap.png +0 -0
- package/src/components/Tables/SyServerTable/tests/__snapshots__/sy-server-table-with-select.snap.png +0 -0
- package/src/components/Tables/SyTable/SyTable.stories.ts +94 -0
- package/src/components/Tables/SyTable/SyTable.vue +2 -1
- package/src/components/Tables/SyTable/accessibilite/Accessibility.mdx +116 -7
- package/src/components/Tables/SyTable/tests/SyTable.spec.ts +64 -0
- package/src/components/Tables/SyTable/tests/SyTable.visual.cy.ts +70 -0
- package/src/components/Tables/SyTable/tests/__snapshots__/sy-table-compact.snap.png +0 -0
- package/src/components/Tables/SyTable/tests/__snapshots__/sy-table-default.snap.png +0 -0
- package/src/components/Tables/SyTable/tests/__snapshots__/sy-table-striped.snap.png +0 -0
- package/src/components/Tables/SyTable/tests/__snapshots__/sy-table-with-select.snap.png +0 -0
- package/src/components/Tables/common/TableHeader.vue +2 -2
- package/src/components/Tables/common/filters/logics/tests/NumberFilterLogic.spec.ts +176 -0
- package/src/components/Tables/common/filters/logics/tests/SelectFilterLogic.spec.ts +111 -0
- package/src/components/Tables/common/tableStyles.scss +10 -10
- package/src/components/Tables/common/tests/SyTableFilter.spec.ts +8 -1
- package/src/components/Tables/common/tests/filterByRange.spec.ts +23 -22
- package/src/components/Tables/common/types.ts +2 -0
- package/src/components/ToolbarContainer/tests/ToolbarContainer.visual.cy.ts +34 -0
- package/src/components/ToolbarContainer/tests/__snapshots__/toolbar-container-default.snap.png +0 -0
- package/src/components/ToolbarContainer/tests/__snapshots__/toolbar-container-links.snap.png +0 -0
- package/src/components/UploadWorkflow/tests/UploadWorkflow.spec.ts +3 -2
- package/src/components/UploadWorkflow/tests/UploadWorkflow.visual.cy.ts +39 -0
- package/src/components/UploadWorkflow/tests/__snapshots__/upload-workflow-default.snap.png +0 -0
- package/src/components/UploadWorkflow/tests/__snapshots__/upload-workflow-with-title.snap.png +0 -0
- package/src/components/UserMenuBtn/tests/UserMenuBtn.visual.cy.ts +42 -0
- package/src/components/UserMenuBtn/tests/__snapshots__/user-menu-btn-default.snap.png +0 -0
- package/src/components/UserMenuBtn/tests/__snapshots__/user-menu-btn-no-logout.snap.png +0 -0
- package/src/components/UserMenuBtn/tests/__snapshots__/user-menu-btn-with-name.snap.png +0 -0
- package/src/components/index.ts +1 -0
- package/src/composables/date/tests/useDateFormatDayjs.spec.ts +31 -0
- package/src/composables/date/tests/useHolidayDay.spec.ts +109 -0
- package/src/composables/rules/tests/useFieldValidation.spec.ts +374 -0
- package/src/composables/tests/useError.spec.ts +30 -0
- package/src/composables/tests/useFormFieldErrorHandling.spec.ts +234 -0
- package/src/composables/unifyValidation/documentationValidationProps.ts +6 -6
- package/src/composables/unifyValidation/tests/documentationValidationProps.spec.ts +177 -0
- package/src/composables/unifyValidation/tests/useCustomValidation.spec.ts +30 -0
- package/src/composables/unifyValidation/tests/useValidation.spec.ts +6 -2
- package/src/composables/unifyValidation/useCustomValidation.ts +19 -9
- package/src/composables/unifyValidation/useValidation.ts +35 -32
- package/src/composables/useFilterable/useFilterable.spec.ts +139 -134
- package/src/composables/useFilterable/useFilterable.ts +17 -24
- package/src/composables/useFormFieldErrorHandling.ts +3 -3
- package/src/composables/validation/tests/useFormValidation.spec.ts +11 -2
- package/src/composables/validation/tests/useValidatable.spec.ts +16 -6
- package/src/composables/validation/tests/useValidation.spec.ts +2 -2
- package/src/composables/validation/useValidation.ts +1 -1
- package/src/composantsVuetify/VBtn/VBtn.mdx +9 -39
- package/src/composantsVuetify/VBtn/v-btn.stories.ts +26 -86
- package/src/composantsVuetify/VCard/VCard.mdx +8 -0
- package/src/composantsVuetify/VCard/v-card.stories.ts +191 -1
- package/src/composantsVuetify/VStepper/VStepper.mdx +56 -0
- package/src/composantsVuetify/VStepper/v-stepper.stories.ts +563 -0
- package/src/designTokens/tokens/amelipro/apContextual.ts +6 -0
- package/src/designTokens/tokens/amelipro/apDarkTheme.ts +2 -2
- package/src/designTokens/tokens/amelipro/apLightTheme.ts +73 -103
- package/src/designTokens/tokens/amelipro/apSemantic.ts +2 -2
- package/src/designTokens/tokens/baseContextualTokens.ts +1 -6
- package/src/designTokens/tokens/baseTokens.ts +232 -0
- package/src/designTokens/tokens/cnam/cnamContextual.ts +6 -0
- package/src/designTokens/tokens/cnam/cnamDarkTheme.ts +2 -2
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +76 -104
- package/src/designTokens/tokens/pa/paDarkTheme.ts +2 -2
- package/src/designTokens/tokens/pa/paLightTheme.ts +74 -99
- package/src/designTokens/tokens/pa/paSemantic.ts +2 -0
- package/src/designTokens/tokens/semanticTokens.ts +114 -0
- package/src/stories/Accessibilite/DesignSystem/a11y-status.json +1 -1
- package/src/stories/Components/Components.stories.ts +68 -13
- package/src/stories/Demarrer/Releases.stories.ts +45 -2
- package/src/stories/DesignTokens/ColorIntegrationExample.vue +2 -3
- package/src/stories/DesignTokens/Colors.mdx +8 -8
- package/src/stories/DesignTokens/colors.stories.ts +257 -1081
- package/src/stories/EcoConception/EcoBestPracticesDoc.vue +930 -0
- package/src/stories/EcoConception/EcoBestPratices.mdx +38 -0
- package/src/stories/EcoConception/Introduction.mdx +8 -1
- package/src/stories/EcoConception/datas/bonnes_pratiques_essentielles.json +1018 -0
- package/src/stories/EcoConception/ecoconception-best-practices.stories.ts +20 -0
- package/src/stories/GuideDuDev/Amelipro.mdx +9 -1
- package/src/stories/GuideDuDev/Amelipro.stories.ts +955 -168
- package/src/stories/GuideDuDev/PortailAgent.stories.ts +0 -1
- package/src/utils/amelipro/toKebabCase/tests/toKebabCase.spec.ts +52 -0
- package/src/utils/formatNir/tests/formatNir.spec.ts +34 -0
- package/src/utils/functions/deepCopy/index.ts +2 -3
- package/src/utils/tests/insertAt.spec.ts +44 -0
- package/dist/apLightTheme-DS0Uy44H.js +0 -954
- package/dist/components/Customs/SyCheckbox/locales.d.ts +0 -3
- package/dist/components/RatingPicker/tests/RatingPicker.a11y.spect.d.ts +0 -1
- package/dist/components/SyHeading/SyHeading.a11y.test.d.ts +0 -1
- package/dist/components/SyHeading/SyHeading.test.d.ts +0 -1
- package/dist/main-BsJ9ec3i.js +0 -38954
- package/src/components/Customs/SyCheckbox/locales.ts +0 -3
- package/src/components/Customs/SyTextField/types.d.ts +0 -4
- package/src/components/DatePicker/CalendarMode/tests/DatePicker.events.spec.ts +0 -178
- /package/src/components/RatingPicker/tests/{RatingPicker.a11y.spect.ts → RatingPicker.a11y.spec.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComponentPublicInstance, nextTick, Ref } from 'vue';
|
|
2
2
|
import { DateInput, DateModelValue } from '../../../composables/date/useDateInitializationDayjs';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
autoClamp?: boolean;
|
|
@@ -63,9 +63,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
63
63
|
currentMonth: Ref<string | null, string | null>;
|
|
64
64
|
currentMonthName: Ref<string | null, string | null>;
|
|
65
65
|
toggleDatePicker: () => void;
|
|
66
|
-
validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult |
|
|
66
|
+
validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => Promise<import('../../../composables/validation/useValidation').ValidationResult> | import('../../../composables/validation/useValidation').ValidationResult;
|
|
67
67
|
clearValidation: () => void;
|
|
68
|
-
validateDates: (forceValidation?: boolean) => import('../../../composables/validation/useValidation').ValidationResult | Promise<import('../../../composables/validation/useValidation').ValidationResult>;
|
|
68
|
+
validateDates: (forceValidation?: boolean) => import('../../../composables/validation/useValidation').ValidationResult | Promise<import('../../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
69
69
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
70
70
|
formatted: string;
|
|
71
71
|
cursorPos: number;
|
|
@@ -106,10 +106,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
106
106
|
required: boolean;
|
|
107
107
|
showSuccessMessages: boolean;
|
|
108
108
|
disableErrorHandling: boolean;
|
|
109
|
-
hint: string;
|
|
110
|
-
displayAsterisk: boolean;
|
|
111
|
-
noIcon: boolean;
|
|
112
|
-
isValidateOnBlur: boolean;
|
|
113
109
|
customRules: {
|
|
114
110
|
type: string;
|
|
115
111
|
options: any;
|
|
@@ -118,6 +114,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
118
114
|
type: string;
|
|
119
115
|
options: any;
|
|
120
116
|
}[];
|
|
117
|
+
hint: string;
|
|
118
|
+
displayAsterisk: boolean;
|
|
119
|
+
noIcon: boolean;
|
|
120
|
+
isValidateOnBlur: boolean;
|
|
121
121
|
persistentHint: boolean;
|
|
122
122
|
format: string;
|
|
123
123
|
autoClamp: boolean;
|
|
@@ -168,6 +168,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
168
168
|
required?: boolean;
|
|
169
169
|
showSuccessMessages?: boolean;
|
|
170
170
|
title?: string | false;
|
|
171
|
+
skipInternalValidation?: boolean;
|
|
171
172
|
}> & Readonly<{
|
|
172
173
|
onInput?: ((value: string) => any) | undefined;
|
|
173
174
|
onBlur?: (() => any) | undefined;
|
|
@@ -196,11 +197,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
196
197
|
required: boolean;
|
|
197
198
|
showSuccessMessages: boolean;
|
|
198
199
|
disableErrorHandling: boolean;
|
|
200
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
201
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
199
202
|
hint: string;
|
|
200
203
|
noIcon: boolean;
|
|
201
204
|
isValidateOnBlur: boolean;
|
|
202
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
203
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
204
205
|
persistentHint: boolean;
|
|
205
206
|
format: string;
|
|
206
207
|
autoClamp: boolean;
|
|
@@ -211,21 +212,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
211
212
|
displayPrependIcon: boolean;
|
|
212
213
|
externalErrorMessages: string[];
|
|
213
214
|
isOutlined: boolean;
|
|
215
|
+
skipInternalValidation: boolean;
|
|
214
216
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
215
217
|
inputRef: ({
|
|
216
218
|
$: import('vue').ComponentInternalInstance;
|
|
217
219
|
$data: {};
|
|
218
220
|
$props: {
|
|
219
221
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
220
|
-
readonly prependIcon?: import('
|
|
221
|
-
readonly appendIcon?: import('
|
|
222
|
-
readonly prependInnerIcon?: import('
|
|
223
|
-
readonly appendInnerIcon?: import('
|
|
222
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
223
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
224
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
225
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
224
226
|
readonly prependTooltip?: string | undefined;
|
|
225
227
|
readonly appendTooltip?: string | undefined;
|
|
226
228
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
227
|
-
readonly variantStyle?: import('
|
|
228
|
-
readonly color?: import('
|
|
229
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
230
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
229
231
|
readonly isClearable?: boolean | undefined;
|
|
230
232
|
readonly showDivider?: boolean | undefined;
|
|
231
233
|
readonly label?: string | undefined;
|
|
@@ -242,7 +244,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
242
244
|
readonly disabled?: boolean | undefined;
|
|
243
245
|
readonly isFlat?: boolean | undefined;
|
|
244
246
|
readonly isFocused?: boolean | undefined;
|
|
245
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
246
247
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
247
248
|
readonly hint?: string | undefined;
|
|
248
249
|
readonly id?: string | undefined;
|
|
@@ -273,22 +274,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
273
274
|
readonly helpText?: string | undefined;
|
|
274
275
|
readonly maxlength?: string | number | undefined;
|
|
275
276
|
readonly title?: string | false | undefined;
|
|
276
|
-
readonly
|
|
277
|
-
readonly
|
|
278
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
279
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
280
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
281
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
277
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
278
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
282
279
|
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
283
|
-
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
284
280
|
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
281
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
282
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
285
283
|
readonly errorMessages?: string[] | null | undefined;
|
|
286
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
287
|
-
readonly successMessages?: string[] | null | undefined;
|
|
288
284
|
readonly hasError?: boolean | undefined;
|
|
289
|
-
readonly hasWarning?: boolean | undefined;
|
|
290
285
|
readonly hasSuccess?: boolean | undefined;
|
|
286
|
+
readonly hasWarning?: boolean | undefined;
|
|
287
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
291
288
|
readonly maxErrors?: number | undefined;
|
|
289
|
+
readonly required?: boolean | undefined;
|
|
290
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
291
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
292
|
+
readonly successMessages?: string[] | null | undefined;
|
|
293
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
294
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
292
295
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
293
296
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
294
297
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -681,7 +684,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
681
684
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
682
685
|
modelValue?: unknown;
|
|
683
686
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
684
|
-
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "
|
|
687
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "hideDetails" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
685
688
|
$: import('vue').ComponentInternalInstance;
|
|
686
689
|
$data: {};
|
|
687
690
|
$props: Partial<{
|
|
@@ -1418,7 +1421,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1418
1421
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
1419
1422
|
modelValue?: unknown;
|
|
1420
1423
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
1421
|
-
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "
|
|
1424
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "hideDetails" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
1422
1425
|
$: import('vue').ComponentInternalInstance;
|
|
1423
1426
|
$data: {};
|
|
1424
1427
|
$props: Partial<{
|
|
@@ -1733,65 +1736,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1733
1736
|
$host: Element | null;
|
|
1734
1737
|
$emit: ((event: "input", ...args: any[]) => void) & ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "keydown", ...args: any[]) => void) & ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
|
|
1735
1738
|
$el: any;
|
|
1736
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1737
|
-
modelValue?: string | number | null | undefined;
|
|
1738
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1739
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1740
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1741
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1742
|
-
prependTooltip?: string;
|
|
1743
|
-
appendTooltip?: string;
|
|
1744
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
1745
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
1746
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
1747
|
-
isClearable?: boolean;
|
|
1748
|
-
showDivider?: boolean;
|
|
1749
|
-
label?: string;
|
|
1750
|
-
readonly?: boolean;
|
|
1751
|
-
isActive?: boolean;
|
|
1752
|
-
baseColor?: string;
|
|
1753
|
-
bgColor?: string;
|
|
1754
|
-
centerAffix?: boolean;
|
|
1755
|
-
counter?: string | number | boolean;
|
|
1756
|
-
counterValue?: number | ((value: any) => number);
|
|
1757
|
-
density?: "default" | "comfortable" | "compact";
|
|
1758
|
-
direction?: "horizontal" | "vertical";
|
|
1759
|
-
isDirty?: boolean;
|
|
1760
|
-
disabled?: boolean;
|
|
1761
|
-
isFlat?: boolean;
|
|
1762
|
-
isFocused?: boolean;
|
|
1763
|
-
areDetailsHidden?: boolean | "auto";
|
|
1764
|
-
areSpinButtonsHidden?: boolean;
|
|
1765
|
-
hint?: string;
|
|
1766
|
-
id?: string;
|
|
1767
|
-
loading?: string | boolean;
|
|
1768
|
-
maxWidth?: string | number;
|
|
1769
|
-
messages?: string | string[];
|
|
1770
|
-
minWidth?: string | number;
|
|
1771
|
-
name?: string;
|
|
1772
|
-
displayPersistentClear?: boolean;
|
|
1773
|
-
displayPersistentCounter?: boolean;
|
|
1774
|
-
displayPersistentHint?: boolean;
|
|
1775
|
-
displayPersistentPlaceholder?: boolean;
|
|
1776
|
-
placeholder?: string;
|
|
1777
|
-
prefix?: string;
|
|
1778
|
-
isReversed?: boolean;
|
|
1779
|
-
role?: string;
|
|
1780
|
-
rounded?: string | number | boolean;
|
|
1781
|
-
isOnSingleLine?: boolean;
|
|
1782
|
-
suffix?: string;
|
|
1783
|
-
theme?: string;
|
|
1784
|
-
isTiled?: boolean;
|
|
1785
|
-
type?: string;
|
|
1786
|
-
width?: string | number;
|
|
1787
|
-
displayAsterisk?: boolean;
|
|
1788
|
-
noIcon?: boolean;
|
|
1789
|
-
disableClickButton?: boolean;
|
|
1790
|
-
autocomplete?: string;
|
|
1791
|
-
helpText?: string;
|
|
1792
|
-
maxlength?: string | number;
|
|
1793
|
-
title?: string | false;
|
|
1794
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1739
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
1795
1740
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1796
1741
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1797
1742
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -1801,7 +1746,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1801
1746
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1802
1747
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1803
1748
|
}>, {
|
|
1804
|
-
validateOnSubmit: (
|
|
1749
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
1805
1750
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1806
1751
|
input: (...args: any[]) => void;
|
|
1807
1752
|
blur: (...args: any[]) => void;
|
|
@@ -1817,10 +1762,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1817
1762
|
title: string | false;
|
|
1818
1763
|
width: string | number;
|
|
1819
1764
|
role: string;
|
|
1820
|
-
color: import('
|
|
1765
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
1821
1766
|
theme: string;
|
|
1822
1767
|
disabled: boolean;
|
|
1823
1768
|
placeholder: string;
|
|
1769
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1824
1770
|
density: "default" | "comfortable" | "compact";
|
|
1825
1771
|
rounded: string | number | boolean;
|
|
1826
1772
|
maxWidth: string | number;
|
|
@@ -1841,12 +1787,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1841
1787
|
disableErrorHandling: boolean;
|
|
1842
1788
|
errorMessages: string[] | null;
|
|
1843
1789
|
maxErrors: number;
|
|
1790
|
+
hasError: boolean;
|
|
1791
|
+
hasWarning: boolean;
|
|
1792
|
+
hasSuccess: boolean;
|
|
1793
|
+
useVuetifyValidation: boolean;
|
|
1794
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1795
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1796
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1844
1797
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1845
1798
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1846
1799
|
prependTooltip: string;
|
|
1847
1800
|
appendTooltip: string;
|
|
1848
1801
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1849
|
-
variantStyle: import('
|
|
1802
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
1850
1803
|
isClearable: boolean;
|
|
1851
1804
|
centerAffix: boolean;
|
|
1852
1805
|
counter: string | number | boolean;
|
|
@@ -1855,7 +1808,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1855
1808
|
isDirty: boolean;
|
|
1856
1809
|
isFlat: boolean;
|
|
1857
1810
|
isFocused: boolean;
|
|
1858
|
-
areDetailsHidden: boolean | "auto";
|
|
1859
1811
|
areSpinButtonsHidden: boolean;
|
|
1860
1812
|
hint: string;
|
|
1861
1813
|
messages: string | string[];
|
|
@@ -1873,16 +1825,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1873
1825
|
autocomplete: string;
|
|
1874
1826
|
helpText: string;
|
|
1875
1827
|
maxlength: string | number;
|
|
1828
|
+
hideDetails: boolean | "auto";
|
|
1876
1829
|
isValidateOnBlur: boolean;
|
|
1877
|
-
useVuetifyValidation: boolean;
|
|
1878
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1879
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1880
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1881
|
-
warningMessages: string[] | null;
|
|
1882
1830
|
successMessages: string[] | null;
|
|
1883
|
-
|
|
1884
|
-
hasWarning: boolean;
|
|
1885
|
-
hasSuccess: boolean;
|
|
1831
|
+
warningMessages: string[] | null;
|
|
1886
1832
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1887
1833
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1888
1834
|
created?: (() => void) | (() => void)[];
|
|
@@ -1909,10 +1855,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1909
1855
|
title: string | false;
|
|
1910
1856
|
width: string | number;
|
|
1911
1857
|
role: string;
|
|
1912
|
-
color: import('
|
|
1858
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
1913
1859
|
theme: string;
|
|
1914
1860
|
disabled: boolean;
|
|
1915
1861
|
placeholder: string;
|
|
1862
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1916
1863
|
density: "default" | "comfortable" | "compact";
|
|
1917
1864
|
rounded: string | number | boolean;
|
|
1918
1865
|
maxWidth: string | number;
|
|
@@ -1933,12 +1880,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1933
1880
|
disableErrorHandling: boolean;
|
|
1934
1881
|
errorMessages: string[] | null;
|
|
1935
1882
|
maxErrors: number;
|
|
1883
|
+
hasError: boolean;
|
|
1884
|
+
hasWarning: boolean;
|
|
1885
|
+
hasSuccess: boolean;
|
|
1886
|
+
useVuetifyValidation: boolean;
|
|
1887
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1888
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1889
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1936
1890
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1937
1891
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1938
1892
|
prependTooltip: string;
|
|
1939
1893
|
appendTooltip: string;
|
|
1940
1894
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1941
|
-
variantStyle: import('
|
|
1895
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
1942
1896
|
isClearable: boolean;
|
|
1943
1897
|
centerAffix: boolean;
|
|
1944
1898
|
counter: string | number | boolean;
|
|
@@ -1947,7 +1901,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1947
1901
|
isDirty: boolean;
|
|
1948
1902
|
isFlat: boolean;
|
|
1949
1903
|
isFocused: boolean;
|
|
1950
|
-
areDetailsHidden: boolean | "auto";
|
|
1951
1904
|
areSpinButtonsHidden: boolean;
|
|
1952
1905
|
hint: string;
|
|
1953
1906
|
messages: string | string[];
|
|
@@ -1965,75 +1918,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1965
1918
|
autocomplete: string;
|
|
1966
1919
|
helpText: string;
|
|
1967
1920
|
maxlength: string | number;
|
|
1921
|
+
hideDetails: boolean | "auto";
|
|
1968
1922
|
isValidateOnBlur: boolean;
|
|
1969
|
-
useVuetifyValidation: boolean;
|
|
1970
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1971
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1972
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1973
|
-
warningMessages: string[] | null;
|
|
1974
1923
|
successMessages: string[] | null;
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
hasSuccess: boolean;
|
|
1978
|
-
}> & Omit<Readonly<{
|
|
1979
|
-
modelValue?: string | number | null | undefined;
|
|
1980
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1981
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1982
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1983
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1984
|
-
prependTooltip?: string;
|
|
1985
|
-
appendTooltip?: string;
|
|
1986
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
1987
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
1988
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
1989
|
-
isClearable?: boolean;
|
|
1990
|
-
showDivider?: boolean;
|
|
1991
|
-
label?: string;
|
|
1992
|
-
readonly?: boolean;
|
|
1993
|
-
isActive?: boolean;
|
|
1994
|
-
baseColor?: string;
|
|
1995
|
-
bgColor?: string;
|
|
1996
|
-
centerAffix?: boolean;
|
|
1997
|
-
counter?: string | number | boolean;
|
|
1998
|
-
counterValue?: number | ((value: any) => number);
|
|
1999
|
-
density?: "default" | "comfortable" | "compact";
|
|
2000
|
-
direction?: "horizontal" | "vertical";
|
|
2001
|
-
isDirty?: boolean;
|
|
2002
|
-
disabled?: boolean;
|
|
2003
|
-
isFlat?: boolean;
|
|
2004
|
-
isFocused?: boolean;
|
|
2005
|
-
areDetailsHidden?: boolean | "auto";
|
|
2006
|
-
areSpinButtonsHidden?: boolean;
|
|
2007
|
-
hint?: string;
|
|
2008
|
-
id?: string;
|
|
2009
|
-
loading?: string | boolean;
|
|
2010
|
-
maxWidth?: string | number;
|
|
2011
|
-
messages?: string | string[];
|
|
2012
|
-
minWidth?: string | number;
|
|
2013
|
-
name?: string;
|
|
2014
|
-
displayPersistentClear?: boolean;
|
|
2015
|
-
displayPersistentCounter?: boolean;
|
|
2016
|
-
displayPersistentHint?: boolean;
|
|
2017
|
-
displayPersistentPlaceholder?: boolean;
|
|
2018
|
-
placeholder?: string;
|
|
2019
|
-
prefix?: string;
|
|
2020
|
-
isReversed?: boolean;
|
|
2021
|
-
role?: string;
|
|
2022
|
-
rounded?: string | number | boolean;
|
|
2023
|
-
isOnSingleLine?: boolean;
|
|
2024
|
-
suffix?: string;
|
|
2025
|
-
theme?: string;
|
|
2026
|
-
isTiled?: boolean;
|
|
2027
|
-
type?: string;
|
|
2028
|
-
width?: string | number;
|
|
2029
|
-
displayAsterisk?: boolean;
|
|
2030
|
-
noIcon?: boolean;
|
|
2031
|
-
disableClickButton?: boolean;
|
|
2032
|
-
autocomplete?: string;
|
|
2033
|
-
helpText?: string;
|
|
2034
|
-
maxlength?: string | number;
|
|
2035
|
-
title?: string | false;
|
|
2036
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1924
|
+
warningMessages: string[] | null;
|
|
1925
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
2037
1926
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
2038
1927
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2039
1928
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2042,8 +1931,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2042
1931
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2043
1932
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2044
1933
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2045
|
-
}>, "validateOnSubmit" | ("type" | "label" | "title" | "width" | "role" | "color" | "theme" | "disabled" | "placeholder" | "density" | "rounded" | "maxWidth" | "minWidth" | "loading" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "id" | "name" | "modelValue" | "bgColor" | "isActive" | "required" | "prefix" | "showSuccessMessages" | "disableErrorHandling" | "errorMessages" | "maxErrors" | "
|
|
2046
|
-
validateOnSubmit: (
|
|
1934
|
+
}>, "validateOnSubmit" | ("type" | "label" | "title" | "width" | "role" | "color" | "theme" | "disabled" | "placeholder" | "locales" | "density" | "rounded" | "maxWidth" | "minWidth" | "loading" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "id" | "name" | "modelValue" | "bgColor" | "isActive" | "required" | "prefix" | "showSuccessMessages" | "disableErrorHandling" | "errorMessages" | "maxErrors" | "hasError" | "hasWarning" | "hasSuccess" | "useVuetifyValidation" | "customRules" | "customWarningRules" | "customSuccessRules" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "isClearable" | "centerAffix" | "counter" | "counterValue" | "direction" | "isDirty" | "isFlat" | "isFocused" | "areSpinButtonsHidden" | "hint" | "messages" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "isReversed" | "isOnSingleLine" | "suffix" | "isTiled" | "displayAsterisk" | "noIcon" | "disableClickButton" | "autocomplete" | "helpText" | "maxlength" | "hideDetails" | "isValidateOnBlur" | "successMessages" | "warningMessages")> & {
|
|
1935
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
2047
1936
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
2048
1937
|
$slots: {
|
|
2049
1938
|
prepend?(_: {}): any;
|
|
@@ -2088,6 +1977,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2088
1977
|
required?: boolean;
|
|
2089
1978
|
showSuccessMessages?: boolean;
|
|
2090
1979
|
title?: string | false;
|
|
1980
|
+
skipInternalValidation?: boolean;
|
|
2091
1981
|
}> & Readonly<{
|
|
2092
1982
|
onInput?: ((value: string) => any) | undefined;
|
|
2093
1983
|
onBlur?: (() => any) | undefined;
|
|
@@ -2110,11 +2000,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2110
2000
|
required: boolean;
|
|
2111
2001
|
showSuccessMessages: boolean;
|
|
2112
2002
|
disableErrorHandling: boolean;
|
|
2003
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2004
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2113
2005
|
hint: string;
|
|
2114
2006
|
noIcon: boolean;
|
|
2115
2007
|
isValidateOnBlur: boolean;
|
|
2116
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2117
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2118
2008
|
persistentHint: boolean;
|
|
2119
2009
|
format: string;
|
|
2120
2010
|
autoClamp: boolean;
|
|
@@ -2125,6 +2015,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2125
2015
|
displayPrependIcon: boolean;
|
|
2126
2016
|
externalErrorMessages: string[];
|
|
2127
2017
|
isOutlined: boolean;
|
|
2018
|
+
skipInternalValidation: boolean;
|
|
2128
2019
|
}> | null;
|
|
2129
2020
|
menuActivatorRef: HTMLDivElement;
|
|
2130
2021
|
dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -2154,6 +2045,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2154
2045
|
required?: boolean;
|
|
2155
2046
|
showSuccessMessages?: boolean;
|
|
2156
2047
|
title?: string | false;
|
|
2048
|
+
skipInternalValidation?: boolean;
|
|
2157
2049
|
}> & Readonly<{
|
|
2158
2050
|
onInput?: ((value: string) => any) | undefined;
|
|
2159
2051
|
onBlur?: (() => any) | undefined;
|
|
@@ -2182,11 +2074,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2182
2074
|
required: boolean;
|
|
2183
2075
|
showSuccessMessages: boolean;
|
|
2184
2076
|
disableErrorHandling: boolean;
|
|
2077
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2078
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2185
2079
|
hint: string;
|
|
2186
2080
|
noIcon: boolean;
|
|
2187
2081
|
isValidateOnBlur: boolean;
|
|
2188
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2189
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2190
2082
|
persistentHint: boolean;
|
|
2191
2083
|
format: string;
|
|
2192
2084
|
autoClamp: boolean;
|
|
@@ -2197,21 +2089,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2197
2089
|
displayPrependIcon: boolean;
|
|
2198
2090
|
externalErrorMessages: string[];
|
|
2199
2091
|
isOutlined: boolean;
|
|
2092
|
+
skipInternalValidation: boolean;
|
|
2200
2093
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2201
2094
|
inputRef: ({
|
|
2202
2095
|
$: import('vue').ComponentInternalInstance;
|
|
2203
2096
|
$data: {};
|
|
2204
2097
|
$props: {
|
|
2205
2098
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
2206
|
-
readonly prependIcon?: import('
|
|
2207
|
-
readonly appendIcon?: import('
|
|
2208
|
-
readonly prependInnerIcon?: import('
|
|
2209
|
-
readonly appendInnerIcon?: import('
|
|
2099
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2100
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2101
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2102
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2210
2103
|
readonly prependTooltip?: string | undefined;
|
|
2211
2104
|
readonly appendTooltip?: string | undefined;
|
|
2212
2105
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
2213
|
-
readonly variantStyle?: import('
|
|
2214
|
-
readonly color?: import('
|
|
2106
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
2107
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
2215
2108
|
readonly isClearable?: boolean | undefined;
|
|
2216
2109
|
readonly showDivider?: boolean | undefined;
|
|
2217
2110
|
readonly label?: string | undefined;
|
|
@@ -2228,7 +2121,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2228
2121
|
readonly disabled?: boolean | undefined;
|
|
2229
2122
|
readonly isFlat?: boolean | undefined;
|
|
2230
2123
|
readonly isFocused?: boolean | undefined;
|
|
2231
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
2232
2124
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
2233
2125
|
readonly hint?: string | undefined;
|
|
2234
2126
|
readonly id?: string | undefined;
|
|
@@ -2259,22 +2151,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2259
2151
|
readonly helpText?: string | undefined;
|
|
2260
2152
|
readonly maxlength?: string | number | undefined;
|
|
2261
2153
|
readonly title?: string | false | undefined;
|
|
2262
|
-
readonly
|
|
2263
|
-
readonly
|
|
2264
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
2265
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
2266
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
2267
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2154
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
2155
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
2268
2156
|
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2269
|
-
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2270
2157
|
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2158
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2159
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
2271
2160
|
readonly errorMessages?: string[] | null | undefined;
|
|
2272
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
2273
|
-
readonly successMessages?: string[] | null | undefined;
|
|
2274
2161
|
readonly hasError?: boolean | undefined;
|
|
2275
|
-
readonly hasWarning?: boolean | undefined;
|
|
2276
2162
|
readonly hasSuccess?: boolean | undefined;
|
|
2163
|
+
readonly hasWarning?: boolean | undefined;
|
|
2164
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
2277
2165
|
readonly maxErrors?: number | undefined;
|
|
2166
|
+
readonly required?: boolean | undefined;
|
|
2167
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2168
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
2169
|
+
readonly successMessages?: string[] | null | undefined;
|
|
2170
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
2171
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
2278
2172
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
2279
2173
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
2280
2174
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2667,7 +2561,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2667
2561
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2668
2562
|
modelValue?: unknown;
|
|
2669
2563
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
2670
|
-
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "
|
|
2564
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "hideDetails" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
2671
2565
|
$: import('vue').ComponentInternalInstance;
|
|
2672
2566
|
$data: {};
|
|
2673
2567
|
$props: Partial<{
|
|
@@ -3404,7 +3298,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3404
3298
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3405
3299
|
modelValue?: unknown;
|
|
3406
3300
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
3407
|
-
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "
|
|
3301
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "label" | "style" | "width" | "color" | "theme" | "class" | "disabled" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "density" | "maxWidth" | "minWidth" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "v-slot:append" | "v-slot:prepend" | "id" | "error" | "name" | "modelValue" | "onUpdate:modelValue" | "iconColor" | "errorMessages" | "focused" | "maxErrors" | "rules" | "validateOn" | "validationValue" | "centerAffix" | "direction" | "hint" | "messages" | "hideDetails" | "glow" | "hideSpinButtons" | "persistentHint" | "onUpdate:focused" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
3408
3302
|
$: import('vue').ComponentInternalInstance;
|
|
3409
3303
|
$data: {};
|
|
3410
3304
|
$props: Partial<{
|
|
@@ -3719,65 +3613,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3719
3613
|
$host: Element | null;
|
|
3720
3614
|
$emit: ((event: "input", ...args: any[]) => void) & ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "keydown", ...args: any[]) => void) & ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
|
|
3721
3615
|
$el: any;
|
|
3722
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
3723
|
-
modelValue?: string | number | null | undefined;
|
|
3724
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3725
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3726
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3727
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3728
|
-
prependTooltip?: string;
|
|
3729
|
-
appendTooltip?: string;
|
|
3730
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
3731
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
3732
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
3733
|
-
isClearable?: boolean;
|
|
3734
|
-
showDivider?: boolean;
|
|
3735
|
-
label?: string;
|
|
3736
|
-
readonly?: boolean;
|
|
3737
|
-
isActive?: boolean;
|
|
3738
|
-
baseColor?: string;
|
|
3739
|
-
bgColor?: string;
|
|
3740
|
-
centerAffix?: boolean;
|
|
3741
|
-
counter?: string | number | boolean;
|
|
3742
|
-
counterValue?: number | ((value: any) => number);
|
|
3743
|
-
density?: "default" | "comfortable" | "compact";
|
|
3744
|
-
direction?: "horizontal" | "vertical";
|
|
3745
|
-
isDirty?: boolean;
|
|
3746
|
-
disabled?: boolean;
|
|
3747
|
-
isFlat?: boolean;
|
|
3748
|
-
isFocused?: boolean;
|
|
3749
|
-
areDetailsHidden?: boolean | "auto";
|
|
3750
|
-
areSpinButtonsHidden?: boolean;
|
|
3751
|
-
hint?: string;
|
|
3752
|
-
id?: string;
|
|
3753
|
-
loading?: string | boolean;
|
|
3754
|
-
maxWidth?: string | number;
|
|
3755
|
-
messages?: string | string[];
|
|
3756
|
-
minWidth?: string | number;
|
|
3757
|
-
name?: string;
|
|
3758
|
-
displayPersistentClear?: boolean;
|
|
3759
|
-
displayPersistentCounter?: boolean;
|
|
3760
|
-
displayPersistentHint?: boolean;
|
|
3761
|
-
displayPersistentPlaceholder?: boolean;
|
|
3762
|
-
placeholder?: string;
|
|
3763
|
-
prefix?: string;
|
|
3764
|
-
isReversed?: boolean;
|
|
3765
|
-
role?: string;
|
|
3766
|
-
rounded?: string | number | boolean;
|
|
3767
|
-
isOnSingleLine?: boolean;
|
|
3768
|
-
suffix?: string;
|
|
3769
|
-
theme?: string;
|
|
3770
|
-
isTiled?: boolean;
|
|
3771
|
-
type?: string;
|
|
3772
|
-
width?: string | number;
|
|
3773
|
-
displayAsterisk?: boolean;
|
|
3774
|
-
noIcon?: boolean;
|
|
3775
|
-
disableClickButton?: boolean;
|
|
3776
|
-
autocomplete?: string;
|
|
3777
|
-
helpText?: string;
|
|
3778
|
-
maxlength?: string | number;
|
|
3779
|
-
title?: string | false;
|
|
3780
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3616
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
3781
3617
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
3782
3618
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3783
3619
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -3787,7 +3623,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3787
3623
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3788
3624
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3789
3625
|
}>, {
|
|
3790
|
-
validateOnSubmit: (
|
|
3626
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
3791
3627
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3792
3628
|
input: (...args: any[]) => void;
|
|
3793
3629
|
blur: (...args: any[]) => void;
|
|
@@ -3803,10 +3639,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3803
3639
|
title: string | false;
|
|
3804
3640
|
width: string | number;
|
|
3805
3641
|
role: string;
|
|
3806
|
-
color: import('
|
|
3642
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3807
3643
|
theme: string;
|
|
3808
3644
|
disabled: boolean;
|
|
3809
3645
|
placeholder: string;
|
|
3646
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
3810
3647
|
density: "default" | "comfortable" | "compact";
|
|
3811
3648
|
rounded: string | number | boolean;
|
|
3812
3649
|
maxWidth: string | number;
|
|
@@ -3827,12 +3664,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3827
3664
|
disableErrorHandling: boolean;
|
|
3828
3665
|
errorMessages: string[] | null;
|
|
3829
3666
|
maxErrors: number;
|
|
3667
|
+
hasError: boolean;
|
|
3668
|
+
hasWarning: boolean;
|
|
3669
|
+
hasSuccess: boolean;
|
|
3670
|
+
useVuetifyValidation: boolean;
|
|
3671
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3672
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3673
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3830
3674
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3831
3675
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3832
3676
|
prependTooltip: string;
|
|
3833
3677
|
appendTooltip: string;
|
|
3834
3678
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3835
|
-
variantStyle: import('
|
|
3679
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3836
3680
|
isClearable: boolean;
|
|
3837
3681
|
centerAffix: boolean;
|
|
3838
3682
|
counter: string | number | boolean;
|
|
@@ -3841,7 +3685,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3841
3685
|
isDirty: boolean;
|
|
3842
3686
|
isFlat: boolean;
|
|
3843
3687
|
isFocused: boolean;
|
|
3844
|
-
areDetailsHidden: boolean | "auto";
|
|
3845
3688
|
areSpinButtonsHidden: boolean;
|
|
3846
3689
|
hint: string;
|
|
3847
3690
|
messages: string | string[];
|
|
@@ -3859,16 +3702,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3859
3702
|
autocomplete: string;
|
|
3860
3703
|
helpText: string;
|
|
3861
3704
|
maxlength: string | number;
|
|
3705
|
+
hideDetails: boolean | "auto";
|
|
3862
3706
|
isValidateOnBlur: boolean;
|
|
3863
|
-
useVuetifyValidation: boolean;
|
|
3864
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3865
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3866
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3867
|
-
warningMessages: string[] | null;
|
|
3868
3707
|
successMessages: string[] | null;
|
|
3869
|
-
|
|
3870
|
-
hasWarning: boolean;
|
|
3871
|
-
hasSuccess: boolean;
|
|
3708
|
+
warningMessages: string[] | null;
|
|
3872
3709
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3873
3710
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3874
3711
|
created?: (() => void) | (() => void)[];
|
|
@@ -3895,10 +3732,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3895
3732
|
title: string | false;
|
|
3896
3733
|
width: string | number;
|
|
3897
3734
|
role: string;
|
|
3898
|
-
color: import('
|
|
3735
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3899
3736
|
theme: string;
|
|
3900
3737
|
disabled: boolean;
|
|
3901
3738
|
placeholder: string;
|
|
3739
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
3902
3740
|
density: "default" | "comfortable" | "compact";
|
|
3903
3741
|
rounded: string | number | boolean;
|
|
3904
3742
|
maxWidth: string | number;
|
|
@@ -3919,12 +3757,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3919
3757
|
disableErrorHandling: boolean;
|
|
3920
3758
|
errorMessages: string[] | null;
|
|
3921
3759
|
maxErrors: number;
|
|
3760
|
+
hasError: boolean;
|
|
3761
|
+
hasWarning: boolean;
|
|
3762
|
+
hasSuccess: boolean;
|
|
3763
|
+
useVuetifyValidation: boolean;
|
|
3764
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3765
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3766
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3922
3767
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3923
3768
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3924
3769
|
prependTooltip: string;
|
|
3925
3770
|
appendTooltip: string;
|
|
3926
3771
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3927
|
-
variantStyle: import('
|
|
3772
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3928
3773
|
isClearable: boolean;
|
|
3929
3774
|
centerAffix: boolean;
|
|
3930
3775
|
counter: string | number | boolean;
|
|
@@ -3933,7 +3778,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3933
3778
|
isDirty: boolean;
|
|
3934
3779
|
isFlat: boolean;
|
|
3935
3780
|
isFocused: boolean;
|
|
3936
|
-
areDetailsHidden: boolean | "auto";
|
|
3937
3781
|
areSpinButtonsHidden: boolean;
|
|
3938
3782
|
hint: string;
|
|
3939
3783
|
messages: string | string[];
|
|
@@ -3951,75 +3795,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3951
3795
|
autocomplete: string;
|
|
3952
3796
|
helpText: string;
|
|
3953
3797
|
maxlength: string | number;
|
|
3798
|
+
hideDetails: boolean | "auto";
|
|
3954
3799
|
isValidateOnBlur: boolean;
|
|
3955
|
-
useVuetifyValidation: boolean;
|
|
3956
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3957
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3958
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3959
|
-
warningMessages: string[] | null;
|
|
3960
3800
|
successMessages: string[] | null;
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
hasSuccess: boolean;
|
|
3964
|
-
}> & Omit<Readonly<{
|
|
3965
|
-
modelValue?: string | number | null | undefined;
|
|
3966
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3967
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3968
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3969
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3970
|
-
prependTooltip?: string;
|
|
3971
|
-
appendTooltip?: string;
|
|
3972
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
3973
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
3974
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
3975
|
-
isClearable?: boolean;
|
|
3976
|
-
showDivider?: boolean;
|
|
3977
|
-
label?: string;
|
|
3978
|
-
readonly?: boolean;
|
|
3979
|
-
isActive?: boolean;
|
|
3980
|
-
baseColor?: string;
|
|
3981
|
-
bgColor?: string;
|
|
3982
|
-
centerAffix?: boolean;
|
|
3983
|
-
counter?: string | number | boolean;
|
|
3984
|
-
counterValue?: number | ((value: any) => number);
|
|
3985
|
-
density?: "default" | "comfortable" | "compact";
|
|
3986
|
-
direction?: "horizontal" | "vertical";
|
|
3987
|
-
isDirty?: boolean;
|
|
3988
|
-
disabled?: boolean;
|
|
3989
|
-
isFlat?: boolean;
|
|
3990
|
-
isFocused?: boolean;
|
|
3991
|
-
areDetailsHidden?: boolean | "auto";
|
|
3992
|
-
areSpinButtonsHidden?: boolean;
|
|
3993
|
-
hint?: string;
|
|
3994
|
-
id?: string;
|
|
3995
|
-
loading?: string | boolean;
|
|
3996
|
-
maxWidth?: string | number;
|
|
3997
|
-
messages?: string | string[];
|
|
3998
|
-
minWidth?: string | number;
|
|
3999
|
-
name?: string;
|
|
4000
|
-
displayPersistentClear?: boolean;
|
|
4001
|
-
displayPersistentCounter?: boolean;
|
|
4002
|
-
displayPersistentHint?: boolean;
|
|
4003
|
-
displayPersistentPlaceholder?: boolean;
|
|
4004
|
-
placeholder?: string;
|
|
4005
|
-
prefix?: string;
|
|
4006
|
-
isReversed?: boolean;
|
|
4007
|
-
role?: string;
|
|
4008
|
-
rounded?: string | number | boolean;
|
|
4009
|
-
isOnSingleLine?: boolean;
|
|
4010
|
-
suffix?: string;
|
|
4011
|
-
theme?: string;
|
|
4012
|
-
isTiled?: boolean;
|
|
4013
|
-
type?: string;
|
|
4014
|
-
width?: string | number;
|
|
4015
|
-
displayAsterisk?: boolean;
|
|
4016
|
-
noIcon?: boolean;
|
|
4017
|
-
disableClickButton?: boolean;
|
|
4018
|
-
autocomplete?: string;
|
|
4019
|
-
helpText?: string;
|
|
4020
|
-
maxlength?: string | number;
|
|
4021
|
-
title?: string | false;
|
|
4022
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3801
|
+
warningMessages: string[] | null;
|
|
3802
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
4023
3803
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
4024
3804
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
4025
3805
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -4028,8 +3808,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4028
3808
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4029
3809
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4030
3810
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4031
|
-
}>, "validateOnSubmit" | ("type" | "label" | "title" | "width" | "role" | "color" | "theme" | "disabled" | "placeholder" | "density" | "rounded" | "maxWidth" | "minWidth" | "loading" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "id" | "name" | "modelValue" | "bgColor" | "isActive" | "required" | "prefix" | "showSuccessMessages" | "disableErrorHandling" | "errorMessages" | "maxErrors" | "
|
|
4032
|
-
validateOnSubmit: (
|
|
3811
|
+
}>, "validateOnSubmit" | ("type" | "label" | "title" | "width" | "role" | "color" | "theme" | "disabled" | "placeholder" | "locales" | "density" | "rounded" | "maxWidth" | "minWidth" | "loading" | "baseColor" | "prependIcon" | "appendIcon" | "readonly" | "id" | "name" | "modelValue" | "bgColor" | "isActive" | "required" | "prefix" | "showSuccessMessages" | "disableErrorHandling" | "errorMessages" | "maxErrors" | "hasError" | "hasWarning" | "hasSuccess" | "useVuetifyValidation" | "customRules" | "customWarningRules" | "customSuccessRules" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "isClearable" | "centerAffix" | "counter" | "counterValue" | "direction" | "isDirty" | "isFlat" | "isFocused" | "areSpinButtonsHidden" | "hint" | "messages" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "isReversed" | "isOnSingleLine" | "suffix" | "isTiled" | "displayAsterisk" | "noIcon" | "disableClickButton" | "autocomplete" | "helpText" | "maxlength" | "hideDetails" | "isValidateOnBlur" | "successMessages" | "warningMessages")> & {
|
|
3812
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
4033
3813
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
4034
3814
|
$slots: {
|
|
4035
3815
|
prepend?(_: {}): any;
|
|
@@ -4074,6 +3854,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4074
3854
|
required?: boolean;
|
|
4075
3855
|
showSuccessMessages?: boolean;
|
|
4076
3856
|
title?: string | false;
|
|
3857
|
+
skipInternalValidation?: boolean;
|
|
4077
3858
|
}> & Readonly<{
|
|
4078
3859
|
onInput?: ((value: string) => any) | undefined;
|
|
4079
3860
|
onBlur?: (() => any) | undefined;
|
|
@@ -4096,11 +3877,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4096
3877
|
required: boolean;
|
|
4097
3878
|
showSuccessMessages: boolean;
|
|
4098
3879
|
disableErrorHandling: boolean;
|
|
3880
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3881
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4099
3882
|
hint: string;
|
|
4100
3883
|
noIcon: boolean;
|
|
4101
3884
|
isValidateOnBlur: boolean;
|
|
4102
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4103
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4104
3885
|
persistentHint: boolean;
|
|
4105
3886
|
format: string;
|
|
4106
3887
|
autoClamp: boolean;
|
|
@@ -4111,6 +3892,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4111
3892
|
displayPrependIcon: boolean;
|
|
4112
3893
|
externalErrorMessages: string[];
|
|
4113
3894
|
isOutlined: boolean;
|
|
3895
|
+
skipInternalValidation: boolean;
|
|
4114
3896
|
}> | null;
|
|
4115
3897
|
datePickerRef: ({
|
|
4116
3898
|
$: import('vue').ComponentInternalInstance;
|