@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
|
@@ -57,9 +57,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
57
57
|
required: boolean;
|
|
58
58
|
showSuccessMessages: boolean;
|
|
59
59
|
disableErrorHandling: boolean;
|
|
60
|
-
noIcon: boolean;
|
|
61
60
|
customRules: ValidationRule[];
|
|
62
61
|
customWarningRules: ValidationRule[];
|
|
62
|
+
noIcon: boolean;
|
|
63
63
|
hideDetails: boolean | "auto";
|
|
64
64
|
format: string;
|
|
65
65
|
noCalendar: boolean;
|
|
@@ -158,10 +158,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
158
158
|
required: boolean;
|
|
159
159
|
showSuccessMessages: boolean;
|
|
160
160
|
disableErrorHandling: boolean;
|
|
161
|
-
hint: string;
|
|
162
|
-
displayAsterisk: boolean;
|
|
163
|
-
noIcon: boolean;
|
|
164
|
-
isValidateOnBlur: boolean;
|
|
165
161
|
customRules: {
|
|
166
162
|
type: string;
|
|
167
163
|
options: any;
|
|
@@ -170,8 +166,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
170
166
|
type: string;
|
|
171
167
|
options: any;
|
|
172
168
|
}[];
|
|
173
|
-
|
|
169
|
+
hint: string;
|
|
170
|
+
displayAsterisk: boolean;
|
|
171
|
+
noIcon: boolean;
|
|
174
172
|
hideDetails: boolean | "auto";
|
|
173
|
+
isValidateOnBlur: boolean;
|
|
174
|
+
persistentHint: boolean;
|
|
175
175
|
format: string;
|
|
176
176
|
autoClamp: boolean;
|
|
177
177
|
noCalendar: boolean;
|
|
@@ -221,6 +221,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
221
221
|
required?: boolean;
|
|
222
222
|
showSuccessMessages?: boolean;
|
|
223
223
|
title?: string | false;
|
|
224
|
+
skipInternalValidation?: boolean;
|
|
224
225
|
}> & Readonly<{
|
|
225
226
|
onInput?: ((value: string) => any) | undefined;
|
|
226
227
|
onBlur?: (() => any) | undefined;
|
|
@@ -249,11 +250,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
249
250
|
required: boolean;
|
|
250
251
|
showSuccessMessages: boolean;
|
|
251
252
|
disableErrorHandling: boolean;
|
|
253
|
+
customRules: ValidationRule[];
|
|
254
|
+
customWarningRules: ValidationRule[];
|
|
252
255
|
hint: string;
|
|
253
256
|
noIcon: boolean;
|
|
254
257
|
isValidateOnBlur: boolean;
|
|
255
|
-
customRules: ValidationRule[];
|
|
256
|
-
customWarningRules: ValidationRule[];
|
|
257
258
|
persistentHint: boolean;
|
|
258
259
|
format: string;
|
|
259
260
|
autoClamp: boolean;
|
|
@@ -264,21 +265,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
264
265
|
displayPrependIcon: boolean;
|
|
265
266
|
externalErrorMessages: string[];
|
|
266
267
|
isOutlined: boolean;
|
|
268
|
+
skipInternalValidation: boolean;
|
|
267
269
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
268
270
|
inputRef: ({
|
|
269
271
|
$: import('vue').ComponentInternalInstance;
|
|
270
272
|
$data: {};
|
|
271
273
|
$props: {
|
|
272
274
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
273
|
-
readonly prependIcon?: import('
|
|
274
|
-
readonly appendIcon?: import('
|
|
275
|
-
readonly prependInnerIcon?: import('
|
|
276
|
-
readonly appendInnerIcon?: import('
|
|
275
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
276
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
277
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
278
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
277
279
|
readonly prependTooltip?: string | undefined;
|
|
278
280
|
readonly appendTooltip?: string | undefined;
|
|
279
281
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
280
|
-
readonly variantStyle?: import('
|
|
281
|
-
readonly color?: import('
|
|
282
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
283
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
282
284
|
readonly isClearable?: boolean | undefined;
|
|
283
285
|
readonly showDivider?: boolean | undefined;
|
|
284
286
|
readonly label?: string | undefined;
|
|
@@ -295,7 +297,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
295
297
|
readonly disabled?: boolean | undefined;
|
|
296
298
|
readonly isFlat?: boolean | undefined;
|
|
297
299
|
readonly isFocused?: boolean | undefined;
|
|
298
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
299
300
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
300
301
|
readonly hint?: string | undefined;
|
|
301
302
|
readonly id?: string | undefined;
|
|
@@ -326,22 +327,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
326
327
|
readonly helpText?: string | undefined;
|
|
327
328
|
readonly maxlength?: string | number | undefined;
|
|
328
329
|
readonly title?: string | false | undefined;
|
|
329
|
-
readonly
|
|
330
|
-
readonly
|
|
331
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
332
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
333
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
334
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
330
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
331
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
335
332
|
readonly customRules?: ValidationRule[] | undefined;
|
|
336
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
337
333
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
334
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
335
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
338
336
|
readonly errorMessages?: string[] | null | undefined;
|
|
339
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
340
|
-
readonly successMessages?: string[] | null | undefined;
|
|
341
337
|
readonly hasError?: boolean | undefined;
|
|
342
|
-
readonly hasWarning?: boolean | undefined;
|
|
343
338
|
readonly hasSuccess?: boolean | undefined;
|
|
339
|
+
readonly hasWarning?: boolean | undefined;
|
|
340
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
344
341
|
readonly maxErrors?: number | undefined;
|
|
342
|
+
readonly required?: boolean | undefined;
|
|
343
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
344
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
345
|
+
readonly successMessages?: string[] | null | undefined;
|
|
346
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
347
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
345
348
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
346
349
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
347
350
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -734,7 +737,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
734
737
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
735
738
|
modelValue?: unknown;
|
|
736
739
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
737
|
-
}, 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" | "
|
|
740
|
+
}, 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<{
|
|
738
741
|
$: import('vue').ComponentInternalInstance;
|
|
739
742
|
$data: {};
|
|
740
743
|
$props: Partial<{
|
|
@@ -1471,7 +1474,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1471
1474
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
1472
1475
|
modelValue?: unknown;
|
|
1473
1476
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
1474
|
-
}, 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" | "
|
|
1477
|
+
}, 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<{
|
|
1475
1478
|
$: import('vue').ComponentInternalInstance;
|
|
1476
1479
|
$data: {};
|
|
1477
1480
|
$props: Partial<{
|
|
@@ -1786,65 +1789,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1786
1789
|
$host: Element | null;
|
|
1787
1790
|
$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);
|
|
1788
1791
|
$el: any;
|
|
1789
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1790
|
-
modelValue?: string | number | null | undefined;
|
|
1791
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
1792
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
1793
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
1794
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
1795
|
-
prependTooltip?: string;
|
|
1796
|
-
appendTooltip?: string;
|
|
1797
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
1798
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
1799
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
1800
|
-
isClearable?: boolean;
|
|
1801
|
-
showDivider?: boolean;
|
|
1802
|
-
label?: string;
|
|
1803
|
-
readonly?: boolean;
|
|
1804
|
-
isActive?: boolean;
|
|
1805
|
-
baseColor?: string;
|
|
1806
|
-
bgColor?: string;
|
|
1807
|
-
centerAffix?: boolean;
|
|
1808
|
-
counter?: string | number | boolean;
|
|
1809
|
-
counterValue?: number | ((value: any) => number);
|
|
1810
|
-
density?: "default" | "comfortable" | "compact";
|
|
1811
|
-
direction?: "horizontal" | "vertical";
|
|
1812
|
-
isDirty?: boolean;
|
|
1813
|
-
disabled?: boolean;
|
|
1814
|
-
isFlat?: boolean;
|
|
1815
|
-
isFocused?: boolean;
|
|
1816
|
-
areDetailsHidden?: boolean | "auto";
|
|
1817
|
-
areSpinButtonsHidden?: boolean;
|
|
1818
|
-
hint?: string;
|
|
1819
|
-
id?: string;
|
|
1820
|
-
loading?: string | boolean;
|
|
1821
|
-
maxWidth?: string | number;
|
|
1822
|
-
messages?: string | string[];
|
|
1823
|
-
minWidth?: string | number;
|
|
1824
|
-
name?: string;
|
|
1825
|
-
displayPersistentClear?: boolean;
|
|
1826
|
-
displayPersistentCounter?: boolean;
|
|
1827
|
-
displayPersistentHint?: boolean;
|
|
1828
|
-
displayPersistentPlaceholder?: boolean;
|
|
1829
|
-
placeholder?: string;
|
|
1830
|
-
prefix?: string;
|
|
1831
|
-
isReversed?: boolean;
|
|
1832
|
-
role?: string;
|
|
1833
|
-
rounded?: string | number | boolean;
|
|
1834
|
-
isOnSingleLine?: boolean;
|
|
1835
|
-
suffix?: string;
|
|
1836
|
-
theme?: string;
|
|
1837
|
-
isTiled?: boolean;
|
|
1838
|
-
type?: string;
|
|
1839
|
-
width?: string | number;
|
|
1840
|
-
displayAsterisk?: boolean;
|
|
1841
|
-
noIcon?: boolean;
|
|
1842
|
-
disableClickButton?: boolean;
|
|
1843
|
-
autocomplete?: string;
|
|
1844
|
-
helpText?: string;
|
|
1845
|
-
maxlength?: string | number;
|
|
1846
|
-
title?: string | false;
|
|
1847
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1792
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
1848
1793
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1849
1794
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1850
1795
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -1854,7 +1799,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1854
1799
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1855
1800
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1856
1801
|
}>, {
|
|
1857
|
-
validateOnSubmit: (
|
|
1802
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
1858
1803
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1859
1804
|
input: (...args: any[]) => void;
|
|
1860
1805
|
blur: (...args: any[]) => void;
|
|
@@ -1870,10 +1815,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1870
1815
|
title: string | false;
|
|
1871
1816
|
width: string | number;
|
|
1872
1817
|
role: string;
|
|
1873
|
-
color: import('
|
|
1818
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
1874
1819
|
theme: string;
|
|
1875
1820
|
disabled: boolean;
|
|
1876
1821
|
placeholder: string;
|
|
1822
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1877
1823
|
density: "default" | "comfortable" | "compact";
|
|
1878
1824
|
rounded: string | number | boolean;
|
|
1879
1825
|
maxWidth: string | number;
|
|
@@ -1894,12 +1840,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1894
1840
|
disableErrorHandling: boolean;
|
|
1895
1841
|
errorMessages: string[] | null;
|
|
1896
1842
|
maxErrors: number;
|
|
1843
|
+
hasError: boolean;
|
|
1844
|
+
hasWarning: boolean;
|
|
1845
|
+
hasSuccess: boolean;
|
|
1846
|
+
useVuetifyValidation: boolean;
|
|
1847
|
+
customRules: ValidationRule[];
|
|
1848
|
+
customWarningRules: ValidationRule[];
|
|
1849
|
+
customSuccessRules: ValidationRule[];
|
|
1897
1850
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1898
1851
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1899
1852
|
prependTooltip: string;
|
|
1900
1853
|
appendTooltip: string;
|
|
1901
1854
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1902
|
-
variantStyle: import('
|
|
1855
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
1903
1856
|
isClearable: boolean;
|
|
1904
1857
|
centerAffix: boolean;
|
|
1905
1858
|
counter: string | number | boolean;
|
|
@@ -1908,7 +1861,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1908
1861
|
isDirty: boolean;
|
|
1909
1862
|
isFlat: boolean;
|
|
1910
1863
|
isFocused: boolean;
|
|
1911
|
-
areDetailsHidden: boolean | "auto";
|
|
1912
1864
|
areSpinButtonsHidden: boolean;
|
|
1913
1865
|
hint: string;
|
|
1914
1866
|
messages: string | string[];
|
|
@@ -1926,16 +1878,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1926
1878
|
autocomplete: string;
|
|
1927
1879
|
helpText: string;
|
|
1928
1880
|
maxlength: string | number;
|
|
1881
|
+
hideDetails: boolean | "auto";
|
|
1929
1882
|
isValidateOnBlur: boolean;
|
|
1930
|
-
useVuetifyValidation: boolean;
|
|
1931
|
-
customRules: ValidationRule[];
|
|
1932
|
-
customWarningRules: ValidationRule[];
|
|
1933
|
-
customSuccessRules: ValidationRule[];
|
|
1934
|
-
warningMessages: string[] | null;
|
|
1935
1883
|
successMessages: string[] | null;
|
|
1936
|
-
|
|
1937
|
-
hasWarning: boolean;
|
|
1938
|
-
hasSuccess: boolean;
|
|
1884
|
+
warningMessages: string[] | null;
|
|
1939
1885
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1940
1886
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1941
1887
|
created?: (() => void) | (() => void)[];
|
|
@@ -1962,10 +1908,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1962
1908
|
title: string | false;
|
|
1963
1909
|
width: string | number;
|
|
1964
1910
|
role: string;
|
|
1965
|
-
color: import('
|
|
1911
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
1966
1912
|
theme: string;
|
|
1967
1913
|
disabled: boolean;
|
|
1968
1914
|
placeholder: string;
|
|
1915
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
1969
1916
|
density: "default" | "comfortable" | "compact";
|
|
1970
1917
|
rounded: string | number | boolean;
|
|
1971
1918
|
maxWidth: string | number;
|
|
@@ -1986,12 +1933,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1986
1933
|
disableErrorHandling: boolean;
|
|
1987
1934
|
errorMessages: string[] | null;
|
|
1988
1935
|
maxErrors: number;
|
|
1936
|
+
hasError: boolean;
|
|
1937
|
+
hasWarning: boolean;
|
|
1938
|
+
hasSuccess: boolean;
|
|
1939
|
+
useVuetifyValidation: boolean;
|
|
1940
|
+
customRules: ValidationRule[];
|
|
1941
|
+
customWarningRules: ValidationRule[];
|
|
1942
|
+
customSuccessRules: ValidationRule[];
|
|
1989
1943
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1990
1944
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1991
1945
|
prependTooltip: string;
|
|
1992
1946
|
appendTooltip: string;
|
|
1993
1947
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
1994
|
-
variantStyle: import('
|
|
1948
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
1995
1949
|
isClearable: boolean;
|
|
1996
1950
|
centerAffix: boolean;
|
|
1997
1951
|
counter: string | number | boolean;
|
|
@@ -2000,7 +1954,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2000
1954
|
isDirty: boolean;
|
|
2001
1955
|
isFlat: boolean;
|
|
2002
1956
|
isFocused: boolean;
|
|
2003
|
-
areDetailsHidden: boolean | "auto";
|
|
2004
1957
|
areSpinButtonsHidden: boolean;
|
|
2005
1958
|
hint: string;
|
|
2006
1959
|
messages: string | string[];
|
|
@@ -2018,75 +1971,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2018
1971
|
autocomplete: string;
|
|
2019
1972
|
helpText: string;
|
|
2020
1973
|
maxlength: string | number;
|
|
1974
|
+
hideDetails: boolean | "auto";
|
|
2021
1975
|
isValidateOnBlur: boolean;
|
|
2022
|
-
useVuetifyValidation: boolean;
|
|
2023
|
-
customRules: ValidationRule[];
|
|
2024
|
-
customWarningRules: ValidationRule[];
|
|
2025
|
-
customSuccessRules: ValidationRule[];
|
|
2026
|
-
warningMessages: string[] | null;
|
|
2027
1976
|
successMessages: string[] | null;
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
hasSuccess: boolean;
|
|
2031
|
-
}> & Omit<Readonly<{
|
|
2032
|
-
modelValue?: string | number | null | undefined;
|
|
2033
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
2034
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
2035
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
2036
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
2037
|
-
prependTooltip?: string;
|
|
2038
|
-
appendTooltip?: string;
|
|
2039
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
2040
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
2041
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
2042
|
-
isClearable?: boolean;
|
|
2043
|
-
showDivider?: boolean;
|
|
2044
|
-
label?: string;
|
|
2045
|
-
readonly?: boolean;
|
|
2046
|
-
isActive?: boolean;
|
|
2047
|
-
baseColor?: string;
|
|
2048
|
-
bgColor?: string;
|
|
2049
|
-
centerAffix?: boolean;
|
|
2050
|
-
counter?: string | number | boolean;
|
|
2051
|
-
counterValue?: number | ((value: any) => number);
|
|
2052
|
-
density?: "default" | "comfortable" | "compact";
|
|
2053
|
-
direction?: "horizontal" | "vertical";
|
|
2054
|
-
isDirty?: boolean;
|
|
2055
|
-
disabled?: boolean;
|
|
2056
|
-
isFlat?: boolean;
|
|
2057
|
-
isFocused?: boolean;
|
|
2058
|
-
areDetailsHidden?: boolean | "auto";
|
|
2059
|
-
areSpinButtonsHidden?: boolean;
|
|
2060
|
-
hint?: string;
|
|
2061
|
-
id?: string;
|
|
2062
|
-
loading?: string | boolean;
|
|
2063
|
-
maxWidth?: string | number;
|
|
2064
|
-
messages?: string | string[];
|
|
2065
|
-
minWidth?: string | number;
|
|
2066
|
-
name?: string;
|
|
2067
|
-
displayPersistentClear?: boolean;
|
|
2068
|
-
displayPersistentCounter?: boolean;
|
|
2069
|
-
displayPersistentHint?: boolean;
|
|
2070
|
-
displayPersistentPlaceholder?: boolean;
|
|
2071
|
-
placeholder?: string;
|
|
2072
|
-
prefix?: string;
|
|
2073
|
-
isReversed?: boolean;
|
|
2074
|
-
role?: string;
|
|
2075
|
-
rounded?: string | number | boolean;
|
|
2076
|
-
isOnSingleLine?: boolean;
|
|
2077
|
-
suffix?: string;
|
|
2078
|
-
theme?: string;
|
|
2079
|
-
isTiled?: boolean;
|
|
2080
|
-
type?: string;
|
|
2081
|
-
width?: string | number;
|
|
2082
|
-
displayAsterisk?: boolean;
|
|
2083
|
-
noIcon?: boolean;
|
|
2084
|
-
disableClickButton?: boolean;
|
|
2085
|
-
autocomplete?: string;
|
|
2086
|
-
helpText?: string;
|
|
2087
|
-
maxlength?: string | number;
|
|
2088
|
-
title?: string | false;
|
|
2089
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
1977
|
+
warningMessages: string[] | null;
|
|
1978
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
2090
1979
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
2091
1980
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2092
1981
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2095,8 +1984,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2095
1984
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2096
1985
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2097
1986
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2098
|
-
}>, "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" | "
|
|
2099
|
-
validateOnSubmit: (
|
|
1987
|
+
}>, "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")> & {
|
|
1988
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
2100
1989
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
2101
1990
|
$slots: {
|
|
2102
1991
|
prepend?(_: {}): any;
|
|
@@ -2141,6 +2030,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2141
2030
|
required?: boolean;
|
|
2142
2031
|
showSuccessMessages?: boolean;
|
|
2143
2032
|
title?: string | false;
|
|
2033
|
+
skipInternalValidation?: boolean;
|
|
2144
2034
|
}> & Readonly<{
|
|
2145
2035
|
onInput?: ((value: string) => any) | undefined;
|
|
2146
2036
|
onBlur?: (() => any) | undefined;
|
|
@@ -2163,11 +2053,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2163
2053
|
required: boolean;
|
|
2164
2054
|
showSuccessMessages: boolean;
|
|
2165
2055
|
disableErrorHandling: boolean;
|
|
2056
|
+
customRules: ValidationRule[];
|
|
2057
|
+
customWarningRules: ValidationRule[];
|
|
2166
2058
|
hint: string;
|
|
2167
2059
|
noIcon: boolean;
|
|
2168
2060
|
isValidateOnBlur: boolean;
|
|
2169
|
-
customRules: ValidationRule[];
|
|
2170
|
-
customWarningRules: ValidationRule[];
|
|
2171
2061
|
persistentHint: boolean;
|
|
2172
2062
|
format: string;
|
|
2173
2063
|
autoClamp: boolean;
|
|
@@ -2178,6 +2068,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2178
2068
|
displayPrependIcon: boolean;
|
|
2179
2069
|
externalErrorMessages: string[];
|
|
2180
2070
|
isOutlined: boolean;
|
|
2071
|
+
skipInternalValidation: boolean;
|
|
2181
2072
|
}> | null;
|
|
2182
2073
|
complexDatePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2183
2074
|
autoClamp?: boolean;
|
|
@@ -2247,9 +2138,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2247
2138
|
currentMonth: import('vue').Ref<string | null, string | null>;
|
|
2248
2139
|
currentMonthName: import('vue').Ref<string | null, string | null>;
|
|
2249
2140
|
toggleDatePicker: () => void;
|
|
2250
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult |
|
|
2141
|
+
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => Promise<import('../../composables/validation/useValidation').ValidationResult> | import('../../composables/validation/useValidation').ValidationResult;
|
|
2251
2142
|
clearValidation: () => void;
|
|
2252
|
-
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult>;
|
|
2143
|
+
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
2253
2144
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
2254
2145
|
formatted: string;
|
|
2255
2146
|
cursorPos: number;
|
|
@@ -2283,10 +2174,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2283
2174
|
required: boolean;
|
|
2284
2175
|
showSuccessMessages: boolean;
|
|
2285
2176
|
disableErrorHandling: boolean;
|
|
2286
|
-
hint: string;
|
|
2287
|
-
displayAsterisk: boolean;
|
|
2288
|
-
noIcon: boolean;
|
|
2289
|
-
isValidateOnBlur: boolean;
|
|
2290
2177
|
customRules: {
|
|
2291
2178
|
type: string;
|
|
2292
2179
|
options: any;
|
|
@@ -2295,6 +2182,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2295
2182
|
type: string;
|
|
2296
2183
|
options: any;
|
|
2297
2184
|
}[];
|
|
2185
|
+
hint: string;
|
|
2186
|
+
displayAsterisk: boolean;
|
|
2187
|
+
noIcon: boolean;
|
|
2188
|
+
isValidateOnBlur: boolean;
|
|
2298
2189
|
persistentHint: boolean;
|
|
2299
2190
|
format: string;
|
|
2300
2191
|
autoClamp: boolean;
|
|
@@ -2345,6 +2236,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2345
2236
|
required?: boolean;
|
|
2346
2237
|
showSuccessMessages?: boolean;
|
|
2347
2238
|
title?: string | false;
|
|
2239
|
+
skipInternalValidation?: boolean;
|
|
2348
2240
|
}> & Readonly<{
|
|
2349
2241
|
onInput?: ((value: string) => any) | undefined;
|
|
2350
2242
|
onBlur?: (() => any) | undefined;
|
|
@@ -2373,11 +2265,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2373
2265
|
required: boolean;
|
|
2374
2266
|
showSuccessMessages: boolean;
|
|
2375
2267
|
disableErrorHandling: boolean;
|
|
2268
|
+
customRules: ValidationRule[];
|
|
2269
|
+
customWarningRules: ValidationRule[];
|
|
2376
2270
|
hint: string;
|
|
2377
2271
|
noIcon: boolean;
|
|
2378
2272
|
isValidateOnBlur: boolean;
|
|
2379
|
-
customRules: ValidationRule[];
|
|
2380
|
-
customWarningRules: ValidationRule[];
|
|
2381
2273
|
persistentHint: boolean;
|
|
2382
2274
|
format: string;
|
|
2383
2275
|
autoClamp: boolean;
|
|
@@ -2388,21 +2280,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2388
2280
|
displayPrependIcon: boolean;
|
|
2389
2281
|
externalErrorMessages: string[];
|
|
2390
2282
|
isOutlined: boolean;
|
|
2283
|
+
skipInternalValidation: boolean;
|
|
2391
2284
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2392
2285
|
inputRef: ({
|
|
2393
2286
|
$: import('vue').ComponentInternalInstance;
|
|
2394
2287
|
$data: {};
|
|
2395
2288
|
$props: {
|
|
2396
2289
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
2397
|
-
readonly prependIcon?: import('
|
|
2398
|
-
readonly appendIcon?: import('
|
|
2399
|
-
readonly prependInnerIcon?: import('
|
|
2400
|
-
readonly appendInnerIcon?: import('
|
|
2290
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
2291
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
2292
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
2293
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
2401
2294
|
readonly prependTooltip?: string | undefined;
|
|
2402
2295
|
readonly appendTooltip?: string | undefined;
|
|
2403
2296
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
2404
|
-
readonly variantStyle?: import('
|
|
2405
|
-
readonly color?: import('
|
|
2297
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
2298
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
2406
2299
|
readonly isClearable?: boolean | undefined;
|
|
2407
2300
|
readonly showDivider?: boolean | undefined;
|
|
2408
2301
|
readonly label?: string | undefined;
|
|
@@ -2419,7 +2312,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2419
2312
|
readonly disabled?: boolean | undefined;
|
|
2420
2313
|
readonly isFlat?: boolean | undefined;
|
|
2421
2314
|
readonly isFocused?: boolean | undefined;
|
|
2422
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
2423
2315
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
2424
2316
|
readonly hint?: string | undefined;
|
|
2425
2317
|
readonly id?: string | undefined;
|
|
@@ -2450,22 +2342,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2450
2342
|
readonly helpText?: string | undefined;
|
|
2451
2343
|
readonly maxlength?: string | number | undefined;
|
|
2452
2344
|
readonly title?: string | false | undefined;
|
|
2453
|
-
readonly
|
|
2454
|
-
readonly
|
|
2455
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
2456
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
2457
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
2458
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2345
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
2346
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
2459
2347
|
readonly customRules?: ValidationRule[] | undefined;
|
|
2460
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
2461
2348
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
2349
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
2350
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
2462
2351
|
readonly errorMessages?: string[] | null | undefined;
|
|
2463
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
2464
|
-
readonly successMessages?: string[] | null | undefined;
|
|
2465
2352
|
readonly hasError?: boolean | undefined;
|
|
2466
|
-
readonly hasWarning?: boolean | undefined;
|
|
2467
2353
|
readonly hasSuccess?: boolean | undefined;
|
|
2354
|
+
readonly hasWarning?: boolean | undefined;
|
|
2355
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
2468
2356
|
readonly maxErrors?: number | undefined;
|
|
2357
|
+
readonly required?: boolean | undefined;
|
|
2358
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
2359
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
2360
|
+
readonly successMessages?: string[] | null | undefined;
|
|
2361
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
2362
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
2469
2363
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
2470
2364
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
2471
2365
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -2858,7 +2752,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2858
2752
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2859
2753
|
modelValue?: unknown;
|
|
2860
2754
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
2861
|
-
}, 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" | "
|
|
2755
|
+
}, 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<{
|
|
2862
2756
|
$: import('vue').ComponentInternalInstance;
|
|
2863
2757
|
$data: {};
|
|
2864
2758
|
$props: Partial<{
|
|
@@ -3595,7 +3489,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3595
3489
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3596
3490
|
modelValue?: unknown;
|
|
3597
3491
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
3598
|
-
}, 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" | "
|
|
3492
|
+
}, 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<{
|
|
3599
3493
|
$: import('vue').ComponentInternalInstance;
|
|
3600
3494
|
$data: {};
|
|
3601
3495
|
$props: Partial<{
|
|
@@ -3910,65 +3804,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3910
3804
|
$host: Element | null;
|
|
3911
3805
|
$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);
|
|
3912
3806
|
$el: any;
|
|
3913
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
3914
|
-
modelValue?: string | number | null | undefined;
|
|
3915
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
3916
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
3917
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
3918
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
3919
|
-
prependTooltip?: string;
|
|
3920
|
-
appendTooltip?: string;
|
|
3921
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
3922
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
3923
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
3924
|
-
isClearable?: boolean;
|
|
3925
|
-
showDivider?: boolean;
|
|
3926
|
-
label?: string;
|
|
3927
|
-
readonly?: boolean;
|
|
3928
|
-
isActive?: boolean;
|
|
3929
|
-
baseColor?: string;
|
|
3930
|
-
bgColor?: string;
|
|
3931
|
-
centerAffix?: boolean;
|
|
3932
|
-
counter?: string | number | boolean;
|
|
3933
|
-
counterValue?: number | ((value: any) => number);
|
|
3934
|
-
density?: "default" | "comfortable" | "compact";
|
|
3935
|
-
direction?: "horizontal" | "vertical";
|
|
3936
|
-
isDirty?: boolean;
|
|
3937
|
-
disabled?: boolean;
|
|
3938
|
-
isFlat?: boolean;
|
|
3939
|
-
isFocused?: boolean;
|
|
3940
|
-
areDetailsHidden?: boolean | "auto";
|
|
3941
|
-
areSpinButtonsHidden?: boolean;
|
|
3942
|
-
hint?: string;
|
|
3943
|
-
id?: string;
|
|
3944
|
-
loading?: string | boolean;
|
|
3945
|
-
maxWidth?: string | number;
|
|
3946
|
-
messages?: string | string[];
|
|
3947
|
-
minWidth?: string | number;
|
|
3948
|
-
name?: string;
|
|
3949
|
-
displayPersistentClear?: boolean;
|
|
3950
|
-
displayPersistentCounter?: boolean;
|
|
3951
|
-
displayPersistentHint?: boolean;
|
|
3952
|
-
displayPersistentPlaceholder?: boolean;
|
|
3953
|
-
placeholder?: string;
|
|
3954
|
-
prefix?: string;
|
|
3955
|
-
isReversed?: boolean;
|
|
3956
|
-
role?: string;
|
|
3957
|
-
rounded?: string | number | boolean;
|
|
3958
|
-
isOnSingleLine?: boolean;
|
|
3959
|
-
suffix?: string;
|
|
3960
|
-
theme?: string;
|
|
3961
|
-
isTiled?: boolean;
|
|
3962
|
-
type?: string;
|
|
3963
|
-
width?: string | number;
|
|
3964
|
-
displayAsterisk?: boolean;
|
|
3965
|
-
noIcon?: boolean;
|
|
3966
|
-
disableClickButton?: boolean;
|
|
3967
|
-
autocomplete?: string;
|
|
3968
|
-
helpText?: string;
|
|
3969
|
-
maxlength?: string | number;
|
|
3970
|
-
title?: string | false;
|
|
3971
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3807
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
3972
3808
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
3973
3809
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3974
3810
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -3978,7 +3814,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3978
3814
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3979
3815
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3980
3816
|
}>, {
|
|
3981
|
-
validateOnSubmit: (
|
|
3817
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
3982
3818
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3983
3819
|
input: (...args: any[]) => void;
|
|
3984
3820
|
blur: (...args: any[]) => void;
|
|
@@ -3994,10 +3830,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3994
3830
|
title: string | false;
|
|
3995
3831
|
width: string | number;
|
|
3996
3832
|
role: string;
|
|
3997
|
-
color: import('
|
|
3833
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
3998
3834
|
theme: string;
|
|
3999
3835
|
disabled: boolean;
|
|
4000
3836
|
placeholder: string;
|
|
3837
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
4001
3838
|
density: "default" | "comfortable" | "compact";
|
|
4002
3839
|
rounded: string | number | boolean;
|
|
4003
3840
|
maxWidth: string | number;
|
|
@@ -4018,12 +3855,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4018
3855
|
disableErrorHandling: boolean;
|
|
4019
3856
|
errorMessages: string[] | null;
|
|
4020
3857
|
maxErrors: number;
|
|
3858
|
+
hasError: boolean;
|
|
3859
|
+
hasWarning: boolean;
|
|
3860
|
+
hasSuccess: boolean;
|
|
3861
|
+
useVuetifyValidation: boolean;
|
|
3862
|
+
customRules: ValidationRule[];
|
|
3863
|
+
customWarningRules: ValidationRule[];
|
|
3864
|
+
customSuccessRules: ValidationRule[];
|
|
4021
3865
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4022
3866
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4023
3867
|
prependTooltip: string;
|
|
4024
3868
|
appendTooltip: string;
|
|
4025
3869
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
4026
|
-
variantStyle: import('
|
|
3870
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
4027
3871
|
isClearable: boolean;
|
|
4028
3872
|
centerAffix: boolean;
|
|
4029
3873
|
counter: string | number | boolean;
|
|
@@ -4032,7 +3876,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4032
3876
|
isDirty: boolean;
|
|
4033
3877
|
isFlat: boolean;
|
|
4034
3878
|
isFocused: boolean;
|
|
4035
|
-
areDetailsHidden: boolean | "auto";
|
|
4036
3879
|
areSpinButtonsHidden: boolean;
|
|
4037
3880
|
hint: string;
|
|
4038
3881
|
messages: string | string[];
|
|
@@ -4050,16 +3893,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4050
3893
|
autocomplete: string;
|
|
4051
3894
|
helpText: string;
|
|
4052
3895
|
maxlength: string | number;
|
|
3896
|
+
hideDetails: boolean | "auto";
|
|
4053
3897
|
isValidateOnBlur: boolean;
|
|
4054
|
-
useVuetifyValidation: boolean;
|
|
4055
|
-
customRules: ValidationRule[];
|
|
4056
|
-
customWarningRules: ValidationRule[];
|
|
4057
|
-
customSuccessRules: ValidationRule[];
|
|
4058
|
-
warningMessages: string[] | null;
|
|
4059
3898
|
successMessages: string[] | null;
|
|
4060
|
-
|
|
4061
|
-
hasWarning: boolean;
|
|
4062
|
-
hasSuccess: boolean;
|
|
3899
|
+
warningMessages: string[] | null;
|
|
4063
3900
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
4064
3901
|
beforeCreate?: (() => void) | (() => void)[];
|
|
4065
3902
|
created?: (() => void) | (() => void)[];
|
|
@@ -4086,10 +3923,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4086
3923
|
title: string | false;
|
|
4087
3924
|
width: string | number;
|
|
4088
3925
|
role: string;
|
|
4089
|
-
color: import('
|
|
3926
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
4090
3927
|
theme: string;
|
|
4091
3928
|
disabled: boolean;
|
|
4092
3929
|
placeholder: string;
|
|
3930
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
4093
3931
|
density: "default" | "comfortable" | "compact";
|
|
4094
3932
|
rounded: string | number | boolean;
|
|
4095
3933
|
maxWidth: string | number;
|
|
@@ -4110,12 +3948,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4110
3948
|
disableErrorHandling: boolean;
|
|
4111
3949
|
errorMessages: string[] | null;
|
|
4112
3950
|
maxErrors: number;
|
|
3951
|
+
hasError: boolean;
|
|
3952
|
+
hasWarning: boolean;
|
|
3953
|
+
hasSuccess: boolean;
|
|
3954
|
+
useVuetifyValidation: boolean;
|
|
3955
|
+
customRules: ValidationRule[];
|
|
3956
|
+
customWarningRules: ValidationRule[];
|
|
3957
|
+
customSuccessRules: ValidationRule[];
|
|
4113
3958
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4114
3959
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
4115
3960
|
prependTooltip: string;
|
|
4116
3961
|
appendTooltip: string;
|
|
4117
3962
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
4118
|
-
variantStyle: import('
|
|
3963
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
4119
3964
|
isClearable: boolean;
|
|
4120
3965
|
centerAffix: boolean;
|
|
4121
3966
|
counter: string | number | boolean;
|
|
@@ -4124,7 +3969,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4124
3969
|
isDirty: boolean;
|
|
4125
3970
|
isFlat: boolean;
|
|
4126
3971
|
isFocused: boolean;
|
|
4127
|
-
areDetailsHidden: boolean | "auto";
|
|
4128
3972
|
areSpinButtonsHidden: boolean;
|
|
4129
3973
|
hint: string;
|
|
4130
3974
|
messages: string | string[];
|
|
@@ -4142,75 +3986,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4142
3986
|
autocomplete: string;
|
|
4143
3987
|
helpText: string;
|
|
4144
3988
|
maxlength: string | number;
|
|
3989
|
+
hideDetails: boolean | "auto";
|
|
4145
3990
|
isValidateOnBlur: boolean;
|
|
4146
|
-
useVuetifyValidation: boolean;
|
|
4147
|
-
customRules: ValidationRule[];
|
|
4148
|
-
customWarningRules: ValidationRule[];
|
|
4149
|
-
customSuccessRules: ValidationRule[];
|
|
4150
|
-
warningMessages: string[] | null;
|
|
4151
3991
|
successMessages: string[] | null;
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
hasSuccess: boolean;
|
|
4155
|
-
}> & Omit<Readonly<{
|
|
4156
|
-
modelValue?: string | number | null | undefined;
|
|
4157
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
4158
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
4159
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
4160
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
4161
|
-
prependTooltip?: string;
|
|
4162
|
-
appendTooltip?: string;
|
|
4163
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
4164
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
4165
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
4166
|
-
isClearable?: boolean;
|
|
4167
|
-
showDivider?: boolean;
|
|
4168
|
-
label?: string;
|
|
4169
|
-
readonly?: boolean;
|
|
4170
|
-
isActive?: boolean;
|
|
4171
|
-
baseColor?: string;
|
|
4172
|
-
bgColor?: string;
|
|
4173
|
-
centerAffix?: boolean;
|
|
4174
|
-
counter?: string | number | boolean;
|
|
4175
|
-
counterValue?: number | ((value: any) => number);
|
|
4176
|
-
density?: "default" | "comfortable" | "compact";
|
|
4177
|
-
direction?: "horizontal" | "vertical";
|
|
4178
|
-
isDirty?: boolean;
|
|
4179
|
-
disabled?: boolean;
|
|
4180
|
-
isFlat?: boolean;
|
|
4181
|
-
isFocused?: boolean;
|
|
4182
|
-
areDetailsHidden?: boolean | "auto";
|
|
4183
|
-
areSpinButtonsHidden?: boolean;
|
|
4184
|
-
hint?: string;
|
|
4185
|
-
id?: string;
|
|
4186
|
-
loading?: string | boolean;
|
|
4187
|
-
maxWidth?: string | number;
|
|
4188
|
-
messages?: string | string[];
|
|
4189
|
-
minWidth?: string | number;
|
|
4190
|
-
name?: string;
|
|
4191
|
-
displayPersistentClear?: boolean;
|
|
4192
|
-
displayPersistentCounter?: boolean;
|
|
4193
|
-
displayPersistentHint?: boolean;
|
|
4194
|
-
displayPersistentPlaceholder?: boolean;
|
|
4195
|
-
placeholder?: string;
|
|
4196
|
-
prefix?: string;
|
|
4197
|
-
isReversed?: boolean;
|
|
4198
|
-
role?: string;
|
|
4199
|
-
rounded?: string | number | boolean;
|
|
4200
|
-
isOnSingleLine?: boolean;
|
|
4201
|
-
suffix?: string;
|
|
4202
|
-
theme?: string;
|
|
4203
|
-
isTiled?: boolean;
|
|
4204
|
-
type?: string;
|
|
4205
|
-
width?: string | number;
|
|
4206
|
-
displayAsterisk?: boolean;
|
|
4207
|
-
noIcon?: boolean;
|
|
4208
|
-
disableClickButton?: boolean;
|
|
4209
|
-
autocomplete?: string;
|
|
4210
|
-
helpText?: string;
|
|
4211
|
-
maxlength?: string | number;
|
|
4212
|
-
title?: string | false;
|
|
4213
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
3992
|
+
warningMessages: string[] | null;
|
|
3993
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
4214
3994
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
4215
3995
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
4216
3996
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -4219,8 +3999,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4219
3999
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
4220
4000
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4221
4001
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
4222
|
-
}>, "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" | "
|
|
4223
|
-
validateOnSubmit: (
|
|
4002
|
+
}>, "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")> & {
|
|
4003
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
4224
4004
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
4225
4005
|
$slots: {
|
|
4226
4006
|
prepend?(_: {}): any;
|
|
@@ -4265,6 +4045,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4265
4045
|
required?: boolean;
|
|
4266
4046
|
showSuccessMessages?: boolean;
|
|
4267
4047
|
title?: string | false;
|
|
4048
|
+
skipInternalValidation?: boolean;
|
|
4268
4049
|
}> & Readonly<{
|
|
4269
4050
|
onInput?: ((value: string) => any) | undefined;
|
|
4270
4051
|
onBlur?: (() => any) | undefined;
|
|
@@ -4287,11 +4068,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4287
4068
|
required: boolean;
|
|
4288
4069
|
showSuccessMessages: boolean;
|
|
4289
4070
|
disableErrorHandling: boolean;
|
|
4071
|
+
customRules: ValidationRule[];
|
|
4072
|
+
customWarningRules: ValidationRule[];
|
|
4290
4073
|
hint: string;
|
|
4291
4074
|
noIcon: boolean;
|
|
4292
4075
|
isValidateOnBlur: boolean;
|
|
4293
|
-
customRules: ValidationRule[];
|
|
4294
|
-
customWarningRules: ValidationRule[];
|
|
4295
4076
|
persistentHint: boolean;
|
|
4296
4077
|
format: string;
|
|
4297
4078
|
autoClamp: boolean;
|
|
@@ -4302,6 +4083,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4302
4083
|
displayPrependIcon: boolean;
|
|
4303
4084
|
externalErrorMessages: string[];
|
|
4304
4085
|
isOutlined: boolean;
|
|
4086
|
+
skipInternalValidation: boolean;
|
|
4305
4087
|
}> | null;
|
|
4306
4088
|
menuActivatorRef: HTMLDivElement;
|
|
4307
4089
|
dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -4331,6 +4113,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4331
4113
|
required?: boolean;
|
|
4332
4114
|
showSuccessMessages?: boolean;
|
|
4333
4115
|
title?: string | false;
|
|
4116
|
+
skipInternalValidation?: boolean;
|
|
4334
4117
|
}> & Readonly<{
|
|
4335
4118
|
onInput?: ((value: string) => any) | undefined;
|
|
4336
4119
|
onBlur?: (() => any) | undefined;
|
|
@@ -4359,11 +4142,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4359
4142
|
required: boolean;
|
|
4360
4143
|
showSuccessMessages: boolean;
|
|
4361
4144
|
disableErrorHandling: boolean;
|
|
4145
|
+
customRules: ValidationRule[];
|
|
4146
|
+
customWarningRules: ValidationRule[];
|
|
4362
4147
|
hint: string;
|
|
4363
4148
|
noIcon: boolean;
|
|
4364
4149
|
isValidateOnBlur: boolean;
|
|
4365
|
-
customRules: ValidationRule[];
|
|
4366
|
-
customWarningRules: ValidationRule[];
|
|
4367
4150
|
persistentHint: boolean;
|
|
4368
4151
|
format: string;
|
|
4369
4152
|
autoClamp: boolean;
|
|
@@ -4374,21 +4157,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4374
4157
|
displayPrependIcon: boolean;
|
|
4375
4158
|
externalErrorMessages: string[];
|
|
4376
4159
|
isOutlined: boolean;
|
|
4160
|
+
skipInternalValidation: boolean;
|
|
4377
4161
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
4378
4162
|
inputRef: ({
|
|
4379
4163
|
$: import('vue').ComponentInternalInstance;
|
|
4380
4164
|
$data: {};
|
|
4381
4165
|
$props: {
|
|
4382
4166
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
4383
|
-
readonly prependIcon?: import('
|
|
4384
|
-
readonly appendIcon?: import('
|
|
4385
|
-
readonly prependInnerIcon?: import('
|
|
4386
|
-
readonly appendInnerIcon?: import('
|
|
4167
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
4168
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
4169
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
4170
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
4387
4171
|
readonly prependTooltip?: string | undefined;
|
|
4388
4172
|
readonly appendTooltip?: string | undefined;
|
|
4389
4173
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
4390
|
-
readonly variantStyle?: import('
|
|
4391
|
-
readonly color?: import('
|
|
4174
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
4175
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
4392
4176
|
readonly isClearable?: boolean | undefined;
|
|
4393
4177
|
readonly showDivider?: boolean | undefined;
|
|
4394
4178
|
readonly label?: string | undefined;
|
|
@@ -4405,7 +4189,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4405
4189
|
readonly disabled?: boolean | undefined;
|
|
4406
4190
|
readonly isFlat?: boolean | undefined;
|
|
4407
4191
|
readonly isFocused?: boolean | undefined;
|
|
4408
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
4409
4192
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
4410
4193
|
readonly hint?: string | undefined;
|
|
4411
4194
|
readonly id?: string | undefined;
|
|
@@ -4436,22 +4219,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4436
4219
|
readonly helpText?: string | undefined;
|
|
4437
4220
|
readonly maxlength?: string | number | undefined;
|
|
4438
4221
|
readonly title?: string | false | undefined;
|
|
4439
|
-
readonly
|
|
4440
|
-
readonly
|
|
4441
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
4442
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
4443
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
4444
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
4222
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
4223
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
4445
4224
|
readonly customRules?: ValidationRule[] | undefined;
|
|
4446
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
4447
4225
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
4226
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
4227
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
4448
4228
|
readonly errorMessages?: string[] | null | undefined;
|
|
4449
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
4450
|
-
readonly successMessages?: string[] | null | undefined;
|
|
4451
4229
|
readonly hasError?: boolean | undefined;
|
|
4452
|
-
readonly hasWarning?: boolean | undefined;
|
|
4453
4230
|
readonly hasSuccess?: boolean | undefined;
|
|
4231
|
+
readonly hasWarning?: boolean | undefined;
|
|
4232
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
4454
4233
|
readonly maxErrors?: number | undefined;
|
|
4234
|
+
readonly required?: boolean | undefined;
|
|
4235
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
4236
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
4237
|
+
readonly successMessages?: string[] | null | undefined;
|
|
4238
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
4239
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
4455
4240
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
4456
4241
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
4457
4242
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -4844,7 +4629,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4844
4629
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
4845
4630
|
modelValue?: unknown;
|
|
4846
4631
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
4847
|
-
}, 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" | "
|
|
4632
|
+
}, 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<{
|
|
4848
4633
|
$: import('vue').ComponentInternalInstance;
|
|
4849
4634
|
$data: {};
|
|
4850
4635
|
$props: Partial<{
|
|
@@ -5581,7 +5366,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5581
5366
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
5582
5367
|
modelValue?: unknown;
|
|
5583
5368
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
5584
|
-
}, 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" | "
|
|
5369
|
+
}, 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<{
|
|
5585
5370
|
$: import('vue').ComponentInternalInstance;
|
|
5586
5371
|
$data: {};
|
|
5587
5372
|
$props: Partial<{
|
|
@@ -5896,65 +5681,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5896
5681
|
$host: Element | null;
|
|
5897
5682
|
$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);
|
|
5898
5683
|
$el: any;
|
|
5899
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
5900
|
-
modelValue?: string | number | null | undefined;
|
|
5901
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
5902
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
5903
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
5904
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
5905
|
-
prependTooltip?: string;
|
|
5906
|
-
appendTooltip?: string;
|
|
5907
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
5908
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
5909
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
5910
|
-
isClearable?: boolean;
|
|
5911
|
-
showDivider?: boolean;
|
|
5912
|
-
label?: string;
|
|
5913
|
-
readonly?: boolean;
|
|
5914
|
-
isActive?: boolean;
|
|
5915
|
-
baseColor?: string;
|
|
5916
|
-
bgColor?: string;
|
|
5917
|
-
centerAffix?: boolean;
|
|
5918
|
-
counter?: string | number | boolean;
|
|
5919
|
-
counterValue?: number | ((value: any) => number);
|
|
5920
|
-
density?: "default" | "comfortable" | "compact";
|
|
5921
|
-
direction?: "horizontal" | "vertical";
|
|
5922
|
-
isDirty?: boolean;
|
|
5923
|
-
disabled?: boolean;
|
|
5924
|
-
isFlat?: boolean;
|
|
5925
|
-
isFocused?: boolean;
|
|
5926
|
-
areDetailsHidden?: boolean | "auto";
|
|
5927
|
-
areSpinButtonsHidden?: boolean;
|
|
5928
|
-
hint?: string;
|
|
5929
|
-
id?: string;
|
|
5930
|
-
loading?: string | boolean;
|
|
5931
|
-
maxWidth?: string | number;
|
|
5932
|
-
messages?: string | string[];
|
|
5933
|
-
minWidth?: string | number;
|
|
5934
|
-
name?: string;
|
|
5935
|
-
displayPersistentClear?: boolean;
|
|
5936
|
-
displayPersistentCounter?: boolean;
|
|
5937
|
-
displayPersistentHint?: boolean;
|
|
5938
|
-
displayPersistentPlaceholder?: boolean;
|
|
5939
|
-
placeholder?: string;
|
|
5940
|
-
prefix?: string;
|
|
5941
|
-
isReversed?: boolean;
|
|
5942
|
-
role?: string;
|
|
5943
|
-
rounded?: string | number | boolean;
|
|
5944
|
-
isOnSingleLine?: boolean;
|
|
5945
|
-
suffix?: string;
|
|
5946
|
-
theme?: string;
|
|
5947
|
-
isTiled?: boolean;
|
|
5948
|
-
type?: string;
|
|
5949
|
-
width?: string | number;
|
|
5950
|
-
displayAsterisk?: boolean;
|
|
5951
|
-
noIcon?: boolean;
|
|
5952
|
-
disableClickButton?: boolean;
|
|
5953
|
-
autocomplete?: string;
|
|
5954
|
-
helpText?: string;
|
|
5955
|
-
maxlength?: string | number;
|
|
5956
|
-
title?: string | false;
|
|
5957
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
5684
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
5958
5685
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
5959
5686
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
5960
5687
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -5964,7 +5691,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5964
5691
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
5965
5692
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
5966
5693
|
}>, {
|
|
5967
|
-
validateOnSubmit: (
|
|
5694
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
5968
5695
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5969
5696
|
input: (...args: any[]) => void;
|
|
5970
5697
|
blur: (...args: any[]) => void;
|
|
@@ -5980,10 +5707,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5980
5707
|
title: string | false;
|
|
5981
5708
|
width: string | number;
|
|
5982
5709
|
role: string;
|
|
5983
|
-
color: import('
|
|
5710
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
5984
5711
|
theme: string;
|
|
5985
5712
|
disabled: boolean;
|
|
5986
5713
|
placeholder: string;
|
|
5714
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
5987
5715
|
density: "default" | "comfortable" | "compact";
|
|
5988
5716
|
rounded: string | number | boolean;
|
|
5989
5717
|
maxWidth: string | number;
|
|
@@ -6004,12 +5732,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6004
5732
|
disableErrorHandling: boolean;
|
|
6005
5733
|
errorMessages: string[] | null;
|
|
6006
5734
|
maxErrors: number;
|
|
5735
|
+
hasError: boolean;
|
|
5736
|
+
hasWarning: boolean;
|
|
5737
|
+
hasSuccess: boolean;
|
|
5738
|
+
useVuetifyValidation: boolean;
|
|
5739
|
+
customRules: ValidationRule[];
|
|
5740
|
+
customWarningRules: ValidationRule[];
|
|
5741
|
+
customSuccessRules: ValidationRule[];
|
|
6007
5742
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6008
5743
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6009
5744
|
prependTooltip: string;
|
|
6010
5745
|
appendTooltip: string;
|
|
6011
5746
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
6012
|
-
variantStyle: import('
|
|
5747
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
6013
5748
|
isClearable: boolean;
|
|
6014
5749
|
centerAffix: boolean;
|
|
6015
5750
|
counter: string | number | boolean;
|
|
@@ -6018,7 +5753,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6018
5753
|
isDirty: boolean;
|
|
6019
5754
|
isFlat: boolean;
|
|
6020
5755
|
isFocused: boolean;
|
|
6021
|
-
areDetailsHidden: boolean | "auto";
|
|
6022
5756
|
areSpinButtonsHidden: boolean;
|
|
6023
5757
|
hint: string;
|
|
6024
5758
|
messages: string | string[];
|
|
@@ -6036,16 +5770,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6036
5770
|
autocomplete: string;
|
|
6037
5771
|
helpText: string;
|
|
6038
5772
|
maxlength: string | number;
|
|
5773
|
+
hideDetails: boolean | "auto";
|
|
6039
5774
|
isValidateOnBlur: boolean;
|
|
6040
|
-
useVuetifyValidation: boolean;
|
|
6041
|
-
customRules: ValidationRule[];
|
|
6042
|
-
customWarningRules: ValidationRule[];
|
|
6043
|
-
customSuccessRules: ValidationRule[];
|
|
6044
|
-
warningMessages: string[] | null;
|
|
6045
5775
|
successMessages: string[] | null;
|
|
6046
|
-
|
|
6047
|
-
hasWarning: boolean;
|
|
6048
|
-
hasSuccess: boolean;
|
|
5776
|
+
warningMessages: string[] | null;
|
|
6049
5777
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
6050
5778
|
beforeCreate?: (() => void) | (() => void)[];
|
|
6051
5779
|
created?: (() => void) | (() => void)[];
|
|
@@ -6072,10 +5800,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6072
5800
|
title: string | false;
|
|
6073
5801
|
width: string | number;
|
|
6074
5802
|
role: string;
|
|
6075
|
-
color: import('
|
|
5803
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
6076
5804
|
theme: string;
|
|
6077
5805
|
disabled: boolean;
|
|
6078
5806
|
placeholder: string;
|
|
5807
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
6079
5808
|
density: "default" | "comfortable" | "compact";
|
|
6080
5809
|
rounded: string | number | boolean;
|
|
6081
5810
|
maxWidth: string | number;
|
|
@@ -6096,12 +5825,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6096
5825
|
disableErrorHandling: boolean;
|
|
6097
5826
|
errorMessages: string[] | null;
|
|
6098
5827
|
maxErrors: number;
|
|
5828
|
+
hasError: boolean;
|
|
5829
|
+
hasWarning: boolean;
|
|
5830
|
+
hasSuccess: boolean;
|
|
5831
|
+
useVuetifyValidation: boolean;
|
|
5832
|
+
customRules: ValidationRule[];
|
|
5833
|
+
customWarningRules: ValidationRule[];
|
|
5834
|
+
customSuccessRules: ValidationRule[];
|
|
6099
5835
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6100
5836
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
6101
5837
|
prependTooltip: string;
|
|
6102
5838
|
appendTooltip: string;
|
|
6103
5839
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
6104
|
-
variantStyle: import('
|
|
5840
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
6105
5841
|
isClearable: boolean;
|
|
6106
5842
|
centerAffix: boolean;
|
|
6107
5843
|
counter: string | number | boolean;
|
|
@@ -6110,7 +5846,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6110
5846
|
isDirty: boolean;
|
|
6111
5847
|
isFlat: boolean;
|
|
6112
5848
|
isFocused: boolean;
|
|
6113
|
-
areDetailsHidden: boolean | "auto";
|
|
6114
5849
|
areSpinButtonsHidden: boolean;
|
|
6115
5850
|
hint: string;
|
|
6116
5851
|
messages: string | string[];
|
|
@@ -6128,75 +5863,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6128
5863
|
autocomplete: string;
|
|
6129
5864
|
helpText: string;
|
|
6130
5865
|
maxlength: string | number;
|
|
5866
|
+
hideDetails: boolean | "auto";
|
|
6131
5867
|
isValidateOnBlur: boolean;
|
|
6132
|
-
useVuetifyValidation: boolean;
|
|
6133
|
-
customRules: ValidationRule[];
|
|
6134
|
-
customWarningRules: ValidationRule[];
|
|
6135
|
-
customSuccessRules: ValidationRule[];
|
|
6136
|
-
warningMessages: string[] | null;
|
|
6137
5868
|
successMessages: string[] | null;
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
hasSuccess: boolean;
|
|
6141
|
-
}> & Omit<Readonly<{
|
|
6142
|
-
modelValue?: string | number | null | undefined;
|
|
6143
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
6144
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
6145
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
6146
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
6147
|
-
prependTooltip?: string;
|
|
6148
|
-
appendTooltip?: string;
|
|
6149
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
6150
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
6151
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
6152
|
-
isClearable?: boolean;
|
|
6153
|
-
showDivider?: boolean;
|
|
6154
|
-
label?: string;
|
|
6155
|
-
readonly?: boolean;
|
|
6156
|
-
isActive?: boolean;
|
|
6157
|
-
baseColor?: string;
|
|
6158
|
-
bgColor?: string;
|
|
6159
|
-
centerAffix?: boolean;
|
|
6160
|
-
counter?: string | number | boolean;
|
|
6161
|
-
counterValue?: number | ((value: any) => number);
|
|
6162
|
-
density?: "default" | "comfortable" | "compact";
|
|
6163
|
-
direction?: "horizontal" | "vertical";
|
|
6164
|
-
isDirty?: boolean;
|
|
6165
|
-
disabled?: boolean;
|
|
6166
|
-
isFlat?: boolean;
|
|
6167
|
-
isFocused?: boolean;
|
|
6168
|
-
areDetailsHidden?: boolean | "auto";
|
|
6169
|
-
areSpinButtonsHidden?: boolean;
|
|
6170
|
-
hint?: string;
|
|
6171
|
-
id?: string;
|
|
6172
|
-
loading?: string | boolean;
|
|
6173
|
-
maxWidth?: string | number;
|
|
6174
|
-
messages?: string | string[];
|
|
6175
|
-
minWidth?: string | number;
|
|
6176
|
-
name?: string;
|
|
6177
|
-
displayPersistentClear?: boolean;
|
|
6178
|
-
displayPersistentCounter?: boolean;
|
|
6179
|
-
displayPersistentHint?: boolean;
|
|
6180
|
-
displayPersistentPlaceholder?: boolean;
|
|
6181
|
-
placeholder?: string;
|
|
6182
|
-
prefix?: string;
|
|
6183
|
-
isReversed?: boolean;
|
|
6184
|
-
role?: string;
|
|
6185
|
-
rounded?: string | number | boolean;
|
|
6186
|
-
isOnSingleLine?: boolean;
|
|
6187
|
-
suffix?: string;
|
|
6188
|
-
theme?: string;
|
|
6189
|
-
isTiled?: boolean;
|
|
6190
|
-
type?: string;
|
|
6191
|
-
width?: string | number;
|
|
6192
|
-
displayAsterisk?: boolean;
|
|
6193
|
-
noIcon?: boolean;
|
|
6194
|
-
disableClickButton?: boolean;
|
|
6195
|
-
autocomplete?: string;
|
|
6196
|
-
helpText?: string;
|
|
6197
|
-
maxlength?: string | number;
|
|
6198
|
-
title?: string | false;
|
|
6199
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
5869
|
+
warningMessages: string[] | null;
|
|
5870
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
6200
5871
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
6201
5872
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6202
5873
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -6205,8 +5876,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6205
5876
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
6206
5877
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
6207
5878
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
6208
|
-
}>, "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" | "
|
|
6209
|
-
validateOnSubmit: (
|
|
5879
|
+
}>, "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")> & {
|
|
5880
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
6210
5881
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
6211
5882
|
$slots: {
|
|
6212
5883
|
prepend?(_: {}): any;
|
|
@@ -6251,6 +5922,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6251
5922
|
required?: boolean;
|
|
6252
5923
|
showSuccessMessages?: boolean;
|
|
6253
5924
|
title?: string | false;
|
|
5925
|
+
skipInternalValidation?: boolean;
|
|
6254
5926
|
}> & Readonly<{
|
|
6255
5927
|
onInput?: ((value: string) => any) | undefined;
|
|
6256
5928
|
onBlur?: (() => any) | undefined;
|
|
@@ -6273,11 +5945,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6273
5945
|
required: boolean;
|
|
6274
5946
|
showSuccessMessages: boolean;
|
|
6275
5947
|
disableErrorHandling: boolean;
|
|
5948
|
+
customRules: ValidationRule[];
|
|
5949
|
+
customWarningRules: ValidationRule[];
|
|
6276
5950
|
hint: string;
|
|
6277
5951
|
noIcon: boolean;
|
|
6278
5952
|
isValidateOnBlur: boolean;
|
|
6279
|
-
customRules: ValidationRule[];
|
|
6280
|
-
customWarningRules: ValidationRule[];
|
|
6281
5953
|
persistentHint: boolean;
|
|
6282
5954
|
format: string;
|
|
6283
5955
|
autoClamp: boolean;
|
|
@@ -6288,6 +5960,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6288
5960
|
displayPrependIcon: boolean;
|
|
6289
5961
|
externalErrorMessages: string[];
|
|
6290
5962
|
isOutlined: boolean;
|
|
5963
|
+
skipInternalValidation: boolean;
|
|
6291
5964
|
}> | null;
|
|
6292
5965
|
datePickerRef: ({
|
|
6293
5966
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -6805,9 +6478,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6805
6478
|
currentMonth: import('vue').Ref<string | null, string | null>;
|
|
6806
6479
|
currentMonthName: import('vue').Ref<string | null, string | null>;
|
|
6807
6480
|
toggleDatePicker: () => void;
|
|
6808
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult |
|
|
6481
|
+
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => Promise<import('../../composables/validation/useValidation').ValidationResult> | import('../../composables/validation/useValidation').ValidationResult;
|
|
6809
6482
|
clearValidation: () => void;
|
|
6810
|
-
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult>;
|
|
6483
|
+
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
6811
6484
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
6812
6485
|
formatted: string;
|
|
6813
6486
|
cursorPos: number;
|
|
@@ -6834,10 +6507,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6834
6507
|
required: boolean;
|
|
6835
6508
|
showSuccessMessages: boolean;
|
|
6836
6509
|
disableErrorHandling: boolean;
|
|
6837
|
-
hint: string;
|
|
6838
|
-
displayAsterisk: boolean;
|
|
6839
|
-
noIcon: boolean;
|
|
6840
|
-
isValidateOnBlur: boolean;
|
|
6841
6510
|
customRules: {
|
|
6842
6511
|
type: string;
|
|
6843
6512
|
options: any;
|
|
@@ -6846,6 +6515,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6846
6515
|
type: string;
|
|
6847
6516
|
options: any;
|
|
6848
6517
|
}[];
|
|
6518
|
+
hint: string;
|
|
6519
|
+
displayAsterisk: boolean;
|
|
6520
|
+
noIcon: boolean;
|
|
6521
|
+
isValidateOnBlur: boolean;
|
|
6849
6522
|
persistentHint: boolean;
|
|
6850
6523
|
format: string;
|
|
6851
6524
|
autoClamp: boolean;
|
|
@@ -6873,15 +6546,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6873
6546
|
$data: {};
|
|
6874
6547
|
$props: {
|
|
6875
6548
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
6876
|
-
readonly prependIcon?: import('
|
|
6877
|
-
readonly appendIcon?: import('
|
|
6878
|
-
readonly prependInnerIcon?: import('
|
|
6879
|
-
readonly appendInnerIcon?: import('
|
|
6549
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
6550
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
6551
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
6552
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
6880
6553
|
readonly prependTooltip?: string | undefined;
|
|
6881
6554
|
readonly appendTooltip?: string | undefined;
|
|
6882
6555
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
6883
|
-
readonly variantStyle?: import('
|
|
6884
|
-
readonly color?: import('
|
|
6556
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
6557
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
6885
6558
|
readonly isClearable?: boolean | undefined;
|
|
6886
6559
|
readonly showDivider?: boolean | undefined;
|
|
6887
6560
|
readonly label?: string | undefined;
|
|
@@ -6898,7 +6571,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6898
6571
|
readonly disabled?: boolean | undefined;
|
|
6899
6572
|
readonly isFlat?: boolean | undefined;
|
|
6900
6573
|
readonly isFocused?: boolean | undefined;
|
|
6901
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
6902
6574
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
6903
6575
|
readonly hint?: string | undefined;
|
|
6904
6576
|
readonly id?: string | undefined;
|
|
@@ -6929,22 +6601,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6929
6601
|
readonly helpText?: string | undefined;
|
|
6930
6602
|
readonly maxlength?: string | number | undefined;
|
|
6931
6603
|
readonly title?: string | false | undefined;
|
|
6932
|
-
readonly
|
|
6933
|
-
readonly
|
|
6934
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
6935
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
6936
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
6937
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
6604
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
6605
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
6938
6606
|
readonly customRules?: ValidationRule[] | undefined;
|
|
6939
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
6940
6607
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
6608
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
6609
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
6941
6610
|
readonly errorMessages?: string[] | null | undefined;
|
|
6942
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
6943
|
-
readonly successMessages?: string[] | null | undefined;
|
|
6944
6611
|
readonly hasError?: boolean | undefined;
|
|
6945
|
-
readonly hasWarning?: boolean | undefined;
|
|
6946
6612
|
readonly hasSuccess?: boolean | undefined;
|
|
6613
|
+
readonly hasWarning?: boolean | undefined;
|
|
6614
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
6947
6615
|
readonly maxErrors?: number | undefined;
|
|
6616
|
+
readonly required?: boolean | undefined;
|
|
6617
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
6618
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
6619
|
+
readonly successMessages?: string[] | null | undefined;
|
|
6620
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
6621
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
6948
6622
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
6949
6623
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
6950
6624
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -7337,7 +7011,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7337
7011
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
7338
7012
|
modelValue?: unknown;
|
|
7339
7013
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
7340
|
-
}, 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" | "
|
|
7014
|
+
}, 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<{
|
|
7341
7015
|
$: import('vue').ComponentInternalInstance;
|
|
7342
7016
|
$data: {};
|
|
7343
7017
|
$props: Partial<{
|
|
@@ -8074,7 +7748,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8074
7748
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
8075
7749
|
modelValue?: unknown;
|
|
8076
7750
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
8077
|
-
}, 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" | "
|
|
7751
|
+
}, 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<{
|
|
8078
7752
|
$: import('vue').ComponentInternalInstance;
|
|
8079
7753
|
$data: {};
|
|
8080
7754
|
$props: Partial<{
|
|
@@ -8389,65 +8063,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8389
8063
|
$host: Element | null;
|
|
8390
8064
|
$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);
|
|
8391
8065
|
$el: any;
|
|
8392
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
8393
|
-
modelValue?: string | number | null | undefined;
|
|
8394
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8395
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8396
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8397
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8398
|
-
prependTooltip?: string;
|
|
8399
|
-
appendTooltip?: string;
|
|
8400
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
8401
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
8402
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
8403
|
-
isClearable?: boolean;
|
|
8404
|
-
showDivider?: boolean;
|
|
8405
|
-
label?: string;
|
|
8406
|
-
readonly?: boolean;
|
|
8407
|
-
isActive?: boolean;
|
|
8408
|
-
baseColor?: string;
|
|
8409
|
-
bgColor?: string;
|
|
8410
|
-
centerAffix?: boolean;
|
|
8411
|
-
counter?: string | number | boolean;
|
|
8412
|
-
counterValue?: number | ((value: any) => number);
|
|
8413
|
-
density?: "default" | "comfortable" | "compact";
|
|
8414
|
-
direction?: "horizontal" | "vertical";
|
|
8415
|
-
isDirty?: boolean;
|
|
8416
|
-
disabled?: boolean;
|
|
8417
|
-
isFlat?: boolean;
|
|
8418
|
-
isFocused?: boolean;
|
|
8419
|
-
areDetailsHidden?: boolean | "auto";
|
|
8420
|
-
areSpinButtonsHidden?: boolean;
|
|
8421
|
-
hint?: string;
|
|
8422
|
-
id?: string;
|
|
8423
|
-
loading?: string | boolean;
|
|
8424
|
-
maxWidth?: string | number;
|
|
8425
|
-
messages?: string | string[];
|
|
8426
|
-
minWidth?: string | number;
|
|
8427
|
-
name?: string;
|
|
8428
|
-
displayPersistentClear?: boolean;
|
|
8429
|
-
displayPersistentCounter?: boolean;
|
|
8430
|
-
displayPersistentHint?: boolean;
|
|
8431
|
-
displayPersistentPlaceholder?: boolean;
|
|
8432
|
-
placeholder?: string;
|
|
8433
|
-
prefix?: string;
|
|
8434
|
-
isReversed?: boolean;
|
|
8435
|
-
role?: string;
|
|
8436
|
-
rounded?: string | number | boolean;
|
|
8437
|
-
isOnSingleLine?: boolean;
|
|
8438
|
-
suffix?: string;
|
|
8439
|
-
theme?: string;
|
|
8440
|
-
isTiled?: boolean;
|
|
8441
|
-
type?: string;
|
|
8442
|
-
width?: string | number;
|
|
8443
|
-
displayAsterisk?: boolean;
|
|
8444
|
-
noIcon?: boolean;
|
|
8445
|
-
disableClickButton?: boolean;
|
|
8446
|
-
autocomplete?: string;
|
|
8447
|
-
helpText?: string;
|
|
8448
|
-
maxlength?: string | number;
|
|
8449
|
-
title?: string | false;
|
|
8450
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
8066
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
8451
8067
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8452
8068
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
8453
8069
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -8457,7 +8073,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8457
8073
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8458
8074
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8459
8075
|
}>, {
|
|
8460
|
-
validateOnSubmit: (
|
|
8076
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
8461
8077
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8462
8078
|
input: (...args: any[]) => void;
|
|
8463
8079
|
blur: (...args: any[]) => void;
|
|
@@ -8473,10 +8089,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8473
8089
|
title: string | false;
|
|
8474
8090
|
width: string | number;
|
|
8475
8091
|
role: string;
|
|
8476
|
-
color: import('
|
|
8092
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
8477
8093
|
theme: string;
|
|
8478
8094
|
disabled: boolean;
|
|
8479
8095
|
placeholder: string;
|
|
8096
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
8480
8097
|
density: "default" | "comfortable" | "compact";
|
|
8481
8098
|
rounded: string | number | boolean;
|
|
8482
8099
|
maxWidth: string | number;
|
|
@@ -8497,12 +8114,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8497
8114
|
disableErrorHandling: boolean;
|
|
8498
8115
|
errorMessages: string[] | null;
|
|
8499
8116
|
maxErrors: number;
|
|
8117
|
+
hasError: boolean;
|
|
8118
|
+
hasWarning: boolean;
|
|
8119
|
+
hasSuccess: boolean;
|
|
8120
|
+
useVuetifyValidation: boolean;
|
|
8121
|
+
customRules: ValidationRule[];
|
|
8122
|
+
customWarningRules: ValidationRule[];
|
|
8123
|
+
customSuccessRules: ValidationRule[];
|
|
8500
8124
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8501
8125
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8502
8126
|
prependTooltip: string;
|
|
8503
8127
|
appendTooltip: string;
|
|
8504
8128
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
8505
|
-
variantStyle: import('
|
|
8129
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
8506
8130
|
isClearable: boolean;
|
|
8507
8131
|
centerAffix: boolean;
|
|
8508
8132
|
counter: string | number | boolean;
|
|
@@ -8511,7 +8135,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8511
8135
|
isDirty: boolean;
|
|
8512
8136
|
isFlat: boolean;
|
|
8513
8137
|
isFocused: boolean;
|
|
8514
|
-
areDetailsHidden: boolean | "auto";
|
|
8515
8138
|
areSpinButtonsHidden: boolean;
|
|
8516
8139
|
hint: string;
|
|
8517
8140
|
messages: string | string[];
|
|
@@ -8529,16 +8152,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8529
8152
|
autocomplete: string;
|
|
8530
8153
|
helpText: string;
|
|
8531
8154
|
maxlength: string | number;
|
|
8155
|
+
hideDetails: boolean | "auto";
|
|
8532
8156
|
isValidateOnBlur: boolean;
|
|
8533
|
-
useVuetifyValidation: boolean;
|
|
8534
|
-
customRules: ValidationRule[];
|
|
8535
|
-
customWarningRules: ValidationRule[];
|
|
8536
|
-
customSuccessRules: ValidationRule[];
|
|
8537
|
-
warningMessages: string[] | null;
|
|
8538
8157
|
successMessages: string[] | null;
|
|
8539
|
-
|
|
8540
|
-
hasWarning: boolean;
|
|
8541
|
-
hasSuccess: boolean;
|
|
8158
|
+
warningMessages: string[] | null;
|
|
8542
8159
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
8543
8160
|
beforeCreate?: (() => void) | (() => void)[];
|
|
8544
8161
|
created?: (() => void) | (() => void)[];
|
|
@@ -8565,10 +8182,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8565
8182
|
title: string | false;
|
|
8566
8183
|
width: string | number;
|
|
8567
8184
|
role: string;
|
|
8568
|
-
color: import('
|
|
8185
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
8569
8186
|
theme: string;
|
|
8570
8187
|
disabled: boolean;
|
|
8571
8188
|
placeholder: string;
|
|
8189
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
8572
8190
|
density: "default" | "comfortable" | "compact";
|
|
8573
8191
|
rounded: string | number | boolean;
|
|
8574
8192
|
maxWidth: string | number;
|
|
@@ -8589,12 +8207,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8589
8207
|
disableErrorHandling: boolean;
|
|
8590
8208
|
errorMessages: string[] | null;
|
|
8591
8209
|
maxErrors: number;
|
|
8210
|
+
hasError: boolean;
|
|
8211
|
+
hasWarning: boolean;
|
|
8212
|
+
hasSuccess: boolean;
|
|
8213
|
+
useVuetifyValidation: boolean;
|
|
8214
|
+
customRules: ValidationRule[];
|
|
8215
|
+
customWarningRules: ValidationRule[];
|
|
8216
|
+
customSuccessRules: ValidationRule[];
|
|
8592
8217
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8593
8218
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
8594
8219
|
prependTooltip: string;
|
|
8595
8220
|
appendTooltip: string;
|
|
8596
8221
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
8597
|
-
variantStyle: import('
|
|
8222
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
8598
8223
|
isClearable: boolean;
|
|
8599
8224
|
centerAffix: boolean;
|
|
8600
8225
|
counter: string | number | boolean;
|
|
@@ -8603,7 +8228,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8603
8228
|
isDirty: boolean;
|
|
8604
8229
|
isFlat: boolean;
|
|
8605
8230
|
isFocused: boolean;
|
|
8606
|
-
areDetailsHidden: boolean | "auto";
|
|
8607
8231
|
areSpinButtonsHidden: boolean;
|
|
8608
8232
|
hint: string;
|
|
8609
8233
|
messages: string | string[];
|
|
@@ -8621,75 +8245,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8621
8245
|
autocomplete: string;
|
|
8622
8246
|
helpText: string;
|
|
8623
8247
|
maxlength: string | number;
|
|
8248
|
+
hideDetails: boolean | "auto";
|
|
8624
8249
|
isValidateOnBlur: boolean;
|
|
8625
|
-
useVuetifyValidation: boolean;
|
|
8626
|
-
customRules: ValidationRule[];
|
|
8627
|
-
customWarningRules: ValidationRule[];
|
|
8628
|
-
customSuccessRules: ValidationRule[];
|
|
8629
|
-
warningMessages: string[] | null;
|
|
8630
8250
|
successMessages: string[] | null;
|
|
8631
|
-
|
|
8632
|
-
|
|
8633
|
-
hasSuccess: boolean;
|
|
8634
|
-
}> & Omit<Readonly<{
|
|
8635
|
-
modelValue?: string | number | null | undefined;
|
|
8636
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8637
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8638
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8639
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
8640
|
-
prependTooltip?: string;
|
|
8641
|
-
appendTooltip?: string;
|
|
8642
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
8643
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
8644
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
8645
|
-
isClearable?: boolean;
|
|
8646
|
-
showDivider?: boolean;
|
|
8647
|
-
label?: string;
|
|
8648
|
-
readonly?: boolean;
|
|
8649
|
-
isActive?: boolean;
|
|
8650
|
-
baseColor?: string;
|
|
8651
|
-
bgColor?: string;
|
|
8652
|
-
centerAffix?: boolean;
|
|
8653
|
-
counter?: string | number | boolean;
|
|
8654
|
-
counterValue?: number | ((value: any) => number);
|
|
8655
|
-
density?: "default" | "comfortable" | "compact";
|
|
8656
|
-
direction?: "horizontal" | "vertical";
|
|
8657
|
-
isDirty?: boolean;
|
|
8658
|
-
disabled?: boolean;
|
|
8659
|
-
isFlat?: boolean;
|
|
8660
|
-
isFocused?: boolean;
|
|
8661
|
-
areDetailsHidden?: boolean | "auto";
|
|
8662
|
-
areSpinButtonsHidden?: boolean;
|
|
8663
|
-
hint?: string;
|
|
8664
|
-
id?: string;
|
|
8665
|
-
loading?: string | boolean;
|
|
8666
|
-
maxWidth?: string | number;
|
|
8667
|
-
messages?: string | string[];
|
|
8668
|
-
minWidth?: string | number;
|
|
8669
|
-
name?: string;
|
|
8670
|
-
displayPersistentClear?: boolean;
|
|
8671
|
-
displayPersistentCounter?: boolean;
|
|
8672
|
-
displayPersistentHint?: boolean;
|
|
8673
|
-
displayPersistentPlaceholder?: boolean;
|
|
8674
|
-
placeholder?: string;
|
|
8675
|
-
prefix?: string;
|
|
8676
|
-
isReversed?: boolean;
|
|
8677
|
-
role?: string;
|
|
8678
|
-
rounded?: string | number | boolean;
|
|
8679
|
-
isOnSingleLine?: boolean;
|
|
8680
|
-
suffix?: string;
|
|
8681
|
-
theme?: string;
|
|
8682
|
-
isTiled?: boolean;
|
|
8683
|
-
type?: string;
|
|
8684
|
-
width?: string | number;
|
|
8685
|
-
displayAsterisk?: boolean;
|
|
8686
|
-
noIcon?: boolean;
|
|
8687
|
-
disableClickButton?: boolean;
|
|
8688
|
-
autocomplete?: string;
|
|
8689
|
-
helpText?: string;
|
|
8690
|
-
maxlength?: string | number;
|
|
8691
|
-
title?: string | false;
|
|
8692
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
8251
|
+
warningMessages: string[] | null;
|
|
8252
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
8693
8253
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8694
8254
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
8695
8255
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -8698,8 +8258,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8698
8258
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
8699
8259
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8700
8260
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
8701
|
-
}>, "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" | "
|
|
8702
|
-
validateOnSubmit: (
|
|
8261
|
+
}>, "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")> & {
|
|
8262
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
8703
8263
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
8704
8264
|
$slots: {
|
|
8705
8265
|
prepend?(_: {}): any;
|
|
@@ -9238,10 +8798,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9238
8798
|
required: boolean;
|
|
9239
8799
|
showSuccessMessages: boolean;
|
|
9240
8800
|
disableErrorHandling: boolean;
|
|
9241
|
-
hint: string;
|
|
9242
|
-
displayAsterisk: boolean;
|
|
9243
|
-
noIcon: boolean;
|
|
9244
|
-
isValidateOnBlur: boolean;
|
|
9245
8801
|
customRules: {
|
|
9246
8802
|
type: string;
|
|
9247
8803
|
options: any;
|
|
@@ -9250,8 +8806,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9250
8806
|
type: string;
|
|
9251
8807
|
options: any;
|
|
9252
8808
|
}[];
|
|
9253
|
-
|
|
8809
|
+
hint: string;
|
|
8810
|
+
displayAsterisk: boolean;
|
|
8811
|
+
noIcon: boolean;
|
|
9254
8812
|
hideDetails: boolean | "auto";
|
|
8813
|
+
isValidateOnBlur: boolean;
|
|
8814
|
+
persistentHint: boolean;
|
|
9255
8815
|
format: string;
|
|
9256
8816
|
autoClamp: boolean;
|
|
9257
8817
|
noCalendar: boolean;
|
|
@@ -9361,10 +8921,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9361
8921
|
required: boolean;
|
|
9362
8922
|
showSuccessMessages: boolean;
|
|
9363
8923
|
disableErrorHandling: boolean;
|
|
9364
|
-
hint: string;
|
|
9365
|
-
displayAsterisk: boolean;
|
|
9366
|
-
noIcon: boolean;
|
|
9367
|
-
isValidateOnBlur: boolean;
|
|
9368
8924
|
customRules: {
|
|
9369
8925
|
type: string;
|
|
9370
8926
|
options: any;
|
|
@@ -9373,8 +8929,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9373
8929
|
type: string;
|
|
9374
8930
|
options: any;
|
|
9375
8931
|
}[];
|
|
9376
|
-
|
|
8932
|
+
hint: string;
|
|
8933
|
+
displayAsterisk: boolean;
|
|
8934
|
+
noIcon: boolean;
|
|
9377
8935
|
hideDetails: boolean | "auto";
|
|
8936
|
+
isValidateOnBlur: boolean;
|
|
8937
|
+
persistentHint: boolean;
|
|
9378
8938
|
format: string;
|
|
9379
8939
|
autoClamp: boolean;
|
|
9380
8940
|
noCalendar: boolean;
|
|
@@ -9424,6 +8984,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9424
8984
|
required?: boolean;
|
|
9425
8985
|
showSuccessMessages?: boolean;
|
|
9426
8986
|
title?: string | false;
|
|
8987
|
+
skipInternalValidation?: boolean;
|
|
9427
8988
|
}> & Readonly<{
|
|
9428
8989
|
onInput?: ((value: string) => any) | undefined;
|
|
9429
8990
|
onBlur?: (() => any) | undefined;
|
|
@@ -9452,11 +9013,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9452
9013
|
required: boolean;
|
|
9453
9014
|
showSuccessMessages: boolean;
|
|
9454
9015
|
disableErrorHandling: boolean;
|
|
9016
|
+
customRules: ValidationRule[];
|
|
9017
|
+
customWarningRules: ValidationRule[];
|
|
9455
9018
|
hint: string;
|
|
9456
9019
|
noIcon: boolean;
|
|
9457
9020
|
isValidateOnBlur: boolean;
|
|
9458
|
-
customRules: ValidationRule[];
|
|
9459
|
-
customWarningRules: ValidationRule[];
|
|
9460
9021
|
persistentHint: boolean;
|
|
9461
9022
|
format: string;
|
|
9462
9023
|
autoClamp: boolean;
|
|
@@ -9467,21 +9028,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9467
9028
|
displayPrependIcon: boolean;
|
|
9468
9029
|
externalErrorMessages: string[];
|
|
9469
9030
|
isOutlined: boolean;
|
|
9031
|
+
skipInternalValidation: boolean;
|
|
9470
9032
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
9471
9033
|
inputRef: ({
|
|
9472
9034
|
$: import('vue').ComponentInternalInstance;
|
|
9473
9035
|
$data: {};
|
|
9474
9036
|
$props: {
|
|
9475
9037
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
9476
|
-
readonly prependIcon?: import('
|
|
9477
|
-
readonly appendIcon?: import('
|
|
9478
|
-
readonly prependInnerIcon?: import('
|
|
9479
|
-
readonly appendInnerIcon?: import('
|
|
9038
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
9039
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
9040
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
9041
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
9480
9042
|
readonly prependTooltip?: string | undefined;
|
|
9481
9043
|
readonly appendTooltip?: string | undefined;
|
|
9482
9044
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
9483
|
-
readonly variantStyle?: import('
|
|
9484
|
-
readonly color?: import('
|
|
9045
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
9046
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
9485
9047
|
readonly isClearable?: boolean | undefined;
|
|
9486
9048
|
readonly showDivider?: boolean | undefined;
|
|
9487
9049
|
readonly label?: string | undefined;
|
|
@@ -9498,7 +9060,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9498
9060
|
readonly disabled?: boolean | undefined;
|
|
9499
9061
|
readonly isFlat?: boolean | undefined;
|
|
9500
9062
|
readonly isFocused?: boolean | undefined;
|
|
9501
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
9502
9063
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
9503
9064
|
readonly hint?: string | undefined;
|
|
9504
9065
|
readonly id?: string | undefined;
|
|
@@ -9529,22 +9090,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9529
9090
|
readonly helpText?: string | undefined;
|
|
9530
9091
|
readonly maxlength?: string | number | undefined;
|
|
9531
9092
|
readonly title?: string | false | undefined;
|
|
9532
|
-
readonly
|
|
9533
|
-
readonly
|
|
9534
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
9535
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
9536
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
9537
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
9093
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
9094
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
9538
9095
|
readonly customRules?: ValidationRule[] | undefined;
|
|
9539
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
9540
9096
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
9097
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
9098
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
9541
9099
|
readonly errorMessages?: string[] | null | undefined;
|
|
9542
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
9543
|
-
readonly successMessages?: string[] | null | undefined;
|
|
9544
9100
|
readonly hasError?: boolean | undefined;
|
|
9545
|
-
readonly hasWarning?: boolean | undefined;
|
|
9546
9101
|
readonly hasSuccess?: boolean | undefined;
|
|
9102
|
+
readonly hasWarning?: boolean | undefined;
|
|
9103
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
9547
9104
|
readonly maxErrors?: number | undefined;
|
|
9105
|
+
readonly required?: boolean | undefined;
|
|
9106
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
9107
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
9108
|
+
readonly successMessages?: string[] | null | undefined;
|
|
9109
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
9110
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
9548
9111
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
9549
9112
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
9550
9113
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -9937,7 +9500,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9937
9500
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
9938
9501
|
modelValue?: unknown;
|
|
9939
9502
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
9940
|
-
}, 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" | "
|
|
9503
|
+
}, 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<{
|
|
9941
9504
|
$: import('vue').ComponentInternalInstance;
|
|
9942
9505
|
$data: {};
|
|
9943
9506
|
$props: Partial<{
|
|
@@ -10674,7 +10237,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10674
10237
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
10675
10238
|
modelValue?: unknown;
|
|
10676
10239
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
10677
|
-
}, 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" | "
|
|
10240
|
+
}, 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<{
|
|
10678
10241
|
$: import('vue').ComponentInternalInstance;
|
|
10679
10242
|
$data: {};
|
|
10680
10243
|
$props: Partial<{
|
|
@@ -10989,65 +10552,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10989
10552
|
$host: Element | null;
|
|
10990
10553
|
$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);
|
|
10991
10554
|
$el: any;
|
|
10992
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
10993
|
-
modelValue?: string | number | null | undefined;
|
|
10994
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
10995
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
10996
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
10997
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
10998
|
-
prependTooltip?: string;
|
|
10999
|
-
appendTooltip?: string;
|
|
11000
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
11001
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
11002
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
11003
|
-
isClearable?: boolean;
|
|
11004
|
-
showDivider?: boolean;
|
|
11005
|
-
label?: string;
|
|
11006
|
-
readonly?: boolean;
|
|
11007
|
-
isActive?: boolean;
|
|
11008
|
-
baseColor?: string;
|
|
11009
|
-
bgColor?: string;
|
|
11010
|
-
centerAffix?: boolean;
|
|
11011
|
-
counter?: string | number | boolean;
|
|
11012
|
-
counterValue?: number | ((value: any) => number);
|
|
11013
|
-
density?: "default" | "comfortable" | "compact";
|
|
11014
|
-
direction?: "horizontal" | "vertical";
|
|
11015
|
-
isDirty?: boolean;
|
|
11016
|
-
disabled?: boolean;
|
|
11017
|
-
isFlat?: boolean;
|
|
11018
|
-
isFocused?: boolean;
|
|
11019
|
-
areDetailsHidden?: boolean | "auto";
|
|
11020
|
-
areSpinButtonsHidden?: boolean;
|
|
11021
|
-
hint?: string;
|
|
11022
|
-
id?: string;
|
|
11023
|
-
loading?: string | boolean;
|
|
11024
|
-
maxWidth?: string | number;
|
|
11025
|
-
messages?: string | string[];
|
|
11026
|
-
minWidth?: string | number;
|
|
11027
|
-
name?: string;
|
|
11028
|
-
displayPersistentClear?: boolean;
|
|
11029
|
-
displayPersistentCounter?: boolean;
|
|
11030
|
-
displayPersistentHint?: boolean;
|
|
11031
|
-
displayPersistentPlaceholder?: boolean;
|
|
11032
|
-
placeholder?: string;
|
|
11033
|
-
prefix?: string;
|
|
11034
|
-
isReversed?: boolean;
|
|
11035
|
-
role?: string;
|
|
11036
|
-
rounded?: string | number | boolean;
|
|
11037
|
-
isOnSingleLine?: boolean;
|
|
11038
|
-
suffix?: string;
|
|
11039
|
-
theme?: string;
|
|
11040
|
-
isTiled?: boolean;
|
|
11041
|
-
type?: string;
|
|
11042
|
-
width?: string | number;
|
|
11043
|
-
displayAsterisk?: boolean;
|
|
11044
|
-
noIcon?: boolean;
|
|
11045
|
-
disableClickButton?: boolean;
|
|
11046
|
-
autocomplete?: string;
|
|
11047
|
-
helpText?: string;
|
|
11048
|
-
maxlength?: string | number;
|
|
11049
|
-
title?: string | false;
|
|
11050
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
10555
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
11051
10556
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
11052
10557
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
11053
10558
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -11057,7 +10562,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11057
10562
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
11058
10563
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
11059
10564
|
}>, {
|
|
11060
|
-
validateOnSubmit: (
|
|
10565
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
11061
10566
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11062
10567
|
input: (...args: any[]) => void;
|
|
11063
10568
|
blur: (...args: any[]) => void;
|
|
@@ -11073,10 +10578,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11073
10578
|
title: string | false;
|
|
11074
10579
|
width: string | number;
|
|
11075
10580
|
role: string;
|
|
11076
|
-
color: import('
|
|
10581
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
11077
10582
|
theme: string;
|
|
11078
10583
|
disabled: boolean;
|
|
11079
10584
|
placeholder: string;
|
|
10585
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
11080
10586
|
density: "default" | "comfortable" | "compact";
|
|
11081
10587
|
rounded: string | number | boolean;
|
|
11082
10588
|
maxWidth: string | number;
|
|
@@ -11097,12 +10603,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11097
10603
|
disableErrorHandling: boolean;
|
|
11098
10604
|
errorMessages: string[] | null;
|
|
11099
10605
|
maxErrors: number;
|
|
10606
|
+
hasError: boolean;
|
|
10607
|
+
hasWarning: boolean;
|
|
10608
|
+
hasSuccess: boolean;
|
|
10609
|
+
useVuetifyValidation: boolean;
|
|
10610
|
+
customRules: ValidationRule[];
|
|
10611
|
+
customWarningRules: ValidationRule[];
|
|
10612
|
+
customSuccessRules: ValidationRule[];
|
|
11100
10613
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
11101
10614
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
11102
10615
|
prependTooltip: string;
|
|
11103
10616
|
appendTooltip: string;
|
|
11104
10617
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
11105
|
-
variantStyle: import('
|
|
10618
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
11106
10619
|
isClearable: boolean;
|
|
11107
10620
|
centerAffix: boolean;
|
|
11108
10621
|
counter: string | number | boolean;
|
|
@@ -11111,7 +10624,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11111
10624
|
isDirty: boolean;
|
|
11112
10625
|
isFlat: boolean;
|
|
11113
10626
|
isFocused: boolean;
|
|
11114
|
-
areDetailsHidden: boolean | "auto";
|
|
11115
10627
|
areSpinButtonsHidden: boolean;
|
|
11116
10628
|
hint: string;
|
|
11117
10629
|
messages: string | string[];
|
|
@@ -11129,16 +10641,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11129
10641
|
autocomplete: string;
|
|
11130
10642
|
helpText: string;
|
|
11131
10643
|
maxlength: string | number;
|
|
10644
|
+
hideDetails: boolean | "auto";
|
|
11132
10645
|
isValidateOnBlur: boolean;
|
|
11133
|
-
useVuetifyValidation: boolean;
|
|
11134
|
-
customRules: ValidationRule[];
|
|
11135
|
-
customWarningRules: ValidationRule[];
|
|
11136
|
-
customSuccessRules: ValidationRule[];
|
|
11137
|
-
warningMessages: string[] | null;
|
|
11138
10646
|
successMessages: string[] | null;
|
|
11139
|
-
|
|
11140
|
-
hasWarning: boolean;
|
|
11141
|
-
hasSuccess: boolean;
|
|
10647
|
+
warningMessages: string[] | null;
|
|
11142
10648
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
11143
10649
|
beforeCreate?: (() => void) | (() => void)[];
|
|
11144
10650
|
created?: (() => void) | (() => void)[];
|
|
@@ -11165,10 +10671,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11165
10671
|
title: string | false;
|
|
11166
10672
|
width: string | number;
|
|
11167
10673
|
role: string;
|
|
11168
|
-
color: import('
|
|
10674
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
11169
10675
|
theme: string;
|
|
11170
10676
|
disabled: boolean;
|
|
11171
10677
|
placeholder: string;
|
|
10678
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
11172
10679
|
density: "default" | "comfortable" | "compact";
|
|
11173
10680
|
rounded: string | number | boolean;
|
|
11174
10681
|
maxWidth: string | number;
|
|
@@ -11189,12 +10696,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11189
10696
|
disableErrorHandling: boolean;
|
|
11190
10697
|
errorMessages: string[] | null;
|
|
11191
10698
|
maxErrors: number;
|
|
10699
|
+
hasError: boolean;
|
|
10700
|
+
hasWarning: boolean;
|
|
10701
|
+
hasSuccess: boolean;
|
|
10702
|
+
useVuetifyValidation: boolean;
|
|
10703
|
+
customRules: ValidationRule[];
|
|
10704
|
+
customWarningRules: ValidationRule[];
|
|
10705
|
+
customSuccessRules: ValidationRule[];
|
|
11192
10706
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
11193
10707
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
11194
10708
|
prependTooltip: string;
|
|
11195
10709
|
appendTooltip: string;
|
|
11196
10710
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
11197
|
-
variantStyle: import('
|
|
10711
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
11198
10712
|
isClearable: boolean;
|
|
11199
10713
|
centerAffix: boolean;
|
|
11200
10714
|
counter: string | number | boolean;
|
|
@@ -11203,7 +10717,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11203
10717
|
isDirty: boolean;
|
|
11204
10718
|
isFlat: boolean;
|
|
11205
10719
|
isFocused: boolean;
|
|
11206
|
-
areDetailsHidden: boolean | "auto";
|
|
11207
10720
|
areSpinButtonsHidden: boolean;
|
|
11208
10721
|
hint: string;
|
|
11209
10722
|
messages: string | string[];
|
|
@@ -11221,75 +10734,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11221
10734
|
autocomplete: string;
|
|
11222
10735
|
helpText: string;
|
|
11223
10736
|
maxlength: string | number;
|
|
10737
|
+
hideDetails: boolean | "auto";
|
|
11224
10738
|
isValidateOnBlur: boolean;
|
|
11225
|
-
useVuetifyValidation: boolean;
|
|
11226
|
-
customRules: ValidationRule[];
|
|
11227
|
-
customWarningRules: ValidationRule[];
|
|
11228
|
-
customSuccessRules: ValidationRule[];
|
|
11229
|
-
warningMessages: string[] | null;
|
|
11230
10739
|
successMessages: string[] | null;
|
|
11231
|
-
|
|
11232
|
-
|
|
11233
|
-
hasSuccess: boolean;
|
|
11234
|
-
}> & Omit<Readonly<{
|
|
11235
|
-
modelValue?: string | number | null | undefined;
|
|
11236
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
11237
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
11238
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
11239
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
11240
|
-
prependTooltip?: string;
|
|
11241
|
-
appendTooltip?: string;
|
|
11242
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
11243
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
11244
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
11245
|
-
isClearable?: boolean;
|
|
11246
|
-
showDivider?: boolean;
|
|
11247
|
-
label?: string;
|
|
11248
|
-
readonly?: boolean;
|
|
11249
|
-
isActive?: boolean;
|
|
11250
|
-
baseColor?: string;
|
|
11251
|
-
bgColor?: string;
|
|
11252
|
-
centerAffix?: boolean;
|
|
11253
|
-
counter?: string | number | boolean;
|
|
11254
|
-
counterValue?: number | ((value: any) => number);
|
|
11255
|
-
density?: "default" | "comfortable" | "compact";
|
|
11256
|
-
direction?: "horizontal" | "vertical";
|
|
11257
|
-
isDirty?: boolean;
|
|
11258
|
-
disabled?: boolean;
|
|
11259
|
-
isFlat?: boolean;
|
|
11260
|
-
isFocused?: boolean;
|
|
11261
|
-
areDetailsHidden?: boolean | "auto";
|
|
11262
|
-
areSpinButtonsHidden?: boolean;
|
|
11263
|
-
hint?: string;
|
|
11264
|
-
id?: string;
|
|
11265
|
-
loading?: string | boolean;
|
|
11266
|
-
maxWidth?: string | number;
|
|
11267
|
-
messages?: string | string[];
|
|
11268
|
-
minWidth?: string | number;
|
|
11269
|
-
name?: string;
|
|
11270
|
-
displayPersistentClear?: boolean;
|
|
11271
|
-
displayPersistentCounter?: boolean;
|
|
11272
|
-
displayPersistentHint?: boolean;
|
|
11273
|
-
displayPersistentPlaceholder?: boolean;
|
|
11274
|
-
placeholder?: string;
|
|
11275
|
-
prefix?: string;
|
|
11276
|
-
isReversed?: boolean;
|
|
11277
|
-
role?: string;
|
|
11278
|
-
rounded?: string | number | boolean;
|
|
11279
|
-
isOnSingleLine?: boolean;
|
|
11280
|
-
suffix?: string;
|
|
11281
|
-
theme?: string;
|
|
11282
|
-
isTiled?: boolean;
|
|
11283
|
-
type?: string;
|
|
11284
|
-
width?: string | number;
|
|
11285
|
-
displayAsterisk?: boolean;
|
|
11286
|
-
noIcon?: boolean;
|
|
11287
|
-
disableClickButton?: boolean;
|
|
11288
|
-
autocomplete?: string;
|
|
11289
|
-
helpText?: string;
|
|
11290
|
-
maxlength?: string | number;
|
|
11291
|
-
title?: string | false;
|
|
11292
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
10740
|
+
warningMessages: string[] | null;
|
|
10741
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
11293
10742
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
11294
10743
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
11295
10744
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -11298,8 +10747,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11298
10747
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
11299
10748
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
11300
10749
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
11301
|
-
}>, "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" | "
|
|
11302
|
-
validateOnSubmit: (
|
|
10750
|
+
}>, "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")> & {
|
|
10751
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
11303
10752
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
11304
10753
|
$slots: {
|
|
11305
10754
|
prepend?(_: {}): any;
|
|
@@ -11344,6 +10793,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11344
10793
|
required?: boolean;
|
|
11345
10794
|
showSuccessMessages?: boolean;
|
|
11346
10795
|
title?: string | false;
|
|
10796
|
+
skipInternalValidation?: boolean;
|
|
11347
10797
|
}> & Readonly<{
|
|
11348
10798
|
onInput?: ((value: string) => any) | undefined;
|
|
11349
10799
|
onBlur?: (() => any) | undefined;
|
|
@@ -11366,11 +10816,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11366
10816
|
required: boolean;
|
|
11367
10817
|
showSuccessMessages: boolean;
|
|
11368
10818
|
disableErrorHandling: boolean;
|
|
10819
|
+
customRules: ValidationRule[];
|
|
10820
|
+
customWarningRules: ValidationRule[];
|
|
11369
10821
|
hint: string;
|
|
11370
10822
|
noIcon: boolean;
|
|
11371
10823
|
isValidateOnBlur: boolean;
|
|
11372
|
-
customRules: ValidationRule[];
|
|
11373
|
-
customWarningRules: ValidationRule[];
|
|
11374
10824
|
persistentHint: boolean;
|
|
11375
10825
|
format: string;
|
|
11376
10826
|
autoClamp: boolean;
|
|
@@ -11381,6 +10831,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11381
10831
|
displayPrependIcon: boolean;
|
|
11382
10832
|
externalErrorMessages: string[];
|
|
11383
10833
|
isOutlined: boolean;
|
|
10834
|
+
skipInternalValidation: boolean;
|
|
11384
10835
|
}> | null;
|
|
11385
10836
|
complexDatePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
11386
10837
|
autoClamp?: boolean;
|
|
@@ -11450,9 +10901,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11450
10901
|
currentMonth: import('vue').Ref<string | null, string | null>;
|
|
11451
10902
|
currentMonthName: import('vue').Ref<string | null, string | null>;
|
|
11452
10903
|
toggleDatePicker: () => void;
|
|
11453
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult |
|
|
10904
|
+
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => Promise<import('../../composables/validation/useValidation').ValidationResult> | import('../../composables/validation/useValidation').ValidationResult;
|
|
11454
10905
|
clearValidation: () => void;
|
|
11455
|
-
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult>;
|
|
10906
|
+
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
11456
10907
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
11457
10908
|
formatted: string;
|
|
11458
10909
|
cursorPos: number;
|
|
@@ -11486,10 +10937,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11486
10937
|
required: boolean;
|
|
11487
10938
|
showSuccessMessages: boolean;
|
|
11488
10939
|
disableErrorHandling: boolean;
|
|
11489
|
-
hint: string;
|
|
11490
|
-
displayAsterisk: boolean;
|
|
11491
|
-
noIcon: boolean;
|
|
11492
|
-
isValidateOnBlur: boolean;
|
|
11493
10940
|
customRules: {
|
|
11494
10941
|
type: string;
|
|
11495
10942
|
options: any;
|
|
@@ -11498,6 +10945,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11498
10945
|
type: string;
|
|
11499
10946
|
options: any;
|
|
11500
10947
|
}[];
|
|
10948
|
+
hint: string;
|
|
10949
|
+
displayAsterisk: boolean;
|
|
10950
|
+
noIcon: boolean;
|
|
10951
|
+
isValidateOnBlur: boolean;
|
|
11501
10952
|
persistentHint: boolean;
|
|
11502
10953
|
format: string;
|
|
11503
10954
|
autoClamp: boolean;
|
|
@@ -11548,6 +10999,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11548
10999
|
required?: boolean;
|
|
11549
11000
|
showSuccessMessages?: boolean;
|
|
11550
11001
|
title?: string | false;
|
|
11002
|
+
skipInternalValidation?: boolean;
|
|
11551
11003
|
}> & Readonly<{
|
|
11552
11004
|
onInput?: ((value: string) => any) | undefined;
|
|
11553
11005
|
onBlur?: (() => any) | undefined;
|
|
@@ -11576,11 +11028,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11576
11028
|
required: boolean;
|
|
11577
11029
|
showSuccessMessages: boolean;
|
|
11578
11030
|
disableErrorHandling: boolean;
|
|
11031
|
+
customRules: ValidationRule[];
|
|
11032
|
+
customWarningRules: ValidationRule[];
|
|
11579
11033
|
hint: string;
|
|
11580
11034
|
noIcon: boolean;
|
|
11581
11035
|
isValidateOnBlur: boolean;
|
|
11582
|
-
customRules: ValidationRule[];
|
|
11583
|
-
customWarningRules: ValidationRule[];
|
|
11584
11036
|
persistentHint: boolean;
|
|
11585
11037
|
format: string;
|
|
11586
11038
|
autoClamp: boolean;
|
|
@@ -11591,21 +11043,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11591
11043
|
displayPrependIcon: boolean;
|
|
11592
11044
|
externalErrorMessages: string[];
|
|
11593
11045
|
isOutlined: boolean;
|
|
11046
|
+
skipInternalValidation: boolean;
|
|
11594
11047
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
11595
11048
|
inputRef: ({
|
|
11596
11049
|
$: import('vue').ComponentInternalInstance;
|
|
11597
11050
|
$data: {};
|
|
11598
11051
|
$props: {
|
|
11599
11052
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
11600
|
-
readonly prependIcon?: import('
|
|
11601
|
-
readonly appendIcon?: import('
|
|
11602
|
-
readonly prependInnerIcon?: import('
|
|
11603
|
-
readonly appendInnerIcon?: import('
|
|
11053
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
11054
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
11055
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
11056
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
11604
11057
|
readonly prependTooltip?: string | undefined;
|
|
11605
11058
|
readonly appendTooltip?: string | undefined;
|
|
11606
11059
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
11607
|
-
readonly variantStyle?: import('
|
|
11608
|
-
readonly color?: import('
|
|
11060
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
11061
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
11609
11062
|
readonly isClearable?: boolean | undefined;
|
|
11610
11063
|
readonly showDivider?: boolean | undefined;
|
|
11611
11064
|
readonly label?: string | undefined;
|
|
@@ -11622,7 +11075,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11622
11075
|
readonly disabled?: boolean | undefined;
|
|
11623
11076
|
readonly isFlat?: boolean | undefined;
|
|
11624
11077
|
readonly isFocused?: boolean | undefined;
|
|
11625
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
11626
11078
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
11627
11079
|
readonly hint?: string | undefined;
|
|
11628
11080
|
readonly id?: string | undefined;
|
|
@@ -11653,22 +11105,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11653
11105
|
readonly helpText?: string | undefined;
|
|
11654
11106
|
readonly maxlength?: string | number | undefined;
|
|
11655
11107
|
readonly title?: string | false | undefined;
|
|
11656
|
-
readonly
|
|
11657
|
-
readonly
|
|
11658
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
11659
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
11660
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
11661
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
11108
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
11109
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
11662
11110
|
readonly customRules?: ValidationRule[] | undefined;
|
|
11663
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
11664
11111
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
11112
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
11113
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
11665
11114
|
readonly errorMessages?: string[] | null | undefined;
|
|
11666
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
11667
|
-
readonly successMessages?: string[] | null | undefined;
|
|
11668
11115
|
readonly hasError?: boolean | undefined;
|
|
11669
|
-
readonly hasWarning?: boolean | undefined;
|
|
11670
11116
|
readonly hasSuccess?: boolean | undefined;
|
|
11117
|
+
readonly hasWarning?: boolean | undefined;
|
|
11118
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
11671
11119
|
readonly maxErrors?: number | undefined;
|
|
11120
|
+
readonly required?: boolean | undefined;
|
|
11121
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
11122
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
11123
|
+
readonly successMessages?: string[] | null | undefined;
|
|
11124
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
11125
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
11672
11126
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
11673
11127
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
11674
11128
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -12061,7 +11515,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12061
11515
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
12062
11516
|
modelValue?: unknown;
|
|
12063
11517
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
12064
|
-
}, 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" | "
|
|
11518
|
+
}, 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<{
|
|
12065
11519
|
$: import('vue').ComponentInternalInstance;
|
|
12066
11520
|
$data: {};
|
|
12067
11521
|
$props: Partial<{
|
|
@@ -12798,7 +12252,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12798
12252
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
12799
12253
|
modelValue?: unknown;
|
|
12800
12254
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
12801
|
-
}, 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" | "
|
|
12255
|
+
}, 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<{
|
|
12802
12256
|
$: import('vue').ComponentInternalInstance;
|
|
12803
12257
|
$data: {};
|
|
12804
12258
|
$props: Partial<{
|
|
@@ -13113,65 +12567,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13113
12567
|
$host: Element | null;
|
|
13114
12568
|
$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);
|
|
13115
12569
|
$el: any;
|
|
13116
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
13117
|
-
modelValue?: string | number | null | undefined;
|
|
13118
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13119
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13120
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13121
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13122
|
-
prependTooltip?: string;
|
|
13123
|
-
appendTooltip?: string;
|
|
13124
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
13125
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
13126
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
13127
|
-
isClearable?: boolean;
|
|
13128
|
-
showDivider?: boolean;
|
|
13129
|
-
label?: string;
|
|
13130
|
-
readonly?: boolean;
|
|
13131
|
-
isActive?: boolean;
|
|
13132
|
-
baseColor?: string;
|
|
13133
|
-
bgColor?: string;
|
|
13134
|
-
centerAffix?: boolean;
|
|
13135
|
-
counter?: string | number | boolean;
|
|
13136
|
-
counterValue?: number | ((value: any) => number);
|
|
13137
|
-
density?: "default" | "comfortable" | "compact";
|
|
13138
|
-
direction?: "horizontal" | "vertical";
|
|
13139
|
-
isDirty?: boolean;
|
|
13140
|
-
disabled?: boolean;
|
|
13141
|
-
isFlat?: boolean;
|
|
13142
|
-
isFocused?: boolean;
|
|
13143
|
-
areDetailsHidden?: boolean | "auto";
|
|
13144
|
-
areSpinButtonsHidden?: boolean;
|
|
13145
|
-
hint?: string;
|
|
13146
|
-
id?: string;
|
|
13147
|
-
loading?: string | boolean;
|
|
13148
|
-
maxWidth?: string | number;
|
|
13149
|
-
messages?: string | string[];
|
|
13150
|
-
minWidth?: string | number;
|
|
13151
|
-
name?: string;
|
|
13152
|
-
displayPersistentClear?: boolean;
|
|
13153
|
-
displayPersistentCounter?: boolean;
|
|
13154
|
-
displayPersistentHint?: boolean;
|
|
13155
|
-
displayPersistentPlaceholder?: boolean;
|
|
13156
|
-
placeholder?: string;
|
|
13157
|
-
prefix?: string;
|
|
13158
|
-
isReversed?: boolean;
|
|
13159
|
-
role?: string;
|
|
13160
|
-
rounded?: string | number | boolean;
|
|
13161
|
-
isOnSingleLine?: boolean;
|
|
13162
|
-
suffix?: string;
|
|
13163
|
-
theme?: string;
|
|
13164
|
-
isTiled?: boolean;
|
|
13165
|
-
type?: string;
|
|
13166
|
-
width?: string | number;
|
|
13167
|
-
displayAsterisk?: boolean;
|
|
13168
|
-
noIcon?: boolean;
|
|
13169
|
-
disableClickButton?: boolean;
|
|
13170
|
-
autocomplete?: string;
|
|
13171
|
-
helpText?: string;
|
|
13172
|
-
maxlength?: string | number;
|
|
13173
|
-
title?: string | false;
|
|
13174
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
12570
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
13175
12571
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
13176
12572
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
13177
12573
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -13181,7 +12577,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13181
12577
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
13182
12578
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
13183
12579
|
}>, {
|
|
13184
|
-
validateOnSubmit: (
|
|
12580
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
13185
12581
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13186
12582
|
input: (...args: any[]) => void;
|
|
13187
12583
|
blur: (...args: any[]) => void;
|
|
@@ -13197,10 +12593,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13197
12593
|
title: string | false;
|
|
13198
12594
|
width: string | number;
|
|
13199
12595
|
role: string;
|
|
13200
|
-
color: import('
|
|
12596
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
13201
12597
|
theme: string;
|
|
13202
12598
|
disabled: boolean;
|
|
13203
12599
|
placeholder: string;
|
|
12600
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
13204
12601
|
density: "default" | "comfortable" | "compact";
|
|
13205
12602
|
rounded: string | number | boolean;
|
|
13206
12603
|
maxWidth: string | number;
|
|
@@ -13221,12 +12618,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13221
12618
|
disableErrorHandling: boolean;
|
|
13222
12619
|
errorMessages: string[] | null;
|
|
13223
12620
|
maxErrors: number;
|
|
12621
|
+
hasError: boolean;
|
|
12622
|
+
hasWarning: boolean;
|
|
12623
|
+
hasSuccess: boolean;
|
|
12624
|
+
useVuetifyValidation: boolean;
|
|
12625
|
+
customRules: ValidationRule[];
|
|
12626
|
+
customWarningRules: ValidationRule[];
|
|
12627
|
+
customSuccessRules: ValidationRule[];
|
|
13224
12628
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
13225
12629
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
13226
12630
|
prependTooltip: string;
|
|
13227
12631
|
appendTooltip: string;
|
|
13228
12632
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
13229
|
-
variantStyle: import('
|
|
12633
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
13230
12634
|
isClearable: boolean;
|
|
13231
12635
|
centerAffix: boolean;
|
|
13232
12636
|
counter: string | number | boolean;
|
|
@@ -13235,7 +12639,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13235
12639
|
isDirty: boolean;
|
|
13236
12640
|
isFlat: boolean;
|
|
13237
12641
|
isFocused: boolean;
|
|
13238
|
-
areDetailsHidden: boolean | "auto";
|
|
13239
12642
|
areSpinButtonsHidden: boolean;
|
|
13240
12643
|
hint: string;
|
|
13241
12644
|
messages: string | string[];
|
|
@@ -13253,16 +12656,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13253
12656
|
autocomplete: string;
|
|
13254
12657
|
helpText: string;
|
|
13255
12658
|
maxlength: string | number;
|
|
12659
|
+
hideDetails: boolean | "auto";
|
|
13256
12660
|
isValidateOnBlur: boolean;
|
|
13257
|
-
useVuetifyValidation: boolean;
|
|
13258
|
-
customRules: ValidationRule[];
|
|
13259
|
-
customWarningRules: ValidationRule[];
|
|
13260
|
-
customSuccessRules: ValidationRule[];
|
|
13261
|
-
warningMessages: string[] | null;
|
|
13262
12661
|
successMessages: string[] | null;
|
|
13263
|
-
|
|
13264
|
-
hasWarning: boolean;
|
|
13265
|
-
hasSuccess: boolean;
|
|
12662
|
+
warningMessages: string[] | null;
|
|
13266
12663
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
13267
12664
|
beforeCreate?: (() => void) | (() => void)[];
|
|
13268
12665
|
created?: (() => void) | (() => void)[];
|
|
@@ -13289,10 +12686,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13289
12686
|
title: string | false;
|
|
13290
12687
|
width: string | number;
|
|
13291
12688
|
role: string;
|
|
13292
|
-
color: import('
|
|
12689
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
13293
12690
|
theme: string;
|
|
13294
12691
|
disabled: boolean;
|
|
13295
12692
|
placeholder: string;
|
|
12693
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
13296
12694
|
density: "default" | "comfortable" | "compact";
|
|
13297
12695
|
rounded: string | number | boolean;
|
|
13298
12696
|
maxWidth: string | number;
|
|
@@ -13313,12 +12711,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13313
12711
|
disableErrorHandling: boolean;
|
|
13314
12712
|
errorMessages: string[] | null;
|
|
13315
12713
|
maxErrors: number;
|
|
12714
|
+
hasError: boolean;
|
|
12715
|
+
hasWarning: boolean;
|
|
12716
|
+
hasSuccess: boolean;
|
|
12717
|
+
useVuetifyValidation: boolean;
|
|
12718
|
+
customRules: ValidationRule[];
|
|
12719
|
+
customWarningRules: ValidationRule[];
|
|
12720
|
+
customSuccessRules: ValidationRule[];
|
|
13316
12721
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
13317
12722
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
13318
12723
|
prependTooltip: string;
|
|
13319
12724
|
appendTooltip: string;
|
|
13320
12725
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
13321
|
-
variantStyle: import('
|
|
12726
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
13322
12727
|
isClearable: boolean;
|
|
13323
12728
|
centerAffix: boolean;
|
|
13324
12729
|
counter: string | number | boolean;
|
|
@@ -13327,7 +12732,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13327
12732
|
isDirty: boolean;
|
|
13328
12733
|
isFlat: boolean;
|
|
13329
12734
|
isFocused: boolean;
|
|
13330
|
-
areDetailsHidden: boolean | "auto";
|
|
13331
12735
|
areSpinButtonsHidden: boolean;
|
|
13332
12736
|
hint: string;
|
|
13333
12737
|
messages: string | string[];
|
|
@@ -13345,75 +12749,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13345
12749
|
autocomplete: string;
|
|
13346
12750
|
helpText: string;
|
|
13347
12751
|
maxlength: string | number;
|
|
12752
|
+
hideDetails: boolean | "auto";
|
|
13348
12753
|
isValidateOnBlur: boolean;
|
|
13349
|
-
useVuetifyValidation: boolean;
|
|
13350
|
-
customRules: ValidationRule[];
|
|
13351
|
-
customWarningRules: ValidationRule[];
|
|
13352
|
-
customSuccessRules: ValidationRule[];
|
|
13353
|
-
warningMessages: string[] | null;
|
|
13354
12754
|
successMessages: string[] | null;
|
|
13355
|
-
|
|
13356
|
-
|
|
13357
|
-
hasSuccess: boolean;
|
|
13358
|
-
}> & Omit<Readonly<{
|
|
13359
|
-
modelValue?: string | number | null | undefined;
|
|
13360
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13361
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13362
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13363
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
13364
|
-
prependTooltip?: string;
|
|
13365
|
-
appendTooltip?: string;
|
|
13366
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
13367
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
13368
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
13369
|
-
isClearable?: boolean;
|
|
13370
|
-
showDivider?: boolean;
|
|
13371
|
-
label?: string;
|
|
13372
|
-
readonly?: boolean;
|
|
13373
|
-
isActive?: boolean;
|
|
13374
|
-
baseColor?: string;
|
|
13375
|
-
bgColor?: string;
|
|
13376
|
-
centerAffix?: boolean;
|
|
13377
|
-
counter?: string | number | boolean;
|
|
13378
|
-
counterValue?: number | ((value: any) => number);
|
|
13379
|
-
density?: "default" | "comfortable" | "compact";
|
|
13380
|
-
direction?: "horizontal" | "vertical";
|
|
13381
|
-
isDirty?: boolean;
|
|
13382
|
-
disabled?: boolean;
|
|
13383
|
-
isFlat?: boolean;
|
|
13384
|
-
isFocused?: boolean;
|
|
13385
|
-
areDetailsHidden?: boolean | "auto";
|
|
13386
|
-
areSpinButtonsHidden?: boolean;
|
|
13387
|
-
hint?: string;
|
|
13388
|
-
id?: string;
|
|
13389
|
-
loading?: string | boolean;
|
|
13390
|
-
maxWidth?: string | number;
|
|
13391
|
-
messages?: string | string[];
|
|
13392
|
-
minWidth?: string | number;
|
|
13393
|
-
name?: string;
|
|
13394
|
-
displayPersistentClear?: boolean;
|
|
13395
|
-
displayPersistentCounter?: boolean;
|
|
13396
|
-
displayPersistentHint?: boolean;
|
|
13397
|
-
displayPersistentPlaceholder?: boolean;
|
|
13398
|
-
placeholder?: string;
|
|
13399
|
-
prefix?: string;
|
|
13400
|
-
isReversed?: boolean;
|
|
13401
|
-
role?: string;
|
|
13402
|
-
rounded?: string | number | boolean;
|
|
13403
|
-
isOnSingleLine?: boolean;
|
|
13404
|
-
suffix?: string;
|
|
13405
|
-
theme?: string;
|
|
13406
|
-
isTiled?: boolean;
|
|
13407
|
-
type?: string;
|
|
13408
|
-
width?: string | number;
|
|
13409
|
-
displayAsterisk?: boolean;
|
|
13410
|
-
noIcon?: boolean;
|
|
13411
|
-
disableClickButton?: boolean;
|
|
13412
|
-
autocomplete?: string;
|
|
13413
|
-
helpText?: string;
|
|
13414
|
-
maxlength?: string | number;
|
|
13415
|
-
title?: string | false;
|
|
13416
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
12755
|
+
warningMessages: string[] | null;
|
|
12756
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
13417
12757
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
13418
12758
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
13419
12759
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -13422,8 +12762,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13422
12762
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
13423
12763
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
13424
12764
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
13425
|
-
}>, "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" | "
|
|
13426
|
-
validateOnSubmit: (
|
|
12765
|
+
}>, "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")> & {
|
|
12766
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
13427
12767
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
13428
12768
|
$slots: {
|
|
13429
12769
|
prepend?(_: {}): any;
|
|
@@ -13468,6 +12808,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13468
12808
|
required?: boolean;
|
|
13469
12809
|
showSuccessMessages?: boolean;
|
|
13470
12810
|
title?: string | false;
|
|
12811
|
+
skipInternalValidation?: boolean;
|
|
13471
12812
|
}> & Readonly<{
|
|
13472
12813
|
onInput?: ((value: string) => any) | undefined;
|
|
13473
12814
|
onBlur?: (() => any) | undefined;
|
|
@@ -13490,11 +12831,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13490
12831
|
required: boolean;
|
|
13491
12832
|
showSuccessMessages: boolean;
|
|
13492
12833
|
disableErrorHandling: boolean;
|
|
12834
|
+
customRules: ValidationRule[];
|
|
12835
|
+
customWarningRules: ValidationRule[];
|
|
13493
12836
|
hint: string;
|
|
13494
12837
|
noIcon: boolean;
|
|
13495
12838
|
isValidateOnBlur: boolean;
|
|
13496
|
-
customRules: ValidationRule[];
|
|
13497
|
-
customWarningRules: ValidationRule[];
|
|
13498
12839
|
persistentHint: boolean;
|
|
13499
12840
|
format: string;
|
|
13500
12841
|
autoClamp: boolean;
|
|
@@ -13505,6 +12846,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13505
12846
|
displayPrependIcon: boolean;
|
|
13506
12847
|
externalErrorMessages: string[];
|
|
13507
12848
|
isOutlined: boolean;
|
|
12849
|
+
skipInternalValidation: boolean;
|
|
13508
12850
|
}> | null;
|
|
13509
12851
|
menuActivatorRef: HTMLDivElement;
|
|
13510
12852
|
dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -13534,6 +12876,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13534
12876
|
required?: boolean;
|
|
13535
12877
|
showSuccessMessages?: boolean;
|
|
13536
12878
|
title?: string | false;
|
|
12879
|
+
skipInternalValidation?: boolean;
|
|
13537
12880
|
}> & Readonly<{
|
|
13538
12881
|
onInput?: ((value: string) => any) | undefined;
|
|
13539
12882
|
onBlur?: (() => any) | undefined;
|
|
@@ -13562,11 +12905,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13562
12905
|
required: boolean;
|
|
13563
12906
|
showSuccessMessages: boolean;
|
|
13564
12907
|
disableErrorHandling: boolean;
|
|
12908
|
+
customRules: ValidationRule[];
|
|
12909
|
+
customWarningRules: ValidationRule[];
|
|
13565
12910
|
hint: string;
|
|
13566
12911
|
noIcon: boolean;
|
|
13567
12912
|
isValidateOnBlur: boolean;
|
|
13568
|
-
customRules: ValidationRule[];
|
|
13569
|
-
customWarningRules: ValidationRule[];
|
|
13570
12913
|
persistentHint: boolean;
|
|
13571
12914
|
format: string;
|
|
13572
12915
|
autoClamp: boolean;
|
|
@@ -13577,21 +12920,22 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13577
12920
|
displayPrependIcon: boolean;
|
|
13578
12921
|
externalErrorMessages: string[];
|
|
13579
12922
|
isOutlined: boolean;
|
|
12923
|
+
skipInternalValidation: boolean;
|
|
13580
12924
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
13581
12925
|
inputRef: ({
|
|
13582
12926
|
$: import('vue').ComponentInternalInstance;
|
|
13583
12927
|
$data: {};
|
|
13584
12928
|
$props: {
|
|
13585
12929
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
13586
|
-
readonly prependIcon?: import('
|
|
13587
|
-
readonly appendIcon?: import('
|
|
13588
|
-
readonly prependInnerIcon?: import('
|
|
13589
|
-
readonly appendInnerIcon?: import('
|
|
12930
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
12931
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
12932
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
12933
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
13590
12934
|
readonly prependTooltip?: string | undefined;
|
|
13591
12935
|
readonly appendTooltip?: string | undefined;
|
|
13592
12936
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
13593
|
-
readonly variantStyle?: import('
|
|
13594
|
-
readonly color?: import('
|
|
12937
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
12938
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
13595
12939
|
readonly isClearable?: boolean | undefined;
|
|
13596
12940
|
readonly showDivider?: boolean | undefined;
|
|
13597
12941
|
readonly label?: string | undefined;
|
|
@@ -13608,7 +12952,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13608
12952
|
readonly disabled?: boolean | undefined;
|
|
13609
12953
|
readonly isFlat?: boolean | undefined;
|
|
13610
12954
|
readonly isFocused?: boolean | undefined;
|
|
13611
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
13612
12955
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
13613
12956
|
readonly hint?: string | undefined;
|
|
13614
12957
|
readonly id?: string | undefined;
|
|
@@ -13639,22 +12982,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13639
12982
|
readonly helpText?: string | undefined;
|
|
13640
12983
|
readonly maxlength?: string | number | undefined;
|
|
13641
12984
|
readonly title?: string | false | undefined;
|
|
13642
|
-
readonly
|
|
13643
|
-
readonly
|
|
13644
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
13645
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
13646
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
13647
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
12985
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
12986
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
13648
12987
|
readonly customRules?: ValidationRule[] | undefined;
|
|
13649
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
13650
12988
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
12989
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
12990
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
13651
12991
|
readonly errorMessages?: string[] | null | undefined;
|
|
13652
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
13653
|
-
readonly successMessages?: string[] | null | undefined;
|
|
13654
12992
|
readonly hasError?: boolean | undefined;
|
|
13655
|
-
readonly hasWarning?: boolean | undefined;
|
|
13656
12993
|
readonly hasSuccess?: boolean | undefined;
|
|
12994
|
+
readonly hasWarning?: boolean | undefined;
|
|
12995
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
13657
12996
|
readonly maxErrors?: number | undefined;
|
|
12997
|
+
readonly required?: boolean | undefined;
|
|
12998
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
12999
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
13000
|
+
readonly successMessages?: string[] | null | undefined;
|
|
13001
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
13002
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
13658
13003
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
13659
13004
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
13660
13005
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -14047,7 +13392,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
14047
13392
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
14048
13393
|
modelValue?: unknown;
|
|
14049
13394
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
14050
|
-
}, 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" | "
|
|
13395
|
+
}, 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<{
|
|
14051
13396
|
$: import('vue').ComponentInternalInstance;
|
|
14052
13397
|
$data: {};
|
|
14053
13398
|
$props: Partial<{
|
|
@@ -14784,7 +14129,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
14784
14129
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
14785
14130
|
modelValue?: unknown;
|
|
14786
14131
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
14787
|
-
}, 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" | "
|
|
14132
|
+
}, 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<{
|
|
14788
14133
|
$: import('vue').ComponentInternalInstance;
|
|
14789
14134
|
$data: {};
|
|
14790
14135
|
$props: Partial<{
|
|
@@ -15099,65 +14444,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15099
14444
|
$host: Element | null;
|
|
15100
14445
|
$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);
|
|
15101
14446
|
$el: any;
|
|
15102
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
15103
|
-
modelValue?: string | number | null | undefined;
|
|
15104
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15105
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15106
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15107
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15108
|
-
prependTooltip?: string;
|
|
15109
|
-
appendTooltip?: string;
|
|
15110
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
15111
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
15112
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
15113
|
-
isClearable?: boolean;
|
|
15114
|
-
showDivider?: boolean;
|
|
15115
|
-
label?: string;
|
|
15116
|
-
readonly?: boolean;
|
|
15117
|
-
isActive?: boolean;
|
|
15118
|
-
baseColor?: string;
|
|
15119
|
-
bgColor?: string;
|
|
15120
|
-
centerAffix?: boolean;
|
|
15121
|
-
counter?: string | number | boolean;
|
|
15122
|
-
counterValue?: number | ((value: any) => number);
|
|
15123
|
-
density?: "default" | "comfortable" | "compact";
|
|
15124
|
-
direction?: "horizontal" | "vertical";
|
|
15125
|
-
isDirty?: boolean;
|
|
15126
|
-
disabled?: boolean;
|
|
15127
|
-
isFlat?: boolean;
|
|
15128
|
-
isFocused?: boolean;
|
|
15129
|
-
areDetailsHidden?: boolean | "auto";
|
|
15130
|
-
areSpinButtonsHidden?: boolean;
|
|
15131
|
-
hint?: string;
|
|
15132
|
-
id?: string;
|
|
15133
|
-
loading?: string | boolean;
|
|
15134
|
-
maxWidth?: string | number;
|
|
15135
|
-
messages?: string | string[];
|
|
15136
|
-
minWidth?: string | number;
|
|
15137
|
-
name?: string;
|
|
15138
|
-
displayPersistentClear?: boolean;
|
|
15139
|
-
displayPersistentCounter?: boolean;
|
|
15140
|
-
displayPersistentHint?: boolean;
|
|
15141
|
-
displayPersistentPlaceholder?: boolean;
|
|
15142
|
-
placeholder?: string;
|
|
15143
|
-
prefix?: string;
|
|
15144
|
-
isReversed?: boolean;
|
|
15145
|
-
role?: string;
|
|
15146
|
-
rounded?: string | number | boolean;
|
|
15147
|
-
isOnSingleLine?: boolean;
|
|
15148
|
-
suffix?: string;
|
|
15149
|
-
theme?: string;
|
|
15150
|
-
isTiled?: boolean;
|
|
15151
|
-
type?: string;
|
|
15152
|
-
width?: string | number;
|
|
15153
|
-
displayAsterisk?: boolean;
|
|
15154
|
-
noIcon?: boolean;
|
|
15155
|
-
disableClickButton?: boolean;
|
|
15156
|
-
autocomplete?: string;
|
|
15157
|
-
helpText?: string;
|
|
15158
|
-
maxlength?: string | number;
|
|
15159
|
-
title?: string | false;
|
|
15160
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
14447
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
15161
14448
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
15162
14449
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
15163
14450
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -15167,7 +14454,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15167
14454
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
15168
14455
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
15169
14456
|
}>, {
|
|
15170
|
-
validateOnSubmit: (
|
|
14457
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
15171
14458
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15172
14459
|
input: (...args: any[]) => void;
|
|
15173
14460
|
blur: (...args: any[]) => void;
|
|
@@ -15183,10 +14470,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15183
14470
|
title: string | false;
|
|
15184
14471
|
width: string | number;
|
|
15185
14472
|
role: string;
|
|
15186
|
-
color: import('
|
|
14473
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
15187
14474
|
theme: string;
|
|
15188
14475
|
disabled: boolean;
|
|
15189
14476
|
placeholder: string;
|
|
14477
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
15190
14478
|
density: "default" | "comfortable" | "compact";
|
|
15191
14479
|
rounded: string | number | boolean;
|
|
15192
14480
|
maxWidth: string | number;
|
|
@@ -15207,12 +14495,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15207
14495
|
disableErrorHandling: boolean;
|
|
15208
14496
|
errorMessages: string[] | null;
|
|
15209
14497
|
maxErrors: number;
|
|
14498
|
+
hasError: boolean;
|
|
14499
|
+
hasWarning: boolean;
|
|
14500
|
+
hasSuccess: boolean;
|
|
14501
|
+
useVuetifyValidation: boolean;
|
|
14502
|
+
customRules: ValidationRule[];
|
|
14503
|
+
customWarningRules: ValidationRule[];
|
|
14504
|
+
customSuccessRules: ValidationRule[];
|
|
15210
14505
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
15211
14506
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
15212
14507
|
prependTooltip: string;
|
|
15213
14508
|
appendTooltip: string;
|
|
15214
14509
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
15215
|
-
variantStyle: import('
|
|
14510
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
15216
14511
|
isClearable: boolean;
|
|
15217
14512
|
centerAffix: boolean;
|
|
15218
14513
|
counter: string | number | boolean;
|
|
@@ -15221,7 +14516,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15221
14516
|
isDirty: boolean;
|
|
15222
14517
|
isFlat: boolean;
|
|
15223
14518
|
isFocused: boolean;
|
|
15224
|
-
areDetailsHidden: boolean | "auto";
|
|
15225
14519
|
areSpinButtonsHidden: boolean;
|
|
15226
14520
|
hint: string;
|
|
15227
14521
|
messages: string | string[];
|
|
@@ -15239,16 +14533,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15239
14533
|
autocomplete: string;
|
|
15240
14534
|
helpText: string;
|
|
15241
14535
|
maxlength: string | number;
|
|
14536
|
+
hideDetails: boolean | "auto";
|
|
15242
14537
|
isValidateOnBlur: boolean;
|
|
15243
|
-
useVuetifyValidation: boolean;
|
|
15244
|
-
customRules: ValidationRule[];
|
|
15245
|
-
customWarningRules: ValidationRule[];
|
|
15246
|
-
customSuccessRules: ValidationRule[];
|
|
15247
|
-
warningMessages: string[] | null;
|
|
15248
14538
|
successMessages: string[] | null;
|
|
15249
|
-
|
|
15250
|
-
hasWarning: boolean;
|
|
15251
|
-
hasSuccess: boolean;
|
|
14539
|
+
warningMessages: string[] | null;
|
|
15252
14540
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
15253
14541
|
beforeCreate?: (() => void) | (() => void)[];
|
|
15254
14542
|
created?: (() => void) | (() => void)[];
|
|
@@ -15275,10 +14563,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15275
14563
|
title: string | false;
|
|
15276
14564
|
width: string | number;
|
|
15277
14565
|
role: string;
|
|
15278
|
-
color: import('
|
|
14566
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
15279
14567
|
theme: string;
|
|
15280
14568
|
disabled: boolean;
|
|
15281
14569
|
placeholder: string;
|
|
14570
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
15282
14571
|
density: "default" | "comfortable" | "compact";
|
|
15283
14572
|
rounded: string | number | boolean;
|
|
15284
14573
|
maxWidth: string | number;
|
|
@@ -15299,12 +14588,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15299
14588
|
disableErrorHandling: boolean;
|
|
15300
14589
|
errorMessages: string[] | null;
|
|
15301
14590
|
maxErrors: number;
|
|
14591
|
+
hasError: boolean;
|
|
14592
|
+
hasWarning: boolean;
|
|
14593
|
+
hasSuccess: boolean;
|
|
14594
|
+
useVuetifyValidation: boolean;
|
|
14595
|
+
customRules: ValidationRule[];
|
|
14596
|
+
customWarningRules: ValidationRule[];
|
|
14597
|
+
customSuccessRules: ValidationRule[];
|
|
15302
14598
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
15303
14599
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
15304
14600
|
prependTooltip: string;
|
|
15305
14601
|
appendTooltip: string;
|
|
15306
14602
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
15307
|
-
variantStyle: import('
|
|
14603
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
15308
14604
|
isClearable: boolean;
|
|
15309
14605
|
centerAffix: boolean;
|
|
15310
14606
|
counter: string | number | boolean;
|
|
@@ -15313,7 +14609,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15313
14609
|
isDirty: boolean;
|
|
15314
14610
|
isFlat: boolean;
|
|
15315
14611
|
isFocused: boolean;
|
|
15316
|
-
areDetailsHidden: boolean | "auto";
|
|
15317
14612
|
areSpinButtonsHidden: boolean;
|
|
15318
14613
|
hint: string;
|
|
15319
14614
|
messages: string | string[];
|
|
@@ -15331,75 +14626,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15331
14626
|
autocomplete: string;
|
|
15332
14627
|
helpText: string;
|
|
15333
14628
|
maxlength: string | number;
|
|
14629
|
+
hideDetails: boolean | "auto";
|
|
15334
14630
|
isValidateOnBlur: boolean;
|
|
15335
|
-
useVuetifyValidation: boolean;
|
|
15336
|
-
customRules: ValidationRule[];
|
|
15337
|
-
customWarningRules: ValidationRule[];
|
|
15338
|
-
customSuccessRules: ValidationRule[];
|
|
15339
|
-
warningMessages: string[] | null;
|
|
15340
14631
|
successMessages: string[] | null;
|
|
15341
|
-
|
|
15342
|
-
|
|
15343
|
-
hasSuccess: boolean;
|
|
15344
|
-
}> & Omit<Readonly<{
|
|
15345
|
-
modelValue?: string | number | null | undefined;
|
|
15346
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15347
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15348
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15349
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
15350
|
-
prependTooltip?: string;
|
|
15351
|
-
appendTooltip?: string;
|
|
15352
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
15353
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
15354
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
15355
|
-
isClearable?: boolean;
|
|
15356
|
-
showDivider?: boolean;
|
|
15357
|
-
label?: string;
|
|
15358
|
-
readonly?: boolean;
|
|
15359
|
-
isActive?: boolean;
|
|
15360
|
-
baseColor?: string;
|
|
15361
|
-
bgColor?: string;
|
|
15362
|
-
centerAffix?: boolean;
|
|
15363
|
-
counter?: string | number | boolean;
|
|
15364
|
-
counterValue?: number | ((value: any) => number);
|
|
15365
|
-
density?: "default" | "comfortable" | "compact";
|
|
15366
|
-
direction?: "horizontal" | "vertical";
|
|
15367
|
-
isDirty?: boolean;
|
|
15368
|
-
disabled?: boolean;
|
|
15369
|
-
isFlat?: boolean;
|
|
15370
|
-
isFocused?: boolean;
|
|
15371
|
-
areDetailsHidden?: boolean | "auto";
|
|
15372
|
-
areSpinButtonsHidden?: boolean;
|
|
15373
|
-
hint?: string;
|
|
15374
|
-
id?: string;
|
|
15375
|
-
loading?: string | boolean;
|
|
15376
|
-
maxWidth?: string | number;
|
|
15377
|
-
messages?: string | string[];
|
|
15378
|
-
minWidth?: string | number;
|
|
15379
|
-
name?: string;
|
|
15380
|
-
displayPersistentClear?: boolean;
|
|
15381
|
-
displayPersistentCounter?: boolean;
|
|
15382
|
-
displayPersistentHint?: boolean;
|
|
15383
|
-
displayPersistentPlaceholder?: boolean;
|
|
15384
|
-
placeholder?: string;
|
|
15385
|
-
prefix?: string;
|
|
15386
|
-
isReversed?: boolean;
|
|
15387
|
-
role?: string;
|
|
15388
|
-
rounded?: string | number | boolean;
|
|
15389
|
-
isOnSingleLine?: boolean;
|
|
15390
|
-
suffix?: string;
|
|
15391
|
-
theme?: string;
|
|
15392
|
-
isTiled?: boolean;
|
|
15393
|
-
type?: string;
|
|
15394
|
-
width?: string | number;
|
|
15395
|
-
displayAsterisk?: boolean;
|
|
15396
|
-
noIcon?: boolean;
|
|
15397
|
-
disableClickButton?: boolean;
|
|
15398
|
-
autocomplete?: string;
|
|
15399
|
-
helpText?: string;
|
|
15400
|
-
maxlength?: string | number;
|
|
15401
|
-
title?: string | false;
|
|
15402
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
14632
|
+
warningMessages: string[] | null;
|
|
14633
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
15403
14634
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
15404
14635
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
15405
14636
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -15408,8 +14639,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15408
14639
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
15409
14640
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
15410
14641
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
15411
|
-
}>, "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" | "
|
|
15412
|
-
validateOnSubmit: (
|
|
14642
|
+
}>, "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")> & {
|
|
14643
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
15413
14644
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
15414
14645
|
$slots: {
|
|
15415
14646
|
prepend?(_: {}): any;
|
|
@@ -15454,6 +14685,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15454
14685
|
required?: boolean;
|
|
15455
14686
|
showSuccessMessages?: boolean;
|
|
15456
14687
|
title?: string | false;
|
|
14688
|
+
skipInternalValidation?: boolean;
|
|
15457
14689
|
}> & Readonly<{
|
|
15458
14690
|
onInput?: ((value: string) => any) | undefined;
|
|
15459
14691
|
onBlur?: (() => any) | undefined;
|
|
@@ -15476,11 +14708,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15476
14708
|
required: boolean;
|
|
15477
14709
|
showSuccessMessages: boolean;
|
|
15478
14710
|
disableErrorHandling: boolean;
|
|
14711
|
+
customRules: ValidationRule[];
|
|
14712
|
+
customWarningRules: ValidationRule[];
|
|
15479
14713
|
hint: string;
|
|
15480
14714
|
noIcon: boolean;
|
|
15481
14715
|
isValidateOnBlur: boolean;
|
|
15482
|
-
customRules: ValidationRule[];
|
|
15483
|
-
customWarningRules: ValidationRule[];
|
|
15484
14716
|
persistentHint: boolean;
|
|
15485
14717
|
format: string;
|
|
15486
14718
|
autoClamp: boolean;
|
|
@@ -15491,6 +14723,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
15491
14723
|
displayPrependIcon: boolean;
|
|
15492
14724
|
externalErrorMessages: string[];
|
|
15493
14725
|
isOutlined: boolean;
|
|
14726
|
+
skipInternalValidation: boolean;
|
|
15494
14727
|
}> | null;
|
|
15495
14728
|
datePickerRef: ({
|
|
15496
14729
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -16008,9 +15241,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16008
15241
|
currentMonth: import('vue').Ref<string | null, string | null>;
|
|
16009
15242
|
currentMonthName: import('vue').Ref<string | null, string | null>;
|
|
16010
15243
|
toggleDatePicker: () => void;
|
|
16011
|
-
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => import('../../composables/validation/useValidation').ValidationResult |
|
|
15244
|
+
validateField: (value: unknown, rules?: ValidationRule[], warningRules?: ValidationRule[], successRules?: ValidationRule[]) => Promise<import('../../composables/validation/useValidation').ValidationResult> | import('../../composables/validation/useValidation').ValidationResult;
|
|
16012
15245
|
clearValidation: () => void;
|
|
16013
|
-
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult>;
|
|
15246
|
+
validateDates: (forceValidation?: boolean) => import('../../composables/validation/useValidation').ValidationResult | Promise<import('../../composables/validation/useValidation').ValidationResult | undefined>;
|
|
16014
15247
|
formatDateInput: (input: string, cursorPosition?: number) => {
|
|
16015
15248
|
formatted: string;
|
|
16016
15249
|
cursorPos: number;
|
|
@@ -16037,10 +15270,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16037
15270
|
required: boolean;
|
|
16038
15271
|
showSuccessMessages: boolean;
|
|
16039
15272
|
disableErrorHandling: boolean;
|
|
16040
|
-
hint: string;
|
|
16041
|
-
displayAsterisk: boolean;
|
|
16042
|
-
noIcon: boolean;
|
|
16043
|
-
isValidateOnBlur: boolean;
|
|
16044
15273
|
customRules: {
|
|
16045
15274
|
type: string;
|
|
16046
15275
|
options: any;
|
|
@@ -16049,6 +15278,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16049
15278
|
type: string;
|
|
16050
15279
|
options: any;
|
|
16051
15280
|
}[];
|
|
15281
|
+
hint: string;
|
|
15282
|
+
displayAsterisk: boolean;
|
|
15283
|
+
noIcon: boolean;
|
|
15284
|
+
isValidateOnBlur: boolean;
|
|
16052
15285
|
persistentHint: boolean;
|
|
16053
15286
|
format: string;
|
|
16054
15287
|
autoClamp: boolean;
|
|
@@ -16076,15 +15309,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16076
15309
|
$data: {};
|
|
16077
15310
|
$props: {
|
|
16078
15311
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
16079
|
-
readonly prependIcon?: import('
|
|
16080
|
-
readonly appendIcon?: import('
|
|
16081
|
-
readonly prependInnerIcon?: import('
|
|
16082
|
-
readonly appendInnerIcon?: import('
|
|
15312
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
15313
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
15314
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
15315
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
16083
15316
|
readonly prependTooltip?: string | undefined;
|
|
16084
15317
|
readonly appendTooltip?: string | undefined;
|
|
16085
15318
|
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
16086
|
-
readonly variantStyle?: import('
|
|
16087
|
-
readonly color?: import('
|
|
15319
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
15320
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
16088
15321
|
readonly isClearable?: boolean | undefined;
|
|
16089
15322
|
readonly showDivider?: boolean | undefined;
|
|
16090
15323
|
readonly label?: string | undefined;
|
|
@@ -16101,7 +15334,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16101
15334
|
readonly disabled?: boolean | undefined;
|
|
16102
15335
|
readonly isFlat?: boolean | undefined;
|
|
16103
15336
|
readonly isFocused?: boolean | undefined;
|
|
16104
|
-
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
16105
15337
|
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
16106
15338
|
readonly hint?: string | undefined;
|
|
16107
15339
|
readonly id?: string | undefined;
|
|
@@ -16132,22 +15364,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16132
15364
|
readonly helpText?: string | undefined;
|
|
16133
15365
|
readonly maxlength?: string | number | undefined;
|
|
16134
15366
|
readonly title?: string | false | undefined;
|
|
16135
|
-
readonly
|
|
16136
|
-
readonly
|
|
16137
|
-
readonly showSuccessMessages?: boolean | undefined;
|
|
16138
|
-
readonly disableErrorHandling?: boolean | undefined;
|
|
16139
|
-
readonly useVuetifyValidation?: boolean | undefined;
|
|
16140
|
-
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
15367
|
+
readonly hideDetails?: boolean | "auto" | undefined;
|
|
15368
|
+
readonly locales?: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales> | undefined;
|
|
16141
15369
|
readonly customRules?: ValidationRule[] | undefined;
|
|
16142
|
-
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
16143
15370
|
readonly customSuccessRules?: ValidationRule[] | undefined;
|
|
15371
|
+
readonly customWarningRules?: ValidationRule[] | undefined;
|
|
15372
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
16144
15373
|
readonly errorMessages?: string[] | null | undefined;
|
|
16145
|
-
readonly warningMessages?: string[] | null | undefined;
|
|
16146
|
-
readonly successMessages?: string[] | null | undefined;
|
|
16147
15374
|
readonly hasError?: boolean | undefined;
|
|
16148
|
-
readonly hasWarning?: boolean | undefined;
|
|
16149
15375
|
readonly hasSuccess?: boolean | undefined;
|
|
15376
|
+
readonly hasWarning?: boolean | undefined;
|
|
15377
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
16150
15378
|
readonly maxErrors?: number | undefined;
|
|
15379
|
+
readonly required?: boolean | undefined;
|
|
15380
|
+
readonly rules?: import('vuetify').ValidationRule[] | undefined;
|
|
15381
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
15382
|
+
readonly successMessages?: string[] | null | undefined;
|
|
15383
|
+
readonly useVuetifyValidation?: boolean | undefined;
|
|
15384
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
16151
15385
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
16152
15386
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
16153
15387
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -16540,7 +15774,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
16540
15774
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
16541
15775
|
modelValue?: unknown;
|
|
16542
15776
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
16543
|
-
}, 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" | "
|
|
15777
|
+
}, 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<{
|
|
16544
15778
|
$: import('vue').ComponentInternalInstance;
|
|
16545
15779
|
$data: {};
|
|
16546
15780
|
$props: Partial<{
|
|
@@ -17277,7 +16511,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17277
16511
|
} & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
17278
16512
|
modelValue?: unknown;
|
|
17279
16513
|
"onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
|
|
17280
|
-
}, 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" | "
|
|
16514
|
+
}, 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<{
|
|
17281
16515
|
$: import('vue').ComponentInternalInstance;
|
|
17282
16516
|
$data: {};
|
|
17283
16517
|
$props: Partial<{
|
|
@@ -17592,65 +16826,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17592
16826
|
$host: Element | null;
|
|
17593
16827
|
$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);
|
|
17594
16828
|
$el: any;
|
|
17595
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
17596
|
-
modelValue?: string | number | null | undefined;
|
|
17597
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17598
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17599
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17600
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17601
|
-
prependTooltip?: string;
|
|
17602
|
-
appendTooltip?: string;
|
|
17603
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
17604
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
17605
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
17606
|
-
isClearable?: boolean;
|
|
17607
|
-
showDivider?: boolean;
|
|
17608
|
-
label?: string;
|
|
17609
|
-
readonly?: boolean;
|
|
17610
|
-
isActive?: boolean;
|
|
17611
|
-
baseColor?: string;
|
|
17612
|
-
bgColor?: string;
|
|
17613
|
-
centerAffix?: boolean;
|
|
17614
|
-
counter?: string | number | boolean;
|
|
17615
|
-
counterValue?: number | ((value: any) => number);
|
|
17616
|
-
density?: "default" | "comfortable" | "compact";
|
|
17617
|
-
direction?: "horizontal" | "vertical";
|
|
17618
|
-
isDirty?: boolean;
|
|
17619
|
-
disabled?: boolean;
|
|
17620
|
-
isFlat?: boolean;
|
|
17621
|
-
isFocused?: boolean;
|
|
17622
|
-
areDetailsHidden?: boolean | "auto";
|
|
17623
|
-
areSpinButtonsHidden?: boolean;
|
|
17624
|
-
hint?: string;
|
|
17625
|
-
id?: string;
|
|
17626
|
-
loading?: string | boolean;
|
|
17627
|
-
maxWidth?: string | number;
|
|
17628
|
-
messages?: string | string[];
|
|
17629
|
-
minWidth?: string | number;
|
|
17630
|
-
name?: string;
|
|
17631
|
-
displayPersistentClear?: boolean;
|
|
17632
|
-
displayPersistentCounter?: boolean;
|
|
17633
|
-
displayPersistentHint?: boolean;
|
|
17634
|
-
displayPersistentPlaceholder?: boolean;
|
|
17635
|
-
placeholder?: string;
|
|
17636
|
-
prefix?: string;
|
|
17637
|
-
isReversed?: boolean;
|
|
17638
|
-
role?: string;
|
|
17639
|
-
rounded?: string | number | boolean;
|
|
17640
|
-
isOnSingleLine?: boolean;
|
|
17641
|
-
suffix?: string;
|
|
17642
|
-
theme?: string;
|
|
17643
|
-
isTiled?: boolean;
|
|
17644
|
-
type?: string;
|
|
17645
|
-
width?: string | number;
|
|
17646
|
-
displayAsterisk?: boolean;
|
|
17647
|
-
noIcon?: boolean;
|
|
17648
|
-
disableClickButton?: boolean;
|
|
17649
|
-
autocomplete?: string;
|
|
17650
|
-
helpText?: string;
|
|
17651
|
-
maxlength?: string | number;
|
|
17652
|
-
title?: string | false;
|
|
17653
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
16829
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
17654
16830
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
17655
16831
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
17656
16832
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -17660,7 +16836,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17660
16836
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
17661
16837
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
17662
16838
|
}>, {
|
|
17663
|
-
validateOnSubmit: (
|
|
16839
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
17664
16840
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17665
16841
|
input: (...args: any[]) => void;
|
|
17666
16842
|
blur: (...args: any[]) => void;
|
|
@@ -17676,10 +16852,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17676
16852
|
title: string | false;
|
|
17677
16853
|
width: string | number;
|
|
17678
16854
|
role: string;
|
|
17679
|
-
color: import('
|
|
16855
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
17680
16856
|
theme: string;
|
|
17681
16857
|
disabled: boolean;
|
|
17682
16858
|
placeholder: string;
|
|
16859
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
17683
16860
|
density: "default" | "comfortable" | "compact";
|
|
17684
16861
|
rounded: string | number | boolean;
|
|
17685
16862
|
maxWidth: string | number;
|
|
@@ -17700,12 +16877,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17700
16877
|
disableErrorHandling: boolean;
|
|
17701
16878
|
errorMessages: string[] | null;
|
|
17702
16879
|
maxErrors: number;
|
|
16880
|
+
hasError: boolean;
|
|
16881
|
+
hasWarning: boolean;
|
|
16882
|
+
hasSuccess: boolean;
|
|
16883
|
+
useVuetifyValidation: boolean;
|
|
16884
|
+
customRules: ValidationRule[];
|
|
16885
|
+
customWarningRules: ValidationRule[];
|
|
16886
|
+
customSuccessRules: ValidationRule[];
|
|
17703
16887
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
17704
16888
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
17705
16889
|
prependTooltip: string;
|
|
17706
16890
|
appendTooltip: string;
|
|
17707
16891
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
17708
|
-
variantStyle: import('
|
|
16892
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
17709
16893
|
isClearable: boolean;
|
|
17710
16894
|
centerAffix: boolean;
|
|
17711
16895
|
counter: string | number | boolean;
|
|
@@ -17714,7 +16898,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17714
16898
|
isDirty: boolean;
|
|
17715
16899
|
isFlat: boolean;
|
|
17716
16900
|
isFocused: boolean;
|
|
17717
|
-
areDetailsHidden: boolean | "auto";
|
|
17718
16901
|
areSpinButtonsHidden: boolean;
|
|
17719
16902
|
hint: string;
|
|
17720
16903
|
messages: string | string[];
|
|
@@ -17732,16 +16915,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17732
16915
|
autocomplete: string;
|
|
17733
16916
|
helpText: string;
|
|
17734
16917
|
maxlength: string | number;
|
|
16918
|
+
hideDetails: boolean | "auto";
|
|
17735
16919
|
isValidateOnBlur: boolean;
|
|
17736
|
-
useVuetifyValidation: boolean;
|
|
17737
|
-
customRules: ValidationRule[];
|
|
17738
|
-
customWarningRules: ValidationRule[];
|
|
17739
|
-
customSuccessRules: ValidationRule[];
|
|
17740
|
-
warningMessages: string[] | null;
|
|
17741
16920
|
successMessages: string[] | null;
|
|
17742
|
-
|
|
17743
|
-
hasWarning: boolean;
|
|
17744
|
-
hasSuccess: boolean;
|
|
16921
|
+
warningMessages: string[] | null;
|
|
17745
16922
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
17746
16923
|
beforeCreate?: (() => void) | (() => void)[];
|
|
17747
16924
|
created?: (() => void) | (() => void)[];
|
|
@@ -17768,10 +16945,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17768
16945
|
title: string | false;
|
|
17769
16946
|
width: string | number;
|
|
17770
16947
|
role: string;
|
|
17771
|
-
color: import('
|
|
16948
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
17772
16949
|
theme: string;
|
|
17773
16950
|
disabled: boolean;
|
|
17774
16951
|
placeholder: string;
|
|
16952
|
+
locales: Partial<import('../Customs/SyTextField/locales').SyTextFieldLocales>;
|
|
17775
16953
|
density: "default" | "comfortable" | "compact";
|
|
17776
16954
|
rounded: string | number | boolean;
|
|
17777
16955
|
maxWidth: string | number;
|
|
@@ -17792,12 +16970,19 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17792
16970
|
disableErrorHandling: boolean;
|
|
17793
16971
|
errorMessages: string[] | null;
|
|
17794
16972
|
maxErrors: number;
|
|
16973
|
+
hasError: boolean;
|
|
16974
|
+
hasWarning: boolean;
|
|
16975
|
+
hasSuccess: boolean;
|
|
16976
|
+
useVuetifyValidation: boolean;
|
|
16977
|
+
customRules: ValidationRule[];
|
|
16978
|
+
customWarningRules: ValidationRule[];
|
|
16979
|
+
customSuccessRules: ValidationRule[];
|
|
17795
16980
|
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
17796
16981
|
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
17797
16982
|
prependTooltip: string;
|
|
17798
16983
|
appendTooltip: string;
|
|
17799
16984
|
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
17800
|
-
variantStyle: import('
|
|
16985
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
17801
16986
|
isClearable: boolean;
|
|
17802
16987
|
centerAffix: boolean;
|
|
17803
16988
|
counter: string | number | boolean;
|
|
@@ -17806,7 +16991,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17806
16991
|
isDirty: boolean;
|
|
17807
16992
|
isFlat: boolean;
|
|
17808
16993
|
isFocused: boolean;
|
|
17809
|
-
areDetailsHidden: boolean | "auto";
|
|
17810
16994
|
areSpinButtonsHidden: boolean;
|
|
17811
16995
|
hint: string;
|
|
17812
16996
|
messages: string | string[];
|
|
@@ -17824,75 +17008,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17824
17008
|
autocomplete: string;
|
|
17825
17009
|
helpText: string;
|
|
17826
17010
|
maxlength: string | number;
|
|
17011
|
+
hideDetails: boolean | "auto";
|
|
17827
17012
|
isValidateOnBlur: boolean;
|
|
17828
|
-
useVuetifyValidation: boolean;
|
|
17829
|
-
customRules: ValidationRule[];
|
|
17830
|
-
customWarningRules: ValidationRule[];
|
|
17831
|
-
customSuccessRules: ValidationRule[];
|
|
17832
|
-
warningMessages: string[] | null;
|
|
17833
17013
|
successMessages: string[] | null;
|
|
17834
|
-
|
|
17835
|
-
|
|
17836
|
-
hasSuccess: boolean;
|
|
17837
|
-
}> & Omit<Readonly<{
|
|
17838
|
-
modelValue?: string | number | null | undefined;
|
|
17839
|
-
prependIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17840
|
-
appendIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17841
|
-
prependInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17842
|
-
appendInnerIcon?: import('../../types/vuetifyTypes').IconType;
|
|
17843
|
-
prependTooltip?: string;
|
|
17844
|
-
appendTooltip?: string;
|
|
17845
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end";
|
|
17846
|
-
variantStyle?: import('../../types/vuetifyTypes').VariantStyle;
|
|
17847
|
-
color?: import('../../types/vuetifyTypes').ColorType;
|
|
17848
|
-
isClearable?: boolean;
|
|
17849
|
-
showDivider?: boolean;
|
|
17850
|
-
label?: string;
|
|
17851
|
-
readonly?: boolean;
|
|
17852
|
-
isActive?: boolean;
|
|
17853
|
-
baseColor?: string;
|
|
17854
|
-
bgColor?: string;
|
|
17855
|
-
centerAffix?: boolean;
|
|
17856
|
-
counter?: string | number | boolean;
|
|
17857
|
-
counterValue?: number | ((value: any) => number);
|
|
17858
|
-
density?: "default" | "comfortable" | "compact";
|
|
17859
|
-
direction?: "horizontal" | "vertical";
|
|
17860
|
-
isDirty?: boolean;
|
|
17861
|
-
disabled?: boolean;
|
|
17862
|
-
isFlat?: boolean;
|
|
17863
|
-
isFocused?: boolean;
|
|
17864
|
-
areDetailsHidden?: boolean | "auto";
|
|
17865
|
-
areSpinButtonsHidden?: boolean;
|
|
17866
|
-
hint?: string;
|
|
17867
|
-
id?: string;
|
|
17868
|
-
loading?: string | boolean;
|
|
17869
|
-
maxWidth?: string | number;
|
|
17870
|
-
messages?: string | string[];
|
|
17871
|
-
minWidth?: string | number;
|
|
17872
|
-
name?: string;
|
|
17873
|
-
displayPersistentClear?: boolean;
|
|
17874
|
-
displayPersistentCounter?: boolean;
|
|
17875
|
-
displayPersistentHint?: boolean;
|
|
17876
|
-
displayPersistentPlaceholder?: boolean;
|
|
17877
|
-
placeholder?: string;
|
|
17878
|
-
prefix?: string;
|
|
17879
|
-
isReversed?: boolean;
|
|
17880
|
-
role?: string;
|
|
17881
|
-
rounded?: string | number | boolean;
|
|
17882
|
-
isOnSingleLine?: boolean;
|
|
17883
|
-
suffix?: string;
|
|
17884
|
-
theme?: string;
|
|
17885
|
-
isTiled?: boolean;
|
|
17886
|
-
type?: string;
|
|
17887
|
-
width?: string | number;
|
|
17888
|
-
displayAsterisk?: boolean;
|
|
17889
|
-
noIcon?: boolean;
|
|
17890
|
-
disableClickButton?: boolean;
|
|
17891
|
-
autocomplete?: string;
|
|
17892
|
-
helpText?: string;
|
|
17893
|
-
maxlength?: string | number;
|
|
17894
|
-
title?: string | false;
|
|
17895
|
-
} & import('../../composables/unifyValidation/useValidation').FieldValidationProps> & Readonly<{
|
|
17014
|
+
warningMessages: string[] | null;
|
|
17015
|
+
}> & Omit<Readonly<import('../Customs/SyTextField/types').SyTextFieldProps> & Readonly<{
|
|
17896
17016
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
17897
17017
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
17898
17018
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
@@ -17901,8 +17021,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
17901
17021
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
17902
17022
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
17903
17023
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
17904
|
-
}>, "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" | "
|
|
17905
|
-
validateOnSubmit: (
|
|
17024
|
+
}>, "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")> & {
|
|
17025
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
17906
17026
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
17907
17027
|
$slots: {
|
|
17908
17028
|
prepend?(_: {}): any;
|
|
@@ -18441,10 +17561,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
18441
17561
|
required: boolean;
|
|
18442
17562
|
showSuccessMessages: boolean;
|
|
18443
17563
|
disableErrorHandling: boolean;
|
|
18444
|
-
hint: string;
|
|
18445
|
-
displayAsterisk: boolean;
|
|
18446
|
-
noIcon: boolean;
|
|
18447
|
-
isValidateOnBlur: boolean;
|
|
18448
17564
|
customRules: {
|
|
18449
17565
|
type: string;
|
|
18450
17566
|
options: any;
|
|
@@ -18453,8 +17569,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
18453
17569
|
type: string;
|
|
18454
17570
|
options: any;
|
|
18455
17571
|
}[];
|
|
18456
|
-
|
|
17572
|
+
hint: string;
|
|
17573
|
+
displayAsterisk: boolean;
|
|
17574
|
+
noIcon: boolean;
|
|
18457
17575
|
hideDetails: boolean | "auto";
|
|
17576
|
+
isValidateOnBlur: boolean;
|
|
17577
|
+
persistentHint: boolean;
|
|
18458
17578
|
format: string;
|
|
18459
17579
|
autoClamp: boolean;
|
|
18460
17580
|
noCalendar: boolean;
|