vueless 0.0.474 → 0.0.475
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/adatper.locale/locales/en.d.ts +289 -0
- package/adatper.locale/vue-i18n.d.ts +9 -0
- package/adatper.locale/vueless.d.ts +11 -0
- package/composables/useAutoPosition.d.ts +15 -0
- package/composables/useBreakpoint.d.ts +7 -0
- package/composables/useBreakpoint.js +1 -1
- package/composables/useLocale.d.ts +3 -0
- package/composables/useMutationObserver.d.ts +7 -0
- package/composables/useUI.d.ts +17 -0
- package/composablesTs/useAutoPosition.d.ts +28 -0
- package/composablesTs/useAutoPosition.ts +115 -0
- package/composablesTs/useBreakpoint.d.ts +7 -0
- package/composablesTs/useBreakpoint.ts +106 -0
- package/composablesTs/useLocale.d.ts +3 -0
- package/composablesTs/useLocale.ts +25 -0
- package/composablesTs/useMutationObserver.d.ts +8 -0
- package/composablesTs/useMutationObserver.ts +50 -0
- package/composablesTs/useUI.d.ts +68 -0
- package/composablesTs/useUI.ts +566 -0
- package/constants.d.ts +42 -0
- package/constants.js +1 -1
- package/constants.ts +73 -0
- package/directives/clickOutside/storybook/stories.d.ts +653 -0
- package/directives/clickOutside/vClickOutside.d.ts +6 -0
- package/directives/clickOutside/vClickOutside.js +2 -2
- package/directives/index.d.ts +2 -0
- package/directives/tooltip/storybook/stories.d.ts +252 -0
- package/directives/tooltip/storybook/stories.js +5 -5
- package/directives/tooltip/vTooltip.d.ts +6 -0
- package/index.d.ts +15 -0
- package/{index.js → index.ts} +9 -6
- package/package.json +28 -17
- package/preset.tailwind.d.ts +116 -0
- package/{preset.tailwind.js → preset.tailwind.ts} +30 -22
- package/types.d.ts +131 -0
- package/types.ts +218 -0
- package/ui.button/UButton.vue.d.ts +73 -0
- package/ui.button/config.d.ts +130 -0
- package/ui.button/constants.d.ts +1 -0
- package/ui.button/storybook/stories.d.ts +3062 -0
- package/ui.button/useAttrs.d.ts +11 -0
- package/ui.button-link/ULink.vue +1 -1
- package/ui.button-link/ULink.vue.d.ts +66 -0
- package/ui.button-link/config.d.ts +101 -0
- package/ui.button-link/constants.d.ts +1 -0
- package/ui.button-link/storybook/stories.d.ts +4567 -0
- package/ui.button-link/useAttrs.d.ts +14 -0
- package/ui.button-toggle/UToggle.vue.d.ts +50 -0
- package/ui.button-toggle/config.d.ts +65 -0
- package/ui.button-toggle/constants.d.ts +3 -0
- package/ui.button-toggle/storybook/stories.d.ts +2683 -0
- package/ui.button-toggle/useAttrs.d.ts +11 -0
- package/ui.button-toggle-item/UToggleItem.vue.d.ts +36 -0
- package/ui.button-toggle-item/config.d.ts +41 -0
- package/ui.button-toggle-item/constants.d.ts +1 -0
- package/ui.button-toggle-item/storybook/stories.d.ts +495 -0
- package/ui.button-toggle-item/useAttrs.d.ts +15 -0
- package/ui.container-accordion/UAccordion.vue.d.ts +32 -0
- package/ui.container-accordion/config.d.ts +40 -0
- package/ui.container-accordion/constants.d.ts +1 -0
- package/ui.container-accordion/storybook/stories.d.ts +732 -0
- package/ui.container-accordion/useAttrs.d.ts +13 -0
- package/ui.container-card/UCard.vue.d.ts +31 -0
- package/ui.container-card/config.d.ts +13 -0
- package/ui.container-card/constants.d.ts +1 -0
- package/ui.container-card/storybook/stories.d.ts +3906 -0
- package/ui.container-card/useAttrs.d.ts +11 -0
- package/ui.container-col/UCol.vue.d.ts +33 -0
- package/ui.container-col/config.d.ts +81 -0
- package/ui.container-col/constants.d.ts +1 -0
- package/ui.container-col/storybook/stories.d.ts +840 -0
- package/ui.container-col/useAttrs.d.ts +11 -0
- package/ui.container-divider/UDivider.vue.d.ts +25 -0
- package/ui.container-divider/config.d.ts +102 -0
- package/ui.container-divider/constants.d.ts +1 -0
- package/ui.container-divider/storybook/stories.d.ts +577 -0
- package/ui.container-divider/useAttrs.d.ts +11 -0
- package/ui.container-group/UGroup.vue.d.ts +33 -0
- package/ui.container-group/config.d.ts +38 -0
- package/ui.container-group/constants.d.ts +1 -0
- package/ui.container-group/storybook/stories.d.ts +2869 -0
- package/ui.container-group/useAttrs.d.ts +11 -0
- package/ui.container-modal/UModal.vue.d.ts +59 -0
- package/ui.container-modal/config.d.ts +77 -0
- package/ui.container-modal/constants.d.ts +1 -0
- package/ui.container-modal/storybook/stories.d.ts +8377 -0
- package/ui.container-modal/useAttrs.d.ts +11 -0
- package/ui.container-modal-confirm/UModalConfirm.vue.d.ts +59 -0
- package/ui.container-modal-confirm/config.d.ts +23 -0
- package/ui.container-modal-confirm/constants.d.ts +1 -0
- package/ui.container-modal-confirm/storybook/stories.d.ts +4494 -0
- package/ui.container-modal-confirm/useAttrs.d.ts +11 -0
- package/ui.container-page/UPage.vue.d.ts +47 -0
- package/ui.container-page/config.d.ts +85 -0
- package/ui.container-page/constants.d.ts +1 -0
- package/ui.container-page/storybook/stories.d.ts +8723 -0
- package/ui.container-page/useAttrs.d.ts +13 -0
- package/ui.container-row/URow.vue.d.ts +35 -0
- package/ui.container-row/config.d.ts +85 -0
- package/ui.container-row/constants.d.ts +1 -0
- package/ui.container-row/storybook/stories.d.ts +2619 -0
- package/ui.container-row/useAttrs.d.ts +11 -0
- package/ui.data-list/UDataList.vue +4 -4
- package/ui.data-list/UDataList.vue.d.ts +74 -0
- package/ui.data-list/config.d.ts +48 -0
- package/ui.data-list/constants.d.ts +1 -0
- package/ui.data-list/storybook/stories.d.ts +3342 -0
- package/ui.data-list/useAttrs.d.ts +11 -0
- package/ui.data-table/UTable.vue.d.ts +90 -0
- package/ui.data-table/UTableRow.vue.d.ts +61 -0
- package/ui.data-table/config.d.ts +128 -0
- package/ui.data-table/constants.d.ts +1 -0
- package/ui.data-table/storybook/stories.d.ts +13069 -0
- package/ui.data-table/useAttrs.d.ts +17 -0
- package/ui.data-table/utilTable.d.ts +9 -0
- package/ui.dropdown-badge/UDropdownBadge.vue.d.ts +145 -0
- package/ui.dropdown-badge/config.d.ts +39 -0
- package/ui.dropdown-badge/constants.d.ts +1 -0
- package/ui.dropdown-badge/storybook/stories.d.ts +1246 -0
- package/ui.dropdown-badge/useAttrs.d.ts +13 -0
- package/ui.dropdown-button/UDropdownButton.vue.d.ts +151 -0
- package/ui.dropdown-button/config.d.ts +52 -0
- package/ui.dropdown-button/constants.d.ts +4 -0
- package/ui.dropdown-button/storybook/stories.d.ts +1912 -0
- package/ui.dropdown-button/useAttrs.d.ts +13 -0
- package/ui.dropdown-link/UDropdownLink.vue.d.ts +149 -0
- package/ui.dropdown-link/config.d.ts +37 -0
- package/ui.dropdown-link/constants.d.ts +1 -0
- package/ui.dropdown-link/storybook/stories.d.ts +1333 -0
- package/ui.dropdown-link/useAttrs.d.ts +13 -0
- package/ui.dropdown-list/UDropdownList.vue.d.ts +59 -0
- package/ui.dropdown-list/config.d.ts +77 -0
- package/ui.dropdown-list/constants.d.ts +1 -0
- package/ui.dropdown-list/storybook/stories.d.ts +783 -0
- package/ui.dropdown-list/useAttrs.d.ts +11 -0
- package/ui.dropdown-list/usePointer.d.ts +8 -0
- package/ui.form-calendar/UCalendar.vue.d.ts +31 -0
- package/ui.form-calendar/UCalendarDayView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarMonthView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarYearView.vue.d.ts +26 -0
- package/ui.form-calendar/config.d.ts +207 -0
- package/ui.form-calendar/constants.d.ts +66 -0
- package/ui.form-calendar/storybook/stories.d.ts +262 -0
- package/ui.form-calendar/useAttrs.d.ts +11 -0
- package/ui.form-calendar/utilCalendar.d.ts +8 -0
- package/ui.form-calendar/utilDate.d.ts +30 -0
- package/ui.form-calendar/utilFormatting.d.ts +68 -0
- package/ui.form-checkbox/UCheckbox.vue.d.ts +50 -0
- package/ui.form-checkbox/config.d.ts +67 -0
- package/ui.form-checkbox/constants.d.ts +1 -0
- package/ui.form-checkbox/storybook/stories.d.ts +1589 -0
- package/ui.form-checkbox/useAttrs.d.ts +14 -0
- package/ui.form-checkbox-group/UCheckboxGroup.vue.d.ts +40 -0
- package/ui.form-checkbox-group/config.d.ts +21 -0
- package/ui.form-checkbox-group/constants.d.ts +1 -0
- package/ui.form-checkbox-group/storybook/stories.d.ts +2441 -0
- package/ui.form-checkbox-group/useAttrs.d.ts +11 -0
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue.d.ts +24 -0
- package/ui.form-checkbox-multi-state/config.d.ts +10 -0
- package/ui.form-checkbox-multi-state/constants.d.ts +1 -0
- package/ui.form-checkbox-multi-state/storybook/stories.d.ts +187 -0
- package/ui.form-checkbox-multi-state/useAttrs.d.ts +13 -0
- package/ui.form-color-picker/UColorPicker.vue.d.ts +28 -0
- package/ui.form-color-picker/config.d.ts +42 -0
- package/ui.form-color-picker/constants.d.ts +1 -0
- package/ui.form-color-picker/storybook/stories.d.ts +316 -0
- package/ui.form-color-picker/useAttrs.d.ts +11 -0
- package/ui.form-date-picker/UDatePicker.vue.d.ts +135 -0
- package/ui.form-date-picker/config.d.ts +184 -0
- package/ui.form-date-picker/constants.d.ts +1 -0
- package/ui.form-date-picker/index.d.ts +1 -0
- package/ui.form-date-picker/storybook/stories.d.ts +3242 -0
- package/ui.form-date-picker/useAttrs.d.ts +14 -0
- package/ui.form-date-picker-range/UDatePickerRange.vue.d.ts +545 -0
- package/ui.form-date-picker-range/UDatePickerRangeInputs.vue.d.ts +6 -0
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue.d.ts +7 -0
- package/ui.form-date-picker-range/config.d.ts +265 -0
- package/ui.form-date-picker-range/constants.d.ts +20 -0
- package/ui.form-date-picker-range/storybook/stories.d.ts +5545 -0
- package/ui.form-date-picker-range/useAttrs.d.ts +17 -0
- package/ui.form-date-picker-range/useUserFormat.d.ts +3 -0
- package/ui.form-date-picker-range/utilDateRange.d.ts +20 -0
- package/ui.form-date-picker-range/utilValidation.d.ts +3 -0
- package/ui.form-input/UInput.vue +1 -1
- package/ui.form-input/UInput.vue.d.ts +59 -0
- package/ui.form-input/config.d.ts +59 -0
- package/ui.form-input/constants.d.ts +1 -0
- package/ui.form-input/storybook/stories.d.ts +5734 -0
- package/ui.form-input/useAttrs.d.ts +11 -0
- package/ui.form-input-file/UInputFile.vue.d.ts +57 -0
- package/ui.form-input-file/config.d.ts +94 -0
- package/ui.form-input-file/constants.d.ts +1 -0
- package/ui.form-input-file/storybook/stories.d.ts +1116 -0
- package/ui.form-input-file/useAttrs.d.ts +11 -0
- package/ui.form-input-file/utilFileForm.d.ts +1 -0
- package/ui.form-input-money/UInputMoney.vue.d.ts +183 -0
- package/ui.form-input-money/config.d.ts +17 -0
- package/ui.form-input-money/constants.d.ts +1 -0
- package/ui.form-input-money/storybook/stories.d.ts +7519 -0
- package/ui.form-input-money/useAttrs.d.ts +11 -0
- package/ui.form-input-money/useFormatCurrency.d.ts +5 -0
- package/ui.form-input-money/useFormatCurrency.js +1 -1
- package/ui.form-input-money/utilFormat.d.ts +7 -0
- package/ui.form-input-number/UInputNumber.vue +4 -3
- package/ui.form-input-number/UInputNumber.vue.d.ts +30 -0
- package/ui.form-input-number/config.d.ts +40 -0
- package/ui.form-input-number/constants.d.ts +1 -0
- package/ui.form-input-number/storybook/stories.d.ts +363 -0
- package/ui.form-input-number/useAttrs.d.ts +11 -0
- package/ui.form-input-rating/UInputRating.vue.d.ts +49 -0
- package/ui.form-input-rating/config.d.ts +56 -0
- package/ui.form-input-rating/constants.d.ts +1 -0
- package/ui.form-input-rating/storybook/stories.d.ts +1336 -0
- package/ui.form-input-rating/useAttrs.d.ts +11 -0
- package/ui.form-input-search/UInputSearch.vue.d.ts +177 -0
- package/ui.form-input-search/config.d.ts +21 -0
- package/ui.form-input-search/constants.d.ts +1 -0
- package/ui.form-input-search/storybook/stories.d.ts +3325 -0
- package/ui.form-input-search/useAttrs.d.ts +11 -0
- package/ui.form-label/ULabel.vue.d.ts +46 -0
- package/ui.form-label/config.d.ts +139 -0
- package/ui.form-label/config.js +2 -2
- package/ui.form-label/constants.d.ts +8 -0
- package/ui.form-label/storybook/stories.d.ts +1133 -0
- package/ui.form-label/useAttrs.d.ts +11 -0
- package/ui.form-radio/URadio.vue.d.ts +46 -0
- package/ui.form-radio/config.d.ts +30 -0
- package/ui.form-radio/constants.d.ts +1 -0
- package/ui.form-radio/storybook/stories.d.ts +1270 -0
- package/ui.form-radio/useAttrs.d.ts +14 -0
- package/ui.form-radio-group/URadioGroup.vue.d.ts +40 -0
- package/ui.form-radio-group/config.d.ts +21 -0
- package/ui.form-radio-group/constants.d.ts +1 -0
- package/ui.form-radio-group/storybook/stories.d.ts +1239 -0
- package/ui.form-radio-group/useAttrs.d.ts +11 -0
- package/ui.form-select/USelect.vue.d.ts +405 -0
- package/ui.form-select/config.d.ts +146 -0
- package/ui.form-select/constants.d.ts +13 -0
- package/ui.form-select/storybook/stories.d.ts +19025 -0
- package/ui.form-select/useAttrs.d.ts +15 -0
- package/ui.form-select/utilSelect.d.ts +11 -0
- package/ui.form-switch/USwitch.vue.d.ts +30 -0
- package/ui.form-switch/config.d.ts +106 -0
- package/ui.form-switch/constants.d.ts +1 -0
- package/ui.form-switch/storybook/stories.d.ts +703 -0
- package/ui.form-switch/useAttrs.d.ts +13 -0
- package/ui.form-switch/utilVariant.d.ts +169 -0
- package/ui.form-textarea/UTextarea.vue.d.ts +132 -0
- package/ui.form-textarea/config.d.ts +55 -0
- package/ui.form-textarea/constants.d.ts +1 -0
- package/ui.form-textarea/storybook/stories.d.ts +2175 -0
- package/ui.form-textarea/useAttrs.d.ts +11 -0
- package/ui.image-avatar/UAvatar.vue.d.ts +40 -0
- package/ui.image-avatar/config.d.ts +51 -0
- package/ui.image-avatar/constants.d.ts +1 -0
- package/ui.image-avatar/storybook/stories.d.ts +1640 -0
- package/ui.image-avatar/useAttrs.d.ts +11 -0
- package/ui.image-icon/UIcon.vue.d.ts +28 -0
- package/ui.image-icon/config.d.ts +52 -0
- package/ui.image-icon/constants.d.ts +1 -0
- package/ui.image-icon/storybook/stories.d.ts +516 -0
- package/ui.image-icon/useAttrs.d.ts +11 -0
- package/ui.loader/ULoader.vue.d.ts +23 -0
- package/ui.loader/config.d.ts +49 -0
- package/ui.loader/constants.d.ts +2 -0
- package/ui.loader/storybook/stories.d.ts +655 -0
- package/ui.loader/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/ULoaderOverlay.vue.d.ts +21 -0
- package/ui.loader-overlay/config.d.ts +25 -0
- package/ui.loader-overlay/constants.d.ts +1 -0
- package/ui.loader-overlay/storybook/stories.d.ts +362 -0
- package/ui.loader-overlay/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/useLoaderOverlay.d.ts +10 -0
- package/ui.loader-overlay/utilLoaderOverlay.d.ts +2 -0
- package/ui.loader-progress/ULoaderProgress.vue.d.ts +11 -0
- package/ui.loader-progress/config.d.ts +24 -0
- package/ui.loader-progress/constants.d.ts +3 -0
- package/ui.loader-progress/storybook/stories.d.ts +742 -0
- package/ui.loader-progress/useAttrs.d.ts +11 -0
- package/ui.loader-progress/useLoaderProgress.d.ts +15 -0
- package/ui.loader-progress/utilLoaderProgress.d.ts +5 -0
- package/ui.navigation-pagination/UPagination.vue.d.ts +54 -0
- package/ui.navigation-pagination/config.d.ts +41 -0
- package/ui.navigation-pagination/constants.d.ts +1 -0
- package/ui.navigation-pagination/storybook/stories.d.ts +1033 -0
- package/ui.navigation-pagination/useAttrs.d.ts +11 -0
- package/ui.navigation-progress/StepperProgress.vue.d.ts +15 -0
- package/ui.navigation-progress/UProgress.vue.d.ts +41 -0
- package/ui.navigation-progress/config.d.ts +139 -0
- package/ui.navigation-progress/constants.d.ts +5 -0
- package/ui.navigation-progress/storybook/stories.d.ts +2827 -0
- package/ui.navigation-progress/useAttrs.d.ts +11 -0
- package/ui.navigation-tab/UTab.vue.d.ts +27 -0
- package/ui.navigation-tab/config.d.ts +24 -0
- package/ui.navigation-tab/constants.d.ts +1 -0
- package/ui.navigation-tab/storybook/stories.d.ts +316 -0
- package/ui.navigation-tab/useAttrs.d.ts +14 -0
- package/ui.navigation-tabs/UTabs.vue.d.ts +30 -0
- package/ui.navigation-tabs/config.d.ts +24 -0
- package/ui.navigation-tabs/constants.d.ts +1 -0
- package/ui.navigation-tabs/storybook/stories.d.ts +354 -0
- package/ui.navigation-tabs/useAttrs.d.ts +11 -0
- package/ui.other-dot/UDot.vue.d.ts +13 -0
- package/ui.other-dot/config.d.ts +28 -0
- package/ui.other-dot/constants.d.ts +1 -0
- package/ui.other-dot/storybook/stories.d.ts +645 -0
- package/ui.other-dot/useAttrs.d.ts +11 -0
- package/ui.text-alert/UAlert.vue.d.ts +53 -0
- package/ui.text-alert/config.d.ts +75 -0
- package/ui.text-alert/constants.d.ts +1 -0
- package/ui.text-alert/storybook/stories.d.ts +4845 -0
- package/ui.text-alert/useAttrs.d.ts +11 -0
- package/ui.text-badge/UBadge.vue.d.ts +60 -0
- package/ui.text-badge/config.d.ts +102 -0
- package/ui.text-badge/constants.d.ts +1 -0
- package/ui.text-badge/storybook/stories.d.ts +1869 -0
- package/ui.text-badge/useAttrs.d.ts +11 -0
- package/ui.text-block/UText.vue +18 -62
- package/ui.text-block/UText.vue.d.ts +21 -0
- package/ui.text-block/config.d.ts +27 -0
- package/ui.text-block/constants.d.ts +1 -0
- package/ui.text-block/storybook/Docs.mdx +2 -2
- package/ui.text-block/storybook/stories.d.ts +12 -0
- package/ui.text-block/storybook/{stories.js → stories.ts} +12 -7
- package/ui.text-block/types.d.ts +9 -0
- package/ui.text-block/types.ts +33 -0
- package/ui.text-block/useAttrs.d.ts +3 -0
- package/ui.text-block/useAttrs.ts +18 -0
- package/ui.text-empty/UEmpty.vue.d.ts +29 -0
- package/ui.text-empty/config.d.ts +55 -0
- package/ui.text-empty/constants.d.ts +1 -0
- package/ui.text-empty/storybook/stories.d.ts +1212 -0
- package/ui.text-empty/useAttrs.d.ts +11 -0
- package/ui.text-file/UFile.vue +12 -14
- package/ui.text-file/UFile.vue.d.ts +57 -0
- package/ui.text-file/config.d.ts +42 -0
- package/ui.text-file/config.js +12 -2
- package/ui.text-file/constants.d.ts +1 -0
- package/ui.text-file/storybook/stories.d.ts +136 -0
- package/ui.text-file/useAttrs.d.ts +11 -0
- package/ui.text-files/UFiles.vue.d.ts +52 -0
- package/ui.text-files/config.d.ts +10 -0
- package/ui.text-files/config.js +1 -1
- package/ui.text-files/constants.d.ts +1 -0
- package/ui.text-files/storybook/stories.d.ts +131 -0
- package/ui.text-files/useAttrs.d.ts +11 -0
- package/ui.text-header/UHeader.vue.d.ts +33 -0
- package/ui.text-header/config.d.ts +54 -0
- package/ui.text-header/constants.d.ts +1 -0
- package/ui.text-header/storybook/stories.d.ts +694 -0
- package/ui.text-header/useAttrs.d.ts +11 -0
- package/ui.text-money/UMoney.vue.d.ts +48 -0
- package/ui.text-money/config.d.ts +77 -0
- package/ui.text-money/constants.d.ts +1 -0
- package/ui.text-money/storybook/stories.d.ts +2090 -0
- package/ui.text-money/useAttrs.d.ts +11 -0
- package/ui.text-money/utilMoney.d.ts +14 -0
- package/ui.text-money/utilMoney.js +2 -2
- package/ui.text-notify/UNotify.vue.d.ts +13 -0
- package/ui.text-notify/config.d.ts +58 -0
- package/ui.text-notify/constants.d.ts +20 -0
- package/ui.text-notify/storybook/stories.d.ts +653 -0
- package/ui.text-notify/useAttrs.d.ts +11 -0
- package/ui.text-notify/utilNotify.d.ts +7 -0
- package/utils/utilHelper.d.ts +9 -0
- package/utils/utilPlatform.d.ts +6 -0
- package/utils/utilStorybook.d.ts +15 -0
- package/utils/utilUI.d.ts +68 -0
- package/utilsTs/utilHelper.d.ts +9 -0
- package/utilsTs/utilHelper.ts +70 -0
- package/utilsTs/utilPlatform.d.ts +7 -0
- package/utilsTs/utilPlatform.ts +53 -0
- package/utilsTs/utilStorybook.d.ts +24 -0
- package/utilsTs/utilStorybook.ts +292 -0
- package/utilsTs/utilTailwind.d.ts +1 -0
- package/utilsTs/utilTailwind.ts +38 -0
- package/utilsTs/utilTheme.d.ts +8 -0
- package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +31 -27
- package/utilsTs/utilUI.d.ts +67 -0
- package/utilsTs/utilUI.ts +142 -0
- package/web-types.json +30 -120
- package/ui.text-block/useAttrs.js +0 -15
- /package/ui.text-block/{config.js → config.ts} +0 -0
- /package/ui.text-block/{constants.js → constants.ts} +0 -0
|
@@ -0,0 +1,1333 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let id: string;
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { UDropdownLink as component };
|
|
5
|
+
export namespace args {
|
|
6
|
+
let label: string;
|
|
7
|
+
let options: {
|
|
8
|
+
label: string;
|
|
9
|
+
value: string;
|
|
10
|
+
}[];
|
|
11
|
+
}
|
|
12
|
+
export let argTypes: {
|
|
13
|
+
defaultTemplate?: {
|
|
14
|
+
table: {
|
|
15
|
+
disable: boolean;
|
|
16
|
+
};
|
|
17
|
+
} | undefined;
|
|
18
|
+
slotTemplate?: {
|
|
19
|
+
table: {
|
|
20
|
+
disable: boolean;
|
|
21
|
+
};
|
|
22
|
+
} | undefined;
|
|
23
|
+
};
|
|
24
|
+
export namespace parameters {
|
|
25
|
+
namespace docs {
|
|
26
|
+
namespace story {
|
|
27
|
+
let height: string;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
export default _default;
|
|
33
|
+
export function Default(args: any): {
|
|
34
|
+
components: {
|
|
35
|
+
UDropdownLink: {
|
|
36
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
37
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
38
|
+
label: string;
|
|
39
|
+
id: string;
|
|
40
|
+
config: Record<string, any>;
|
|
41
|
+
options: unknown[];
|
|
42
|
+
dataTest: string;
|
|
43
|
+
color?: string | undefined;
|
|
44
|
+
disabled?: boolean | undefined;
|
|
45
|
+
size?: string | undefined;
|
|
46
|
+
noRing?: boolean | undefined;
|
|
47
|
+
underlined?: boolean | undefined;
|
|
48
|
+
dashed?: boolean | undefined;
|
|
49
|
+
labelKey?: string | undefined;
|
|
50
|
+
noIcon?: boolean | undefined;
|
|
51
|
+
yPosition?: string | undefined;
|
|
52
|
+
xPosition?: string | undefined;
|
|
53
|
+
$props: {
|
|
54
|
+
readonly label?: string | undefined;
|
|
55
|
+
readonly id?: string | undefined;
|
|
56
|
+
readonly config?: Record<string, any> | undefined;
|
|
57
|
+
readonly options?: unknown[] | undefined;
|
|
58
|
+
readonly dataTest?: string | undefined;
|
|
59
|
+
readonly color?: string | undefined;
|
|
60
|
+
readonly disabled?: boolean | undefined;
|
|
61
|
+
readonly size?: string | undefined;
|
|
62
|
+
readonly noRing?: boolean | undefined;
|
|
63
|
+
readonly underlined?: boolean | undefined;
|
|
64
|
+
readonly dashed?: boolean | undefined;
|
|
65
|
+
readonly labelKey?: string | undefined;
|
|
66
|
+
readonly noIcon?: boolean | undefined;
|
|
67
|
+
readonly yPosition?: string | undefined;
|
|
68
|
+
readonly xPosition?: string | undefined;
|
|
69
|
+
};
|
|
70
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
71
|
+
P: {};
|
|
72
|
+
B: {};
|
|
73
|
+
D: {};
|
|
74
|
+
C: {};
|
|
75
|
+
M: {};
|
|
76
|
+
Defaults: {};
|
|
77
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
78
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
79
|
+
label: string;
|
|
80
|
+
id: string;
|
|
81
|
+
config: Record<string, any>;
|
|
82
|
+
options: unknown[];
|
|
83
|
+
dataTest: string;
|
|
84
|
+
color?: string | undefined;
|
|
85
|
+
disabled?: boolean | undefined;
|
|
86
|
+
size?: string | undefined;
|
|
87
|
+
noRing?: boolean | undefined;
|
|
88
|
+
underlined?: boolean | undefined;
|
|
89
|
+
dashed?: boolean | undefined;
|
|
90
|
+
labelKey?: string | undefined;
|
|
91
|
+
noIcon?: boolean | undefined;
|
|
92
|
+
yPosition?: string | undefined;
|
|
93
|
+
xPosition?: string | undefined;
|
|
94
|
+
$props: {
|
|
95
|
+
readonly label?: string | undefined;
|
|
96
|
+
readonly id?: string | undefined;
|
|
97
|
+
readonly config?: Record<string, any> | undefined;
|
|
98
|
+
readonly options?: unknown[] | undefined;
|
|
99
|
+
readonly dataTest?: string | undefined;
|
|
100
|
+
readonly color?: string | undefined;
|
|
101
|
+
readonly disabled?: boolean | undefined;
|
|
102
|
+
readonly size?: string | undefined;
|
|
103
|
+
readonly noRing?: boolean | undefined;
|
|
104
|
+
readonly underlined?: boolean | undefined;
|
|
105
|
+
readonly dashed?: boolean | undefined;
|
|
106
|
+
readonly labelKey?: string | undefined;
|
|
107
|
+
readonly noIcon?: boolean | undefined;
|
|
108
|
+
readonly yPosition?: string | undefined;
|
|
109
|
+
readonly xPosition?: string | undefined;
|
|
110
|
+
};
|
|
111
|
+
}, {}, {}, {}, {}>;
|
|
112
|
+
__isFragment?: never;
|
|
113
|
+
__isTeleport?: never;
|
|
114
|
+
__isSuspense?: never;
|
|
115
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
116
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
117
|
+
label: string;
|
|
118
|
+
id: string;
|
|
119
|
+
config: Record<string, any>;
|
|
120
|
+
options: unknown[];
|
|
121
|
+
dataTest: string;
|
|
122
|
+
color?: string | undefined;
|
|
123
|
+
disabled?: boolean | undefined;
|
|
124
|
+
size?: string | undefined;
|
|
125
|
+
noRing?: boolean | undefined;
|
|
126
|
+
underlined?: boolean | undefined;
|
|
127
|
+
dashed?: boolean | undefined;
|
|
128
|
+
labelKey?: string | undefined;
|
|
129
|
+
noIcon?: boolean | undefined;
|
|
130
|
+
yPosition?: string | undefined;
|
|
131
|
+
xPosition?: string | undefined;
|
|
132
|
+
$props: {
|
|
133
|
+
readonly label?: string | undefined;
|
|
134
|
+
readonly id?: string | undefined;
|
|
135
|
+
readonly config?: Record<string, any> | undefined;
|
|
136
|
+
readonly options?: unknown[] | undefined;
|
|
137
|
+
readonly dataTest?: string | undefined;
|
|
138
|
+
readonly color?: string | undefined;
|
|
139
|
+
readonly disabled?: boolean | undefined;
|
|
140
|
+
readonly size?: string | undefined;
|
|
141
|
+
readonly noRing?: boolean | undefined;
|
|
142
|
+
readonly underlined?: boolean | undefined;
|
|
143
|
+
readonly dashed?: boolean | undefined;
|
|
144
|
+
readonly labelKey?: string | undefined;
|
|
145
|
+
readonly noIcon?: boolean | undefined;
|
|
146
|
+
readonly yPosition?: string | undefined;
|
|
147
|
+
readonly xPosition?: string | undefined;
|
|
148
|
+
};
|
|
149
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
150
|
+
$slots: {
|
|
151
|
+
left?(_: {
|
|
152
|
+
opened: boolean;
|
|
153
|
+
}): any;
|
|
154
|
+
default?(_: {
|
|
155
|
+
label: string;
|
|
156
|
+
opened: boolean;
|
|
157
|
+
}): any;
|
|
158
|
+
right?(_: {
|
|
159
|
+
opened: boolean;
|
|
160
|
+
}): any;
|
|
161
|
+
};
|
|
162
|
+
});
|
|
163
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
164
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
165
|
+
config: Record<string, any>;
|
|
166
|
+
name: string;
|
|
167
|
+
src: Record<string, any>;
|
|
168
|
+
tooltip: string;
|
|
169
|
+
tooltipSettings: Record<string, any>;
|
|
170
|
+
dataTest: string;
|
|
171
|
+
internal: boolean;
|
|
172
|
+
color?: string | undefined;
|
|
173
|
+
size?: string | undefined;
|
|
174
|
+
interactive?: boolean | undefined;
|
|
175
|
+
variant?: string | undefined;
|
|
176
|
+
$props: {
|
|
177
|
+
readonly config?: Record<string, any> | undefined;
|
|
178
|
+
readonly name?: string | undefined;
|
|
179
|
+
readonly src?: Record<string, any> | undefined;
|
|
180
|
+
readonly tooltip?: string | undefined;
|
|
181
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
182
|
+
readonly dataTest?: string | undefined;
|
|
183
|
+
readonly internal?: boolean | undefined;
|
|
184
|
+
readonly color?: string | undefined;
|
|
185
|
+
readonly size?: string | undefined;
|
|
186
|
+
readonly interactive?: boolean | undefined;
|
|
187
|
+
readonly variant?: string | undefined;
|
|
188
|
+
};
|
|
189
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
190
|
+
};
|
|
191
|
+
setup(): {
|
|
192
|
+
args: any;
|
|
193
|
+
slots: any;
|
|
194
|
+
};
|
|
195
|
+
template: string;
|
|
196
|
+
};
|
|
197
|
+
export namespace Default {
|
|
198
|
+
let args_1: {};
|
|
199
|
+
export { args_1 as args };
|
|
200
|
+
}
|
|
201
|
+
export function Sizes(args: any, { argTypes }?: {}): {
|
|
202
|
+
components: {
|
|
203
|
+
UDropdownLink: {
|
|
204
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
205
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
206
|
+
label: string;
|
|
207
|
+
id: string;
|
|
208
|
+
config: Record<string, any>;
|
|
209
|
+
options: unknown[];
|
|
210
|
+
dataTest: string;
|
|
211
|
+
color?: string | undefined;
|
|
212
|
+
disabled?: boolean | undefined;
|
|
213
|
+
size?: string | undefined;
|
|
214
|
+
noRing?: boolean | undefined;
|
|
215
|
+
underlined?: boolean | undefined;
|
|
216
|
+
dashed?: boolean | undefined;
|
|
217
|
+
labelKey?: string | undefined;
|
|
218
|
+
noIcon?: boolean | undefined;
|
|
219
|
+
yPosition?: string | undefined;
|
|
220
|
+
xPosition?: string | undefined;
|
|
221
|
+
$props: {
|
|
222
|
+
readonly label?: string | undefined;
|
|
223
|
+
readonly id?: string | undefined;
|
|
224
|
+
readonly config?: Record<string, any> | undefined;
|
|
225
|
+
readonly options?: unknown[] | undefined;
|
|
226
|
+
readonly dataTest?: string | undefined;
|
|
227
|
+
readonly color?: string | undefined;
|
|
228
|
+
readonly disabled?: boolean | undefined;
|
|
229
|
+
readonly size?: string | undefined;
|
|
230
|
+
readonly noRing?: boolean | undefined;
|
|
231
|
+
readonly underlined?: boolean | undefined;
|
|
232
|
+
readonly dashed?: boolean | undefined;
|
|
233
|
+
readonly labelKey?: string | undefined;
|
|
234
|
+
readonly noIcon?: boolean | undefined;
|
|
235
|
+
readonly yPosition?: string | undefined;
|
|
236
|
+
readonly xPosition?: string | undefined;
|
|
237
|
+
};
|
|
238
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
239
|
+
P: {};
|
|
240
|
+
B: {};
|
|
241
|
+
D: {};
|
|
242
|
+
C: {};
|
|
243
|
+
M: {};
|
|
244
|
+
Defaults: {};
|
|
245
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
246
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
247
|
+
label: string;
|
|
248
|
+
id: string;
|
|
249
|
+
config: Record<string, any>;
|
|
250
|
+
options: unknown[];
|
|
251
|
+
dataTest: string;
|
|
252
|
+
color?: string | undefined;
|
|
253
|
+
disabled?: boolean | undefined;
|
|
254
|
+
size?: string | undefined;
|
|
255
|
+
noRing?: boolean | undefined;
|
|
256
|
+
underlined?: boolean | undefined;
|
|
257
|
+
dashed?: boolean | undefined;
|
|
258
|
+
labelKey?: string | undefined;
|
|
259
|
+
noIcon?: boolean | undefined;
|
|
260
|
+
yPosition?: string | undefined;
|
|
261
|
+
xPosition?: string | undefined;
|
|
262
|
+
$props: {
|
|
263
|
+
readonly label?: string | undefined;
|
|
264
|
+
readonly id?: string | undefined;
|
|
265
|
+
readonly config?: Record<string, any> | undefined;
|
|
266
|
+
readonly options?: unknown[] | undefined;
|
|
267
|
+
readonly dataTest?: string | undefined;
|
|
268
|
+
readonly color?: string | undefined;
|
|
269
|
+
readonly disabled?: boolean | undefined;
|
|
270
|
+
readonly size?: string | undefined;
|
|
271
|
+
readonly noRing?: boolean | undefined;
|
|
272
|
+
readonly underlined?: boolean | undefined;
|
|
273
|
+
readonly dashed?: boolean | undefined;
|
|
274
|
+
readonly labelKey?: string | undefined;
|
|
275
|
+
readonly noIcon?: boolean | undefined;
|
|
276
|
+
readonly yPosition?: string | undefined;
|
|
277
|
+
readonly xPosition?: string | undefined;
|
|
278
|
+
};
|
|
279
|
+
}, {}, {}, {}, {}>;
|
|
280
|
+
__isFragment?: never;
|
|
281
|
+
__isTeleport?: never;
|
|
282
|
+
__isSuspense?: never;
|
|
283
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
284
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
285
|
+
label: string;
|
|
286
|
+
id: string;
|
|
287
|
+
config: Record<string, any>;
|
|
288
|
+
options: unknown[];
|
|
289
|
+
dataTest: string;
|
|
290
|
+
color?: string | undefined;
|
|
291
|
+
disabled?: boolean | undefined;
|
|
292
|
+
size?: string | undefined;
|
|
293
|
+
noRing?: boolean | undefined;
|
|
294
|
+
underlined?: boolean | undefined;
|
|
295
|
+
dashed?: boolean | undefined;
|
|
296
|
+
labelKey?: string | undefined;
|
|
297
|
+
noIcon?: boolean | undefined;
|
|
298
|
+
yPosition?: string | undefined;
|
|
299
|
+
xPosition?: string | undefined;
|
|
300
|
+
$props: {
|
|
301
|
+
readonly label?: string | undefined;
|
|
302
|
+
readonly id?: string | undefined;
|
|
303
|
+
readonly config?: Record<string, any> | undefined;
|
|
304
|
+
readonly options?: unknown[] | undefined;
|
|
305
|
+
readonly dataTest?: string | undefined;
|
|
306
|
+
readonly color?: string | undefined;
|
|
307
|
+
readonly disabled?: boolean | undefined;
|
|
308
|
+
readonly size?: string | undefined;
|
|
309
|
+
readonly noRing?: boolean | undefined;
|
|
310
|
+
readonly underlined?: boolean | undefined;
|
|
311
|
+
readonly dashed?: boolean | undefined;
|
|
312
|
+
readonly labelKey?: string | undefined;
|
|
313
|
+
readonly noIcon?: boolean | undefined;
|
|
314
|
+
readonly yPosition?: string | undefined;
|
|
315
|
+
readonly xPosition?: string | undefined;
|
|
316
|
+
};
|
|
317
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
318
|
+
$slots: {
|
|
319
|
+
left?(_: {
|
|
320
|
+
opened: boolean;
|
|
321
|
+
}): any;
|
|
322
|
+
default?(_: {
|
|
323
|
+
label: string;
|
|
324
|
+
opened: boolean;
|
|
325
|
+
}): any;
|
|
326
|
+
right?(_: {
|
|
327
|
+
opened: boolean;
|
|
328
|
+
}): any;
|
|
329
|
+
};
|
|
330
|
+
});
|
|
331
|
+
URow: {
|
|
332
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
333
|
+
config: Record<string, any>;
|
|
334
|
+
dataTest: string;
|
|
335
|
+
reverse?: boolean | undefined;
|
|
336
|
+
content?: string | undefined;
|
|
337
|
+
gap?: string | undefined;
|
|
338
|
+
align?: string | undefined;
|
|
339
|
+
justify?: string | undefined;
|
|
340
|
+
wrap?: boolean | undefined;
|
|
341
|
+
noMobile?: boolean | undefined;
|
|
342
|
+
$props: {
|
|
343
|
+
readonly config?: Record<string, any> | undefined;
|
|
344
|
+
readonly dataTest?: string | undefined;
|
|
345
|
+
readonly reverse?: boolean | undefined;
|
|
346
|
+
readonly content?: string | undefined;
|
|
347
|
+
readonly gap?: string | undefined;
|
|
348
|
+
readonly align?: string | undefined;
|
|
349
|
+
readonly justify?: string | undefined;
|
|
350
|
+
readonly wrap?: boolean | undefined;
|
|
351
|
+
readonly noMobile?: boolean | undefined;
|
|
352
|
+
};
|
|
353
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
354
|
+
P: {};
|
|
355
|
+
B: {};
|
|
356
|
+
D: {};
|
|
357
|
+
C: {};
|
|
358
|
+
M: {};
|
|
359
|
+
Defaults: {};
|
|
360
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
361
|
+
config: Record<string, any>;
|
|
362
|
+
dataTest: string;
|
|
363
|
+
reverse?: boolean | undefined;
|
|
364
|
+
content?: string | undefined;
|
|
365
|
+
gap?: string | undefined;
|
|
366
|
+
align?: string | undefined;
|
|
367
|
+
justify?: string | undefined;
|
|
368
|
+
wrap?: boolean | undefined;
|
|
369
|
+
noMobile?: boolean | undefined;
|
|
370
|
+
$props: {
|
|
371
|
+
readonly config?: Record<string, any> | undefined;
|
|
372
|
+
readonly dataTest?: string | undefined;
|
|
373
|
+
readonly reverse?: boolean | undefined;
|
|
374
|
+
readonly content?: string | undefined;
|
|
375
|
+
readonly gap?: string | undefined;
|
|
376
|
+
readonly align?: string | undefined;
|
|
377
|
+
readonly justify?: string | undefined;
|
|
378
|
+
readonly wrap?: boolean | undefined;
|
|
379
|
+
readonly noMobile?: boolean | undefined;
|
|
380
|
+
};
|
|
381
|
+
}, {}, {}, {}, {}>;
|
|
382
|
+
__isFragment?: never;
|
|
383
|
+
__isTeleport?: never;
|
|
384
|
+
__isSuspense?: never;
|
|
385
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
386
|
+
config: Record<string, any>;
|
|
387
|
+
dataTest: string;
|
|
388
|
+
reverse?: boolean | undefined;
|
|
389
|
+
content?: string | undefined;
|
|
390
|
+
gap?: string | undefined;
|
|
391
|
+
align?: string | undefined;
|
|
392
|
+
justify?: string | undefined;
|
|
393
|
+
wrap?: boolean | undefined;
|
|
394
|
+
noMobile?: boolean | undefined;
|
|
395
|
+
$props: {
|
|
396
|
+
readonly config?: Record<string, any> | undefined;
|
|
397
|
+
readonly dataTest?: string | undefined;
|
|
398
|
+
readonly reverse?: boolean | undefined;
|
|
399
|
+
readonly content?: string | undefined;
|
|
400
|
+
readonly gap?: string | undefined;
|
|
401
|
+
readonly align?: string | undefined;
|
|
402
|
+
readonly justify?: string | undefined;
|
|
403
|
+
readonly wrap?: boolean | undefined;
|
|
404
|
+
readonly noMobile?: boolean | undefined;
|
|
405
|
+
};
|
|
406
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
407
|
+
$slots: {
|
|
408
|
+
default?(_: {}): any;
|
|
409
|
+
};
|
|
410
|
+
});
|
|
411
|
+
};
|
|
412
|
+
setup(): {
|
|
413
|
+
args: any;
|
|
414
|
+
options: any;
|
|
415
|
+
prefixedOptions: any;
|
|
416
|
+
};
|
|
417
|
+
template: string;
|
|
418
|
+
};
|
|
419
|
+
export namespace Sizes {
|
|
420
|
+
export namespace args_2 {
|
|
421
|
+
let _enum: string;
|
|
422
|
+
export { _enum as enum };
|
|
423
|
+
}
|
|
424
|
+
export { args_2 as args };
|
|
425
|
+
}
|
|
426
|
+
export function Colors(args: any, { argTypes }?: {}): {
|
|
427
|
+
components: {
|
|
428
|
+
UDropdownLink: {
|
|
429
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
430
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
431
|
+
label: string;
|
|
432
|
+
id: string;
|
|
433
|
+
config: Record<string, any>;
|
|
434
|
+
options: unknown[];
|
|
435
|
+
dataTest: string;
|
|
436
|
+
color?: string | undefined;
|
|
437
|
+
disabled?: boolean | undefined;
|
|
438
|
+
size?: string | undefined;
|
|
439
|
+
noRing?: boolean | undefined;
|
|
440
|
+
underlined?: boolean | undefined;
|
|
441
|
+
dashed?: boolean | undefined;
|
|
442
|
+
labelKey?: string | undefined;
|
|
443
|
+
noIcon?: boolean | undefined;
|
|
444
|
+
yPosition?: string | undefined;
|
|
445
|
+
xPosition?: string | undefined;
|
|
446
|
+
$props: {
|
|
447
|
+
readonly label?: string | undefined;
|
|
448
|
+
readonly id?: string | undefined;
|
|
449
|
+
readonly config?: Record<string, any> | undefined;
|
|
450
|
+
readonly options?: unknown[] | undefined;
|
|
451
|
+
readonly dataTest?: string | undefined;
|
|
452
|
+
readonly color?: string | undefined;
|
|
453
|
+
readonly disabled?: boolean | undefined;
|
|
454
|
+
readonly size?: string | undefined;
|
|
455
|
+
readonly noRing?: boolean | undefined;
|
|
456
|
+
readonly underlined?: boolean | undefined;
|
|
457
|
+
readonly dashed?: boolean | undefined;
|
|
458
|
+
readonly labelKey?: string | undefined;
|
|
459
|
+
readonly noIcon?: boolean | undefined;
|
|
460
|
+
readonly yPosition?: string | undefined;
|
|
461
|
+
readonly xPosition?: string | undefined;
|
|
462
|
+
};
|
|
463
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
464
|
+
P: {};
|
|
465
|
+
B: {};
|
|
466
|
+
D: {};
|
|
467
|
+
C: {};
|
|
468
|
+
M: {};
|
|
469
|
+
Defaults: {};
|
|
470
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
471
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
472
|
+
label: string;
|
|
473
|
+
id: string;
|
|
474
|
+
config: Record<string, any>;
|
|
475
|
+
options: unknown[];
|
|
476
|
+
dataTest: string;
|
|
477
|
+
color?: string | undefined;
|
|
478
|
+
disabled?: boolean | undefined;
|
|
479
|
+
size?: string | undefined;
|
|
480
|
+
noRing?: boolean | undefined;
|
|
481
|
+
underlined?: boolean | undefined;
|
|
482
|
+
dashed?: boolean | undefined;
|
|
483
|
+
labelKey?: string | undefined;
|
|
484
|
+
noIcon?: boolean | undefined;
|
|
485
|
+
yPosition?: string | undefined;
|
|
486
|
+
xPosition?: string | undefined;
|
|
487
|
+
$props: {
|
|
488
|
+
readonly label?: string | undefined;
|
|
489
|
+
readonly id?: string | undefined;
|
|
490
|
+
readonly config?: Record<string, any> | undefined;
|
|
491
|
+
readonly options?: unknown[] | undefined;
|
|
492
|
+
readonly dataTest?: string | undefined;
|
|
493
|
+
readonly color?: string | undefined;
|
|
494
|
+
readonly disabled?: boolean | undefined;
|
|
495
|
+
readonly size?: string | undefined;
|
|
496
|
+
readonly noRing?: boolean | undefined;
|
|
497
|
+
readonly underlined?: boolean | undefined;
|
|
498
|
+
readonly dashed?: boolean | undefined;
|
|
499
|
+
readonly labelKey?: string | undefined;
|
|
500
|
+
readonly noIcon?: boolean | undefined;
|
|
501
|
+
readonly yPosition?: string | undefined;
|
|
502
|
+
readonly xPosition?: string | undefined;
|
|
503
|
+
};
|
|
504
|
+
}, {}, {}, {}, {}>;
|
|
505
|
+
__isFragment?: never;
|
|
506
|
+
__isTeleport?: never;
|
|
507
|
+
__isSuspense?: never;
|
|
508
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
509
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
510
|
+
label: string;
|
|
511
|
+
id: string;
|
|
512
|
+
config: Record<string, any>;
|
|
513
|
+
options: unknown[];
|
|
514
|
+
dataTest: string;
|
|
515
|
+
color?: string | undefined;
|
|
516
|
+
disabled?: boolean | undefined;
|
|
517
|
+
size?: string | undefined;
|
|
518
|
+
noRing?: boolean | undefined;
|
|
519
|
+
underlined?: boolean | undefined;
|
|
520
|
+
dashed?: boolean | undefined;
|
|
521
|
+
labelKey?: string | undefined;
|
|
522
|
+
noIcon?: boolean | undefined;
|
|
523
|
+
yPosition?: string | undefined;
|
|
524
|
+
xPosition?: string | undefined;
|
|
525
|
+
$props: {
|
|
526
|
+
readonly label?: string | undefined;
|
|
527
|
+
readonly id?: string | undefined;
|
|
528
|
+
readonly config?: Record<string, any> | undefined;
|
|
529
|
+
readonly options?: unknown[] | undefined;
|
|
530
|
+
readonly dataTest?: string | undefined;
|
|
531
|
+
readonly color?: string | undefined;
|
|
532
|
+
readonly disabled?: boolean | undefined;
|
|
533
|
+
readonly size?: string | undefined;
|
|
534
|
+
readonly noRing?: boolean | undefined;
|
|
535
|
+
readonly underlined?: boolean | undefined;
|
|
536
|
+
readonly dashed?: boolean | undefined;
|
|
537
|
+
readonly labelKey?: string | undefined;
|
|
538
|
+
readonly noIcon?: boolean | undefined;
|
|
539
|
+
readonly yPosition?: string | undefined;
|
|
540
|
+
readonly xPosition?: string | undefined;
|
|
541
|
+
};
|
|
542
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
543
|
+
$slots: {
|
|
544
|
+
left?(_: {
|
|
545
|
+
opened: boolean;
|
|
546
|
+
}): any;
|
|
547
|
+
default?(_: {
|
|
548
|
+
label: string;
|
|
549
|
+
opened: boolean;
|
|
550
|
+
}): any;
|
|
551
|
+
right?(_: {
|
|
552
|
+
opened: boolean;
|
|
553
|
+
}): any;
|
|
554
|
+
};
|
|
555
|
+
});
|
|
556
|
+
URow: {
|
|
557
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
558
|
+
config: Record<string, any>;
|
|
559
|
+
dataTest: string;
|
|
560
|
+
reverse?: boolean | undefined;
|
|
561
|
+
content?: string | undefined;
|
|
562
|
+
gap?: string | undefined;
|
|
563
|
+
align?: string | undefined;
|
|
564
|
+
justify?: string | undefined;
|
|
565
|
+
wrap?: boolean | undefined;
|
|
566
|
+
noMobile?: boolean | undefined;
|
|
567
|
+
$props: {
|
|
568
|
+
readonly config?: Record<string, any> | undefined;
|
|
569
|
+
readonly dataTest?: string | undefined;
|
|
570
|
+
readonly reverse?: boolean | undefined;
|
|
571
|
+
readonly content?: string | undefined;
|
|
572
|
+
readonly gap?: string | undefined;
|
|
573
|
+
readonly align?: string | undefined;
|
|
574
|
+
readonly justify?: string | undefined;
|
|
575
|
+
readonly wrap?: boolean | undefined;
|
|
576
|
+
readonly noMobile?: boolean | undefined;
|
|
577
|
+
};
|
|
578
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
579
|
+
P: {};
|
|
580
|
+
B: {};
|
|
581
|
+
D: {};
|
|
582
|
+
C: {};
|
|
583
|
+
M: {};
|
|
584
|
+
Defaults: {};
|
|
585
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
586
|
+
config: Record<string, any>;
|
|
587
|
+
dataTest: string;
|
|
588
|
+
reverse?: boolean | undefined;
|
|
589
|
+
content?: string | undefined;
|
|
590
|
+
gap?: string | undefined;
|
|
591
|
+
align?: string | undefined;
|
|
592
|
+
justify?: string | undefined;
|
|
593
|
+
wrap?: boolean | undefined;
|
|
594
|
+
noMobile?: boolean | undefined;
|
|
595
|
+
$props: {
|
|
596
|
+
readonly config?: Record<string, any> | undefined;
|
|
597
|
+
readonly dataTest?: string | undefined;
|
|
598
|
+
readonly reverse?: boolean | undefined;
|
|
599
|
+
readonly content?: string | undefined;
|
|
600
|
+
readonly gap?: string | undefined;
|
|
601
|
+
readonly align?: string | undefined;
|
|
602
|
+
readonly justify?: string | undefined;
|
|
603
|
+
readonly wrap?: boolean | undefined;
|
|
604
|
+
readonly noMobile?: boolean | undefined;
|
|
605
|
+
};
|
|
606
|
+
}, {}, {}, {}, {}>;
|
|
607
|
+
__isFragment?: never;
|
|
608
|
+
__isTeleport?: never;
|
|
609
|
+
__isSuspense?: never;
|
|
610
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
611
|
+
config: Record<string, any>;
|
|
612
|
+
dataTest: string;
|
|
613
|
+
reverse?: boolean | undefined;
|
|
614
|
+
content?: string | undefined;
|
|
615
|
+
gap?: string | undefined;
|
|
616
|
+
align?: string | undefined;
|
|
617
|
+
justify?: string | undefined;
|
|
618
|
+
wrap?: boolean | undefined;
|
|
619
|
+
noMobile?: boolean | undefined;
|
|
620
|
+
$props: {
|
|
621
|
+
readonly config?: Record<string, any> | undefined;
|
|
622
|
+
readonly dataTest?: string | undefined;
|
|
623
|
+
readonly reverse?: boolean | undefined;
|
|
624
|
+
readonly content?: string | undefined;
|
|
625
|
+
readonly gap?: string | undefined;
|
|
626
|
+
readonly align?: string | undefined;
|
|
627
|
+
readonly justify?: string | undefined;
|
|
628
|
+
readonly wrap?: boolean | undefined;
|
|
629
|
+
readonly noMobile?: boolean | undefined;
|
|
630
|
+
};
|
|
631
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
632
|
+
$slots: {
|
|
633
|
+
default?(_: {}): any;
|
|
634
|
+
};
|
|
635
|
+
});
|
|
636
|
+
};
|
|
637
|
+
setup(): {
|
|
638
|
+
args: any;
|
|
639
|
+
options: any;
|
|
640
|
+
prefixedOptions: any;
|
|
641
|
+
};
|
|
642
|
+
template: string;
|
|
643
|
+
};
|
|
644
|
+
export namespace Colors {
|
|
645
|
+
export namespace args_3 {
|
|
646
|
+
let _enum_1: string;
|
|
647
|
+
export { _enum_1 as enum };
|
|
648
|
+
}
|
|
649
|
+
export { args_3 as args };
|
|
650
|
+
}
|
|
651
|
+
export function WithoutDropdownIcon(args: any): {
|
|
652
|
+
components: {
|
|
653
|
+
UDropdownLink: {
|
|
654
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
655
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
656
|
+
label: string;
|
|
657
|
+
id: string;
|
|
658
|
+
config: Record<string, any>;
|
|
659
|
+
options: unknown[];
|
|
660
|
+
dataTest: string;
|
|
661
|
+
color?: string | undefined;
|
|
662
|
+
disabled?: boolean | undefined;
|
|
663
|
+
size?: string | undefined;
|
|
664
|
+
noRing?: boolean | undefined;
|
|
665
|
+
underlined?: boolean | undefined;
|
|
666
|
+
dashed?: boolean | undefined;
|
|
667
|
+
labelKey?: string | undefined;
|
|
668
|
+
noIcon?: boolean | undefined;
|
|
669
|
+
yPosition?: string | undefined;
|
|
670
|
+
xPosition?: string | undefined;
|
|
671
|
+
$props: {
|
|
672
|
+
readonly label?: string | undefined;
|
|
673
|
+
readonly id?: string | undefined;
|
|
674
|
+
readonly config?: Record<string, any> | undefined;
|
|
675
|
+
readonly options?: unknown[] | undefined;
|
|
676
|
+
readonly dataTest?: string | undefined;
|
|
677
|
+
readonly color?: string | undefined;
|
|
678
|
+
readonly disabled?: boolean | undefined;
|
|
679
|
+
readonly size?: string | undefined;
|
|
680
|
+
readonly noRing?: boolean | undefined;
|
|
681
|
+
readonly underlined?: boolean | undefined;
|
|
682
|
+
readonly dashed?: boolean | undefined;
|
|
683
|
+
readonly labelKey?: string | undefined;
|
|
684
|
+
readonly noIcon?: boolean | undefined;
|
|
685
|
+
readonly yPosition?: string | undefined;
|
|
686
|
+
readonly xPosition?: string | undefined;
|
|
687
|
+
};
|
|
688
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
689
|
+
P: {};
|
|
690
|
+
B: {};
|
|
691
|
+
D: {};
|
|
692
|
+
C: {};
|
|
693
|
+
M: {};
|
|
694
|
+
Defaults: {};
|
|
695
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
696
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
697
|
+
label: string;
|
|
698
|
+
id: string;
|
|
699
|
+
config: Record<string, any>;
|
|
700
|
+
options: unknown[];
|
|
701
|
+
dataTest: string;
|
|
702
|
+
color?: string | undefined;
|
|
703
|
+
disabled?: boolean | undefined;
|
|
704
|
+
size?: string | undefined;
|
|
705
|
+
noRing?: boolean | undefined;
|
|
706
|
+
underlined?: boolean | undefined;
|
|
707
|
+
dashed?: boolean | undefined;
|
|
708
|
+
labelKey?: string | undefined;
|
|
709
|
+
noIcon?: boolean | undefined;
|
|
710
|
+
yPosition?: string | undefined;
|
|
711
|
+
xPosition?: string | undefined;
|
|
712
|
+
$props: {
|
|
713
|
+
readonly label?: string | undefined;
|
|
714
|
+
readonly id?: string | undefined;
|
|
715
|
+
readonly config?: Record<string, any> | undefined;
|
|
716
|
+
readonly options?: unknown[] | undefined;
|
|
717
|
+
readonly dataTest?: string | undefined;
|
|
718
|
+
readonly color?: string | undefined;
|
|
719
|
+
readonly disabled?: boolean | undefined;
|
|
720
|
+
readonly size?: string | undefined;
|
|
721
|
+
readonly noRing?: boolean | undefined;
|
|
722
|
+
readonly underlined?: boolean | undefined;
|
|
723
|
+
readonly dashed?: boolean | undefined;
|
|
724
|
+
readonly labelKey?: string | undefined;
|
|
725
|
+
readonly noIcon?: boolean | undefined;
|
|
726
|
+
readonly yPosition?: string | undefined;
|
|
727
|
+
readonly xPosition?: string | undefined;
|
|
728
|
+
};
|
|
729
|
+
}, {}, {}, {}, {}>;
|
|
730
|
+
__isFragment?: never;
|
|
731
|
+
__isTeleport?: never;
|
|
732
|
+
__isSuspense?: never;
|
|
733
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
734
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
735
|
+
label: string;
|
|
736
|
+
id: string;
|
|
737
|
+
config: Record<string, any>;
|
|
738
|
+
options: unknown[];
|
|
739
|
+
dataTest: string;
|
|
740
|
+
color?: string | undefined;
|
|
741
|
+
disabled?: boolean | undefined;
|
|
742
|
+
size?: string | undefined;
|
|
743
|
+
noRing?: boolean | undefined;
|
|
744
|
+
underlined?: boolean | undefined;
|
|
745
|
+
dashed?: boolean | undefined;
|
|
746
|
+
labelKey?: string | undefined;
|
|
747
|
+
noIcon?: boolean | undefined;
|
|
748
|
+
yPosition?: string | undefined;
|
|
749
|
+
xPosition?: string | undefined;
|
|
750
|
+
$props: {
|
|
751
|
+
readonly label?: string | undefined;
|
|
752
|
+
readonly id?: string | undefined;
|
|
753
|
+
readonly config?: Record<string, any> | undefined;
|
|
754
|
+
readonly options?: unknown[] | undefined;
|
|
755
|
+
readonly dataTest?: string | undefined;
|
|
756
|
+
readonly color?: string | undefined;
|
|
757
|
+
readonly disabled?: boolean | undefined;
|
|
758
|
+
readonly size?: string | undefined;
|
|
759
|
+
readonly noRing?: boolean | undefined;
|
|
760
|
+
readonly underlined?: boolean | undefined;
|
|
761
|
+
readonly dashed?: boolean | undefined;
|
|
762
|
+
readonly labelKey?: string | undefined;
|
|
763
|
+
readonly noIcon?: boolean | undefined;
|
|
764
|
+
readonly yPosition?: string | undefined;
|
|
765
|
+
readonly xPosition?: string | undefined;
|
|
766
|
+
};
|
|
767
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
768
|
+
$slots: {
|
|
769
|
+
left?(_: {
|
|
770
|
+
opened: boolean;
|
|
771
|
+
}): any;
|
|
772
|
+
default?(_: {
|
|
773
|
+
label: string;
|
|
774
|
+
opened: boolean;
|
|
775
|
+
}): any;
|
|
776
|
+
right?(_: {
|
|
777
|
+
opened: boolean;
|
|
778
|
+
}): any;
|
|
779
|
+
};
|
|
780
|
+
});
|
|
781
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
782
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
783
|
+
config: Record<string, any>;
|
|
784
|
+
name: string;
|
|
785
|
+
src: Record<string, any>;
|
|
786
|
+
tooltip: string;
|
|
787
|
+
tooltipSettings: Record<string, any>;
|
|
788
|
+
dataTest: string;
|
|
789
|
+
internal: boolean;
|
|
790
|
+
color?: string | undefined;
|
|
791
|
+
size?: string | undefined;
|
|
792
|
+
interactive?: boolean | undefined;
|
|
793
|
+
variant?: string | undefined;
|
|
794
|
+
$props: {
|
|
795
|
+
readonly config?: Record<string, any> | undefined;
|
|
796
|
+
readonly name?: string | undefined;
|
|
797
|
+
readonly src?: Record<string, any> | undefined;
|
|
798
|
+
readonly tooltip?: string | undefined;
|
|
799
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
800
|
+
readonly dataTest?: string | undefined;
|
|
801
|
+
readonly internal?: boolean | undefined;
|
|
802
|
+
readonly color?: string | undefined;
|
|
803
|
+
readonly size?: string | undefined;
|
|
804
|
+
readonly interactive?: boolean | undefined;
|
|
805
|
+
readonly variant?: string | undefined;
|
|
806
|
+
};
|
|
807
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
808
|
+
};
|
|
809
|
+
setup(): {
|
|
810
|
+
args: any;
|
|
811
|
+
slots: any;
|
|
812
|
+
};
|
|
813
|
+
template: string;
|
|
814
|
+
};
|
|
815
|
+
export namespace WithoutDropdownIcon {
|
|
816
|
+
export namespace args_4 {
|
|
817
|
+
let noIcon: boolean;
|
|
818
|
+
}
|
|
819
|
+
export { args_4 as args };
|
|
820
|
+
}
|
|
821
|
+
export function DefaultSlot(args: any): {
|
|
822
|
+
components: {
|
|
823
|
+
UDropdownLink: {
|
|
824
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
825
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
826
|
+
label: string;
|
|
827
|
+
id: string;
|
|
828
|
+
config: Record<string, any>;
|
|
829
|
+
options: unknown[];
|
|
830
|
+
dataTest: string;
|
|
831
|
+
color?: string | undefined;
|
|
832
|
+
disabled?: boolean | undefined;
|
|
833
|
+
size?: string | undefined;
|
|
834
|
+
noRing?: boolean | undefined;
|
|
835
|
+
underlined?: boolean | undefined;
|
|
836
|
+
dashed?: boolean | undefined;
|
|
837
|
+
labelKey?: string | undefined;
|
|
838
|
+
noIcon?: boolean | undefined;
|
|
839
|
+
yPosition?: string | undefined;
|
|
840
|
+
xPosition?: string | undefined;
|
|
841
|
+
$props: {
|
|
842
|
+
readonly label?: string | undefined;
|
|
843
|
+
readonly id?: string | undefined;
|
|
844
|
+
readonly config?: Record<string, any> | undefined;
|
|
845
|
+
readonly options?: unknown[] | undefined;
|
|
846
|
+
readonly dataTest?: string | undefined;
|
|
847
|
+
readonly color?: string | undefined;
|
|
848
|
+
readonly disabled?: boolean | undefined;
|
|
849
|
+
readonly size?: string | undefined;
|
|
850
|
+
readonly noRing?: boolean | undefined;
|
|
851
|
+
readonly underlined?: boolean | undefined;
|
|
852
|
+
readonly dashed?: boolean | undefined;
|
|
853
|
+
readonly labelKey?: string | undefined;
|
|
854
|
+
readonly noIcon?: boolean | undefined;
|
|
855
|
+
readonly yPosition?: string | undefined;
|
|
856
|
+
readonly xPosition?: string | undefined;
|
|
857
|
+
};
|
|
858
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
859
|
+
P: {};
|
|
860
|
+
B: {};
|
|
861
|
+
D: {};
|
|
862
|
+
C: {};
|
|
863
|
+
M: {};
|
|
864
|
+
Defaults: {};
|
|
865
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
866
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
867
|
+
label: string;
|
|
868
|
+
id: string;
|
|
869
|
+
config: Record<string, any>;
|
|
870
|
+
options: unknown[];
|
|
871
|
+
dataTest: string;
|
|
872
|
+
color?: string | undefined;
|
|
873
|
+
disabled?: boolean | undefined;
|
|
874
|
+
size?: string | undefined;
|
|
875
|
+
noRing?: boolean | undefined;
|
|
876
|
+
underlined?: boolean | undefined;
|
|
877
|
+
dashed?: boolean | undefined;
|
|
878
|
+
labelKey?: string | undefined;
|
|
879
|
+
noIcon?: boolean | undefined;
|
|
880
|
+
yPosition?: string | undefined;
|
|
881
|
+
xPosition?: string | undefined;
|
|
882
|
+
$props: {
|
|
883
|
+
readonly label?: string | undefined;
|
|
884
|
+
readonly id?: string | undefined;
|
|
885
|
+
readonly config?: Record<string, any> | undefined;
|
|
886
|
+
readonly options?: unknown[] | undefined;
|
|
887
|
+
readonly dataTest?: string | undefined;
|
|
888
|
+
readonly color?: string | undefined;
|
|
889
|
+
readonly disabled?: boolean | undefined;
|
|
890
|
+
readonly size?: string | undefined;
|
|
891
|
+
readonly noRing?: boolean | undefined;
|
|
892
|
+
readonly underlined?: boolean | undefined;
|
|
893
|
+
readonly dashed?: boolean | undefined;
|
|
894
|
+
readonly labelKey?: string | undefined;
|
|
895
|
+
readonly noIcon?: boolean | undefined;
|
|
896
|
+
readonly yPosition?: string | undefined;
|
|
897
|
+
readonly xPosition?: string | undefined;
|
|
898
|
+
};
|
|
899
|
+
}, {}, {}, {}, {}>;
|
|
900
|
+
__isFragment?: never;
|
|
901
|
+
__isTeleport?: never;
|
|
902
|
+
__isSuspense?: never;
|
|
903
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
904
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
905
|
+
label: string;
|
|
906
|
+
id: string;
|
|
907
|
+
config: Record<string, any>;
|
|
908
|
+
options: unknown[];
|
|
909
|
+
dataTest: string;
|
|
910
|
+
color?: string | undefined;
|
|
911
|
+
disabled?: boolean | undefined;
|
|
912
|
+
size?: string | undefined;
|
|
913
|
+
noRing?: boolean | undefined;
|
|
914
|
+
underlined?: boolean | undefined;
|
|
915
|
+
dashed?: boolean | undefined;
|
|
916
|
+
labelKey?: string | undefined;
|
|
917
|
+
noIcon?: boolean | undefined;
|
|
918
|
+
yPosition?: string | undefined;
|
|
919
|
+
xPosition?: string | undefined;
|
|
920
|
+
$props: {
|
|
921
|
+
readonly label?: string | undefined;
|
|
922
|
+
readonly id?: string | undefined;
|
|
923
|
+
readonly config?: Record<string, any> | undefined;
|
|
924
|
+
readonly options?: unknown[] | undefined;
|
|
925
|
+
readonly dataTest?: string | undefined;
|
|
926
|
+
readonly color?: string | undefined;
|
|
927
|
+
readonly disabled?: boolean | undefined;
|
|
928
|
+
readonly size?: string | undefined;
|
|
929
|
+
readonly noRing?: boolean | undefined;
|
|
930
|
+
readonly underlined?: boolean | undefined;
|
|
931
|
+
readonly dashed?: boolean | undefined;
|
|
932
|
+
readonly labelKey?: string | undefined;
|
|
933
|
+
readonly noIcon?: boolean | undefined;
|
|
934
|
+
readonly yPosition?: string | undefined;
|
|
935
|
+
readonly xPosition?: string | undefined;
|
|
936
|
+
};
|
|
937
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
938
|
+
$slots: {
|
|
939
|
+
left?(_: {
|
|
940
|
+
opened: boolean;
|
|
941
|
+
}): any;
|
|
942
|
+
default?(_: {
|
|
943
|
+
label: string;
|
|
944
|
+
opened: boolean;
|
|
945
|
+
}): any;
|
|
946
|
+
right?(_: {
|
|
947
|
+
opened: boolean;
|
|
948
|
+
}): any;
|
|
949
|
+
};
|
|
950
|
+
});
|
|
951
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
952
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
953
|
+
config: Record<string, any>;
|
|
954
|
+
name: string;
|
|
955
|
+
src: Record<string, any>;
|
|
956
|
+
tooltip: string;
|
|
957
|
+
tooltipSettings: Record<string, any>;
|
|
958
|
+
dataTest: string;
|
|
959
|
+
internal: boolean;
|
|
960
|
+
color?: string | undefined;
|
|
961
|
+
size?: string | undefined;
|
|
962
|
+
interactive?: boolean | undefined;
|
|
963
|
+
variant?: string | undefined;
|
|
964
|
+
$props: {
|
|
965
|
+
readonly config?: Record<string, any> | undefined;
|
|
966
|
+
readonly name?: string | undefined;
|
|
967
|
+
readonly src?: Record<string, any> | undefined;
|
|
968
|
+
readonly tooltip?: string | undefined;
|
|
969
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
970
|
+
readonly dataTest?: string | undefined;
|
|
971
|
+
readonly internal?: boolean | undefined;
|
|
972
|
+
readonly color?: string | undefined;
|
|
973
|
+
readonly size?: string | undefined;
|
|
974
|
+
readonly interactive?: boolean | undefined;
|
|
975
|
+
readonly variant?: string | undefined;
|
|
976
|
+
};
|
|
977
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
978
|
+
};
|
|
979
|
+
setup(): {
|
|
980
|
+
args: any;
|
|
981
|
+
slots: any;
|
|
982
|
+
};
|
|
983
|
+
template: string;
|
|
984
|
+
};
|
|
985
|
+
export namespace DefaultSlot {
|
|
986
|
+
export namespace args_5 {
|
|
987
|
+
let slotTemplate: string;
|
|
988
|
+
}
|
|
989
|
+
export { args_5 as args };
|
|
990
|
+
}
|
|
991
|
+
export function LeftSlot(args: any): {
|
|
992
|
+
components: {
|
|
993
|
+
UDropdownLink: {
|
|
994
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
995
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
996
|
+
label: string;
|
|
997
|
+
id: string;
|
|
998
|
+
config: Record<string, any>;
|
|
999
|
+
options: unknown[];
|
|
1000
|
+
dataTest: string;
|
|
1001
|
+
color?: string | undefined;
|
|
1002
|
+
disabled?: boolean | undefined;
|
|
1003
|
+
size?: string | undefined;
|
|
1004
|
+
noRing?: boolean | undefined;
|
|
1005
|
+
underlined?: boolean | undefined;
|
|
1006
|
+
dashed?: boolean | undefined;
|
|
1007
|
+
labelKey?: string | undefined;
|
|
1008
|
+
noIcon?: boolean | undefined;
|
|
1009
|
+
yPosition?: string | undefined;
|
|
1010
|
+
xPosition?: string | undefined;
|
|
1011
|
+
$props: {
|
|
1012
|
+
readonly label?: string | undefined;
|
|
1013
|
+
readonly id?: string | undefined;
|
|
1014
|
+
readonly config?: Record<string, any> | undefined;
|
|
1015
|
+
readonly options?: unknown[] | undefined;
|
|
1016
|
+
readonly dataTest?: string | undefined;
|
|
1017
|
+
readonly color?: string | undefined;
|
|
1018
|
+
readonly disabled?: boolean | undefined;
|
|
1019
|
+
readonly size?: string | undefined;
|
|
1020
|
+
readonly noRing?: boolean | undefined;
|
|
1021
|
+
readonly underlined?: boolean | undefined;
|
|
1022
|
+
readonly dashed?: boolean | undefined;
|
|
1023
|
+
readonly labelKey?: string | undefined;
|
|
1024
|
+
readonly noIcon?: boolean | undefined;
|
|
1025
|
+
readonly yPosition?: string | undefined;
|
|
1026
|
+
readonly xPosition?: string | undefined;
|
|
1027
|
+
};
|
|
1028
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1029
|
+
P: {};
|
|
1030
|
+
B: {};
|
|
1031
|
+
D: {};
|
|
1032
|
+
C: {};
|
|
1033
|
+
M: {};
|
|
1034
|
+
Defaults: {};
|
|
1035
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1036
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
1037
|
+
label: string;
|
|
1038
|
+
id: string;
|
|
1039
|
+
config: Record<string, any>;
|
|
1040
|
+
options: unknown[];
|
|
1041
|
+
dataTest: string;
|
|
1042
|
+
color?: string | undefined;
|
|
1043
|
+
disabled?: boolean | undefined;
|
|
1044
|
+
size?: string | undefined;
|
|
1045
|
+
noRing?: boolean | undefined;
|
|
1046
|
+
underlined?: boolean | undefined;
|
|
1047
|
+
dashed?: boolean | undefined;
|
|
1048
|
+
labelKey?: string | undefined;
|
|
1049
|
+
noIcon?: boolean | undefined;
|
|
1050
|
+
yPosition?: string | undefined;
|
|
1051
|
+
xPosition?: string | undefined;
|
|
1052
|
+
$props: {
|
|
1053
|
+
readonly label?: string | undefined;
|
|
1054
|
+
readonly id?: string | undefined;
|
|
1055
|
+
readonly config?: Record<string, any> | undefined;
|
|
1056
|
+
readonly options?: unknown[] | undefined;
|
|
1057
|
+
readonly dataTest?: string | undefined;
|
|
1058
|
+
readonly color?: string | undefined;
|
|
1059
|
+
readonly disabled?: boolean | undefined;
|
|
1060
|
+
readonly size?: string | undefined;
|
|
1061
|
+
readonly noRing?: boolean | undefined;
|
|
1062
|
+
readonly underlined?: boolean | undefined;
|
|
1063
|
+
readonly dashed?: boolean | undefined;
|
|
1064
|
+
readonly labelKey?: string | undefined;
|
|
1065
|
+
readonly noIcon?: boolean | undefined;
|
|
1066
|
+
readonly yPosition?: string | undefined;
|
|
1067
|
+
readonly xPosition?: string | undefined;
|
|
1068
|
+
};
|
|
1069
|
+
}, {}, {}, {}, {}>;
|
|
1070
|
+
__isFragment?: never;
|
|
1071
|
+
__isTeleport?: never;
|
|
1072
|
+
__isSuspense?: never;
|
|
1073
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1074
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
1075
|
+
label: string;
|
|
1076
|
+
id: string;
|
|
1077
|
+
config: Record<string, any>;
|
|
1078
|
+
options: unknown[];
|
|
1079
|
+
dataTest: string;
|
|
1080
|
+
color?: string | undefined;
|
|
1081
|
+
disabled?: boolean | undefined;
|
|
1082
|
+
size?: string | undefined;
|
|
1083
|
+
noRing?: boolean | undefined;
|
|
1084
|
+
underlined?: boolean | undefined;
|
|
1085
|
+
dashed?: boolean | undefined;
|
|
1086
|
+
labelKey?: string | undefined;
|
|
1087
|
+
noIcon?: boolean | undefined;
|
|
1088
|
+
yPosition?: string | undefined;
|
|
1089
|
+
xPosition?: string | undefined;
|
|
1090
|
+
$props: {
|
|
1091
|
+
readonly label?: string | undefined;
|
|
1092
|
+
readonly id?: string | undefined;
|
|
1093
|
+
readonly config?: Record<string, any> | undefined;
|
|
1094
|
+
readonly options?: unknown[] | undefined;
|
|
1095
|
+
readonly dataTest?: string | undefined;
|
|
1096
|
+
readonly color?: string | undefined;
|
|
1097
|
+
readonly disabled?: boolean | undefined;
|
|
1098
|
+
readonly size?: string | undefined;
|
|
1099
|
+
readonly noRing?: boolean | undefined;
|
|
1100
|
+
readonly underlined?: boolean | undefined;
|
|
1101
|
+
readonly dashed?: boolean | undefined;
|
|
1102
|
+
readonly labelKey?: string | undefined;
|
|
1103
|
+
readonly noIcon?: boolean | undefined;
|
|
1104
|
+
readonly yPosition?: string | undefined;
|
|
1105
|
+
readonly xPosition?: string | undefined;
|
|
1106
|
+
};
|
|
1107
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1108
|
+
$slots: {
|
|
1109
|
+
left?(_: {
|
|
1110
|
+
opened: boolean;
|
|
1111
|
+
}): any;
|
|
1112
|
+
default?(_: {
|
|
1113
|
+
label: string;
|
|
1114
|
+
opened: boolean;
|
|
1115
|
+
}): any;
|
|
1116
|
+
right?(_: {
|
|
1117
|
+
opened: boolean;
|
|
1118
|
+
}): any;
|
|
1119
|
+
};
|
|
1120
|
+
});
|
|
1121
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1122
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1123
|
+
config: Record<string, any>;
|
|
1124
|
+
name: string;
|
|
1125
|
+
src: Record<string, any>;
|
|
1126
|
+
tooltip: string;
|
|
1127
|
+
tooltipSettings: Record<string, any>;
|
|
1128
|
+
dataTest: string;
|
|
1129
|
+
internal: boolean;
|
|
1130
|
+
color?: string | undefined;
|
|
1131
|
+
size?: string | undefined;
|
|
1132
|
+
interactive?: boolean | undefined;
|
|
1133
|
+
variant?: string | undefined;
|
|
1134
|
+
$props: {
|
|
1135
|
+
readonly config?: Record<string, any> | undefined;
|
|
1136
|
+
readonly name?: string | undefined;
|
|
1137
|
+
readonly src?: Record<string, any> | undefined;
|
|
1138
|
+
readonly tooltip?: string | undefined;
|
|
1139
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1140
|
+
readonly dataTest?: string | undefined;
|
|
1141
|
+
readonly internal?: boolean | undefined;
|
|
1142
|
+
readonly color?: string | undefined;
|
|
1143
|
+
readonly size?: string | undefined;
|
|
1144
|
+
readonly interactive?: boolean | undefined;
|
|
1145
|
+
readonly variant?: string | undefined;
|
|
1146
|
+
};
|
|
1147
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1148
|
+
};
|
|
1149
|
+
setup(): {
|
|
1150
|
+
args: any;
|
|
1151
|
+
slots: any;
|
|
1152
|
+
};
|
|
1153
|
+
template: string;
|
|
1154
|
+
};
|
|
1155
|
+
export namespace LeftSlot {
|
|
1156
|
+
export namespace args_6 {
|
|
1157
|
+
let slotTemplate_1: string;
|
|
1158
|
+
export { slotTemplate_1 as slotTemplate };
|
|
1159
|
+
}
|
|
1160
|
+
export { args_6 as args };
|
|
1161
|
+
}
|
|
1162
|
+
export function RightSlot(args: any): {
|
|
1163
|
+
components: {
|
|
1164
|
+
UDropdownLink: {
|
|
1165
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1166
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
1167
|
+
label: string;
|
|
1168
|
+
id: string;
|
|
1169
|
+
config: Record<string, any>;
|
|
1170
|
+
options: unknown[];
|
|
1171
|
+
dataTest: string;
|
|
1172
|
+
color?: string | undefined;
|
|
1173
|
+
disabled?: boolean | undefined;
|
|
1174
|
+
size?: string | undefined;
|
|
1175
|
+
noRing?: boolean | undefined;
|
|
1176
|
+
underlined?: boolean | undefined;
|
|
1177
|
+
dashed?: boolean | undefined;
|
|
1178
|
+
labelKey?: string | undefined;
|
|
1179
|
+
noIcon?: boolean | undefined;
|
|
1180
|
+
yPosition?: string | undefined;
|
|
1181
|
+
xPosition?: string | undefined;
|
|
1182
|
+
$props: {
|
|
1183
|
+
readonly label?: string | undefined;
|
|
1184
|
+
readonly id?: string | undefined;
|
|
1185
|
+
readonly config?: Record<string, any> | undefined;
|
|
1186
|
+
readonly options?: unknown[] | undefined;
|
|
1187
|
+
readonly dataTest?: string | undefined;
|
|
1188
|
+
readonly color?: string | undefined;
|
|
1189
|
+
readonly disabled?: boolean | undefined;
|
|
1190
|
+
readonly size?: string | undefined;
|
|
1191
|
+
readonly noRing?: boolean | undefined;
|
|
1192
|
+
readonly underlined?: boolean | undefined;
|
|
1193
|
+
readonly dashed?: boolean | undefined;
|
|
1194
|
+
readonly labelKey?: string | undefined;
|
|
1195
|
+
readonly noIcon?: boolean | undefined;
|
|
1196
|
+
readonly yPosition?: string | undefined;
|
|
1197
|
+
readonly xPosition?: string | undefined;
|
|
1198
|
+
};
|
|
1199
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1200
|
+
P: {};
|
|
1201
|
+
B: {};
|
|
1202
|
+
D: {};
|
|
1203
|
+
C: {};
|
|
1204
|
+
M: {};
|
|
1205
|
+
Defaults: {};
|
|
1206
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1207
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
1208
|
+
label: string;
|
|
1209
|
+
id: string;
|
|
1210
|
+
config: Record<string, any>;
|
|
1211
|
+
options: unknown[];
|
|
1212
|
+
dataTest: string;
|
|
1213
|
+
color?: string | undefined;
|
|
1214
|
+
disabled?: boolean | undefined;
|
|
1215
|
+
size?: string | undefined;
|
|
1216
|
+
noRing?: boolean | undefined;
|
|
1217
|
+
underlined?: boolean | undefined;
|
|
1218
|
+
dashed?: boolean | undefined;
|
|
1219
|
+
labelKey?: string | undefined;
|
|
1220
|
+
noIcon?: boolean | undefined;
|
|
1221
|
+
yPosition?: string | undefined;
|
|
1222
|
+
xPosition?: string | undefined;
|
|
1223
|
+
$props: {
|
|
1224
|
+
readonly label?: string | undefined;
|
|
1225
|
+
readonly id?: string | undefined;
|
|
1226
|
+
readonly config?: Record<string, any> | undefined;
|
|
1227
|
+
readonly options?: unknown[] | undefined;
|
|
1228
|
+
readonly dataTest?: string | undefined;
|
|
1229
|
+
readonly color?: string | undefined;
|
|
1230
|
+
readonly disabled?: boolean | undefined;
|
|
1231
|
+
readonly size?: string | undefined;
|
|
1232
|
+
readonly noRing?: boolean | undefined;
|
|
1233
|
+
readonly underlined?: boolean | undefined;
|
|
1234
|
+
readonly dashed?: boolean | undefined;
|
|
1235
|
+
readonly labelKey?: string | undefined;
|
|
1236
|
+
readonly noIcon?: boolean | undefined;
|
|
1237
|
+
readonly yPosition?: string | undefined;
|
|
1238
|
+
readonly xPosition?: string | undefined;
|
|
1239
|
+
};
|
|
1240
|
+
}, {}, {}, {}, {}>;
|
|
1241
|
+
__isFragment?: never;
|
|
1242
|
+
__isTeleport?: never;
|
|
1243
|
+
__isSuspense?: never;
|
|
1244
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1245
|
+
$emit: (event: "clickOption", ...args: any[]) => void;
|
|
1246
|
+
label: string;
|
|
1247
|
+
id: string;
|
|
1248
|
+
config: Record<string, any>;
|
|
1249
|
+
options: unknown[];
|
|
1250
|
+
dataTest: string;
|
|
1251
|
+
color?: string | undefined;
|
|
1252
|
+
disabled?: boolean | undefined;
|
|
1253
|
+
size?: string | undefined;
|
|
1254
|
+
noRing?: boolean | undefined;
|
|
1255
|
+
underlined?: boolean | undefined;
|
|
1256
|
+
dashed?: boolean | undefined;
|
|
1257
|
+
labelKey?: string | undefined;
|
|
1258
|
+
noIcon?: boolean | undefined;
|
|
1259
|
+
yPosition?: string | undefined;
|
|
1260
|
+
xPosition?: string | undefined;
|
|
1261
|
+
$props: {
|
|
1262
|
+
readonly label?: string | undefined;
|
|
1263
|
+
readonly id?: string | undefined;
|
|
1264
|
+
readonly config?: Record<string, any> | undefined;
|
|
1265
|
+
readonly options?: unknown[] | undefined;
|
|
1266
|
+
readonly dataTest?: string | undefined;
|
|
1267
|
+
readonly color?: string | undefined;
|
|
1268
|
+
readonly disabled?: boolean | undefined;
|
|
1269
|
+
readonly size?: string | undefined;
|
|
1270
|
+
readonly noRing?: boolean | undefined;
|
|
1271
|
+
readonly underlined?: boolean | undefined;
|
|
1272
|
+
readonly dashed?: boolean | undefined;
|
|
1273
|
+
readonly labelKey?: string | undefined;
|
|
1274
|
+
readonly noIcon?: boolean | undefined;
|
|
1275
|
+
readonly yPosition?: string | undefined;
|
|
1276
|
+
readonly xPosition?: string | undefined;
|
|
1277
|
+
};
|
|
1278
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1279
|
+
$slots: {
|
|
1280
|
+
left?(_: {
|
|
1281
|
+
opened: boolean;
|
|
1282
|
+
}): any;
|
|
1283
|
+
default?(_: {
|
|
1284
|
+
label: string;
|
|
1285
|
+
opened: boolean;
|
|
1286
|
+
}): any;
|
|
1287
|
+
right?(_: {
|
|
1288
|
+
opened: boolean;
|
|
1289
|
+
}): any;
|
|
1290
|
+
};
|
|
1291
|
+
});
|
|
1292
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1293
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1294
|
+
config: Record<string, any>;
|
|
1295
|
+
name: string;
|
|
1296
|
+
src: Record<string, any>;
|
|
1297
|
+
tooltip: string;
|
|
1298
|
+
tooltipSettings: Record<string, any>;
|
|
1299
|
+
dataTest: string;
|
|
1300
|
+
internal: boolean;
|
|
1301
|
+
color?: string | undefined;
|
|
1302
|
+
size?: string | undefined;
|
|
1303
|
+
interactive?: boolean | undefined;
|
|
1304
|
+
variant?: string | undefined;
|
|
1305
|
+
$props: {
|
|
1306
|
+
readonly config?: Record<string, any> | undefined;
|
|
1307
|
+
readonly name?: string | undefined;
|
|
1308
|
+
readonly src?: Record<string, any> | undefined;
|
|
1309
|
+
readonly tooltip?: string | undefined;
|
|
1310
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1311
|
+
readonly dataTest?: string | undefined;
|
|
1312
|
+
readonly internal?: boolean | undefined;
|
|
1313
|
+
readonly color?: string | undefined;
|
|
1314
|
+
readonly size?: string | undefined;
|
|
1315
|
+
readonly interactive?: boolean | undefined;
|
|
1316
|
+
readonly variant?: string | undefined;
|
|
1317
|
+
};
|
|
1318
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1319
|
+
};
|
|
1320
|
+
setup(): {
|
|
1321
|
+
args: any;
|
|
1322
|
+
slots: any;
|
|
1323
|
+
};
|
|
1324
|
+
template: string;
|
|
1325
|
+
};
|
|
1326
|
+
export namespace RightSlot {
|
|
1327
|
+
export namespace args_7 {
|
|
1328
|
+
let slotTemplate_2: string;
|
|
1329
|
+
export { slotTemplate_2 as slotTemplate };
|
|
1330
|
+
}
|
|
1331
|
+
export { args_7 as args };
|
|
1332
|
+
}
|
|
1333
|
+
import UDropdownLink from "../../ui.dropdown-link/UDropdownLink.vue";
|