@propelinc/citrus-ui 0.6.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -60
- package/dist/colors/colors.d.ts +31 -0
- package/dist/colors/theme.d.ts +2 -11
- package/dist/colors/util-classes.d.ts +11 -0
- package/dist/components/CAccordion.vue.d.ts +21 -0
- package/dist/components/CAccordionItem.vue.d.ts +41 -0
- package/dist/components/CAppBar.vue.d.ts +156 -0
- package/dist/components/CBadge.vue.d.ts +52 -0
- package/dist/components/CBottomSheet.vue.d.ts +226 -0
- package/dist/components/CButton/CButton.vue.d.ts +231 -0
- package/dist/components/CButton/types.d.ts +5 -0
- package/dist/components/CButtonStack.vue.d.ts +24 -0
- package/dist/components/CCard.vue.d.ts +107 -0
- package/dist/components/CCardFooter.vue.d.ts +26 -0
- package/dist/components/CCardHeader.vue.d.ts +3 -0
- package/dist/components/CCardSection.vue.d.ts +17 -0
- package/dist/components/CCheckbox.vue.d.ts +145 -0
- package/dist/components/CCol.vue.d.ts +21 -0
- package/dist/components/CDivider.vue.d.ts +17 -0
- package/dist/components/CDobField.vue.d.ts +2109 -0
- package/dist/components/CDobSelect.vue.d.ts +398 -0
- package/dist/components/CEmailField.vue.d.ts +699 -0
- package/dist/components/CExpandTransition.vue.d.ts +19 -0
- package/dist/components/CFadeTransition.vue.d.ts +3 -0
- package/dist/components/CFileInput.vue.d.ts +98 -0
- package/dist/components/CFixedPageFooter.vue.d.ts +106 -0
- package/dist/components/CForm.vue.d.ts +29 -0
- package/dist/components/CFormFieldCounter.vue.d.ts +42 -0
- package/dist/components/CIconButton.vue.d.ts +390 -0
- package/dist/components/CLabel.vue.d.ts +32 -0
- package/dist/components/CListItem.vue.d.ts +208 -0
- package/dist/components/CListItemContent.vue.d.ts +27 -0
- package/dist/components/CListItemIcon.vue.d.ts +54 -0
- package/dist/components/CLoader.vue.d.ts +73 -0
- package/dist/components/CLogo.vue.d.ts +19 -0
- package/dist/components/CMaskedTextField.vue.d.ts +2012 -0
- package/dist/components/CMenu.vue.d.ts +6 -0
- package/dist/components/CMenuItem.vue.d.ts +170 -0
- package/dist/components/CMenuLabel.vue.d.ts +3 -0
- package/dist/components/CModal.vue.d.ts +206 -0
- package/dist/components/CModalLoading.vue.d.ts +230 -0
- package/dist/components/CNotification.vue.d.ts +589 -0
- package/dist/components/CPhoneField.vue.d.ts +2088 -0
- package/dist/components/CPill.vue.d.ts +42 -0
- package/dist/components/CPillGroup.vue.d.ts +70 -0
- package/dist/components/CPopup.vue.d.ts +21 -0
- package/dist/components/CProgressLinear.vue.d.ts +61 -0
- package/dist/components/CProgressRing.vue.d.ts +103 -0
- package/dist/components/CRadio.vue.d.ts +73 -0
- package/dist/components/CRadioGroup.vue.d.ts +123 -0
- package/dist/components/CRebrand.vue.d.ts +28 -0
- package/dist/components/CRow.vue.d.ts +67 -0
- package/dist/components/CSafeArea.vue.d.ts +18 -0
- package/dist/components/CSectionHeader.vue.d.ts +28 -0
- package/dist/components/CSelect.vue.d.ts +293 -0
- package/dist/components/CSkeleton.vue.d.ts +3 -0
- package/dist/components/CSkeletonLoaderCard.vue.d.ts +21 -0
- package/dist/components/CSkeletonLoaderCircle.vue.d.ts +5 -0
- package/dist/components/CSkeletonLoaderText.vue.d.ts +44 -0
- package/dist/components/CSlideFadeTransition.vue.d.ts +58 -0
- package/dist/components/CSplitInput.vue.d.ts +2131 -0
- package/dist/components/CSquaredIcon.vue.d.ts +47 -0
- package/dist/components/CSsnField.vue.d.ts +2083 -0
- package/dist/components/CStatusDot.vue.d.ts +27 -0
- package/dist/components/CSwitch.vue.d.ts +54 -0
- package/dist/components/CSwitchListItem.vue.d.ts +392 -0
- package/dist/components/CTextArea.vue.d.ts +240 -0
- package/dist/components/CTextField.vue.d.ts +647 -0
- package/dist/components/CTextLink.vue.d.ts +55 -0
- package/dist/components/CThirdPartyLogo.vue.d.ts +128 -0
- package/dist/components/CTimeago.vue.d.ts +12 -0
- package/dist/components/CToast.vue.d.ts +458 -0
- package/dist/components/CToastsList.vue.d.ts +430 -0
- package/dist/components/CValidationMessage.vue.d.ts +45 -0
- package/dist/components/CZipcodeField.vue.d.ts +2080 -0
- package/dist/components/index.d.ts +66 -25
- package/dist/components/internal/CCloseButton.vue.d.ts +14 -0
- package/dist/composables/accessibility.d.ts +1 -0
- package/dist/composables/animation.d.ts +12 -0
- package/dist/composables/binding.d.ts +19 -0
- package/dist/composables/colors.d.ts +13 -0
- package/dist/composables/elements.d.ts +3 -0
- package/dist/composables/fields.d.ts +9 -0
- package/dist/composables/gestures.d.ts +53 -0
- package/dist/composables/i18n.d.ts +3 -0
- package/dist/composables/id.d.ts +11 -0
- package/dist/composables/input-mask.d.ts +18 -0
- package/dist/composables/router.d.ts +30 -0
- package/dist/composables/slots.d.ts +2 -0
- package/dist/composables/toast.d.ts +21 -0
- package/dist/composables/validations.d.ts +77 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.mjs +11738 -0
- package/dist/index.mjs.map +1 -0
- package/dist/plugin.d.ts +2 -2
- package/dist/services/animation.d.ts +17 -0
- package/dist/services/directives/index.d.ts +2 -0
- package/dist/services/directives/scroll-into-view.d.ts +7 -0
- package/dist/services/directives/tap-animation.d.ts +6 -0
- package/dist/services/id.d.ts +22 -0
- package/dist/services/injections/accordions.d.ts +3 -0
- package/dist/services/injections/animations.d.ts +2 -0
- package/dist/services/injections/buttons.d.ts +4 -0
- package/dist/services/injections/forms.d.ts +6 -0
- package/dist/services/injections/icon-buttons.d.ts +3 -0
- package/dist/services/injections/pills.d.ts +4 -0
- package/dist/services/injections/radio.d.ts +10 -0
- package/dist/styles/main.css +3002 -0
- package/dist/styles/utils.css +2319 -0
- package/dist/theme/icons.d.ts +35 -2
- package/dist/types/CForm.d.ts +12 -0
- package/dist/types/font-awesome.d.ts +5 -0
- package/dist/types.d.ts +12 -0
- package/index.ts +2 -0
- package/package.json +60 -45
- package/src/assets/fonts/grenette-regular.woff2 +0 -0
- package/src/assets/fonts/grenette-semibold.woff2 +0 -0
- package/src/assets/fonts/polymath.woff2 +0 -0
- package/src/assets/logos/propel/icon.svg +15 -0
- package/src/assets/logos/propel/lockup.svg +11 -0
- package/src/colors/colors.ts +173 -0
- package/src/colors/theme.ts +8 -14
- package/src/colors/util-classes.ts +49 -0
- package/src/componentResolver.js +33 -0
- package/src/components/CAccordion.vue +32 -7
- package/src/components/CAccordionItem.vue +109 -36
- package/src/components/CAppBar.vue +237 -0
- package/src/components/CBadge.vue +74 -0
- package/src/components/CBottomSheet.vue +430 -0
- package/src/components/CButton/CButton.vue +347 -0
- package/src/components/CButton/types.ts +5 -0
- package/src/components/CButtonStack.vue +36 -0
- package/src/components/CCard.vue +149 -41
- package/src/components/CCardFooter.vue +11 -27
- package/src/components/CCardHeader.vue +30 -21
- package/src/components/CCardSection.vue +23 -12
- package/src/components/CCheckbox.vue +191 -21
- package/src/components/CCol.vue +55 -0
- package/src/components/CDivider.vue +46 -0
- package/src/components/CDobField.vue +153 -0
- package/src/components/CDobSelect.vue +274 -0
- package/src/components/CEmailField.vue +61 -0
- package/src/components/CExpandTransition.vue +55 -0
- package/src/components/CFadeTransition.vue +23 -0
- package/src/components/CFileInput.vue +186 -0
- package/src/components/CFixedPageFooter.vue +76 -0
- package/src/components/CForm.vue +86 -0
- package/src/components/CFormFieldCounter.vue +40 -0
- package/src/components/CIconButton.vue +175 -59
- package/src/components/CLabel.vue +52 -0
- package/src/components/CListItem.vue +149 -45
- package/src/components/CListItemContent.vue +60 -0
- package/src/components/CListItemIcon.vue +27 -31
- package/src/components/CLoader.vue +156 -0
- package/src/components/CLogo.vue +23 -0
- package/src/components/CMaskedTextField.vue +118 -0
- package/src/components/CMenu.vue +24 -0
- package/src/components/CMenuItem.vue +106 -0
- package/src/components/CMenuLabel.vue +26 -0
- package/src/components/CModal.vue +198 -79
- package/src/components/CModalLoading.vue +27 -9
- package/src/components/CNotification.vue +86 -53
- package/src/components/CPhoneField.vue +69 -0
- package/src/components/CPill.vue +162 -0
- package/src/components/CPillGroup.vue +73 -0
- package/src/components/CPopup.vue +66 -0
- package/src/components/CProgressLinear.vue +52 -0
- package/src/components/CProgressRing.vue +126 -0
- package/src/components/CRadio.vue +138 -0
- package/src/components/CRadioGroup.vue +142 -0
- package/src/components/CRebrand.vue +28 -0
- package/src/components/CRow.vue +62 -0
- package/src/components/CSafeArea.vue +23 -0
- package/src/components/CSectionHeader.vue +50 -0
- package/src/components/CSelect.vue +223 -74
- package/src/components/CSkeleton.vue +65 -0
- package/src/components/CSkeletonLoaderCard.vue +29 -0
- package/src/components/CSkeletonLoaderCircle.vue +18 -14
- package/src/components/CSkeletonLoaderText.vue +127 -17
- package/src/components/CSlideFadeTransition.vue +100 -0
- package/src/components/CSplitInput.vue +111 -0
- package/src/components/CSquaredIcon.vue +83 -0
- package/src/components/CSsnField.vue +86 -0
- package/src/components/CStatusDot.vue +70 -0
- package/src/components/CSwitch.vue +125 -0
- package/src/components/CSwitchListItem.vue +110 -0
- package/src/components/CTextArea.vue +193 -47
- package/src/components/CTextField.vue +450 -93
- package/src/components/CTextLink.vue +48 -38
- package/src/components/CThirdPartyLogo.vue +127 -0
- package/src/components/CTimeago.vue +63 -0
- package/src/components/CToast.vue +259 -0
- package/src/components/CToastsList.vue +32 -0
- package/src/components/CValidationMessage.vue +70 -0
- package/src/components/CZipcodeField.vue +69 -0
- package/src/components/index.ts +66 -25
- package/src/components/internal/CCloseButton.vue +57 -0
- package/src/composables/accessibility.ts +29 -0
- package/src/composables/animation.ts +95 -0
- package/src/composables/binding.ts +34 -0
- package/src/composables/colors.ts +59 -0
- package/src/composables/elements.ts +72 -0
- package/src/composables/fields.ts +19 -0
- package/src/composables/gestures.ts +197 -0
- package/src/composables/i18n.ts +13 -0
- package/src/composables/id.ts +23 -0
- package/src/composables/input-mask.ts +139 -0
- package/src/composables/router.ts +64 -0
- package/src/composables/slots.ts +57 -0
- package/src/composables/toast.ts +64 -0
- package/src/composables/validations.ts +214 -0
- package/src/index.ts +7 -7
- package/src/plugin.ts +13 -6
- package/src/services/animation.ts +101 -0
- package/src/services/directives/index.ts +2 -0
- package/src/services/directives/scroll-into-view.ts +86 -0
- package/src/services/directives/tap-animation.ts +71 -0
- package/src/services/id.ts +31 -0
- package/src/services/injections/accordions.ts +4 -0
- package/src/services/injections/animations.ts +3 -0
- package/src/services/injections/buttons.ts +5 -0
- package/src/services/injections/forms.ts +8 -0
- package/src/services/injections/icon-buttons.ts +4 -0
- package/src/services/injections/pills.ts +7 -0
- package/src/services/injections/radio.ts +12 -0
- package/src/shims-vue.d.ts +6 -3
- package/src/styles/_animation.scss +19 -0
- package/src/styles/_button.scss +61 -0
- package/src/styles/_colors.scss +58 -11
- package/src/styles/_core.scss +248 -87
- package/src/styles/_form-fields.scss +68 -15
- package/src/styles/_grenette.scss +13 -0
- package/src/styles/_polymath.scss +14 -0
- package/src/styles/_reset.scss +105 -0
- package/src/styles/_shoelace.scss +46 -0
- package/src/styles/_typography.scss +40 -10
- package/src/styles/main.scss +6 -3
- package/src/styles/utils/a11y.scss +18 -0
- package/src/styles/utils/typography.scss +13 -0
- package/src/styles/utils.scss +560 -0
- package/src/styles/variables.scss +27 -15
- package/src/theme/icons.ts +16 -5
- package/src/types/CForm.ts +15 -0
- package/src/types/font-awesome.ts +6 -0
- package/src/types.ts +15 -0
- package/.browserslistrc +0 -3
- package/.eslintrc.js +0 -4
- package/.stylelintrc.js +0 -3
- package/babel.config.js +0 -3
- package/dist/citrus-ui.common.js +0 -43434
- package/dist/citrus-ui.common.js.map +0 -1
- package/dist/citrus-ui.css +0 -1
- package/dist/citrus-ui.umd.js +0 -43444
- package/dist/citrus-ui.umd.js.map +0 -1
- package/dist/citrus-ui.umd.min.js +0 -27
- package/dist/citrus-ui.umd.min.js.map +0 -1
- package/dist/demo.html +0 -10
- package/dist/fonts/Blitz-Script.85ed9abe.woff2 +0 -0
- package/dist/fonts/ObjectSans-Bold.5492f3d5.woff2 +0 -0
- package/dist/fonts/ObjectSans-BoldSlanted.29e2a87e.woff2 +0 -0
- package/dist/fonts/ObjectSans-Heavy.d0b2f035.woff2 +0 -0
- package/dist/fonts/ObjectSans-HeavySlanted.45e9c063.woff2 +0 -0
- package/dist/fonts/ObjectSans-Light.f885dec3.woff2 +0 -0
- package/dist/fonts/ObjectSans-LightSlanted.b8eb7c12.woff2 +0 -0
- package/dist/fonts/ObjectSans-Regular.e4ea0b90.woff2 +0 -0
- package/dist/fonts/ObjectSans-Slanted.57a90be9.woff2 +0 -0
- package/dist/fonts/ObjectSans-Thin.86d44227.woff2 +0 -0
- package/dist/fonts/ObjectSans-ThinSlanted.20342160.woff2 +0 -0
- package/jest.config.js +0 -9
- package/plopfile.js +0 -67
- package/project.json +0 -69
- package/src/assets/fonts/Blitz-Script.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Bold.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-BoldSlanted.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Heavy.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-HeavySlanted.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Light.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-LightSlanted.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Regular.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Slanted.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-Thin.woff2 +0 -0
- package/src/assets/fonts/ObjectSans-ThinSlanted.woff2 +0 -0
- package/src/components/CAlert.vue +0 -78
- package/src/components/CBanner.vue +0 -47
- package/src/components/CButton.vue +0 -146
- package/src/components/CListItemAction.vue +0 -29
- package/src/components/CSegmentedButton.vue +0 -47
- package/src/components/CSegmentedButtonOption.vue +0 -42
- package/src/components/helpers/FormField.vue +0 -48
- package/src/components/helpers/SelectInput.vue +0 -115
- package/src/shims-scss.d.ts +0 -4
- package/src/shims-vuetify.d.ts +0 -4
- package/src/styles/_blitz.scss +0 -8
- package/src/styles/_object-sans.scss +0 -23
- package/storybook-static/0.799c368cbe88266827ba.manager.bundle.js +0 -1
- package/storybook-static/0.a9f0a9ad.iframe.bundle.js +0 -3
- package/storybook-static/0.a9f0a9ad.iframe.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/0.a9f0a9ad.iframe.bundle.js.map +0 -1
- package/storybook-static/1.0438fd8d.iframe.bundle.js +0 -3
- package/storybook-static/1.0438fd8d.iframe.bundle.js.LICENSE.txt +0 -17
- package/storybook-static/1.0438fd8d.iframe.bundle.js.map +0 -1
- package/storybook-static/1.9ebd2fb519f6726108de.manager.bundle.js +0 -1
- package/storybook-static/10.348d8814.iframe.bundle.js +0 -3
- package/storybook-static/10.348d8814.iframe.bundle.js.LICENSE.txt +0 -30
- package/storybook-static/10.348d8814.iframe.bundle.js.map +0 -1
- package/storybook-static/10.a85ea1a67689be8e19ff.manager.bundle.js +0 -1
- package/storybook-static/11.f4e922583ae35da460f3.manager.bundle.js +0 -2
- package/storybook-static/11.f4e922583ae35da460f3.manager.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/12.1415460941f0bdcb8fa8.manager.bundle.js +0 -1
- package/storybook-static/2.75a17459.iframe.bundle.js +0 -3
- package/storybook-static/2.75a17459.iframe.bundle.js.LICENSE.txt +0 -26
- package/storybook-static/2.75a17459.iframe.bundle.js.map +0 -1
- package/storybook-static/5.f459d151315e6780c20f.manager.bundle.js +0 -2
- package/storybook-static/5.f459d151315e6780c20f.manager.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/6.3bd64d820f3745f262ff.manager.bundle.js +0 -1
- package/storybook-static/6.ce8d99b4.iframe.bundle.js +0 -1
- package/storybook-static/7.3d04765dbf3f1dcd706c.manager.bundle.js +0 -1
- package/storybook-static/7.6633a922.iframe.bundle.js +0 -3
- package/storybook-static/7.6633a922.iframe.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/7.6633a922.iframe.bundle.js.map +0 -1
- package/storybook-static/8.b541eadfcb9164835dfc.manager.bundle.js +0 -1
- package/storybook-static/8.fc5e1ebf.iframe.bundle.js +0 -1
- package/storybook-static/9.411ac8e451bbb10926c7.manager.bundle.js +0 -1
- package/storybook-static/9.724ac3ed.iframe.bundle.js +0 -3
- package/storybook-static/9.724ac3ed.iframe.bundle.js.LICENSE.txt +0 -15
- package/storybook-static/9.724ac3ed.iframe.bundle.js.map +0 -1
- package/storybook-static/css/main.95216119.css +0 -1
- package/storybook-static/css/vendors~main.02dc89bf.css +0 -1
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/fonts/Blitz-Script.85ed9abe.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Bold.5492f3d5.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-BoldSlanted.29e2a87e.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Heavy.d0b2f035.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-HeavySlanted.45e9c063.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Light.f885dec3.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-LightSlanted.b8eb7c12.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Regular.e4ea0b90.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Slanted.57a90be9.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-Thin.86d44227.woff2 +0 -0
- package/storybook-static/fonts/ObjectSans-ThinSlanted.20342160.woff2 +0 -0
- package/storybook-static/iframe.html +0 -348
- package/storybook-static/index.html +0 -51
- package/storybook-static/main.7b4aec9c4352d4bb535b.manager.bundle.js +0 -1
- package/storybook-static/main.9e8c64c7.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.91a0c7330ab317d35c4a.manager.bundle.js +0 -1
- package/storybook-static/runtime~main.e4da100f.iframe.bundle.js +0 -1
- package/storybook-static/vendors~main.6660eda6.iframe.bundle.js +0 -7
- package/storybook-static/vendors~main.6660eda6.iframe.bundle.js.LICENSE.txt +0 -80
- package/storybook-static/vendors~main.6660eda6.iframe.bundle.js.map +0 -1
- package/storybook-static/vendors~main.f7f16cebbf3aa96a4f89.manager.bundle.js +0 -2
- package/storybook-static/vendors~main.f7f16cebbf3aa96a4f89.manager.bundle.js.LICENSE.txt +0 -110
- package/tsconfig.dist.json +0 -7
- package/tsconfig.json +0 -24
- package/vue.config.js +0 -5
|
@@ -0,0 +1,2083 @@
|
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, StyleValue, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { Rules, Rule } from '../composables/validations';
|
|
3
|
+
import { IconDefinition } from '@fortawesome/pro-regular-svg-icons';
|
|
4
|
+
import { Field } from '../composables/fields';
|
|
5
|
+
import { MaskOptions, MaskTokens } from 'maska';
|
|
6
|
+
import { ButtonLevel, ButtonSize, ButtonVariant, ButtonIconPosition, ButtonShoelaceVariant } from './CButton/types';
|
|
7
|
+
import { RouteLocationRaw, RouteLocationAsRelativeGeneric, RouteLocationAsPathGeneric } from 'vue-router';
|
|
8
|
+
import { FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
9
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
10
|
+
dataTest: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
id: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: undefined;
|
|
17
|
+
};
|
|
18
|
+
label: {
|
|
19
|
+
type: PropType<string | null>;
|
|
20
|
+
default: null;
|
|
21
|
+
};
|
|
22
|
+
rules: {
|
|
23
|
+
type: PropType<Rules<string>>;
|
|
24
|
+
default: () => never[];
|
|
25
|
+
};
|
|
26
|
+
value: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
fourDigitSsn: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
}>, {
|
|
35
|
+
defaultLabel: ComputedRef<string>;
|
|
36
|
+
computedRules: ComputedRef< Rule<string>[]>;
|
|
37
|
+
faLock: IconDefinition;
|
|
38
|
+
field: Ref< Field | null, Field | null>;
|
|
39
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "input" | "focus" | "blur")[], "change" | "input" | "focus" | "blur", PublicProps, Readonly< ExtractPropTypes<{
|
|
40
|
+
dataTest: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
id: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
48
|
+
label: {
|
|
49
|
+
type: PropType<string | null>;
|
|
50
|
+
default: null;
|
|
51
|
+
};
|
|
52
|
+
rules: {
|
|
53
|
+
type: PropType<Rules<string>>;
|
|
54
|
+
default: () => never[];
|
|
55
|
+
};
|
|
56
|
+
value: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
fourDigitSsn: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
}>> & Readonly<{
|
|
65
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
66
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
68
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
}>, {
|
|
70
|
+
label: string | null;
|
|
71
|
+
id: string;
|
|
72
|
+
value: string;
|
|
73
|
+
dataTest: string;
|
|
74
|
+
rules: Rules<string>;
|
|
75
|
+
fourDigitSsn: boolean;
|
|
76
|
+
}, {}, {
|
|
77
|
+
CMaskedTextField: DefineComponent<ExtractPropTypes<{
|
|
78
|
+
counter: {
|
|
79
|
+
type: PropType<number | null>;
|
|
80
|
+
default: null;
|
|
81
|
+
};
|
|
82
|
+
dataTest: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
id: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: undefined;
|
|
89
|
+
};
|
|
90
|
+
label: {
|
|
91
|
+
type: PropType<string | null>;
|
|
92
|
+
default: null;
|
|
93
|
+
};
|
|
94
|
+
mask: {
|
|
95
|
+
type: PropType< MaskOptions["mask"] | null>;
|
|
96
|
+
required: true;
|
|
97
|
+
};
|
|
98
|
+
minlength: {
|
|
99
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
100
|
+
default: null;
|
|
101
|
+
};
|
|
102
|
+
maxlength: {
|
|
103
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
104
|
+
default: null;
|
|
105
|
+
};
|
|
106
|
+
placeholder: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
110
|
+
rules: {
|
|
111
|
+
type: PropType<Rules<string>>;
|
|
112
|
+
default: () => never[];
|
|
113
|
+
};
|
|
114
|
+
tokens: {
|
|
115
|
+
type: PropType< MaskTokens | null>;
|
|
116
|
+
default: null;
|
|
117
|
+
};
|
|
118
|
+
unmaskRules: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
value: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
}>, {
|
|
127
|
+
counterValue: ComputedRef<number>;
|
|
128
|
+
maskedMinLength: Ref<number | null, number | null>;
|
|
129
|
+
maskedMaxLength: Ref<number | null, number | null>;
|
|
130
|
+
maskedValue: Ref<string, string>;
|
|
131
|
+
textField: Ref< DefineComponent<ExtractPropTypes<{
|
|
132
|
+
id: {
|
|
133
|
+
type: PropType<string | null>;
|
|
134
|
+
default: null;
|
|
135
|
+
};
|
|
136
|
+
label: {
|
|
137
|
+
type: PropType<string | null>;
|
|
138
|
+
default: null;
|
|
139
|
+
};
|
|
140
|
+
ariaLabel: {
|
|
141
|
+
type: PropType<string | null>;
|
|
142
|
+
default: null;
|
|
143
|
+
};
|
|
144
|
+
placeholder: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
148
|
+
type: {
|
|
149
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
clearable: {
|
|
153
|
+
type: BooleanConstructor;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
size: {
|
|
157
|
+
type: PropType<"medium" | "large">;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
inputmode: {
|
|
161
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
162
|
+
default: undefined;
|
|
163
|
+
};
|
|
164
|
+
minlength: {
|
|
165
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
166
|
+
default: undefined;
|
|
167
|
+
};
|
|
168
|
+
maxlength: {
|
|
169
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
170
|
+
default: undefined;
|
|
171
|
+
};
|
|
172
|
+
disabled: {
|
|
173
|
+
type: BooleanConstructor;
|
|
174
|
+
default: boolean;
|
|
175
|
+
};
|
|
176
|
+
hideable: {
|
|
177
|
+
type: BooleanConstructor;
|
|
178
|
+
default: boolean;
|
|
179
|
+
};
|
|
180
|
+
hideLabel: {
|
|
181
|
+
type: BooleanConstructor;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
hideDetails: {
|
|
185
|
+
type: PropType<boolean | "auto">;
|
|
186
|
+
default: boolean;
|
|
187
|
+
};
|
|
188
|
+
value: {
|
|
189
|
+
type: StringConstructor;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
dataTest: {
|
|
193
|
+
type: StringConstructor;
|
|
194
|
+
default: string;
|
|
195
|
+
};
|
|
196
|
+
counter: {
|
|
197
|
+
type: PropType<number | null>;
|
|
198
|
+
default: null;
|
|
199
|
+
};
|
|
200
|
+
counterValue: {
|
|
201
|
+
type: PropType<number | (() => number | null)>;
|
|
202
|
+
default: null;
|
|
203
|
+
};
|
|
204
|
+
rules: {
|
|
205
|
+
type: PropType<Rules<string>>;
|
|
206
|
+
default: () => never[];
|
|
207
|
+
};
|
|
208
|
+
validateOnBlur: {
|
|
209
|
+
type: BooleanConstructor;
|
|
210
|
+
default: boolean;
|
|
211
|
+
};
|
|
212
|
+
required: {
|
|
213
|
+
type: BooleanConstructor;
|
|
214
|
+
default: boolean;
|
|
215
|
+
};
|
|
216
|
+
errorMessage: {
|
|
217
|
+
type: StringConstructor;
|
|
218
|
+
default: null;
|
|
219
|
+
};
|
|
220
|
+
}>, {
|
|
221
|
+
faXmark: IconDefinition;
|
|
222
|
+
faEye: IconDefinition;
|
|
223
|
+
faEyeSlash: IconDefinition;
|
|
224
|
+
fallthroughAttrs: ComputedRef<{
|
|
225
|
+
[x: string]: unknown;
|
|
226
|
+
}>;
|
|
227
|
+
hideToggleAriaLabel: ComputedRef<string>;
|
|
228
|
+
idWithFallback: Ref<string, string>;
|
|
229
|
+
input: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
230
|
+
inputHidden: Ref<boolean, boolean>;
|
|
231
|
+
inputType: ComputedRef<"number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric">;
|
|
232
|
+
inputValue: Ref<string, string>;
|
|
233
|
+
isFocused: Ref<boolean, boolean>;
|
|
234
|
+
messageSlotHasContent: Ref<boolean, boolean>;
|
|
235
|
+
prefixSlotHasContent: Ref<boolean, boolean>;
|
|
236
|
+
rootStyles: ComputedRef<StyleValue>;
|
|
237
|
+
suffixSlotHasContent: Ref<boolean, boolean>;
|
|
238
|
+
isValidationValid: Ref<boolean | null, boolean | null>;
|
|
239
|
+
validationMessage: Ref<string | null, string | null>;
|
|
240
|
+
clearInput: () => void;
|
|
241
|
+
onBlur: (event: Event) => void;
|
|
242
|
+
onChange: (event: Event) => void;
|
|
243
|
+
onFocus: (event: Event) => void;
|
|
244
|
+
onInput: (event: Event) => void;
|
|
245
|
+
toggleHidden: () => void;
|
|
246
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide")[], "change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide", PublicProps, Readonly< ExtractPropTypes<{
|
|
247
|
+
id: {
|
|
248
|
+
type: PropType<string | null>;
|
|
249
|
+
default: null;
|
|
250
|
+
};
|
|
251
|
+
label: {
|
|
252
|
+
type: PropType<string | null>;
|
|
253
|
+
default: null;
|
|
254
|
+
};
|
|
255
|
+
ariaLabel: {
|
|
256
|
+
type: PropType<string | null>;
|
|
257
|
+
default: null;
|
|
258
|
+
};
|
|
259
|
+
placeholder: {
|
|
260
|
+
type: StringConstructor;
|
|
261
|
+
default: string;
|
|
262
|
+
};
|
|
263
|
+
type: {
|
|
264
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
265
|
+
default: string;
|
|
266
|
+
};
|
|
267
|
+
clearable: {
|
|
268
|
+
type: BooleanConstructor;
|
|
269
|
+
default: boolean;
|
|
270
|
+
};
|
|
271
|
+
size: {
|
|
272
|
+
type: PropType<"medium" | "large">;
|
|
273
|
+
default: string;
|
|
274
|
+
};
|
|
275
|
+
inputmode: {
|
|
276
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
277
|
+
default: undefined;
|
|
278
|
+
};
|
|
279
|
+
minlength: {
|
|
280
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
281
|
+
default: undefined;
|
|
282
|
+
};
|
|
283
|
+
maxlength: {
|
|
284
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
285
|
+
default: undefined;
|
|
286
|
+
};
|
|
287
|
+
disabled: {
|
|
288
|
+
type: BooleanConstructor;
|
|
289
|
+
default: boolean;
|
|
290
|
+
};
|
|
291
|
+
hideable: {
|
|
292
|
+
type: BooleanConstructor;
|
|
293
|
+
default: boolean;
|
|
294
|
+
};
|
|
295
|
+
hideLabel: {
|
|
296
|
+
type: BooleanConstructor;
|
|
297
|
+
default: boolean;
|
|
298
|
+
};
|
|
299
|
+
hideDetails: {
|
|
300
|
+
type: PropType<boolean | "auto">;
|
|
301
|
+
default: boolean;
|
|
302
|
+
};
|
|
303
|
+
value: {
|
|
304
|
+
type: StringConstructor;
|
|
305
|
+
default: string;
|
|
306
|
+
};
|
|
307
|
+
dataTest: {
|
|
308
|
+
type: StringConstructor;
|
|
309
|
+
default: string;
|
|
310
|
+
};
|
|
311
|
+
counter: {
|
|
312
|
+
type: PropType<number | null>;
|
|
313
|
+
default: null;
|
|
314
|
+
};
|
|
315
|
+
counterValue: {
|
|
316
|
+
type: PropType<number | (() => number | null)>;
|
|
317
|
+
default: null;
|
|
318
|
+
};
|
|
319
|
+
rules: {
|
|
320
|
+
type: PropType<Rules<string>>;
|
|
321
|
+
default: () => never[];
|
|
322
|
+
};
|
|
323
|
+
validateOnBlur: {
|
|
324
|
+
type: BooleanConstructor;
|
|
325
|
+
default: boolean;
|
|
326
|
+
};
|
|
327
|
+
required: {
|
|
328
|
+
type: BooleanConstructor;
|
|
329
|
+
default: boolean;
|
|
330
|
+
};
|
|
331
|
+
errorMessage: {
|
|
332
|
+
type: StringConstructor;
|
|
333
|
+
default: null;
|
|
334
|
+
};
|
|
335
|
+
}>> & Readonly<{
|
|
336
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
337
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
338
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
339
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
340
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
341
|
+
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
342
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
343
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
344
|
+
"onClick:hide"?: ((...args: any[]) => any) | undefined;
|
|
345
|
+
}>, {
|
|
346
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric";
|
|
347
|
+
label: string | null;
|
|
348
|
+
id: string | null;
|
|
349
|
+
value: string;
|
|
350
|
+
size: "large" | "medium";
|
|
351
|
+
dataTest: string;
|
|
352
|
+
placeholder: string;
|
|
353
|
+
disabled: boolean;
|
|
354
|
+
ariaLabel: string | null;
|
|
355
|
+
rules: Rules<string>;
|
|
356
|
+
required: boolean;
|
|
357
|
+
hideDetails: boolean | "auto";
|
|
358
|
+
counter: number | null;
|
|
359
|
+
counterValue: number | (() => number | null);
|
|
360
|
+
clearable: boolean;
|
|
361
|
+
inputmode: "text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric";
|
|
362
|
+
minlength: string | number;
|
|
363
|
+
maxlength: string | number;
|
|
364
|
+
hideable: boolean;
|
|
365
|
+
hideLabel: boolean;
|
|
366
|
+
validateOnBlur: boolean;
|
|
367
|
+
errorMessage: string;
|
|
368
|
+
}, {}, {
|
|
369
|
+
CFormFieldCounter: DefineComponent<ExtractPropTypes<{
|
|
370
|
+
counter: {
|
|
371
|
+
type: PropType<number | null>;
|
|
372
|
+
default: null;
|
|
373
|
+
};
|
|
374
|
+
counterValue: {
|
|
375
|
+
type: PropType<number | (() => number | null)>;
|
|
376
|
+
default: null;
|
|
377
|
+
};
|
|
378
|
+
value: {
|
|
379
|
+
type: StringConstructor;
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
382
|
+
}>, {
|
|
383
|
+
numerator: ComputedRef<number | null>;
|
|
384
|
+
displayText: ComputedRef<string>;
|
|
385
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
386
|
+
counter: {
|
|
387
|
+
type: PropType<number | null>;
|
|
388
|
+
default: null;
|
|
389
|
+
};
|
|
390
|
+
counterValue: {
|
|
391
|
+
type: PropType<number | (() => number | null)>;
|
|
392
|
+
default: null;
|
|
393
|
+
};
|
|
394
|
+
value: {
|
|
395
|
+
type: StringConstructor;
|
|
396
|
+
default: string;
|
|
397
|
+
};
|
|
398
|
+
}>> & Readonly<{}>, {
|
|
399
|
+
value: string;
|
|
400
|
+
counter: number | null;
|
|
401
|
+
counterValue: number | (() => number | null);
|
|
402
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
403
|
+
CIconButton: DefineComponent<ExtractPropTypes<{
|
|
404
|
+
ariaLabel: {
|
|
405
|
+
type: StringConstructor;
|
|
406
|
+
default: undefined;
|
|
407
|
+
};
|
|
408
|
+
ariaLabelledby: {
|
|
409
|
+
type: StringConstructor;
|
|
410
|
+
default: undefined;
|
|
411
|
+
};
|
|
412
|
+
disabled: {
|
|
413
|
+
type: BooleanConstructor;
|
|
414
|
+
default: boolean;
|
|
415
|
+
};
|
|
416
|
+
href: {
|
|
417
|
+
type: StringConstructor;
|
|
418
|
+
default: undefined;
|
|
419
|
+
};
|
|
420
|
+
icon: {
|
|
421
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
422
|
+
default: undefined;
|
|
423
|
+
};
|
|
424
|
+
large: {
|
|
425
|
+
type: BooleanConstructor;
|
|
426
|
+
default: boolean;
|
|
427
|
+
deprecated: boolean;
|
|
428
|
+
};
|
|
429
|
+
level: {
|
|
430
|
+
type: PropType< ButtonLevel>;
|
|
431
|
+
default: string;
|
|
432
|
+
};
|
|
433
|
+
loading: {
|
|
434
|
+
type: BooleanConstructor;
|
|
435
|
+
default: boolean;
|
|
436
|
+
};
|
|
437
|
+
secondary: {
|
|
438
|
+
type: BooleanConstructor;
|
|
439
|
+
default: boolean;
|
|
440
|
+
deprecated: boolean;
|
|
441
|
+
};
|
|
442
|
+
size: {
|
|
443
|
+
type: PropType< ButtonSize>;
|
|
444
|
+
default: string;
|
|
445
|
+
};
|
|
446
|
+
spinIcon: {
|
|
447
|
+
type: BooleanConstructor;
|
|
448
|
+
default: boolean;
|
|
449
|
+
};
|
|
450
|
+
target: {
|
|
451
|
+
type: StringConstructor;
|
|
452
|
+
default: undefined;
|
|
453
|
+
};
|
|
454
|
+
tertiary: {
|
|
455
|
+
type: BooleanConstructor;
|
|
456
|
+
default: boolean;
|
|
457
|
+
deprecated: boolean;
|
|
458
|
+
};
|
|
459
|
+
to: {
|
|
460
|
+
type: PropType< RouteLocationRaw>;
|
|
461
|
+
default: undefined;
|
|
462
|
+
};
|
|
463
|
+
variant: {
|
|
464
|
+
type: PropType< ButtonVariant>;
|
|
465
|
+
default: string;
|
|
466
|
+
};
|
|
467
|
+
}>, {
|
|
468
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
469
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
470
|
+
inheritColor: Ref<boolean, boolean> | undefined;
|
|
471
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
472
|
+
ariaLabel: {
|
|
473
|
+
type: StringConstructor;
|
|
474
|
+
default: undefined;
|
|
475
|
+
};
|
|
476
|
+
ariaLabelledby: {
|
|
477
|
+
type: StringConstructor;
|
|
478
|
+
default: undefined;
|
|
479
|
+
};
|
|
480
|
+
disabled: {
|
|
481
|
+
type: BooleanConstructor;
|
|
482
|
+
default: boolean;
|
|
483
|
+
};
|
|
484
|
+
href: {
|
|
485
|
+
type: StringConstructor;
|
|
486
|
+
default: undefined;
|
|
487
|
+
};
|
|
488
|
+
icon: {
|
|
489
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
490
|
+
default: undefined;
|
|
491
|
+
};
|
|
492
|
+
large: {
|
|
493
|
+
type: BooleanConstructor;
|
|
494
|
+
default: boolean;
|
|
495
|
+
deprecated: boolean;
|
|
496
|
+
};
|
|
497
|
+
level: {
|
|
498
|
+
type: PropType< ButtonLevel>;
|
|
499
|
+
default: string;
|
|
500
|
+
};
|
|
501
|
+
loading: {
|
|
502
|
+
type: BooleanConstructor;
|
|
503
|
+
default: boolean;
|
|
504
|
+
};
|
|
505
|
+
secondary: {
|
|
506
|
+
type: BooleanConstructor;
|
|
507
|
+
default: boolean;
|
|
508
|
+
deprecated: boolean;
|
|
509
|
+
};
|
|
510
|
+
size: {
|
|
511
|
+
type: PropType< ButtonSize>;
|
|
512
|
+
default: string;
|
|
513
|
+
};
|
|
514
|
+
spinIcon: {
|
|
515
|
+
type: BooleanConstructor;
|
|
516
|
+
default: boolean;
|
|
517
|
+
};
|
|
518
|
+
target: {
|
|
519
|
+
type: StringConstructor;
|
|
520
|
+
default: undefined;
|
|
521
|
+
};
|
|
522
|
+
tertiary: {
|
|
523
|
+
type: BooleanConstructor;
|
|
524
|
+
default: boolean;
|
|
525
|
+
deprecated: boolean;
|
|
526
|
+
};
|
|
527
|
+
to: {
|
|
528
|
+
type: PropType< RouteLocationRaw>;
|
|
529
|
+
default: undefined;
|
|
530
|
+
};
|
|
531
|
+
variant: {
|
|
532
|
+
type: PropType< ButtonVariant>;
|
|
533
|
+
default: string;
|
|
534
|
+
};
|
|
535
|
+
}>> & Readonly<{
|
|
536
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
537
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
538
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
539
|
+
}>, {
|
|
540
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
541
|
+
size: ButtonSize;
|
|
542
|
+
icon: string | string[] | IconDefinition;
|
|
543
|
+
target: string;
|
|
544
|
+
tertiary: boolean;
|
|
545
|
+
loading: boolean;
|
|
546
|
+
large: boolean;
|
|
547
|
+
disabled: boolean;
|
|
548
|
+
ariaLabel: string;
|
|
549
|
+
secondary: boolean;
|
|
550
|
+
href: string;
|
|
551
|
+
level: ButtonLevel;
|
|
552
|
+
variant: ButtonVariant;
|
|
553
|
+
ariaLabelledby: string;
|
|
554
|
+
spinIcon: boolean;
|
|
555
|
+
}, {}, {
|
|
556
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
557
|
+
CButton: DefineComponent<ExtractPropTypes<{
|
|
558
|
+
block: {
|
|
559
|
+
type: BooleanConstructor;
|
|
560
|
+
default: boolean;
|
|
561
|
+
};
|
|
562
|
+
disabled: {
|
|
563
|
+
type: BooleanConstructor;
|
|
564
|
+
default: boolean;
|
|
565
|
+
};
|
|
566
|
+
href: {
|
|
567
|
+
type: StringConstructor;
|
|
568
|
+
default: undefined;
|
|
569
|
+
};
|
|
570
|
+
icon: {
|
|
571
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
572
|
+
default: undefined;
|
|
573
|
+
};
|
|
574
|
+
iconPosition: {
|
|
575
|
+
type: PropType< ButtonIconPosition>;
|
|
576
|
+
default: string;
|
|
577
|
+
validator: (value: string) => boolean;
|
|
578
|
+
};
|
|
579
|
+
large: {
|
|
580
|
+
type: BooleanConstructor;
|
|
581
|
+
default: boolean;
|
|
582
|
+
deprecated: boolean;
|
|
583
|
+
};
|
|
584
|
+
level: {
|
|
585
|
+
type: PropType< ButtonLevel>;
|
|
586
|
+
default: string;
|
|
587
|
+
validator: (value: string) => boolean;
|
|
588
|
+
};
|
|
589
|
+
loading: {
|
|
590
|
+
type: BooleanConstructor;
|
|
591
|
+
default: boolean;
|
|
592
|
+
};
|
|
593
|
+
secondary: {
|
|
594
|
+
type: BooleanConstructor;
|
|
595
|
+
default: boolean;
|
|
596
|
+
deprecated: boolean;
|
|
597
|
+
};
|
|
598
|
+
size: {
|
|
599
|
+
type: PropType< ButtonSize>;
|
|
600
|
+
default: string;
|
|
601
|
+
validator: (value: string) => boolean;
|
|
602
|
+
};
|
|
603
|
+
target: {
|
|
604
|
+
type: StringConstructor;
|
|
605
|
+
default: undefined;
|
|
606
|
+
};
|
|
607
|
+
tertiary: {
|
|
608
|
+
type: BooleanConstructor;
|
|
609
|
+
default: boolean;
|
|
610
|
+
deprecated: boolean;
|
|
611
|
+
};
|
|
612
|
+
to: {
|
|
613
|
+
type: PropType< RouteLocationRaw>;
|
|
614
|
+
default: undefined;
|
|
615
|
+
};
|
|
616
|
+
variant: {
|
|
617
|
+
type: PropType< ButtonVariant>;
|
|
618
|
+
default: string;
|
|
619
|
+
validator: (value: string) => boolean;
|
|
620
|
+
};
|
|
621
|
+
}>, {
|
|
622
|
+
animationListeners: Record<string, () => void>;
|
|
623
|
+
button: Ref<HTMLElement | null, HTMLElement | null>;
|
|
624
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
625
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
626
|
+
dataBlock: ComputedRef<true | undefined>;
|
|
627
|
+
dataLoading: ComputedRef<true | undefined>;
|
|
628
|
+
hasIcon: ComputedRef<boolean>;
|
|
629
|
+
injectedOrPropBlock: ComputedRef<boolean>;
|
|
630
|
+
injectedOrPropsLarge: ComputedRef<boolean>;
|
|
631
|
+
onClick: (event: MouseEvent) => void;
|
|
632
|
+
routerDestinationOrHref: ComputedRef<string | undefined>;
|
|
633
|
+
shoelaceVariant: ComputedRef<ButtonShoelaceVariant>;
|
|
634
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
635
|
+
block: {
|
|
636
|
+
type: BooleanConstructor;
|
|
637
|
+
default: boolean;
|
|
638
|
+
};
|
|
639
|
+
disabled: {
|
|
640
|
+
type: BooleanConstructor;
|
|
641
|
+
default: boolean;
|
|
642
|
+
};
|
|
643
|
+
href: {
|
|
644
|
+
type: StringConstructor;
|
|
645
|
+
default: undefined;
|
|
646
|
+
};
|
|
647
|
+
icon: {
|
|
648
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
649
|
+
default: undefined;
|
|
650
|
+
};
|
|
651
|
+
iconPosition: {
|
|
652
|
+
type: PropType< ButtonIconPosition>;
|
|
653
|
+
default: string;
|
|
654
|
+
validator: (value: string) => boolean;
|
|
655
|
+
};
|
|
656
|
+
large: {
|
|
657
|
+
type: BooleanConstructor;
|
|
658
|
+
default: boolean;
|
|
659
|
+
deprecated: boolean;
|
|
660
|
+
};
|
|
661
|
+
level: {
|
|
662
|
+
type: PropType< ButtonLevel>;
|
|
663
|
+
default: string;
|
|
664
|
+
validator: (value: string) => boolean;
|
|
665
|
+
};
|
|
666
|
+
loading: {
|
|
667
|
+
type: BooleanConstructor;
|
|
668
|
+
default: boolean;
|
|
669
|
+
};
|
|
670
|
+
secondary: {
|
|
671
|
+
type: BooleanConstructor;
|
|
672
|
+
default: boolean;
|
|
673
|
+
deprecated: boolean;
|
|
674
|
+
};
|
|
675
|
+
size: {
|
|
676
|
+
type: PropType< ButtonSize>;
|
|
677
|
+
default: string;
|
|
678
|
+
validator: (value: string) => boolean;
|
|
679
|
+
};
|
|
680
|
+
target: {
|
|
681
|
+
type: StringConstructor;
|
|
682
|
+
default: undefined;
|
|
683
|
+
};
|
|
684
|
+
tertiary: {
|
|
685
|
+
type: BooleanConstructor;
|
|
686
|
+
default: boolean;
|
|
687
|
+
deprecated: boolean;
|
|
688
|
+
};
|
|
689
|
+
to: {
|
|
690
|
+
type: PropType< RouteLocationRaw>;
|
|
691
|
+
default: undefined;
|
|
692
|
+
};
|
|
693
|
+
variant: {
|
|
694
|
+
type: PropType< ButtonVariant>;
|
|
695
|
+
default: string;
|
|
696
|
+
validator: (value: string) => boolean;
|
|
697
|
+
};
|
|
698
|
+
}>> & Readonly<{
|
|
699
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
700
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
701
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
702
|
+
}>, {
|
|
703
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
704
|
+
size: ButtonSize;
|
|
705
|
+
icon: string | string[] | IconDefinition;
|
|
706
|
+
target: string;
|
|
707
|
+
tertiary: boolean;
|
|
708
|
+
loading: boolean;
|
|
709
|
+
block: boolean;
|
|
710
|
+
large: boolean;
|
|
711
|
+
disabled: boolean;
|
|
712
|
+
secondary: boolean;
|
|
713
|
+
href: string;
|
|
714
|
+
iconPosition: ButtonIconPosition;
|
|
715
|
+
level: ButtonLevel;
|
|
716
|
+
variant: ButtonVariant;
|
|
717
|
+
}, {}, {
|
|
718
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
719
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
720
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
721
|
+
CValidationMessage: DefineComponent<ExtractPropTypes<{
|
|
722
|
+
dataTest: {
|
|
723
|
+
type: StringConstructor;
|
|
724
|
+
default: string;
|
|
725
|
+
};
|
|
726
|
+
validationMessage: {
|
|
727
|
+
type: PropType<string | null>;
|
|
728
|
+
default: null;
|
|
729
|
+
};
|
|
730
|
+
hide: {
|
|
731
|
+
type: PropType<boolean | "auto">;
|
|
732
|
+
default: boolean;
|
|
733
|
+
};
|
|
734
|
+
}>, {
|
|
735
|
+
isHidden: ComputedRef<boolean>;
|
|
736
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
737
|
+
dataTest: {
|
|
738
|
+
type: StringConstructor;
|
|
739
|
+
default: string;
|
|
740
|
+
};
|
|
741
|
+
validationMessage: {
|
|
742
|
+
type: PropType<string | null>;
|
|
743
|
+
default: null;
|
|
744
|
+
};
|
|
745
|
+
hide: {
|
|
746
|
+
type: PropType<boolean | "auto">;
|
|
747
|
+
default: boolean;
|
|
748
|
+
};
|
|
749
|
+
}>> & Readonly<{}>, {
|
|
750
|
+
dataTest: string;
|
|
751
|
+
validationMessage: string | null;
|
|
752
|
+
hide: boolean | "auto";
|
|
753
|
+
}, {}, {
|
|
754
|
+
CFadeTransition: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
755
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
756
|
+
}, {}, string, ComponentProvideOptions, true, {}, any> | null, DefineComponent<ExtractPropTypes<{
|
|
757
|
+
id: {
|
|
758
|
+
type: PropType<string | null>;
|
|
759
|
+
default: null;
|
|
760
|
+
};
|
|
761
|
+
label: {
|
|
762
|
+
type: PropType<string | null>;
|
|
763
|
+
default: null;
|
|
764
|
+
};
|
|
765
|
+
ariaLabel: {
|
|
766
|
+
type: PropType<string | null>;
|
|
767
|
+
default: null;
|
|
768
|
+
};
|
|
769
|
+
placeholder: {
|
|
770
|
+
type: StringConstructor;
|
|
771
|
+
default: string;
|
|
772
|
+
};
|
|
773
|
+
type: {
|
|
774
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
775
|
+
default: string;
|
|
776
|
+
};
|
|
777
|
+
clearable: {
|
|
778
|
+
type: BooleanConstructor;
|
|
779
|
+
default: boolean;
|
|
780
|
+
};
|
|
781
|
+
size: {
|
|
782
|
+
type: PropType<"medium" | "large">;
|
|
783
|
+
default: string;
|
|
784
|
+
};
|
|
785
|
+
inputmode: {
|
|
786
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
787
|
+
default: undefined;
|
|
788
|
+
};
|
|
789
|
+
minlength: {
|
|
790
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
791
|
+
default: undefined;
|
|
792
|
+
};
|
|
793
|
+
maxlength: {
|
|
794
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
795
|
+
default: undefined;
|
|
796
|
+
};
|
|
797
|
+
disabled: {
|
|
798
|
+
type: BooleanConstructor;
|
|
799
|
+
default: boolean;
|
|
800
|
+
};
|
|
801
|
+
hideable: {
|
|
802
|
+
type: BooleanConstructor;
|
|
803
|
+
default: boolean;
|
|
804
|
+
};
|
|
805
|
+
hideLabel: {
|
|
806
|
+
type: BooleanConstructor;
|
|
807
|
+
default: boolean;
|
|
808
|
+
};
|
|
809
|
+
hideDetails: {
|
|
810
|
+
type: PropType<boolean | "auto">;
|
|
811
|
+
default: boolean;
|
|
812
|
+
};
|
|
813
|
+
value: {
|
|
814
|
+
type: StringConstructor;
|
|
815
|
+
default: string;
|
|
816
|
+
};
|
|
817
|
+
dataTest: {
|
|
818
|
+
type: StringConstructor;
|
|
819
|
+
default: string;
|
|
820
|
+
};
|
|
821
|
+
counter: {
|
|
822
|
+
type: PropType<number | null>;
|
|
823
|
+
default: null;
|
|
824
|
+
};
|
|
825
|
+
counterValue: {
|
|
826
|
+
type: PropType<number | (() => number | null)>;
|
|
827
|
+
default: null;
|
|
828
|
+
};
|
|
829
|
+
rules: {
|
|
830
|
+
type: PropType<Rules<string>>;
|
|
831
|
+
default: () => never[];
|
|
832
|
+
};
|
|
833
|
+
validateOnBlur: {
|
|
834
|
+
type: BooleanConstructor;
|
|
835
|
+
default: boolean;
|
|
836
|
+
};
|
|
837
|
+
required: {
|
|
838
|
+
type: BooleanConstructor;
|
|
839
|
+
default: boolean;
|
|
840
|
+
};
|
|
841
|
+
errorMessage: {
|
|
842
|
+
type: StringConstructor;
|
|
843
|
+
default: null;
|
|
844
|
+
};
|
|
845
|
+
}>, {
|
|
846
|
+
faXmark: IconDefinition;
|
|
847
|
+
faEye: IconDefinition;
|
|
848
|
+
faEyeSlash: IconDefinition;
|
|
849
|
+
fallthroughAttrs: ComputedRef<{
|
|
850
|
+
[x: string]: unknown;
|
|
851
|
+
}>;
|
|
852
|
+
hideToggleAriaLabel: ComputedRef<string>;
|
|
853
|
+
idWithFallback: Ref<string, string>;
|
|
854
|
+
input: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
855
|
+
inputHidden: Ref<boolean, boolean>;
|
|
856
|
+
inputType: ComputedRef<"number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric">;
|
|
857
|
+
inputValue: Ref<string, string>;
|
|
858
|
+
isFocused: Ref<boolean, boolean>;
|
|
859
|
+
messageSlotHasContent: Ref<boolean, boolean>;
|
|
860
|
+
prefixSlotHasContent: Ref<boolean, boolean>;
|
|
861
|
+
rootStyles: ComputedRef<StyleValue>;
|
|
862
|
+
suffixSlotHasContent: Ref<boolean, boolean>;
|
|
863
|
+
isValidationValid: Ref<boolean | null, boolean | null>;
|
|
864
|
+
validationMessage: Ref<string | null, string | null>;
|
|
865
|
+
clearInput: () => void;
|
|
866
|
+
onBlur: (event: Event) => void;
|
|
867
|
+
onChange: (event: Event) => void;
|
|
868
|
+
onFocus: (event: Event) => void;
|
|
869
|
+
onInput: (event: Event) => void;
|
|
870
|
+
toggleHidden: () => void;
|
|
871
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide")[], "change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide", PublicProps, Readonly< ExtractPropTypes<{
|
|
872
|
+
id: {
|
|
873
|
+
type: PropType<string | null>;
|
|
874
|
+
default: null;
|
|
875
|
+
};
|
|
876
|
+
label: {
|
|
877
|
+
type: PropType<string | null>;
|
|
878
|
+
default: null;
|
|
879
|
+
};
|
|
880
|
+
ariaLabel: {
|
|
881
|
+
type: PropType<string | null>;
|
|
882
|
+
default: null;
|
|
883
|
+
};
|
|
884
|
+
placeholder: {
|
|
885
|
+
type: StringConstructor;
|
|
886
|
+
default: string;
|
|
887
|
+
};
|
|
888
|
+
type: {
|
|
889
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
890
|
+
default: string;
|
|
891
|
+
};
|
|
892
|
+
clearable: {
|
|
893
|
+
type: BooleanConstructor;
|
|
894
|
+
default: boolean;
|
|
895
|
+
};
|
|
896
|
+
size: {
|
|
897
|
+
type: PropType<"medium" | "large">;
|
|
898
|
+
default: string;
|
|
899
|
+
};
|
|
900
|
+
inputmode: {
|
|
901
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
902
|
+
default: undefined;
|
|
903
|
+
};
|
|
904
|
+
minlength: {
|
|
905
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
906
|
+
default: undefined;
|
|
907
|
+
};
|
|
908
|
+
maxlength: {
|
|
909
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
910
|
+
default: undefined;
|
|
911
|
+
};
|
|
912
|
+
disabled: {
|
|
913
|
+
type: BooleanConstructor;
|
|
914
|
+
default: boolean;
|
|
915
|
+
};
|
|
916
|
+
hideable: {
|
|
917
|
+
type: BooleanConstructor;
|
|
918
|
+
default: boolean;
|
|
919
|
+
};
|
|
920
|
+
hideLabel: {
|
|
921
|
+
type: BooleanConstructor;
|
|
922
|
+
default: boolean;
|
|
923
|
+
};
|
|
924
|
+
hideDetails: {
|
|
925
|
+
type: PropType<boolean | "auto">;
|
|
926
|
+
default: boolean;
|
|
927
|
+
};
|
|
928
|
+
value: {
|
|
929
|
+
type: StringConstructor;
|
|
930
|
+
default: string;
|
|
931
|
+
};
|
|
932
|
+
dataTest: {
|
|
933
|
+
type: StringConstructor;
|
|
934
|
+
default: string;
|
|
935
|
+
};
|
|
936
|
+
counter: {
|
|
937
|
+
type: PropType<number | null>;
|
|
938
|
+
default: null;
|
|
939
|
+
};
|
|
940
|
+
counterValue: {
|
|
941
|
+
type: PropType<number | (() => number | null)>;
|
|
942
|
+
default: null;
|
|
943
|
+
};
|
|
944
|
+
rules: {
|
|
945
|
+
type: PropType<Rules<string>>;
|
|
946
|
+
default: () => never[];
|
|
947
|
+
};
|
|
948
|
+
validateOnBlur: {
|
|
949
|
+
type: BooleanConstructor;
|
|
950
|
+
default: boolean;
|
|
951
|
+
};
|
|
952
|
+
required: {
|
|
953
|
+
type: BooleanConstructor;
|
|
954
|
+
default: boolean;
|
|
955
|
+
};
|
|
956
|
+
errorMessage: {
|
|
957
|
+
type: StringConstructor;
|
|
958
|
+
default: null;
|
|
959
|
+
};
|
|
960
|
+
}>> & Readonly<{
|
|
961
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
962
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
963
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
964
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
965
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
966
|
+
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
967
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
968
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
969
|
+
"onClick:hide"?: ((...args: any[]) => any) | undefined;
|
|
970
|
+
}>, {
|
|
971
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric";
|
|
972
|
+
label: string | null;
|
|
973
|
+
id: string | null;
|
|
974
|
+
value: string;
|
|
975
|
+
size: "large" | "medium";
|
|
976
|
+
dataTest: string;
|
|
977
|
+
placeholder: string;
|
|
978
|
+
disabled: boolean;
|
|
979
|
+
ariaLabel: string | null;
|
|
980
|
+
rules: Rules<string>;
|
|
981
|
+
required: boolean;
|
|
982
|
+
hideDetails: boolean | "auto";
|
|
983
|
+
counter: number | null;
|
|
984
|
+
counterValue: number | (() => number | null);
|
|
985
|
+
clearable: boolean;
|
|
986
|
+
inputmode: "text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric";
|
|
987
|
+
minlength: string | number;
|
|
988
|
+
maxlength: string | number;
|
|
989
|
+
hideable: boolean;
|
|
990
|
+
hideLabel: boolean;
|
|
991
|
+
validateOnBlur: boolean;
|
|
992
|
+
errorMessage: string;
|
|
993
|
+
}, {}, {
|
|
994
|
+
CFormFieldCounter: DefineComponent<ExtractPropTypes<{
|
|
995
|
+
counter: {
|
|
996
|
+
type: PropType<number | null>;
|
|
997
|
+
default: null;
|
|
998
|
+
};
|
|
999
|
+
counterValue: {
|
|
1000
|
+
type: PropType<number | (() => number | null)>;
|
|
1001
|
+
default: null;
|
|
1002
|
+
};
|
|
1003
|
+
value: {
|
|
1004
|
+
type: StringConstructor;
|
|
1005
|
+
default: string;
|
|
1006
|
+
};
|
|
1007
|
+
}>, {
|
|
1008
|
+
numerator: ComputedRef<number | null>;
|
|
1009
|
+
displayText: ComputedRef<string>;
|
|
1010
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
1011
|
+
counter: {
|
|
1012
|
+
type: PropType<number | null>;
|
|
1013
|
+
default: null;
|
|
1014
|
+
};
|
|
1015
|
+
counterValue: {
|
|
1016
|
+
type: PropType<number | (() => number | null)>;
|
|
1017
|
+
default: null;
|
|
1018
|
+
};
|
|
1019
|
+
value: {
|
|
1020
|
+
type: StringConstructor;
|
|
1021
|
+
default: string;
|
|
1022
|
+
};
|
|
1023
|
+
}>> & Readonly<{}>, {
|
|
1024
|
+
value: string;
|
|
1025
|
+
counter: number | null;
|
|
1026
|
+
counterValue: number | (() => number | null);
|
|
1027
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1028
|
+
CIconButton: DefineComponent<ExtractPropTypes<{
|
|
1029
|
+
ariaLabel: {
|
|
1030
|
+
type: StringConstructor;
|
|
1031
|
+
default: undefined;
|
|
1032
|
+
};
|
|
1033
|
+
ariaLabelledby: {
|
|
1034
|
+
type: StringConstructor;
|
|
1035
|
+
default: undefined;
|
|
1036
|
+
};
|
|
1037
|
+
disabled: {
|
|
1038
|
+
type: BooleanConstructor;
|
|
1039
|
+
default: boolean;
|
|
1040
|
+
};
|
|
1041
|
+
href: {
|
|
1042
|
+
type: StringConstructor;
|
|
1043
|
+
default: undefined;
|
|
1044
|
+
};
|
|
1045
|
+
icon: {
|
|
1046
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1047
|
+
default: undefined;
|
|
1048
|
+
};
|
|
1049
|
+
large: {
|
|
1050
|
+
type: BooleanConstructor;
|
|
1051
|
+
default: boolean;
|
|
1052
|
+
deprecated: boolean;
|
|
1053
|
+
};
|
|
1054
|
+
level: {
|
|
1055
|
+
type: PropType< ButtonLevel>;
|
|
1056
|
+
default: string;
|
|
1057
|
+
};
|
|
1058
|
+
loading: {
|
|
1059
|
+
type: BooleanConstructor;
|
|
1060
|
+
default: boolean;
|
|
1061
|
+
};
|
|
1062
|
+
secondary: {
|
|
1063
|
+
type: BooleanConstructor;
|
|
1064
|
+
default: boolean;
|
|
1065
|
+
deprecated: boolean;
|
|
1066
|
+
};
|
|
1067
|
+
size: {
|
|
1068
|
+
type: PropType< ButtonSize>;
|
|
1069
|
+
default: string;
|
|
1070
|
+
};
|
|
1071
|
+
spinIcon: {
|
|
1072
|
+
type: BooleanConstructor;
|
|
1073
|
+
default: boolean;
|
|
1074
|
+
};
|
|
1075
|
+
target: {
|
|
1076
|
+
type: StringConstructor;
|
|
1077
|
+
default: undefined;
|
|
1078
|
+
};
|
|
1079
|
+
tertiary: {
|
|
1080
|
+
type: BooleanConstructor;
|
|
1081
|
+
default: boolean;
|
|
1082
|
+
deprecated: boolean;
|
|
1083
|
+
};
|
|
1084
|
+
to: {
|
|
1085
|
+
type: PropType< RouteLocationRaw>;
|
|
1086
|
+
default: undefined;
|
|
1087
|
+
};
|
|
1088
|
+
variant: {
|
|
1089
|
+
type: PropType< ButtonVariant>;
|
|
1090
|
+
default: string;
|
|
1091
|
+
};
|
|
1092
|
+
}>, {
|
|
1093
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
1094
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
1095
|
+
inheritColor: Ref<boolean, boolean> | undefined;
|
|
1096
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
1097
|
+
ariaLabel: {
|
|
1098
|
+
type: StringConstructor;
|
|
1099
|
+
default: undefined;
|
|
1100
|
+
};
|
|
1101
|
+
ariaLabelledby: {
|
|
1102
|
+
type: StringConstructor;
|
|
1103
|
+
default: undefined;
|
|
1104
|
+
};
|
|
1105
|
+
disabled: {
|
|
1106
|
+
type: BooleanConstructor;
|
|
1107
|
+
default: boolean;
|
|
1108
|
+
};
|
|
1109
|
+
href: {
|
|
1110
|
+
type: StringConstructor;
|
|
1111
|
+
default: undefined;
|
|
1112
|
+
};
|
|
1113
|
+
icon: {
|
|
1114
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1115
|
+
default: undefined;
|
|
1116
|
+
};
|
|
1117
|
+
large: {
|
|
1118
|
+
type: BooleanConstructor;
|
|
1119
|
+
default: boolean;
|
|
1120
|
+
deprecated: boolean;
|
|
1121
|
+
};
|
|
1122
|
+
level: {
|
|
1123
|
+
type: PropType< ButtonLevel>;
|
|
1124
|
+
default: string;
|
|
1125
|
+
};
|
|
1126
|
+
loading: {
|
|
1127
|
+
type: BooleanConstructor;
|
|
1128
|
+
default: boolean;
|
|
1129
|
+
};
|
|
1130
|
+
secondary: {
|
|
1131
|
+
type: BooleanConstructor;
|
|
1132
|
+
default: boolean;
|
|
1133
|
+
deprecated: boolean;
|
|
1134
|
+
};
|
|
1135
|
+
size: {
|
|
1136
|
+
type: PropType< ButtonSize>;
|
|
1137
|
+
default: string;
|
|
1138
|
+
};
|
|
1139
|
+
spinIcon: {
|
|
1140
|
+
type: BooleanConstructor;
|
|
1141
|
+
default: boolean;
|
|
1142
|
+
};
|
|
1143
|
+
target: {
|
|
1144
|
+
type: StringConstructor;
|
|
1145
|
+
default: undefined;
|
|
1146
|
+
};
|
|
1147
|
+
tertiary: {
|
|
1148
|
+
type: BooleanConstructor;
|
|
1149
|
+
default: boolean;
|
|
1150
|
+
deprecated: boolean;
|
|
1151
|
+
};
|
|
1152
|
+
to: {
|
|
1153
|
+
type: PropType< RouteLocationRaw>;
|
|
1154
|
+
default: undefined;
|
|
1155
|
+
};
|
|
1156
|
+
variant: {
|
|
1157
|
+
type: PropType< ButtonVariant>;
|
|
1158
|
+
default: string;
|
|
1159
|
+
};
|
|
1160
|
+
}>> & Readonly<{
|
|
1161
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1162
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1163
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1164
|
+
}>, {
|
|
1165
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
1166
|
+
size: ButtonSize;
|
|
1167
|
+
icon: string | string[] | IconDefinition;
|
|
1168
|
+
target: string;
|
|
1169
|
+
tertiary: boolean;
|
|
1170
|
+
loading: boolean;
|
|
1171
|
+
large: boolean;
|
|
1172
|
+
disabled: boolean;
|
|
1173
|
+
ariaLabel: string;
|
|
1174
|
+
secondary: boolean;
|
|
1175
|
+
href: string;
|
|
1176
|
+
level: ButtonLevel;
|
|
1177
|
+
variant: ButtonVariant;
|
|
1178
|
+
ariaLabelledby: string;
|
|
1179
|
+
spinIcon: boolean;
|
|
1180
|
+
}, {}, {
|
|
1181
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
1182
|
+
CButton: DefineComponent<ExtractPropTypes<{
|
|
1183
|
+
block: {
|
|
1184
|
+
type: BooleanConstructor;
|
|
1185
|
+
default: boolean;
|
|
1186
|
+
};
|
|
1187
|
+
disabled: {
|
|
1188
|
+
type: BooleanConstructor;
|
|
1189
|
+
default: boolean;
|
|
1190
|
+
};
|
|
1191
|
+
href: {
|
|
1192
|
+
type: StringConstructor;
|
|
1193
|
+
default: undefined;
|
|
1194
|
+
};
|
|
1195
|
+
icon: {
|
|
1196
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1197
|
+
default: undefined;
|
|
1198
|
+
};
|
|
1199
|
+
iconPosition: {
|
|
1200
|
+
type: PropType< ButtonIconPosition>;
|
|
1201
|
+
default: string;
|
|
1202
|
+
validator: (value: string) => boolean;
|
|
1203
|
+
};
|
|
1204
|
+
large: {
|
|
1205
|
+
type: BooleanConstructor;
|
|
1206
|
+
default: boolean;
|
|
1207
|
+
deprecated: boolean;
|
|
1208
|
+
};
|
|
1209
|
+
level: {
|
|
1210
|
+
type: PropType< ButtonLevel>;
|
|
1211
|
+
default: string;
|
|
1212
|
+
validator: (value: string) => boolean;
|
|
1213
|
+
};
|
|
1214
|
+
loading: {
|
|
1215
|
+
type: BooleanConstructor;
|
|
1216
|
+
default: boolean;
|
|
1217
|
+
};
|
|
1218
|
+
secondary: {
|
|
1219
|
+
type: BooleanConstructor;
|
|
1220
|
+
default: boolean;
|
|
1221
|
+
deprecated: boolean;
|
|
1222
|
+
};
|
|
1223
|
+
size: {
|
|
1224
|
+
type: PropType< ButtonSize>;
|
|
1225
|
+
default: string;
|
|
1226
|
+
validator: (value: string) => boolean;
|
|
1227
|
+
};
|
|
1228
|
+
target: {
|
|
1229
|
+
type: StringConstructor;
|
|
1230
|
+
default: undefined;
|
|
1231
|
+
};
|
|
1232
|
+
tertiary: {
|
|
1233
|
+
type: BooleanConstructor;
|
|
1234
|
+
default: boolean;
|
|
1235
|
+
deprecated: boolean;
|
|
1236
|
+
};
|
|
1237
|
+
to: {
|
|
1238
|
+
type: PropType< RouteLocationRaw>;
|
|
1239
|
+
default: undefined;
|
|
1240
|
+
};
|
|
1241
|
+
variant: {
|
|
1242
|
+
type: PropType< ButtonVariant>;
|
|
1243
|
+
default: string;
|
|
1244
|
+
validator: (value: string) => boolean;
|
|
1245
|
+
};
|
|
1246
|
+
}>, {
|
|
1247
|
+
animationListeners: Record<string, () => void>;
|
|
1248
|
+
button: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1249
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
1250
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
1251
|
+
dataBlock: ComputedRef<true | undefined>;
|
|
1252
|
+
dataLoading: ComputedRef<true | undefined>;
|
|
1253
|
+
hasIcon: ComputedRef<boolean>;
|
|
1254
|
+
injectedOrPropBlock: ComputedRef<boolean>;
|
|
1255
|
+
injectedOrPropsLarge: ComputedRef<boolean>;
|
|
1256
|
+
onClick: (event: MouseEvent) => void;
|
|
1257
|
+
routerDestinationOrHref: ComputedRef<string | undefined>;
|
|
1258
|
+
shoelaceVariant: ComputedRef<ButtonShoelaceVariant>;
|
|
1259
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
1260
|
+
block: {
|
|
1261
|
+
type: BooleanConstructor;
|
|
1262
|
+
default: boolean;
|
|
1263
|
+
};
|
|
1264
|
+
disabled: {
|
|
1265
|
+
type: BooleanConstructor;
|
|
1266
|
+
default: boolean;
|
|
1267
|
+
};
|
|
1268
|
+
href: {
|
|
1269
|
+
type: StringConstructor;
|
|
1270
|
+
default: undefined;
|
|
1271
|
+
};
|
|
1272
|
+
icon: {
|
|
1273
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1274
|
+
default: undefined;
|
|
1275
|
+
};
|
|
1276
|
+
iconPosition: {
|
|
1277
|
+
type: PropType< ButtonIconPosition>;
|
|
1278
|
+
default: string;
|
|
1279
|
+
validator: (value: string) => boolean;
|
|
1280
|
+
};
|
|
1281
|
+
large: {
|
|
1282
|
+
type: BooleanConstructor;
|
|
1283
|
+
default: boolean;
|
|
1284
|
+
deprecated: boolean;
|
|
1285
|
+
};
|
|
1286
|
+
level: {
|
|
1287
|
+
type: PropType< ButtonLevel>;
|
|
1288
|
+
default: string;
|
|
1289
|
+
validator: (value: string) => boolean;
|
|
1290
|
+
};
|
|
1291
|
+
loading: {
|
|
1292
|
+
type: BooleanConstructor;
|
|
1293
|
+
default: boolean;
|
|
1294
|
+
};
|
|
1295
|
+
secondary: {
|
|
1296
|
+
type: BooleanConstructor;
|
|
1297
|
+
default: boolean;
|
|
1298
|
+
deprecated: boolean;
|
|
1299
|
+
};
|
|
1300
|
+
size: {
|
|
1301
|
+
type: PropType< ButtonSize>;
|
|
1302
|
+
default: string;
|
|
1303
|
+
validator: (value: string) => boolean;
|
|
1304
|
+
};
|
|
1305
|
+
target: {
|
|
1306
|
+
type: StringConstructor;
|
|
1307
|
+
default: undefined;
|
|
1308
|
+
};
|
|
1309
|
+
tertiary: {
|
|
1310
|
+
type: BooleanConstructor;
|
|
1311
|
+
default: boolean;
|
|
1312
|
+
deprecated: boolean;
|
|
1313
|
+
};
|
|
1314
|
+
to: {
|
|
1315
|
+
type: PropType< RouteLocationRaw>;
|
|
1316
|
+
default: undefined;
|
|
1317
|
+
};
|
|
1318
|
+
variant: {
|
|
1319
|
+
type: PropType< ButtonVariant>;
|
|
1320
|
+
default: string;
|
|
1321
|
+
validator: (value: string) => boolean;
|
|
1322
|
+
};
|
|
1323
|
+
}>> & Readonly<{
|
|
1324
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1325
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1326
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1327
|
+
}>, {
|
|
1328
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
1329
|
+
size: ButtonSize;
|
|
1330
|
+
icon: string | string[] | IconDefinition;
|
|
1331
|
+
target: string;
|
|
1332
|
+
tertiary: boolean;
|
|
1333
|
+
loading: boolean;
|
|
1334
|
+
block: boolean;
|
|
1335
|
+
large: boolean;
|
|
1336
|
+
disabled: boolean;
|
|
1337
|
+
secondary: boolean;
|
|
1338
|
+
href: string;
|
|
1339
|
+
iconPosition: ButtonIconPosition;
|
|
1340
|
+
level: ButtonLevel;
|
|
1341
|
+
variant: ButtonVariant;
|
|
1342
|
+
}, {}, {
|
|
1343
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
1344
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1345
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1346
|
+
CValidationMessage: DefineComponent<ExtractPropTypes<{
|
|
1347
|
+
dataTest: {
|
|
1348
|
+
type: StringConstructor;
|
|
1349
|
+
default: string;
|
|
1350
|
+
};
|
|
1351
|
+
validationMessage: {
|
|
1352
|
+
type: PropType<string | null>;
|
|
1353
|
+
default: null;
|
|
1354
|
+
};
|
|
1355
|
+
hide: {
|
|
1356
|
+
type: PropType<boolean | "auto">;
|
|
1357
|
+
default: boolean;
|
|
1358
|
+
};
|
|
1359
|
+
}>, {
|
|
1360
|
+
isHidden: ComputedRef<boolean>;
|
|
1361
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
1362
|
+
dataTest: {
|
|
1363
|
+
type: StringConstructor;
|
|
1364
|
+
default: string;
|
|
1365
|
+
};
|
|
1366
|
+
validationMessage: {
|
|
1367
|
+
type: PropType<string | null>;
|
|
1368
|
+
default: null;
|
|
1369
|
+
};
|
|
1370
|
+
hide: {
|
|
1371
|
+
type: PropType<boolean | "auto">;
|
|
1372
|
+
default: boolean;
|
|
1373
|
+
};
|
|
1374
|
+
}>> & Readonly<{}>, {
|
|
1375
|
+
dataTest: string;
|
|
1376
|
+
validationMessage: string | null;
|
|
1377
|
+
hide: boolean | "auto";
|
|
1378
|
+
}, {}, {
|
|
1379
|
+
CFadeTransition: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1380
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1381
|
+
}, {}, string, ComponentProvideOptions, true, {}, any> | null>;
|
|
1382
|
+
unmaskedRules: ComputedRef<Rules<string>>;
|
|
1383
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "input" | "focus" | "blur" | "keydown" | "keypress" | "keyup" | "input:masked")[], "change" | "input" | "focus" | "blur" | "keydown" | "keypress" | "keyup" | "input:masked", PublicProps, Readonly< ExtractPropTypes<{
|
|
1384
|
+
counter: {
|
|
1385
|
+
type: PropType<number | null>;
|
|
1386
|
+
default: null;
|
|
1387
|
+
};
|
|
1388
|
+
dataTest: {
|
|
1389
|
+
type: StringConstructor;
|
|
1390
|
+
default: string;
|
|
1391
|
+
};
|
|
1392
|
+
id: {
|
|
1393
|
+
type: StringConstructor;
|
|
1394
|
+
default: undefined;
|
|
1395
|
+
};
|
|
1396
|
+
label: {
|
|
1397
|
+
type: PropType<string | null>;
|
|
1398
|
+
default: null;
|
|
1399
|
+
};
|
|
1400
|
+
mask: {
|
|
1401
|
+
type: PropType< MaskOptions["mask"] | null>;
|
|
1402
|
+
required: true;
|
|
1403
|
+
};
|
|
1404
|
+
minlength: {
|
|
1405
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1406
|
+
default: null;
|
|
1407
|
+
};
|
|
1408
|
+
maxlength: {
|
|
1409
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1410
|
+
default: null;
|
|
1411
|
+
};
|
|
1412
|
+
placeholder: {
|
|
1413
|
+
type: StringConstructor;
|
|
1414
|
+
default: undefined;
|
|
1415
|
+
};
|
|
1416
|
+
rules: {
|
|
1417
|
+
type: PropType<Rules<string>>;
|
|
1418
|
+
default: () => never[];
|
|
1419
|
+
};
|
|
1420
|
+
tokens: {
|
|
1421
|
+
type: PropType< MaskTokens | null>;
|
|
1422
|
+
default: null;
|
|
1423
|
+
};
|
|
1424
|
+
unmaskRules: {
|
|
1425
|
+
type: BooleanConstructor;
|
|
1426
|
+
default: boolean;
|
|
1427
|
+
};
|
|
1428
|
+
value: {
|
|
1429
|
+
type: StringConstructor;
|
|
1430
|
+
default: string;
|
|
1431
|
+
};
|
|
1432
|
+
}>> & Readonly<{
|
|
1433
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1434
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1435
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1436
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
1437
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
1438
|
+
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
1439
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
1440
|
+
"onInput:masked"?: ((...args: any[]) => any) | undefined;
|
|
1441
|
+
}>, {
|
|
1442
|
+
label: string | null;
|
|
1443
|
+
id: string;
|
|
1444
|
+
value: string;
|
|
1445
|
+
dataTest: string;
|
|
1446
|
+
placeholder: string;
|
|
1447
|
+
rules: Rules<string>;
|
|
1448
|
+
counter: number | null;
|
|
1449
|
+
minlength: string | number;
|
|
1450
|
+
maxlength: string | number;
|
|
1451
|
+
tokens: MaskTokens | null;
|
|
1452
|
+
unmaskRules: boolean;
|
|
1453
|
+
}, {}, {
|
|
1454
|
+
CTextField: DefineComponent<ExtractPropTypes<{
|
|
1455
|
+
id: {
|
|
1456
|
+
type: PropType<string | null>;
|
|
1457
|
+
default: null;
|
|
1458
|
+
};
|
|
1459
|
+
label: {
|
|
1460
|
+
type: PropType<string | null>;
|
|
1461
|
+
default: null;
|
|
1462
|
+
};
|
|
1463
|
+
ariaLabel: {
|
|
1464
|
+
type: PropType<string | null>;
|
|
1465
|
+
default: null;
|
|
1466
|
+
};
|
|
1467
|
+
placeholder: {
|
|
1468
|
+
type: StringConstructor;
|
|
1469
|
+
default: string;
|
|
1470
|
+
};
|
|
1471
|
+
type: {
|
|
1472
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
1473
|
+
default: string;
|
|
1474
|
+
};
|
|
1475
|
+
clearable: {
|
|
1476
|
+
type: BooleanConstructor;
|
|
1477
|
+
default: boolean;
|
|
1478
|
+
};
|
|
1479
|
+
size: {
|
|
1480
|
+
type: PropType<"medium" | "large">;
|
|
1481
|
+
default: string;
|
|
1482
|
+
};
|
|
1483
|
+
inputmode: {
|
|
1484
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
1485
|
+
default: undefined;
|
|
1486
|
+
};
|
|
1487
|
+
minlength: {
|
|
1488
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1489
|
+
default: undefined;
|
|
1490
|
+
};
|
|
1491
|
+
maxlength: {
|
|
1492
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1493
|
+
default: undefined;
|
|
1494
|
+
};
|
|
1495
|
+
disabled: {
|
|
1496
|
+
type: BooleanConstructor;
|
|
1497
|
+
default: boolean;
|
|
1498
|
+
};
|
|
1499
|
+
hideable: {
|
|
1500
|
+
type: BooleanConstructor;
|
|
1501
|
+
default: boolean;
|
|
1502
|
+
};
|
|
1503
|
+
hideLabel: {
|
|
1504
|
+
type: BooleanConstructor;
|
|
1505
|
+
default: boolean;
|
|
1506
|
+
};
|
|
1507
|
+
hideDetails: {
|
|
1508
|
+
type: PropType<boolean | "auto">;
|
|
1509
|
+
default: boolean;
|
|
1510
|
+
};
|
|
1511
|
+
value: {
|
|
1512
|
+
type: StringConstructor;
|
|
1513
|
+
default: string;
|
|
1514
|
+
};
|
|
1515
|
+
dataTest: {
|
|
1516
|
+
type: StringConstructor;
|
|
1517
|
+
default: string;
|
|
1518
|
+
};
|
|
1519
|
+
counter: {
|
|
1520
|
+
type: PropType<number | null>;
|
|
1521
|
+
default: null;
|
|
1522
|
+
};
|
|
1523
|
+
counterValue: {
|
|
1524
|
+
type: PropType<number | (() => number | null)>;
|
|
1525
|
+
default: null;
|
|
1526
|
+
};
|
|
1527
|
+
rules: {
|
|
1528
|
+
type: PropType<Rules<string>>;
|
|
1529
|
+
default: () => never[];
|
|
1530
|
+
};
|
|
1531
|
+
validateOnBlur: {
|
|
1532
|
+
type: BooleanConstructor;
|
|
1533
|
+
default: boolean;
|
|
1534
|
+
};
|
|
1535
|
+
required: {
|
|
1536
|
+
type: BooleanConstructor;
|
|
1537
|
+
default: boolean;
|
|
1538
|
+
};
|
|
1539
|
+
errorMessage: {
|
|
1540
|
+
type: StringConstructor;
|
|
1541
|
+
default: null;
|
|
1542
|
+
};
|
|
1543
|
+
}>, {
|
|
1544
|
+
faXmark: IconDefinition;
|
|
1545
|
+
faEye: IconDefinition;
|
|
1546
|
+
faEyeSlash: IconDefinition;
|
|
1547
|
+
fallthroughAttrs: ComputedRef<{
|
|
1548
|
+
[x: string]: unknown;
|
|
1549
|
+
}>;
|
|
1550
|
+
hideToggleAriaLabel: ComputedRef<string>;
|
|
1551
|
+
idWithFallback: Ref<string, string>;
|
|
1552
|
+
input: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1553
|
+
inputHidden: Ref<boolean, boolean>;
|
|
1554
|
+
inputType: ComputedRef<"number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric">;
|
|
1555
|
+
inputValue: Ref<string, string>;
|
|
1556
|
+
isFocused: Ref<boolean, boolean>;
|
|
1557
|
+
messageSlotHasContent: Ref<boolean, boolean>;
|
|
1558
|
+
prefixSlotHasContent: Ref<boolean, boolean>;
|
|
1559
|
+
rootStyles: ComputedRef<StyleValue>;
|
|
1560
|
+
suffixSlotHasContent: Ref<boolean, boolean>;
|
|
1561
|
+
isValidationValid: Ref<boolean | null, boolean | null>;
|
|
1562
|
+
validationMessage: Ref<string | null, string | null>;
|
|
1563
|
+
clearInput: () => void;
|
|
1564
|
+
onBlur: (event: Event) => void;
|
|
1565
|
+
onChange: (event: Event) => void;
|
|
1566
|
+
onFocus: (event: Event) => void;
|
|
1567
|
+
onInput: (event: Event) => void;
|
|
1568
|
+
toggleHidden: () => void;
|
|
1569
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide")[], "change" | "input" | "focus" | "blur" | "click" | "keydown" | "keypress" | "keyup" | "click:hide", PublicProps, Readonly< ExtractPropTypes<{
|
|
1570
|
+
id: {
|
|
1571
|
+
type: PropType<string | null>;
|
|
1572
|
+
default: null;
|
|
1573
|
+
};
|
|
1574
|
+
label: {
|
|
1575
|
+
type: PropType<string | null>;
|
|
1576
|
+
default: null;
|
|
1577
|
+
};
|
|
1578
|
+
ariaLabel: {
|
|
1579
|
+
type: PropType<string | null>;
|
|
1580
|
+
default: null;
|
|
1581
|
+
};
|
|
1582
|
+
placeholder: {
|
|
1583
|
+
type: StringConstructor;
|
|
1584
|
+
default: string;
|
|
1585
|
+
};
|
|
1586
|
+
type: {
|
|
1587
|
+
type: PropType<"text" | "password" | "email" | "tel" | "url" | "search" | "number" | "decimal" | "numeric">;
|
|
1588
|
+
default: string;
|
|
1589
|
+
};
|
|
1590
|
+
clearable: {
|
|
1591
|
+
type: BooleanConstructor;
|
|
1592
|
+
default: boolean;
|
|
1593
|
+
};
|
|
1594
|
+
size: {
|
|
1595
|
+
type: PropType<"medium" | "large">;
|
|
1596
|
+
default: string;
|
|
1597
|
+
};
|
|
1598
|
+
inputmode: {
|
|
1599
|
+
type: PropType<"text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal">;
|
|
1600
|
+
default: undefined;
|
|
1601
|
+
};
|
|
1602
|
+
minlength: {
|
|
1603
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1604
|
+
default: undefined;
|
|
1605
|
+
};
|
|
1606
|
+
maxlength: {
|
|
1607
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1608
|
+
default: undefined;
|
|
1609
|
+
};
|
|
1610
|
+
disabled: {
|
|
1611
|
+
type: BooleanConstructor;
|
|
1612
|
+
default: boolean;
|
|
1613
|
+
};
|
|
1614
|
+
hideable: {
|
|
1615
|
+
type: BooleanConstructor;
|
|
1616
|
+
default: boolean;
|
|
1617
|
+
};
|
|
1618
|
+
hideLabel: {
|
|
1619
|
+
type: BooleanConstructor;
|
|
1620
|
+
default: boolean;
|
|
1621
|
+
};
|
|
1622
|
+
hideDetails: {
|
|
1623
|
+
type: PropType<boolean | "auto">;
|
|
1624
|
+
default: boolean;
|
|
1625
|
+
};
|
|
1626
|
+
value: {
|
|
1627
|
+
type: StringConstructor;
|
|
1628
|
+
default: string;
|
|
1629
|
+
};
|
|
1630
|
+
dataTest: {
|
|
1631
|
+
type: StringConstructor;
|
|
1632
|
+
default: string;
|
|
1633
|
+
};
|
|
1634
|
+
counter: {
|
|
1635
|
+
type: PropType<number | null>;
|
|
1636
|
+
default: null;
|
|
1637
|
+
};
|
|
1638
|
+
counterValue: {
|
|
1639
|
+
type: PropType<number | (() => number | null)>;
|
|
1640
|
+
default: null;
|
|
1641
|
+
};
|
|
1642
|
+
rules: {
|
|
1643
|
+
type: PropType<Rules<string>>;
|
|
1644
|
+
default: () => never[];
|
|
1645
|
+
};
|
|
1646
|
+
validateOnBlur: {
|
|
1647
|
+
type: BooleanConstructor;
|
|
1648
|
+
default: boolean;
|
|
1649
|
+
};
|
|
1650
|
+
required: {
|
|
1651
|
+
type: BooleanConstructor;
|
|
1652
|
+
default: boolean;
|
|
1653
|
+
};
|
|
1654
|
+
errorMessage: {
|
|
1655
|
+
type: StringConstructor;
|
|
1656
|
+
default: null;
|
|
1657
|
+
};
|
|
1658
|
+
}>> & Readonly<{
|
|
1659
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1660
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1661
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1662
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
1663
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
1664
|
+
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
1665
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
1666
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1667
|
+
"onClick:hide"?: ((...args: any[]) => any) | undefined;
|
|
1668
|
+
}>, {
|
|
1669
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | "decimal" | "numeric";
|
|
1670
|
+
label: string | null;
|
|
1671
|
+
id: string | null;
|
|
1672
|
+
value: string;
|
|
1673
|
+
size: "large" | "medium";
|
|
1674
|
+
dataTest: string;
|
|
1675
|
+
placeholder: string;
|
|
1676
|
+
disabled: boolean;
|
|
1677
|
+
ariaLabel: string | null;
|
|
1678
|
+
rules: Rules<string>;
|
|
1679
|
+
required: boolean;
|
|
1680
|
+
hideDetails: boolean | "auto";
|
|
1681
|
+
counter: number | null;
|
|
1682
|
+
counterValue: number | (() => number | null);
|
|
1683
|
+
clearable: boolean;
|
|
1684
|
+
inputmode: "text" | "search" | "none" | "email" | "tel" | "url" | "decimal" | "numeric";
|
|
1685
|
+
minlength: string | number;
|
|
1686
|
+
maxlength: string | number;
|
|
1687
|
+
hideable: boolean;
|
|
1688
|
+
hideLabel: boolean;
|
|
1689
|
+
validateOnBlur: boolean;
|
|
1690
|
+
errorMessage: string;
|
|
1691
|
+
}, {}, {
|
|
1692
|
+
CFormFieldCounter: DefineComponent<ExtractPropTypes<{
|
|
1693
|
+
counter: {
|
|
1694
|
+
type: PropType<number | null>;
|
|
1695
|
+
default: null;
|
|
1696
|
+
};
|
|
1697
|
+
counterValue: {
|
|
1698
|
+
type: PropType<number | (() => number | null)>;
|
|
1699
|
+
default: null;
|
|
1700
|
+
};
|
|
1701
|
+
value: {
|
|
1702
|
+
type: StringConstructor;
|
|
1703
|
+
default: string;
|
|
1704
|
+
};
|
|
1705
|
+
}>, {
|
|
1706
|
+
numerator: ComputedRef<number | null>;
|
|
1707
|
+
displayText: ComputedRef<string>;
|
|
1708
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
1709
|
+
counter: {
|
|
1710
|
+
type: PropType<number | null>;
|
|
1711
|
+
default: null;
|
|
1712
|
+
};
|
|
1713
|
+
counterValue: {
|
|
1714
|
+
type: PropType<number | (() => number | null)>;
|
|
1715
|
+
default: null;
|
|
1716
|
+
};
|
|
1717
|
+
value: {
|
|
1718
|
+
type: StringConstructor;
|
|
1719
|
+
default: string;
|
|
1720
|
+
};
|
|
1721
|
+
}>> & Readonly<{}>, {
|
|
1722
|
+
value: string;
|
|
1723
|
+
counter: number | null;
|
|
1724
|
+
counterValue: number | (() => number | null);
|
|
1725
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1726
|
+
CIconButton: DefineComponent<ExtractPropTypes<{
|
|
1727
|
+
ariaLabel: {
|
|
1728
|
+
type: StringConstructor;
|
|
1729
|
+
default: undefined;
|
|
1730
|
+
};
|
|
1731
|
+
ariaLabelledby: {
|
|
1732
|
+
type: StringConstructor;
|
|
1733
|
+
default: undefined;
|
|
1734
|
+
};
|
|
1735
|
+
disabled: {
|
|
1736
|
+
type: BooleanConstructor;
|
|
1737
|
+
default: boolean;
|
|
1738
|
+
};
|
|
1739
|
+
href: {
|
|
1740
|
+
type: StringConstructor;
|
|
1741
|
+
default: undefined;
|
|
1742
|
+
};
|
|
1743
|
+
icon: {
|
|
1744
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1745
|
+
default: undefined;
|
|
1746
|
+
};
|
|
1747
|
+
large: {
|
|
1748
|
+
type: BooleanConstructor;
|
|
1749
|
+
default: boolean;
|
|
1750
|
+
deprecated: boolean;
|
|
1751
|
+
};
|
|
1752
|
+
level: {
|
|
1753
|
+
type: PropType< ButtonLevel>;
|
|
1754
|
+
default: string;
|
|
1755
|
+
};
|
|
1756
|
+
loading: {
|
|
1757
|
+
type: BooleanConstructor;
|
|
1758
|
+
default: boolean;
|
|
1759
|
+
};
|
|
1760
|
+
secondary: {
|
|
1761
|
+
type: BooleanConstructor;
|
|
1762
|
+
default: boolean;
|
|
1763
|
+
deprecated: boolean;
|
|
1764
|
+
};
|
|
1765
|
+
size: {
|
|
1766
|
+
type: PropType< ButtonSize>;
|
|
1767
|
+
default: string;
|
|
1768
|
+
};
|
|
1769
|
+
spinIcon: {
|
|
1770
|
+
type: BooleanConstructor;
|
|
1771
|
+
default: boolean;
|
|
1772
|
+
};
|
|
1773
|
+
target: {
|
|
1774
|
+
type: StringConstructor;
|
|
1775
|
+
default: undefined;
|
|
1776
|
+
};
|
|
1777
|
+
tertiary: {
|
|
1778
|
+
type: BooleanConstructor;
|
|
1779
|
+
default: boolean;
|
|
1780
|
+
deprecated: boolean;
|
|
1781
|
+
};
|
|
1782
|
+
to: {
|
|
1783
|
+
type: PropType< RouteLocationRaw>;
|
|
1784
|
+
default: undefined;
|
|
1785
|
+
};
|
|
1786
|
+
variant: {
|
|
1787
|
+
type: PropType< ButtonVariant>;
|
|
1788
|
+
default: string;
|
|
1789
|
+
};
|
|
1790
|
+
}>, {
|
|
1791
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
1792
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
1793
|
+
inheritColor: Ref<boolean, boolean> | undefined;
|
|
1794
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
1795
|
+
ariaLabel: {
|
|
1796
|
+
type: StringConstructor;
|
|
1797
|
+
default: undefined;
|
|
1798
|
+
};
|
|
1799
|
+
ariaLabelledby: {
|
|
1800
|
+
type: StringConstructor;
|
|
1801
|
+
default: undefined;
|
|
1802
|
+
};
|
|
1803
|
+
disabled: {
|
|
1804
|
+
type: BooleanConstructor;
|
|
1805
|
+
default: boolean;
|
|
1806
|
+
};
|
|
1807
|
+
href: {
|
|
1808
|
+
type: StringConstructor;
|
|
1809
|
+
default: undefined;
|
|
1810
|
+
};
|
|
1811
|
+
icon: {
|
|
1812
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1813
|
+
default: undefined;
|
|
1814
|
+
};
|
|
1815
|
+
large: {
|
|
1816
|
+
type: BooleanConstructor;
|
|
1817
|
+
default: boolean;
|
|
1818
|
+
deprecated: boolean;
|
|
1819
|
+
};
|
|
1820
|
+
level: {
|
|
1821
|
+
type: PropType< ButtonLevel>;
|
|
1822
|
+
default: string;
|
|
1823
|
+
};
|
|
1824
|
+
loading: {
|
|
1825
|
+
type: BooleanConstructor;
|
|
1826
|
+
default: boolean;
|
|
1827
|
+
};
|
|
1828
|
+
secondary: {
|
|
1829
|
+
type: BooleanConstructor;
|
|
1830
|
+
default: boolean;
|
|
1831
|
+
deprecated: boolean;
|
|
1832
|
+
};
|
|
1833
|
+
size: {
|
|
1834
|
+
type: PropType< ButtonSize>;
|
|
1835
|
+
default: string;
|
|
1836
|
+
};
|
|
1837
|
+
spinIcon: {
|
|
1838
|
+
type: BooleanConstructor;
|
|
1839
|
+
default: boolean;
|
|
1840
|
+
};
|
|
1841
|
+
target: {
|
|
1842
|
+
type: StringConstructor;
|
|
1843
|
+
default: undefined;
|
|
1844
|
+
};
|
|
1845
|
+
tertiary: {
|
|
1846
|
+
type: BooleanConstructor;
|
|
1847
|
+
default: boolean;
|
|
1848
|
+
deprecated: boolean;
|
|
1849
|
+
};
|
|
1850
|
+
to: {
|
|
1851
|
+
type: PropType< RouteLocationRaw>;
|
|
1852
|
+
default: undefined;
|
|
1853
|
+
};
|
|
1854
|
+
variant: {
|
|
1855
|
+
type: PropType< ButtonVariant>;
|
|
1856
|
+
default: string;
|
|
1857
|
+
};
|
|
1858
|
+
}>> & Readonly<{
|
|
1859
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1860
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1861
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1862
|
+
}>, {
|
|
1863
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
1864
|
+
size: ButtonSize;
|
|
1865
|
+
icon: string | string[] | IconDefinition;
|
|
1866
|
+
target: string;
|
|
1867
|
+
tertiary: boolean;
|
|
1868
|
+
loading: boolean;
|
|
1869
|
+
large: boolean;
|
|
1870
|
+
disabled: boolean;
|
|
1871
|
+
ariaLabel: string;
|
|
1872
|
+
secondary: boolean;
|
|
1873
|
+
href: string;
|
|
1874
|
+
level: ButtonLevel;
|
|
1875
|
+
variant: ButtonVariant;
|
|
1876
|
+
ariaLabelledby: string;
|
|
1877
|
+
spinIcon: boolean;
|
|
1878
|
+
}, {}, {
|
|
1879
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
1880
|
+
CButton: DefineComponent<ExtractPropTypes<{
|
|
1881
|
+
block: {
|
|
1882
|
+
type: BooleanConstructor;
|
|
1883
|
+
default: boolean;
|
|
1884
|
+
};
|
|
1885
|
+
disabled: {
|
|
1886
|
+
type: BooleanConstructor;
|
|
1887
|
+
default: boolean;
|
|
1888
|
+
};
|
|
1889
|
+
href: {
|
|
1890
|
+
type: StringConstructor;
|
|
1891
|
+
default: undefined;
|
|
1892
|
+
};
|
|
1893
|
+
icon: {
|
|
1894
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1895
|
+
default: undefined;
|
|
1896
|
+
};
|
|
1897
|
+
iconPosition: {
|
|
1898
|
+
type: PropType< ButtonIconPosition>;
|
|
1899
|
+
default: string;
|
|
1900
|
+
validator: (value: string) => boolean;
|
|
1901
|
+
};
|
|
1902
|
+
large: {
|
|
1903
|
+
type: BooleanConstructor;
|
|
1904
|
+
default: boolean;
|
|
1905
|
+
deprecated: boolean;
|
|
1906
|
+
};
|
|
1907
|
+
level: {
|
|
1908
|
+
type: PropType< ButtonLevel>;
|
|
1909
|
+
default: string;
|
|
1910
|
+
validator: (value: string) => boolean;
|
|
1911
|
+
};
|
|
1912
|
+
loading: {
|
|
1913
|
+
type: BooleanConstructor;
|
|
1914
|
+
default: boolean;
|
|
1915
|
+
};
|
|
1916
|
+
secondary: {
|
|
1917
|
+
type: BooleanConstructor;
|
|
1918
|
+
default: boolean;
|
|
1919
|
+
deprecated: boolean;
|
|
1920
|
+
};
|
|
1921
|
+
size: {
|
|
1922
|
+
type: PropType< ButtonSize>;
|
|
1923
|
+
default: string;
|
|
1924
|
+
validator: (value: string) => boolean;
|
|
1925
|
+
};
|
|
1926
|
+
target: {
|
|
1927
|
+
type: StringConstructor;
|
|
1928
|
+
default: undefined;
|
|
1929
|
+
};
|
|
1930
|
+
tertiary: {
|
|
1931
|
+
type: BooleanConstructor;
|
|
1932
|
+
default: boolean;
|
|
1933
|
+
deprecated: boolean;
|
|
1934
|
+
};
|
|
1935
|
+
to: {
|
|
1936
|
+
type: PropType< RouteLocationRaw>;
|
|
1937
|
+
default: undefined;
|
|
1938
|
+
};
|
|
1939
|
+
variant: {
|
|
1940
|
+
type: PropType< ButtonVariant>;
|
|
1941
|
+
default: string;
|
|
1942
|
+
validator: (value: string) => boolean;
|
|
1943
|
+
};
|
|
1944
|
+
}>, {
|
|
1945
|
+
animationListeners: Record<string, () => void>;
|
|
1946
|
+
button: Ref<HTMLElement | null, HTMLElement | null>;
|
|
1947
|
+
computedSize: ComputedRef<ButtonSize>;
|
|
1948
|
+
computedVariant: ComputedRef<ButtonVariant>;
|
|
1949
|
+
dataBlock: ComputedRef<true | undefined>;
|
|
1950
|
+
dataLoading: ComputedRef<true | undefined>;
|
|
1951
|
+
hasIcon: ComputedRef<boolean>;
|
|
1952
|
+
injectedOrPropBlock: ComputedRef<boolean>;
|
|
1953
|
+
injectedOrPropsLarge: ComputedRef<boolean>;
|
|
1954
|
+
onClick: (event: MouseEvent) => void;
|
|
1955
|
+
routerDestinationOrHref: ComputedRef<string | undefined>;
|
|
1956
|
+
shoelaceVariant: ComputedRef<ButtonShoelaceVariant>;
|
|
1957
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("focus" | "blur" | "click")[], "focus" | "blur" | "click", PublicProps, Readonly< ExtractPropTypes<{
|
|
1958
|
+
block: {
|
|
1959
|
+
type: BooleanConstructor;
|
|
1960
|
+
default: boolean;
|
|
1961
|
+
};
|
|
1962
|
+
disabled: {
|
|
1963
|
+
type: BooleanConstructor;
|
|
1964
|
+
default: boolean;
|
|
1965
|
+
};
|
|
1966
|
+
href: {
|
|
1967
|
+
type: StringConstructor;
|
|
1968
|
+
default: undefined;
|
|
1969
|
+
};
|
|
1970
|
+
icon: {
|
|
1971
|
+
type: PropType<string | string[] | IconDefinition>;
|
|
1972
|
+
default: undefined;
|
|
1973
|
+
};
|
|
1974
|
+
iconPosition: {
|
|
1975
|
+
type: PropType< ButtonIconPosition>;
|
|
1976
|
+
default: string;
|
|
1977
|
+
validator: (value: string) => boolean;
|
|
1978
|
+
};
|
|
1979
|
+
large: {
|
|
1980
|
+
type: BooleanConstructor;
|
|
1981
|
+
default: boolean;
|
|
1982
|
+
deprecated: boolean;
|
|
1983
|
+
};
|
|
1984
|
+
level: {
|
|
1985
|
+
type: PropType< ButtonLevel>;
|
|
1986
|
+
default: string;
|
|
1987
|
+
validator: (value: string) => boolean;
|
|
1988
|
+
};
|
|
1989
|
+
loading: {
|
|
1990
|
+
type: BooleanConstructor;
|
|
1991
|
+
default: boolean;
|
|
1992
|
+
};
|
|
1993
|
+
secondary: {
|
|
1994
|
+
type: BooleanConstructor;
|
|
1995
|
+
default: boolean;
|
|
1996
|
+
deprecated: boolean;
|
|
1997
|
+
};
|
|
1998
|
+
size: {
|
|
1999
|
+
type: PropType< ButtonSize>;
|
|
2000
|
+
default: string;
|
|
2001
|
+
validator: (value: string) => boolean;
|
|
2002
|
+
};
|
|
2003
|
+
target: {
|
|
2004
|
+
type: StringConstructor;
|
|
2005
|
+
default: undefined;
|
|
2006
|
+
};
|
|
2007
|
+
tertiary: {
|
|
2008
|
+
type: BooleanConstructor;
|
|
2009
|
+
default: boolean;
|
|
2010
|
+
deprecated: boolean;
|
|
2011
|
+
};
|
|
2012
|
+
to: {
|
|
2013
|
+
type: PropType< RouteLocationRaw>;
|
|
2014
|
+
default: undefined;
|
|
2015
|
+
};
|
|
2016
|
+
variant: {
|
|
2017
|
+
type: PropType< ButtonVariant>;
|
|
2018
|
+
default: string;
|
|
2019
|
+
validator: (value: string) => boolean;
|
|
2020
|
+
};
|
|
2021
|
+
}>> & Readonly<{
|
|
2022
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2023
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2024
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
2025
|
+
}>, {
|
|
2026
|
+
to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
|
|
2027
|
+
size: ButtonSize;
|
|
2028
|
+
icon: string | string[] | IconDefinition;
|
|
2029
|
+
target: string;
|
|
2030
|
+
tertiary: boolean;
|
|
2031
|
+
loading: boolean;
|
|
2032
|
+
block: boolean;
|
|
2033
|
+
large: boolean;
|
|
2034
|
+
disabled: boolean;
|
|
2035
|
+
secondary: boolean;
|
|
2036
|
+
href: string;
|
|
2037
|
+
iconPosition: ButtonIconPosition;
|
|
2038
|
+
level: ButtonLevel;
|
|
2039
|
+
variant: ButtonVariant;
|
|
2040
|
+
}, {}, {
|
|
2041
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
2042
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2043
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2044
|
+
CValidationMessage: DefineComponent<ExtractPropTypes<{
|
|
2045
|
+
dataTest: {
|
|
2046
|
+
type: StringConstructor;
|
|
2047
|
+
default: string;
|
|
2048
|
+
};
|
|
2049
|
+
validationMessage: {
|
|
2050
|
+
type: PropType<string | null>;
|
|
2051
|
+
default: null;
|
|
2052
|
+
};
|
|
2053
|
+
hide: {
|
|
2054
|
+
type: PropType<boolean | "auto">;
|
|
2055
|
+
default: boolean;
|
|
2056
|
+
};
|
|
2057
|
+
}>, {
|
|
2058
|
+
isHidden: ComputedRef<boolean>;
|
|
2059
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
2060
|
+
dataTest: {
|
|
2061
|
+
type: StringConstructor;
|
|
2062
|
+
default: string;
|
|
2063
|
+
};
|
|
2064
|
+
validationMessage: {
|
|
2065
|
+
type: PropType<string | null>;
|
|
2066
|
+
default: null;
|
|
2067
|
+
};
|
|
2068
|
+
hide: {
|
|
2069
|
+
type: PropType<boolean | "auto">;
|
|
2070
|
+
default: boolean;
|
|
2071
|
+
};
|
|
2072
|
+
}>> & Readonly<{}>, {
|
|
2073
|
+
dataTest: string;
|
|
2074
|
+
validationMessage: string | null;
|
|
2075
|
+
hide: boolean | "auto";
|
|
2076
|
+
}, {}, {
|
|
2077
|
+
CFadeTransition: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2078
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2079
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2080
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2081
|
+
FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
|
|
2082
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2083
|
+
export default _default;
|