@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,5 +1,4 @@
|
|
|
1
1
|
import { nextTick, ComponentPublicInstance, Ref } from 'vue';
|
|
2
|
-
import { ValidationResult, ValidationRule } from '../../../composables/validation/useValidation';
|
|
3
2
|
import { DateModelValue, DateInput } from '../../../composables/date/useDateInitializationDayjs';
|
|
4
3
|
type __VLS_Props = {
|
|
5
4
|
autoClamp?: boolean;
|
|
@@ -90,10 +89,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
90
89
|
required: boolean;
|
|
91
90
|
showSuccessMessages: boolean;
|
|
92
91
|
disableErrorHandling: boolean;
|
|
93
|
-
hint: string;
|
|
94
|
-
displayAsterisk: boolean;
|
|
95
|
-
noIcon: boolean;
|
|
96
|
-
isValidateOnBlur: boolean;
|
|
97
92
|
customRules: {
|
|
98
93
|
type: string;
|
|
99
94
|
options: any;
|
|
@@ -102,8 +97,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
102
97
|
type: string;
|
|
103
98
|
options: any;
|
|
104
99
|
}[];
|
|
105
|
-
|
|
100
|
+
hint: string;
|
|
101
|
+
displayAsterisk: boolean;
|
|
102
|
+
noIcon: boolean;
|
|
106
103
|
hideDetails: boolean | "auto";
|
|
104
|
+
isValidateOnBlur: boolean;
|
|
105
|
+
persistentHint: boolean;
|
|
107
106
|
format: string;
|
|
108
107
|
autoClamp: boolean;
|
|
109
108
|
noCalendar: boolean;
|
|
@@ -129,8 +128,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
129
128
|
dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
130
129
|
autoClamp?: boolean;
|
|
131
130
|
bgColor?: string;
|
|
132
|
-
customRules?: ValidationRule[];
|
|
133
|
-
customWarningRules?: ValidationRule[];
|
|
131
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
132
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
134
133
|
dateFormatReturn?: string;
|
|
135
134
|
density?: "default" | "comfortable" | "compact";
|
|
136
135
|
disableErrorHandling?: boolean;
|
|
@@ -153,6 +152,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
153
152
|
required?: boolean;
|
|
154
153
|
showSuccessMessages?: boolean;
|
|
155
154
|
title?: string | false;
|
|
155
|
+
skipInternalValidation?: boolean;
|
|
156
156
|
}> & Readonly<{
|
|
157
157
|
onInput?: ((value: string) => any) | undefined;
|
|
158
158
|
onBlur?: (() => any) | undefined;
|
|
@@ -181,11 +181,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
181
181
|
required: boolean;
|
|
182
182
|
showSuccessMessages: boolean;
|
|
183
183
|
disableErrorHandling: boolean;
|
|
184
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
185
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
184
186
|
hint: string;
|
|
185
187
|
noIcon: boolean;
|
|
186
188
|
isValidateOnBlur: boolean;
|
|
187
|
-
customRules: ValidationRule[];
|
|
188
|
-
customWarningRules: ValidationRule[];
|
|
189
189
|
persistentHint: boolean;
|
|
190
190
|
format: string;
|
|
191
191
|
autoClamp: boolean;
|
|
@@ -196,21 +196,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
196
196
|
displayPrependIcon: boolean;
|
|
197
197
|
externalErrorMessages: string[];
|
|
198
198
|
isOutlined: boolean;
|
|
199
|
+
skipInternalValidation: boolean;
|
|
199
200
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
200
201
|
inputRef: ({
|
|
201
202
|
$: import('vue').ComponentInternalInstance;
|
|
202
203
|
$data: {};
|
|
203
204
|
$props: {
|
|
204
205
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
205
|
-
readonly prependIcon?: import('
|
|
206
|
-
readonly appendIcon?: import('
|
|
207
|
-
readonly prependInnerIcon?: import('
|
|
208
|
-
readonly appendInnerIcon?: import('
|
|
206
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
207
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
208
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
209
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
209
210
|
readonly prependTooltip?: string | undefined;
|
|
210
211
|
readonly appendTooltip?: string | undefined;
|
|
211
212
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
212
|
-
readonly variantStyle?: import('
|
|
213
|
-
readonly color?: import('
|
|
213
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
214
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
214
215
|
readonly isClearable?: boolean | undefined;
|
|
215
216
|
readonly showDivider?: boolean | undefined;
|
|
216
217
|
readonly label?: string | undefined;
|
|
@@ -227,7 +228,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
227
228
|
readonly disabled?: boolean | undefined;
|
|
228
229
|
readonly isFlat?: boolean | undefined;
|
|
229
230
|
readonly isFocused?: boolean | undefined;
|
|
230
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
231
231
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
232
232
|
readonly hint?: string | undefined;
|
|
233
233
|
readonly id?: string | undefined;
|
|
@@ -258,22 +258,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
258
258
|
readonly helpText?: string | undefined;
|
|
259
259
|
readonly maxlength?: string | number | undefined;
|
|
260
260
|
readonly title?: string | false | undefined;
|
|
261
|
-
readonly
|
|
262
|
-
readonly
|
|
263
|
-
readonly
|
|
261
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
262
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
263
|
+
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
264
|
+
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
265
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
264
266
|
readonly disableErrorHandling?: boolean | undefined;
|
|
265
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
266
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
267
|
-
readonly customRules?: ValidationRule[] | undefined;
|
|
268
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
269
|
-
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
270
267
|
readonly errorMessages?: string[] | null | undefined;
|
|
271
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
272
|
-
readonly successMessages?: string[] | null | undefined;
|
|
273
268
|
readonly hasError?: boolean | undefined;
|
|
274
|
-
readonly hasWarning?: boolean | undefined;
|
|
275
269
|
readonly hasSuccess?: boolean | undefined;
|
|
270
|
+
readonly hasWarning?: boolean | undefined;
|
|
271
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
276
272
|
readonly maxErrors?: number | undefined;
|
|
273
|
+
readonly required?: boolean | undefined;
|
|
274
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
275
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
276
|
+
readonly successMessages?: string[] | null | undefined;
|
|
277
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
278
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
277
279
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
278
280
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
279
281
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -666,7 +668,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
666
668
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
667
669
|
modelValue?: unknown;
|
|
668
670
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
669
|
-
}, 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" | "
|
|
671
|
+
}, 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<{
|
|
670
672
|
$: import('vue').ComponentInternalInstance;
|
|
671
673
|
$data: {};
|
|
672
674
|
$props: Partial<{
|
|
@@ -1403,7 +1405,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1403
1405
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
1404
1406
|
modelValue?: unknown;
|
|
1405
1407
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
1406
|
-
}, 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" | "
|
|
1408
|
+
}, 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<{
|
|
1407
1409
|
$: import('vue').ComponentInternalInstance;
|
|
1408
1410
|
$data: {};
|
|
1409
1411
|
$props: Partial<{
|
|
@@ -1718,65 +1720,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1718
1720
|
$host: Element | null;
|
|
1719
1721
|
$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);
|
|
1720
1722
|
$el: any;
|
|
1721
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1722
|
-
modelValue?: string | number | null | undefined;
|
|
1723
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1724
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1725
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1726
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1727
|
-
prependTooltip?: string;
|
|
1728
|
-
appendTooltip?: string;
|
|
1729
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
1730
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
1731
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
1732
|
-
isClearable?: boolean;
|
|
1733
|
-
showDivider?: boolean;
|
|
1734
|
-
label?: string;
|
|
1735
|
-
readonly?: boolean;
|
|
1736
|
-
isActive?: boolean;
|
|
1737
|
-
baseColor?: string;
|
|
1738
|
-
bgColor?: string;
|
|
1739
|
-
centerAffix?: boolean;
|
|
1740
|
-
counter?: string | number | boolean;
|
|
1741
|
-
counterValue?: number | ((value: any) => number);
|
|
1742
|
-
density?: "default" | "comfortable" | "compact";
|
|
1743
|
-
direction?: "horizontal" | "vertical";
|
|
1744
|
-
isDirty?: boolean;
|
|
1745
|
-
disabled?: boolean;
|
|
1746
|
-
isFlat?: boolean;
|
|
1747
|
-
isFocused?: boolean;
|
|
1748
|
-
areDetailsHidden?: boolean | "auto";
|
|
1749
|
-
areSpinButtonsHidden?: boolean;
|
|
1750
|
-
hint?: string;
|
|
1751
|
-
id?: string;
|
|
1752
|
-
loading?: string | boolean;
|
|
1753
|
-
maxWidth?: string | number;
|
|
1754
|
-
messages?: string | string[];
|
|
1755
|
-
minWidth?: string | number;
|
|
1756
|
-
name?: string;
|
|
1757
|
-
displayPersistentClear?: boolean;
|
|
1758
|
-
displayPersistentCounter?: boolean;
|
|
1759
|
-
displayPersistentHint?: boolean;
|
|
1760
|
-
displayPersistentPlaceholder?: boolean;
|
|
1761
|
-
placeholder?: string;
|
|
1762
|
-
prefix?: string;
|
|
1763
|
-
isReversed?: boolean;
|
|
1764
|
-
role?: string;
|
|
1765
|
-
rounded?: string | number | boolean;
|
|
1766
|
-
isOnSingleLine?: boolean;
|
|
1767
|
-
suffix?: string;
|
|
1768
|
-
theme?: string;
|
|
1769
|
-
isTiled?: boolean;
|
|
1770
|
-
type?: string;
|
|
1771
|
-
width?: string | number;
|
|
1772
|
-
displayAsterisk?: boolean;
|
|
1773
|
-
noIcon?: boolean;
|
|
1774
|
-
disableClickButton?: boolean;
|
|
1775
|
-
autocomplete?: string;
|
|
1776
|
-
helpText?: string;
|
|
1777
|
-
maxlength?: string | number;
|
|
1778
|
-
title?: string | false;
|
|
1779
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1723
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
1780
1724
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1781
1725
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1782
1726
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -1786,7 +1730,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1786
1730
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1787
1731
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1788
1732
|
}>, {
|
|
1789
|
-
validateOnSubmit: (
|
|
1733
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
1790
1734
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1791
1735
|
input: (...args: any[]) => void;
|
|
1792
1736
|
blur: (...args: any[]) => void;
|
|
@@ -1802,10 +1746,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1802
1746
|
title: string | false;
|
|
1803
1747
|
width: string | number;
|
|
1804
1748
|
role: string;
|
|
1805
|
-
color: import('
|
|
1749
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
1806
1750
|
theme: string;
|
|
1807
1751
|
disabled: boolean;
|
|
1808
1752
|
placeholder: string;
|
|
1753
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1809
1754
|
density: "default" | "comfortable" | "compact";
|
|
1810
1755
|
rounded: string | number | boolean;
|
|
1811
1756
|
maxWidth: string | number;
|
|
@@ -1826,12 +1771,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1826
1771
|
disableErrorHandling: boolean;
|
|
1827
1772
|
errorMessages: string[] | null;
|
|
1828
1773
|
maxErrors: number;
|
|
1774
|
+
hasError: boolean;
|
|
1775
|
+
hasWarning: boolean;
|
|
1776
|
+
hasSuccess: boolean;
|
|
1777
|
+
useVuetifyValidation: boolean;
|
|
1778
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1779
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1780
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1829
1781
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1830
1782
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1831
1783
|
prependTooltip: string;
|
|
1832
1784
|
appendTooltip: string;
|
|
1833
1785
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1834
|
-
variantStyle: import('
|
|
1786
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
1835
1787
|
isClearable: boolean;
|
|
1836
1788
|
centerAffix: boolean;
|
|
1837
1789
|
counter: string | number | boolean;
|
|
@@ -1840,7 +1792,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1840
1792
|
isDirty: boolean;
|
|
1841
1793
|
isFlat: boolean;
|
|
1842
1794
|
isFocused: boolean;
|
|
1843
|
-
areDetailsHidden: boolean | "auto";
|
|
1844
1795
|
areSpinButtonsHidden: boolean;
|
|
1845
1796
|
hint: string;
|
|
1846
1797
|
messages: string | string[];
|
|
@@ -1858,16 +1809,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1858
1809
|
autocomplete: string;
|
|
1859
1810
|
helpText: string;
|
|
1860
1811
|
maxlength: string | number;
|
|
1812
|
+
hideDetails: boolean | "auto";
|
|
1861
1813
|
isValidateOnBlur: boolean;
|
|
1862
|
-
useVuetifyValidation: boolean;
|
|
1863
|
-
customRules: ValidationRule[];
|
|
1864
|
-
customWarningRules: ValidationRule[];
|
|
1865
|
-
customSuccessRules: ValidationRule[];
|
|
1866
|
-
warningMessages: string[] | null;
|
|
1867
1814
|
successMessages: string[] | null;
|
|
1868
|
-
|
|
1869
|
-
hasWarning: boolean;
|
|
1870
|
-
hasSuccess: boolean;
|
|
1815
|
+
warningMessages: string[] | null;
|
|
1871
1816
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1872
1817
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1873
1818
|
created?: (() => void) | (() => void)[];
|
|
@@ -1894,10 +1839,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1894
1839
|
title: string | false;
|
|
1895
1840
|
width: string | number;
|
|
1896
1841
|
role: string;
|
|
1897
|
-
color: import('
|
|
1842
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
1898
1843
|
theme: string;
|
|
1899
1844
|
disabled: boolean;
|
|
1900
1845
|
placeholder: string;
|
|
1846
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1901
1847
|
density: "default" | "comfortable" | "compact";
|
|
1902
1848
|
rounded: string | number | boolean;
|
|
1903
1849
|
maxWidth: string | number;
|
|
@@ -1918,12 +1864,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1918
1864
|
disableErrorHandling: boolean;
|
|
1919
1865
|
errorMessages: string[] | null;
|
|
1920
1866
|
maxErrors: number;
|
|
1867
|
+
hasError: boolean;
|
|
1868
|
+
hasWarning: boolean;
|
|
1869
|
+
hasSuccess: boolean;
|
|
1870
|
+
useVuetifyValidation: boolean;
|
|
1871
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1872
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1873
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1921
1874
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1922
1875
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1923
1876
|
prependTooltip: string;
|
|
1924
1877
|
appendTooltip: string;
|
|
1925
1878
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1926
|
-
variantStyle: import('
|
|
1879
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
1927
1880
|
isClearable: boolean;
|
|
1928
1881
|
centerAffix: boolean;
|
|
1929
1882
|
counter: string | number | boolean;
|
|
@@ -1932,7 +1885,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1932
1885
|
isDirty: boolean;
|
|
1933
1886
|
isFlat: boolean;
|
|
1934
1887
|
isFocused: boolean;
|
|
1935
|
-
areDetailsHidden: boolean | "auto";
|
|
1936
1888
|
areSpinButtonsHidden: boolean;
|
|
1937
1889
|
hint: string;
|
|
1938
1890
|
messages: string | string[];
|
|
@@ -1950,75 +1902,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1950
1902
|
autocomplete: string;
|
|
1951
1903
|
helpText: string;
|
|
1952
1904
|
maxlength: string | number;
|
|
1905
|
+
hideDetails: boolean | "auto";
|
|
1953
1906
|
isValidateOnBlur: boolean;
|
|
1954
|
-
useVuetifyValidation: boolean;
|
|
1955
|
-
customRules: ValidationRule[];
|
|
1956
|
-
customWarningRules: ValidationRule[];
|
|
1957
|
-
customSuccessRules: ValidationRule[];
|
|
1958
|
-
warningMessages: string[] | null;
|
|
1959
1907
|
successMessages: string[] | null;
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
hasSuccess: boolean;
|
|
1963
|
-
}> & Omit<Readonly<{
|
|
1964
|
-
modelValue?: string | number | null | undefined;
|
|
1965
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1966
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1967
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1968
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
1969
|
-
prependTooltip?: string;
|
|
1970
|
-
appendTooltip?: string;
|
|
1971
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
1972
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
1973
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
1974
|
-
isClearable?: boolean;
|
|
1975
|
-
showDivider?: boolean;
|
|
1976
|
-
label?: string;
|
|
1977
|
-
readonly?: boolean;
|
|
1978
|
-
isActive?: boolean;
|
|
1979
|
-
baseColor?: string;
|
|
1980
|
-
bgColor?: string;
|
|
1981
|
-
centerAffix?: boolean;
|
|
1982
|
-
counter?: string | number | boolean;
|
|
1983
|
-
counterValue?: number | ((value: any) => number);
|
|
1984
|
-
density?: "default" | "comfortable" | "compact";
|
|
1985
|
-
direction?: "horizontal" | "vertical";
|
|
1986
|
-
isDirty?: boolean;
|
|
1987
|
-
disabled?: boolean;
|
|
1988
|
-
isFlat?: boolean;
|
|
1989
|
-
isFocused?: boolean;
|
|
1990
|
-
areDetailsHidden?: boolean | "auto";
|
|
1991
|
-
areSpinButtonsHidden?: boolean;
|
|
1992
|
-
hint?: string;
|
|
1993
|
-
id?: string;
|
|
1994
|
-
loading?: string | boolean;
|
|
1995
|
-
maxWidth?: string | number;
|
|
1996
|
-
messages?: string | string[];
|
|
1997
|
-
minWidth?: string | number;
|
|
1998
|
-
name?: string;
|
|
1999
|
-
displayPersistentClear?: boolean;
|
|
2000
|
-
displayPersistentCounter?: boolean;
|
|
2001
|
-
displayPersistentHint?: boolean;
|
|
2002
|
-
displayPersistentPlaceholder?: boolean;
|
|
2003
|
-
placeholder?: string;
|
|
2004
|
-
prefix?: string;
|
|
2005
|
-
isReversed?: boolean;
|
|
2006
|
-
role?: string;
|
|
2007
|
-
rounded?: string | number | boolean;
|
|
2008
|
-
isOnSingleLine?: boolean;
|
|
2009
|
-
suffix?: string;
|
|
2010
|
-
theme?: string;
|
|
2011
|
-
isTiled?: boolean;
|
|
2012
|
-
type?: string;
|
|
2013
|
-
width?: string | number;
|
|
2014
|
-
displayAsterisk?: boolean;
|
|
2015
|
-
noIcon?: boolean;
|
|
2016
|
-
disableClickButton?: boolean;
|
|
2017
|
-
autocomplete?: string;
|
|
2018
|
-
helpText?: string;
|
|
2019
|
-
maxlength?: string | number;
|
|
2020
|
-
title?: string | false;
|
|
2021
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1908
|
+
warningMessages: string[] | null;
|
|
1909
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
2022
1910
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
2023
1911
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2024
1912
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2027,8 +1915,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2027
1915
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2028
1916
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2029
1917
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2030
|
-
}>, "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" | "
|
|
2031
|
-
validateOnSubmit: (
|
|
1918
|
+
}>, "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")> & {
|
|
1919
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
2032
1920
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
2033
1921
|
$slots: {
|
|
2034
1922
|
prepend?(_: {}): any;
|
|
@@ -2049,8 +1937,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2049
1937
|
}, Readonly<{
|
|
2050
1938
|
autoClamp?: boolean;
|
|
2051
1939
|
bgColor?: string;
|
|
2052
|
-
customRules?: ValidationRule[];
|
|
2053
|
-
customWarningRules?: ValidationRule[];
|
|
1940
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1941
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2054
1942
|
dateFormatReturn?: string;
|
|
2055
1943
|
density?: "default" | "comfortable" | "compact";
|
|
2056
1944
|
disableErrorHandling?: boolean;
|
|
@@ -2073,6 +1961,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2073
1961
|
required?: boolean;
|
|
2074
1962
|
showSuccessMessages?: boolean;
|
|
2075
1963
|
title?: string | false;
|
|
1964
|
+
skipInternalValidation?: boolean;
|
|
2076
1965
|
}> & Readonly<{
|
|
2077
1966
|
onInput?: ((value: string) => any) | undefined;
|
|
2078
1967
|
onBlur?: (() => any) | undefined;
|
|
@@ -2095,11 +1984,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2095
1984
|
required: boolean;
|
|
2096
1985
|
showSuccessMessages: boolean;
|
|
2097
1986
|
disableErrorHandling: boolean;
|
|
1987
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
1988
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2098
1989
|
hint: string;
|
|
2099
1990
|
noIcon: boolean;
|
|
2100
1991
|
isValidateOnBlur: boolean;
|
|
2101
|
-
customRules: ValidationRule[];
|
|
2102
|
-
customWarningRules: ValidationRule[];
|
|
2103
1992
|
persistentHint: boolean;
|
|
2104
1993
|
format: string;
|
|
2105
1994
|
autoClamp: boolean;
|
|
@@ -2110,6 +1999,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2110
1999
|
displayPrependIcon: boolean;
|
|
2111
2000
|
externalErrorMessages: string[];
|
|
2112
2001
|
isOutlined: boolean;
|
|
2002
|
+
skipInternalValidation: boolean;
|
|
2113
2003
|
}> | null;
|
|
2114
2004
|
complexDatePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2115
2005
|
autoClamp?: boolean;
|
|
@@ -2179,9 +2069,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2179
2069
|
currentMonth: Ref<string | null, string | null>;
|
|
2180
2070
|
currentMonthName: Ref<string | null, string | null>;
|
|
2181
2071
|
toggleDatePicker: () => void;
|
|
2182
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => ValidationResult |
|
|
2072
|
+
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;
|
|
2183
2073
|
clearValidation: () => void;
|
|
2184
|
-
validateDates: (forceValidation?: boolean) => ValidationResult | Promise<ValidationResult>;
|
|
2074
|
+
validateDates: (forceValidation?: boolean) => import('../../../composables/validation/useValidation').ValidationResult | Promise<import('../../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
2185
2075
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
2186
2076
|
formatted: string;
|
|
2187
2077
|
cursorPos: number;
|
|
@@ -2215,10 +2105,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2215
2105
|
required: boolean;
|
|
2216
2106
|
showSuccessMessages: boolean;
|
|
2217
2107
|
disableErrorHandling: boolean;
|
|
2218
|
-
hint: string;
|
|
2219
|
-
displayAsterisk: boolean;
|
|
2220
|
-
noIcon: boolean;
|
|
2221
|
-
isValidateOnBlur: boolean;
|
|
2222
2108
|
customRules: {
|
|
2223
2109
|
type: string;
|
|
2224
2110
|
options: any;
|
|
@@ -2227,6 +2113,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2227
2113
|
type: string;
|
|
2228
2114
|
options: any;
|
|
2229
2115
|
}[];
|
|
2116
|
+
hint: string;
|
|
2117
|
+
displayAsterisk: boolean;
|
|
2118
|
+
noIcon: boolean;
|
|
2119
|
+
isValidateOnBlur: boolean;
|
|
2230
2120
|
persistentHint: boolean;
|
|
2231
2121
|
format: string;
|
|
2232
2122
|
autoClamp: boolean;
|
|
@@ -2253,8 +2143,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2253
2143
|
dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2254
2144
|
autoClamp?: boolean;
|
|
2255
2145
|
bgColor?: string;
|
|
2256
|
-
customRules?: ValidationRule[];
|
|
2257
|
-
customWarningRules?: ValidationRule[];
|
|
2146
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2147
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2258
2148
|
dateFormatReturn?: string;
|
|
2259
2149
|
density?: "default" | "comfortable" | "compact";
|
|
2260
2150
|
disableErrorHandling?: boolean;
|
|
@@ -2277,6 +2167,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2277
2167
|
required?: boolean;
|
|
2278
2168
|
showSuccessMessages?: boolean;
|
|
2279
2169
|
title?: string | false;
|
|
2170
|
+
skipInternalValidation?: boolean;
|
|
2280
2171
|
}> & Readonly<{
|
|
2281
2172
|
onInput?: ((value: string) => any) | undefined;
|
|
2282
2173
|
onBlur?: (() => any) | undefined;
|
|
@@ -2305,11 +2196,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2305
2196
|
required: boolean;
|
|
2306
2197
|
showSuccessMessages: boolean;
|
|
2307
2198
|
disableErrorHandling: boolean;
|
|
2199
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2200
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2308
2201
|
hint: string;
|
|
2309
2202
|
noIcon: boolean;
|
|
2310
2203
|
isValidateOnBlur: boolean;
|
|
2311
|
-
customRules: ValidationRule[];
|
|
2312
|
-
customWarningRules: ValidationRule[];
|
|
2313
2204
|
persistentHint: boolean;
|
|
2314
2205
|
format: string;
|
|
2315
2206
|
autoClamp: boolean;
|
|
@@ -2320,21 +2211,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2320
2211
|
displayPrependIcon: boolean;
|
|
2321
2212
|
externalErrorMessages: string[];
|
|
2322
2213
|
isOutlined: boolean;
|
|
2214
|
+
skipInternalValidation: boolean;
|
|
2323
2215
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2324
2216
|
inputRef: ({
|
|
2325
2217
|
$: import('vue').ComponentInternalInstance;
|
|
2326
2218
|
$data: {};
|
|
2327
2219
|
$props: {
|
|
2328
2220
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
2329
|
-
readonly prependIcon?: import('
|
|
2330
|
-
readonly appendIcon?: import('
|
|
2331
|
-
readonly prependInnerIcon?: import('
|
|
2332
|
-
readonly appendInnerIcon?: import('
|
|
2221
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2222
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2223
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2224
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2333
2225
|
readonly prependTooltip?: string | undefined;
|
|
2334
2226
|
readonly appendTooltip?: string | undefined;
|
|
2335
2227
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
2336
|
-
readonly variantStyle?: import('
|
|
2337
|
-
readonly color?: import('
|
|
2228
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
2229
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
2338
2230
|
readonly isClearable?: boolean | undefined;
|
|
2339
2231
|
readonly showDivider?: boolean | undefined;
|
|
2340
2232
|
readonly label?: string | undefined;
|
|
@@ -2351,7 +2243,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2351
2243
|
readonly disabled?: boolean | undefined;
|
|
2352
2244
|
readonly isFlat?: boolean | undefined;
|
|
2353
2245
|
readonly isFocused?: boolean | undefined;
|
|
2354
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
2355
2246
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
2356
2247
|
readonly hint?: string | undefined;
|
|
2357
2248
|
readonly id?: string | undefined;
|
|
@@ -2382,22 +2273,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2382
2273
|
readonly helpText?: string | undefined;
|
|
2383
2274
|
readonly maxlength?: string | number | undefined;
|
|
2384
2275
|
readonly title?: string | false | undefined;
|
|
2385
|
-
readonly
|
|
2386
|
-
readonly
|
|
2387
|
-
readonly
|
|
2276
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
2277
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
2278
|
+
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2279
|
+
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2280
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2388
2281
|
readonly disableErrorHandling?: boolean | undefined;
|
|
2389
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
2390
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2391
|
-
readonly customRules?: ValidationRule[] | undefined;
|
|
2392
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
2393
|
-
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
2394
2282
|
readonly errorMessages?: string[] | null | undefined;
|
|
2395
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
2396
|
-
readonly successMessages?: string[] | null | undefined;
|
|
2397
2283
|
readonly hasError?: boolean | undefined;
|
|
2398
|
-
readonly hasWarning?: boolean | undefined;
|
|
2399
2284
|
readonly hasSuccess?: boolean | undefined;
|
|
2285
|
+
readonly hasWarning?: boolean | undefined;
|
|
2286
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
2400
2287
|
readonly maxErrors?: number | undefined;
|
|
2288
|
+
readonly required?: boolean | undefined;
|
|
2289
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2290
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
2291
|
+
readonly successMessages?: string[] | null | undefined;
|
|
2292
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
2293
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
2401
2294
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
2402
2295
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
2403
2296
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2790,7 +2683,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2790
2683
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2791
2684
|
modelValue?: unknown;
|
|
2792
2685
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
2793
|
-
}, 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" | "
|
|
2686
|
+
}, 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<{
|
|
2794
2687
|
$: import('vue').ComponentInternalInstance;
|
|
2795
2688
|
$data: {};
|
|
2796
2689
|
$props: Partial<{
|
|
@@ -3527,7 +3420,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3527
3420
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3528
3421
|
modelValue?: unknown;
|
|
3529
3422
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
3530
|
-
}, 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" | "
|
|
3423
|
+
}, 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<{
|
|
3531
3424
|
$: import('vue').ComponentInternalInstance;
|
|
3532
3425
|
$data: {};
|
|
3533
3426
|
$props: Partial<{
|
|
@@ -3842,65 +3735,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3842
3735
|
$host: Element | null;
|
|
3843
3736
|
$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);
|
|
3844
3737
|
$el: any;
|
|
3845
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
3846
|
-
modelValue?: string | number | null | undefined;
|
|
3847
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3848
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3849
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3850
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
3851
|
-
prependTooltip?: string;
|
|
3852
|
-
appendTooltip?: string;
|
|
3853
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
3854
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
3855
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
3856
|
-
isClearable?: boolean;
|
|
3857
|
-
showDivider?: boolean;
|
|
3858
|
-
label?: string;
|
|
3859
|
-
readonly?: boolean;
|
|
3860
|
-
isActive?: boolean;
|
|
3861
|
-
baseColor?: string;
|
|
3862
|
-
bgColor?: string;
|
|
3863
|
-
centerAffix?: boolean;
|
|
3864
|
-
counter?: string | number | boolean;
|
|
3865
|
-
counterValue?: number | ((value: any) => number);
|
|
3866
|
-
density?: "default" | "comfortable" | "compact";
|
|
3867
|
-
direction?: "horizontal" | "vertical";
|
|
3868
|
-
isDirty?: boolean;
|
|
3869
|
-
disabled?: boolean;
|
|
3870
|
-
isFlat?: boolean;
|
|
3871
|
-
isFocused?: boolean;
|
|
3872
|
-
areDetailsHidden?: boolean | "auto";
|
|
3873
|
-
areSpinButtonsHidden?: boolean;
|
|
3874
|
-
hint?: string;
|
|
3875
|
-
id?: string;
|
|
3876
|
-
loading?: string | boolean;
|
|
3877
|
-
maxWidth?: string | number;
|
|
3878
|
-
messages?: string | string[];
|
|
3879
|
-
minWidth?: string | number;
|
|
3880
|
-
name?: string;
|
|
3881
|
-
displayPersistentClear?: boolean;
|
|
3882
|
-
displayPersistentCounter?: boolean;
|
|
3883
|
-
displayPersistentHint?: boolean;
|
|
3884
|
-
displayPersistentPlaceholder?: boolean;
|
|
3885
|
-
placeholder?: string;
|
|
3886
|
-
prefix?: string;
|
|
3887
|
-
isReversed?: boolean;
|
|
3888
|
-
role?: string;
|
|
3889
|
-
rounded?: string | number | boolean;
|
|
3890
|
-
isOnSingleLine?: boolean;
|
|
3891
|
-
suffix?: string;
|
|
3892
|
-
theme?: string;
|
|
3893
|
-
isTiled?: boolean;
|
|
3894
|
-
type?: string;
|
|
3895
|
-
width?: string | number;
|
|
3896
|
-
displayAsterisk?: boolean;
|
|
3897
|
-
noIcon?: boolean;
|
|
3898
|
-
disableClickButton?: boolean;
|
|
3899
|
-
autocomplete?: string;
|
|
3900
|
-
helpText?: string;
|
|
3901
|
-
maxlength?: string | number;
|
|
3902
|
-
title?: string | false;
|
|
3903
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3738
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
3904
3739
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
3905
3740
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3906
3741
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -3910,7 +3745,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3910
3745
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3911
3746
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3912
3747
|
}>, {
|
|
3913
|
-
validateOnSubmit: (
|
|
3748
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
3914
3749
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3915
3750
|
input: (...args: any[]) => void;
|
|
3916
3751
|
blur: (...args: any[]) => void;
|
|
@@ -3926,10 +3761,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3926
3761
|
title: string | false;
|
|
3927
3762
|
width: string | number;
|
|
3928
3763
|
role: string;
|
|
3929
|
-
color: import('
|
|
3764
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3930
3765
|
theme: string;
|
|
3931
3766
|
disabled: boolean;
|
|
3932
3767
|
placeholder: string;
|
|
3768
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
3933
3769
|
density: "default" | "comfortable" | "compact";
|
|
3934
3770
|
rounded: string | number | boolean;
|
|
3935
3771
|
maxWidth: string | number;
|
|
@@ -3950,12 +3786,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3950
3786
|
disableErrorHandling: boolean;
|
|
3951
3787
|
errorMessages: string[] | null;
|
|
3952
3788
|
maxErrors: number;
|
|
3789
|
+
hasError: boolean;
|
|
3790
|
+
hasWarning: boolean;
|
|
3791
|
+
hasSuccess: boolean;
|
|
3792
|
+
useVuetifyValidation: boolean;
|
|
3793
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3794
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3795
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3953
3796
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3954
3797
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
3955
3798
|
prependTooltip: string;
|
|
3956
3799
|
appendTooltip: string;
|
|
3957
3800
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3958
|
-
variantStyle: import('
|
|
3801
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3959
3802
|
isClearable: boolean;
|
|
3960
3803
|
centerAffix: boolean;
|
|
3961
3804
|
counter: string | number | boolean;
|
|
@@ -3964,7 +3807,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3964
3807
|
isDirty: boolean;
|
|
3965
3808
|
isFlat: boolean;
|
|
3966
3809
|
isFocused: boolean;
|
|
3967
|
-
areDetailsHidden: boolean | "auto";
|
|
3968
3810
|
areSpinButtonsHidden: boolean;
|
|
3969
3811
|
hint: string;
|
|
3970
3812
|
messages: string | string[];
|
|
@@ -3982,16 +3824,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3982
3824
|
autocomplete: string;
|
|
3983
3825
|
helpText: string;
|
|
3984
3826
|
maxlength: string | number;
|
|
3827
|
+
hideDetails: boolean | "auto";
|
|
3985
3828
|
isValidateOnBlur: boolean;
|
|
3986
|
-
useVuetifyValidation: boolean;
|
|
3987
|
-
customRules: ValidationRule[];
|
|
3988
|
-
customWarningRules: ValidationRule[];
|
|
3989
|
-
customSuccessRules: ValidationRule[];
|
|
3990
|
-
warningMessages: string[] | null;
|
|
3991
3829
|
successMessages: string[] | null;
|
|
3992
|
-
|
|
3993
|
-
hasWarning: boolean;
|
|
3994
|
-
hasSuccess: boolean;
|
|
3830
|
+
warningMessages: string[] | null;
|
|
3995
3831
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3996
3832
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3997
3833
|
created?: (() => void) | (() => void)[];
|
|
@@ -4018,10 +3854,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4018
3854
|
title: string | false;
|
|
4019
3855
|
width: string | number;
|
|
4020
3856
|
role: string;
|
|
4021
|
-
color: import('
|
|
3857
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
4022
3858
|
theme: string;
|
|
4023
3859
|
disabled: boolean;
|
|
4024
3860
|
placeholder: string;
|
|
3861
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
4025
3862
|
density: "default" | "comfortable" | "compact";
|
|
4026
3863
|
rounded: string | number | boolean;
|
|
4027
3864
|
maxWidth: string | number;
|
|
@@ -4042,12 +3879,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4042
3879
|
disableErrorHandling: boolean;
|
|
4043
3880
|
errorMessages: string[] | null;
|
|
4044
3881
|
maxErrors: number;
|
|
3882
|
+
hasError: boolean;
|
|
3883
|
+
hasWarning: boolean;
|
|
3884
|
+
hasSuccess: boolean;
|
|
3885
|
+
useVuetifyValidation: boolean;
|
|
3886
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3887
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3888
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4045
3889
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4046
3890
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4047
3891
|
prependTooltip: string;
|
|
4048
3892
|
appendTooltip: string;
|
|
4049
3893
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
4050
|
-
variantStyle: import('
|
|
3894
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
4051
3895
|
isClearable: boolean;
|
|
4052
3896
|
centerAffix: boolean;
|
|
4053
3897
|
counter: string | number | boolean;
|
|
@@ -4056,7 +3900,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4056
3900
|
isDirty: boolean;
|
|
4057
3901
|
isFlat: boolean;
|
|
4058
3902
|
isFocused: boolean;
|
|
4059
|
-
areDetailsHidden: boolean | "auto";
|
|
4060
3903
|
areSpinButtonsHidden: boolean;
|
|
4061
3904
|
hint: string;
|
|
4062
3905
|
messages: string | string[];
|
|
@@ -4074,75 +3917,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4074
3917
|
autocomplete: string;
|
|
4075
3918
|
helpText: string;
|
|
4076
3919
|
maxlength: string | number;
|
|
3920
|
+
hideDetails: boolean | "auto";
|
|
4077
3921
|
isValidateOnBlur: boolean;
|
|
4078
|
-
useVuetifyValidation: boolean;
|
|
4079
|
-
customRules: ValidationRule[];
|
|
4080
|
-
customWarningRules: ValidationRule[];
|
|
4081
|
-
customSuccessRules: ValidationRule[];
|
|
4082
|
-
warningMessages: string[] | null;
|
|
4083
3922
|
successMessages: string[] | null;
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
hasSuccess: boolean;
|
|
4087
|
-
}> & Omit<Readonly<{
|
|
4088
|
-
modelValue?: string | number | null | undefined;
|
|
4089
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
4090
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
4091
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
4092
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
4093
|
-
prependTooltip?: string;
|
|
4094
|
-
appendTooltip?: string;
|
|
4095
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
4096
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
4097
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
4098
|
-
isClearable?: boolean;
|
|
4099
|
-
showDivider?: boolean;
|
|
4100
|
-
label?: string;
|
|
4101
|
-
readonly?: boolean;
|
|
4102
|
-
isActive?: boolean;
|
|
4103
|
-
baseColor?: string;
|
|
4104
|
-
bgColor?: string;
|
|
4105
|
-
centerAffix?: boolean;
|
|
4106
|
-
counter?: string | number | boolean;
|
|
4107
|
-
counterValue?: number | ((value: any) => number);
|
|
4108
|
-
density?: "default" | "comfortable" | "compact";
|
|
4109
|
-
direction?: "horizontal" | "vertical";
|
|
4110
|
-
isDirty?: boolean;
|
|
4111
|
-
disabled?: boolean;
|
|
4112
|
-
isFlat?: boolean;
|
|
4113
|
-
isFocused?: boolean;
|
|
4114
|
-
areDetailsHidden?: boolean | "auto";
|
|
4115
|
-
areSpinButtonsHidden?: boolean;
|
|
4116
|
-
hint?: string;
|
|
4117
|
-
id?: string;
|
|
4118
|
-
loading?: string | boolean;
|
|
4119
|
-
maxWidth?: string | number;
|
|
4120
|
-
messages?: string | string[];
|
|
4121
|
-
minWidth?: string | number;
|
|
4122
|
-
name?: string;
|
|
4123
|
-
displayPersistentClear?: boolean;
|
|
4124
|
-
displayPersistentCounter?: boolean;
|
|
4125
|
-
displayPersistentHint?: boolean;
|
|
4126
|
-
displayPersistentPlaceholder?: boolean;
|
|
4127
|
-
placeholder?: string;
|
|
4128
|
-
prefix?: string;
|
|
4129
|
-
isReversed?: boolean;
|
|
4130
|
-
role?: string;
|
|
4131
|
-
rounded?: string | number | boolean;
|
|
4132
|
-
isOnSingleLine?: boolean;
|
|
4133
|
-
suffix?: string;
|
|
4134
|
-
theme?: string;
|
|
4135
|
-
isTiled?: boolean;
|
|
4136
|
-
type?: string;
|
|
4137
|
-
width?: string | number;
|
|
4138
|
-
displayAsterisk?: boolean;
|
|
4139
|
-
noIcon?: boolean;
|
|
4140
|
-
disableClickButton?: boolean;
|
|
4141
|
-
autocomplete?: string;
|
|
4142
|
-
helpText?: string;
|
|
4143
|
-
maxlength?: string | number;
|
|
4144
|
-
title?: string | false;
|
|
4145
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3923
|
+
warningMessages: string[] | null;
|
|
3924
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
4146
3925
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
4147
3926
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
4148
3927
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -4151,8 +3930,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4151
3930
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4152
3931
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4153
3932
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4154
|
-
}>, "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" | "
|
|
4155
|
-
validateOnSubmit: (
|
|
3933
|
+
}>, "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")> & {
|
|
3934
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
4156
3935
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
4157
3936
|
$slots: {
|
|
4158
3937
|
prepend?(_: {}): any;
|
|
@@ -4173,8 +3952,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4173
3952
|
}, Readonly<{
|
|
4174
3953
|
autoClamp?: boolean;
|
|
4175
3954
|
bgColor?: string;
|
|
4176
|
-
customRules?: ValidationRule[];
|
|
4177
|
-
customWarningRules?: ValidationRule[];
|
|
3955
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3956
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4178
3957
|
dateFormatReturn?: string;
|
|
4179
3958
|
density?: "default" | "comfortable" | "compact";
|
|
4180
3959
|
disableErrorHandling?: boolean;
|
|
@@ -4197,6 +3976,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4197
3976
|
required?: boolean;
|
|
4198
3977
|
showSuccessMessages?: boolean;
|
|
4199
3978
|
title?: string | false;
|
|
3979
|
+
skipInternalValidation?: boolean;
|
|
4200
3980
|
}> & Readonly<{
|
|
4201
3981
|
onInput?: ((value: string) => any) | undefined;
|
|
4202
3982
|
onBlur?: (() => any) | undefined;
|
|
@@ -4219,11 +3999,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4219
3999
|
required: boolean;
|
|
4220
4000
|
showSuccessMessages: boolean;
|
|
4221
4001
|
disableErrorHandling: boolean;
|
|
4002
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4003
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4222
4004
|
hint: string;
|
|
4223
4005
|
noIcon: boolean;
|
|
4224
4006
|
isValidateOnBlur: boolean;
|
|
4225
|
-
customRules: ValidationRule[];
|
|
4226
|
-
customWarningRules: ValidationRule[];
|
|
4227
4007
|
persistentHint: boolean;
|
|
4228
4008
|
format: string;
|
|
4229
4009
|
autoClamp: boolean;
|
|
@@ -4234,13 +4014,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4234
4014
|
displayPrependIcon: boolean;
|
|
4235
4015
|
externalErrorMessages: string[];
|
|
4236
4016
|
isOutlined: boolean;
|
|
4017
|
+
skipInternalValidation: boolean;
|
|
4237
4018
|
}> | null;
|
|
4238
4019
|
menuActivatorRef: HTMLDivElement;
|
|
4239
4020
|
dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4240
4021
|
autoClamp?: boolean;
|
|
4241
4022
|
bgColor?: string;
|
|
4242
|
-
customRules?: ValidationRule[];
|
|
4243
|
-
customWarningRules?: ValidationRule[];
|
|
4023
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4024
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4244
4025
|
dateFormatReturn?: string;
|
|
4245
4026
|
density?: "default" | "comfortable" | "compact";
|
|
4246
4027
|
disableErrorHandling?: boolean;
|
|
@@ -4263,6 +4044,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4263
4044
|
required?: boolean;
|
|
4264
4045
|
showSuccessMessages?: boolean;
|
|
4265
4046
|
title?: string | false;
|
|
4047
|
+
skipInternalValidation?: boolean;
|
|
4266
4048
|
}> & Readonly<{
|
|
4267
4049
|
onInput?: ((value: string) => any) | undefined;
|
|
4268
4050
|
onBlur?: (() => any) | undefined;
|
|
@@ -4291,11 +4073,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4291
4073
|
required: boolean;
|
|
4292
4074
|
showSuccessMessages: boolean;
|
|
4293
4075
|
disableErrorHandling: boolean;
|
|
4076
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4077
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
4294
4078
|
hint: string;
|
|
4295
4079
|
noIcon: boolean;
|
|
4296
4080
|
isValidateOnBlur: boolean;
|
|
4297
|
-
customRules: ValidationRule[];
|
|
4298
|
-
customWarningRules: ValidationRule[];
|
|
4299
4081
|
persistentHint: boolean;
|
|
4300
4082
|
format: string;
|
|
4301
4083
|
autoClamp: boolean;
|
|
@@ -4306,21 +4088,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4306
4088
|
displayPrependIcon: boolean;
|
|
4307
4089
|
externalErrorMessages: string[];
|
|
4308
4090
|
isOutlined: boolean;
|
|
4091
|
+
skipInternalValidation: boolean;
|
|
4309
4092
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
4310
4093
|
inputRef: ({
|
|
4311
4094
|
$: import('vue').ComponentInternalInstance;
|
|
4312
4095
|
$data: {};
|
|
4313
4096
|
$props: {
|
|
4314
4097
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
4315
|
-
readonly prependIcon?: import('
|
|
4316
|
-
readonly appendIcon?: import('
|
|
4317
|
-
readonly prependInnerIcon?: import('
|
|
4318
|
-
readonly appendInnerIcon?: import('
|
|
4098
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
4099
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
4100
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
4101
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
4319
4102
|
readonly prependTooltip?: string | undefined;
|
|
4320
4103
|
readonly appendTooltip?: string | undefined;
|
|
4321
4104
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
4322
|
-
readonly variantStyle?: import('
|
|
4323
|
-
readonly color?: import('
|
|
4105
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
4106
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
4324
4107
|
readonly isClearable?: boolean | undefined;
|
|
4325
4108
|
readonly showDivider?: boolean | undefined;
|
|
4326
4109
|
readonly label?: string | undefined;
|
|
@@ -4337,7 +4120,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4337
4120
|
readonly disabled?: boolean | undefined;
|
|
4338
4121
|
readonly isFlat?: boolean | undefined;
|
|
4339
4122
|
readonly isFocused?: boolean | undefined;
|
|
4340
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
4341
4123
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
4342
4124
|
readonly hint?: string | undefined;
|
|
4343
4125
|
readonly id?: string | undefined;
|
|
@@ -4368,22 +4150,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4368
4150
|
readonly helpText?: string | undefined;
|
|
4369
4151
|
readonly maxlength?: string | number | undefined;
|
|
4370
4152
|
readonly title?: string | false | undefined;
|
|
4371
|
-
readonly
|
|
4372
|
-
readonly
|
|
4373
|
-
readonly
|
|
4153
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
4154
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
4155
|
+
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
4156
|
+
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
4157
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
4374
4158
|
readonly disableErrorHandling?: boolean | undefined;
|
|
4375
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
4376
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
4377
|
-
readonly customRules?: ValidationRule[] | undefined;
|
|
4378
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
4379
|
-
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
4380
4159
|
readonly errorMessages?: string[] | null | undefined;
|
|
4381
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
4382
|
-
readonly successMessages?: string[] | null | undefined;
|
|
4383
4160
|
readonly hasError?: boolean | undefined;
|
|
4384
|
-
readonly hasWarning?: boolean | undefined;
|
|
4385
4161
|
readonly hasSuccess?: boolean | undefined;
|
|
4162
|
+
readonly hasWarning?: boolean | undefined;
|
|
4163
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
4386
4164
|
readonly maxErrors?: number | undefined;
|
|
4165
|
+
readonly required?: boolean | undefined;
|
|
4166
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
4167
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
4168
|
+
readonly successMessages?: string[] | null | undefined;
|
|
4169
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
4170
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
4387
4171
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
4388
4172
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
4389
4173
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -4776,7 +4560,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4776
4560
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
4777
4561
|
modelValue?: unknown;
|
|
4778
4562
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
4779
|
-
}, 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" | "
|
|
4563
|
+
}, 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<{
|
|
4780
4564
|
$: import('vue').ComponentInternalInstance;
|
|
4781
4565
|
$data: {};
|
|
4782
4566
|
$props: Partial<{
|
|
@@ -5513,7 +5297,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5513
5297
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
5514
5298
|
modelValue?: unknown;
|
|
5515
5299
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
5516
|
-
}, 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" | "
|
|
5300
|
+
}, 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<{
|
|
5517
5301
|
$: import('vue').ComponentInternalInstance;
|
|
5518
5302
|
$data: {};
|
|
5519
5303
|
$props: Partial<{
|
|
@@ -5828,65 +5612,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5828
5612
|
$host: Element | null;
|
|
5829
5613
|
$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);
|
|
5830
5614
|
$el: any;
|
|
5831
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
5832
|
-
modelValue?: string | number | null | undefined;
|
|
5833
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
5834
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
5835
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
5836
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
5837
|
-
prependTooltip?: string;
|
|
5838
|
-
appendTooltip?: string;
|
|
5839
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
5840
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
5841
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
5842
|
-
isClearable?: boolean;
|
|
5843
|
-
showDivider?: boolean;
|
|
5844
|
-
label?: string;
|
|
5845
|
-
readonly?: boolean;
|
|
5846
|
-
isActive?: boolean;
|
|
5847
|
-
baseColor?: string;
|
|
5848
|
-
bgColor?: string;
|
|
5849
|
-
centerAffix?: boolean;
|
|
5850
|
-
counter?: string | number | boolean;
|
|
5851
|
-
counterValue?: number | ((value: any) => number);
|
|
5852
|
-
density?: "default" | "comfortable" | "compact";
|
|
5853
|
-
direction?: "horizontal" | "vertical";
|
|
5854
|
-
isDirty?: boolean;
|
|
5855
|
-
disabled?: boolean;
|
|
5856
|
-
isFlat?: boolean;
|
|
5857
|
-
isFocused?: boolean;
|
|
5858
|
-
areDetailsHidden?: boolean | "auto";
|
|
5859
|
-
areSpinButtonsHidden?: boolean;
|
|
5860
|
-
hint?: string;
|
|
5861
|
-
id?: string;
|
|
5862
|
-
loading?: string | boolean;
|
|
5863
|
-
maxWidth?: string | number;
|
|
5864
|
-
messages?: string | string[];
|
|
5865
|
-
minWidth?: string | number;
|
|
5866
|
-
name?: string;
|
|
5867
|
-
displayPersistentClear?: boolean;
|
|
5868
|
-
displayPersistentCounter?: boolean;
|
|
5869
|
-
displayPersistentHint?: boolean;
|
|
5870
|
-
displayPersistentPlaceholder?: boolean;
|
|
5871
|
-
placeholder?: string;
|
|
5872
|
-
prefix?: string;
|
|
5873
|
-
isReversed?: boolean;
|
|
5874
|
-
role?: string;
|
|
5875
|
-
rounded?: string | number | boolean;
|
|
5876
|
-
isOnSingleLine?: boolean;
|
|
5877
|
-
suffix?: string;
|
|
5878
|
-
theme?: string;
|
|
5879
|
-
isTiled?: boolean;
|
|
5880
|
-
type?: string;
|
|
5881
|
-
width?: string | number;
|
|
5882
|
-
displayAsterisk?: boolean;
|
|
5883
|
-
noIcon?: boolean;
|
|
5884
|
-
disableClickButton?: boolean;
|
|
5885
|
-
autocomplete?: string;
|
|
5886
|
-
helpText?: string;
|
|
5887
|
-
maxlength?: string | number;
|
|
5888
|
-
title?: string | false;
|
|
5889
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
5615
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
5890
5616
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
5891
5617
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
5892
5618
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -5896,7 +5622,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5896
5622
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
5897
5623
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
5898
5624
|
}>, {
|
|
5899
|
-
validateOnSubmit: (
|
|
5625
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
5900
5626
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5901
5627
|
input: (...args: any[]) => void;
|
|
5902
5628
|
blur: (...args: any[]) => void;
|
|
@@ -5912,10 +5638,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5912
5638
|
title: string | false;
|
|
5913
5639
|
width: string | number;
|
|
5914
5640
|
role: string;
|
|
5915
|
-
color: import('
|
|
5641
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
5916
5642
|
theme: string;
|
|
5917
5643
|
disabled: boolean;
|
|
5918
5644
|
placeholder: string;
|
|
5645
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
5919
5646
|
density: "default" | "comfortable" | "compact";
|
|
5920
5647
|
rounded: string | number | boolean;
|
|
5921
5648
|
maxWidth: string | number;
|
|
@@ -5936,12 +5663,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5936
5663
|
disableErrorHandling: boolean;
|
|
5937
5664
|
errorMessages: string[] | null;
|
|
5938
5665
|
maxErrors: number;
|
|
5666
|
+
hasError: boolean;
|
|
5667
|
+
hasWarning: boolean;
|
|
5668
|
+
hasSuccess: boolean;
|
|
5669
|
+
useVuetifyValidation: boolean;
|
|
5670
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5671
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5672
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5939
5673
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
5940
5674
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
5941
5675
|
prependTooltip: string;
|
|
5942
5676
|
appendTooltip: string;
|
|
5943
5677
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
5944
|
-
variantStyle: import('
|
|
5678
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
5945
5679
|
isClearable: boolean;
|
|
5946
5680
|
centerAffix: boolean;
|
|
5947
5681
|
counter: string | number | boolean;
|
|
@@ -5950,7 +5684,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5950
5684
|
isDirty: boolean;
|
|
5951
5685
|
isFlat: boolean;
|
|
5952
5686
|
isFocused: boolean;
|
|
5953
|
-
areDetailsHidden: boolean | "auto";
|
|
5954
5687
|
areSpinButtonsHidden: boolean;
|
|
5955
5688
|
hint: string;
|
|
5956
5689
|
messages: string | string[];
|
|
@@ -5968,16 +5701,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5968
5701
|
autocomplete: string;
|
|
5969
5702
|
helpText: string;
|
|
5970
5703
|
maxlength: string | number;
|
|
5704
|
+
hideDetails: boolean | "auto";
|
|
5971
5705
|
isValidateOnBlur: boolean;
|
|
5972
|
-
useVuetifyValidation: boolean;
|
|
5973
|
-
customRules: ValidationRule[];
|
|
5974
|
-
customWarningRules: ValidationRule[];
|
|
5975
|
-
customSuccessRules: ValidationRule[];
|
|
5976
|
-
warningMessages: string[] | null;
|
|
5977
5706
|
successMessages: string[] | null;
|
|
5978
|
-
|
|
5979
|
-
hasWarning: boolean;
|
|
5980
|
-
hasSuccess: boolean;
|
|
5707
|
+
warningMessages: string[] | null;
|
|
5981
5708
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
5982
5709
|
beforeCreate?: (() => void) | (() => void)[];
|
|
5983
5710
|
created?: (() => void) | (() => void)[];
|
|
@@ -6004,10 +5731,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6004
5731
|
title: string | false;
|
|
6005
5732
|
width: string | number;
|
|
6006
5733
|
role: string;
|
|
6007
|
-
color: import('
|
|
5734
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
6008
5735
|
theme: string;
|
|
6009
5736
|
disabled: boolean;
|
|
6010
5737
|
placeholder: string;
|
|
5738
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
6011
5739
|
density: "default" | "comfortable" | "compact";
|
|
6012
5740
|
rounded: string | number | boolean;
|
|
6013
5741
|
maxWidth: string | number;
|
|
@@ -6028,12 +5756,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6028
5756
|
disableErrorHandling: boolean;
|
|
6029
5757
|
errorMessages: string[] | null;
|
|
6030
5758
|
maxErrors: number;
|
|
5759
|
+
hasError: boolean;
|
|
5760
|
+
hasWarning: boolean;
|
|
5761
|
+
hasSuccess: boolean;
|
|
5762
|
+
useVuetifyValidation: boolean;
|
|
5763
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5764
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5765
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
6031
5766
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6032
5767
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6033
5768
|
prependTooltip: string;
|
|
6034
5769
|
appendTooltip: string;
|
|
6035
5770
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
6036
|
-
variantStyle: import('
|
|
5771
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
6037
5772
|
isClearable: boolean;
|
|
6038
5773
|
centerAffix: boolean;
|
|
6039
5774
|
counter: string | number | boolean;
|
|
@@ -6042,7 +5777,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6042
5777
|
isDirty: boolean;
|
|
6043
5778
|
isFlat: boolean;
|
|
6044
5779
|
isFocused: boolean;
|
|
6045
|
-
areDetailsHidden: boolean | "auto";
|
|
6046
5780
|
areSpinButtonsHidden: boolean;
|
|
6047
5781
|
hint: string;
|
|
6048
5782
|
messages: string | string[];
|
|
@@ -6060,75 +5794,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6060
5794
|
autocomplete: string;
|
|
6061
5795
|
helpText: string;
|
|
6062
5796
|
maxlength: string | number;
|
|
5797
|
+
hideDetails: boolean | "auto";
|
|
6063
5798
|
isValidateOnBlur: boolean;
|
|
6064
|
-
useVuetifyValidation: boolean;
|
|
6065
|
-
customRules: ValidationRule[];
|
|
6066
|
-
customWarningRules: ValidationRule[];
|
|
6067
|
-
customSuccessRules: ValidationRule[];
|
|
6068
|
-
warningMessages: string[] | null;
|
|
6069
5799
|
successMessages: string[] | null;
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
hasSuccess: boolean;
|
|
6073
|
-
}> & Omit<Readonly<{
|
|
6074
|
-
modelValue?: string | number | null | undefined;
|
|
6075
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
6076
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
6077
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
6078
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
6079
|
-
prependTooltip?: string;
|
|
6080
|
-
appendTooltip?: string;
|
|
6081
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
6082
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
6083
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
6084
|
-
isClearable?: boolean;
|
|
6085
|
-
showDivider?: boolean;
|
|
6086
|
-
label?: string;
|
|
6087
|
-
readonly?: boolean;
|
|
6088
|
-
isActive?: boolean;
|
|
6089
|
-
baseColor?: string;
|
|
6090
|
-
bgColor?: string;
|
|
6091
|
-
centerAffix?: boolean;
|
|
6092
|
-
counter?: string | number | boolean;
|
|
6093
|
-
counterValue?: number | ((value: any) => number);
|
|
6094
|
-
density?: "default" | "comfortable" | "compact";
|
|
6095
|
-
direction?: "horizontal" | "vertical";
|
|
6096
|
-
isDirty?: boolean;
|
|
6097
|
-
disabled?: boolean;
|
|
6098
|
-
isFlat?: boolean;
|
|
6099
|
-
isFocused?: boolean;
|
|
6100
|
-
areDetailsHidden?: boolean | "auto";
|
|
6101
|
-
areSpinButtonsHidden?: boolean;
|
|
6102
|
-
hint?: string;
|
|
6103
|
-
id?: string;
|
|
6104
|
-
loading?: string | boolean;
|
|
6105
|
-
maxWidth?: string | number;
|
|
6106
|
-
messages?: string | string[];
|
|
6107
|
-
minWidth?: string | number;
|
|
6108
|
-
name?: string;
|
|
6109
|
-
displayPersistentClear?: boolean;
|
|
6110
|
-
displayPersistentCounter?: boolean;
|
|
6111
|
-
displayPersistentHint?: boolean;
|
|
6112
|
-
displayPersistentPlaceholder?: boolean;
|
|
6113
|
-
placeholder?: string;
|
|
6114
|
-
prefix?: string;
|
|
6115
|
-
isReversed?: boolean;
|
|
6116
|
-
role?: string;
|
|
6117
|
-
rounded?: string | number | boolean;
|
|
6118
|
-
isOnSingleLine?: boolean;
|
|
6119
|
-
suffix?: string;
|
|
6120
|
-
theme?: string;
|
|
6121
|
-
isTiled?: boolean;
|
|
6122
|
-
type?: string;
|
|
6123
|
-
width?: string | number;
|
|
6124
|
-
displayAsterisk?: boolean;
|
|
6125
|
-
noIcon?: boolean;
|
|
6126
|
-
disableClickButton?: boolean;
|
|
6127
|
-
autocomplete?: string;
|
|
6128
|
-
helpText?: string;
|
|
6129
|
-
maxlength?: string | number;
|
|
6130
|
-
title?: string | false;
|
|
6131
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
5800
|
+
warningMessages: string[] | null;
|
|
5801
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
6132
5802
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
6133
5803
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6134
5804
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -6137,8 +5807,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6137
5807
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
6138
5808
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
6139
5809
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
6140
|
-
}>, "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" | "
|
|
6141
|
-
validateOnSubmit: (
|
|
5810
|
+
}>, "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")> & {
|
|
5811
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
6142
5812
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
6143
5813
|
$slots: {
|
|
6144
5814
|
prepend?(_: {}): any;
|
|
@@ -6159,8 +5829,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6159
5829
|
}, Readonly<{
|
|
6160
5830
|
autoClamp?: boolean;
|
|
6161
5831
|
bgColor?: string;
|
|
6162
|
-
customRules?: ValidationRule[];
|
|
6163
|
-
customWarningRules?: ValidationRule[];
|
|
5832
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5833
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
6164
5834
|
dateFormatReturn?: string;
|
|
6165
5835
|
density?: "default" | "comfortable" | "compact";
|
|
6166
5836
|
disableErrorHandling?: boolean;
|
|
@@ -6183,6 +5853,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6183
5853
|
required?: boolean;
|
|
6184
5854
|
showSuccessMessages?: boolean;
|
|
6185
5855
|
title?: string | false;
|
|
5856
|
+
skipInternalValidation?: boolean;
|
|
6186
5857
|
}> & Readonly<{
|
|
6187
5858
|
onInput?: ((value: string) => any) | undefined;
|
|
6188
5859
|
onBlur?: (() => any) | undefined;
|
|
@@ -6205,11 +5876,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6205
5876
|
required: boolean;
|
|
6206
5877
|
showSuccessMessages: boolean;
|
|
6207
5878
|
disableErrorHandling: boolean;
|
|
5879
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
5880
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
6208
5881
|
hint: string;
|
|
6209
5882
|
noIcon: boolean;
|
|
6210
5883
|
isValidateOnBlur: boolean;
|
|
6211
|
-
customRules: ValidationRule[];
|
|
6212
|
-
customWarningRules: ValidationRule[];
|
|
6213
5884
|
persistentHint: boolean;
|
|
6214
5885
|
format: string;
|
|
6215
5886
|
autoClamp: boolean;
|
|
@@ -6220,6 +5891,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6220
5891
|
displayPrependIcon: boolean;
|
|
6221
5892
|
externalErrorMessages: string[];
|
|
6222
5893
|
isOutlined: boolean;
|
|
5894
|
+
skipInternalValidation: boolean;
|
|
6223
5895
|
}> | null;
|
|
6224
5896
|
datePickerRef: ({
|
|
6225
5897
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -6737,9 +6409,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6737
6409
|
currentMonth: Ref<string | null, string | null>;
|
|
6738
6410
|
currentMonthName: Ref<string | null, string | null>;
|
|
6739
6411
|
toggleDatePicker: () => void;
|
|
6740
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => ValidationResult |
|
|
6412
|
+
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;
|
|
6741
6413
|
clearValidation: () => void;
|
|
6742
|
-
validateDates: (forceValidation?: boolean) => ValidationResult | Promise<ValidationResult>;
|
|
6414
|
+
validateDates: (forceValidation?: boolean) => import('../../../composables/validation/useValidation').ValidationResult | Promise<import('../../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
6743
6415
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
6744
6416
|
formatted: string;
|
|
6745
6417
|
cursorPos: number;
|
|
@@ -6766,10 +6438,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6766
6438
|
required: boolean;
|
|
6767
6439
|
showSuccessMessages: boolean;
|
|
6768
6440
|
disableErrorHandling: boolean;
|
|
6769
|
-
hint: string;
|
|
6770
|
-
displayAsterisk: boolean;
|
|
6771
|
-
noIcon: boolean;
|
|
6772
|
-
isValidateOnBlur: boolean;
|
|
6773
6441
|
customRules: {
|
|
6774
6442
|
type: string;
|
|
6775
6443
|
options: any;
|
|
@@ -6778,6 +6446,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6778
6446
|
type: string;
|
|
6779
6447
|
options: any;
|
|
6780
6448
|
}[];
|
|
6449
|
+
hint: string;
|
|
6450
|
+
displayAsterisk: boolean;
|
|
6451
|
+
noIcon: boolean;
|
|
6452
|
+
isValidateOnBlur: boolean;
|
|
6781
6453
|
persistentHint: boolean;
|
|
6782
6454
|
format: string;
|
|
6783
6455
|
autoClamp: boolean;
|
|
@@ -6805,15 +6477,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6805
6477
|
$data: {};
|
|
6806
6478
|
$props: {
|
|
6807
6479
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
6808
|
-
readonly prependIcon?: import('
|
|
6809
|
-
readonly appendIcon?: import('
|
|
6810
|
-
readonly prependInnerIcon?: import('
|
|
6811
|
-
readonly appendInnerIcon?: import('
|
|
6480
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
6481
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
6482
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
6483
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
6812
6484
|
readonly prependTooltip?: string | undefined;
|
|
6813
6485
|
readonly appendTooltip?: string | undefined;
|
|
6814
6486
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
6815
|
-
readonly variantStyle?: import('
|
|
6816
|
-
readonly color?: import('
|
|
6487
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
6488
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
6817
6489
|
readonly isClearable?: boolean | undefined;
|
|
6818
6490
|
readonly showDivider?: boolean | undefined;
|
|
6819
6491
|
readonly label?: string | undefined;
|
|
@@ -6830,7 +6502,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6830
6502
|
readonly disabled?: boolean | undefined;
|
|
6831
6503
|
readonly isFlat?: boolean | undefined;
|
|
6832
6504
|
readonly isFocused?: boolean | undefined;
|
|
6833
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
6834
6505
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
6835
6506
|
readonly hint?: string | undefined;
|
|
6836
6507
|
readonly id?: string | undefined;
|
|
@@ -6861,22 +6532,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6861
6532
|
readonly helpText?: string | undefined;
|
|
6862
6533
|
readonly maxlength?: string | number | undefined;
|
|
6863
6534
|
readonly title?: string | false | undefined;
|
|
6864
|
-
readonly
|
|
6865
|
-
readonly
|
|
6866
|
-
readonly
|
|
6535
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
6536
|
+
readonly locales?: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
6537
|
+
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
6538
|
+
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
6539
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
6867
6540
|
readonly disableErrorHandling?: boolean | undefined;
|
|
6868
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
6869
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
6870
|
-
readonly customRules?: ValidationRule[] | undefined;
|
|
6871
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
6872
|
-
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
6873
6541
|
readonly errorMessages?: string[] | null | undefined;
|
|
6874
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
6875
|
-
readonly successMessages?: string[] | null | undefined;
|
|
6876
6542
|
readonly hasError?: boolean | undefined;
|
|
6877
|
-
readonly hasWarning?: boolean | undefined;
|
|
6878
6543
|
readonly hasSuccess?: boolean | undefined;
|
|
6544
|
+
readonly hasWarning?: boolean | undefined;
|
|
6545
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
6879
6546
|
readonly maxErrors?: number | undefined;
|
|
6547
|
+
readonly required?: boolean | undefined;
|
|
6548
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
6549
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
6550
|
+
readonly successMessages?: string[] | null | undefined;
|
|
6551
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
6552
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
6880
6553
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
6881
6554
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
6882
6555
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -7269,7 +6942,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7269
6942
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
7270
6943
|
modelValue?: unknown;
|
|
7271
6944
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
7272
|
-
}, 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" | "
|
|
6945
|
+
}, 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<{
|
|
7273
6946
|
$: import('vue').ComponentInternalInstance;
|
|
7274
6947
|
$data: {};
|
|
7275
6948
|
$props: Partial<{
|
|
@@ -8006,7 +7679,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8006
7679
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
8007
7680
|
modelValue?: unknown;
|
|
8008
7681
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
8009
|
-
}, 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" | "
|
|
7682
|
+
}, 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<{
|
|
8010
7683
|
$: import('vue').ComponentInternalInstance;
|
|
8011
7684
|
$data: {};
|
|
8012
7685
|
$props: Partial<{
|
|
@@ -8321,65 +7994,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8321
7994
|
$host: Element | null;
|
|
8322
7995
|
$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);
|
|
8323
7996
|
$el: any;
|
|
8324
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
8325
|
-
modelValue?: string | number | null | undefined;
|
|
8326
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8327
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8328
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8329
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8330
|
-
prependTooltip?: string;
|
|
8331
|
-
appendTooltip?: string;
|
|
8332
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
8333
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
8334
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
8335
|
-
isClearable?: boolean;
|
|
8336
|
-
showDivider?: boolean;
|
|
8337
|
-
label?: string;
|
|
8338
|
-
readonly?: boolean;
|
|
8339
|
-
isActive?: boolean;
|
|
8340
|
-
baseColor?: string;
|
|
8341
|
-
bgColor?: string;
|
|
8342
|
-
centerAffix?: boolean;
|
|
8343
|
-
counter?: string | number | boolean;
|
|
8344
|
-
counterValue?: number | ((value: any) => number);
|
|
8345
|
-
density?: "default" | "comfortable" | "compact";
|
|
8346
|
-
direction?: "horizontal" | "vertical";
|
|
8347
|
-
isDirty?: boolean;
|
|
8348
|
-
disabled?: boolean;
|
|
8349
|
-
isFlat?: boolean;
|
|
8350
|
-
isFocused?: boolean;
|
|
8351
|
-
areDetailsHidden?: boolean | "auto";
|
|
8352
|
-
areSpinButtonsHidden?: boolean;
|
|
8353
|
-
hint?: string;
|
|
8354
|
-
id?: string;
|
|
8355
|
-
loading?: string | boolean;
|
|
8356
|
-
maxWidth?: string | number;
|
|
8357
|
-
messages?: string | string[];
|
|
8358
|
-
minWidth?: string | number;
|
|
8359
|
-
name?: string;
|
|
8360
|
-
displayPersistentClear?: boolean;
|
|
8361
|
-
displayPersistentCounter?: boolean;
|
|
8362
|
-
displayPersistentHint?: boolean;
|
|
8363
|
-
displayPersistentPlaceholder?: boolean;
|
|
8364
|
-
placeholder?: string;
|
|
8365
|
-
prefix?: string;
|
|
8366
|
-
isReversed?: boolean;
|
|
8367
|
-
role?: string;
|
|
8368
|
-
rounded?: string | number | boolean;
|
|
8369
|
-
isOnSingleLine?: boolean;
|
|
8370
|
-
suffix?: string;
|
|
8371
|
-
theme?: string;
|
|
8372
|
-
isTiled?: boolean;
|
|
8373
|
-
type?: string;
|
|
8374
|
-
width?: string | number;
|
|
8375
|
-
displayAsterisk?: boolean;
|
|
8376
|
-
noIcon?: boolean;
|
|
8377
|
-
disableClickButton?: boolean;
|
|
8378
|
-
autocomplete?: string;
|
|
8379
|
-
helpText?: string;
|
|
8380
|
-
maxlength?: string | number;
|
|
8381
|
-
title?: string | false;
|
|
8382
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
7997
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
8383
7998
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8384
7999
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
8385
8000
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -8389,7 +8004,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8389
8004
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8390
8005
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8391
8006
|
}>, {
|
|
8392
|
-
validateOnSubmit: (
|
|
8007
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
8393
8008
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8394
8009
|
input: (...args: any[]) => void;
|
|
8395
8010
|
blur: (...args: any[]) => void;
|
|
@@ -8405,10 +8020,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8405
8020
|
title: string | false;
|
|
8406
8021
|
width: string | number;
|
|
8407
8022
|
role: string;
|
|
8408
|
-
color: import('
|
|
8023
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
8409
8024
|
theme: string;
|
|
8410
8025
|
disabled: boolean;
|
|
8411
8026
|
placeholder: string;
|
|
8027
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
8412
8028
|
density: "default" | "comfortable" | "compact";
|
|
8413
8029
|
rounded: string | number | boolean;
|
|
8414
8030
|
maxWidth: string | number;
|
|
@@ -8429,12 +8045,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8429
8045
|
disableErrorHandling: boolean;
|
|
8430
8046
|
errorMessages: string[] | null;
|
|
8431
8047
|
maxErrors: number;
|
|
8048
|
+
hasError: boolean;
|
|
8049
|
+
hasWarning: boolean;
|
|
8050
|
+
hasSuccess: boolean;
|
|
8051
|
+
useVuetifyValidation: boolean;
|
|
8052
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8053
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8054
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8432
8055
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8433
8056
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8434
8057
|
prependTooltip: string;
|
|
8435
8058
|
appendTooltip: string;
|
|
8436
8059
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
8437
|
-
variantStyle: import('
|
|
8060
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
8438
8061
|
isClearable: boolean;
|
|
8439
8062
|
centerAffix: boolean;
|
|
8440
8063
|
counter: string | number | boolean;
|
|
@@ -8443,7 +8066,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8443
8066
|
isDirty: boolean;
|
|
8444
8067
|
isFlat: boolean;
|
|
8445
8068
|
isFocused: boolean;
|
|
8446
|
-
areDetailsHidden: boolean | "auto";
|
|
8447
8069
|
areSpinButtonsHidden: boolean;
|
|
8448
8070
|
hint: string;
|
|
8449
8071
|
messages: string | string[];
|
|
@@ -8461,16 +8083,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8461
8083
|
autocomplete: string;
|
|
8462
8084
|
helpText: string;
|
|
8463
8085
|
maxlength: string | number;
|
|
8086
|
+
hideDetails: boolean | "auto";
|
|
8464
8087
|
isValidateOnBlur: boolean;
|
|
8465
|
-
useVuetifyValidation: boolean;
|
|
8466
|
-
customRules: ValidationRule[];
|
|
8467
|
-
customWarningRules: ValidationRule[];
|
|
8468
|
-
customSuccessRules: ValidationRule[];
|
|
8469
|
-
warningMessages: string[] | null;
|
|
8470
8088
|
successMessages: string[] | null;
|
|
8471
|
-
|
|
8472
|
-
hasWarning: boolean;
|
|
8473
|
-
hasSuccess: boolean;
|
|
8089
|
+
warningMessages: string[] | null;
|
|
8474
8090
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
8475
8091
|
beforeCreate?: (() => void) | (() => void)[];
|
|
8476
8092
|
created?: (() => void) | (() => void)[];
|
|
@@ -8497,10 +8113,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8497
8113
|
title: string | false;
|
|
8498
8114
|
width: string | number;
|
|
8499
8115
|
role: string;
|
|
8500
|
-
color: import('
|
|
8116
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
8501
8117
|
theme: string;
|
|
8502
8118
|
disabled: boolean;
|
|
8503
8119
|
placeholder: string;
|
|
8120
|
+
locales: Partial<import('../../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
8504
8121
|
density: "default" | "comfortable" | "compact";
|
|
8505
8122
|
rounded: string | number | boolean;
|
|
8506
8123
|
maxWidth: string | number;
|
|
@@ -8521,12 +8138,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8521
8138
|
disableErrorHandling: boolean;
|
|
8522
8139
|
errorMessages: string[] | null;
|
|
8523
8140
|
maxErrors: number;
|
|
8141
|
+
hasError: boolean;
|
|
8142
|
+
hasWarning: boolean;
|
|
8143
|
+
hasSuccess: boolean;
|
|
8144
|
+
useVuetifyValidation: boolean;
|
|
8145
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8146
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8147
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
8524
8148
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8525
8149
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8526
8150
|
prependTooltip: string;
|
|
8527
8151
|
appendTooltip: string;
|
|
8528
8152
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
8529
|
-
variantStyle: import('
|
|
8153
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
8530
8154
|
isClearable: boolean;
|
|
8531
8155
|
centerAffix: boolean;
|
|
8532
8156
|
counter: string | number | boolean;
|
|
@@ -8535,7 +8159,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8535
8159
|
isDirty: boolean;
|
|
8536
8160
|
isFlat: boolean;
|
|
8537
8161
|
isFocused: boolean;
|
|
8538
|
-
areDetailsHidden: boolean | "auto";
|
|
8539
8162
|
areSpinButtonsHidden: boolean;
|
|
8540
8163
|
hint: string;
|
|
8541
8164
|
messages: string | string[];
|
|
@@ -8553,75 +8176,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8553
8176
|
autocomplete: string;
|
|
8554
8177
|
helpText: string;
|
|
8555
8178
|
maxlength: string | number;
|
|
8179
|
+
hideDetails: boolean | "auto";
|
|
8556
8180
|
isValidateOnBlur: boolean;
|
|
8557
|
-
useVuetifyValidation: boolean;
|
|
8558
|
-
customRules: ValidationRule[];
|
|
8559
|
-
customWarningRules: ValidationRule[];
|
|
8560
|
-
customSuccessRules: ValidationRule[];
|
|
8561
|
-
warningMessages: string[] | null;
|
|
8562
8181
|
successMessages: string[] | null;
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
hasSuccess: boolean;
|
|
8566
|
-
}> & Omit<Readonly<{
|
|
8567
|
-
modelValue?: string | number | null | undefined;
|
|
8568
|
-
prependIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8569
|
-
appendIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8570
|
-
prependInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8571
|
-
appendInnerIcon?: import('../../../types/vuetifyTypes').IconType;
|
|
8572
|
-
prependTooltip?: string;
|
|
8573
|
-
appendTooltip?: string;
|
|
8574
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
8575
|
-
variantStyle?: import('../../../types/vuetifyTypes').VariantStyle;
|
|
8576
|
-
color?: import('../../../types/vuetifyTypes').ColorType;
|
|
8577
|
-
isClearable?: boolean;
|
|
8578
|
-
showDivider?: boolean;
|
|
8579
|
-
label?: string;
|
|
8580
|
-
readonly?: boolean;
|
|
8581
|
-
isActive?: boolean;
|
|
8582
|
-
baseColor?: string;
|
|
8583
|
-
bgColor?: string;
|
|
8584
|
-
centerAffix?: boolean;
|
|
8585
|
-
counter?: string | number | boolean;
|
|
8586
|
-
counterValue?: number | ((value: any) => number);
|
|
8587
|
-
density?: "default" | "comfortable" | "compact";
|
|
8588
|
-
direction?: "horizontal" | "vertical";
|
|
8589
|
-
isDirty?: boolean;
|
|
8590
|
-
disabled?: boolean;
|
|
8591
|
-
isFlat?: boolean;
|
|
8592
|
-
isFocused?: boolean;
|
|
8593
|
-
areDetailsHidden?: boolean | "auto";
|
|
8594
|
-
areSpinButtonsHidden?: boolean;
|
|
8595
|
-
hint?: string;
|
|
8596
|
-
id?: string;
|
|
8597
|
-
loading?: string | boolean;
|
|
8598
|
-
maxWidth?: string | number;
|
|
8599
|
-
messages?: string | string[];
|
|
8600
|
-
minWidth?: string | number;
|
|
8601
|
-
name?: string;
|
|
8602
|
-
displayPersistentClear?: boolean;
|
|
8603
|
-
displayPersistentCounter?: boolean;
|
|
8604
|
-
displayPersistentHint?: boolean;
|
|
8605
|
-
displayPersistentPlaceholder?: boolean;
|
|
8606
|
-
placeholder?: string;
|
|
8607
|
-
prefix?: string;
|
|
8608
|
-
isReversed?: boolean;
|
|
8609
|
-
role?: string;
|
|
8610
|
-
rounded?: string | number | boolean;
|
|
8611
|
-
isOnSingleLine?: boolean;
|
|
8612
|
-
suffix?: string;
|
|
8613
|
-
theme?: string;
|
|
8614
|
-
isTiled?: boolean;
|
|
8615
|
-
type?: string;
|
|
8616
|
-
width?: string | number;
|
|
8617
|
-
displayAsterisk?: boolean;
|
|
8618
|
-
noIcon?: boolean;
|
|
8619
|
-
disableClickButton?: boolean;
|
|
8620
|
-
autocomplete?: string;
|
|
8621
|
-
helpText?: string;
|
|
8622
|
-
maxlength?: string | number;
|
|
8623
|
-
title?: string | false;
|
|
8624
|
-
} & import('../../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
8182
|
+
warningMessages: string[] | null;
|
|
8183
|
+
}> & Omit<Readonly<import('../../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
8625
8184
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8626
8185
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
8627
8186
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -8630,8 +8189,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8630
8189
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
8631
8190
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8632
8191
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8633
|
-
}>, "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" | "
|
|
8634
|
-
validateOnSubmit: (
|
|
8192
|
+
}>, "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")> & {
|
|
8193
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
8635
8194
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
8636
8195
|
$slots: {
|
|
8637
8196
|
prepend?(_: {}): any;
|