@cnamts/synapse 0.0.9-alpha → 0.0.11-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/design-system-v3.js +4194 -2917
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/src/components/BackBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/BackBtn/BackBtn.d.ts +14 -0
- package/dist/src/components/BackBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/BackBtn/locales.d.ts +3 -0
- package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +1 -0
- package/dist/src/components/BackToTopBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/BackToTopBtn/BackToTopBtn.d.ts +23 -0
- package/dist/src/components/BackToTopBtn/config.d.ts +12 -0
- package/dist/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/BackToTopBtn/locales.d.ts +3 -0
- package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +1 -0
- package/dist/src/components/ChipList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/ChipList/ChipList.d.ts +47 -0
- package/dist/src/components/ChipList/config.d.ts +8 -0
- package/dist/src/components/ChipList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ChipList/locales.d.ts +6 -0
- package/dist/src/components/ChipList/tests/chipList.spec.d.ts +1 -0
- package/dist/src/components/ChipList/types.d.ts +6 -0
- package/dist/src/components/CollapsibleList/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/CollapsibleList/CollapsibleList.d.ts +7 -0
- package/dist/src/components/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +1 -0
- package/dist/src/components/CollapsibleList/types.d.ts +5 -0
- package/dist/src/components/ContextualMenu/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/ContextualMenu/ContextualMenu.d.ts +13 -0
- package/dist/src/components/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +1 -0
- package/dist/src/components/ContextualMenu/types.d.ts +5 -0
- package/dist/src/components/CookieBanner/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/CookieBanner/CookieBanner.d.ts +28 -0
- package/dist/src/components/CookieBanner/config.d.ts +40 -0
- package/dist/src/components/CookieBanner/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CookieBanner/locales.d.ts +11 -0
- package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +19 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/locales.d.ts +19 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/CookiesTable/CookiesTable.d.ts +13 -0
- package/dist/src/components/CookiesSelection/CookiesTable/headers.d.ts +10 -0
- package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/locales.d.ts +8 -0
- package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/types.d.ts +12 -0
- package/dist/src/components/CopyBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/CopyBtn/CopyBtn.d.ts +28 -0
- package/dist/src/components/CopyBtn/config.d.ts +17 -0
- package/dist/src/components/CopyBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CopyBtn/locales.d.ts +3 -0
- package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyBtnSelect/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/Customs/SyBtnSelect/SyBtnSelect.d.ts +164 -0
- package/dist/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyInputSelect/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/Customs/SyInputSelect/SyInputSelect.d.ts +36 -0
- package/dist/src/components/Customs/SyInputSelect/config.d.ts +9 -0
- package/dist/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SySelect/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyTextField/AccessibiliteItems.d.ts +70 -0
- package/dist/src/components/Customs/SyTextField/SyTextField.d.ts +160 -0
- package/dist/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyTextField/types.d.ts +3 -0
- package/dist/src/components/DataList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DataList/DataList.d.ts +134 -0
- package/dist/src/components/DataList/DataListLoading/DataListLoading.d.ts +32 -0
- package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +1 -0
- package/dist/src/components/DataList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DataList/locales.d.ts +3 -0
- package/dist/src/components/DataList/tests/DataList.spec.d.ts +1 -0
- package/dist/src/components/DataList/types.d.ts +22 -0
- package/dist/src/components/DataListGroup/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DataListGroup/DataListGroup.d.ts +56 -0
- package/dist/src/components/DataListGroup/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +1 -0
- package/dist/src/components/DataListGroup/tests/data/dataListGroupItems.d.ts +5 -0
- package/dist/src/components/DataListGroup/types.d.ts +14 -0
- package/dist/src/components/DataListItem/DataListItem.d.ts +37 -0
- package/dist/src/components/DataListItem/config.d.ts +16 -0
- package/dist/src/components/DataListItem/locales.d.ts +3 -0
- package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +1 -0
- package/dist/src/components/DataListItem/types.d.ts +22 -0
- package/dist/src/components/DatePicker/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +594 -0
- package/dist/src/components/DatePicker/DateTextInput.d.ts +462 -0
- package/dist/src/components/DatePicker/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +1 -0
- package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +1 -0
- package/dist/src/components/DialogBox/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/DialogBox/config.d.ts +25 -0
- package/dist/src/components/DialogBox/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DialogBox/locales.d.ts +5 -0
- package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +1 -0
- package/dist/src/components/DownloadBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DownloadBtn/DownloadBtn.d.ts +39 -0
- package/dist/src/components/DownloadBtn/config.d.ts +13 -0
- package/dist/src/components/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +1 -0
- package/dist/src/components/DownloadBtn/tests/data/filePromise.d.ts +5 -0
- package/dist/src/components/ErrorPage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/ErrorPage/ErrorPage.d.ts +31 -0
- package/dist/src/components/ErrorPage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ErrorPage/locales.d.ts +5 -0
- package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +1 -0
- package/dist/src/components/ExternalLinks/AccessibiliteItems.d.ts +55 -0
- package/dist/src/components/ExternalLinks/ExternalLinks.d.ts +31 -0
- package/dist/src/components/ExternalLinks/config.d.ts +32 -0
- package/dist/src/components/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ExternalLinks/locales.d.ts +4 -0
- package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +1 -0
- package/dist/src/components/FileList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/FileList/FileList.d.ts +44 -0
- package/dist/src/components/FileList/UploadItem/UploadItem.d.ts +58 -0
- package/dist/src/components/FileList/UploadItem/locales.d.ts +9 -0
- package/dist/src/components/FileList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FileList/tests/FileList.spec.d.ts +1 -0
- package/dist/src/components/FilePreview/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/FilePreview/FilePreview.d.ts +28 -0
- package/dist/src/components/FilePreview/config.d.ts +9 -0
- package/dist/src/components/FilePreview/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FilePreview/locales.d.ts +4 -0
- package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +1 -0
- package/dist/src/components/FileUpload/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/FileUpload/FileUpload.d.ts +49 -0
- package/dist/src/components/FileUpload/FileUploadContent.d.ts +20 -0
- package/dist/src/components/FileUpload/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FileUpload/locales.d.ts +9 -0
- package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +1 -0
- package/dist/src/components/FileUpload/useFileDrop.d.ts +2 -0
- package/dist/src/components/FileUpload/validateFiles.d.ts +4 -0
- package/dist/src/components/FilterInline/FilterInline.d.ts +28 -0
- package/dist/src/components/FilterInline/locales.d.ts +3 -0
- package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/A11yCompliance.d.ts +3 -0
- package/dist/src/components/FooterBar/AccessibiliteItems.d.ts +110 -0
- package/dist/src/components/FooterBar/FooterBar.d.ts +57 -0
- package/dist/src/components/FooterBar/config.d.ts +18 -0
- package/dist/src/components/FooterBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FooterBar/defaultSocialMediaLinks.d.ts +2 -0
- package/dist/src/components/FooterBar/locales.d.ts +11 -0
- package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/types.d.ts +9 -0
- package/dist/src/components/FranceConnectBtn/AccessibiliteItems.d.ts +45 -0
- package/dist/src/components/FranceConnectBtn/FranceConnectBtn.d.ts +10 -0
- package/dist/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FranceConnectBtn/locales.d.ts +4 -0
- package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/AccessibiliteItems.d.ts +91 -0
- package/dist/src/components/HeaderBar/HeaderBar.d.ts +67 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +77 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +67 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +9 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +13 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +10 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/conts.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/locals.d.ts +5 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +4 -0
- package/dist/src/components/HeaderBar/HeaderLogo/HeaderLogo.d.ts +31 -0
- package/dist/src/components/HeaderBar/HeaderLogo/locales.d.ts +3 -0
- package/dist/src/components/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +2 -0
- package/dist/src/components/HeaderBar/HeaderLogo/logos/Logo.d.ts +2 -0
- package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +14 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/locals.d.ts +5 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderBar/consts.d.ts +2 -0
- package/dist/src/components/HeaderBar/locales.d.ts +3 -0
- package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/useHeaderResponsiveMode.d.ts +3 -0
- package/dist/src/components/HeaderBar/useScrollDirection.d.ts +3 -0
- package/dist/src/components/HeaderLoading/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/HeaderLoading/HeaderLoading.d.ts +23 -0
- package/dist/src/components/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +1 -0
- package/dist/src/components/HeaderNavigationBar/HeaderNavigationBar.d.ts +84 -0
- package/dist/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +20 -0
- package/dist/src/components/HeaderNavigationBar/HorizontalNavbar/config.d.ts +16 -0
- package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +1 -0
- package/dist/src/components/HeaderNavigationBar/types.d.ts +6 -0
- package/dist/src/components/HeaderToolbar/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/HeaderToolbar/HeaderToolbar.d.ts +103 -0
- package/dist/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +1 -0
- package/dist/src/components/HeaderToolbar/types.d.ts +19 -0
- package/dist/src/components/LangBtn/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/LangBtn/LangBtn.d.ts +31 -0
- package/dist/src/components/LangBtn/config.d.ts +15 -0
- package/dist/src/components/LangBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/LangBtn/locales.d.ts +3 -0
- package/dist/src/components/LangBtn/tests/Config.spec.d.ts +1 -0
- package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +1 -0
- package/dist/src/components/LangBtn/types.d.ts +7 -0
- package/dist/src/components/Logo/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/Logo/Logo.d.ts +71 -0
- package/dist/src/components/Logo/LogoSize.d.ts +6 -0
- package/dist/src/components/Logo/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Logo/locales.d.ts +6 -0
- package/dist/src/components/Logo/logoDimensionsMapping.d.ts +3 -0
- package/dist/src/components/Logo/tests/Logo.spec.d.ts +1 -0
- package/dist/src/components/Logo/types.d.ts +7 -0
- package/dist/src/components/LogoBrandSection/AccessibiliteItems.d.ts +91 -0
- package/dist/src/components/LogoBrandSection/LogoBrandSection.d.ts +38 -0
- package/dist/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/LogoBrandSection/dividerDimensionsMapping.d.ts +14 -0
- package/dist/src/components/LogoBrandSection/locales.d.ts +14 -0
- package/dist/src/components/LogoBrandSection/secondaryLogoMapping.d.ts +18 -0
- package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +1 -0
- package/dist/src/components/LogoBrandSection/types.d.ts +1 -0
- package/dist/src/components/MaintenancePage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/MaintenancePage/MaintenancePage.d.ts +2 -0
- package/dist/src/components/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/MaintenancePage/index.d.ts +2 -0
- package/dist/src/components/MaintenancePage/locales.d.ts +4 -0
- package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +1 -0
- package/dist/src/components/NirField/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/NirField/config.d.ts +15 -0
- package/dist/src/components/NirField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NirField/locales.d.ts +12 -0
- package/dist/src/components/NirField/nirValidation.d.ts +5 -0
- package/dist/src/components/NirField/tests/NirField.spec.d.ts +1 -0
- package/dist/src/components/NotFoundPage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/NotFoundPage/NotFoundPage.d.ts +14 -0
- package/dist/src/components/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NotFoundPage/locales.d.ts +6 -0
- package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +1 -0
- package/dist/src/components/NotificationBar/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/NotificationBar/NotificationBar.d.ts +37 -0
- package/dist/src/components/NotificationBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NotificationBar/options.d.ts +13 -0
- package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +1 -0
- package/dist/src/components/NotificationBar/types.d.ts +7 -0
- package/dist/src/components/PageContainer/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/PageContainer/PageContainer.d.ts +21 -0
- package/dist/src/components/PageContainer/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +1 -0
- package/dist/src/components/PaginatedTable/AccessibiliteItems.d.ts +97 -0
- package/dist/src/components/PaginatedTable/PaginatedTable.d.ts +57 -0
- package/dist/src/components/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PaginatedTable/constants/StateEnum.d.ts +6 -0
- package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +1 -0
- package/dist/src/components/PaginatedTable/types.d.ts +26 -0
- package/dist/src/components/PasswordField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/PasswordField/PasswordField.d.ts +25 -0
- package/dist/src/components/PasswordField/config.d.ts +9 -0
- package/dist/src/components/PasswordField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PasswordField/locales.d.ts +4 -0
- package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +1 -0
- package/dist/src/components/PeriodField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/PeriodField/PeriodField.d.ts +1381 -0
- package/dist/src/components/PeriodField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +1 -0
- package/dist/src/components/PhoneField/AccessibiliteItems.d.ts +94 -0
- package/dist/src/components/PhoneField/PhoneField.d.ts +129 -0
- package/dist/src/components/PhoneField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PhoneField/indicatifs.d.ts +7 -0
- package/dist/src/components/PhoneField/locales.d.ts +4 -0
- package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +1 -0
- package/dist/src/components/RangeField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/RangeField/RangeField.d.ts +19 -0
- package/dist/src/components/RangeField/RangeSlider/RangeSlider.d.ts +286 -0
- package/dist/src/components/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +20 -0
- package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/types.d.ts +13 -0
- package/dist/src/components/RangeField/RangeSlider/useMouseSlide.d.ts +18 -0
- package/dist/src/components/RangeField/RangeSlider/useRangeSlider.d.ts +17 -0
- package/dist/src/components/RangeField/RangeSlider/useThumb.d.ts +6 -0
- package/dist/src/components/RangeField/RangeSlider/useThumbKeyboard.d.ts +12 -0
- package/dist/src/components/RangeField/RangeSlider/useTooltipsNudge.d.ts +16 -0
- package/dist/src/components/RangeField/RangeSlider/useTrack.d.ts +13 -0
- package/dist/src/components/RangeField/RangeSlider/vAnimateClick.d.ts +3 -0
- package/dist/src/components/RangeField/config.d.ts +6 -0
- package/dist/src/components/RangeField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/RangeField/locales.d.ts +4 -0
- package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/AccessibiliteItems.d.ts +80 -0
- package/dist/src/components/RatingPicker/EmotionPicker/EmotionPicker.d.ts +65 -0
- package/dist/src/components/RatingPicker/EmotionPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/NumberPicker/NumberPicker.d.ts +64 -0
- package/dist/src/components/RatingPicker/NumberPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/Rating.d.ts +25 -0
- package/dist/src/components/RatingPicker/RatingPicker.d.ts +82 -0
- package/dist/src/components/RatingPicker/StarsPicker/StarsPicker.d.ts +54 -0
- package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/RatingPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +1 -0
- package/dist/src/components/SearchListField/AccessibiliteItems.d.ts +90 -0
- package/dist/src/components/SearchListField/SearchListField.d.ts +42 -0
- package/dist/src/components/SearchListField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SearchListField/locales.d.ts +5 -0
- package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +1 -0
- package/dist/src/components/SearchListField/types.d.ts +4 -0
- package/dist/src/components/SelectBtnField/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/SelectBtnField/SelectBtnField.d.ts +33 -0
- package/dist/src/components/SelectBtnField/config.d.ts +11 -0
- package/dist/src/components/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +1 -0
- package/dist/src/components/SelectBtnField/types.d.ts +11 -0
- package/dist/src/components/SkipLink/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/SkipLink/SkipLink.d.ts +18 -0
- package/dist/src/components/SkipLink/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SkipLink/locales.d.ts +3 -0
- package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +2 -0
- package/dist/src/components/SocialMediaLinks/SocialMediaLinks.d.ts +16 -0
- package/dist/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SocialMediaLinks/locales.d.ts +3 -0
- package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/types.d.ts +5 -0
- package/dist/src/components/SubHeader/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/SubHeader/SubHeader.d.ts +40 -0
- package/dist/src/components/SubHeader/config.d.ts +11 -0
- package/dist/src/components/SubHeader/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SubHeader/locales.d.ts +3 -0
- package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +1 -0
- package/dist/src/components/SyAlert/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/SyAlert/SyAlert.d.ts +32 -0
- package/dist/src/components/SyAlert/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SyAlert/locales.d.ts +3 -0
- package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +1 -0
- package/dist/src/components/TableToolbar/AccessibiliteItems.d.ts +71 -0
- package/dist/src/components/TableToolbar/TableToolbar.d.ts +40 -0
- package/dist/src/components/TableToolbar/config.d.ts +24 -0
- package/dist/src/components/TableToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/TableToolbar/locales.d.ts +5 -0
- package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +1 -0
- package/dist/src/components/UserMenuBtn/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/UserMenuBtn/UserMenuBtn.d.ts +32 -0
- package/dist/src/components/UserMenuBtn/config.d.ts +24 -0
- package/dist/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +1 -0
- package/dist/src/components/index.d.ts +63 -0
- package/dist/src/composables/index.d.ts +3 -0
- package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +1 -0
- package/dist/src/composables/rules/useFieldValidation.d.ts +27 -0
- package/dist/src/composables/useCustomizableOptions.d.ts +13 -0
- package/dist/src/composables/useFilterable/useFilterable.d.ts +32 -0
- package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +1 -0
- package/dist/src/composables/widthable/index.d.ts +13 -0
- package/dist/src/composables/widthable/tests/widthable.spec.d.ts +1 -0
- package/dist/src/constants/icons.d.ts +3 -0
- package/dist/src/designTokens/index.d.ts +9 -0
- package/dist/src/designTokens/tokens/cnam/cnamColors.d.ts +171 -0
- package/dist/src/designTokens/tokens/cnam/cnamContextual.d.ts +58 -0
- package/dist/src/designTokens/tokens/cnam/cnamDarkTheme.d.ts +3 -0
- package/dist/src/designTokens/tokens/cnam/cnamLightTheme.d.ts +90 -0
- package/dist/src/designTokens/tokens/cnam/cnamSemantic.d.ts +87 -0
- package/dist/src/designTokens/tokens/pa/paColors.d.ts +171 -0
- package/dist/src/designTokens/tokens/pa/paContextual.d.ts +58 -0
- package/dist/src/designTokens/tokens/pa/paDarkTheme.d.ts +3 -0
- package/dist/src/designTokens/tokens/pa/paLightTheme.d.ts +120 -0
- package/dist/src/designTokens/tokens/pa/paSemantic.d.ts +87 -0
- package/dist/src/designTokens/utils/convertGaps.d.ts +5 -0
- package/dist/src/designTokens/utils/convertSemanticsToken.d.ts +12 -0
- package/dist/src/designTokens/utils/createFlattenTheme.d.ts +7 -0
- package/dist/src/designTokens/utils/index.d.ts +3 -0
- package/dist/src/directives/clickOutside.d.ts +1 -0
- package/dist/src/main.d.ts +3 -0
- package/dist/src/modules.d.ts +4 -0
- package/dist/src/services/NotificationService.d.ts +19 -0
- package/dist/src/services/index.d.ts +1 -0
- package/dist/src/stories/Accessibilite/Vuetify/VuetifyItems.d.ts +58 -0
- package/dist/src/stories/EcoConception/ecoDesignItems.d.ts +4 -0
- package/dist/src/types/vuetifyTypes.d.ts +3 -0
- package/dist/src/utils/calcHumanFileSize/index.d.ts +2 -0
- package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +1 -0
- package/dist/src/utils/convertToUnit/index.d.ts +2 -0
- package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +1 -0
- package/dist/src/utils/functions/copyToClipboard/index.d.ts +2 -0
- package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +1 -0
- package/dist/src/utils/functions/deepCopy/index.d.ts +4 -0
- package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +1 -0
- package/dist/src/utils/functions/downloadFile/index.d.ts +3 -0
- package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +1 -0
- package/dist/src/utils/functions/downloadFile/types.d.ts +1 -0
- package/dist/src/utils/functions/isEmailValid/index.d.ts +4 -0
- package/dist/src/utils/functions/isEmailValid/tests/isEmailValid.spec.d.ts +1 -0
- package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +1 -0
- package/dist/src/utils/functions/throttleDisplayFn/throttleDisplayFn.d.ts +4 -0
- package/dist/src/utils/localStorageUtility/index.d.ts +28 -0
- package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +1 -0
- package/dist/src/utils/propValidator/index.d.ts +2 -0
- package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +1 -0
- package/dist/src/utils/ruleMessage/index.d.ts +3 -0
- package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +1 -0
- package/dist/src/utils/rules/email/index.d.ts +4 -0
- package/dist/src/utils/rules/email/locales.d.ts +2 -0
- package/dist/src/utils/rules/email/tests/email.spec.d.ts +1 -0
- package/dist/src/utils/rules/exactLength/index.d.ts +4 -0
- package/dist/src/utils/rules/exactLength/locales.d.ts +2 -0
- package/dist/src/utils/rules/required/index.d.ts +4 -0
- package/dist/src/utils/rules/required/locales.d.ts +2 -0
- package/dist/src/utils/rules/required/ruleMessageHelper.d.ts +3 -0
- package/dist/src/utils/rules/required/tests/index.spec.d.ts +1 -0
- package/dist/src/utils/rules/required/tests/rulesMessageHelper.spec.d.ts +1 -0
- package/dist/src/utils/rules/types.d.ts +15 -0
- package/dist/style.css +1 -1
- package/package.json +23 -21
- package/src/assets/settings.scss +11 -0
- package/src/components/BackBtn/Usages.mdx +9 -0
- package/src/components/BackBtn/Usages.stories.ts +37 -0
- package/src/components/BackToTopBtn/Usages.mdx +9 -0
- package/src/components/BackToTopBtn/Usages.stories.ts +41 -0
- package/src/components/ChipList/Accessibilite.mdx +14 -0
- package/src/components/ChipList/Accessibilite.stories.ts +216 -0
- package/src/components/ChipList/AccessibiliteItems.ts +119 -0
- package/src/components/ChipList/ChipList.mdx +59 -0
- package/src/components/ChipList/ChipList.stories.ts +1257 -0
- package/src/components/ChipList/ChipList.vue +246 -0
- package/src/components/ChipList/config.ts +27 -0
- package/src/{stories/Guidelines/Accessibilite → components/ChipList}/constants/ExpertiseLevelEnum.ts +0 -1
- package/src/components/ChipList/locales.ts +6 -0
- package/src/components/ChipList/tests/chipList.spec.ts +300 -0
- package/src/components/ChipList/types.ts +7 -0
- package/src/components/ContextualMenu/Usages.mdx +9 -0
- package/src/components/ContextualMenu/Usages.stories.ts +38 -0
- package/src/components/CopyBtn/Usages.mdx +9 -0
- package/src/components/CopyBtn/Usages.stories.ts +41 -0
- package/src/components/Customs/SySelect/SySelect.vue +4 -1
- package/src/components/Customs/SySelect/Usages.mdx +9 -0
- package/src/components/Customs/SySelect/Usages.stories.ts +41 -0
- package/src/components/Customs/SyTextField/SyTextField.mdx +21 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +402 -231
- package/src/components/Customs/SyTextField/SyTextField.vue +217 -19
- package/src/components/Customs/SyTextField/Usages.mdx +9 -0
- package/src/components/Customs/SyTextField/Usages.stories.ts +41 -0
- package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +9 -8
- package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +23 -25
- package/src/components/DatePicker/Accessibilite.mdx +14 -0
- package/src/components/DatePicker/Accessibilite.stories.ts +191 -0
- package/src/components/DatePicker/AccessibiliteItems.ts +233 -0
- package/src/components/DatePicker/DatePicker.mdx +33 -2
- package/src/components/DatePicker/DatePicker.stories.ts +388 -19
- package/src/components/DatePicker/DatePicker.vue +136 -50
- package/src/components/DatePicker/DateTextInput.vue +567 -290
- package/src/components/DatePicker/Usages.mdx +9 -0
- package/src/components/DatePicker/Usages.stories.ts +43 -0
- package/src/components/DatePicker/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DatePicker/tests/DatePicker.spec.ts +5 -5
- package/src/components/DatePicker/tests/DateTextInput.spec.ts +282 -0
- package/src/components/DialogBox/DialogBox.mdx +1 -1
- package/src/components/DialogBox/Usages.mdx +9 -0
- package/src/components/DialogBox/Usages.stories.ts +45 -0
- package/src/components/ErrorPage/ErrorPage.mdx +1 -1
- package/src/components/ExternalLinks/Usages.mdx +9 -0
- package/src/components/ExternalLinks/Usages.stories.ts +40 -0
- package/src/components/FileList/Accessibilite.mdx +14 -0
- package/src/components/FileList/Accessibilite.stories.ts +216 -0
- package/src/components/FileList/AccessibiliteItems.ts +110 -0
- package/src/components/FileList/FileList.mdx +103 -0
- package/src/components/FileList/FileList.stories.ts +562 -0
- package/src/components/FileList/FileList.vue +78 -0
- package/src/components/FileList/UploadItem/UploadItem.vue +270 -0
- package/src/components/FileList/UploadItem/locales.ts +9 -0
- package/src/components/FileList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FileList/tests/FileList.spec.ts +176 -0
- package/src/components/FilePreview/Accessibilite.mdx +14 -0
- package/src/components/FilePreview/Accessibilite.stories.ts +216 -0
- package/src/components/FilePreview/AccessibiliteItems.ts +27 -0
- package/src/components/FilePreview/FilePreview.mdx +82 -0
- package/src/components/FilePreview/FilePreview.stories.ts +242 -0
- package/src/components/FilePreview/FilePreview.vue +68 -0
- package/src/components/FilePreview/config.ts +10 -0
- package/src/components/FilePreview/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilePreview/locales.ts +4 -0
- package/src/components/FilePreview/tests/FilePreview.spec.ts +124 -0
- package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +11 -0
- package/src/components/FileUpload/Accessibilite.mdx +14 -0
- package/src/components/FileUpload/Accessibilite.stories.ts +216 -0
- package/src/components/FileUpload/AccessibiliteItems.ts +27 -0
- package/src/components/FileUpload/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilterInline/FilterInline.mdx +91 -0
- package/src/components/FilterInline/FilterInline.stories.ts +406 -0
- package/src/components/FilterInline/FilterInline.vue +108 -0
- package/src/components/FilterInline/locales.ts +4 -0
- package/src/components/FilterInline/tests/FilterInline.spec.ts +68 -0
- package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +38 -0
- package/src/components/HeaderBar/Usages.mdx +7 -2
- package/src/components/HeaderBar/Usages.stories.ts +39 -0
- package/src/components/NirField/NirField.stories.ts +1 -1
- package/src/components/NirField/NirField.vue +10 -4
- package/src/components/NirField/Usages.mdx +9 -0
- package/src/components/NirField/Usages.stories.ts +42 -0
- package/src/components/NotificationBar/Usages.mdx +9 -0
- package/src/components/NotificationBar/Usages.stories.ts +41 -0
- package/src/components/PaginatedTable/Accessibilite.mdx +14 -0
- package/src/components/PaginatedTable/Accessibilite.stories.ts +216 -0
- package/src/components/PaginatedTable/AccessibiliteItems.ts +352 -0
- package/src/components/PaginatedTable/PaginatedTable.mdx +54 -0
- package/src/components/PaginatedTable/PaginatedTable.stories.ts +591 -0
- package/src/components/PaginatedTable/PaginatedTable.vue +243 -0
- package/src/components/PaginatedTable/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PaginatedTable/constants/StateEnum.ts +6 -0
- package/src/components/PaginatedTable/tests/PaginatedTable.spec.ts +257 -0
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +249 -0
- package/src/components/PaginatedTable/types.ts +30 -0
- package/src/components/PeriodField/Accessibilite.mdx +14 -0
- package/src/components/PeriodField/Accessibilite.stories.ts +216 -0
- package/src/components/PeriodField/AccessibiliteItems.ts +269 -0
- package/src/components/PeriodField/PeriodField.mdx +32 -0
- package/src/components/PeriodField/PeriodField.stories.ts +807 -0
- package/src/components/PeriodField/PeriodField.vue +340 -0
- package/src/components/PeriodField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PeriodField/tests/PeriodField.spec.ts +340 -0
- package/src/components/PhoneField/PhoneField.mdx +1 -1
- package/src/components/PhoneField/Usages.mdx +9 -0
- package/src/components/PhoneField/Usages.stories.ts +38 -0
- package/src/components/RangeField/Accessibilite.mdx +14 -0
- package/src/components/RangeField/Accessibilite.stories.ts +191 -0
- package/src/components/RangeField/AccessibiliteItems.ts +179 -0
- package/src/components/RangeField/RangeField.vue +0 -4
- package/src/components/RangeField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/RatingPicker/Accessibilite.mdx +14 -0
- package/src/components/RatingPicker/Accessibilite.stories.ts +191 -0
- package/src/components/RatingPicker/AccessibiliteItems.ts +208 -0
- package/src/components/RatingPicker/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SearchListField/Accessibilite.mdx +14 -0
- package/src/components/SearchListField/Accessibilite.stories.ts +191 -0
- package/src/components/SearchListField/AccessibiliteItems.ts +310 -0
- package/src/components/SearchListField/SearchListField.mdx +1 -2
- package/src/components/SearchListField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SelectBtnField/Accessibilite.mdx +14 -0
- package/src/components/SelectBtnField/Accessibilite.stories.ts +191 -0
- package/src/components/SelectBtnField/AccessibiliteItems.ts +191 -0
- package/src/components/SelectBtnField/Usages.mdx +9 -0
- package/src/components/SelectBtnField/Usages.stories.ts +40 -0
- package/src/components/SelectBtnField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SkipLink/Usages.mdx +9 -0
- package/src/components/SkipLink/Usages.stories.ts +41 -0
- package/src/components/SyAlert/SyAlert.vue +11 -9
- package/src/components/SyAlert/Usages.mdx +9 -0
- package/src/components/SyAlert/Usages.stories.ts +40 -0
- package/src/components/TableToolbar/Accessibilite.mdx +14 -0
- package/src/components/TableToolbar/Accessibilite.stories.ts +216 -0
- package/src/components/TableToolbar/AccessibiliteItems.ts +283 -0
- package/src/components/TableToolbar/TableToolbar.mdx +130 -0
- package/src/components/TableToolbar/TableToolbar.stories.ts +935 -0
- package/src/components/TableToolbar/TableToolbar.vue +168 -0
- package/src/components/TableToolbar/config.ts +24 -0
- package/src/components/TableToolbar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/TableToolbar/locales.ts +6 -0
- package/src/components/TableToolbar/tests/TableToolbar.spec.ts +166 -0
- package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +359 -0
- package/src/components/Usages/Usages.vue +95 -0
- package/src/components/index.ts +6 -0
- package/src/composables/rules/useFieldValidation.ts +101 -27
- package/src/composables/useFilterable/__snapshots__/useFilterable.spec.ts.snap +3 -0
- package/src/composables/useFilterable/useFilterable.spec.ts +635 -0
- package/src/composables/useFilterable/useFilterable.ts +196 -0
- package/src/constants/icons.ts +5 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +3 -3
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +63 -0
- package/src/stories/Accessibilite/Audit/RGAA.mdx +29 -0
- package/src/stories/Accessibilite/Introduction.mdx +27 -0
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +40 -0
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +32 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +33 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +33 -0
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +100 -0
- package/src/stories/{Guidelines → Accessibilite}/Vuetify/Vuetify.mdx +1 -1
- package/src/stories/{Guidelines → Accessibilite}/Vuetify/Vuetify.stories.ts +1 -1
- package/src/stories/Components/Components.mdx +8 -0
- package/src/stories/Components/Components.stories.ts +398 -0
- package/src/stories/Demarrer/Accueil.mdx +8 -3
- package/src/stories/Demarrer/Accueil.stories.ts +126 -16
- package/src/stories/Demarrer/Introduction.mdx +12 -0
- package/src/stories/Demarrer/Introduction.stories.ts +151 -0
- package/src/stories/{GuideDuDev → Demarrer}/components.stories.ts +2 -2
- package/src/stories/{Fondamentaux → DesignTokens}/Arrondis.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Colors.mdx +4 -4
- package/src/stories/DesignTokens/Conteneurs.mdx +18 -0
- package/src/stories/DesignTokens/Conteneurs.stories.ts +103 -0
- package/src/stories/{Fondamentaux → DesignTokens}/Elevations.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Espacements.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Introduction.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/StylesTypographiques.mdx +1 -1
- package/src/stories/{Fondamentaux/CustomisationEtThemes.mdx → DesignTokens/ThemePA.mdx} +6 -2
- package/src/stories/{Fondamentaux → DesignTokens}/Typographie.mdx +14 -1
- package/src/stories/{Guidelines/EcoConception/EcoConception.mdx → EcoConception/Introduction.mdx} +2 -2
- package/src/stories/{Guidelines/EcoConception/Econception.stories.ts → EcoConception/econception.stories.ts} +2 -2
- package/src/stories/GuideDuDev/MigrationDepuisBridge.mdx +432 -0
- package/src/stories/GuideDuDev/MigrationDepuisVue2.mdx +415 -0
- package/src/stories/GuideDuDev/UtiliserLesRules.mdx +1 -13
- package/src/stories/Templates/Templates.mdx +8 -0
- package/src/stories/Templates/Templates.stories.ts +85 -0
- package/src/utils/functions/deepCopy/index.ts +20 -0
- package/src/utils/functions/deepCopy/tests/deepCopy.spec.ts +58 -0
- package/src/utils/functions/isEmailValid/index.ts +8 -0
- package/src/utils/functions/isEmailValid/tests/isEmailValid.spec.ts +22 -0
- package/src/utils/localStorageUtility/index.ts +201 -0
- package/src/utils/localStorageUtility/tests/localStorageUtility.spec.ts +180 -0
- package/src/utils/ruleMessage/index.ts +14 -0
- package/src/utils/ruleMessage/tests/ruleMessages.spec.ts +28 -0
- package/src/utils/rules/email/index.ts +26 -0
- package/src/utils/rules/email/locales.ts +5 -0
- package/src/utils/rules/email/tests/email.spec.ts +24 -0
- package/dist/design-system-v3.d.ts +0 -2356
- package/src/stories/Fondamentaux/Conteneurs.mdx +0 -7
- package/src/stories/Guidelines/Accessibilite/Accessibilite.mdx +0 -51
- package/src/stories/Guidelines/Accessibilite/Accessibilite.stories.ts +0 -36
- package/src/stories/Guidelines/Accessibilite/AccessibiliteItems.ts +0 -706
- package/src/stories/Guidelines/Accessibilite/constants/RGAALevelEnum.ts +0 -4
- /package/src/stories/{Guidelines → Accessibilite}/Vuetify/VuetifyItems.ts +0 -0
- /package/src/stories/{GuideDuDev → Demarrer}/CreerUneIssue.mdx +0 -0
- /package/src/stories/{Guidelines/EcoConception → EcoConception}/ecoDesignItems.ts +0 -0
|
@@ -0,0 +1,1381 @@
|
|
|
1
|
+
import { RuleOptions } from '../../composables';
|
|
2
|
+
type DateInput = string | null;
|
|
3
|
+
type PeriodValue = {
|
|
4
|
+
from: DateInput;
|
|
5
|
+
to: DateInput;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_Props = {
|
|
8
|
+
modelValue?: PeriodValue;
|
|
9
|
+
placeholderFrom?: string;
|
|
10
|
+
placeholderTo?: string;
|
|
11
|
+
format?: string;
|
|
12
|
+
dateFormatReturn?: string;
|
|
13
|
+
showWeekNumber?: boolean;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
displayIcon?: boolean;
|
|
16
|
+
displayAppendIcon?: boolean;
|
|
17
|
+
isDisabled?: boolean;
|
|
18
|
+
noIcon?: boolean;
|
|
19
|
+
noCalendar?: boolean;
|
|
20
|
+
isOutlined?: boolean;
|
|
21
|
+
showSuccessMessages?: boolean;
|
|
22
|
+
customRules?: {
|
|
23
|
+
type: string;
|
|
24
|
+
options: RuleOptions;
|
|
25
|
+
}[];
|
|
26
|
+
customWarningRules?: {
|
|
27
|
+
type: string;
|
|
28
|
+
options: RuleOptions;
|
|
29
|
+
}[];
|
|
30
|
+
};
|
|
31
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
32
|
+
validateOnSubmit: () => boolean;
|
|
33
|
+
errors: import('vue').Ref<string[], string[]>;
|
|
34
|
+
successes: import('vue').Ref<string[], string[]>;
|
|
35
|
+
isValid: import('vue').ComputedRef<boolean>;
|
|
36
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
"update:modelValue": (...args: any[]) => void;
|
|
38
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
39
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}>, {
|
|
41
|
+
required: boolean;
|
|
42
|
+
modelValue: PeriodValue;
|
|
43
|
+
isDisabled: boolean;
|
|
44
|
+
noIcon: boolean;
|
|
45
|
+
customRules: {
|
|
46
|
+
type: string;
|
|
47
|
+
options: RuleOptions;
|
|
48
|
+
}[];
|
|
49
|
+
customWarningRules: {
|
|
50
|
+
type: string;
|
|
51
|
+
options: RuleOptions;
|
|
52
|
+
}[];
|
|
53
|
+
showSuccessMessages: boolean;
|
|
54
|
+
format: string;
|
|
55
|
+
dateFormatReturn: string;
|
|
56
|
+
isOutlined: boolean;
|
|
57
|
+
displayIcon: boolean;
|
|
58
|
+
displayAppendIcon: boolean;
|
|
59
|
+
showWeekNumber: boolean;
|
|
60
|
+
noCalendar: boolean;
|
|
61
|
+
placeholderFrom: string;
|
|
62
|
+
placeholderTo: string;
|
|
63
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
64
|
+
fromDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
65
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
66
|
+
placeholder?: string | undefined;
|
|
67
|
+
format?: string | undefined;
|
|
68
|
+
dateFormatReturn?: string | undefined;
|
|
69
|
+
isBirthDate?: boolean | undefined;
|
|
70
|
+
showWeekNumber?: boolean | undefined;
|
|
71
|
+
required?: boolean | undefined;
|
|
72
|
+
displayRange?: boolean | undefined;
|
|
73
|
+
displayIcon?: boolean | undefined;
|
|
74
|
+
displayAppendIcon?: boolean | undefined;
|
|
75
|
+
displayPrependIcon?: boolean | undefined;
|
|
76
|
+
customRules?: {
|
|
77
|
+
type: string;
|
|
78
|
+
options: RuleOptions;
|
|
79
|
+
}[] | undefined;
|
|
80
|
+
customWarningRules?: {
|
|
81
|
+
type: string;
|
|
82
|
+
options: RuleOptions;
|
|
83
|
+
}[] | undefined;
|
|
84
|
+
isDisabled?: boolean | undefined;
|
|
85
|
+
noIcon?: boolean | undefined;
|
|
86
|
+
noCalendar?: boolean | undefined;
|
|
87
|
+
isOutlined?: boolean | undefined;
|
|
88
|
+
isReadOnly?: boolean | undefined;
|
|
89
|
+
width?: string | undefined;
|
|
90
|
+
}> & Readonly<{
|
|
91
|
+
onBlur?: (() => any) | undefined;
|
|
92
|
+
onFocus?: (() => any) | undefined;
|
|
93
|
+
"onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
|
|
94
|
+
onClosed?: (() => any) | undefined;
|
|
95
|
+
}>, {
|
|
96
|
+
validateOnSubmit: () => any;
|
|
97
|
+
isDatePickerVisible: import('vue').Ref<boolean, boolean>;
|
|
98
|
+
selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
99
|
+
errorMessages: import('vue').Ref<string[], string[]>;
|
|
100
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
101
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
102
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
103
|
+
blur: () => any;
|
|
104
|
+
focus: () => any;
|
|
105
|
+
"update:modelValue": (value: string | [string, string] | null) => any;
|
|
106
|
+
closed: () => any;
|
|
107
|
+
}, import('vue').PublicProps, {
|
|
108
|
+
required: boolean;
|
|
109
|
+
modelValue: string | object | string[] | null;
|
|
110
|
+
isReadOnly: boolean;
|
|
111
|
+
isDisabled: boolean;
|
|
112
|
+
placeholder: string;
|
|
113
|
+
width: string;
|
|
114
|
+
noIcon: boolean;
|
|
115
|
+
customRules: {
|
|
116
|
+
type: string;
|
|
117
|
+
options: RuleOptions;
|
|
118
|
+
}[];
|
|
119
|
+
customWarningRules: {
|
|
120
|
+
type: string;
|
|
121
|
+
options: RuleOptions;
|
|
122
|
+
}[];
|
|
123
|
+
format: string;
|
|
124
|
+
dateFormatReturn: string;
|
|
125
|
+
isOutlined: boolean;
|
|
126
|
+
displayIcon: boolean;
|
|
127
|
+
displayAppendIcon: boolean;
|
|
128
|
+
displayPrependIcon: boolean;
|
|
129
|
+
isBirthDate: boolean;
|
|
130
|
+
showWeekNumber: boolean;
|
|
131
|
+
displayRange: boolean;
|
|
132
|
+
noCalendar: boolean;
|
|
133
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
134
|
+
dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
135
|
+
modelValue?: (string | null) | undefined;
|
|
136
|
+
placeholder?: string | undefined;
|
|
137
|
+
format?: string | undefined;
|
|
138
|
+
dateFormatReturn?: string | undefined;
|
|
139
|
+
label?: string | undefined;
|
|
140
|
+
required?: boolean | undefined;
|
|
141
|
+
isDisabled?: boolean | undefined;
|
|
142
|
+
isReadOnly?: boolean | undefined;
|
|
143
|
+
isOutlined?: boolean | undefined;
|
|
144
|
+
displayIcon?: boolean | undefined;
|
|
145
|
+
displayAppendIcon?: boolean | undefined;
|
|
146
|
+
noIcon?: boolean | undefined;
|
|
147
|
+
customRules?: {
|
|
148
|
+
type: string;
|
|
149
|
+
options: RuleOptions;
|
|
150
|
+
}[] | undefined;
|
|
151
|
+
customWarningRules?: {
|
|
152
|
+
type: string;
|
|
153
|
+
options: RuleOptions;
|
|
154
|
+
}[] | undefined;
|
|
155
|
+
displayPrependIcon?: boolean | undefined;
|
|
156
|
+
}> & Readonly<{
|
|
157
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
158
|
+
onBlur?: (() => any) | undefined;
|
|
159
|
+
onFocus?: (() => any) | undefined;
|
|
160
|
+
}>, {
|
|
161
|
+
validateOnSubmit: () => boolean;
|
|
162
|
+
focus: () => void;
|
|
163
|
+
blur: () => void;
|
|
164
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
165
|
+
"update:model-value": (value: string | null) => any;
|
|
166
|
+
blur: () => any;
|
|
167
|
+
focus: () => any;
|
|
168
|
+
}, import('vue').PublicProps, {
|
|
169
|
+
required: boolean;
|
|
170
|
+
modelValue: string | null;
|
|
171
|
+
label: string;
|
|
172
|
+
isReadOnly: boolean;
|
|
173
|
+
isDisabled: boolean;
|
|
174
|
+
placeholder: string;
|
|
175
|
+
noIcon: boolean;
|
|
176
|
+
customRules: {
|
|
177
|
+
type: string;
|
|
178
|
+
options: RuleOptions;
|
|
179
|
+
}[];
|
|
180
|
+
customWarningRules: {
|
|
181
|
+
type: string;
|
|
182
|
+
options: RuleOptions;
|
|
183
|
+
}[];
|
|
184
|
+
format: string;
|
|
185
|
+
dateFormatReturn: string;
|
|
186
|
+
isOutlined: boolean;
|
|
187
|
+
displayIcon: boolean;
|
|
188
|
+
displayAppendIcon: boolean;
|
|
189
|
+
displayPrependIcon: boolean;
|
|
190
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
191
|
+
inputRef: ({
|
|
192
|
+
$: import('vue').ComponentInternalInstance;
|
|
193
|
+
$data: {};
|
|
194
|
+
$props: {
|
|
195
|
+
readonly modelValue?: string | number | null | undefined;
|
|
196
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
197
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
198
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
199
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
200
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
201
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
202
|
+
readonly isClearable?: boolean | undefined;
|
|
203
|
+
readonly showDivider?: boolean | undefined;
|
|
204
|
+
readonly label?: string | undefined;
|
|
205
|
+
readonly required?: boolean | undefined;
|
|
206
|
+
readonly errorMessages?: string[] | null | undefined;
|
|
207
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
208
|
+
readonly successMessages?: string[] | null | undefined;
|
|
209
|
+
readonly isReadOnly?: boolean | undefined;
|
|
210
|
+
readonly isActive?: boolean | undefined;
|
|
211
|
+
readonly baseColor?: string | undefined;
|
|
212
|
+
readonly bgColor?: string | undefined;
|
|
213
|
+
readonly centerAffix?: boolean | undefined;
|
|
214
|
+
readonly counter?: string | number | boolean | undefined;
|
|
215
|
+
readonly counterValue?: number | ((value: any) => number) | undefined;
|
|
216
|
+
readonly density?: "default" | "comfortable" | "compact" | undefined;
|
|
217
|
+
readonly direction?: "horizontal" | "vertical" | undefined;
|
|
218
|
+
readonly isDirty?: boolean | undefined;
|
|
219
|
+
readonly isDisabled?: boolean | undefined;
|
|
220
|
+
readonly isOnError?: boolean | undefined;
|
|
221
|
+
readonly isFlat?: boolean | undefined;
|
|
222
|
+
readonly isFocused?: boolean | undefined;
|
|
223
|
+
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
224
|
+
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
225
|
+
readonly hint?: string | undefined;
|
|
226
|
+
readonly id?: string | undefined;
|
|
227
|
+
readonly loading?: string | boolean | undefined;
|
|
228
|
+
readonly maxErrors?: string | number | undefined;
|
|
229
|
+
readonly maxWidth?: string | number | undefined;
|
|
230
|
+
readonly messages?: string | string[] | undefined;
|
|
231
|
+
readonly minWidth?: string | number | undefined;
|
|
232
|
+
readonly name?: string | undefined;
|
|
233
|
+
readonly displayPersistentClear?: boolean | undefined;
|
|
234
|
+
readonly displayPersistentCounter?: boolean | undefined;
|
|
235
|
+
readonly displayPersistentHint?: boolean | undefined;
|
|
236
|
+
readonly displayPersistentPlaceholder?: boolean | undefined;
|
|
237
|
+
readonly placeholder?: string | undefined;
|
|
238
|
+
readonly prefix?: string | undefined;
|
|
239
|
+
readonly isReversed?: boolean | undefined;
|
|
240
|
+
readonly role?: string | undefined;
|
|
241
|
+
readonly rounded?: string | number | boolean | undefined;
|
|
242
|
+
readonly isOnSingleLine?: boolean | undefined;
|
|
243
|
+
readonly suffix?: string | undefined;
|
|
244
|
+
readonly theme?: string | undefined;
|
|
245
|
+
readonly isTiled?: boolean | undefined;
|
|
246
|
+
readonly type?: string | undefined;
|
|
247
|
+
readonly width?: string | number | undefined;
|
|
248
|
+
readonly displayAsterisk?: boolean | undefined;
|
|
249
|
+
readonly noIcon?: boolean | undefined;
|
|
250
|
+
readonly customRules?: {
|
|
251
|
+
type: string;
|
|
252
|
+
options: RuleOptions;
|
|
253
|
+
}[] | undefined;
|
|
254
|
+
readonly customWarningRules?: {
|
|
255
|
+
type: string;
|
|
256
|
+
options: RuleOptions;
|
|
257
|
+
}[] | undefined;
|
|
258
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
259
|
+
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
260
|
+
readonly "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
261
|
+
readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
262
|
+
readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
263
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
264
|
+
$attrs: {
|
|
265
|
+
[x: string]: unknown;
|
|
266
|
+
};
|
|
267
|
+
$refs: {
|
|
268
|
+
[x: string]: unknown;
|
|
269
|
+
};
|
|
270
|
+
$slots: Readonly<{
|
|
271
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
272
|
+
}>;
|
|
273
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
274
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
275
|
+
$host: Element | null;
|
|
276
|
+
$emit: ((event: "clear", ...args: any[]) => void) & ((event: "update:model-value", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
|
|
277
|
+
$el: any;
|
|
278
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
279
|
+
modelValue?: string | number | null | undefined;
|
|
280
|
+
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
281
|
+
appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
282
|
+
prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
283
|
+
appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
284
|
+
variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
285
|
+
color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
286
|
+
isClearable?: boolean | undefined;
|
|
287
|
+
showDivider?: boolean | undefined;
|
|
288
|
+
label?: string | undefined;
|
|
289
|
+
required?: boolean | undefined;
|
|
290
|
+
errorMessages?: string[] | null | undefined;
|
|
291
|
+
warningMessages?: string[] | null | undefined;
|
|
292
|
+
successMessages?: string[] | null | undefined;
|
|
293
|
+
isReadOnly?: boolean | undefined;
|
|
294
|
+
isActive?: boolean | undefined;
|
|
295
|
+
baseColor?: string | undefined;
|
|
296
|
+
bgColor?: string | undefined;
|
|
297
|
+
centerAffix?: boolean | undefined;
|
|
298
|
+
counter?: string | number | boolean | undefined;
|
|
299
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
300
|
+
density?: "default" | "comfortable" | "compact" | undefined;
|
|
301
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
302
|
+
isDirty?: boolean | undefined;
|
|
303
|
+
isDisabled?: boolean | undefined;
|
|
304
|
+
isOnError?: boolean | undefined;
|
|
305
|
+
isFlat?: boolean | undefined;
|
|
306
|
+
isFocused?: boolean | undefined;
|
|
307
|
+
areDetailsHidden?: boolean | "auto" | undefined;
|
|
308
|
+
areSpinButtonsHidden?: boolean | undefined;
|
|
309
|
+
hint?: string | undefined;
|
|
310
|
+
id?: string | undefined;
|
|
311
|
+
loading?: string | boolean | undefined;
|
|
312
|
+
maxErrors?: string | number | undefined;
|
|
313
|
+
maxWidth?: string | number | undefined;
|
|
314
|
+
messages?: string | string[] | undefined;
|
|
315
|
+
minWidth?: string | number | undefined;
|
|
316
|
+
name?: string | undefined;
|
|
317
|
+
displayPersistentClear?: boolean | undefined;
|
|
318
|
+
displayPersistentCounter?: boolean | undefined;
|
|
319
|
+
displayPersistentHint?: boolean | undefined;
|
|
320
|
+
displayPersistentPlaceholder?: boolean | undefined;
|
|
321
|
+
placeholder?: string | undefined;
|
|
322
|
+
prefix?: string | undefined;
|
|
323
|
+
isReversed?: boolean | undefined;
|
|
324
|
+
role?: string | undefined;
|
|
325
|
+
rounded?: string | number | boolean | undefined;
|
|
326
|
+
isOnSingleLine?: boolean | undefined;
|
|
327
|
+
suffix?: string | undefined;
|
|
328
|
+
theme?: string | undefined;
|
|
329
|
+
isTiled?: boolean | undefined;
|
|
330
|
+
type?: string | undefined;
|
|
331
|
+
width?: string | number | undefined;
|
|
332
|
+
displayAsterisk?: boolean | undefined;
|
|
333
|
+
noIcon?: boolean | undefined;
|
|
334
|
+
customRules?: {
|
|
335
|
+
type: string;
|
|
336
|
+
options: RuleOptions;
|
|
337
|
+
}[] | undefined;
|
|
338
|
+
customWarningRules?: {
|
|
339
|
+
type: string;
|
|
340
|
+
options: RuleOptions;
|
|
341
|
+
}[] | undefined;
|
|
342
|
+
showSuccessMessages?: boolean | undefined;
|
|
343
|
+
}> & Readonly<{
|
|
344
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
345
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
346
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
347
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
348
|
+
}>, {
|
|
349
|
+
appendInnerIconColor: import('vue').ComputedRef<"error" | "warning" | "success" | "black">;
|
|
350
|
+
validateOnSubmit: () => boolean;
|
|
351
|
+
errors: import('vue').Ref<string[], string[]>;
|
|
352
|
+
warnings: import('vue').Ref<string[], string[]>;
|
|
353
|
+
successes: import('vue').Ref<string[], string[]>;
|
|
354
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
355
|
+
clear: (...args: any[]) => void;
|
|
356
|
+
"update:model-value": (...args: any[]) => void;
|
|
357
|
+
"prepend-icon-click": (...args: any[]) => void;
|
|
358
|
+
"append-icon-click": (...args: any[]) => void;
|
|
359
|
+
}, string, {
|
|
360
|
+
modelValue: string | number | null;
|
|
361
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
362
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
363
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
364
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
365
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
366
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
367
|
+
isClearable: boolean;
|
|
368
|
+
label: string;
|
|
369
|
+
errorMessages: string[] | null;
|
|
370
|
+
warningMessages: string[] | null;
|
|
371
|
+
successMessages: string[] | null;
|
|
372
|
+
isReadOnly: boolean;
|
|
373
|
+
isActive: boolean;
|
|
374
|
+
baseColor: string;
|
|
375
|
+
bgColor: string;
|
|
376
|
+
centerAffix: boolean;
|
|
377
|
+
counter: string | number | boolean;
|
|
378
|
+
counterValue: number | ((value: any) => number);
|
|
379
|
+
density: "default" | "comfortable" | "compact";
|
|
380
|
+
direction: "horizontal" | "vertical";
|
|
381
|
+
isDirty: boolean;
|
|
382
|
+
isDisabled: boolean;
|
|
383
|
+
isOnError: boolean;
|
|
384
|
+
isFlat: boolean;
|
|
385
|
+
isFocused: boolean;
|
|
386
|
+
areDetailsHidden: boolean | "auto";
|
|
387
|
+
areSpinButtonsHidden: boolean;
|
|
388
|
+
hint: string;
|
|
389
|
+
id: string;
|
|
390
|
+
loading: string | boolean;
|
|
391
|
+
maxErrors: string | number;
|
|
392
|
+
maxWidth: string | number;
|
|
393
|
+
messages: string | string[];
|
|
394
|
+
minWidth: string | number;
|
|
395
|
+
name: string;
|
|
396
|
+
displayPersistentClear: boolean;
|
|
397
|
+
displayPersistentCounter: boolean;
|
|
398
|
+
displayPersistentHint: boolean;
|
|
399
|
+
displayPersistentPlaceholder: boolean;
|
|
400
|
+
placeholder: string;
|
|
401
|
+
prefix: string;
|
|
402
|
+
isReversed: boolean;
|
|
403
|
+
role: string;
|
|
404
|
+
rounded: string | number | boolean;
|
|
405
|
+
isOnSingleLine: boolean;
|
|
406
|
+
suffix: string;
|
|
407
|
+
theme: string;
|
|
408
|
+
isTiled: boolean;
|
|
409
|
+
type: string;
|
|
410
|
+
width: string | number;
|
|
411
|
+
displayAsterisk: boolean;
|
|
412
|
+
noIcon: boolean;
|
|
413
|
+
customRules: {
|
|
414
|
+
type: string;
|
|
415
|
+
options: RuleOptions;
|
|
416
|
+
}[];
|
|
417
|
+
customWarningRules: {
|
|
418
|
+
type: string;
|
|
419
|
+
options: RuleOptions;
|
|
420
|
+
}[];
|
|
421
|
+
showSuccessMessages: boolean;
|
|
422
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
423
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
424
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
425
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
426
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
427
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
428
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
429
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
430
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
431
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
432
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
433
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
434
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
435
|
+
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
436
|
+
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
437
|
+
errorCaptured?: (((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
438
|
+
};
|
|
439
|
+
$forceUpdate: () => void;
|
|
440
|
+
$nextTick: typeof import('vue').nextTick;
|
|
441
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
442
|
+
} & Readonly<{
|
|
443
|
+
modelValue: string | number | null;
|
|
444
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
445
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
446
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
447
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
448
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
449
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
450
|
+
isClearable: boolean;
|
|
451
|
+
label: string;
|
|
452
|
+
errorMessages: string[] | null;
|
|
453
|
+
warningMessages: string[] | null;
|
|
454
|
+
successMessages: string[] | null;
|
|
455
|
+
isReadOnly: boolean;
|
|
456
|
+
isActive: boolean;
|
|
457
|
+
baseColor: string;
|
|
458
|
+
bgColor: string;
|
|
459
|
+
centerAffix: boolean;
|
|
460
|
+
counter: string | number | boolean;
|
|
461
|
+
counterValue: number | ((value: any) => number);
|
|
462
|
+
density: "default" | "comfortable" | "compact";
|
|
463
|
+
direction: "horizontal" | "vertical";
|
|
464
|
+
isDirty: boolean;
|
|
465
|
+
isDisabled: boolean;
|
|
466
|
+
isOnError: boolean;
|
|
467
|
+
isFlat: boolean;
|
|
468
|
+
isFocused: boolean;
|
|
469
|
+
areDetailsHidden: boolean | "auto";
|
|
470
|
+
areSpinButtonsHidden: boolean;
|
|
471
|
+
hint: string;
|
|
472
|
+
id: string;
|
|
473
|
+
loading: string | boolean;
|
|
474
|
+
maxErrors: string | number;
|
|
475
|
+
maxWidth: string | number;
|
|
476
|
+
messages: string | string[];
|
|
477
|
+
minWidth: string | number;
|
|
478
|
+
name: string;
|
|
479
|
+
displayPersistentClear: boolean;
|
|
480
|
+
displayPersistentCounter: boolean;
|
|
481
|
+
displayPersistentHint: boolean;
|
|
482
|
+
displayPersistentPlaceholder: boolean;
|
|
483
|
+
placeholder: string;
|
|
484
|
+
prefix: string;
|
|
485
|
+
isReversed: boolean;
|
|
486
|
+
role: string;
|
|
487
|
+
rounded: string | number | boolean;
|
|
488
|
+
isOnSingleLine: boolean;
|
|
489
|
+
suffix: string;
|
|
490
|
+
theme: string;
|
|
491
|
+
isTiled: boolean;
|
|
492
|
+
type: string;
|
|
493
|
+
width: string | number;
|
|
494
|
+
displayAsterisk: boolean;
|
|
495
|
+
noIcon: boolean;
|
|
496
|
+
customRules: {
|
|
497
|
+
type: string;
|
|
498
|
+
options: RuleOptions;
|
|
499
|
+
}[];
|
|
500
|
+
customWarningRules: {
|
|
501
|
+
type: string;
|
|
502
|
+
options: RuleOptions;
|
|
503
|
+
}[];
|
|
504
|
+
showSuccessMessages: boolean;
|
|
505
|
+
}> & Omit<Readonly<{
|
|
506
|
+
modelValue?: string | number | null | undefined;
|
|
507
|
+
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
508
|
+
appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
509
|
+
prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
510
|
+
appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
511
|
+
variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
512
|
+
color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
513
|
+
isClearable?: boolean | undefined;
|
|
514
|
+
showDivider?: boolean | undefined;
|
|
515
|
+
label?: string | undefined;
|
|
516
|
+
required?: boolean | undefined;
|
|
517
|
+
errorMessages?: string[] | null | undefined;
|
|
518
|
+
warningMessages?: string[] | null | undefined;
|
|
519
|
+
successMessages?: string[] | null | undefined;
|
|
520
|
+
isReadOnly?: boolean | undefined;
|
|
521
|
+
isActive?: boolean | undefined;
|
|
522
|
+
baseColor?: string | undefined;
|
|
523
|
+
bgColor?: string | undefined;
|
|
524
|
+
centerAffix?: boolean | undefined;
|
|
525
|
+
counter?: string | number | boolean | undefined;
|
|
526
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
527
|
+
density?: "default" | "comfortable" | "compact" | undefined;
|
|
528
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
529
|
+
isDirty?: boolean | undefined;
|
|
530
|
+
isDisabled?: boolean | undefined;
|
|
531
|
+
isOnError?: boolean | undefined;
|
|
532
|
+
isFlat?: boolean | undefined;
|
|
533
|
+
isFocused?: boolean | undefined;
|
|
534
|
+
areDetailsHidden?: boolean | "auto" | undefined;
|
|
535
|
+
areSpinButtonsHidden?: boolean | undefined;
|
|
536
|
+
hint?: string | undefined;
|
|
537
|
+
id?: string | undefined;
|
|
538
|
+
loading?: string | boolean | undefined;
|
|
539
|
+
maxErrors?: string | number | undefined;
|
|
540
|
+
maxWidth?: string | number | undefined;
|
|
541
|
+
messages?: string | string[] | undefined;
|
|
542
|
+
minWidth?: string | number | undefined;
|
|
543
|
+
name?: string | undefined;
|
|
544
|
+
displayPersistentClear?: boolean | undefined;
|
|
545
|
+
displayPersistentCounter?: boolean | undefined;
|
|
546
|
+
displayPersistentHint?: boolean | undefined;
|
|
547
|
+
displayPersistentPlaceholder?: boolean | undefined;
|
|
548
|
+
placeholder?: string | undefined;
|
|
549
|
+
prefix?: string | undefined;
|
|
550
|
+
isReversed?: boolean | undefined;
|
|
551
|
+
role?: string | undefined;
|
|
552
|
+
rounded?: string | number | boolean | undefined;
|
|
553
|
+
isOnSingleLine?: boolean | undefined;
|
|
554
|
+
suffix?: string | undefined;
|
|
555
|
+
theme?: string | undefined;
|
|
556
|
+
isTiled?: boolean | undefined;
|
|
557
|
+
type?: string | undefined;
|
|
558
|
+
width?: string | number | undefined;
|
|
559
|
+
displayAsterisk?: boolean | undefined;
|
|
560
|
+
noIcon?: boolean | undefined;
|
|
561
|
+
customRules?: {
|
|
562
|
+
type: string;
|
|
563
|
+
options: RuleOptions;
|
|
564
|
+
}[] | undefined;
|
|
565
|
+
customWarningRules?: {
|
|
566
|
+
type: string;
|
|
567
|
+
options: RuleOptions;
|
|
568
|
+
}[] | undefined;
|
|
569
|
+
showSuccessMessages?: boolean | undefined;
|
|
570
|
+
}> & Readonly<{
|
|
571
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
572
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
573
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
574
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
575
|
+
}>, "appendInnerIconColor" | "validateOnSubmit" | "errors" | "warnings" | "successes" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "isReadOnly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "isDisabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "showSuccessMessages")> & import('vue').ShallowUnwrapRef<{
|
|
576
|
+
appendInnerIconColor: import('vue').ComputedRef<"error" | "warning" | "success" | "black">;
|
|
577
|
+
validateOnSubmit: () => boolean;
|
|
578
|
+
errors: import('vue').Ref<string[], string[]>;
|
|
579
|
+
warnings: import('vue').Ref<string[], string[]>;
|
|
580
|
+
successes: import('vue').Ref<string[], string[]>;
|
|
581
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
582
|
+
$slots: {
|
|
583
|
+
prepend?(_: {}): any;
|
|
584
|
+
append?(_: {}): any;
|
|
585
|
+
'prepend-inner'?(_: {}): any;
|
|
586
|
+
'append-inner'?(_: {}): any;
|
|
587
|
+
details?(_: {}): any;
|
|
588
|
+
};
|
|
589
|
+
}) | null;
|
|
590
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
591
|
+
P: {};
|
|
592
|
+
B: {};
|
|
593
|
+
D: {};
|
|
594
|
+
C: {};
|
|
595
|
+
M: {};
|
|
596
|
+
Defaults: {};
|
|
597
|
+
}, Readonly<{
|
|
598
|
+
modelValue?: (string | null) | undefined;
|
|
599
|
+
placeholder?: string | undefined;
|
|
600
|
+
format?: string | undefined;
|
|
601
|
+
dateFormatReturn?: string | undefined;
|
|
602
|
+
label?: string | undefined;
|
|
603
|
+
required?: boolean | undefined;
|
|
604
|
+
isDisabled?: boolean | undefined;
|
|
605
|
+
isReadOnly?: boolean | undefined;
|
|
606
|
+
isOutlined?: boolean | undefined;
|
|
607
|
+
displayIcon?: boolean | undefined;
|
|
608
|
+
displayAppendIcon?: boolean | undefined;
|
|
609
|
+
noIcon?: boolean | undefined;
|
|
610
|
+
customRules?: {
|
|
611
|
+
type: string;
|
|
612
|
+
options: RuleOptions;
|
|
613
|
+
}[] | undefined;
|
|
614
|
+
customWarningRules?: {
|
|
615
|
+
type: string;
|
|
616
|
+
options: RuleOptions;
|
|
617
|
+
}[] | undefined;
|
|
618
|
+
displayPrependIcon?: boolean | undefined;
|
|
619
|
+
}> & Readonly<{
|
|
620
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
621
|
+
onBlur?: (() => any) | undefined;
|
|
622
|
+
onFocus?: (() => any) | undefined;
|
|
623
|
+
}>, {
|
|
624
|
+
validateOnSubmit: () => boolean;
|
|
625
|
+
focus: () => void;
|
|
626
|
+
blur: () => void;
|
|
627
|
+
}, {}, {}, {}, {
|
|
628
|
+
required: boolean;
|
|
629
|
+
modelValue: string | null;
|
|
630
|
+
label: string;
|
|
631
|
+
isReadOnly: boolean;
|
|
632
|
+
isDisabled: boolean;
|
|
633
|
+
placeholder: string;
|
|
634
|
+
noIcon: boolean;
|
|
635
|
+
customRules: {
|
|
636
|
+
type: string;
|
|
637
|
+
options: RuleOptions;
|
|
638
|
+
}[];
|
|
639
|
+
customWarningRules: {
|
|
640
|
+
type: string;
|
|
641
|
+
options: RuleOptions;
|
|
642
|
+
}[];
|
|
643
|
+
format: string;
|
|
644
|
+
dateFormatReturn: string;
|
|
645
|
+
isOutlined: boolean;
|
|
646
|
+
displayIcon: boolean;
|
|
647
|
+
displayAppendIcon: boolean;
|
|
648
|
+
displayPrependIcon: boolean;
|
|
649
|
+
}> | null;
|
|
650
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
651
|
+
P: {};
|
|
652
|
+
B: {};
|
|
653
|
+
D: {};
|
|
654
|
+
C: {};
|
|
655
|
+
M: {};
|
|
656
|
+
Defaults: {};
|
|
657
|
+
}, Readonly<{
|
|
658
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
659
|
+
placeholder?: string | undefined;
|
|
660
|
+
format?: string | undefined;
|
|
661
|
+
dateFormatReturn?: string | undefined;
|
|
662
|
+
isBirthDate?: boolean | undefined;
|
|
663
|
+
showWeekNumber?: boolean | undefined;
|
|
664
|
+
required?: boolean | undefined;
|
|
665
|
+
displayRange?: boolean | undefined;
|
|
666
|
+
displayIcon?: boolean | undefined;
|
|
667
|
+
displayAppendIcon?: boolean | undefined;
|
|
668
|
+
displayPrependIcon?: boolean | undefined;
|
|
669
|
+
customRules?: {
|
|
670
|
+
type: string;
|
|
671
|
+
options: RuleOptions;
|
|
672
|
+
}[] | undefined;
|
|
673
|
+
customWarningRules?: {
|
|
674
|
+
type: string;
|
|
675
|
+
options: RuleOptions;
|
|
676
|
+
}[] | undefined;
|
|
677
|
+
isDisabled?: boolean | undefined;
|
|
678
|
+
noIcon?: boolean | undefined;
|
|
679
|
+
noCalendar?: boolean | undefined;
|
|
680
|
+
isOutlined?: boolean | undefined;
|
|
681
|
+
isReadOnly?: boolean | undefined;
|
|
682
|
+
width?: string | undefined;
|
|
683
|
+
}> & Readonly<{
|
|
684
|
+
onBlur?: (() => any) | undefined;
|
|
685
|
+
onFocus?: (() => any) | undefined;
|
|
686
|
+
"onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
|
|
687
|
+
onClosed?: (() => any) | undefined;
|
|
688
|
+
}>, {
|
|
689
|
+
validateOnSubmit: () => any;
|
|
690
|
+
isDatePickerVisible: import('vue').Ref<boolean, boolean>;
|
|
691
|
+
selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
692
|
+
errorMessages: import('vue').Ref<string[], string[]>;
|
|
693
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
694
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
695
|
+
}, {}, {}, {}, {
|
|
696
|
+
required: boolean;
|
|
697
|
+
modelValue: string | object | string[] | null;
|
|
698
|
+
isReadOnly: boolean;
|
|
699
|
+
isDisabled: boolean;
|
|
700
|
+
placeholder: string;
|
|
701
|
+
width: string;
|
|
702
|
+
noIcon: boolean;
|
|
703
|
+
customRules: {
|
|
704
|
+
type: string;
|
|
705
|
+
options: RuleOptions;
|
|
706
|
+
}[];
|
|
707
|
+
customWarningRules: {
|
|
708
|
+
type: string;
|
|
709
|
+
options: RuleOptions;
|
|
710
|
+
}[];
|
|
711
|
+
format: string;
|
|
712
|
+
dateFormatReturn: string;
|
|
713
|
+
isOutlined: boolean;
|
|
714
|
+
displayIcon: boolean;
|
|
715
|
+
displayAppendIcon: boolean;
|
|
716
|
+
displayPrependIcon: boolean;
|
|
717
|
+
isBirthDate: boolean;
|
|
718
|
+
showWeekNumber: boolean;
|
|
719
|
+
displayRange: boolean;
|
|
720
|
+
noCalendar: boolean;
|
|
721
|
+
}> | null;
|
|
722
|
+
toDateRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
723
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
724
|
+
placeholder?: string | undefined;
|
|
725
|
+
format?: string | undefined;
|
|
726
|
+
dateFormatReturn?: string | undefined;
|
|
727
|
+
isBirthDate?: boolean | undefined;
|
|
728
|
+
showWeekNumber?: boolean | undefined;
|
|
729
|
+
required?: boolean | undefined;
|
|
730
|
+
displayRange?: boolean | undefined;
|
|
731
|
+
displayIcon?: boolean | undefined;
|
|
732
|
+
displayAppendIcon?: boolean | undefined;
|
|
733
|
+
displayPrependIcon?: boolean | undefined;
|
|
734
|
+
customRules?: {
|
|
735
|
+
type: string;
|
|
736
|
+
options: RuleOptions;
|
|
737
|
+
}[] | undefined;
|
|
738
|
+
customWarningRules?: {
|
|
739
|
+
type: string;
|
|
740
|
+
options: RuleOptions;
|
|
741
|
+
}[] | undefined;
|
|
742
|
+
isDisabled?: boolean | undefined;
|
|
743
|
+
noIcon?: boolean | undefined;
|
|
744
|
+
noCalendar?: boolean | undefined;
|
|
745
|
+
isOutlined?: boolean | undefined;
|
|
746
|
+
isReadOnly?: boolean | undefined;
|
|
747
|
+
width?: string | undefined;
|
|
748
|
+
}> & Readonly<{
|
|
749
|
+
onBlur?: (() => any) | undefined;
|
|
750
|
+
onFocus?: (() => any) | undefined;
|
|
751
|
+
"onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
|
|
752
|
+
onClosed?: (() => any) | undefined;
|
|
753
|
+
}>, {
|
|
754
|
+
validateOnSubmit: () => any;
|
|
755
|
+
isDatePickerVisible: import('vue').Ref<boolean, boolean>;
|
|
756
|
+
selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
757
|
+
errorMessages: import('vue').Ref<string[], string[]>;
|
|
758
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
759
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
760
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
761
|
+
blur: () => any;
|
|
762
|
+
focus: () => any;
|
|
763
|
+
"update:modelValue": (value: string | [string, string] | null) => any;
|
|
764
|
+
closed: () => any;
|
|
765
|
+
}, import('vue').PublicProps, {
|
|
766
|
+
required: boolean;
|
|
767
|
+
modelValue: string | object | string[] | null;
|
|
768
|
+
isReadOnly: boolean;
|
|
769
|
+
isDisabled: boolean;
|
|
770
|
+
placeholder: string;
|
|
771
|
+
width: string;
|
|
772
|
+
noIcon: boolean;
|
|
773
|
+
customRules: {
|
|
774
|
+
type: string;
|
|
775
|
+
options: RuleOptions;
|
|
776
|
+
}[];
|
|
777
|
+
customWarningRules: {
|
|
778
|
+
type: string;
|
|
779
|
+
options: RuleOptions;
|
|
780
|
+
}[];
|
|
781
|
+
format: string;
|
|
782
|
+
dateFormatReturn: string;
|
|
783
|
+
isOutlined: boolean;
|
|
784
|
+
displayIcon: boolean;
|
|
785
|
+
displayAppendIcon: boolean;
|
|
786
|
+
displayPrependIcon: boolean;
|
|
787
|
+
isBirthDate: boolean;
|
|
788
|
+
showWeekNumber: boolean;
|
|
789
|
+
displayRange: boolean;
|
|
790
|
+
noCalendar: boolean;
|
|
791
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
792
|
+
dateTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
793
|
+
modelValue?: (string | null) | undefined;
|
|
794
|
+
placeholder?: string | undefined;
|
|
795
|
+
format?: string | undefined;
|
|
796
|
+
dateFormatReturn?: string | undefined;
|
|
797
|
+
label?: string | undefined;
|
|
798
|
+
required?: boolean | undefined;
|
|
799
|
+
isDisabled?: boolean | undefined;
|
|
800
|
+
isReadOnly?: boolean | undefined;
|
|
801
|
+
isOutlined?: boolean | undefined;
|
|
802
|
+
displayIcon?: boolean | undefined;
|
|
803
|
+
displayAppendIcon?: boolean | undefined;
|
|
804
|
+
noIcon?: boolean | undefined;
|
|
805
|
+
customRules?: {
|
|
806
|
+
type: string;
|
|
807
|
+
options: RuleOptions;
|
|
808
|
+
}[] | undefined;
|
|
809
|
+
customWarningRules?: {
|
|
810
|
+
type: string;
|
|
811
|
+
options: RuleOptions;
|
|
812
|
+
}[] | undefined;
|
|
813
|
+
displayPrependIcon?: boolean | undefined;
|
|
814
|
+
}> & Readonly<{
|
|
815
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
816
|
+
onBlur?: (() => any) | undefined;
|
|
817
|
+
onFocus?: (() => any) | undefined;
|
|
818
|
+
}>, {
|
|
819
|
+
validateOnSubmit: () => boolean;
|
|
820
|
+
focus: () => void;
|
|
821
|
+
blur: () => void;
|
|
822
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
823
|
+
"update:model-value": (value: string | null) => any;
|
|
824
|
+
blur: () => any;
|
|
825
|
+
focus: () => any;
|
|
826
|
+
}, import('vue').PublicProps, {
|
|
827
|
+
required: boolean;
|
|
828
|
+
modelValue: string | null;
|
|
829
|
+
label: string;
|
|
830
|
+
isReadOnly: boolean;
|
|
831
|
+
isDisabled: boolean;
|
|
832
|
+
placeholder: string;
|
|
833
|
+
noIcon: boolean;
|
|
834
|
+
customRules: {
|
|
835
|
+
type: string;
|
|
836
|
+
options: RuleOptions;
|
|
837
|
+
}[];
|
|
838
|
+
customWarningRules: {
|
|
839
|
+
type: string;
|
|
840
|
+
options: RuleOptions;
|
|
841
|
+
}[];
|
|
842
|
+
format: string;
|
|
843
|
+
dateFormatReturn: string;
|
|
844
|
+
isOutlined: boolean;
|
|
845
|
+
displayIcon: boolean;
|
|
846
|
+
displayAppendIcon: boolean;
|
|
847
|
+
displayPrependIcon: boolean;
|
|
848
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
849
|
+
inputRef: ({
|
|
850
|
+
$: import('vue').ComponentInternalInstance;
|
|
851
|
+
$data: {};
|
|
852
|
+
$props: {
|
|
853
|
+
readonly modelValue?: string | number | null | undefined;
|
|
854
|
+
readonly prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
855
|
+
readonly appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
856
|
+
readonly prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
857
|
+
readonly appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
858
|
+
readonly variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
859
|
+
readonly color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
860
|
+
readonly isClearable?: boolean | undefined;
|
|
861
|
+
readonly showDivider?: boolean | undefined;
|
|
862
|
+
readonly label?: string | undefined;
|
|
863
|
+
readonly required?: boolean | undefined;
|
|
864
|
+
readonly errorMessages?: string[] | null | undefined;
|
|
865
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
866
|
+
readonly successMessages?: string[] | null | undefined;
|
|
867
|
+
readonly isReadOnly?: boolean | undefined;
|
|
868
|
+
readonly isActive?: boolean | undefined;
|
|
869
|
+
readonly baseColor?: string | undefined;
|
|
870
|
+
readonly bgColor?: string | undefined;
|
|
871
|
+
readonly centerAffix?: boolean | undefined;
|
|
872
|
+
readonly counter?: string | number | boolean | undefined;
|
|
873
|
+
readonly counterValue?: number | ((value: any) => number) | undefined;
|
|
874
|
+
readonly density?: "default" | "comfortable" | "compact" | undefined;
|
|
875
|
+
readonly direction?: "horizontal" | "vertical" | undefined;
|
|
876
|
+
readonly isDirty?: boolean | undefined;
|
|
877
|
+
readonly isDisabled?: boolean | undefined;
|
|
878
|
+
readonly isOnError?: boolean | undefined;
|
|
879
|
+
readonly isFlat?: boolean | undefined;
|
|
880
|
+
readonly isFocused?: boolean | undefined;
|
|
881
|
+
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
882
|
+
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
883
|
+
readonly hint?: string | undefined;
|
|
884
|
+
readonly id?: string | undefined;
|
|
885
|
+
readonly loading?: string | boolean | undefined;
|
|
886
|
+
readonly maxErrors?: string | number | undefined;
|
|
887
|
+
readonly maxWidth?: string | number | undefined;
|
|
888
|
+
readonly messages?: string | string[] | undefined;
|
|
889
|
+
readonly minWidth?: string | number | undefined;
|
|
890
|
+
readonly name?: string | undefined;
|
|
891
|
+
readonly displayPersistentClear?: boolean | undefined;
|
|
892
|
+
readonly displayPersistentCounter?: boolean | undefined;
|
|
893
|
+
readonly displayPersistentHint?: boolean | undefined;
|
|
894
|
+
readonly displayPersistentPlaceholder?: boolean | undefined;
|
|
895
|
+
readonly placeholder?: string | undefined;
|
|
896
|
+
readonly prefix?: string | undefined;
|
|
897
|
+
readonly isReversed?: boolean | undefined;
|
|
898
|
+
readonly role?: string | undefined;
|
|
899
|
+
readonly rounded?: string | number | boolean | undefined;
|
|
900
|
+
readonly isOnSingleLine?: boolean | undefined;
|
|
901
|
+
readonly suffix?: string | undefined;
|
|
902
|
+
readonly theme?: string | undefined;
|
|
903
|
+
readonly isTiled?: boolean | undefined;
|
|
904
|
+
readonly type?: string | undefined;
|
|
905
|
+
readonly width?: string | number | undefined;
|
|
906
|
+
readonly displayAsterisk?: boolean | undefined;
|
|
907
|
+
readonly noIcon?: boolean | undefined;
|
|
908
|
+
readonly customRules?: {
|
|
909
|
+
type: string;
|
|
910
|
+
options: RuleOptions;
|
|
911
|
+
}[] | undefined;
|
|
912
|
+
readonly customWarningRules?: {
|
|
913
|
+
type: string;
|
|
914
|
+
options: RuleOptions;
|
|
915
|
+
}[] | undefined;
|
|
916
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
917
|
+
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
918
|
+
readonly "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
919
|
+
readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
920
|
+
readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
921
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
922
|
+
$attrs: {
|
|
923
|
+
[x: string]: unknown;
|
|
924
|
+
};
|
|
925
|
+
$refs: {
|
|
926
|
+
[x: string]: unknown;
|
|
927
|
+
};
|
|
928
|
+
$slots: Readonly<{
|
|
929
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
930
|
+
}>;
|
|
931
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
932
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
933
|
+
$host: Element | null;
|
|
934
|
+
$emit: ((event: "clear", ...args: any[]) => void) & ((event: "update:model-value", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
|
|
935
|
+
$el: any;
|
|
936
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
937
|
+
modelValue?: string | number | null | undefined;
|
|
938
|
+
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
939
|
+
appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
940
|
+
prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
941
|
+
appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
942
|
+
variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
943
|
+
color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
944
|
+
isClearable?: boolean | undefined;
|
|
945
|
+
showDivider?: boolean | undefined;
|
|
946
|
+
label?: string | undefined;
|
|
947
|
+
required?: boolean | undefined;
|
|
948
|
+
errorMessages?: string[] | null | undefined;
|
|
949
|
+
warningMessages?: string[] | null | undefined;
|
|
950
|
+
successMessages?: string[] | null | undefined;
|
|
951
|
+
isReadOnly?: boolean | undefined;
|
|
952
|
+
isActive?: boolean | undefined;
|
|
953
|
+
baseColor?: string | undefined;
|
|
954
|
+
bgColor?: string | undefined;
|
|
955
|
+
centerAffix?: boolean | undefined;
|
|
956
|
+
counter?: string | number | boolean | undefined;
|
|
957
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
958
|
+
density?: "default" | "comfortable" | "compact" | undefined;
|
|
959
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
960
|
+
isDirty?: boolean | undefined;
|
|
961
|
+
isDisabled?: boolean | undefined;
|
|
962
|
+
isOnError?: boolean | undefined;
|
|
963
|
+
isFlat?: boolean | undefined;
|
|
964
|
+
isFocused?: boolean | undefined;
|
|
965
|
+
areDetailsHidden?: boolean | "auto" | undefined;
|
|
966
|
+
areSpinButtonsHidden?: boolean | undefined;
|
|
967
|
+
hint?: string | undefined;
|
|
968
|
+
id?: string | undefined;
|
|
969
|
+
loading?: string | boolean | undefined;
|
|
970
|
+
maxErrors?: string | number | undefined;
|
|
971
|
+
maxWidth?: string | number | undefined;
|
|
972
|
+
messages?: string | string[] | undefined;
|
|
973
|
+
minWidth?: string | number | undefined;
|
|
974
|
+
name?: string | undefined;
|
|
975
|
+
displayPersistentClear?: boolean | undefined;
|
|
976
|
+
displayPersistentCounter?: boolean | undefined;
|
|
977
|
+
displayPersistentHint?: boolean | undefined;
|
|
978
|
+
displayPersistentPlaceholder?: boolean | undefined;
|
|
979
|
+
placeholder?: string | undefined;
|
|
980
|
+
prefix?: string | undefined;
|
|
981
|
+
isReversed?: boolean | undefined;
|
|
982
|
+
role?: string | undefined;
|
|
983
|
+
rounded?: string | number | boolean | undefined;
|
|
984
|
+
isOnSingleLine?: boolean | undefined;
|
|
985
|
+
suffix?: string | undefined;
|
|
986
|
+
theme?: string | undefined;
|
|
987
|
+
isTiled?: boolean | undefined;
|
|
988
|
+
type?: string | undefined;
|
|
989
|
+
width?: string | number | undefined;
|
|
990
|
+
displayAsterisk?: boolean | undefined;
|
|
991
|
+
noIcon?: boolean | undefined;
|
|
992
|
+
customRules?: {
|
|
993
|
+
type: string;
|
|
994
|
+
options: RuleOptions;
|
|
995
|
+
}[] | undefined;
|
|
996
|
+
customWarningRules?: {
|
|
997
|
+
type: string;
|
|
998
|
+
options: RuleOptions;
|
|
999
|
+
}[] | undefined;
|
|
1000
|
+
showSuccessMessages?: boolean | undefined;
|
|
1001
|
+
}> & Readonly<{
|
|
1002
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1003
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
1004
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1005
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1006
|
+
}>, {
|
|
1007
|
+
appendInnerIconColor: import('vue').ComputedRef<"error" | "warning" | "success" | "black">;
|
|
1008
|
+
validateOnSubmit: () => boolean;
|
|
1009
|
+
errors: import('vue').Ref<string[], string[]>;
|
|
1010
|
+
warnings: import('vue').Ref<string[], string[]>;
|
|
1011
|
+
successes: import('vue').Ref<string[], string[]>;
|
|
1012
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1013
|
+
clear: (...args: any[]) => void;
|
|
1014
|
+
"update:model-value": (...args: any[]) => void;
|
|
1015
|
+
"prepend-icon-click": (...args: any[]) => void;
|
|
1016
|
+
"append-icon-click": (...args: any[]) => void;
|
|
1017
|
+
}, string, {
|
|
1018
|
+
modelValue: string | number | null;
|
|
1019
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1020
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1021
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1022
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1023
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
1024
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
1025
|
+
isClearable: boolean;
|
|
1026
|
+
label: string;
|
|
1027
|
+
errorMessages: string[] | null;
|
|
1028
|
+
warningMessages: string[] | null;
|
|
1029
|
+
successMessages: string[] | null;
|
|
1030
|
+
isReadOnly: boolean;
|
|
1031
|
+
isActive: boolean;
|
|
1032
|
+
baseColor: string;
|
|
1033
|
+
bgColor: string;
|
|
1034
|
+
centerAffix: boolean;
|
|
1035
|
+
counter: string | number | boolean;
|
|
1036
|
+
counterValue: number | ((value: any) => number);
|
|
1037
|
+
density: "default" | "comfortable" | "compact";
|
|
1038
|
+
direction: "horizontal" | "vertical";
|
|
1039
|
+
isDirty: boolean;
|
|
1040
|
+
isDisabled: boolean;
|
|
1041
|
+
isOnError: boolean;
|
|
1042
|
+
isFlat: boolean;
|
|
1043
|
+
isFocused: boolean;
|
|
1044
|
+
areDetailsHidden: boolean | "auto";
|
|
1045
|
+
areSpinButtonsHidden: boolean;
|
|
1046
|
+
hint: string;
|
|
1047
|
+
id: string;
|
|
1048
|
+
loading: string | boolean;
|
|
1049
|
+
maxErrors: string | number;
|
|
1050
|
+
maxWidth: string | number;
|
|
1051
|
+
messages: string | string[];
|
|
1052
|
+
minWidth: string | number;
|
|
1053
|
+
name: string;
|
|
1054
|
+
displayPersistentClear: boolean;
|
|
1055
|
+
displayPersistentCounter: boolean;
|
|
1056
|
+
displayPersistentHint: boolean;
|
|
1057
|
+
displayPersistentPlaceholder: boolean;
|
|
1058
|
+
placeholder: string;
|
|
1059
|
+
prefix: string;
|
|
1060
|
+
isReversed: boolean;
|
|
1061
|
+
role: string;
|
|
1062
|
+
rounded: string | number | boolean;
|
|
1063
|
+
isOnSingleLine: boolean;
|
|
1064
|
+
suffix: string;
|
|
1065
|
+
theme: string;
|
|
1066
|
+
isTiled: boolean;
|
|
1067
|
+
type: string;
|
|
1068
|
+
width: string | number;
|
|
1069
|
+
displayAsterisk: boolean;
|
|
1070
|
+
noIcon: boolean;
|
|
1071
|
+
customRules: {
|
|
1072
|
+
type: string;
|
|
1073
|
+
options: RuleOptions;
|
|
1074
|
+
}[];
|
|
1075
|
+
customWarningRules: {
|
|
1076
|
+
type: string;
|
|
1077
|
+
options: RuleOptions;
|
|
1078
|
+
}[];
|
|
1079
|
+
showSuccessMessages: boolean;
|
|
1080
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1081
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1082
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
1083
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
1084
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1085
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
1086
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
1087
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
1088
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
1089
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
1090
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
1091
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
1092
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1093
|
+
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
1094
|
+
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
1095
|
+
errorCaptured?: (((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
1096
|
+
};
|
|
1097
|
+
$forceUpdate: () => void;
|
|
1098
|
+
$nextTick: typeof import('vue').nextTick;
|
|
1099
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
1100
|
+
} & Readonly<{
|
|
1101
|
+
modelValue: string | number | null;
|
|
1102
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1103
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1104
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1105
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
1106
|
+
variantStyle: import('../Customs/SyTextField/types').VariantStyle;
|
|
1107
|
+
color: import('../Customs/SyTextField/types').ColorType;
|
|
1108
|
+
isClearable: boolean;
|
|
1109
|
+
label: string;
|
|
1110
|
+
errorMessages: string[] | null;
|
|
1111
|
+
warningMessages: string[] | null;
|
|
1112
|
+
successMessages: string[] | null;
|
|
1113
|
+
isReadOnly: boolean;
|
|
1114
|
+
isActive: boolean;
|
|
1115
|
+
baseColor: string;
|
|
1116
|
+
bgColor: string;
|
|
1117
|
+
centerAffix: boolean;
|
|
1118
|
+
counter: string | number | boolean;
|
|
1119
|
+
counterValue: number | ((value: any) => number);
|
|
1120
|
+
density: "default" | "comfortable" | "compact";
|
|
1121
|
+
direction: "horizontal" | "vertical";
|
|
1122
|
+
isDirty: boolean;
|
|
1123
|
+
isDisabled: boolean;
|
|
1124
|
+
isOnError: boolean;
|
|
1125
|
+
isFlat: boolean;
|
|
1126
|
+
isFocused: boolean;
|
|
1127
|
+
areDetailsHidden: boolean | "auto";
|
|
1128
|
+
areSpinButtonsHidden: boolean;
|
|
1129
|
+
hint: string;
|
|
1130
|
+
id: string;
|
|
1131
|
+
loading: string | boolean;
|
|
1132
|
+
maxErrors: string | number;
|
|
1133
|
+
maxWidth: string | number;
|
|
1134
|
+
messages: string | string[];
|
|
1135
|
+
minWidth: string | number;
|
|
1136
|
+
name: string;
|
|
1137
|
+
displayPersistentClear: boolean;
|
|
1138
|
+
displayPersistentCounter: boolean;
|
|
1139
|
+
displayPersistentHint: boolean;
|
|
1140
|
+
displayPersistentPlaceholder: boolean;
|
|
1141
|
+
placeholder: string;
|
|
1142
|
+
prefix: string;
|
|
1143
|
+
isReversed: boolean;
|
|
1144
|
+
role: string;
|
|
1145
|
+
rounded: string | number | boolean;
|
|
1146
|
+
isOnSingleLine: boolean;
|
|
1147
|
+
suffix: string;
|
|
1148
|
+
theme: string;
|
|
1149
|
+
isTiled: boolean;
|
|
1150
|
+
type: string;
|
|
1151
|
+
width: string | number;
|
|
1152
|
+
displayAsterisk: boolean;
|
|
1153
|
+
noIcon: boolean;
|
|
1154
|
+
customRules: {
|
|
1155
|
+
type: string;
|
|
1156
|
+
options: RuleOptions;
|
|
1157
|
+
}[];
|
|
1158
|
+
customWarningRules: {
|
|
1159
|
+
type: string;
|
|
1160
|
+
options: RuleOptions;
|
|
1161
|
+
}[];
|
|
1162
|
+
showSuccessMessages: boolean;
|
|
1163
|
+
}> & Omit<Readonly<{
|
|
1164
|
+
modelValue?: string | number | null | undefined;
|
|
1165
|
+
prependIcon?: import('../Customs/SyTextField/types').IconType;
|
|
1166
|
+
appendIcon?: import('../Customs/SyTextField/types').IconType;
|
|
1167
|
+
prependInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
1168
|
+
appendInnerIcon?: import('../Customs/SyTextField/types').IconType;
|
|
1169
|
+
variantStyle?: import('../Customs/SyTextField/types').VariantStyle | undefined;
|
|
1170
|
+
color?: import('../Customs/SyTextField/types').ColorType | undefined;
|
|
1171
|
+
isClearable?: boolean | undefined;
|
|
1172
|
+
showDivider?: boolean | undefined;
|
|
1173
|
+
label?: string | undefined;
|
|
1174
|
+
required?: boolean | undefined;
|
|
1175
|
+
errorMessages?: string[] | null | undefined;
|
|
1176
|
+
warningMessages?: string[] | null | undefined;
|
|
1177
|
+
successMessages?: string[] | null | undefined;
|
|
1178
|
+
isReadOnly?: boolean | undefined;
|
|
1179
|
+
isActive?: boolean | undefined;
|
|
1180
|
+
baseColor?: string | undefined;
|
|
1181
|
+
bgColor?: string | undefined;
|
|
1182
|
+
centerAffix?: boolean | undefined;
|
|
1183
|
+
counter?: string | number | boolean | undefined;
|
|
1184
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
1185
|
+
density?: "default" | "comfortable" | "compact" | undefined;
|
|
1186
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
1187
|
+
isDirty?: boolean | undefined;
|
|
1188
|
+
isDisabled?: boolean | undefined;
|
|
1189
|
+
isOnError?: boolean | undefined;
|
|
1190
|
+
isFlat?: boolean | undefined;
|
|
1191
|
+
isFocused?: boolean | undefined;
|
|
1192
|
+
areDetailsHidden?: boolean | "auto" | undefined;
|
|
1193
|
+
areSpinButtonsHidden?: boolean | undefined;
|
|
1194
|
+
hint?: string | undefined;
|
|
1195
|
+
id?: string | undefined;
|
|
1196
|
+
loading?: string | boolean | undefined;
|
|
1197
|
+
maxErrors?: string | number | undefined;
|
|
1198
|
+
maxWidth?: string | number | undefined;
|
|
1199
|
+
messages?: string | string[] | undefined;
|
|
1200
|
+
minWidth?: string | number | undefined;
|
|
1201
|
+
name?: string | undefined;
|
|
1202
|
+
displayPersistentClear?: boolean | undefined;
|
|
1203
|
+
displayPersistentCounter?: boolean | undefined;
|
|
1204
|
+
displayPersistentHint?: boolean | undefined;
|
|
1205
|
+
displayPersistentPlaceholder?: boolean | undefined;
|
|
1206
|
+
placeholder?: string | undefined;
|
|
1207
|
+
prefix?: string | undefined;
|
|
1208
|
+
isReversed?: boolean | undefined;
|
|
1209
|
+
role?: string | undefined;
|
|
1210
|
+
rounded?: string | number | boolean | undefined;
|
|
1211
|
+
isOnSingleLine?: boolean | undefined;
|
|
1212
|
+
suffix?: string | undefined;
|
|
1213
|
+
theme?: string | undefined;
|
|
1214
|
+
isTiled?: boolean | undefined;
|
|
1215
|
+
type?: string | undefined;
|
|
1216
|
+
width?: string | number | undefined;
|
|
1217
|
+
displayAsterisk?: boolean | undefined;
|
|
1218
|
+
noIcon?: boolean | undefined;
|
|
1219
|
+
customRules?: {
|
|
1220
|
+
type: string;
|
|
1221
|
+
options: RuleOptions;
|
|
1222
|
+
}[] | undefined;
|
|
1223
|
+
customWarningRules?: {
|
|
1224
|
+
type: string;
|
|
1225
|
+
options: RuleOptions;
|
|
1226
|
+
}[] | undefined;
|
|
1227
|
+
showSuccessMessages?: boolean | undefined;
|
|
1228
|
+
}> & Readonly<{
|
|
1229
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1230
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
1231
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1232
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
1233
|
+
}>, "appendInnerIconColor" | "validateOnSubmit" | "errors" | "warnings" | "successes" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "isReadOnly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "isDisabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "showSuccessMessages")> & import('vue').ShallowUnwrapRef<{
|
|
1234
|
+
appendInnerIconColor: import('vue').ComputedRef<"error" | "warning" | "success" | "black">;
|
|
1235
|
+
validateOnSubmit: () => boolean;
|
|
1236
|
+
errors: import('vue').Ref<string[], string[]>;
|
|
1237
|
+
warnings: import('vue').Ref<string[], string[]>;
|
|
1238
|
+
successes: import('vue').Ref<string[], string[]>;
|
|
1239
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1240
|
+
$slots: {
|
|
1241
|
+
prepend?(_: {}): any;
|
|
1242
|
+
append?(_: {}): any;
|
|
1243
|
+
'prepend-inner'?(_: {}): any;
|
|
1244
|
+
'append-inner'?(_: {}): any;
|
|
1245
|
+
details?(_: {}): any;
|
|
1246
|
+
};
|
|
1247
|
+
}) | null;
|
|
1248
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
1249
|
+
P: {};
|
|
1250
|
+
B: {};
|
|
1251
|
+
D: {};
|
|
1252
|
+
C: {};
|
|
1253
|
+
M: {};
|
|
1254
|
+
Defaults: {};
|
|
1255
|
+
}, Readonly<{
|
|
1256
|
+
modelValue?: (string | null) | undefined;
|
|
1257
|
+
placeholder?: string | undefined;
|
|
1258
|
+
format?: string | undefined;
|
|
1259
|
+
dateFormatReturn?: string | undefined;
|
|
1260
|
+
label?: string | undefined;
|
|
1261
|
+
required?: boolean | undefined;
|
|
1262
|
+
isDisabled?: boolean | undefined;
|
|
1263
|
+
isReadOnly?: boolean | undefined;
|
|
1264
|
+
isOutlined?: boolean | undefined;
|
|
1265
|
+
displayIcon?: boolean | undefined;
|
|
1266
|
+
displayAppendIcon?: boolean | undefined;
|
|
1267
|
+
noIcon?: boolean | undefined;
|
|
1268
|
+
customRules?: {
|
|
1269
|
+
type: string;
|
|
1270
|
+
options: RuleOptions;
|
|
1271
|
+
}[] | undefined;
|
|
1272
|
+
customWarningRules?: {
|
|
1273
|
+
type: string;
|
|
1274
|
+
options: RuleOptions;
|
|
1275
|
+
}[] | undefined;
|
|
1276
|
+
displayPrependIcon?: boolean | undefined;
|
|
1277
|
+
}> & Readonly<{
|
|
1278
|
+
"onUpdate:model-value"?: ((value: string | null) => any) | undefined;
|
|
1279
|
+
onBlur?: (() => any) | undefined;
|
|
1280
|
+
onFocus?: (() => any) | undefined;
|
|
1281
|
+
}>, {
|
|
1282
|
+
validateOnSubmit: () => boolean;
|
|
1283
|
+
focus: () => void;
|
|
1284
|
+
blur: () => void;
|
|
1285
|
+
}, {}, {}, {}, {
|
|
1286
|
+
required: boolean;
|
|
1287
|
+
modelValue: string | null;
|
|
1288
|
+
label: string;
|
|
1289
|
+
isReadOnly: boolean;
|
|
1290
|
+
isDisabled: boolean;
|
|
1291
|
+
placeholder: string;
|
|
1292
|
+
noIcon: boolean;
|
|
1293
|
+
customRules: {
|
|
1294
|
+
type: string;
|
|
1295
|
+
options: RuleOptions;
|
|
1296
|
+
}[];
|
|
1297
|
+
customWarningRules: {
|
|
1298
|
+
type: string;
|
|
1299
|
+
options: RuleOptions;
|
|
1300
|
+
}[];
|
|
1301
|
+
format: string;
|
|
1302
|
+
dateFormatReturn: string;
|
|
1303
|
+
isOutlined: boolean;
|
|
1304
|
+
displayIcon: boolean;
|
|
1305
|
+
displayAppendIcon: boolean;
|
|
1306
|
+
displayPrependIcon: boolean;
|
|
1307
|
+
}> | null;
|
|
1308
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1309
|
+
P: {};
|
|
1310
|
+
B: {};
|
|
1311
|
+
D: {};
|
|
1312
|
+
C: {};
|
|
1313
|
+
M: {};
|
|
1314
|
+
Defaults: {};
|
|
1315
|
+
}, Readonly<{
|
|
1316
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
1317
|
+
placeholder?: string | undefined;
|
|
1318
|
+
format?: string | undefined;
|
|
1319
|
+
dateFormatReturn?: string | undefined;
|
|
1320
|
+
isBirthDate?: boolean | undefined;
|
|
1321
|
+
showWeekNumber?: boolean | undefined;
|
|
1322
|
+
required?: boolean | undefined;
|
|
1323
|
+
displayRange?: boolean | undefined;
|
|
1324
|
+
displayIcon?: boolean | undefined;
|
|
1325
|
+
displayAppendIcon?: boolean | undefined;
|
|
1326
|
+
displayPrependIcon?: boolean | undefined;
|
|
1327
|
+
customRules?: {
|
|
1328
|
+
type: string;
|
|
1329
|
+
options: RuleOptions;
|
|
1330
|
+
}[] | undefined;
|
|
1331
|
+
customWarningRules?: {
|
|
1332
|
+
type: string;
|
|
1333
|
+
options: RuleOptions;
|
|
1334
|
+
}[] | undefined;
|
|
1335
|
+
isDisabled?: boolean | undefined;
|
|
1336
|
+
noIcon?: boolean | undefined;
|
|
1337
|
+
noCalendar?: boolean | undefined;
|
|
1338
|
+
isOutlined?: boolean | undefined;
|
|
1339
|
+
isReadOnly?: boolean | undefined;
|
|
1340
|
+
width?: string | undefined;
|
|
1341
|
+
}> & Readonly<{
|
|
1342
|
+
onBlur?: (() => any) | undefined;
|
|
1343
|
+
onFocus?: (() => any) | undefined;
|
|
1344
|
+
"onUpdate:modelValue"?: ((value: string | [string, string] | null) => any) | undefined;
|
|
1345
|
+
onClosed?: (() => any) | undefined;
|
|
1346
|
+
}>, {
|
|
1347
|
+
validateOnSubmit: () => any;
|
|
1348
|
+
isDatePickerVisible: import('vue').Ref<boolean, boolean>;
|
|
1349
|
+
selectedDates: import('vue').Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
1350
|
+
errorMessages: import('vue').Ref<string[], string[]>;
|
|
1351
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
1352
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
1353
|
+
}, {}, {}, {}, {
|
|
1354
|
+
required: boolean;
|
|
1355
|
+
modelValue: string | object | string[] | null;
|
|
1356
|
+
isReadOnly: boolean;
|
|
1357
|
+
isDisabled: boolean;
|
|
1358
|
+
placeholder: string;
|
|
1359
|
+
width: string;
|
|
1360
|
+
noIcon: boolean;
|
|
1361
|
+
customRules: {
|
|
1362
|
+
type: string;
|
|
1363
|
+
options: RuleOptions;
|
|
1364
|
+
}[];
|
|
1365
|
+
customWarningRules: {
|
|
1366
|
+
type: string;
|
|
1367
|
+
options: RuleOptions;
|
|
1368
|
+
}[];
|
|
1369
|
+
format: string;
|
|
1370
|
+
dateFormatReturn: string;
|
|
1371
|
+
isOutlined: boolean;
|
|
1372
|
+
displayIcon: boolean;
|
|
1373
|
+
displayAppendIcon: boolean;
|
|
1374
|
+
displayPrependIcon: boolean;
|
|
1375
|
+
isBirthDate: boolean;
|
|
1376
|
+
showWeekNumber: boolean;
|
|
1377
|
+
displayRange: boolean;
|
|
1378
|
+
noCalendar: boolean;
|
|
1379
|
+
}> | null;
|
|
1380
|
+
}, HTMLDivElement>;
|
|
1381
|
+
export default _default;
|