@vueland/ui 0.0.1
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/components/CApp/CApp.js +46 -0
- package/dist/components/CApp/index.js +5 -0
- package/dist/components/CAutocomplete/CAutocomplete.js +163 -0
- package/dist/components/CAutocomplete/index.js +5 -0
- package/dist/components/CBtn/CBtn.js +51 -0
- package/dist/components/CBtn/index.js +5 -0
- package/dist/components/CCard/index.js +8 -0
- package/dist/components/CCheckbox/CCheckbox.js +86 -0
- package/dist/components/CCheckbox/index.js +5 -0
- package/dist/components/CDialog/CDialog.js +95 -0
- package/dist/components/CDialog/CDialogsStack.js +27 -0
- package/dist/components/CDialog/index.js +5 -0
- package/dist/components/CDialog/index2.js +5 -0
- package/dist/components/CField/CField.js +51 -0
- package/dist/components/CField/index.js +5 -0
- package/dist/components/CForm/CForm.js +45 -0
- package/dist/components/CForm/index.js +5 -0
- package/dist/components/CGrid/CCol.js +72 -0
- package/dist/components/CGrid/CRow.js +92 -0
- package/dist/components/CGrid/index.js +5 -0
- package/dist/components/CIcon/CIcon.js +78 -0
- package/dist/components/CIcon/index.js +5 -0
- package/dist/components/CInput/CInput.js +176 -0
- package/dist/components/CInput/index.js +5 -0
- package/dist/components/CItems/CItems.js +66 -0
- package/dist/components/CLabel/CLabel.js +15 -0
- package/dist/components/CList/CList.js +78 -0
- package/dist/components/CList/CListItem.js +52 -0
- package/dist/components/CList/index.js +6 -0
- package/dist/components/CList/index2.js +5 -0
- package/dist/components/CList/index3.js +5 -0
- package/dist/components/CMain/index.js +5 -0
- package/dist/components/CMenu/CMenu.js +226 -0
- package/dist/components/CMenu/index.js +5 -0
- package/dist/components/COverlay/COverlay.js +47 -0
- package/dist/components/COverlay/index.js +5 -0
- package/dist/components/CRadio/CRadio.js +59 -0
- package/dist/components/CRadio/index.js +5 -0
- package/dist/components/CScrim/index.js +16 -0
- package/dist/components/CSelect/CSelect.js +134 -0
- package/dist/components/CSelect/index.js +5 -0
- package/dist/components/CSelectControl/CSelectControl.js +61 -0
- package/dist/components/CSelectControl/index.js +5 -0
- package/dist/components/CTextField/CTextField.js +71 -0
- package/dist/components/CTextField/index.js +5 -0
- package/dist/components/CToolbar/CToolbar.js +29 -0
- package/dist/components/CToolbar/index.js +6 -0
- package/dist/components/CToolbar/index2.js +5 -0
- package/dist/components/CTooltip/CTooltip.js +36 -0
- package/dist/components/CTooltip/index.js +5 -0
- package/dist/components/index.d.ts +779 -0
- package/dist/components/index.js +30 -0
- package/dist/composables/index.d.ts +379 -0
- package/dist/composables/index.js +22 -0
- package/dist/composables/use-activator.js +47 -0
- package/dist/composables/use-app-scroll.js +55 -0
- package/dist/composables/use-application.js +8 -0
- package/dist/composables/use-auto-position.js +240 -0
- package/dist/composables/use-autocomplete.js +34 -0
- package/dist/composables/use-button-presets.js +19 -0
- package/dist/composables/use-core.js +8 -0
- package/dist/composables/use-delay-actions.js +16 -0
- package/dist/composables/use-dialogs-stack.js +43 -0
- package/dist/composables/use-display.js +73 -0
- package/dist/composables/use-effect.js +30 -0
- package/dist/composables/use-field-attrs.js +43 -0
- package/dist/composables/use-form.js +8 -0
- package/dist/composables/use-icon.js +54 -0
- package/dist/composables/use-input-presets.js +30 -0
- package/dist/composables/use-input-state.js +41 -0
- package/dist/composables/use-input-value.js +18 -0
- package/dist/composables/use-menu-presets.js +17 -0
- package/dist/composables/use-overlay-stack.js +23 -0
- package/dist/composables/use-position-classes.js +12 -0
- package/dist/composables/use-presets.js +12 -0
- package/dist/composables/use-toggle.js +11 -0
- package/dist/composables/use-validate.js +54 -0
- package/dist/constants/breakpoints.js +12 -0
- package/dist/constants/icons.js +23 -0
- package/dist/constants/index.d.ts +97 -0
- package/dist/constants/index.js +3 -0
- package/dist/constants/provide-keys.js +9 -0
- package/dist/css/themes/default-theme.css +1 -0
- package/dist/css/themes/default-theme.js +3 -0
- package/dist/css/utils/_colors.css +1 -0
- package/dist/css/utils/_colors.js +3 -0
- package/dist/css/utils/_cursor.css +1 -0
- package/dist/css/utils/_cursor.js +3 -0
- package/dist/css/utils/_display.css +1 -0
- package/dist/css/utils/_display.js +3 -0
- package/dist/css/utils/_elevations.css +1 -0
- package/dist/css/utils/_elevations.js +3 -0
- package/dist/css/utils/_flex.css +1 -0
- package/dist/css/utils/_flex.js +3 -0
- package/dist/css/utils/_helpers.css +1 -0
- package/dist/css/utils/_helpers.js +3 -0
- package/dist/css/utils/_opacity.css +1 -0
- package/dist/css/utils/_opacity.js +3 -0
- package/dist/css/utils/_overflow.css +1 -0
- package/dist/css/utils/_overflow.js +3 -0
- package/dist/css/utils/_positions.css +1 -0
- package/dist/css/utils/_positions.js +3 -0
- package/dist/css/utils/_radius.css +1 -0
- package/dist/css/utils/_radius.js +3 -0
- package/dist/css/utils/_sizing.css +1 -0
- package/dist/css/utils/_sizing.js +3 -0
- package/dist/css/utils/_spaces.css +1 -0
- package/dist/css/utils/_spaces.js +3 -0
- package/dist/css/utils/_text.css +1 -0
- package/dist/css/utils/_text.js +3 -0
- package/dist/css/utils/_transitions.css +1 -0
- package/dist/css/utils/_transitions.js +3 -0
- package/dist/css/utils/_typography.css +1 -0
- package/dist/css/utils/_typography.js +3 -0
- package/dist/directives/index.d.ts +8 -0
- package/dist/directives/index.js +1 -0
- package/dist/directives/v-click-outside.js +34 -0
- package/dist/enums/BreakpointLabels.js +11 -0
- package/dist/enums/IconName.js +15 -0
- package/dist/enums/index.d.ts +22 -0
- package/dist/enums/index.js +2 -0
- package/dist/helpers/index.js +17 -0
- package/dist/index.js +16 -0
- package/dist/library.js +58 -0
- package/dist/styles.css +1 -0
- package/dist/temp-types/src/components/CApp/CApp.vue.d.ts +13 -0
- package/dist/temp-types/src/components/CApp/CApp.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CApp/index.d.ts +3 -0
- package/dist/temp-types/src/components/CApp/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CApp/types.d.ts +7 -0
- package/dist/temp-types/src/components/CApp/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/index.d.ts +3 -0
- package/dist/temp-types/src/components/CAutocomplete/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/types.d.ts +18 -0
- package/dist/temp-types/src/components/CAutocomplete/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts +14 -0
- package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/index.d.ts +2 -0
- package/dist/temp-types/src/components/CBtn/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/types.d.ts +6 -0
- package/dist/temp-types/src/components/CBtn/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCard/index.d.ts +5 -0
- package/dist/temp-types/src/components/CCard/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts +23 -0
- package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/index.d.ts +3 -0
- package/dist/temp-types/src/components/CCheckbox/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/types.d.ts +17 -0
- package/dist/temp-types/src/components/CCheckbox/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/CDialogsStack.vue.d.ts +3 -0
- package/dist/temp-types/src/components/CDialog/CDialogsStack.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/index.d.ts +4 -0
- package/dist/temp-types/src/components/CDialog/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/types.d.ts +9 -0
- package/dist/temp-types/src/components/CDialog/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CField/CField.vue.d.ts +17 -0
- package/dist/temp-types/src/components/CField/CField.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CField/index.d.ts +2 -0
- package/dist/temp-types/src/components/CField/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/CForm.vue.d.ts +18 -0
- package/dist/temp-types/src/components/CForm/CForm.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/index.d.ts +3 -0
- package/dist/temp-types/src/components/CForm/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/types.d.ts +12 -0
- package/dist/temp-types/src/components/CForm/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/CCol.d.ts +33 -0
- package/dist/temp-types/src/components/CGrid/CCol.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/CRow.d.ts +49 -0
- package/dist/temp-types/src/components/CGrid/CRow.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/index.d.ts +4 -0
- package/dist/temp-types/src/components/CGrid/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/CIcon.vue.d.ts +4 -0
- package/dist/temp-types/src/components/CIcon/CIcon.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/index.d.ts +2 -0
- package/dist/temp-types/src/components/CIcon/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/types.d.ts +17 -0
- package/dist/temp-types/src/components/CIcon/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/CInput.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CInput/CInput.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/index.d.ts +3 -0
- package/dist/temp-types/src/components/CInput/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/types.d.ts +38 -0
- package/dist/temp-types/src/components/CInput/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CItems/CItems.d.ts +16 -0
- package/dist/temp-types/src/components/CItems/CItems.d.ts.map +1 -0
- package/dist/temp-types/src/components/CItems/index.d.ts +2 -0
- package/dist/temp-types/src/components/CItems/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/CLabel.d.ts +4 -0
- package/dist/temp-types/src/components/CLabel/CLabel.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/index.d.ts +3 -0
- package/dist/temp-types/src/components/CLabel/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/types.d.ts +4 -0
- package/dist/temp-types/src/components/CLabel/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/CList.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CList/CList.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/CListItem.vue.d.ts +18 -0
- package/dist/temp-types/src/components/CList/CListItem.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/index.d.ts +6 -0
- package/dist/temp-types/src/components/CList/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/types.d.ts +15 -0
- package/dist/temp-types/src/components/CList/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMain/index.d.ts +2 -0
- package/dist/temp-types/src/components/CMain/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts +46 -0
- package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/index.d.ts +3 -0
- package/dist/temp-types/src/components/CMenu/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/types.d.ts +25 -0
- package/dist/temp-types/src/components/CMenu/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/COverlay.vue.d.ts +19 -0
- package/dist/temp-types/src/components/COverlay/COverlay.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/index.d.ts +3 -0
- package/dist/temp-types/src/components/COverlay/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/tyoes.d.ts +11 -0
- package/dist/temp-types/src/components/COverlay/tyoes.d.ts.map +1 -0
- package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts +22 -0
- package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CRadio/index.d.ts +2 -0
- package/dist/temp-types/src/components/CRadio/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CScrim/index.d.ts +7 -0
- package/dist/temp-types/src/components/CScrim/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/index.d.ts +3 -0
- package/dist/temp-types/src/components/CSelect/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/types.d.ts +17 -0
- package/dist/temp-types/src/components/CSelect/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/index.d.ts +3 -0
- package/dist/temp-types/src/components/CSelectControl/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/types.d.ts +19 -0
- package/dist/temp-types/src/components/CSelectControl/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTextField/index.d.ts +2 -0
- package/dist/temp-types/src/components/CTextField/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CToolbar/CToolbar.vue.d.ts +16 -0
- package/dist/temp-types/src/components/CToolbar/CToolbar.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CToolbar/index.d.ts +4 -0
- package/dist/temp-types/src/components/CToolbar/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts +23 -0
- package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTooltip/index.d.ts +2 -0
- package/dist/temp-types/src/components/CTooltip/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/index.d.ts +25 -0
- package/dist/temp-types/src/components/index.d.ts.map +1 -0
- package/dist/temp-types/src/composables/index.d.ts +23 -0
- package/dist/temp-types/src/composables/index.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-activator.d.ts +35 -0
- package/dist/temp-types/src/composables/use-activator.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-app-scroll.d.ts +11 -0
- package/dist/temp-types/src/composables/use-app-scroll.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-application.d.ts +3 -0
- package/dist/temp-types/src/composables/use-application.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-auto-position.d.ts +45 -0
- package/dist/temp-types/src/composables/use-auto-position.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-autocomplete.d.ts +6 -0
- package/dist/temp-types/src/composables/use-autocomplete.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-breakpoints.d.ts +1 -0
- package/dist/temp-types/src/composables/use-breakpoints.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-button-presets.d.ts +8 -0
- package/dist/temp-types/src/composables/use-button-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-core.d.ts +3 -0
- package/dist/temp-types/src/composables/use-core.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-delay-actions.d.ts +9 -0
- package/dist/temp-types/src/composables/use-delay-actions.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-dialogs-stack.d.ts +19 -0
- package/dist/temp-types/src/composables/use-dialogs-stack.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-display.d.ts +61 -0
- package/dist/temp-types/src/composables/use-display.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-effect.d.ts +11 -0
- package/dist/temp-types/src/composables/use-effect.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-field-attrs.d.ts +10 -0
- package/dist/temp-types/src/composables/use-field-attrs.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-form.d.ts +2 -0
- package/dist/temp-types/src/composables/use-form.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-icon.d.ts +22 -0
- package/dist/temp-types/src/composables/use-icon.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-presets.d.ts +13 -0
- package/dist/temp-types/src/composables/use-input-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-state.d.ts +17 -0
- package/dist/temp-types/src/composables/use-input-state.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-value.d.ts +3 -0
- package/dist/temp-types/src/composables/use-input-value.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-menu-presets.d.ts +7 -0
- package/dist/temp-types/src/composables/use-menu-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-overlay-stack.d.ts +5 -0
- package/dist/temp-types/src/composables/use-overlay-stack.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-position-classes.d.ts +10 -0
- package/dist/temp-types/src/composables/use-position-classes.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-presets.d.ts +7 -0
- package/dist/temp-types/src/composables/use-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-toggle.d.ts +3 -0
- package/dist/temp-types/src/composables/use-toggle.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-validate.d.ts +31 -0
- package/dist/temp-types/src/composables/use-validate.d.ts.map +1 -0
- package/dist/temp-types/src/constants/breakpoints.d.ts +3 -0
- package/dist/temp-types/src/constants/breakpoints.d.ts.map +1 -0
- package/dist/temp-types/src/constants/icons.d.ts +29 -0
- package/dist/temp-types/src/constants/icons.d.ts.map +1 -0
- package/dist/temp-types/src/constants/index.d.ts +4 -0
- package/dist/temp-types/src/constants/index.d.ts.map +1 -0
- package/dist/temp-types/src/constants/provide-keys.d.ts +11 -0
- package/dist/temp-types/src/constants/provide-keys.d.ts.map +1 -0
- package/dist/temp-types/src/directives/index.d.ts +2 -0
- package/dist/temp-types/src/directives/index.d.ts.map +1 -0
- package/dist/temp-types/src/directives/v-click-outside.d.ts +7 -0
- package/dist/temp-types/src/directives/v-click-outside.d.ts.map +1 -0
- package/dist/temp-types/src/enums/BreakpointLabels.d.ts +9 -0
- package/dist/temp-types/src/enums/BreakpointLabels.d.ts.map +1 -0
- package/dist/temp-types/src/enums/IconName.d.ts +12 -0
- package/dist/temp-types/src/enums/IconName.d.ts.map +1 -0
- package/dist/temp-types/src/enums/index.d.ts +3 -0
- package/dist/temp-types/src/enums/index.d.ts.map +1 -0
- package/dist/temp-types/src/helpers/index.d.ts +5 -0
- package/dist/temp-types/src/helpers/index.d.ts.map +1 -0
- package/dist/temp-types/src/index.d.ts +6 -0
- package/dist/temp-types/src/index.d.ts.map +1 -0
- package/dist/temp-types/src/library.d.ts +22 -0
- package/dist/temp-types/src/library.d.ts.map +1 -0
- package/dist/temp-types/src/types/index.d.ts +4 -0
- package/dist/temp-types/src/types/index.d.ts.map +1 -0
- package/dist/temp-types/src/types/presets.d.ts +64 -0
- package/dist/temp-types/src/types/presets.d.ts.map +1 -0
- package/dist/temp-types/src/types/props.d.ts +9 -0
- package/dist/temp-types/src/types/props.d.ts.map +1 -0
- package/dist/temp-types/src/types/utils.d.ts +2 -0
- package/dist/temp-types/src/types/utils.d.ts.map +1 -0
- package/dist/temp-types/src/utils/compile-css-classes.d.ts +16 -0
- package/dist/temp-types/src/utils/compile-css-classes.d.ts.map +1 -0
- package/dist/temp-types/src/utils/convert-to-unit.d.ts +2 -0
- package/dist/temp-types/src/utils/convert-to-unit.d.ts.map +1 -0
- package/dist/temp-types/src/utils/create-simple-functional.d.ts +6 -0
- package/dist/temp-types/src/utils/create-simple-functional.d.ts.map +1 -0
- package/dist/temp-types/src/utils/define-preset.d.ts +2 -0
- package/dist/temp-types/src/utils/define-preset.d.ts.map +1 -0
- package/dist/temp-types/src/utils/globals.d.ts +2 -0
- package/dist/temp-types/src/utils/globals.d.ts.map +1 -0
- package/dist/temp-types/src/utils/index.d.ts +6 -0
- package/dist/temp-types/src/utils/index.d.ts.map +1 -0
- package/dist/temp-types/src/utils/throttle.d.ts +2 -0
- package/dist/temp-types/src/utils/throttle.d.ts.map +1 -0
- package/dist/temp-types/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types.d.ts +101 -0
- package/dist/utils/compile-css-classes.js +271 -0
- package/dist/utils/convert-to-unit.js +9 -0
- package/dist/utils/create-simple-functional.js +34 -0
- package/dist/utils/globals.js +3 -0
- package/dist/utils/index.d.ts +30 -0
- package/dist/utils/index.js +5 -0
- package/dist/utils/throttle.js +19 -0
- package/package.json +100 -0
|
@@ -0,0 +1,779 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { VNode, Component, FunctionalComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
declare var __VLS_1$4: {};
|
|
5
|
+
type __VLS_Slots$8 = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1$4) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component$8: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
declare const _default$j: __VLS_WithSlots$8<typeof __VLS_component$8, __VLS_Slots$8>;
|
|
10
|
+
|
|
11
|
+
type __VLS_WithSlots$8<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=CApp.vue.d.ts.map
|
|
17
|
+
|
|
18
|
+
type ApplicationApi = {
|
|
19
|
+
blockScroll(): void;
|
|
20
|
+
unblockScroll(): void;
|
|
21
|
+
getScrollTop(): number;
|
|
22
|
+
getScrollLeft(): number;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
type Maybe<T> = T | undefined;
|
|
26
|
+
|
|
27
|
+
interface DimensionsProps {
|
|
28
|
+
width?: number | string;
|
|
29
|
+
height?: number | string;
|
|
30
|
+
minWidth?: number | string;
|
|
31
|
+
maxWidth?: number | string;
|
|
32
|
+
minHeight?: number | string;
|
|
33
|
+
maxHeight?: number | string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
type InputStateProps = {
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
focused?: boolean;
|
|
39
|
+
readonly?: boolean;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
type ValidateFn = (value: any) => ({
|
|
43
|
+
valid: boolean;
|
|
44
|
+
message: string;
|
|
45
|
+
});
|
|
46
|
+
type ValidateOn = 'input' | 'blur';
|
|
47
|
+
type ValidateProps = {
|
|
48
|
+
rules?: ValidateFn[];
|
|
49
|
+
validateOn?: ValidateOn;
|
|
50
|
+
};
|
|
51
|
+
type ValidateState = {
|
|
52
|
+
errorMessage: Maybe<string>;
|
|
53
|
+
hasError: boolean;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
type ActivatorProps = {
|
|
57
|
+
closeOnClick?: boolean;
|
|
58
|
+
openOnClick?: boolean;
|
|
59
|
+
openOnHover?: boolean;
|
|
60
|
+
closeOnLeave?: boolean;
|
|
61
|
+
openOnFocus?: boolean;
|
|
62
|
+
};
|
|
63
|
+
type ActivatorListeners = {
|
|
64
|
+
mouseenter?: (e: Event) => void;
|
|
65
|
+
mouseleave?: (e: Event) => void;
|
|
66
|
+
mouseover?: (e: Event) => void;
|
|
67
|
+
mouseout?: (e: Event) => void;
|
|
68
|
+
contextmenu?: (e: Event) => void;
|
|
69
|
+
focus?: (e: Event) => void;
|
|
70
|
+
blur?: (e: Event) => void;
|
|
71
|
+
click?: (e: Event) => void;
|
|
72
|
+
input?: (e: Event) => void;
|
|
73
|
+
change?: (e: Event) => void;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
interface PositionProps {
|
|
77
|
+
left?: boolean;
|
|
78
|
+
right?: boolean;
|
|
79
|
+
top?: boolean;
|
|
80
|
+
bottom?: boolean;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
type DelayProps = {
|
|
84
|
+
openDelay?: number | string;
|
|
85
|
+
closeDelay?: number | string;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
interface CoordsProps {
|
|
89
|
+
positionX?: number;
|
|
90
|
+
positionY?: number;
|
|
91
|
+
offsetX?: number | string;
|
|
92
|
+
offsetY?: number | string;
|
|
93
|
+
}
|
|
94
|
+
interface AutoPositionProps {
|
|
95
|
+
strategy?: 'reverse' | 'bounce';
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
type PresetProps = {
|
|
99
|
+
preset?: string;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
type CBtnProps = PresetProps & {
|
|
103
|
+
variant?: 'flat' | 'outlined';
|
|
104
|
+
block?: boolean;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
declare var __VLS_1$3: {};
|
|
108
|
+
type __VLS_Slots$7 = {} & {
|
|
109
|
+
default?: (props: typeof __VLS_1$3) => any;
|
|
110
|
+
};
|
|
111
|
+
declare const __VLS_component$7: vue.DefineComponent<CBtnProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CBtnProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
112
|
+
declare const _default$i: __VLS_WithSlots$7<typeof __VLS_component$7, __VLS_Slots$7>;
|
|
113
|
+
|
|
114
|
+
type __VLS_WithSlots$7<T, S> = T & {
|
|
115
|
+
new (): {
|
|
116
|
+
$slots: S;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
//# sourceMappingURL=CBtn.vue.d.ts.map
|
|
120
|
+
|
|
121
|
+
declare function validate(): Promise<boolean>;
|
|
122
|
+
declare var __VLS_1$2: {
|
|
123
|
+
validate: typeof validate;
|
|
124
|
+
};
|
|
125
|
+
type __VLS_Slots$6 = {} & {
|
|
126
|
+
default?: (props: typeof __VLS_1$2) => any;
|
|
127
|
+
};
|
|
128
|
+
declare const __VLS_component$6: vue.DefineComponent<{}, {
|
|
129
|
+
validate: typeof validate;
|
|
130
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
131
|
+
declare const _default$h: __VLS_WithSlots$6<typeof __VLS_component$6, __VLS_Slots$6>;
|
|
132
|
+
|
|
133
|
+
type __VLS_WithSlots$6<T, S> = T & {
|
|
134
|
+
new (): {
|
|
135
|
+
$slots: S;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
//# sourceMappingURL=CForm.vue.d.ts.map
|
|
139
|
+
|
|
140
|
+
type ValidatorFn = () => boolean;
|
|
141
|
+
interface FormApi {
|
|
142
|
+
add(fn: ValidatorFn): void;
|
|
143
|
+
remove(fn: ValidatorFn): void;
|
|
144
|
+
}
|
|
145
|
+
type FormSlots = {
|
|
146
|
+
default(props: {
|
|
147
|
+
validate: ValidatorFn;
|
|
148
|
+
}): VNode;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
type CInputProps<T = any> = ValidateProps & InputStateProps & PresetProps & {
|
|
152
|
+
id?: string;
|
|
153
|
+
modelValue: T;
|
|
154
|
+
label?: string;
|
|
155
|
+
details?: string;
|
|
156
|
+
noDetails?: boolean;
|
|
157
|
+
clearable?: boolean;
|
|
158
|
+
};
|
|
159
|
+
type CInputSlots = {
|
|
160
|
+
label?(props: {
|
|
161
|
+
uid: string;
|
|
162
|
+
}): VNode | string;
|
|
163
|
+
prepend?(): VNode | string;
|
|
164
|
+
append?(): VNode | string;
|
|
165
|
+
details?(props: {
|
|
166
|
+
errorMessage: ValidateState['errorMessage'];
|
|
167
|
+
hasError: ValidateState['hasError'];
|
|
168
|
+
uid: string;
|
|
169
|
+
}): VNode | string;
|
|
170
|
+
field?(props: {
|
|
171
|
+
onInput(): void;
|
|
172
|
+
onFocus(): void;
|
|
173
|
+
onBlur(): void;
|
|
174
|
+
label?: string;
|
|
175
|
+
readonly?: boolean;
|
|
176
|
+
focused?: boolean;
|
|
177
|
+
disabled?: boolean;
|
|
178
|
+
presets?: string[] | string[][];
|
|
179
|
+
errorMessage: ValidateState['errorMessage'];
|
|
180
|
+
hasError: ValidateState['hasError'];
|
|
181
|
+
attrs: Record<string, any>;
|
|
182
|
+
uid: string;
|
|
183
|
+
validate(): boolean;
|
|
184
|
+
}): VNode;
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
declare const _default$g: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
188
|
+
props: __VLS_PrettifyLocal$7<Pick<Partial<{}> & Omit<{} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & CInputProps<T> & Partial<{}>> & vue.PublicProps;
|
|
189
|
+
expose(exposed: vue.ShallowUnwrapRef<{
|
|
190
|
+
validate: () => boolean;
|
|
191
|
+
onFocus: () => void;
|
|
192
|
+
onBlur: () => void;
|
|
193
|
+
onInput: () => void;
|
|
194
|
+
}>): void;
|
|
195
|
+
attrs: any;
|
|
196
|
+
slots: CInputSlots;
|
|
197
|
+
emit: {};
|
|
198
|
+
}>) => vue.VNode & {
|
|
199
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
type __VLS_PrettifyLocal$7<T> = {
|
|
203
|
+
[K in keyof T]: T[K];
|
|
204
|
+
} & {};
|
|
205
|
+
//# sourceMappingURL=CInput.vue.d.ts.map
|
|
206
|
+
|
|
207
|
+
type __VLS_PublicProps$4 = {
|
|
208
|
+
modelValue?: string | number;
|
|
209
|
+
};
|
|
210
|
+
declare var __VLS_17: string | number;
|
|
211
|
+
declare var __VLS_18: any;
|
|
212
|
+
type __VLS_Slots$5 = {} & {
|
|
213
|
+
[K in NonNullable<typeof __VLS_17>]?: (props: typeof __VLS_18) => any;
|
|
214
|
+
};
|
|
215
|
+
declare const __VLS_component$5: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
216
|
+
"update:modelValue": (value: string | number | undefined) => any;
|
|
217
|
+
}, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
|
|
218
|
+
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
219
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
220
|
+
declare const _default$f: __VLS_WithSlots$5<typeof __VLS_component$5, __VLS_Slots$5>;
|
|
221
|
+
|
|
222
|
+
type __VLS_WithSlots$5<T, S> = T & {
|
|
223
|
+
new (): {
|
|
224
|
+
$slots: S;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
//# sourceMappingURL=CTextField.vue.d.ts.map
|
|
228
|
+
|
|
229
|
+
type __VLS_Props$4 = {
|
|
230
|
+
tag?: 'input' | 'textarea';
|
|
231
|
+
focused?: boolean;
|
|
232
|
+
};
|
|
233
|
+
type __VLS_PublicProps$3 = __VLS_Props$4 & {
|
|
234
|
+
modelValue?: string | number | undefined;
|
|
235
|
+
};
|
|
236
|
+
declare const _default$e: vue.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
237
|
+
"update:modelValue": (value: string | number | undefined) => any;
|
|
238
|
+
} & {
|
|
239
|
+
focus: () => any;
|
|
240
|
+
}, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
|
|
241
|
+
onFocus?: (() => any) | undefined;
|
|
242
|
+
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
243
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
244
|
+
//# sourceMappingURL=CField.vue.d.ts.map
|
|
245
|
+
|
|
246
|
+
type CAutocompleteProps<T> = {
|
|
247
|
+
modelValue: T | T[];
|
|
248
|
+
items: T[];
|
|
249
|
+
multiple?: boolean;
|
|
250
|
+
options?: {
|
|
251
|
+
extKey?: string;
|
|
252
|
+
noItemsMessage?: string;
|
|
253
|
+
menuPreset?: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
type CAutocompleteSlots<T> = {
|
|
257
|
+
menu(props: {
|
|
258
|
+
items: T[];
|
|
259
|
+
onSelect(val: T): void;
|
|
260
|
+
}): void;
|
|
261
|
+
['no-items-message'](): string;
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
declare const _default$d: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
265
|
+
props: __VLS_PrettifyLocal$6<Pick<Partial<{}> & Omit<{
|
|
266
|
+
readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
267
|
+
readonly "onUpdate:search"?: ((val: string) => any) | undefined;
|
|
268
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:search"> & (CAutocompleteProps<T> & {
|
|
269
|
+
modelValue?: T | T[];
|
|
270
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
271
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
272
|
+
attrs: any;
|
|
273
|
+
slots: CAutocompleteSlots<T>;
|
|
274
|
+
emit: ((evt: "update:search", val: string) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
|
|
275
|
+
}>) => vue.VNode & {
|
|
276
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
type __VLS_PrettifyLocal$6<T> = {
|
|
280
|
+
[K in keyof T]: T[K];
|
|
281
|
+
} & {};
|
|
282
|
+
//# sourceMappingURL=CAutocomplete.vue.d.ts.map
|
|
283
|
+
|
|
284
|
+
type CSelectProps<T> = {
|
|
285
|
+
modelValue: T | T[];
|
|
286
|
+
items: T[];
|
|
287
|
+
multiple?: boolean;
|
|
288
|
+
options?: {
|
|
289
|
+
extKey?: string;
|
|
290
|
+
noItemsMessage?: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
type CSelectSlots<T> = {
|
|
294
|
+
menu(props: {
|
|
295
|
+
items: T[];
|
|
296
|
+
onSelect(item: T): void;
|
|
297
|
+
}): void;
|
|
298
|
+
['no-items-message'](): string;
|
|
299
|
+
};
|
|
300
|
+
|
|
301
|
+
declare const _default$c: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
302
|
+
props: __VLS_PrettifyLocal$5<Pick<Partial<{}> & Omit<{
|
|
303
|
+
readonly "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
|
|
304
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CSelectProps<T> & {
|
|
305
|
+
modelValue?: T | T[];
|
|
306
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
307
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
308
|
+
attrs: any;
|
|
309
|
+
slots: CSelectSlots<T>;
|
|
310
|
+
emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
|
|
311
|
+
}>) => vue.VNode & {
|
|
312
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
313
|
+
};
|
|
314
|
+
|
|
315
|
+
type __VLS_PrettifyLocal$5<T> = {
|
|
316
|
+
[K in keyof T]: T[K];
|
|
317
|
+
} & {};
|
|
318
|
+
//# sourceMappingURL=CSelect.vue.d.ts.map
|
|
319
|
+
|
|
320
|
+
type COverlayProps = {
|
|
321
|
+
modelValue: boolean;
|
|
322
|
+
to?: string;
|
|
323
|
+
};
|
|
324
|
+
type COverlaySlots = {
|
|
325
|
+
default?(props: {
|
|
326
|
+
zIndex: number;
|
|
327
|
+
}): VNode;
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
type __VLS_Props$3 = COverlayProps;
|
|
331
|
+
type __VLS_Slots$4 = COverlaySlots;
|
|
332
|
+
type __VLS_PublicProps$2 = __VLS_Props$3 & {
|
|
333
|
+
modelValue?: boolean;
|
|
334
|
+
};
|
|
335
|
+
declare const __VLS_component$4: vue.DefineComponent<__VLS_PublicProps$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
336
|
+
"update:modelValue": (value: boolean) => any;
|
|
337
|
+
}, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
|
|
338
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
339
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
340
|
+
declare const _default$b: __VLS_WithSlots$4<typeof __VLS_component$4, __VLS_Slots$4>;
|
|
341
|
+
|
|
342
|
+
type __VLS_WithSlots$4<T, S> = T & {
|
|
343
|
+
new (): {
|
|
344
|
+
$slots: S;
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
//# sourceMappingURL=COverlay.vue.d.ts.map
|
|
348
|
+
|
|
349
|
+
type CMenuProps = ActivatorProps & CoordsProps & DimensionsProps & PositionProps & AutoPositionProps & DelayProps & PresetProps & Partial<COverlayProps> & {
|
|
350
|
+
closeOnClickOutside?: boolean;
|
|
351
|
+
closeOnContentClick?: boolean;
|
|
352
|
+
ssr?: boolean;
|
|
353
|
+
transition?: string;
|
|
354
|
+
};
|
|
355
|
+
type CMenuSlots = {
|
|
356
|
+
activator?(props: {
|
|
357
|
+
on: ActivatorListeners;
|
|
358
|
+
activator: Record<string, any>;
|
|
359
|
+
}): VNode;
|
|
360
|
+
default(): VNode;
|
|
361
|
+
};
|
|
362
|
+
type CMenuEvents = {
|
|
363
|
+
(e: 'outside-click'): void;
|
|
364
|
+
(e: 'click'): void;
|
|
365
|
+
(e: 'open'): void;
|
|
366
|
+
(e: 'close'): void;
|
|
367
|
+
(e: 'update:modelValue', val: boolean): void;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
type __VLS_Props$2 = CMenuProps;
|
|
371
|
+
type __VLS_PublicProps$1 = __VLS_Props$2 & {
|
|
372
|
+
modelValue?: boolean;
|
|
373
|
+
};
|
|
374
|
+
declare var __VLS_1$1: {
|
|
375
|
+
on: vue.Raw<{
|
|
376
|
+
focus?: (() => void) | undefined;
|
|
377
|
+
click?: (() => void) | undefined;
|
|
378
|
+
mouseleave?: (() => void) | undefined;
|
|
379
|
+
mouseenter?: (() => void) | undefined;
|
|
380
|
+
}>;
|
|
381
|
+
activator: Record<string, any>;
|
|
382
|
+
};
|
|
383
|
+
declare var __VLS_11: {};
|
|
384
|
+
type __VLS_Slots$3 = {} & {
|
|
385
|
+
activator?: (props: typeof __VLS_1$1) => any;
|
|
386
|
+
} & {
|
|
387
|
+
default?: (props: typeof __VLS_11) => any;
|
|
388
|
+
};
|
|
389
|
+
declare const __VLS_component$3: vue.DefineComponent<__VLS_PublicProps$1, {
|
|
390
|
+
open: () => Promise<void>;
|
|
391
|
+
close: () => void;
|
|
392
|
+
toggle: () => void | Promise<void>;
|
|
393
|
+
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
394
|
+
"update:modelValue": (value: boolean) => any;
|
|
395
|
+
} & {
|
|
396
|
+
click: () => any;
|
|
397
|
+
close: () => any;
|
|
398
|
+
"update:modelValue": (val: boolean) => any;
|
|
399
|
+
"outside-click": () => any;
|
|
400
|
+
open: () => any;
|
|
401
|
+
}, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
|
|
402
|
+
onClick?: (() => any) | undefined;
|
|
403
|
+
onClose?: (() => any) | undefined;
|
|
404
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
405
|
+
"onOutside-click"?: (() => any) | undefined;
|
|
406
|
+
onOpen?: (() => any) | undefined;
|
|
407
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
408
|
+
declare const _default$a: __VLS_WithSlots$3<typeof __VLS_component$3, __VLS_Slots$3>;
|
|
409
|
+
|
|
410
|
+
type __VLS_WithSlots$3<T, S> = T & {
|
|
411
|
+
new (): {
|
|
412
|
+
$slots: S;
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
//# sourceMappingURL=CMenu.vue.d.ts.map
|
|
416
|
+
|
|
417
|
+
type IconMode = 'lib' | 'sprite' | 'component' | 'raw';
|
|
418
|
+
type CIconProps = {
|
|
419
|
+
name?: string | number;
|
|
420
|
+
source?: IconMode;
|
|
421
|
+
component?: Component | null;
|
|
422
|
+
body?: string;
|
|
423
|
+
viewBox?: string;
|
|
424
|
+
size?: string | number;
|
|
425
|
+
width?: string | number;
|
|
426
|
+
height?: string | number;
|
|
427
|
+
tag?: string;
|
|
428
|
+
spritePrefix?: string;
|
|
429
|
+
spritePath?: string;
|
|
430
|
+
};
|
|
431
|
+
|
|
432
|
+
declare const _default$9: vue.DefineComponent<CIconProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CIconProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
433
|
+
//# sourceMappingURL=CIcon.vue.d.ts.map
|
|
434
|
+
|
|
435
|
+
type CCheckboxProps<T> = Omit<ValidateProps, 'validateOn'> & {
|
|
436
|
+
modelValue: T | T[] | boolean;
|
|
437
|
+
label?: string;
|
|
438
|
+
size?: number;
|
|
439
|
+
};
|
|
440
|
+
type CCheckboxSlots = {
|
|
441
|
+
icon(props: {
|
|
442
|
+
checked: boolean;
|
|
443
|
+
}): VNode;
|
|
444
|
+
default(): VNode;
|
|
445
|
+
};
|
|
446
|
+
type CCheckboxEvents<T> = {
|
|
447
|
+
(e: 'update:modelValue', value: T): void;
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
declare const _default$8: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
451
|
+
props: __VLS_PrettifyLocal$4<Pick<Partial<{}> & Omit<{
|
|
452
|
+
readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
|
|
453
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (Omit<ValidateProps, "validateOn"> & {
|
|
454
|
+
modelValue: boolean | T | T[];
|
|
455
|
+
label?: string;
|
|
456
|
+
size?: number;
|
|
457
|
+
} & {
|
|
458
|
+
modelValue?: T;
|
|
459
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
460
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
461
|
+
attrs: any;
|
|
462
|
+
slots: CCheckboxSlots;
|
|
463
|
+
emit: (evt: "update:modelValue", value: T | undefined) => void;
|
|
464
|
+
}>) => vue.VNode & {
|
|
465
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
type __VLS_PrettifyLocal$4<T> = {
|
|
469
|
+
[K in keyof T]: T[K];
|
|
470
|
+
} & {};
|
|
471
|
+
//# sourceMappingURL=CCheckbox.vue.d.ts.map
|
|
472
|
+
|
|
473
|
+
declare const _default$7: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
474
|
+
props: __VLS_PrettifyLocal$3<Pick<Partial<{}> & Omit<{
|
|
475
|
+
readonly "onUpdate:modelValue"?: ((value: T | undefined) => any) | undefined;
|
|
476
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
477
|
+
label?: string;
|
|
478
|
+
} & {
|
|
479
|
+
modelValue?: T;
|
|
480
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
481
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
482
|
+
attrs: any;
|
|
483
|
+
slots: {
|
|
484
|
+
default?: (props: {}) => any;
|
|
485
|
+
};
|
|
486
|
+
emit: (evt: "update:modelValue", value: T | undefined) => void;
|
|
487
|
+
}>) => vue.VNode & {
|
|
488
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
type __VLS_PrettifyLocal$3<T> = {
|
|
492
|
+
[K in keyof T]: T[K];
|
|
493
|
+
} & {};
|
|
494
|
+
//# sourceMappingURL=CRadio.vue.d.ts.map
|
|
495
|
+
|
|
496
|
+
declare var __VLS_6: {
|
|
497
|
+
activator: Record<string, any>;
|
|
498
|
+
on: vue.Raw<{
|
|
499
|
+
focus?: (() => void) | undefined;
|
|
500
|
+
click?: (() => void) | undefined;
|
|
501
|
+
mouseleave?: (() => void) | undefined;
|
|
502
|
+
mouseenter?: (() => void) | undefined;
|
|
503
|
+
}>;
|
|
504
|
+
};
|
|
505
|
+
declare var __VLS_8: {};
|
|
506
|
+
type __VLS_Slots$2 = {} & {
|
|
507
|
+
activator?: (props: typeof __VLS_6) => any;
|
|
508
|
+
} & {
|
|
509
|
+
default?: (props: typeof __VLS_8) => any;
|
|
510
|
+
};
|
|
511
|
+
declare const __VLS_component$2: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
512
|
+
declare const _default$6: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
|
|
513
|
+
|
|
514
|
+
type __VLS_WithSlots$2<T, S> = T & {
|
|
515
|
+
new (): {
|
|
516
|
+
$slots: S;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
//# sourceMappingURL=CTooltip.vue.d.ts.map
|
|
520
|
+
|
|
521
|
+
type CLabelProps = {
|
|
522
|
+
tag?: string;
|
|
523
|
+
};
|
|
524
|
+
|
|
525
|
+
declare const CLabel: FunctionalComponent<CLabelProps>;
|
|
526
|
+
|
|
527
|
+
type __VLS_Props$1 = {
|
|
528
|
+
fixed?: boolean;
|
|
529
|
+
};
|
|
530
|
+
declare var __VLS_1: {};
|
|
531
|
+
type __VLS_Slots$1 = {} & {
|
|
532
|
+
default?: (props: typeof __VLS_1) => any;
|
|
533
|
+
};
|
|
534
|
+
declare const __VLS_component$1: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$1> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
535
|
+
declare const _default$5: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
|
|
536
|
+
|
|
537
|
+
type __VLS_WithSlots$1<T, S> = T & {
|
|
538
|
+
new (): {
|
|
539
|
+
$slots: S;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
//# sourceMappingURL=CToolbar.vue.d.ts.map
|
|
543
|
+
|
|
544
|
+
declare const CToolbarLogo: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
545
|
+
declare const CToolbarItems: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
546
|
+
|
|
547
|
+
type CListProps<T> = {
|
|
548
|
+
modelValue?: T | T[] | null;
|
|
549
|
+
multiple?: boolean;
|
|
550
|
+
mandatory?: boolean;
|
|
551
|
+
readonly?: boolean;
|
|
552
|
+
};
|
|
553
|
+
type CListSlots<T> = {
|
|
554
|
+
default?(props: {
|
|
555
|
+
select(item: T): void;
|
|
556
|
+
unselect(item: T): void;
|
|
557
|
+
isActive(item: T): boolean;
|
|
558
|
+
}): VNode | VNode[];
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
declare const _default$4: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
562
|
+
props: __VLS_PrettifyLocal$2<Pick<Partial<{}> & Omit<{
|
|
563
|
+
readonly "onUpdate:modelValue"?: ((value: T | T[] | null) => any) | undefined;
|
|
564
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CListProps<T> & {
|
|
565
|
+
modelValue?: T | T[] | null;
|
|
566
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
567
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
568
|
+
attrs: any;
|
|
569
|
+
slots: CListSlots<T>;
|
|
570
|
+
emit: (evt: "update:modelValue", value: T | T[] | null) => void;
|
|
571
|
+
}>) => vue.VNode & {
|
|
572
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
573
|
+
};
|
|
574
|
+
|
|
575
|
+
type __VLS_PrettifyLocal$2<T> = {
|
|
576
|
+
[K in keyof T]: T[K];
|
|
577
|
+
} & {};
|
|
578
|
+
//# sourceMappingURL=CList.vue.d.ts.map
|
|
579
|
+
|
|
580
|
+
declare const _default$3: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
581
|
+
props: __VLS_PrettifyLocal$1<Pick<Partial<{}> & Omit<{} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, never> & {
|
|
582
|
+
value?: T;
|
|
583
|
+
} & Partial<{}>> & vue.PublicProps;
|
|
584
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
585
|
+
attrs: any;
|
|
586
|
+
slots: {
|
|
587
|
+
default?: (props: {}) => any;
|
|
588
|
+
};
|
|
589
|
+
emit: {};
|
|
590
|
+
}>) => vue.VNode & {
|
|
591
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
592
|
+
};
|
|
593
|
+
|
|
594
|
+
type __VLS_PrettifyLocal$1<T> = {
|
|
595
|
+
[K in keyof T]: T[K];
|
|
596
|
+
} & {};
|
|
597
|
+
//# sourceMappingURL=CListItem.vue.d.ts.map
|
|
598
|
+
|
|
599
|
+
declare const CListItemIcon: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
600
|
+
declare const CListItemTitle: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
601
|
+
|
|
602
|
+
type CItemsProps = {
|
|
603
|
+
modelValue: any;
|
|
604
|
+
multiple?: boolean;
|
|
605
|
+
mandatory?: boolean;
|
|
606
|
+
options?: {
|
|
607
|
+
extKey?: string;
|
|
608
|
+
noItemsMessage?: string;
|
|
609
|
+
menuClass?: string;
|
|
610
|
+
};
|
|
611
|
+
items: any[];
|
|
612
|
+
};
|
|
613
|
+
type CItemsSlots = {
|
|
614
|
+
'no-items-message'?: () => any;
|
|
615
|
+
};
|
|
616
|
+
declare const CItems: vue.DefineComponent<CItemsProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<CItemsProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
617
|
+
|
|
618
|
+
declare const CMain: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
619
|
+
|
|
620
|
+
declare const CCard: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
621
|
+
declare const CCardHeader: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
622
|
+
declare const CCardBody: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
623
|
+
declare const CCardFooter: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
624
|
+
|
|
625
|
+
declare const justifyValues: readonly ["start", "center", "end", "space-between", "space-around"];
|
|
626
|
+
declare const alignValues: readonly ["start", "center", "end", "baseline", "stretch"];
|
|
627
|
+
declare const alignContentValues: readonly ["start", "center", "end", "space-between", "space-around", "stretch"];
|
|
628
|
+
type JustifyValue = (typeof justifyValues)[number];
|
|
629
|
+
type AlignValue = (typeof alignValues)[number];
|
|
630
|
+
type AlignContentValue = (typeof alignContentValues)[number];
|
|
631
|
+
declare const CRow: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
632
|
+
align: {
|
|
633
|
+
type: PropType<AlignValue>;
|
|
634
|
+
default: null;
|
|
635
|
+
validator: (value: string) => boolean;
|
|
636
|
+
};
|
|
637
|
+
alignContent: {
|
|
638
|
+
type: PropType<AlignContentValue>;
|
|
639
|
+
default: null;
|
|
640
|
+
validator: (value: string) => boolean;
|
|
641
|
+
};
|
|
642
|
+
justify: {
|
|
643
|
+
type: PropType<JustifyValue>;
|
|
644
|
+
default: null;
|
|
645
|
+
validator: (value: string) => boolean;
|
|
646
|
+
};
|
|
647
|
+
noGutter: BooleanConstructor;
|
|
648
|
+
}>, () => VNode, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
649
|
+
align: {
|
|
650
|
+
type: PropType<AlignValue>;
|
|
651
|
+
default: null;
|
|
652
|
+
validator: (value: string) => boolean;
|
|
653
|
+
};
|
|
654
|
+
alignContent: {
|
|
655
|
+
type: PropType<AlignContentValue>;
|
|
656
|
+
default: null;
|
|
657
|
+
validator: (value: string) => boolean;
|
|
658
|
+
};
|
|
659
|
+
justify: {
|
|
660
|
+
type: PropType<JustifyValue>;
|
|
661
|
+
default: null;
|
|
662
|
+
validator: (value: string) => boolean;
|
|
663
|
+
};
|
|
664
|
+
noGutter: BooleanConstructor;
|
|
665
|
+
}>> & Readonly<{}>, {
|
|
666
|
+
noGutter: boolean;
|
|
667
|
+
align: "start" | "center" | "end" | "baseline" | "stretch";
|
|
668
|
+
alignContent: "start" | "center" | "end" | "space-between" | "space-around" | "stretch";
|
|
669
|
+
justify: "start" | "center" | "end" | "space-between" | "space-around";
|
|
670
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
671
|
+
|
|
672
|
+
declare const CCol: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
673
|
+
order: {
|
|
674
|
+
type: PropType<string | number>;
|
|
675
|
+
default: null;
|
|
676
|
+
};
|
|
677
|
+
cols: {
|
|
678
|
+
type: PropType<string | number>;
|
|
679
|
+
default: null;
|
|
680
|
+
};
|
|
681
|
+
offset: {
|
|
682
|
+
type: PropType<string | number>;
|
|
683
|
+
default: null;
|
|
684
|
+
};
|
|
685
|
+
}>, () => VNode, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
686
|
+
order: {
|
|
687
|
+
type: PropType<string | number>;
|
|
688
|
+
default: null;
|
|
689
|
+
};
|
|
690
|
+
cols: {
|
|
691
|
+
type: PropType<string | number>;
|
|
692
|
+
default: null;
|
|
693
|
+
};
|
|
694
|
+
offset: {
|
|
695
|
+
type: PropType<string | number>;
|
|
696
|
+
default: null;
|
|
697
|
+
};
|
|
698
|
+
}>> & Readonly<{}>, {
|
|
699
|
+
order: string | number;
|
|
700
|
+
cols: string | number;
|
|
701
|
+
offset: string | number;
|
|
702
|
+
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
703
|
+
|
|
704
|
+
declare const CSpacer: vue.FunctionalComponent<{}, {}, any, {}>;
|
|
705
|
+
|
|
706
|
+
type CDialogProps = COverlayProps & {
|
|
707
|
+
closeOnClickOutside?: boolean;
|
|
708
|
+
};
|
|
709
|
+
type CDialogSlots = {
|
|
710
|
+
default(): VNode;
|
|
711
|
+
};
|
|
712
|
+
|
|
713
|
+
type __VLS_Slots = CDialogSlots;
|
|
714
|
+
type __VLS_Props = CDialogProps;
|
|
715
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
716
|
+
modelValue?: boolean;
|
|
717
|
+
};
|
|
718
|
+
declare const __VLS_component: vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
719
|
+
"update:modelValue": (value: boolean) => any;
|
|
720
|
+
}, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
721
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
722
|
+
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
723
|
+
declare const _default$2: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
724
|
+
|
|
725
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
726
|
+
new (): {
|
|
727
|
+
$slots: S;
|
|
728
|
+
};
|
|
729
|
+
};
|
|
730
|
+
//# sourceMappingURL=CDialog.vue.d.ts.map
|
|
731
|
+
|
|
732
|
+
declare const _default$1: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
733
|
+
//# sourceMappingURL=CDialogsStack.vue.d.ts.map
|
|
734
|
+
|
|
735
|
+
type CScrimProps = {
|
|
736
|
+
blur?: boolean;
|
|
737
|
+
tag?: string;
|
|
738
|
+
};
|
|
739
|
+
declare const CScrim: (props: CScrimProps, ctx: any) => VNode;
|
|
740
|
+
|
|
741
|
+
interface CSelectControlProps<T = any> {
|
|
742
|
+
modelValue: T | T[] | boolean;
|
|
743
|
+
value?: T;
|
|
744
|
+
multiple?: boolean;
|
|
745
|
+
focused?: boolean;
|
|
746
|
+
disabled?: boolean;
|
|
747
|
+
readonly?: boolean;
|
|
748
|
+
name?: string;
|
|
749
|
+
}
|
|
750
|
+
interface CSelectControlSlots {
|
|
751
|
+
default(props: {
|
|
752
|
+
checked: boolean;
|
|
753
|
+
disabled: boolean;
|
|
754
|
+
readonly: boolean;
|
|
755
|
+
toggle: () => void;
|
|
756
|
+
}): VNode;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
760
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
761
|
+
readonly "onUpdate:modelValue"?: ((value: boolean | T | T[]) => any) | undefined;
|
|
762
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, never>, "onUpdate:modelValue"> & (CSelectControlProps<any> & {
|
|
763
|
+
modelValue?: T | T[] | boolean;
|
|
764
|
+
}) & Partial<{}>> & vue.PublicProps;
|
|
765
|
+
expose(exposed: vue.ShallowUnwrapRef<{}>): void;
|
|
766
|
+
attrs: any;
|
|
767
|
+
slots: CSelectControlSlots;
|
|
768
|
+
emit: (evt: "update:modelValue", value: boolean | T | T[]) => void;
|
|
769
|
+
}>) => vue.VNode & {
|
|
770
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
771
|
+
};
|
|
772
|
+
|
|
773
|
+
type __VLS_PrettifyLocal<T> = {
|
|
774
|
+
[K in keyof T]: T[K];
|
|
775
|
+
} & {};
|
|
776
|
+
//# sourceMappingURL=CSelectControl.vue.d.ts.map
|
|
777
|
+
|
|
778
|
+
export { _default$j as CApp, _default$d as CAutocomplete, _default$i as CBtn, CCard, CCardBody, CCardFooter, CCardHeader, _default$8 as CCheckbox, CCol, _default$2 as CDialog, _default$1 as CDialogsStack, _default$e as CField, _default$h as CForm, _default$9 as CIcon, _default$g as CInput, CItems, CLabel, _default$4 as CList, _default$3 as CListItem, CListItemIcon, CListItemTitle, CMain, _default$a as CMenu, _default$b as COverlay, _default$7 as CRadio, CRow, CScrim, _default$c as CSelect, _default as CSelectControl, CSpacer, _default$f as CTextField, _default$5 as CToolbar, CToolbarItems, CToolbarLogo, _default$6 as CTooltip };
|
|
779
|
+
export type { ApplicationApi, CAutocompleteProps, CAutocompleteSlots, CCheckboxEvents, CCheckboxProps, CCheckboxSlots, CDialogProps, CDialogSlots, CInputProps, CInputSlots, CItemsProps, CItemsSlots, CListProps, CListSlots, CMenuEvents, CMenuProps, CMenuSlots, COverlayProps, COverlaySlots, CScrimProps, CSelectControlProps, CSelectControlSlots, CSelectProps, CSelectSlots, FormApi, FormSlots, ValidatorFn };
|