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,4494 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let id: string;
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { UModalConfirm as component };
|
|
5
|
+
export namespace args {
|
|
6
|
+
let title_1: string;
|
|
7
|
+
export { title_1 as title };
|
|
8
|
+
export let confirmLabel: string;
|
|
9
|
+
export let modelValue: boolean;
|
|
10
|
+
}
|
|
11
|
+
export let argTypes: {
|
|
12
|
+
defaultTemplate?: {
|
|
13
|
+
table: {
|
|
14
|
+
disable: boolean;
|
|
15
|
+
};
|
|
16
|
+
} | undefined;
|
|
17
|
+
slotTemplate?: {
|
|
18
|
+
table: {
|
|
19
|
+
disable: boolean;
|
|
20
|
+
};
|
|
21
|
+
} | undefined;
|
|
22
|
+
};
|
|
23
|
+
export namespace parameters {
|
|
24
|
+
namespace docs {
|
|
25
|
+
namespace story {
|
|
26
|
+
let height: string;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
export default _default;
|
|
32
|
+
export function Default(args: any): {
|
|
33
|
+
components: {
|
|
34
|
+
UModalConfirm: {
|
|
35
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
36
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
37
|
+
id: string;
|
|
38
|
+
description: string;
|
|
39
|
+
title: string;
|
|
40
|
+
config: Record<string, any>;
|
|
41
|
+
dataTest: string;
|
|
42
|
+
modelValue: boolean;
|
|
43
|
+
confirmLabel: string;
|
|
44
|
+
size?: string | undefined;
|
|
45
|
+
closeOnCross?: boolean | undefined;
|
|
46
|
+
closeOnOverlay?: boolean | undefined;
|
|
47
|
+
closeOnEsc?: boolean | undefined;
|
|
48
|
+
inner?: boolean | undefined;
|
|
49
|
+
mobileStickBottom?: boolean | undefined;
|
|
50
|
+
confirmColor?: string | undefined;
|
|
51
|
+
confirmDisabled?: boolean | undefined;
|
|
52
|
+
cancelHidden?: boolean | undefined;
|
|
53
|
+
$props: {
|
|
54
|
+
readonly id?: string | undefined;
|
|
55
|
+
readonly description?: string | undefined;
|
|
56
|
+
readonly title?: string | undefined;
|
|
57
|
+
readonly config?: Record<string, any> | undefined;
|
|
58
|
+
readonly dataTest?: string | undefined;
|
|
59
|
+
readonly modelValue?: boolean | undefined;
|
|
60
|
+
readonly confirmLabel?: string | undefined;
|
|
61
|
+
readonly size?: string | undefined;
|
|
62
|
+
readonly closeOnCross?: boolean | undefined;
|
|
63
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
64
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
65
|
+
readonly inner?: boolean | undefined;
|
|
66
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
67
|
+
readonly confirmColor?: string | undefined;
|
|
68
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
69
|
+
readonly cancelHidden?: boolean | undefined;
|
|
70
|
+
};
|
|
71
|
+
}, {}, {}, {}, 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, {
|
|
72
|
+
P: {};
|
|
73
|
+
B: {};
|
|
74
|
+
D: {};
|
|
75
|
+
C: {};
|
|
76
|
+
M: {};
|
|
77
|
+
Defaults: {};
|
|
78
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
79
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
80
|
+
id: string;
|
|
81
|
+
description: string;
|
|
82
|
+
title: string;
|
|
83
|
+
config: Record<string, any>;
|
|
84
|
+
dataTest: string;
|
|
85
|
+
modelValue: boolean;
|
|
86
|
+
confirmLabel: string;
|
|
87
|
+
size?: string | undefined;
|
|
88
|
+
closeOnCross?: boolean | undefined;
|
|
89
|
+
closeOnOverlay?: boolean | undefined;
|
|
90
|
+
closeOnEsc?: boolean | undefined;
|
|
91
|
+
inner?: boolean | undefined;
|
|
92
|
+
mobileStickBottom?: boolean | undefined;
|
|
93
|
+
confirmColor?: string | undefined;
|
|
94
|
+
confirmDisabled?: boolean | undefined;
|
|
95
|
+
cancelHidden?: boolean | undefined;
|
|
96
|
+
$props: {
|
|
97
|
+
readonly id?: string | undefined;
|
|
98
|
+
readonly description?: string | undefined;
|
|
99
|
+
readonly title?: string | undefined;
|
|
100
|
+
readonly config?: Record<string, any> | undefined;
|
|
101
|
+
readonly dataTest?: string | undefined;
|
|
102
|
+
readonly modelValue?: boolean | undefined;
|
|
103
|
+
readonly confirmLabel?: string | undefined;
|
|
104
|
+
readonly size?: string | undefined;
|
|
105
|
+
readonly closeOnCross?: boolean | undefined;
|
|
106
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
107
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
108
|
+
readonly inner?: boolean | undefined;
|
|
109
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
110
|
+
readonly confirmColor?: string | undefined;
|
|
111
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
112
|
+
readonly cancelHidden?: boolean | undefined;
|
|
113
|
+
};
|
|
114
|
+
}, {}, {}, {}, {}>;
|
|
115
|
+
__isFragment?: never;
|
|
116
|
+
__isTeleport?: never;
|
|
117
|
+
__isSuspense?: never;
|
|
118
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
119
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
120
|
+
id: string;
|
|
121
|
+
description: string;
|
|
122
|
+
title: string;
|
|
123
|
+
config: Record<string, any>;
|
|
124
|
+
dataTest: string;
|
|
125
|
+
modelValue: boolean;
|
|
126
|
+
confirmLabel: string;
|
|
127
|
+
size?: string | undefined;
|
|
128
|
+
closeOnCross?: boolean | undefined;
|
|
129
|
+
closeOnOverlay?: boolean | undefined;
|
|
130
|
+
closeOnEsc?: boolean | undefined;
|
|
131
|
+
inner?: boolean | undefined;
|
|
132
|
+
mobileStickBottom?: boolean | undefined;
|
|
133
|
+
confirmColor?: string | undefined;
|
|
134
|
+
confirmDisabled?: boolean | undefined;
|
|
135
|
+
cancelHidden?: boolean | undefined;
|
|
136
|
+
$props: {
|
|
137
|
+
readonly id?: string | undefined;
|
|
138
|
+
readonly description?: string | undefined;
|
|
139
|
+
readonly title?: string | undefined;
|
|
140
|
+
readonly config?: Record<string, any> | undefined;
|
|
141
|
+
readonly dataTest?: string | undefined;
|
|
142
|
+
readonly modelValue?: boolean | undefined;
|
|
143
|
+
readonly confirmLabel?: string | undefined;
|
|
144
|
+
readonly size?: string | undefined;
|
|
145
|
+
readonly closeOnCross?: boolean | undefined;
|
|
146
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
147
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
148
|
+
readonly inner?: boolean | undefined;
|
|
149
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
150
|
+
readonly confirmColor?: string | undefined;
|
|
151
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
152
|
+
readonly cancelHidden?: boolean | undefined;
|
|
153
|
+
};
|
|
154
|
+
}, {}, {}, {}, 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 () => {
|
|
155
|
+
$slots: {
|
|
156
|
+
"header-left"?(_: {}): any;
|
|
157
|
+
"before-title"?(_: {}): any;
|
|
158
|
+
"after-title"?(_: {}): any;
|
|
159
|
+
"header-right"?(_: {}): any;
|
|
160
|
+
"close-button"?(_: {
|
|
161
|
+
iconName: any;
|
|
162
|
+
}): any;
|
|
163
|
+
default?(_: {}): any;
|
|
164
|
+
"footer-left"?(_: {}): any;
|
|
165
|
+
"footer-right"?(_: {}): any;
|
|
166
|
+
};
|
|
167
|
+
});
|
|
168
|
+
UButton: {
|
|
169
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
170
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
171
|
+
label: string;
|
|
172
|
+
id: string;
|
|
173
|
+
rightIcon: string;
|
|
174
|
+
leftIcon: string;
|
|
175
|
+
config: Record<string, any>;
|
|
176
|
+
dataTest: string;
|
|
177
|
+
icon: string;
|
|
178
|
+
color?: string | undefined;
|
|
179
|
+
disabled?: boolean | undefined;
|
|
180
|
+
size?: string | undefined;
|
|
181
|
+
square?: boolean | undefined;
|
|
182
|
+
filled?: boolean | undefined;
|
|
183
|
+
variant?: string | undefined;
|
|
184
|
+
loading?: boolean | undefined;
|
|
185
|
+
tag?: string | undefined;
|
|
186
|
+
tabindex?: string | number | undefined;
|
|
187
|
+
block?: boolean | undefined;
|
|
188
|
+
round?: boolean | undefined;
|
|
189
|
+
noRing?: boolean | undefined;
|
|
190
|
+
$props: {
|
|
191
|
+
readonly label?: string | undefined;
|
|
192
|
+
readonly id?: string | undefined;
|
|
193
|
+
readonly rightIcon?: string | undefined;
|
|
194
|
+
readonly leftIcon?: string | undefined;
|
|
195
|
+
readonly config?: Record<string, any> | undefined;
|
|
196
|
+
readonly dataTest?: string | undefined;
|
|
197
|
+
readonly icon?: string | undefined;
|
|
198
|
+
readonly color?: string | undefined;
|
|
199
|
+
readonly disabled?: boolean | undefined;
|
|
200
|
+
readonly size?: string | undefined;
|
|
201
|
+
readonly square?: boolean | undefined;
|
|
202
|
+
readonly filled?: boolean | undefined;
|
|
203
|
+
readonly variant?: string | undefined;
|
|
204
|
+
readonly loading?: boolean | undefined;
|
|
205
|
+
readonly tag?: string | undefined;
|
|
206
|
+
readonly tabindex?: string | number | undefined;
|
|
207
|
+
readonly block?: boolean | undefined;
|
|
208
|
+
readonly round?: boolean | undefined;
|
|
209
|
+
readonly noRing?: boolean | undefined;
|
|
210
|
+
};
|
|
211
|
+
}, {}, {}, {}, 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, {
|
|
212
|
+
P: {};
|
|
213
|
+
B: {};
|
|
214
|
+
D: {};
|
|
215
|
+
C: {};
|
|
216
|
+
M: {};
|
|
217
|
+
Defaults: {};
|
|
218
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
219
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
220
|
+
label: string;
|
|
221
|
+
id: string;
|
|
222
|
+
rightIcon: string;
|
|
223
|
+
leftIcon: string;
|
|
224
|
+
config: Record<string, any>;
|
|
225
|
+
dataTest: string;
|
|
226
|
+
icon: string;
|
|
227
|
+
color?: string | undefined;
|
|
228
|
+
disabled?: boolean | undefined;
|
|
229
|
+
size?: string | undefined;
|
|
230
|
+
square?: boolean | undefined;
|
|
231
|
+
filled?: boolean | undefined;
|
|
232
|
+
variant?: string | undefined;
|
|
233
|
+
loading?: boolean | undefined;
|
|
234
|
+
tag?: string | undefined;
|
|
235
|
+
tabindex?: string | number | undefined;
|
|
236
|
+
block?: boolean | undefined;
|
|
237
|
+
round?: boolean | undefined;
|
|
238
|
+
noRing?: boolean | undefined;
|
|
239
|
+
$props: {
|
|
240
|
+
readonly label?: string | undefined;
|
|
241
|
+
readonly id?: string | undefined;
|
|
242
|
+
readonly rightIcon?: string | undefined;
|
|
243
|
+
readonly leftIcon?: string | undefined;
|
|
244
|
+
readonly config?: Record<string, any> | undefined;
|
|
245
|
+
readonly dataTest?: string | undefined;
|
|
246
|
+
readonly icon?: string | undefined;
|
|
247
|
+
readonly color?: string | undefined;
|
|
248
|
+
readonly disabled?: boolean | undefined;
|
|
249
|
+
readonly size?: string | undefined;
|
|
250
|
+
readonly square?: boolean | undefined;
|
|
251
|
+
readonly filled?: boolean | undefined;
|
|
252
|
+
readonly variant?: string | undefined;
|
|
253
|
+
readonly loading?: boolean | undefined;
|
|
254
|
+
readonly tag?: string | undefined;
|
|
255
|
+
readonly tabindex?: string | number | undefined;
|
|
256
|
+
readonly block?: boolean | undefined;
|
|
257
|
+
readonly round?: boolean | undefined;
|
|
258
|
+
readonly noRing?: boolean | undefined;
|
|
259
|
+
};
|
|
260
|
+
}, {}, {}, {}, {}>;
|
|
261
|
+
__isFragment?: never;
|
|
262
|
+
__isTeleport?: never;
|
|
263
|
+
__isSuspense?: never;
|
|
264
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
265
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
266
|
+
label: string;
|
|
267
|
+
id: string;
|
|
268
|
+
rightIcon: string;
|
|
269
|
+
leftIcon: string;
|
|
270
|
+
config: Record<string, any>;
|
|
271
|
+
dataTest: string;
|
|
272
|
+
icon: string;
|
|
273
|
+
color?: string | undefined;
|
|
274
|
+
disabled?: boolean | undefined;
|
|
275
|
+
size?: string | undefined;
|
|
276
|
+
square?: boolean | undefined;
|
|
277
|
+
filled?: boolean | undefined;
|
|
278
|
+
variant?: string | undefined;
|
|
279
|
+
loading?: boolean | undefined;
|
|
280
|
+
tag?: string | undefined;
|
|
281
|
+
tabindex?: string | number | undefined;
|
|
282
|
+
block?: boolean | undefined;
|
|
283
|
+
round?: boolean | undefined;
|
|
284
|
+
noRing?: boolean | undefined;
|
|
285
|
+
$props: {
|
|
286
|
+
readonly label?: string | undefined;
|
|
287
|
+
readonly id?: string | undefined;
|
|
288
|
+
readonly rightIcon?: string | undefined;
|
|
289
|
+
readonly leftIcon?: string | undefined;
|
|
290
|
+
readonly config?: Record<string, any> | undefined;
|
|
291
|
+
readonly dataTest?: string | undefined;
|
|
292
|
+
readonly icon?: string | undefined;
|
|
293
|
+
readonly color?: string | undefined;
|
|
294
|
+
readonly disabled?: boolean | undefined;
|
|
295
|
+
readonly size?: string | undefined;
|
|
296
|
+
readonly square?: boolean | undefined;
|
|
297
|
+
readonly filled?: boolean | undefined;
|
|
298
|
+
readonly variant?: string | undefined;
|
|
299
|
+
readonly loading?: boolean | undefined;
|
|
300
|
+
readonly tag?: string | undefined;
|
|
301
|
+
readonly tabindex?: string | number | undefined;
|
|
302
|
+
readonly block?: boolean | undefined;
|
|
303
|
+
readonly round?: boolean | undefined;
|
|
304
|
+
readonly noRing?: boolean | undefined;
|
|
305
|
+
};
|
|
306
|
+
}, {}, {}, {}, 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 () => {
|
|
307
|
+
$slots: {
|
|
308
|
+
left?(_: {
|
|
309
|
+
iconName: string;
|
|
310
|
+
iconSize: any;
|
|
311
|
+
iconColor: string | undefined;
|
|
312
|
+
}): any;
|
|
313
|
+
default?(_: {
|
|
314
|
+
label: string;
|
|
315
|
+
iconName: string;
|
|
316
|
+
iconSize: any;
|
|
317
|
+
iconColor: string | undefined;
|
|
318
|
+
}): any;
|
|
319
|
+
right?(_: {
|
|
320
|
+
iconName: string;
|
|
321
|
+
iconSize: any;
|
|
322
|
+
iconColor: string | undefined;
|
|
323
|
+
}): any;
|
|
324
|
+
};
|
|
325
|
+
});
|
|
326
|
+
UHeader: {
|
|
327
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
328
|
+
label: string;
|
|
329
|
+
config: Record<string, any>;
|
|
330
|
+
dataTest: string;
|
|
331
|
+
color?: string | undefined;
|
|
332
|
+
size?: string | undefined;
|
|
333
|
+
line?: boolean | undefined;
|
|
334
|
+
tag?: string | undefined;
|
|
335
|
+
underlined?: boolean | undefined;
|
|
336
|
+
$props: {
|
|
337
|
+
readonly label?: string | undefined;
|
|
338
|
+
readonly config?: Record<string, any> | undefined;
|
|
339
|
+
readonly dataTest?: string | undefined;
|
|
340
|
+
readonly color?: string | undefined;
|
|
341
|
+
readonly size?: string | undefined;
|
|
342
|
+
readonly line?: boolean | undefined;
|
|
343
|
+
readonly tag?: string | undefined;
|
|
344
|
+
readonly underlined?: boolean | undefined;
|
|
345
|
+
};
|
|
346
|
+
}, {}, {}, {}, 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, {
|
|
347
|
+
P: {};
|
|
348
|
+
B: {};
|
|
349
|
+
D: {};
|
|
350
|
+
C: {};
|
|
351
|
+
M: {};
|
|
352
|
+
Defaults: {};
|
|
353
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
354
|
+
label: string;
|
|
355
|
+
config: Record<string, any>;
|
|
356
|
+
dataTest: string;
|
|
357
|
+
color?: string | undefined;
|
|
358
|
+
size?: string | undefined;
|
|
359
|
+
line?: boolean | undefined;
|
|
360
|
+
tag?: string | undefined;
|
|
361
|
+
underlined?: boolean | undefined;
|
|
362
|
+
$props: {
|
|
363
|
+
readonly label?: string | undefined;
|
|
364
|
+
readonly config?: Record<string, any> | undefined;
|
|
365
|
+
readonly dataTest?: string | undefined;
|
|
366
|
+
readonly color?: string | undefined;
|
|
367
|
+
readonly size?: string | undefined;
|
|
368
|
+
readonly line?: boolean | undefined;
|
|
369
|
+
readonly tag?: string | undefined;
|
|
370
|
+
readonly underlined?: boolean | undefined;
|
|
371
|
+
};
|
|
372
|
+
}, {}, {}, {}, {}>;
|
|
373
|
+
__isFragment?: never;
|
|
374
|
+
__isTeleport?: never;
|
|
375
|
+
__isSuspense?: never;
|
|
376
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
377
|
+
label: string;
|
|
378
|
+
config: Record<string, any>;
|
|
379
|
+
dataTest: string;
|
|
380
|
+
color?: string | undefined;
|
|
381
|
+
size?: string | undefined;
|
|
382
|
+
line?: boolean | undefined;
|
|
383
|
+
tag?: string | undefined;
|
|
384
|
+
underlined?: boolean | undefined;
|
|
385
|
+
$props: {
|
|
386
|
+
readonly label?: string | undefined;
|
|
387
|
+
readonly config?: Record<string, any> | undefined;
|
|
388
|
+
readonly dataTest?: string | undefined;
|
|
389
|
+
readonly color?: string | undefined;
|
|
390
|
+
readonly size?: string | undefined;
|
|
391
|
+
readonly line?: boolean | undefined;
|
|
392
|
+
readonly tag?: string | undefined;
|
|
393
|
+
readonly underlined?: boolean | undefined;
|
|
394
|
+
};
|
|
395
|
+
}, {}, {}, {}, 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 () => {
|
|
396
|
+
$slots: {
|
|
397
|
+
default?(_: {}): any;
|
|
398
|
+
};
|
|
399
|
+
});
|
|
400
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
401
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
402
|
+
config: Record<string, any>;
|
|
403
|
+
name: string;
|
|
404
|
+
src: Record<string, any>;
|
|
405
|
+
tooltip: string;
|
|
406
|
+
tooltipSettings: Record<string, any>;
|
|
407
|
+
dataTest: string;
|
|
408
|
+
internal: boolean;
|
|
409
|
+
color?: string | undefined;
|
|
410
|
+
size?: string | undefined;
|
|
411
|
+
interactive?: boolean | undefined;
|
|
412
|
+
variant?: string | undefined;
|
|
413
|
+
$props: {
|
|
414
|
+
readonly config?: Record<string, any> | undefined;
|
|
415
|
+
readonly name?: string | undefined;
|
|
416
|
+
readonly src?: Record<string, any> | undefined;
|
|
417
|
+
readonly tooltip?: string | undefined;
|
|
418
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
419
|
+
readonly dataTest?: string | undefined;
|
|
420
|
+
readonly internal?: boolean | undefined;
|
|
421
|
+
readonly color?: string | undefined;
|
|
422
|
+
readonly size?: string | undefined;
|
|
423
|
+
readonly interactive?: boolean | undefined;
|
|
424
|
+
readonly variant?: string | undefined;
|
|
425
|
+
};
|
|
426
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
427
|
+
};
|
|
428
|
+
setup(): {
|
|
429
|
+
args: any;
|
|
430
|
+
slots: any;
|
|
431
|
+
onClick: () => void;
|
|
432
|
+
};
|
|
433
|
+
template: string;
|
|
434
|
+
};
|
|
435
|
+
export namespace Default {
|
|
436
|
+
let args_1: {};
|
|
437
|
+
export { args_1 as args };
|
|
438
|
+
}
|
|
439
|
+
export function WithoutCancelButton(args: any): {
|
|
440
|
+
components: {
|
|
441
|
+
UModalConfirm: {
|
|
442
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
443
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
444
|
+
id: string;
|
|
445
|
+
description: string;
|
|
446
|
+
title: string;
|
|
447
|
+
config: Record<string, any>;
|
|
448
|
+
dataTest: string;
|
|
449
|
+
modelValue: boolean;
|
|
450
|
+
confirmLabel: string;
|
|
451
|
+
size?: string | undefined;
|
|
452
|
+
closeOnCross?: boolean | undefined;
|
|
453
|
+
closeOnOverlay?: boolean | undefined;
|
|
454
|
+
closeOnEsc?: boolean | undefined;
|
|
455
|
+
inner?: boolean | undefined;
|
|
456
|
+
mobileStickBottom?: boolean | undefined;
|
|
457
|
+
confirmColor?: string | undefined;
|
|
458
|
+
confirmDisabled?: boolean | undefined;
|
|
459
|
+
cancelHidden?: boolean | undefined;
|
|
460
|
+
$props: {
|
|
461
|
+
readonly id?: string | undefined;
|
|
462
|
+
readonly description?: string | undefined;
|
|
463
|
+
readonly title?: string | undefined;
|
|
464
|
+
readonly config?: Record<string, any> | undefined;
|
|
465
|
+
readonly dataTest?: string | undefined;
|
|
466
|
+
readonly modelValue?: boolean | undefined;
|
|
467
|
+
readonly confirmLabel?: string | undefined;
|
|
468
|
+
readonly size?: string | undefined;
|
|
469
|
+
readonly closeOnCross?: boolean | undefined;
|
|
470
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
471
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
472
|
+
readonly inner?: boolean | undefined;
|
|
473
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
474
|
+
readonly confirmColor?: string | undefined;
|
|
475
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
476
|
+
readonly cancelHidden?: boolean | undefined;
|
|
477
|
+
};
|
|
478
|
+
}, {}, {}, {}, 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, {
|
|
479
|
+
P: {};
|
|
480
|
+
B: {};
|
|
481
|
+
D: {};
|
|
482
|
+
C: {};
|
|
483
|
+
M: {};
|
|
484
|
+
Defaults: {};
|
|
485
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
486
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
487
|
+
id: string;
|
|
488
|
+
description: string;
|
|
489
|
+
title: string;
|
|
490
|
+
config: Record<string, any>;
|
|
491
|
+
dataTest: string;
|
|
492
|
+
modelValue: boolean;
|
|
493
|
+
confirmLabel: string;
|
|
494
|
+
size?: string | undefined;
|
|
495
|
+
closeOnCross?: boolean | undefined;
|
|
496
|
+
closeOnOverlay?: boolean | undefined;
|
|
497
|
+
closeOnEsc?: boolean | undefined;
|
|
498
|
+
inner?: boolean | undefined;
|
|
499
|
+
mobileStickBottom?: boolean | undefined;
|
|
500
|
+
confirmColor?: string | undefined;
|
|
501
|
+
confirmDisabled?: boolean | undefined;
|
|
502
|
+
cancelHidden?: boolean | undefined;
|
|
503
|
+
$props: {
|
|
504
|
+
readonly id?: string | undefined;
|
|
505
|
+
readonly description?: string | undefined;
|
|
506
|
+
readonly title?: string | undefined;
|
|
507
|
+
readonly config?: Record<string, any> | undefined;
|
|
508
|
+
readonly dataTest?: string | undefined;
|
|
509
|
+
readonly modelValue?: boolean | undefined;
|
|
510
|
+
readonly confirmLabel?: string | undefined;
|
|
511
|
+
readonly size?: string | undefined;
|
|
512
|
+
readonly closeOnCross?: boolean | undefined;
|
|
513
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
514
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
515
|
+
readonly inner?: boolean | undefined;
|
|
516
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
517
|
+
readonly confirmColor?: string | undefined;
|
|
518
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
519
|
+
readonly cancelHidden?: boolean | undefined;
|
|
520
|
+
};
|
|
521
|
+
}, {}, {}, {}, {}>;
|
|
522
|
+
__isFragment?: never;
|
|
523
|
+
__isTeleport?: never;
|
|
524
|
+
__isSuspense?: never;
|
|
525
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
526
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
527
|
+
id: string;
|
|
528
|
+
description: string;
|
|
529
|
+
title: string;
|
|
530
|
+
config: Record<string, any>;
|
|
531
|
+
dataTest: string;
|
|
532
|
+
modelValue: boolean;
|
|
533
|
+
confirmLabel: string;
|
|
534
|
+
size?: string | undefined;
|
|
535
|
+
closeOnCross?: boolean | undefined;
|
|
536
|
+
closeOnOverlay?: boolean | undefined;
|
|
537
|
+
closeOnEsc?: boolean | undefined;
|
|
538
|
+
inner?: boolean | undefined;
|
|
539
|
+
mobileStickBottom?: boolean | undefined;
|
|
540
|
+
confirmColor?: string | undefined;
|
|
541
|
+
confirmDisabled?: boolean | undefined;
|
|
542
|
+
cancelHidden?: boolean | undefined;
|
|
543
|
+
$props: {
|
|
544
|
+
readonly id?: string | undefined;
|
|
545
|
+
readonly description?: string | undefined;
|
|
546
|
+
readonly title?: string | undefined;
|
|
547
|
+
readonly config?: Record<string, any> | undefined;
|
|
548
|
+
readonly dataTest?: string | undefined;
|
|
549
|
+
readonly modelValue?: boolean | undefined;
|
|
550
|
+
readonly confirmLabel?: string | undefined;
|
|
551
|
+
readonly size?: string | undefined;
|
|
552
|
+
readonly closeOnCross?: boolean | undefined;
|
|
553
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
554
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
555
|
+
readonly inner?: boolean | undefined;
|
|
556
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
557
|
+
readonly confirmColor?: string | undefined;
|
|
558
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
559
|
+
readonly cancelHidden?: boolean | undefined;
|
|
560
|
+
};
|
|
561
|
+
}, {}, {}, {}, 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 () => {
|
|
562
|
+
$slots: {
|
|
563
|
+
"header-left"?(_: {}): any;
|
|
564
|
+
"before-title"?(_: {}): any;
|
|
565
|
+
"after-title"?(_: {}): any;
|
|
566
|
+
"header-right"?(_: {}): any;
|
|
567
|
+
"close-button"?(_: {
|
|
568
|
+
iconName: any;
|
|
569
|
+
}): any;
|
|
570
|
+
default?(_: {}): any;
|
|
571
|
+
"footer-left"?(_: {}): any;
|
|
572
|
+
"footer-right"?(_: {}): any;
|
|
573
|
+
};
|
|
574
|
+
});
|
|
575
|
+
UButton: {
|
|
576
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
577
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
578
|
+
label: string;
|
|
579
|
+
id: string;
|
|
580
|
+
rightIcon: string;
|
|
581
|
+
leftIcon: string;
|
|
582
|
+
config: Record<string, any>;
|
|
583
|
+
dataTest: string;
|
|
584
|
+
icon: string;
|
|
585
|
+
color?: string | undefined;
|
|
586
|
+
disabled?: boolean | undefined;
|
|
587
|
+
size?: string | undefined;
|
|
588
|
+
square?: boolean | undefined;
|
|
589
|
+
filled?: boolean | undefined;
|
|
590
|
+
variant?: string | undefined;
|
|
591
|
+
loading?: boolean | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
593
|
+
tabindex?: string | number | undefined;
|
|
594
|
+
block?: boolean | undefined;
|
|
595
|
+
round?: boolean | undefined;
|
|
596
|
+
noRing?: boolean | undefined;
|
|
597
|
+
$props: {
|
|
598
|
+
readonly label?: string | undefined;
|
|
599
|
+
readonly id?: string | undefined;
|
|
600
|
+
readonly rightIcon?: string | undefined;
|
|
601
|
+
readonly leftIcon?: string | undefined;
|
|
602
|
+
readonly config?: Record<string, any> | undefined;
|
|
603
|
+
readonly dataTest?: string | undefined;
|
|
604
|
+
readonly icon?: string | undefined;
|
|
605
|
+
readonly color?: string | undefined;
|
|
606
|
+
readonly disabled?: boolean | undefined;
|
|
607
|
+
readonly size?: string | undefined;
|
|
608
|
+
readonly square?: boolean | undefined;
|
|
609
|
+
readonly filled?: boolean | undefined;
|
|
610
|
+
readonly variant?: string | undefined;
|
|
611
|
+
readonly loading?: boolean | undefined;
|
|
612
|
+
readonly tag?: string | undefined;
|
|
613
|
+
readonly tabindex?: string | number | undefined;
|
|
614
|
+
readonly block?: boolean | undefined;
|
|
615
|
+
readonly round?: boolean | undefined;
|
|
616
|
+
readonly noRing?: boolean | undefined;
|
|
617
|
+
};
|
|
618
|
+
}, {}, {}, {}, 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, {
|
|
619
|
+
P: {};
|
|
620
|
+
B: {};
|
|
621
|
+
D: {};
|
|
622
|
+
C: {};
|
|
623
|
+
M: {};
|
|
624
|
+
Defaults: {};
|
|
625
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
626
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
627
|
+
label: string;
|
|
628
|
+
id: string;
|
|
629
|
+
rightIcon: string;
|
|
630
|
+
leftIcon: string;
|
|
631
|
+
config: Record<string, any>;
|
|
632
|
+
dataTest: string;
|
|
633
|
+
icon: string;
|
|
634
|
+
color?: string | undefined;
|
|
635
|
+
disabled?: boolean | undefined;
|
|
636
|
+
size?: string | undefined;
|
|
637
|
+
square?: boolean | undefined;
|
|
638
|
+
filled?: boolean | undefined;
|
|
639
|
+
variant?: string | undefined;
|
|
640
|
+
loading?: boolean | undefined;
|
|
641
|
+
tag?: string | undefined;
|
|
642
|
+
tabindex?: string | number | undefined;
|
|
643
|
+
block?: boolean | undefined;
|
|
644
|
+
round?: boolean | undefined;
|
|
645
|
+
noRing?: boolean | undefined;
|
|
646
|
+
$props: {
|
|
647
|
+
readonly label?: string | undefined;
|
|
648
|
+
readonly id?: string | undefined;
|
|
649
|
+
readonly rightIcon?: string | undefined;
|
|
650
|
+
readonly leftIcon?: string | undefined;
|
|
651
|
+
readonly config?: Record<string, any> | undefined;
|
|
652
|
+
readonly dataTest?: string | undefined;
|
|
653
|
+
readonly icon?: string | undefined;
|
|
654
|
+
readonly color?: string | undefined;
|
|
655
|
+
readonly disabled?: boolean | undefined;
|
|
656
|
+
readonly size?: string | undefined;
|
|
657
|
+
readonly square?: boolean | undefined;
|
|
658
|
+
readonly filled?: boolean | undefined;
|
|
659
|
+
readonly variant?: string | undefined;
|
|
660
|
+
readonly loading?: boolean | undefined;
|
|
661
|
+
readonly tag?: string | undefined;
|
|
662
|
+
readonly tabindex?: string | number | undefined;
|
|
663
|
+
readonly block?: boolean | undefined;
|
|
664
|
+
readonly round?: boolean | undefined;
|
|
665
|
+
readonly noRing?: boolean | undefined;
|
|
666
|
+
};
|
|
667
|
+
}, {}, {}, {}, {}>;
|
|
668
|
+
__isFragment?: never;
|
|
669
|
+
__isTeleport?: never;
|
|
670
|
+
__isSuspense?: never;
|
|
671
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
672
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
673
|
+
label: string;
|
|
674
|
+
id: string;
|
|
675
|
+
rightIcon: string;
|
|
676
|
+
leftIcon: string;
|
|
677
|
+
config: Record<string, any>;
|
|
678
|
+
dataTest: string;
|
|
679
|
+
icon: string;
|
|
680
|
+
color?: string | undefined;
|
|
681
|
+
disabled?: boolean | undefined;
|
|
682
|
+
size?: string | undefined;
|
|
683
|
+
square?: boolean | undefined;
|
|
684
|
+
filled?: boolean | undefined;
|
|
685
|
+
variant?: string | undefined;
|
|
686
|
+
loading?: boolean | undefined;
|
|
687
|
+
tag?: string | undefined;
|
|
688
|
+
tabindex?: string | number | undefined;
|
|
689
|
+
block?: boolean | undefined;
|
|
690
|
+
round?: boolean | undefined;
|
|
691
|
+
noRing?: boolean | undefined;
|
|
692
|
+
$props: {
|
|
693
|
+
readonly label?: string | undefined;
|
|
694
|
+
readonly id?: string | undefined;
|
|
695
|
+
readonly rightIcon?: string | undefined;
|
|
696
|
+
readonly leftIcon?: string | undefined;
|
|
697
|
+
readonly config?: Record<string, any> | undefined;
|
|
698
|
+
readonly dataTest?: string | undefined;
|
|
699
|
+
readonly icon?: string | undefined;
|
|
700
|
+
readonly color?: string | undefined;
|
|
701
|
+
readonly disabled?: boolean | undefined;
|
|
702
|
+
readonly size?: string | undefined;
|
|
703
|
+
readonly square?: boolean | undefined;
|
|
704
|
+
readonly filled?: boolean | undefined;
|
|
705
|
+
readonly variant?: string | undefined;
|
|
706
|
+
readonly loading?: boolean | undefined;
|
|
707
|
+
readonly tag?: string | undefined;
|
|
708
|
+
readonly tabindex?: string | number | undefined;
|
|
709
|
+
readonly block?: boolean | undefined;
|
|
710
|
+
readonly round?: boolean | undefined;
|
|
711
|
+
readonly noRing?: boolean | undefined;
|
|
712
|
+
};
|
|
713
|
+
}, {}, {}, {}, 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 () => {
|
|
714
|
+
$slots: {
|
|
715
|
+
left?(_: {
|
|
716
|
+
iconName: string;
|
|
717
|
+
iconSize: any;
|
|
718
|
+
iconColor: string | undefined;
|
|
719
|
+
}): any;
|
|
720
|
+
default?(_: {
|
|
721
|
+
label: string;
|
|
722
|
+
iconName: string;
|
|
723
|
+
iconSize: any;
|
|
724
|
+
iconColor: string | undefined;
|
|
725
|
+
}): any;
|
|
726
|
+
right?(_: {
|
|
727
|
+
iconName: string;
|
|
728
|
+
iconSize: any;
|
|
729
|
+
iconColor: string | undefined;
|
|
730
|
+
}): any;
|
|
731
|
+
};
|
|
732
|
+
});
|
|
733
|
+
UHeader: {
|
|
734
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
735
|
+
label: string;
|
|
736
|
+
config: Record<string, any>;
|
|
737
|
+
dataTest: string;
|
|
738
|
+
color?: string | undefined;
|
|
739
|
+
size?: string | undefined;
|
|
740
|
+
line?: boolean | undefined;
|
|
741
|
+
tag?: string | undefined;
|
|
742
|
+
underlined?: boolean | undefined;
|
|
743
|
+
$props: {
|
|
744
|
+
readonly label?: string | undefined;
|
|
745
|
+
readonly config?: Record<string, any> | undefined;
|
|
746
|
+
readonly dataTest?: string | undefined;
|
|
747
|
+
readonly color?: string | undefined;
|
|
748
|
+
readonly size?: string | undefined;
|
|
749
|
+
readonly line?: boolean | undefined;
|
|
750
|
+
readonly tag?: string | undefined;
|
|
751
|
+
readonly underlined?: boolean | undefined;
|
|
752
|
+
};
|
|
753
|
+
}, {}, {}, {}, 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, {
|
|
754
|
+
P: {};
|
|
755
|
+
B: {};
|
|
756
|
+
D: {};
|
|
757
|
+
C: {};
|
|
758
|
+
M: {};
|
|
759
|
+
Defaults: {};
|
|
760
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
761
|
+
label: string;
|
|
762
|
+
config: Record<string, any>;
|
|
763
|
+
dataTest: string;
|
|
764
|
+
color?: string | undefined;
|
|
765
|
+
size?: string | undefined;
|
|
766
|
+
line?: boolean | undefined;
|
|
767
|
+
tag?: string | undefined;
|
|
768
|
+
underlined?: boolean | undefined;
|
|
769
|
+
$props: {
|
|
770
|
+
readonly label?: string | undefined;
|
|
771
|
+
readonly config?: Record<string, any> | undefined;
|
|
772
|
+
readonly dataTest?: string | undefined;
|
|
773
|
+
readonly color?: string | undefined;
|
|
774
|
+
readonly size?: string | undefined;
|
|
775
|
+
readonly line?: boolean | undefined;
|
|
776
|
+
readonly tag?: string | undefined;
|
|
777
|
+
readonly underlined?: boolean | undefined;
|
|
778
|
+
};
|
|
779
|
+
}, {}, {}, {}, {}>;
|
|
780
|
+
__isFragment?: never;
|
|
781
|
+
__isTeleport?: never;
|
|
782
|
+
__isSuspense?: never;
|
|
783
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
784
|
+
label: string;
|
|
785
|
+
config: Record<string, any>;
|
|
786
|
+
dataTest: string;
|
|
787
|
+
color?: string | undefined;
|
|
788
|
+
size?: string | undefined;
|
|
789
|
+
line?: boolean | undefined;
|
|
790
|
+
tag?: string | undefined;
|
|
791
|
+
underlined?: boolean | undefined;
|
|
792
|
+
$props: {
|
|
793
|
+
readonly label?: string | undefined;
|
|
794
|
+
readonly config?: Record<string, any> | undefined;
|
|
795
|
+
readonly dataTest?: string | undefined;
|
|
796
|
+
readonly color?: string | undefined;
|
|
797
|
+
readonly size?: string | undefined;
|
|
798
|
+
readonly line?: boolean | undefined;
|
|
799
|
+
readonly tag?: string | undefined;
|
|
800
|
+
readonly underlined?: boolean | undefined;
|
|
801
|
+
};
|
|
802
|
+
}, {}, {}, {}, 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 () => {
|
|
803
|
+
$slots: {
|
|
804
|
+
default?(_: {}): any;
|
|
805
|
+
};
|
|
806
|
+
});
|
|
807
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
808
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
809
|
+
config: Record<string, any>;
|
|
810
|
+
name: string;
|
|
811
|
+
src: Record<string, any>;
|
|
812
|
+
tooltip: string;
|
|
813
|
+
tooltipSettings: Record<string, any>;
|
|
814
|
+
dataTest: string;
|
|
815
|
+
internal: boolean;
|
|
816
|
+
color?: string | undefined;
|
|
817
|
+
size?: string | undefined;
|
|
818
|
+
interactive?: boolean | undefined;
|
|
819
|
+
variant?: string | undefined;
|
|
820
|
+
$props: {
|
|
821
|
+
readonly config?: Record<string, any> | undefined;
|
|
822
|
+
readonly name?: string | undefined;
|
|
823
|
+
readonly src?: Record<string, any> | undefined;
|
|
824
|
+
readonly tooltip?: string | undefined;
|
|
825
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
826
|
+
readonly dataTest?: string | undefined;
|
|
827
|
+
readonly internal?: boolean | undefined;
|
|
828
|
+
readonly color?: string | undefined;
|
|
829
|
+
readonly size?: string | undefined;
|
|
830
|
+
readonly interactive?: boolean | undefined;
|
|
831
|
+
readonly variant?: string | undefined;
|
|
832
|
+
};
|
|
833
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
834
|
+
};
|
|
835
|
+
setup(): {
|
|
836
|
+
args: any;
|
|
837
|
+
slots: any;
|
|
838
|
+
onClick: () => void;
|
|
839
|
+
};
|
|
840
|
+
template: string;
|
|
841
|
+
};
|
|
842
|
+
export namespace WithoutCancelButton {
|
|
843
|
+
export namespace args_2 {
|
|
844
|
+
let cancelHidden: boolean;
|
|
845
|
+
}
|
|
846
|
+
export { args_2 as args };
|
|
847
|
+
}
|
|
848
|
+
export function DisableAcceptButton(args: any): {
|
|
849
|
+
components: {
|
|
850
|
+
UModalConfirm: {
|
|
851
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
852
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
853
|
+
id: string;
|
|
854
|
+
description: string;
|
|
855
|
+
title: string;
|
|
856
|
+
config: Record<string, any>;
|
|
857
|
+
dataTest: string;
|
|
858
|
+
modelValue: boolean;
|
|
859
|
+
confirmLabel: string;
|
|
860
|
+
size?: string | undefined;
|
|
861
|
+
closeOnCross?: boolean | undefined;
|
|
862
|
+
closeOnOverlay?: boolean | undefined;
|
|
863
|
+
closeOnEsc?: boolean | undefined;
|
|
864
|
+
inner?: boolean | undefined;
|
|
865
|
+
mobileStickBottom?: boolean | undefined;
|
|
866
|
+
confirmColor?: string | undefined;
|
|
867
|
+
confirmDisabled?: boolean | undefined;
|
|
868
|
+
cancelHidden?: boolean | undefined;
|
|
869
|
+
$props: {
|
|
870
|
+
readonly id?: string | undefined;
|
|
871
|
+
readonly description?: string | undefined;
|
|
872
|
+
readonly title?: string | undefined;
|
|
873
|
+
readonly config?: Record<string, any> | undefined;
|
|
874
|
+
readonly dataTest?: string | undefined;
|
|
875
|
+
readonly modelValue?: boolean | undefined;
|
|
876
|
+
readonly confirmLabel?: string | undefined;
|
|
877
|
+
readonly size?: string | undefined;
|
|
878
|
+
readonly closeOnCross?: boolean | undefined;
|
|
879
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
880
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
881
|
+
readonly inner?: boolean | undefined;
|
|
882
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
883
|
+
readonly confirmColor?: string | undefined;
|
|
884
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
885
|
+
readonly cancelHidden?: boolean | undefined;
|
|
886
|
+
};
|
|
887
|
+
}, {}, {}, {}, 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, {
|
|
888
|
+
P: {};
|
|
889
|
+
B: {};
|
|
890
|
+
D: {};
|
|
891
|
+
C: {};
|
|
892
|
+
M: {};
|
|
893
|
+
Defaults: {};
|
|
894
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
895
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
896
|
+
id: string;
|
|
897
|
+
description: string;
|
|
898
|
+
title: string;
|
|
899
|
+
config: Record<string, any>;
|
|
900
|
+
dataTest: string;
|
|
901
|
+
modelValue: boolean;
|
|
902
|
+
confirmLabel: string;
|
|
903
|
+
size?: string | undefined;
|
|
904
|
+
closeOnCross?: boolean | undefined;
|
|
905
|
+
closeOnOverlay?: boolean | undefined;
|
|
906
|
+
closeOnEsc?: boolean | undefined;
|
|
907
|
+
inner?: boolean | undefined;
|
|
908
|
+
mobileStickBottom?: boolean | undefined;
|
|
909
|
+
confirmColor?: string | undefined;
|
|
910
|
+
confirmDisabled?: boolean | undefined;
|
|
911
|
+
cancelHidden?: boolean | undefined;
|
|
912
|
+
$props: {
|
|
913
|
+
readonly id?: string | undefined;
|
|
914
|
+
readonly description?: string | undefined;
|
|
915
|
+
readonly title?: string | undefined;
|
|
916
|
+
readonly config?: Record<string, any> | undefined;
|
|
917
|
+
readonly dataTest?: string | undefined;
|
|
918
|
+
readonly modelValue?: boolean | undefined;
|
|
919
|
+
readonly confirmLabel?: string | undefined;
|
|
920
|
+
readonly size?: string | undefined;
|
|
921
|
+
readonly closeOnCross?: boolean | undefined;
|
|
922
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
923
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
924
|
+
readonly inner?: boolean | undefined;
|
|
925
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
926
|
+
readonly confirmColor?: string | undefined;
|
|
927
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
928
|
+
readonly cancelHidden?: boolean | undefined;
|
|
929
|
+
};
|
|
930
|
+
}, {}, {}, {}, {}>;
|
|
931
|
+
__isFragment?: never;
|
|
932
|
+
__isTeleport?: never;
|
|
933
|
+
__isSuspense?: never;
|
|
934
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
935
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
936
|
+
id: string;
|
|
937
|
+
description: string;
|
|
938
|
+
title: string;
|
|
939
|
+
config: Record<string, any>;
|
|
940
|
+
dataTest: string;
|
|
941
|
+
modelValue: boolean;
|
|
942
|
+
confirmLabel: string;
|
|
943
|
+
size?: string | undefined;
|
|
944
|
+
closeOnCross?: boolean | undefined;
|
|
945
|
+
closeOnOverlay?: boolean | undefined;
|
|
946
|
+
closeOnEsc?: boolean | undefined;
|
|
947
|
+
inner?: boolean | undefined;
|
|
948
|
+
mobileStickBottom?: boolean | undefined;
|
|
949
|
+
confirmColor?: string | undefined;
|
|
950
|
+
confirmDisabled?: boolean | undefined;
|
|
951
|
+
cancelHidden?: boolean | undefined;
|
|
952
|
+
$props: {
|
|
953
|
+
readonly id?: string | undefined;
|
|
954
|
+
readonly description?: string | undefined;
|
|
955
|
+
readonly title?: string | undefined;
|
|
956
|
+
readonly config?: Record<string, any> | undefined;
|
|
957
|
+
readonly dataTest?: string | undefined;
|
|
958
|
+
readonly modelValue?: boolean | undefined;
|
|
959
|
+
readonly confirmLabel?: string | undefined;
|
|
960
|
+
readonly size?: string | undefined;
|
|
961
|
+
readonly closeOnCross?: boolean | undefined;
|
|
962
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
963
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
964
|
+
readonly inner?: boolean | undefined;
|
|
965
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
966
|
+
readonly confirmColor?: string | undefined;
|
|
967
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
968
|
+
readonly cancelHidden?: boolean | undefined;
|
|
969
|
+
};
|
|
970
|
+
}, {}, {}, {}, 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 () => {
|
|
971
|
+
$slots: {
|
|
972
|
+
"header-left"?(_: {}): any;
|
|
973
|
+
"before-title"?(_: {}): any;
|
|
974
|
+
"after-title"?(_: {}): any;
|
|
975
|
+
"header-right"?(_: {}): any;
|
|
976
|
+
"close-button"?(_: {
|
|
977
|
+
iconName: any;
|
|
978
|
+
}): any;
|
|
979
|
+
default?(_: {}): any;
|
|
980
|
+
"footer-left"?(_: {}): any;
|
|
981
|
+
"footer-right"?(_: {}): any;
|
|
982
|
+
};
|
|
983
|
+
});
|
|
984
|
+
UButton: {
|
|
985
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
986
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
987
|
+
label: string;
|
|
988
|
+
id: string;
|
|
989
|
+
rightIcon: string;
|
|
990
|
+
leftIcon: string;
|
|
991
|
+
config: Record<string, any>;
|
|
992
|
+
dataTest: string;
|
|
993
|
+
icon: string;
|
|
994
|
+
color?: string | undefined;
|
|
995
|
+
disabled?: boolean | undefined;
|
|
996
|
+
size?: string | undefined;
|
|
997
|
+
square?: boolean | undefined;
|
|
998
|
+
filled?: boolean | undefined;
|
|
999
|
+
variant?: string | undefined;
|
|
1000
|
+
loading?: boolean | undefined;
|
|
1001
|
+
tag?: string | undefined;
|
|
1002
|
+
tabindex?: string | number | undefined;
|
|
1003
|
+
block?: boolean | undefined;
|
|
1004
|
+
round?: boolean | undefined;
|
|
1005
|
+
noRing?: boolean | undefined;
|
|
1006
|
+
$props: {
|
|
1007
|
+
readonly label?: string | undefined;
|
|
1008
|
+
readonly id?: string | undefined;
|
|
1009
|
+
readonly rightIcon?: string | undefined;
|
|
1010
|
+
readonly leftIcon?: string | undefined;
|
|
1011
|
+
readonly config?: Record<string, any> | undefined;
|
|
1012
|
+
readonly dataTest?: string | undefined;
|
|
1013
|
+
readonly icon?: string | undefined;
|
|
1014
|
+
readonly color?: string | undefined;
|
|
1015
|
+
readonly disabled?: boolean | undefined;
|
|
1016
|
+
readonly size?: string | undefined;
|
|
1017
|
+
readonly square?: boolean | undefined;
|
|
1018
|
+
readonly filled?: boolean | undefined;
|
|
1019
|
+
readonly variant?: string | undefined;
|
|
1020
|
+
readonly loading?: boolean | undefined;
|
|
1021
|
+
readonly tag?: string | undefined;
|
|
1022
|
+
readonly tabindex?: string | number | undefined;
|
|
1023
|
+
readonly block?: boolean | undefined;
|
|
1024
|
+
readonly round?: boolean | undefined;
|
|
1025
|
+
readonly noRing?: boolean | undefined;
|
|
1026
|
+
};
|
|
1027
|
+
}, {}, {}, {}, 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, {
|
|
1028
|
+
P: {};
|
|
1029
|
+
B: {};
|
|
1030
|
+
D: {};
|
|
1031
|
+
C: {};
|
|
1032
|
+
M: {};
|
|
1033
|
+
Defaults: {};
|
|
1034
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1035
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1036
|
+
label: string;
|
|
1037
|
+
id: string;
|
|
1038
|
+
rightIcon: string;
|
|
1039
|
+
leftIcon: string;
|
|
1040
|
+
config: Record<string, any>;
|
|
1041
|
+
dataTest: string;
|
|
1042
|
+
icon: string;
|
|
1043
|
+
color?: string | undefined;
|
|
1044
|
+
disabled?: boolean | undefined;
|
|
1045
|
+
size?: string | undefined;
|
|
1046
|
+
square?: boolean | undefined;
|
|
1047
|
+
filled?: boolean | undefined;
|
|
1048
|
+
variant?: string | undefined;
|
|
1049
|
+
loading?: boolean | undefined;
|
|
1050
|
+
tag?: string | undefined;
|
|
1051
|
+
tabindex?: string | number | undefined;
|
|
1052
|
+
block?: boolean | undefined;
|
|
1053
|
+
round?: boolean | undefined;
|
|
1054
|
+
noRing?: boolean | undefined;
|
|
1055
|
+
$props: {
|
|
1056
|
+
readonly label?: string | undefined;
|
|
1057
|
+
readonly id?: string | undefined;
|
|
1058
|
+
readonly rightIcon?: string | undefined;
|
|
1059
|
+
readonly leftIcon?: string | undefined;
|
|
1060
|
+
readonly config?: Record<string, any> | undefined;
|
|
1061
|
+
readonly dataTest?: string | undefined;
|
|
1062
|
+
readonly icon?: string | undefined;
|
|
1063
|
+
readonly color?: string | undefined;
|
|
1064
|
+
readonly disabled?: boolean | undefined;
|
|
1065
|
+
readonly size?: string | undefined;
|
|
1066
|
+
readonly square?: boolean | undefined;
|
|
1067
|
+
readonly filled?: boolean | undefined;
|
|
1068
|
+
readonly variant?: string | undefined;
|
|
1069
|
+
readonly loading?: boolean | undefined;
|
|
1070
|
+
readonly tag?: string | undefined;
|
|
1071
|
+
readonly tabindex?: string | number | undefined;
|
|
1072
|
+
readonly block?: boolean | undefined;
|
|
1073
|
+
readonly round?: boolean | undefined;
|
|
1074
|
+
readonly noRing?: boolean | undefined;
|
|
1075
|
+
};
|
|
1076
|
+
}, {}, {}, {}, {}>;
|
|
1077
|
+
__isFragment?: never;
|
|
1078
|
+
__isTeleport?: never;
|
|
1079
|
+
__isSuspense?: never;
|
|
1080
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1081
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1082
|
+
label: string;
|
|
1083
|
+
id: string;
|
|
1084
|
+
rightIcon: string;
|
|
1085
|
+
leftIcon: string;
|
|
1086
|
+
config: Record<string, any>;
|
|
1087
|
+
dataTest: string;
|
|
1088
|
+
icon: string;
|
|
1089
|
+
color?: string | undefined;
|
|
1090
|
+
disabled?: boolean | undefined;
|
|
1091
|
+
size?: string | undefined;
|
|
1092
|
+
square?: boolean | undefined;
|
|
1093
|
+
filled?: boolean | undefined;
|
|
1094
|
+
variant?: string | undefined;
|
|
1095
|
+
loading?: boolean | undefined;
|
|
1096
|
+
tag?: string | undefined;
|
|
1097
|
+
tabindex?: string | number | undefined;
|
|
1098
|
+
block?: boolean | undefined;
|
|
1099
|
+
round?: boolean | undefined;
|
|
1100
|
+
noRing?: boolean | undefined;
|
|
1101
|
+
$props: {
|
|
1102
|
+
readonly label?: string | undefined;
|
|
1103
|
+
readonly id?: string | undefined;
|
|
1104
|
+
readonly rightIcon?: string | undefined;
|
|
1105
|
+
readonly leftIcon?: string | undefined;
|
|
1106
|
+
readonly config?: Record<string, any> | undefined;
|
|
1107
|
+
readonly dataTest?: string | undefined;
|
|
1108
|
+
readonly icon?: string | undefined;
|
|
1109
|
+
readonly color?: string | undefined;
|
|
1110
|
+
readonly disabled?: boolean | undefined;
|
|
1111
|
+
readonly size?: string | undefined;
|
|
1112
|
+
readonly square?: boolean | undefined;
|
|
1113
|
+
readonly filled?: boolean | undefined;
|
|
1114
|
+
readonly variant?: string | undefined;
|
|
1115
|
+
readonly loading?: boolean | undefined;
|
|
1116
|
+
readonly tag?: string | undefined;
|
|
1117
|
+
readonly tabindex?: string | number | undefined;
|
|
1118
|
+
readonly block?: boolean | undefined;
|
|
1119
|
+
readonly round?: boolean | undefined;
|
|
1120
|
+
readonly noRing?: boolean | undefined;
|
|
1121
|
+
};
|
|
1122
|
+
}, {}, {}, {}, 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 () => {
|
|
1123
|
+
$slots: {
|
|
1124
|
+
left?(_: {
|
|
1125
|
+
iconName: string;
|
|
1126
|
+
iconSize: any;
|
|
1127
|
+
iconColor: string | undefined;
|
|
1128
|
+
}): any;
|
|
1129
|
+
default?(_: {
|
|
1130
|
+
label: string;
|
|
1131
|
+
iconName: string;
|
|
1132
|
+
iconSize: any;
|
|
1133
|
+
iconColor: string | undefined;
|
|
1134
|
+
}): any;
|
|
1135
|
+
right?(_: {
|
|
1136
|
+
iconName: string;
|
|
1137
|
+
iconSize: any;
|
|
1138
|
+
iconColor: string | undefined;
|
|
1139
|
+
}): any;
|
|
1140
|
+
};
|
|
1141
|
+
});
|
|
1142
|
+
UHeader: {
|
|
1143
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1144
|
+
label: string;
|
|
1145
|
+
config: Record<string, any>;
|
|
1146
|
+
dataTest: string;
|
|
1147
|
+
color?: string | undefined;
|
|
1148
|
+
size?: string | undefined;
|
|
1149
|
+
line?: boolean | undefined;
|
|
1150
|
+
tag?: string | undefined;
|
|
1151
|
+
underlined?: boolean | undefined;
|
|
1152
|
+
$props: {
|
|
1153
|
+
readonly label?: string | undefined;
|
|
1154
|
+
readonly config?: Record<string, any> | undefined;
|
|
1155
|
+
readonly dataTest?: string | undefined;
|
|
1156
|
+
readonly color?: string | undefined;
|
|
1157
|
+
readonly size?: string | undefined;
|
|
1158
|
+
readonly line?: boolean | undefined;
|
|
1159
|
+
readonly tag?: string | undefined;
|
|
1160
|
+
readonly underlined?: boolean | undefined;
|
|
1161
|
+
};
|
|
1162
|
+
}, {}, {}, {}, 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, {
|
|
1163
|
+
P: {};
|
|
1164
|
+
B: {};
|
|
1165
|
+
D: {};
|
|
1166
|
+
C: {};
|
|
1167
|
+
M: {};
|
|
1168
|
+
Defaults: {};
|
|
1169
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1170
|
+
label: string;
|
|
1171
|
+
config: Record<string, any>;
|
|
1172
|
+
dataTest: string;
|
|
1173
|
+
color?: string | undefined;
|
|
1174
|
+
size?: string | undefined;
|
|
1175
|
+
line?: boolean | undefined;
|
|
1176
|
+
tag?: string | undefined;
|
|
1177
|
+
underlined?: boolean | undefined;
|
|
1178
|
+
$props: {
|
|
1179
|
+
readonly label?: string | undefined;
|
|
1180
|
+
readonly config?: Record<string, any> | undefined;
|
|
1181
|
+
readonly dataTest?: string | undefined;
|
|
1182
|
+
readonly color?: string | undefined;
|
|
1183
|
+
readonly size?: string | undefined;
|
|
1184
|
+
readonly line?: boolean | undefined;
|
|
1185
|
+
readonly tag?: string | undefined;
|
|
1186
|
+
readonly underlined?: boolean | undefined;
|
|
1187
|
+
};
|
|
1188
|
+
}, {}, {}, {}, {}>;
|
|
1189
|
+
__isFragment?: never;
|
|
1190
|
+
__isTeleport?: never;
|
|
1191
|
+
__isSuspense?: never;
|
|
1192
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1193
|
+
label: string;
|
|
1194
|
+
config: Record<string, any>;
|
|
1195
|
+
dataTest: string;
|
|
1196
|
+
color?: string | undefined;
|
|
1197
|
+
size?: string | undefined;
|
|
1198
|
+
line?: boolean | undefined;
|
|
1199
|
+
tag?: string | undefined;
|
|
1200
|
+
underlined?: boolean | undefined;
|
|
1201
|
+
$props: {
|
|
1202
|
+
readonly label?: string | undefined;
|
|
1203
|
+
readonly config?: Record<string, any> | undefined;
|
|
1204
|
+
readonly dataTest?: string | undefined;
|
|
1205
|
+
readonly color?: string | undefined;
|
|
1206
|
+
readonly size?: string | undefined;
|
|
1207
|
+
readonly line?: boolean | undefined;
|
|
1208
|
+
readonly tag?: string | undefined;
|
|
1209
|
+
readonly underlined?: boolean | undefined;
|
|
1210
|
+
};
|
|
1211
|
+
}, {}, {}, {}, 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 () => {
|
|
1212
|
+
$slots: {
|
|
1213
|
+
default?(_: {}): any;
|
|
1214
|
+
};
|
|
1215
|
+
});
|
|
1216
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1217
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1218
|
+
config: Record<string, any>;
|
|
1219
|
+
name: string;
|
|
1220
|
+
src: Record<string, any>;
|
|
1221
|
+
tooltip: string;
|
|
1222
|
+
tooltipSettings: Record<string, any>;
|
|
1223
|
+
dataTest: string;
|
|
1224
|
+
internal: boolean;
|
|
1225
|
+
color?: string | undefined;
|
|
1226
|
+
size?: string | undefined;
|
|
1227
|
+
interactive?: boolean | undefined;
|
|
1228
|
+
variant?: string | undefined;
|
|
1229
|
+
$props: {
|
|
1230
|
+
readonly config?: Record<string, any> | undefined;
|
|
1231
|
+
readonly name?: string | undefined;
|
|
1232
|
+
readonly src?: Record<string, any> | undefined;
|
|
1233
|
+
readonly tooltip?: string | undefined;
|
|
1234
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1235
|
+
readonly dataTest?: string | undefined;
|
|
1236
|
+
readonly internal?: boolean | undefined;
|
|
1237
|
+
readonly color?: string | undefined;
|
|
1238
|
+
readonly size?: string | undefined;
|
|
1239
|
+
readonly interactive?: boolean | undefined;
|
|
1240
|
+
readonly variant?: string | undefined;
|
|
1241
|
+
};
|
|
1242
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1243
|
+
};
|
|
1244
|
+
setup(): {
|
|
1245
|
+
args: any;
|
|
1246
|
+
slots: any;
|
|
1247
|
+
onClick: () => void;
|
|
1248
|
+
};
|
|
1249
|
+
template: string;
|
|
1250
|
+
};
|
|
1251
|
+
export namespace DisableAcceptButton {
|
|
1252
|
+
export namespace args_3 {
|
|
1253
|
+
let confirmDisabled: boolean;
|
|
1254
|
+
}
|
|
1255
|
+
export { args_3 as args };
|
|
1256
|
+
}
|
|
1257
|
+
export function Sizes(args: any, { argTypes }?: {}): {
|
|
1258
|
+
components: {
|
|
1259
|
+
UModalConfirm: {
|
|
1260
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1261
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1262
|
+
id: string;
|
|
1263
|
+
description: string;
|
|
1264
|
+
title: string;
|
|
1265
|
+
config: Record<string, any>;
|
|
1266
|
+
dataTest: string;
|
|
1267
|
+
modelValue: boolean;
|
|
1268
|
+
confirmLabel: string;
|
|
1269
|
+
size?: string | undefined;
|
|
1270
|
+
closeOnCross?: boolean | undefined;
|
|
1271
|
+
closeOnOverlay?: boolean | undefined;
|
|
1272
|
+
closeOnEsc?: boolean | undefined;
|
|
1273
|
+
inner?: boolean | undefined;
|
|
1274
|
+
mobileStickBottom?: boolean | undefined;
|
|
1275
|
+
confirmColor?: string | undefined;
|
|
1276
|
+
confirmDisabled?: boolean | undefined;
|
|
1277
|
+
cancelHidden?: boolean | undefined;
|
|
1278
|
+
$props: {
|
|
1279
|
+
readonly id?: string | undefined;
|
|
1280
|
+
readonly description?: string | undefined;
|
|
1281
|
+
readonly title?: string | undefined;
|
|
1282
|
+
readonly config?: Record<string, any> | undefined;
|
|
1283
|
+
readonly dataTest?: string | undefined;
|
|
1284
|
+
readonly modelValue?: boolean | undefined;
|
|
1285
|
+
readonly confirmLabel?: string | undefined;
|
|
1286
|
+
readonly size?: string | undefined;
|
|
1287
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1288
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1289
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1290
|
+
readonly inner?: boolean | undefined;
|
|
1291
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1292
|
+
readonly confirmColor?: string | undefined;
|
|
1293
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1294
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1295
|
+
};
|
|
1296
|
+
}, {}, {}, {}, 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, {
|
|
1297
|
+
P: {};
|
|
1298
|
+
B: {};
|
|
1299
|
+
D: {};
|
|
1300
|
+
C: {};
|
|
1301
|
+
M: {};
|
|
1302
|
+
Defaults: {};
|
|
1303
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1304
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1305
|
+
id: string;
|
|
1306
|
+
description: string;
|
|
1307
|
+
title: string;
|
|
1308
|
+
config: Record<string, any>;
|
|
1309
|
+
dataTest: string;
|
|
1310
|
+
modelValue: boolean;
|
|
1311
|
+
confirmLabel: string;
|
|
1312
|
+
size?: string | undefined;
|
|
1313
|
+
closeOnCross?: boolean | undefined;
|
|
1314
|
+
closeOnOverlay?: boolean | undefined;
|
|
1315
|
+
closeOnEsc?: boolean | undefined;
|
|
1316
|
+
inner?: boolean | undefined;
|
|
1317
|
+
mobileStickBottom?: boolean | undefined;
|
|
1318
|
+
confirmColor?: string | undefined;
|
|
1319
|
+
confirmDisabled?: boolean | undefined;
|
|
1320
|
+
cancelHidden?: boolean | undefined;
|
|
1321
|
+
$props: {
|
|
1322
|
+
readonly id?: string | undefined;
|
|
1323
|
+
readonly description?: string | undefined;
|
|
1324
|
+
readonly title?: string | undefined;
|
|
1325
|
+
readonly config?: Record<string, any> | undefined;
|
|
1326
|
+
readonly dataTest?: string | undefined;
|
|
1327
|
+
readonly modelValue?: boolean | undefined;
|
|
1328
|
+
readonly confirmLabel?: string | undefined;
|
|
1329
|
+
readonly size?: string | undefined;
|
|
1330
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1331
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1332
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1333
|
+
readonly inner?: boolean | undefined;
|
|
1334
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1335
|
+
readonly confirmColor?: string | undefined;
|
|
1336
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1337
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1338
|
+
};
|
|
1339
|
+
}, {}, {}, {}, {}>;
|
|
1340
|
+
__isFragment?: never;
|
|
1341
|
+
__isTeleport?: never;
|
|
1342
|
+
__isSuspense?: never;
|
|
1343
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1344
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1345
|
+
id: string;
|
|
1346
|
+
description: string;
|
|
1347
|
+
title: string;
|
|
1348
|
+
config: Record<string, any>;
|
|
1349
|
+
dataTest: string;
|
|
1350
|
+
modelValue: boolean;
|
|
1351
|
+
confirmLabel: string;
|
|
1352
|
+
size?: string | undefined;
|
|
1353
|
+
closeOnCross?: boolean | undefined;
|
|
1354
|
+
closeOnOverlay?: boolean | undefined;
|
|
1355
|
+
closeOnEsc?: boolean | undefined;
|
|
1356
|
+
inner?: boolean | undefined;
|
|
1357
|
+
mobileStickBottom?: boolean | undefined;
|
|
1358
|
+
confirmColor?: string | undefined;
|
|
1359
|
+
confirmDisabled?: boolean | undefined;
|
|
1360
|
+
cancelHidden?: boolean | undefined;
|
|
1361
|
+
$props: {
|
|
1362
|
+
readonly id?: string | undefined;
|
|
1363
|
+
readonly description?: string | undefined;
|
|
1364
|
+
readonly title?: string | undefined;
|
|
1365
|
+
readonly config?: Record<string, any> | undefined;
|
|
1366
|
+
readonly dataTest?: string | undefined;
|
|
1367
|
+
readonly modelValue?: boolean | undefined;
|
|
1368
|
+
readonly confirmLabel?: string | undefined;
|
|
1369
|
+
readonly size?: string | undefined;
|
|
1370
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1371
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1372
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1373
|
+
readonly inner?: boolean | undefined;
|
|
1374
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1375
|
+
readonly confirmColor?: string | undefined;
|
|
1376
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1377
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1378
|
+
};
|
|
1379
|
+
}, {}, {}, {}, 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 () => {
|
|
1380
|
+
$slots: {
|
|
1381
|
+
"header-left"?(_: {}): any;
|
|
1382
|
+
"before-title"?(_: {}): any;
|
|
1383
|
+
"after-title"?(_: {}): any;
|
|
1384
|
+
"header-right"?(_: {}): any;
|
|
1385
|
+
"close-button"?(_: {
|
|
1386
|
+
iconName: any;
|
|
1387
|
+
}): any;
|
|
1388
|
+
default?(_: {}): any;
|
|
1389
|
+
"footer-left"?(_: {}): any;
|
|
1390
|
+
"footer-right"?(_: {}): any;
|
|
1391
|
+
};
|
|
1392
|
+
});
|
|
1393
|
+
UButton: {
|
|
1394
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1395
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1396
|
+
label: string;
|
|
1397
|
+
id: string;
|
|
1398
|
+
rightIcon: string;
|
|
1399
|
+
leftIcon: string;
|
|
1400
|
+
config: Record<string, any>;
|
|
1401
|
+
dataTest: string;
|
|
1402
|
+
icon: string;
|
|
1403
|
+
color?: string | undefined;
|
|
1404
|
+
disabled?: boolean | undefined;
|
|
1405
|
+
size?: string | undefined;
|
|
1406
|
+
square?: boolean | undefined;
|
|
1407
|
+
filled?: boolean | undefined;
|
|
1408
|
+
variant?: string | undefined;
|
|
1409
|
+
loading?: boolean | undefined;
|
|
1410
|
+
tag?: string | undefined;
|
|
1411
|
+
tabindex?: string | number | undefined;
|
|
1412
|
+
block?: boolean | undefined;
|
|
1413
|
+
round?: boolean | undefined;
|
|
1414
|
+
noRing?: boolean | undefined;
|
|
1415
|
+
$props: {
|
|
1416
|
+
readonly label?: string | undefined;
|
|
1417
|
+
readonly id?: string | undefined;
|
|
1418
|
+
readonly rightIcon?: string | undefined;
|
|
1419
|
+
readonly leftIcon?: string | undefined;
|
|
1420
|
+
readonly config?: Record<string, any> | undefined;
|
|
1421
|
+
readonly dataTest?: string | undefined;
|
|
1422
|
+
readonly icon?: string | undefined;
|
|
1423
|
+
readonly color?: string | undefined;
|
|
1424
|
+
readonly disabled?: boolean | undefined;
|
|
1425
|
+
readonly size?: string | undefined;
|
|
1426
|
+
readonly square?: boolean | undefined;
|
|
1427
|
+
readonly filled?: boolean | undefined;
|
|
1428
|
+
readonly variant?: string | undefined;
|
|
1429
|
+
readonly loading?: boolean | undefined;
|
|
1430
|
+
readonly tag?: string | undefined;
|
|
1431
|
+
readonly tabindex?: string | number | undefined;
|
|
1432
|
+
readonly block?: boolean | undefined;
|
|
1433
|
+
readonly round?: boolean | undefined;
|
|
1434
|
+
readonly noRing?: boolean | undefined;
|
|
1435
|
+
};
|
|
1436
|
+
}, {}, {}, {}, 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, {
|
|
1437
|
+
P: {};
|
|
1438
|
+
B: {};
|
|
1439
|
+
D: {};
|
|
1440
|
+
C: {};
|
|
1441
|
+
M: {};
|
|
1442
|
+
Defaults: {};
|
|
1443
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1444
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1445
|
+
label: string;
|
|
1446
|
+
id: string;
|
|
1447
|
+
rightIcon: string;
|
|
1448
|
+
leftIcon: string;
|
|
1449
|
+
config: Record<string, any>;
|
|
1450
|
+
dataTest: string;
|
|
1451
|
+
icon: string;
|
|
1452
|
+
color?: string | undefined;
|
|
1453
|
+
disabled?: boolean | undefined;
|
|
1454
|
+
size?: string | undefined;
|
|
1455
|
+
square?: boolean | undefined;
|
|
1456
|
+
filled?: boolean | undefined;
|
|
1457
|
+
variant?: string | undefined;
|
|
1458
|
+
loading?: boolean | undefined;
|
|
1459
|
+
tag?: string | undefined;
|
|
1460
|
+
tabindex?: string | number | undefined;
|
|
1461
|
+
block?: boolean | undefined;
|
|
1462
|
+
round?: boolean | undefined;
|
|
1463
|
+
noRing?: boolean | undefined;
|
|
1464
|
+
$props: {
|
|
1465
|
+
readonly label?: string | undefined;
|
|
1466
|
+
readonly id?: string | undefined;
|
|
1467
|
+
readonly rightIcon?: string | undefined;
|
|
1468
|
+
readonly leftIcon?: string | undefined;
|
|
1469
|
+
readonly config?: Record<string, any> | undefined;
|
|
1470
|
+
readonly dataTest?: string | undefined;
|
|
1471
|
+
readonly icon?: string | undefined;
|
|
1472
|
+
readonly color?: string | undefined;
|
|
1473
|
+
readonly disabled?: boolean | undefined;
|
|
1474
|
+
readonly size?: string | undefined;
|
|
1475
|
+
readonly square?: boolean | undefined;
|
|
1476
|
+
readonly filled?: boolean | undefined;
|
|
1477
|
+
readonly variant?: string | undefined;
|
|
1478
|
+
readonly loading?: boolean | undefined;
|
|
1479
|
+
readonly tag?: string | undefined;
|
|
1480
|
+
readonly tabindex?: string | number | undefined;
|
|
1481
|
+
readonly block?: boolean | undefined;
|
|
1482
|
+
readonly round?: boolean | undefined;
|
|
1483
|
+
readonly noRing?: boolean | undefined;
|
|
1484
|
+
};
|
|
1485
|
+
}, {}, {}, {}, {}>;
|
|
1486
|
+
__isFragment?: never;
|
|
1487
|
+
__isTeleport?: never;
|
|
1488
|
+
__isSuspense?: never;
|
|
1489
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1490
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1491
|
+
label: string;
|
|
1492
|
+
id: string;
|
|
1493
|
+
rightIcon: string;
|
|
1494
|
+
leftIcon: string;
|
|
1495
|
+
config: Record<string, any>;
|
|
1496
|
+
dataTest: string;
|
|
1497
|
+
icon: string;
|
|
1498
|
+
color?: string | undefined;
|
|
1499
|
+
disabled?: boolean | undefined;
|
|
1500
|
+
size?: string | undefined;
|
|
1501
|
+
square?: boolean | undefined;
|
|
1502
|
+
filled?: boolean | undefined;
|
|
1503
|
+
variant?: string | undefined;
|
|
1504
|
+
loading?: boolean | undefined;
|
|
1505
|
+
tag?: string | undefined;
|
|
1506
|
+
tabindex?: string | number | undefined;
|
|
1507
|
+
block?: boolean | undefined;
|
|
1508
|
+
round?: boolean | undefined;
|
|
1509
|
+
noRing?: boolean | undefined;
|
|
1510
|
+
$props: {
|
|
1511
|
+
readonly label?: string | undefined;
|
|
1512
|
+
readonly id?: string | undefined;
|
|
1513
|
+
readonly rightIcon?: string | undefined;
|
|
1514
|
+
readonly leftIcon?: string | undefined;
|
|
1515
|
+
readonly config?: Record<string, any> | undefined;
|
|
1516
|
+
readonly dataTest?: string | undefined;
|
|
1517
|
+
readonly icon?: string | undefined;
|
|
1518
|
+
readonly color?: string | undefined;
|
|
1519
|
+
readonly disabled?: boolean | undefined;
|
|
1520
|
+
readonly size?: string | undefined;
|
|
1521
|
+
readonly square?: boolean | undefined;
|
|
1522
|
+
readonly filled?: boolean | undefined;
|
|
1523
|
+
readonly variant?: string | undefined;
|
|
1524
|
+
readonly loading?: boolean | undefined;
|
|
1525
|
+
readonly tag?: string | undefined;
|
|
1526
|
+
readonly tabindex?: string | number | undefined;
|
|
1527
|
+
readonly block?: boolean | undefined;
|
|
1528
|
+
readonly round?: boolean | undefined;
|
|
1529
|
+
readonly noRing?: boolean | undefined;
|
|
1530
|
+
};
|
|
1531
|
+
}, {}, {}, {}, 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 () => {
|
|
1532
|
+
$slots: {
|
|
1533
|
+
left?(_: {
|
|
1534
|
+
iconName: string;
|
|
1535
|
+
iconSize: any;
|
|
1536
|
+
iconColor: string | undefined;
|
|
1537
|
+
}): any;
|
|
1538
|
+
default?(_: {
|
|
1539
|
+
label: string;
|
|
1540
|
+
iconName: string;
|
|
1541
|
+
iconSize: any;
|
|
1542
|
+
iconColor: string | undefined;
|
|
1543
|
+
}): any;
|
|
1544
|
+
right?(_: {
|
|
1545
|
+
iconName: string;
|
|
1546
|
+
iconSize: any;
|
|
1547
|
+
iconColor: string | undefined;
|
|
1548
|
+
}): any;
|
|
1549
|
+
};
|
|
1550
|
+
});
|
|
1551
|
+
URow: {
|
|
1552
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1553
|
+
config: Record<string, any>;
|
|
1554
|
+
dataTest: string;
|
|
1555
|
+
reverse?: boolean | undefined;
|
|
1556
|
+
content?: string | undefined;
|
|
1557
|
+
gap?: string | undefined;
|
|
1558
|
+
align?: string | undefined;
|
|
1559
|
+
justify?: string | undefined;
|
|
1560
|
+
wrap?: boolean | undefined;
|
|
1561
|
+
noMobile?: boolean | undefined;
|
|
1562
|
+
$props: {
|
|
1563
|
+
readonly config?: Record<string, any> | undefined;
|
|
1564
|
+
readonly dataTest?: string | undefined;
|
|
1565
|
+
readonly reverse?: boolean | undefined;
|
|
1566
|
+
readonly content?: string | undefined;
|
|
1567
|
+
readonly gap?: string | undefined;
|
|
1568
|
+
readonly align?: string | undefined;
|
|
1569
|
+
readonly justify?: string | undefined;
|
|
1570
|
+
readonly wrap?: boolean | undefined;
|
|
1571
|
+
readonly noMobile?: boolean | undefined;
|
|
1572
|
+
};
|
|
1573
|
+
}, {}, {}, {}, 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, {
|
|
1574
|
+
P: {};
|
|
1575
|
+
B: {};
|
|
1576
|
+
D: {};
|
|
1577
|
+
C: {};
|
|
1578
|
+
M: {};
|
|
1579
|
+
Defaults: {};
|
|
1580
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1581
|
+
config: Record<string, any>;
|
|
1582
|
+
dataTest: string;
|
|
1583
|
+
reverse?: boolean | undefined;
|
|
1584
|
+
content?: string | undefined;
|
|
1585
|
+
gap?: string | undefined;
|
|
1586
|
+
align?: string | undefined;
|
|
1587
|
+
justify?: string | undefined;
|
|
1588
|
+
wrap?: boolean | undefined;
|
|
1589
|
+
noMobile?: boolean | undefined;
|
|
1590
|
+
$props: {
|
|
1591
|
+
readonly config?: Record<string, any> | undefined;
|
|
1592
|
+
readonly dataTest?: string | undefined;
|
|
1593
|
+
readonly reverse?: boolean | undefined;
|
|
1594
|
+
readonly content?: string | undefined;
|
|
1595
|
+
readonly gap?: string | undefined;
|
|
1596
|
+
readonly align?: string | undefined;
|
|
1597
|
+
readonly justify?: string | undefined;
|
|
1598
|
+
readonly wrap?: boolean | undefined;
|
|
1599
|
+
readonly noMobile?: boolean | undefined;
|
|
1600
|
+
};
|
|
1601
|
+
}, {}, {}, {}, {}>;
|
|
1602
|
+
__isFragment?: never;
|
|
1603
|
+
__isTeleport?: never;
|
|
1604
|
+
__isSuspense?: never;
|
|
1605
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1606
|
+
config: Record<string, any>;
|
|
1607
|
+
dataTest: string;
|
|
1608
|
+
reverse?: boolean | undefined;
|
|
1609
|
+
content?: string | undefined;
|
|
1610
|
+
gap?: string | undefined;
|
|
1611
|
+
align?: string | undefined;
|
|
1612
|
+
justify?: string | undefined;
|
|
1613
|
+
wrap?: boolean | undefined;
|
|
1614
|
+
noMobile?: boolean | undefined;
|
|
1615
|
+
$props: {
|
|
1616
|
+
readonly config?: Record<string, any> | undefined;
|
|
1617
|
+
readonly dataTest?: string | undefined;
|
|
1618
|
+
readonly reverse?: boolean | undefined;
|
|
1619
|
+
readonly content?: string | undefined;
|
|
1620
|
+
readonly gap?: string | undefined;
|
|
1621
|
+
readonly align?: string | undefined;
|
|
1622
|
+
readonly justify?: string | undefined;
|
|
1623
|
+
readonly wrap?: boolean | undefined;
|
|
1624
|
+
readonly noMobile?: boolean | undefined;
|
|
1625
|
+
};
|
|
1626
|
+
}, {}, {}, {}, 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 () => {
|
|
1627
|
+
$slots: {
|
|
1628
|
+
default?(_: {}): any;
|
|
1629
|
+
};
|
|
1630
|
+
});
|
|
1631
|
+
};
|
|
1632
|
+
setup(): {
|
|
1633
|
+
args: any;
|
|
1634
|
+
onClick: (value: any) => void;
|
|
1635
|
+
options: any;
|
|
1636
|
+
};
|
|
1637
|
+
template: string;
|
|
1638
|
+
};
|
|
1639
|
+
export namespace Sizes {
|
|
1640
|
+
export namespace args_4 {
|
|
1641
|
+
let _enum: string;
|
|
1642
|
+
export { _enum as enum };
|
|
1643
|
+
}
|
|
1644
|
+
export { args_4 as args };
|
|
1645
|
+
}
|
|
1646
|
+
export function Color(args: any, { argTypes }?: {}): {
|
|
1647
|
+
components: {
|
|
1648
|
+
UModalConfirm: {
|
|
1649
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1650
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1651
|
+
id: string;
|
|
1652
|
+
description: string;
|
|
1653
|
+
title: string;
|
|
1654
|
+
config: Record<string, any>;
|
|
1655
|
+
dataTest: string;
|
|
1656
|
+
modelValue: boolean;
|
|
1657
|
+
confirmLabel: string;
|
|
1658
|
+
size?: string | undefined;
|
|
1659
|
+
closeOnCross?: boolean | undefined;
|
|
1660
|
+
closeOnOverlay?: boolean | undefined;
|
|
1661
|
+
closeOnEsc?: boolean | undefined;
|
|
1662
|
+
inner?: boolean | undefined;
|
|
1663
|
+
mobileStickBottom?: boolean | undefined;
|
|
1664
|
+
confirmColor?: string | undefined;
|
|
1665
|
+
confirmDisabled?: boolean | undefined;
|
|
1666
|
+
cancelHidden?: boolean | undefined;
|
|
1667
|
+
$props: {
|
|
1668
|
+
readonly id?: string | undefined;
|
|
1669
|
+
readonly description?: string | undefined;
|
|
1670
|
+
readonly title?: string | undefined;
|
|
1671
|
+
readonly config?: Record<string, any> | undefined;
|
|
1672
|
+
readonly dataTest?: string | undefined;
|
|
1673
|
+
readonly modelValue?: boolean | undefined;
|
|
1674
|
+
readonly confirmLabel?: string | undefined;
|
|
1675
|
+
readonly size?: string | undefined;
|
|
1676
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1677
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1678
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1679
|
+
readonly inner?: boolean | undefined;
|
|
1680
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1681
|
+
readonly confirmColor?: string | undefined;
|
|
1682
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1683
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1684
|
+
};
|
|
1685
|
+
}, {}, {}, {}, 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, {
|
|
1686
|
+
P: {};
|
|
1687
|
+
B: {};
|
|
1688
|
+
D: {};
|
|
1689
|
+
C: {};
|
|
1690
|
+
M: {};
|
|
1691
|
+
Defaults: {};
|
|
1692
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1693
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1694
|
+
id: string;
|
|
1695
|
+
description: string;
|
|
1696
|
+
title: string;
|
|
1697
|
+
config: Record<string, any>;
|
|
1698
|
+
dataTest: string;
|
|
1699
|
+
modelValue: boolean;
|
|
1700
|
+
confirmLabel: string;
|
|
1701
|
+
size?: string | undefined;
|
|
1702
|
+
closeOnCross?: boolean | undefined;
|
|
1703
|
+
closeOnOverlay?: boolean | undefined;
|
|
1704
|
+
closeOnEsc?: boolean | undefined;
|
|
1705
|
+
inner?: boolean | undefined;
|
|
1706
|
+
mobileStickBottom?: boolean | undefined;
|
|
1707
|
+
confirmColor?: string | undefined;
|
|
1708
|
+
confirmDisabled?: boolean | undefined;
|
|
1709
|
+
cancelHidden?: boolean | undefined;
|
|
1710
|
+
$props: {
|
|
1711
|
+
readonly id?: string | undefined;
|
|
1712
|
+
readonly description?: string | undefined;
|
|
1713
|
+
readonly title?: string | undefined;
|
|
1714
|
+
readonly config?: Record<string, any> | undefined;
|
|
1715
|
+
readonly dataTest?: string | undefined;
|
|
1716
|
+
readonly modelValue?: boolean | undefined;
|
|
1717
|
+
readonly confirmLabel?: string | undefined;
|
|
1718
|
+
readonly size?: string | undefined;
|
|
1719
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1720
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1721
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1722
|
+
readonly inner?: boolean | undefined;
|
|
1723
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1724
|
+
readonly confirmColor?: string | undefined;
|
|
1725
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1726
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1727
|
+
};
|
|
1728
|
+
}, {}, {}, {}, {}>;
|
|
1729
|
+
__isFragment?: never;
|
|
1730
|
+
__isTeleport?: never;
|
|
1731
|
+
__isSuspense?: never;
|
|
1732
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1733
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
1734
|
+
id: string;
|
|
1735
|
+
description: string;
|
|
1736
|
+
title: string;
|
|
1737
|
+
config: Record<string, any>;
|
|
1738
|
+
dataTest: string;
|
|
1739
|
+
modelValue: boolean;
|
|
1740
|
+
confirmLabel: string;
|
|
1741
|
+
size?: string | undefined;
|
|
1742
|
+
closeOnCross?: boolean | undefined;
|
|
1743
|
+
closeOnOverlay?: boolean | undefined;
|
|
1744
|
+
closeOnEsc?: boolean | undefined;
|
|
1745
|
+
inner?: boolean | undefined;
|
|
1746
|
+
mobileStickBottom?: boolean | undefined;
|
|
1747
|
+
confirmColor?: string | undefined;
|
|
1748
|
+
confirmDisabled?: boolean | undefined;
|
|
1749
|
+
cancelHidden?: boolean | undefined;
|
|
1750
|
+
$props: {
|
|
1751
|
+
readonly id?: string | undefined;
|
|
1752
|
+
readonly description?: string | undefined;
|
|
1753
|
+
readonly title?: string | undefined;
|
|
1754
|
+
readonly config?: Record<string, any> | undefined;
|
|
1755
|
+
readonly dataTest?: string | undefined;
|
|
1756
|
+
readonly modelValue?: boolean | undefined;
|
|
1757
|
+
readonly confirmLabel?: string | undefined;
|
|
1758
|
+
readonly size?: string | undefined;
|
|
1759
|
+
readonly closeOnCross?: boolean | undefined;
|
|
1760
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
1761
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
1762
|
+
readonly inner?: boolean | undefined;
|
|
1763
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
1764
|
+
readonly confirmColor?: string | undefined;
|
|
1765
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
1766
|
+
readonly cancelHidden?: boolean | undefined;
|
|
1767
|
+
};
|
|
1768
|
+
}, {}, {}, {}, 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 () => {
|
|
1769
|
+
$slots: {
|
|
1770
|
+
"header-left"?(_: {}): any;
|
|
1771
|
+
"before-title"?(_: {}): any;
|
|
1772
|
+
"after-title"?(_: {}): any;
|
|
1773
|
+
"header-right"?(_: {}): any;
|
|
1774
|
+
"close-button"?(_: {
|
|
1775
|
+
iconName: any;
|
|
1776
|
+
}): any;
|
|
1777
|
+
default?(_: {}): any;
|
|
1778
|
+
"footer-left"?(_: {}): any;
|
|
1779
|
+
"footer-right"?(_: {}): any;
|
|
1780
|
+
};
|
|
1781
|
+
});
|
|
1782
|
+
UButton: {
|
|
1783
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1784
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1785
|
+
label: string;
|
|
1786
|
+
id: string;
|
|
1787
|
+
rightIcon: string;
|
|
1788
|
+
leftIcon: string;
|
|
1789
|
+
config: Record<string, any>;
|
|
1790
|
+
dataTest: string;
|
|
1791
|
+
icon: string;
|
|
1792
|
+
color?: string | undefined;
|
|
1793
|
+
disabled?: boolean | undefined;
|
|
1794
|
+
size?: string | undefined;
|
|
1795
|
+
square?: boolean | undefined;
|
|
1796
|
+
filled?: boolean | undefined;
|
|
1797
|
+
variant?: string | undefined;
|
|
1798
|
+
loading?: boolean | undefined;
|
|
1799
|
+
tag?: string | undefined;
|
|
1800
|
+
tabindex?: string | number | undefined;
|
|
1801
|
+
block?: boolean | undefined;
|
|
1802
|
+
round?: boolean | undefined;
|
|
1803
|
+
noRing?: boolean | undefined;
|
|
1804
|
+
$props: {
|
|
1805
|
+
readonly label?: string | undefined;
|
|
1806
|
+
readonly id?: string | undefined;
|
|
1807
|
+
readonly rightIcon?: string | undefined;
|
|
1808
|
+
readonly leftIcon?: string | undefined;
|
|
1809
|
+
readonly config?: Record<string, any> | undefined;
|
|
1810
|
+
readonly dataTest?: string | undefined;
|
|
1811
|
+
readonly icon?: string | undefined;
|
|
1812
|
+
readonly color?: string | undefined;
|
|
1813
|
+
readonly disabled?: boolean | undefined;
|
|
1814
|
+
readonly size?: string | undefined;
|
|
1815
|
+
readonly square?: boolean | undefined;
|
|
1816
|
+
readonly filled?: boolean | undefined;
|
|
1817
|
+
readonly variant?: string | undefined;
|
|
1818
|
+
readonly loading?: boolean | undefined;
|
|
1819
|
+
readonly tag?: string | undefined;
|
|
1820
|
+
readonly tabindex?: string | number | undefined;
|
|
1821
|
+
readonly block?: boolean | undefined;
|
|
1822
|
+
readonly round?: boolean | undefined;
|
|
1823
|
+
readonly noRing?: boolean | undefined;
|
|
1824
|
+
};
|
|
1825
|
+
}, {}, {}, {}, 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, {
|
|
1826
|
+
P: {};
|
|
1827
|
+
B: {};
|
|
1828
|
+
D: {};
|
|
1829
|
+
C: {};
|
|
1830
|
+
M: {};
|
|
1831
|
+
Defaults: {};
|
|
1832
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1833
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1834
|
+
label: string;
|
|
1835
|
+
id: string;
|
|
1836
|
+
rightIcon: string;
|
|
1837
|
+
leftIcon: string;
|
|
1838
|
+
config: Record<string, any>;
|
|
1839
|
+
dataTest: string;
|
|
1840
|
+
icon: string;
|
|
1841
|
+
color?: string | undefined;
|
|
1842
|
+
disabled?: boolean | undefined;
|
|
1843
|
+
size?: string | undefined;
|
|
1844
|
+
square?: boolean | undefined;
|
|
1845
|
+
filled?: boolean | undefined;
|
|
1846
|
+
variant?: string | undefined;
|
|
1847
|
+
loading?: boolean | undefined;
|
|
1848
|
+
tag?: string | undefined;
|
|
1849
|
+
tabindex?: string | number | undefined;
|
|
1850
|
+
block?: boolean | undefined;
|
|
1851
|
+
round?: boolean | undefined;
|
|
1852
|
+
noRing?: boolean | undefined;
|
|
1853
|
+
$props: {
|
|
1854
|
+
readonly label?: string | undefined;
|
|
1855
|
+
readonly id?: string | undefined;
|
|
1856
|
+
readonly rightIcon?: string | undefined;
|
|
1857
|
+
readonly leftIcon?: string | undefined;
|
|
1858
|
+
readonly config?: Record<string, any> | undefined;
|
|
1859
|
+
readonly dataTest?: string | undefined;
|
|
1860
|
+
readonly icon?: string | undefined;
|
|
1861
|
+
readonly color?: string | undefined;
|
|
1862
|
+
readonly disabled?: boolean | undefined;
|
|
1863
|
+
readonly size?: string | undefined;
|
|
1864
|
+
readonly square?: boolean | undefined;
|
|
1865
|
+
readonly filled?: boolean | undefined;
|
|
1866
|
+
readonly variant?: string | undefined;
|
|
1867
|
+
readonly loading?: boolean | undefined;
|
|
1868
|
+
readonly tag?: string | undefined;
|
|
1869
|
+
readonly tabindex?: string | number | undefined;
|
|
1870
|
+
readonly block?: boolean | undefined;
|
|
1871
|
+
readonly round?: boolean | undefined;
|
|
1872
|
+
readonly noRing?: boolean | undefined;
|
|
1873
|
+
};
|
|
1874
|
+
}, {}, {}, {}, {}>;
|
|
1875
|
+
__isFragment?: never;
|
|
1876
|
+
__isTeleport?: never;
|
|
1877
|
+
__isSuspense?: never;
|
|
1878
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1879
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1880
|
+
label: string;
|
|
1881
|
+
id: string;
|
|
1882
|
+
rightIcon: string;
|
|
1883
|
+
leftIcon: string;
|
|
1884
|
+
config: Record<string, any>;
|
|
1885
|
+
dataTest: string;
|
|
1886
|
+
icon: string;
|
|
1887
|
+
color?: string | undefined;
|
|
1888
|
+
disabled?: boolean | undefined;
|
|
1889
|
+
size?: string | undefined;
|
|
1890
|
+
square?: boolean | undefined;
|
|
1891
|
+
filled?: boolean | undefined;
|
|
1892
|
+
variant?: string | undefined;
|
|
1893
|
+
loading?: boolean | undefined;
|
|
1894
|
+
tag?: string | undefined;
|
|
1895
|
+
tabindex?: string | number | undefined;
|
|
1896
|
+
block?: boolean | undefined;
|
|
1897
|
+
round?: boolean | undefined;
|
|
1898
|
+
noRing?: boolean | undefined;
|
|
1899
|
+
$props: {
|
|
1900
|
+
readonly label?: string | undefined;
|
|
1901
|
+
readonly id?: string | undefined;
|
|
1902
|
+
readonly rightIcon?: string | undefined;
|
|
1903
|
+
readonly leftIcon?: string | undefined;
|
|
1904
|
+
readonly config?: Record<string, any> | undefined;
|
|
1905
|
+
readonly dataTest?: string | undefined;
|
|
1906
|
+
readonly icon?: string | undefined;
|
|
1907
|
+
readonly color?: string | undefined;
|
|
1908
|
+
readonly disabled?: boolean | undefined;
|
|
1909
|
+
readonly size?: string | undefined;
|
|
1910
|
+
readonly square?: boolean | undefined;
|
|
1911
|
+
readonly filled?: boolean | undefined;
|
|
1912
|
+
readonly variant?: string | undefined;
|
|
1913
|
+
readonly loading?: boolean | undefined;
|
|
1914
|
+
readonly tag?: string | undefined;
|
|
1915
|
+
readonly tabindex?: string | number | undefined;
|
|
1916
|
+
readonly block?: boolean | undefined;
|
|
1917
|
+
readonly round?: boolean | undefined;
|
|
1918
|
+
readonly noRing?: boolean | undefined;
|
|
1919
|
+
};
|
|
1920
|
+
}, {}, {}, {}, 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 () => {
|
|
1921
|
+
$slots: {
|
|
1922
|
+
left?(_: {
|
|
1923
|
+
iconName: string;
|
|
1924
|
+
iconSize: any;
|
|
1925
|
+
iconColor: string | undefined;
|
|
1926
|
+
}): any;
|
|
1927
|
+
default?(_: {
|
|
1928
|
+
label: string;
|
|
1929
|
+
iconName: string;
|
|
1930
|
+
iconSize: any;
|
|
1931
|
+
iconColor: string | undefined;
|
|
1932
|
+
}): any;
|
|
1933
|
+
right?(_: {
|
|
1934
|
+
iconName: string;
|
|
1935
|
+
iconSize: any;
|
|
1936
|
+
iconColor: string | undefined;
|
|
1937
|
+
}): any;
|
|
1938
|
+
};
|
|
1939
|
+
});
|
|
1940
|
+
URow: {
|
|
1941
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1942
|
+
config: Record<string, any>;
|
|
1943
|
+
dataTest: string;
|
|
1944
|
+
reverse?: boolean | undefined;
|
|
1945
|
+
content?: string | undefined;
|
|
1946
|
+
gap?: string | undefined;
|
|
1947
|
+
align?: string | undefined;
|
|
1948
|
+
justify?: string | undefined;
|
|
1949
|
+
wrap?: boolean | undefined;
|
|
1950
|
+
noMobile?: boolean | undefined;
|
|
1951
|
+
$props: {
|
|
1952
|
+
readonly config?: Record<string, any> | undefined;
|
|
1953
|
+
readonly dataTest?: string | undefined;
|
|
1954
|
+
readonly reverse?: boolean | undefined;
|
|
1955
|
+
readonly content?: string | undefined;
|
|
1956
|
+
readonly gap?: string | undefined;
|
|
1957
|
+
readonly align?: string | undefined;
|
|
1958
|
+
readonly justify?: string | undefined;
|
|
1959
|
+
readonly wrap?: boolean | undefined;
|
|
1960
|
+
readonly noMobile?: boolean | undefined;
|
|
1961
|
+
};
|
|
1962
|
+
}, {}, {}, {}, 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, {
|
|
1963
|
+
P: {};
|
|
1964
|
+
B: {};
|
|
1965
|
+
D: {};
|
|
1966
|
+
C: {};
|
|
1967
|
+
M: {};
|
|
1968
|
+
Defaults: {};
|
|
1969
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1970
|
+
config: Record<string, any>;
|
|
1971
|
+
dataTest: string;
|
|
1972
|
+
reverse?: boolean | undefined;
|
|
1973
|
+
content?: string | undefined;
|
|
1974
|
+
gap?: string | undefined;
|
|
1975
|
+
align?: string | undefined;
|
|
1976
|
+
justify?: string | undefined;
|
|
1977
|
+
wrap?: boolean | undefined;
|
|
1978
|
+
noMobile?: boolean | undefined;
|
|
1979
|
+
$props: {
|
|
1980
|
+
readonly config?: Record<string, any> | undefined;
|
|
1981
|
+
readonly dataTest?: string | undefined;
|
|
1982
|
+
readonly reverse?: boolean | undefined;
|
|
1983
|
+
readonly content?: string | undefined;
|
|
1984
|
+
readonly gap?: string | undefined;
|
|
1985
|
+
readonly align?: string | undefined;
|
|
1986
|
+
readonly justify?: string | undefined;
|
|
1987
|
+
readonly wrap?: boolean | undefined;
|
|
1988
|
+
readonly noMobile?: boolean | undefined;
|
|
1989
|
+
};
|
|
1990
|
+
}, {}, {}, {}, {}>;
|
|
1991
|
+
__isFragment?: never;
|
|
1992
|
+
__isTeleport?: never;
|
|
1993
|
+
__isSuspense?: never;
|
|
1994
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1995
|
+
config: Record<string, any>;
|
|
1996
|
+
dataTest: string;
|
|
1997
|
+
reverse?: boolean | undefined;
|
|
1998
|
+
content?: string | undefined;
|
|
1999
|
+
gap?: string | undefined;
|
|
2000
|
+
align?: string | undefined;
|
|
2001
|
+
justify?: string | undefined;
|
|
2002
|
+
wrap?: boolean | undefined;
|
|
2003
|
+
noMobile?: boolean | undefined;
|
|
2004
|
+
$props: {
|
|
2005
|
+
readonly config?: Record<string, any> | undefined;
|
|
2006
|
+
readonly dataTest?: string | undefined;
|
|
2007
|
+
readonly reverse?: boolean | undefined;
|
|
2008
|
+
readonly content?: string | undefined;
|
|
2009
|
+
readonly gap?: string | undefined;
|
|
2010
|
+
readonly align?: string | undefined;
|
|
2011
|
+
readonly justify?: string | undefined;
|
|
2012
|
+
readonly wrap?: boolean | undefined;
|
|
2013
|
+
readonly noMobile?: boolean | undefined;
|
|
2014
|
+
};
|
|
2015
|
+
}, {}, {}, {}, 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 () => {
|
|
2016
|
+
$slots: {
|
|
2017
|
+
default?(_: {}): any;
|
|
2018
|
+
};
|
|
2019
|
+
});
|
|
2020
|
+
};
|
|
2021
|
+
setup(): {
|
|
2022
|
+
args: any;
|
|
2023
|
+
onClick: (value: any) => void;
|
|
2024
|
+
options: any;
|
|
2025
|
+
};
|
|
2026
|
+
template: string;
|
|
2027
|
+
};
|
|
2028
|
+
export namespace Color {
|
|
2029
|
+
export namespace args_5 {
|
|
2030
|
+
let _enum_1: string;
|
|
2031
|
+
export { _enum_1 as enum };
|
|
2032
|
+
}
|
|
2033
|
+
export { args_5 as args };
|
|
2034
|
+
}
|
|
2035
|
+
export function SlotBeforeTitle(args: any): {
|
|
2036
|
+
components: {
|
|
2037
|
+
UModalConfirm: {
|
|
2038
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2039
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2040
|
+
id: string;
|
|
2041
|
+
description: string;
|
|
2042
|
+
title: string;
|
|
2043
|
+
config: Record<string, any>;
|
|
2044
|
+
dataTest: string;
|
|
2045
|
+
modelValue: boolean;
|
|
2046
|
+
confirmLabel: string;
|
|
2047
|
+
size?: string | undefined;
|
|
2048
|
+
closeOnCross?: boolean | undefined;
|
|
2049
|
+
closeOnOverlay?: boolean | undefined;
|
|
2050
|
+
closeOnEsc?: boolean | undefined;
|
|
2051
|
+
inner?: boolean | undefined;
|
|
2052
|
+
mobileStickBottom?: boolean | undefined;
|
|
2053
|
+
confirmColor?: string | undefined;
|
|
2054
|
+
confirmDisabled?: boolean | undefined;
|
|
2055
|
+
cancelHidden?: boolean | undefined;
|
|
2056
|
+
$props: {
|
|
2057
|
+
readonly id?: string | undefined;
|
|
2058
|
+
readonly description?: string | undefined;
|
|
2059
|
+
readonly title?: string | undefined;
|
|
2060
|
+
readonly config?: Record<string, any> | undefined;
|
|
2061
|
+
readonly dataTest?: string | undefined;
|
|
2062
|
+
readonly modelValue?: boolean | undefined;
|
|
2063
|
+
readonly confirmLabel?: string | undefined;
|
|
2064
|
+
readonly size?: string | undefined;
|
|
2065
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2066
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2067
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2068
|
+
readonly inner?: boolean | undefined;
|
|
2069
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2070
|
+
readonly confirmColor?: string | undefined;
|
|
2071
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2072
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2073
|
+
};
|
|
2074
|
+
}, {}, {}, {}, 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, {
|
|
2075
|
+
P: {};
|
|
2076
|
+
B: {};
|
|
2077
|
+
D: {};
|
|
2078
|
+
C: {};
|
|
2079
|
+
M: {};
|
|
2080
|
+
Defaults: {};
|
|
2081
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2082
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2083
|
+
id: string;
|
|
2084
|
+
description: string;
|
|
2085
|
+
title: string;
|
|
2086
|
+
config: Record<string, any>;
|
|
2087
|
+
dataTest: string;
|
|
2088
|
+
modelValue: boolean;
|
|
2089
|
+
confirmLabel: string;
|
|
2090
|
+
size?: string | undefined;
|
|
2091
|
+
closeOnCross?: boolean | undefined;
|
|
2092
|
+
closeOnOverlay?: boolean | undefined;
|
|
2093
|
+
closeOnEsc?: boolean | undefined;
|
|
2094
|
+
inner?: boolean | undefined;
|
|
2095
|
+
mobileStickBottom?: boolean | undefined;
|
|
2096
|
+
confirmColor?: string | undefined;
|
|
2097
|
+
confirmDisabled?: boolean | undefined;
|
|
2098
|
+
cancelHidden?: boolean | undefined;
|
|
2099
|
+
$props: {
|
|
2100
|
+
readonly id?: string | undefined;
|
|
2101
|
+
readonly description?: string | undefined;
|
|
2102
|
+
readonly title?: string | undefined;
|
|
2103
|
+
readonly config?: Record<string, any> | undefined;
|
|
2104
|
+
readonly dataTest?: string | undefined;
|
|
2105
|
+
readonly modelValue?: boolean | undefined;
|
|
2106
|
+
readonly confirmLabel?: string | undefined;
|
|
2107
|
+
readonly size?: string | undefined;
|
|
2108
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2109
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2110
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2111
|
+
readonly inner?: boolean | undefined;
|
|
2112
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2113
|
+
readonly confirmColor?: string | undefined;
|
|
2114
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2115
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2116
|
+
};
|
|
2117
|
+
}, {}, {}, {}, {}>;
|
|
2118
|
+
__isFragment?: never;
|
|
2119
|
+
__isTeleport?: never;
|
|
2120
|
+
__isSuspense?: never;
|
|
2121
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2122
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2123
|
+
id: string;
|
|
2124
|
+
description: string;
|
|
2125
|
+
title: string;
|
|
2126
|
+
config: Record<string, any>;
|
|
2127
|
+
dataTest: string;
|
|
2128
|
+
modelValue: boolean;
|
|
2129
|
+
confirmLabel: string;
|
|
2130
|
+
size?: string | undefined;
|
|
2131
|
+
closeOnCross?: boolean | undefined;
|
|
2132
|
+
closeOnOverlay?: boolean | undefined;
|
|
2133
|
+
closeOnEsc?: boolean | undefined;
|
|
2134
|
+
inner?: boolean | undefined;
|
|
2135
|
+
mobileStickBottom?: boolean | undefined;
|
|
2136
|
+
confirmColor?: string | undefined;
|
|
2137
|
+
confirmDisabled?: boolean | undefined;
|
|
2138
|
+
cancelHidden?: boolean | undefined;
|
|
2139
|
+
$props: {
|
|
2140
|
+
readonly id?: string | undefined;
|
|
2141
|
+
readonly description?: string | undefined;
|
|
2142
|
+
readonly title?: string | undefined;
|
|
2143
|
+
readonly config?: Record<string, any> | undefined;
|
|
2144
|
+
readonly dataTest?: string | undefined;
|
|
2145
|
+
readonly modelValue?: boolean | undefined;
|
|
2146
|
+
readonly confirmLabel?: string | undefined;
|
|
2147
|
+
readonly size?: string | undefined;
|
|
2148
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2149
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2150
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2151
|
+
readonly inner?: boolean | undefined;
|
|
2152
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2153
|
+
readonly confirmColor?: string | undefined;
|
|
2154
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2155
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2156
|
+
};
|
|
2157
|
+
}, {}, {}, {}, 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 () => {
|
|
2158
|
+
$slots: {
|
|
2159
|
+
"header-left"?(_: {}): any;
|
|
2160
|
+
"before-title"?(_: {}): any;
|
|
2161
|
+
"after-title"?(_: {}): any;
|
|
2162
|
+
"header-right"?(_: {}): any;
|
|
2163
|
+
"close-button"?(_: {
|
|
2164
|
+
iconName: any;
|
|
2165
|
+
}): any;
|
|
2166
|
+
default?(_: {}): any;
|
|
2167
|
+
"footer-left"?(_: {}): any;
|
|
2168
|
+
"footer-right"?(_: {}): any;
|
|
2169
|
+
};
|
|
2170
|
+
});
|
|
2171
|
+
UButton: {
|
|
2172
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2173
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2174
|
+
label: string;
|
|
2175
|
+
id: string;
|
|
2176
|
+
rightIcon: string;
|
|
2177
|
+
leftIcon: string;
|
|
2178
|
+
config: Record<string, any>;
|
|
2179
|
+
dataTest: string;
|
|
2180
|
+
icon: string;
|
|
2181
|
+
color?: string | undefined;
|
|
2182
|
+
disabled?: boolean | undefined;
|
|
2183
|
+
size?: string | undefined;
|
|
2184
|
+
square?: boolean | undefined;
|
|
2185
|
+
filled?: boolean | undefined;
|
|
2186
|
+
variant?: string | undefined;
|
|
2187
|
+
loading?: boolean | undefined;
|
|
2188
|
+
tag?: string | undefined;
|
|
2189
|
+
tabindex?: string | number | undefined;
|
|
2190
|
+
block?: boolean | undefined;
|
|
2191
|
+
round?: boolean | undefined;
|
|
2192
|
+
noRing?: boolean | undefined;
|
|
2193
|
+
$props: {
|
|
2194
|
+
readonly label?: string | undefined;
|
|
2195
|
+
readonly id?: string | undefined;
|
|
2196
|
+
readonly rightIcon?: string | undefined;
|
|
2197
|
+
readonly leftIcon?: string | undefined;
|
|
2198
|
+
readonly config?: Record<string, any> | undefined;
|
|
2199
|
+
readonly dataTest?: string | undefined;
|
|
2200
|
+
readonly icon?: string | undefined;
|
|
2201
|
+
readonly color?: string | undefined;
|
|
2202
|
+
readonly disabled?: boolean | undefined;
|
|
2203
|
+
readonly size?: string | undefined;
|
|
2204
|
+
readonly square?: boolean | undefined;
|
|
2205
|
+
readonly filled?: boolean | undefined;
|
|
2206
|
+
readonly variant?: string | undefined;
|
|
2207
|
+
readonly loading?: boolean | undefined;
|
|
2208
|
+
readonly tag?: string | undefined;
|
|
2209
|
+
readonly tabindex?: string | number | undefined;
|
|
2210
|
+
readonly block?: boolean | undefined;
|
|
2211
|
+
readonly round?: boolean | undefined;
|
|
2212
|
+
readonly noRing?: boolean | undefined;
|
|
2213
|
+
};
|
|
2214
|
+
}, {}, {}, {}, 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, {
|
|
2215
|
+
P: {};
|
|
2216
|
+
B: {};
|
|
2217
|
+
D: {};
|
|
2218
|
+
C: {};
|
|
2219
|
+
M: {};
|
|
2220
|
+
Defaults: {};
|
|
2221
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2222
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2223
|
+
label: string;
|
|
2224
|
+
id: string;
|
|
2225
|
+
rightIcon: string;
|
|
2226
|
+
leftIcon: string;
|
|
2227
|
+
config: Record<string, any>;
|
|
2228
|
+
dataTest: string;
|
|
2229
|
+
icon: string;
|
|
2230
|
+
color?: string | undefined;
|
|
2231
|
+
disabled?: boolean | undefined;
|
|
2232
|
+
size?: string | undefined;
|
|
2233
|
+
square?: boolean | undefined;
|
|
2234
|
+
filled?: boolean | undefined;
|
|
2235
|
+
variant?: string | undefined;
|
|
2236
|
+
loading?: boolean | undefined;
|
|
2237
|
+
tag?: string | undefined;
|
|
2238
|
+
tabindex?: string | number | undefined;
|
|
2239
|
+
block?: boolean | undefined;
|
|
2240
|
+
round?: boolean | undefined;
|
|
2241
|
+
noRing?: boolean | undefined;
|
|
2242
|
+
$props: {
|
|
2243
|
+
readonly label?: string | undefined;
|
|
2244
|
+
readonly id?: string | undefined;
|
|
2245
|
+
readonly rightIcon?: string | undefined;
|
|
2246
|
+
readonly leftIcon?: string | undefined;
|
|
2247
|
+
readonly config?: Record<string, any> | undefined;
|
|
2248
|
+
readonly dataTest?: string | undefined;
|
|
2249
|
+
readonly icon?: string | undefined;
|
|
2250
|
+
readonly color?: string | undefined;
|
|
2251
|
+
readonly disabled?: boolean | undefined;
|
|
2252
|
+
readonly size?: string | undefined;
|
|
2253
|
+
readonly square?: boolean | undefined;
|
|
2254
|
+
readonly filled?: boolean | undefined;
|
|
2255
|
+
readonly variant?: string | undefined;
|
|
2256
|
+
readonly loading?: boolean | undefined;
|
|
2257
|
+
readonly tag?: string | undefined;
|
|
2258
|
+
readonly tabindex?: string | number | undefined;
|
|
2259
|
+
readonly block?: boolean | undefined;
|
|
2260
|
+
readonly round?: boolean | undefined;
|
|
2261
|
+
readonly noRing?: boolean | undefined;
|
|
2262
|
+
};
|
|
2263
|
+
}, {}, {}, {}, {}>;
|
|
2264
|
+
__isFragment?: never;
|
|
2265
|
+
__isTeleport?: never;
|
|
2266
|
+
__isSuspense?: never;
|
|
2267
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2268
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2269
|
+
label: string;
|
|
2270
|
+
id: string;
|
|
2271
|
+
rightIcon: string;
|
|
2272
|
+
leftIcon: string;
|
|
2273
|
+
config: Record<string, any>;
|
|
2274
|
+
dataTest: string;
|
|
2275
|
+
icon: string;
|
|
2276
|
+
color?: string | undefined;
|
|
2277
|
+
disabled?: boolean | undefined;
|
|
2278
|
+
size?: string | undefined;
|
|
2279
|
+
square?: boolean | undefined;
|
|
2280
|
+
filled?: boolean | undefined;
|
|
2281
|
+
variant?: string | undefined;
|
|
2282
|
+
loading?: boolean | undefined;
|
|
2283
|
+
tag?: string | undefined;
|
|
2284
|
+
tabindex?: string | number | undefined;
|
|
2285
|
+
block?: boolean | undefined;
|
|
2286
|
+
round?: boolean | undefined;
|
|
2287
|
+
noRing?: boolean | undefined;
|
|
2288
|
+
$props: {
|
|
2289
|
+
readonly label?: string | undefined;
|
|
2290
|
+
readonly id?: string | undefined;
|
|
2291
|
+
readonly rightIcon?: string | undefined;
|
|
2292
|
+
readonly leftIcon?: string | undefined;
|
|
2293
|
+
readonly config?: Record<string, any> | undefined;
|
|
2294
|
+
readonly dataTest?: string | undefined;
|
|
2295
|
+
readonly icon?: string | undefined;
|
|
2296
|
+
readonly color?: string | undefined;
|
|
2297
|
+
readonly disabled?: boolean | undefined;
|
|
2298
|
+
readonly size?: string | undefined;
|
|
2299
|
+
readonly square?: boolean | undefined;
|
|
2300
|
+
readonly filled?: boolean | undefined;
|
|
2301
|
+
readonly variant?: string | undefined;
|
|
2302
|
+
readonly loading?: boolean | undefined;
|
|
2303
|
+
readonly tag?: string | undefined;
|
|
2304
|
+
readonly tabindex?: string | number | undefined;
|
|
2305
|
+
readonly block?: boolean | undefined;
|
|
2306
|
+
readonly round?: boolean | undefined;
|
|
2307
|
+
readonly noRing?: boolean | undefined;
|
|
2308
|
+
};
|
|
2309
|
+
}, {}, {}, {}, 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 () => {
|
|
2310
|
+
$slots: {
|
|
2311
|
+
left?(_: {
|
|
2312
|
+
iconName: string;
|
|
2313
|
+
iconSize: any;
|
|
2314
|
+
iconColor: string | undefined;
|
|
2315
|
+
}): any;
|
|
2316
|
+
default?(_: {
|
|
2317
|
+
label: string;
|
|
2318
|
+
iconName: string;
|
|
2319
|
+
iconSize: any;
|
|
2320
|
+
iconColor: string | undefined;
|
|
2321
|
+
}): any;
|
|
2322
|
+
right?(_: {
|
|
2323
|
+
iconName: string;
|
|
2324
|
+
iconSize: any;
|
|
2325
|
+
iconColor: string | undefined;
|
|
2326
|
+
}): any;
|
|
2327
|
+
};
|
|
2328
|
+
});
|
|
2329
|
+
UHeader: {
|
|
2330
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2331
|
+
label: string;
|
|
2332
|
+
config: Record<string, any>;
|
|
2333
|
+
dataTest: string;
|
|
2334
|
+
color?: string | undefined;
|
|
2335
|
+
size?: string | undefined;
|
|
2336
|
+
line?: boolean | undefined;
|
|
2337
|
+
tag?: string | undefined;
|
|
2338
|
+
underlined?: boolean | undefined;
|
|
2339
|
+
$props: {
|
|
2340
|
+
readonly label?: string | undefined;
|
|
2341
|
+
readonly config?: Record<string, any> | undefined;
|
|
2342
|
+
readonly dataTest?: string | undefined;
|
|
2343
|
+
readonly color?: string | undefined;
|
|
2344
|
+
readonly size?: string | undefined;
|
|
2345
|
+
readonly line?: boolean | undefined;
|
|
2346
|
+
readonly tag?: string | undefined;
|
|
2347
|
+
readonly underlined?: boolean | undefined;
|
|
2348
|
+
};
|
|
2349
|
+
}, {}, {}, {}, 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, {
|
|
2350
|
+
P: {};
|
|
2351
|
+
B: {};
|
|
2352
|
+
D: {};
|
|
2353
|
+
C: {};
|
|
2354
|
+
M: {};
|
|
2355
|
+
Defaults: {};
|
|
2356
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2357
|
+
label: string;
|
|
2358
|
+
config: Record<string, any>;
|
|
2359
|
+
dataTest: string;
|
|
2360
|
+
color?: string | undefined;
|
|
2361
|
+
size?: string | undefined;
|
|
2362
|
+
line?: boolean | undefined;
|
|
2363
|
+
tag?: string | undefined;
|
|
2364
|
+
underlined?: boolean | undefined;
|
|
2365
|
+
$props: {
|
|
2366
|
+
readonly label?: string | undefined;
|
|
2367
|
+
readonly config?: Record<string, any> | undefined;
|
|
2368
|
+
readonly dataTest?: string | undefined;
|
|
2369
|
+
readonly color?: string | undefined;
|
|
2370
|
+
readonly size?: string | undefined;
|
|
2371
|
+
readonly line?: boolean | undefined;
|
|
2372
|
+
readonly tag?: string | undefined;
|
|
2373
|
+
readonly underlined?: boolean | undefined;
|
|
2374
|
+
};
|
|
2375
|
+
}, {}, {}, {}, {}>;
|
|
2376
|
+
__isFragment?: never;
|
|
2377
|
+
__isTeleport?: never;
|
|
2378
|
+
__isSuspense?: never;
|
|
2379
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2380
|
+
label: string;
|
|
2381
|
+
config: Record<string, any>;
|
|
2382
|
+
dataTest: string;
|
|
2383
|
+
color?: string | undefined;
|
|
2384
|
+
size?: string | undefined;
|
|
2385
|
+
line?: boolean | undefined;
|
|
2386
|
+
tag?: string | undefined;
|
|
2387
|
+
underlined?: boolean | undefined;
|
|
2388
|
+
$props: {
|
|
2389
|
+
readonly label?: string | undefined;
|
|
2390
|
+
readonly config?: Record<string, any> | undefined;
|
|
2391
|
+
readonly dataTest?: string | undefined;
|
|
2392
|
+
readonly color?: string | undefined;
|
|
2393
|
+
readonly size?: string | undefined;
|
|
2394
|
+
readonly line?: boolean | undefined;
|
|
2395
|
+
readonly tag?: string | undefined;
|
|
2396
|
+
readonly underlined?: boolean | undefined;
|
|
2397
|
+
};
|
|
2398
|
+
}, {}, {}, {}, 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 () => {
|
|
2399
|
+
$slots: {
|
|
2400
|
+
default?(_: {}): any;
|
|
2401
|
+
};
|
|
2402
|
+
});
|
|
2403
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2404
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2405
|
+
config: Record<string, any>;
|
|
2406
|
+
name: string;
|
|
2407
|
+
src: Record<string, any>;
|
|
2408
|
+
tooltip: string;
|
|
2409
|
+
tooltipSettings: Record<string, any>;
|
|
2410
|
+
dataTest: string;
|
|
2411
|
+
internal: boolean;
|
|
2412
|
+
color?: string | undefined;
|
|
2413
|
+
size?: string | undefined;
|
|
2414
|
+
interactive?: boolean | undefined;
|
|
2415
|
+
variant?: string | undefined;
|
|
2416
|
+
$props: {
|
|
2417
|
+
readonly config?: Record<string, any> | undefined;
|
|
2418
|
+
readonly name?: string | undefined;
|
|
2419
|
+
readonly src?: Record<string, any> | undefined;
|
|
2420
|
+
readonly tooltip?: string | undefined;
|
|
2421
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2422
|
+
readonly dataTest?: string | undefined;
|
|
2423
|
+
readonly internal?: boolean | undefined;
|
|
2424
|
+
readonly color?: string | undefined;
|
|
2425
|
+
readonly size?: string | undefined;
|
|
2426
|
+
readonly interactive?: boolean | undefined;
|
|
2427
|
+
readonly variant?: string | undefined;
|
|
2428
|
+
};
|
|
2429
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2430
|
+
};
|
|
2431
|
+
setup(): {
|
|
2432
|
+
args: any;
|
|
2433
|
+
slots: any;
|
|
2434
|
+
onClick: () => void;
|
|
2435
|
+
};
|
|
2436
|
+
template: string;
|
|
2437
|
+
};
|
|
2438
|
+
export namespace SlotBeforeTitle {
|
|
2439
|
+
export namespace args_6 {
|
|
2440
|
+
let slotTemplate: string;
|
|
2441
|
+
}
|
|
2442
|
+
export { args_6 as args };
|
|
2443
|
+
}
|
|
2444
|
+
export function SlotAfterTitle(args: any): {
|
|
2445
|
+
components: {
|
|
2446
|
+
UModalConfirm: {
|
|
2447
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2448
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2449
|
+
id: string;
|
|
2450
|
+
description: string;
|
|
2451
|
+
title: string;
|
|
2452
|
+
config: Record<string, any>;
|
|
2453
|
+
dataTest: string;
|
|
2454
|
+
modelValue: boolean;
|
|
2455
|
+
confirmLabel: string;
|
|
2456
|
+
size?: string | undefined;
|
|
2457
|
+
closeOnCross?: boolean | undefined;
|
|
2458
|
+
closeOnOverlay?: boolean | undefined;
|
|
2459
|
+
closeOnEsc?: boolean | undefined;
|
|
2460
|
+
inner?: boolean | undefined;
|
|
2461
|
+
mobileStickBottom?: boolean | undefined;
|
|
2462
|
+
confirmColor?: string | undefined;
|
|
2463
|
+
confirmDisabled?: boolean | undefined;
|
|
2464
|
+
cancelHidden?: boolean | undefined;
|
|
2465
|
+
$props: {
|
|
2466
|
+
readonly id?: string | undefined;
|
|
2467
|
+
readonly description?: string | undefined;
|
|
2468
|
+
readonly title?: string | undefined;
|
|
2469
|
+
readonly config?: Record<string, any> | undefined;
|
|
2470
|
+
readonly dataTest?: string | undefined;
|
|
2471
|
+
readonly modelValue?: boolean | undefined;
|
|
2472
|
+
readonly confirmLabel?: string | undefined;
|
|
2473
|
+
readonly size?: string | undefined;
|
|
2474
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2475
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2476
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2477
|
+
readonly inner?: boolean | undefined;
|
|
2478
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2479
|
+
readonly confirmColor?: string | undefined;
|
|
2480
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2481
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2482
|
+
};
|
|
2483
|
+
}, {}, {}, {}, 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, {
|
|
2484
|
+
P: {};
|
|
2485
|
+
B: {};
|
|
2486
|
+
D: {};
|
|
2487
|
+
C: {};
|
|
2488
|
+
M: {};
|
|
2489
|
+
Defaults: {};
|
|
2490
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2491
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2492
|
+
id: string;
|
|
2493
|
+
description: string;
|
|
2494
|
+
title: string;
|
|
2495
|
+
config: Record<string, any>;
|
|
2496
|
+
dataTest: string;
|
|
2497
|
+
modelValue: boolean;
|
|
2498
|
+
confirmLabel: string;
|
|
2499
|
+
size?: string | undefined;
|
|
2500
|
+
closeOnCross?: boolean | undefined;
|
|
2501
|
+
closeOnOverlay?: boolean | undefined;
|
|
2502
|
+
closeOnEsc?: boolean | undefined;
|
|
2503
|
+
inner?: boolean | undefined;
|
|
2504
|
+
mobileStickBottom?: boolean | undefined;
|
|
2505
|
+
confirmColor?: string | undefined;
|
|
2506
|
+
confirmDisabled?: boolean | undefined;
|
|
2507
|
+
cancelHidden?: boolean | undefined;
|
|
2508
|
+
$props: {
|
|
2509
|
+
readonly id?: string | undefined;
|
|
2510
|
+
readonly description?: string | undefined;
|
|
2511
|
+
readonly title?: string | undefined;
|
|
2512
|
+
readonly config?: Record<string, any> | undefined;
|
|
2513
|
+
readonly dataTest?: string | undefined;
|
|
2514
|
+
readonly modelValue?: boolean | undefined;
|
|
2515
|
+
readonly confirmLabel?: string | undefined;
|
|
2516
|
+
readonly size?: string | undefined;
|
|
2517
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2518
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2519
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2520
|
+
readonly inner?: boolean | undefined;
|
|
2521
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2522
|
+
readonly confirmColor?: string | undefined;
|
|
2523
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2524
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2525
|
+
};
|
|
2526
|
+
}, {}, {}, {}, {}>;
|
|
2527
|
+
__isFragment?: never;
|
|
2528
|
+
__isTeleport?: never;
|
|
2529
|
+
__isSuspense?: never;
|
|
2530
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2531
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2532
|
+
id: string;
|
|
2533
|
+
description: string;
|
|
2534
|
+
title: string;
|
|
2535
|
+
config: Record<string, any>;
|
|
2536
|
+
dataTest: string;
|
|
2537
|
+
modelValue: boolean;
|
|
2538
|
+
confirmLabel: string;
|
|
2539
|
+
size?: string | undefined;
|
|
2540
|
+
closeOnCross?: boolean | undefined;
|
|
2541
|
+
closeOnOverlay?: boolean | undefined;
|
|
2542
|
+
closeOnEsc?: boolean | undefined;
|
|
2543
|
+
inner?: boolean | undefined;
|
|
2544
|
+
mobileStickBottom?: boolean | undefined;
|
|
2545
|
+
confirmColor?: string | undefined;
|
|
2546
|
+
confirmDisabled?: boolean | undefined;
|
|
2547
|
+
cancelHidden?: boolean | undefined;
|
|
2548
|
+
$props: {
|
|
2549
|
+
readonly id?: string | undefined;
|
|
2550
|
+
readonly description?: string | undefined;
|
|
2551
|
+
readonly title?: string | undefined;
|
|
2552
|
+
readonly config?: Record<string, any> | undefined;
|
|
2553
|
+
readonly dataTest?: string | undefined;
|
|
2554
|
+
readonly modelValue?: boolean | undefined;
|
|
2555
|
+
readonly confirmLabel?: string | undefined;
|
|
2556
|
+
readonly size?: string | undefined;
|
|
2557
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2558
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2559
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2560
|
+
readonly inner?: boolean | undefined;
|
|
2561
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2562
|
+
readonly confirmColor?: string | undefined;
|
|
2563
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2564
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2565
|
+
};
|
|
2566
|
+
}, {}, {}, {}, 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 () => {
|
|
2567
|
+
$slots: {
|
|
2568
|
+
"header-left"?(_: {}): any;
|
|
2569
|
+
"before-title"?(_: {}): any;
|
|
2570
|
+
"after-title"?(_: {}): any;
|
|
2571
|
+
"header-right"?(_: {}): any;
|
|
2572
|
+
"close-button"?(_: {
|
|
2573
|
+
iconName: any;
|
|
2574
|
+
}): any;
|
|
2575
|
+
default?(_: {}): any;
|
|
2576
|
+
"footer-left"?(_: {}): any;
|
|
2577
|
+
"footer-right"?(_: {}): any;
|
|
2578
|
+
};
|
|
2579
|
+
});
|
|
2580
|
+
UButton: {
|
|
2581
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2582
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2583
|
+
label: string;
|
|
2584
|
+
id: string;
|
|
2585
|
+
rightIcon: string;
|
|
2586
|
+
leftIcon: string;
|
|
2587
|
+
config: Record<string, any>;
|
|
2588
|
+
dataTest: string;
|
|
2589
|
+
icon: string;
|
|
2590
|
+
color?: string | undefined;
|
|
2591
|
+
disabled?: boolean | undefined;
|
|
2592
|
+
size?: string | undefined;
|
|
2593
|
+
square?: boolean | undefined;
|
|
2594
|
+
filled?: boolean | undefined;
|
|
2595
|
+
variant?: string | undefined;
|
|
2596
|
+
loading?: boolean | undefined;
|
|
2597
|
+
tag?: string | undefined;
|
|
2598
|
+
tabindex?: string | number | undefined;
|
|
2599
|
+
block?: boolean | undefined;
|
|
2600
|
+
round?: boolean | undefined;
|
|
2601
|
+
noRing?: boolean | undefined;
|
|
2602
|
+
$props: {
|
|
2603
|
+
readonly label?: string | undefined;
|
|
2604
|
+
readonly id?: string | undefined;
|
|
2605
|
+
readonly rightIcon?: string | undefined;
|
|
2606
|
+
readonly leftIcon?: string | undefined;
|
|
2607
|
+
readonly config?: Record<string, any> | undefined;
|
|
2608
|
+
readonly dataTest?: string | undefined;
|
|
2609
|
+
readonly icon?: string | undefined;
|
|
2610
|
+
readonly color?: string | undefined;
|
|
2611
|
+
readonly disabled?: boolean | undefined;
|
|
2612
|
+
readonly size?: string | undefined;
|
|
2613
|
+
readonly square?: boolean | undefined;
|
|
2614
|
+
readonly filled?: boolean | undefined;
|
|
2615
|
+
readonly variant?: string | undefined;
|
|
2616
|
+
readonly loading?: boolean | undefined;
|
|
2617
|
+
readonly tag?: string | undefined;
|
|
2618
|
+
readonly tabindex?: string | number | undefined;
|
|
2619
|
+
readonly block?: boolean | undefined;
|
|
2620
|
+
readonly round?: boolean | undefined;
|
|
2621
|
+
readonly noRing?: boolean | undefined;
|
|
2622
|
+
};
|
|
2623
|
+
}, {}, {}, {}, 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, {
|
|
2624
|
+
P: {};
|
|
2625
|
+
B: {};
|
|
2626
|
+
D: {};
|
|
2627
|
+
C: {};
|
|
2628
|
+
M: {};
|
|
2629
|
+
Defaults: {};
|
|
2630
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2631
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2632
|
+
label: string;
|
|
2633
|
+
id: string;
|
|
2634
|
+
rightIcon: string;
|
|
2635
|
+
leftIcon: string;
|
|
2636
|
+
config: Record<string, any>;
|
|
2637
|
+
dataTest: string;
|
|
2638
|
+
icon: string;
|
|
2639
|
+
color?: string | undefined;
|
|
2640
|
+
disabled?: boolean | undefined;
|
|
2641
|
+
size?: string | undefined;
|
|
2642
|
+
square?: boolean | undefined;
|
|
2643
|
+
filled?: boolean | undefined;
|
|
2644
|
+
variant?: string | undefined;
|
|
2645
|
+
loading?: boolean | undefined;
|
|
2646
|
+
tag?: string | undefined;
|
|
2647
|
+
tabindex?: string | number | undefined;
|
|
2648
|
+
block?: boolean | undefined;
|
|
2649
|
+
round?: boolean | undefined;
|
|
2650
|
+
noRing?: boolean | undefined;
|
|
2651
|
+
$props: {
|
|
2652
|
+
readonly label?: string | undefined;
|
|
2653
|
+
readonly id?: string | undefined;
|
|
2654
|
+
readonly rightIcon?: string | undefined;
|
|
2655
|
+
readonly leftIcon?: string | undefined;
|
|
2656
|
+
readonly config?: Record<string, any> | undefined;
|
|
2657
|
+
readonly dataTest?: string | undefined;
|
|
2658
|
+
readonly icon?: string | undefined;
|
|
2659
|
+
readonly color?: string | undefined;
|
|
2660
|
+
readonly disabled?: boolean | undefined;
|
|
2661
|
+
readonly size?: string | undefined;
|
|
2662
|
+
readonly square?: boolean | undefined;
|
|
2663
|
+
readonly filled?: boolean | undefined;
|
|
2664
|
+
readonly variant?: string | undefined;
|
|
2665
|
+
readonly loading?: boolean | undefined;
|
|
2666
|
+
readonly tag?: string | undefined;
|
|
2667
|
+
readonly tabindex?: string | number | undefined;
|
|
2668
|
+
readonly block?: boolean | undefined;
|
|
2669
|
+
readonly round?: boolean | undefined;
|
|
2670
|
+
readonly noRing?: boolean | undefined;
|
|
2671
|
+
};
|
|
2672
|
+
}, {}, {}, {}, {}>;
|
|
2673
|
+
__isFragment?: never;
|
|
2674
|
+
__isTeleport?: never;
|
|
2675
|
+
__isSuspense?: never;
|
|
2676
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2677
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2678
|
+
label: string;
|
|
2679
|
+
id: string;
|
|
2680
|
+
rightIcon: string;
|
|
2681
|
+
leftIcon: string;
|
|
2682
|
+
config: Record<string, any>;
|
|
2683
|
+
dataTest: string;
|
|
2684
|
+
icon: string;
|
|
2685
|
+
color?: string | undefined;
|
|
2686
|
+
disabled?: boolean | undefined;
|
|
2687
|
+
size?: string | undefined;
|
|
2688
|
+
square?: boolean | undefined;
|
|
2689
|
+
filled?: boolean | undefined;
|
|
2690
|
+
variant?: string | undefined;
|
|
2691
|
+
loading?: boolean | undefined;
|
|
2692
|
+
tag?: string | undefined;
|
|
2693
|
+
tabindex?: string | number | undefined;
|
|
2694
|
+
block?: boolean | undefined;
|
|
2695
|
+
round?: boolean | undefined;
|
|
2696
|
+
noRing?: boolean | undefined;
|
|
2697
|
+
$props: {
|
|
2698
|
+
readonly label?: string | undefined;
|
|
2699
|
+
readonly id?: string | undefined;
|
|
2700
|
+
readonly rightIcon?: string | undefined;
|
|
2701
|
+
readonly leftIcon?: string | undefined;
|
|
2702
|
+
readonly config?: Record<string, any> | undefined;
|
|
2703
|
+
readonly dataTest?: string | undefined;
|
|
2704
|
+
readonly icon?: string | undefined;
|
|
2705
|
+
readonly color?: string | undefined;
|
|
2706
|
+
readonly disabled?: boolean | undefined;
|
|
2707
|
+
readonly size?: string | undefined;
|
|
2708
|
+
readonly square?: boolean | undefined;
|
|
2709
|
+
readonly filled?: boolean | undefined;
|
|
2710
|
+
readonly variant?: string | undefined;
|
|
2711
|
+
readonly loading?: boolean | undefined;
|
|
2712
|
+
readonly tag?: string | undefined;
|
|
2713
|
+
readonly tabindex?: string | number | undefined;
|
|
2714
|
+
readonly block?: boolean | undefined;
|
|
2715
|
+
readonly round?: boolean | undefined;
|
|
2716
|
+
readonly noRing?: boolean | undefined;
|
|
2717
|
+
};
|
|
2718
|
+
}, {}, {}, {}, 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 () => {
|
|
2719
|
+
$slots: {
|
|
2720
|
+
left?(_: {
|
|
2721
|
+
iconName: string;
|
|
2722
|
+
iconSize: any;
|
|
2723
|
+
iconColor: string | undefined;
|
|
2724
|
+
}): any;
|
|
2725
|
+
default?(_: {
|
|
2726
|
+
label: string;
|
|
2727
|
+
iconName: string;
|
|
2728
|
+
iconSize: any;
|
|
2729
|
+
iconColor: string | undefined;
|
|
2730
|
+
}): any;
|
|
2731
|
+
right?(_: {
|
|
2732
|
+
iconName: string;
|
|
2733
|
+
iconSize: any;
|
|
2734
|
+
iconColor: string | undefined;
|
|
2735
|
+
}): any;
|
|
2736
|
+
};
|
|
2737
|
+
});
|
|
2738
|
+
UHeader: {
|
|
2739
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2740
|
+
label: string;
|
|
2741
|
+
config: Record<string, any>;
|
|
2742
|
+
dataTest: string;
|
|
2743
|
+
color?: string | undefined;
|
|
2744
|
+
size?: string | undefined;
|
|
2745
|
+
line?: boolean | undefined;
|
|
2746
|
+
tag?: string | undefined;
|
|
2747
|
+
underlined?: boolean | undefined;
|
|
2748
|
+
$props: {
|
|
2749
|
+
readonly label?: string | undefined;
|
|
2750
|
+
readonly config?: Record<string, any> | undefined;
|
|
2751
|
+
readonly dataTest?: string | undefined;
|
|
2752
|
+
readonly color?: string | undefined;
|
|
2753
|
+
readonly size?: string | undefined;
|
|
2754
|
+
readonly line?: boolean | undefined;
|
|
2755
|
+
readonly tag?: string | undefined;
|
|
2756
|
+
readonly underlined?: boolean | undefined;
|
|
2757
|
+
};
|
|
2758
|
+
}, {}, {}, {}, 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, {
|
|
2759
|
+
P: {};
|
|
2760
|
+
B: {};
|
|
2761
|
+
D: {};
|
|
2762
|
+
C: {};
|
|
2763
|
+
M: {};
|
|
2764
|
+
Defaults: {};
|
|
2765
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2766
|
+
label: string;
|
|
2767
|
+
config: Record<string, any>;
|
|
2768
|
+
dataTest: string;
|
|
2769
|
+
color?: string | undefined;
|
|
2770
|
+
size?: string | undefined;
|
|
2771
|
+
line?: boolean | undefined;
|
|
2772
|
+
tag?: string | undefined;
|
|
2773
|
+
underlined?: boolean | undefined;
|
|
2774
|
+
$props: {
|
|
2775
|
+
readonly label?: string | undefined;
|
|
2776
|
+
readonly config?: Record<string, any> | undefined;
|
|
2777
|
+
readonly dataTest?: string | undefined;
|
|
2778
|
+
readonly color?: string | undefined;
|
|
2779
|
+
readonly size?: string | undefined;
|
|
2780
|
+
readonly line?: boolean | undefined;
|
|
2781
|
+
readonly tag?: string | undefined;
|
|
2782
|
+
readonly underlined?: boolean | undefined;
|
|
2783
|
+
};
|
|
2784
|
+
}, {}, {}, {}, {}>;
|
|
2785
|
+
__isFragment?: never;
|
|
2786
|
+
__isTeleport?: never;
|
|
2787
|
+
__isSuspense?: never;
|
|
2788
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2789
|
+
label: string;
|
|
2790
|
+
config: Record<string, any>;
|
|
2791
|
+
dataTest: string;
|
|
2792
|
+
color?: string | undefined;
|
|
2793
|
+
size?: string | undefined;
|
|
2794
|
+
line?: boolean | undefined;
|
|
2795
|
+
tag?: string | undefined;
|
|
2796
|
+
underlined?: boolean | undefined;
|
|
2797
|
+
$props: {
|
|
2798
|
+
readonly label?: string | undefined;
|
|
2799
|
+
readonly config?: Record<string, any> | undefined;
|
|
2800
|
+
readonly dataTest?: string | undefined;
|
|
2801
|
+
readonly color?: string | undefined;
|
|
2802
|
+
readonly size?: string | undefined;
|
|
2803
|
+
readonly line?: boolean | undefined;
|
|
2804
|
+
readonly tag?: string | undefined;
|
|
2805
|
+
readonly underlined?: boolean | undefined;
|
|
2806
|
+
};
|
|
2807
|
+
}, {}, {}, {}, 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 () => {
|
|
2808
|
+
$slots: {
|
|
2809
|
+
default?(_: {}): any;
|
|
2810
|
+
};
|
|
2811
|
+
});
|
|
2812
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2813
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2814
|
+
config: Record<string, any>;
|
|
2815
|
+
name: string;
|
|
2816
|
+
src: Record<string, any>;
|
|
2817
|
+
tooltip: string;
|
|
2818
|
+
tooltipSettings: Record<string, any>;
|
|
2819
|
+
dataTest: string;
|
|
2820
|
+
internal: boolean;
|
|
2821
|
+
color?: string | undefined;
|
|
2822
|
+
size?: string | undefined;
|
|
2823
|
+
interactive?: boolean | undefined;
|
|
2824
|
+
variant?: string | undefined;
|
|
2825
|
+
$props: {
|
|
2826
|
+
readonly config?: Record<string, any> | undefined;
|
|
2827
|
+
readonly name?: string | undefined;
|
|
2828
|
+
readonly src?: Record<string, any> | undefined;
|
|
2829
|
+
readonly tooltip?: string | undefined;
|
|
2830
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2831
|
+
readonly dataTest?: string | undefined;
|
|
2832
|
+
readonly internal?: boolean | undefined;
|
|
2833
|
+
readonly color?: string | undefined;
|
|
2834
|
+
readonly size?: string | undefined;
|
|
2835
|
+
readonly interactive?: boolean | undefined;
|
|
2836
|
+
readonly variant?: string | undefined;
|
|
2837
|
+
};
|
|
2838
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2839
|
+
};
|
|
2840
|
+
setup(): {
|
|
2841
|
+
args: any;
|
|
2842
|
+
slots: any;
|
|
2843
|
+
onClick: () => void;
|
|
2844
|
+
};
|
|
2845
|
+
template: string;
|
|
2846
|
+
};
|
|
2847
|
+
export namespace SlotAfterTitle {
|
|
2848
|
+
export namespace args_7 {
|
|
2849
|
+
let slotTemplate_1: string;
|
|
2850
|
+
export { slotTemplate_1 as slotTemplate };
|
|
2851
|
+
}
|
|
2852
|
+
export { args_7 as args };
|
|
2853
|
+
}
|
|
2854
|
+
export function SlotHeaderLeft(args: any): {
|
|
2855
|
+
components: {
|
|
2856
|
+
UModalConfirm: {
|
|
2857
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2858
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2859
|
+
id: string;
|
|
2860
|
+
description: string;
|
|
2861
|
+
title: string;
|
|
2862
|
+
config: Record<string, any>;
|
|
2863
|
+
dataTest: string;
|
|
2864
|
+
modelValue: boolean;
|
|
2865
|
+
confirmLabel: string;
|
|
2866
|
+
size?: string | undefined;
|
|
2867
|
+
closeOnCross?: boolean | undefined;
|
|
2868
|
+
closeOnOverlay?: boolean | undefined;
|
|
2869
|
+
closeOnEsc?: boolean | undefined;
|
|
2870
|
+
inner?: boolean | undefined;
|
|
2871
|
+
mobileStickBottom?: boolean | undefined;
|
|
2872
|
+
confirmColor?: string | undefined;
|
|
2873
|
+
confirmDisabled?: boolean | undefined;
|
|
2874
|
+
cancelHidden?: boolean | undefined;
|
|
2875
|
+
$props: {
|
|
2876
|
+
readonly id?: string | undefined;
|
|
2877
|
+
readonly description?: string | undefined;
|
|
2878
|
+
readonly title?: string | undefined;
|
|
2879
|
+
readonly config?: Record<string, any> | undefined;
|
|
2880
|
+
readonly dataTest?: string | undefined;
|
|
2881
|
+
readonly modelValue?: boolean | undefined;
|
|
2882
|
+
readonly confirmLabel?: string | undefined;
|
|
2883
|
+
readonly size?: string | undefined;
|
|
2884
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2885
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2886
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2887
|
+
readonly inner?: boolean | undefined;
|
|
2888
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2889
|
+
readonly confirmColor?: string | undefined;
|
|
2890
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2891
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2892
|
+
};
|
|
2893
|
+
}, {}, {}, {}, 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, {
|
|
2894
|
+
P: {};
|
|
2895
|
+
B: {};
|
|
2896
|
+
D: {};
|
|
2897
|
+
C: {};
|
|
2898
|
+
M: {};
|
|
2899
|
+
Defaults: {};
|
|
2900
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2901
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2902
|
+
id: string;
|
|
2903
|
+
description: string;
|
|
2904
|
+
title: string;
|
|
2905
|
+
config: Record<string, any>;
|
|
2906
|
+
dataTest: string;
|
|
2907
|
+
modelValue: boolean;
|
|
2908
|
+
confirmLabel: string;
|
|
2909
|
+
size?: string | undefined;
|
|
2910
|
+
closeOnCross?: boolean | undefined;
|
|
2911
|
+
closeOnOverlay?: boolean | undefined;
|
|
2912
|
+
closeOnEsc?: boolean | undefined;
|
|
2913
|
+
inner?: boolean | undefined;
|
|
2914
|
+
mobileStickBottom?: boolean | undefined;
|
|
2915
|
+
confirmColor?: string | undefined;
|
|
2916
|
+
confirmDisabled?: boolean | undefined;
|
|
2917
|
+
cancelHidden?: boolean | undefined;
|
|
2918
|
+
$props: {
|
|
2919
|
+
readonly id?: string | undefined;
|
|
2920
|
+
readonly description?: string | undefined;
|
|
2921
|
+
readonly title?: string | undefined;
|
|
2922
|
+
readonly config?: Record<string, any> | undefined;
|
|
2923
|
+
readonly dataTest?: string | undefined;
|
|
2924
|
+
readonly modelValue?: boolean | undefined;
|
|
2925
|
+
readonly confirmLabel?: string | undefined;
|
|
2926
|
+
readonly size?: string | undefined;
|
|
2927
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2928
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2929
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2930
|
+
readonly inner?: boolean | undefined;
|
|
2931
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2932
|
+
readonly confirmColor?: string | undefined;
|
|
2933
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2934
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2935
|
+
};
|
|
2936
|
+
}, {}, {}, {}, {}>;
|
|
2937
|
+
__isFragment?: never;
|
|
2938
|
+
__isTeleport?: never;
|
|
2939
|
+
__isSuspense?: never;
|
|
2940
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2941
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
2942
|
+
id: string;
|
|
2943
|
+
description: string;
|
|
2944
|
+
title: string;
|
|
2945
|
+
config: Record<string, any>;
|
|
2946
|
+
dataTest: string;
|
|
2947
|
+
modelValue: boolean;
|
|
2948
|
+
confirmLabel: string;
|
|
2949
|
+
size?: string | undefined;
|
|
2950
|
+
closeOnCross?: boolean | undefined;
|
|
2951
|
+
closeOnOverlay?: boolean | undefined;
|
|
2952
|
+
closeOnEsc?: boolean | undefined;
|
|
2953
|
+
inner?: boolean | undefined;
|
|
2954
|
+
mobileStickBottom?: boolean | undefined;
|
|
2955
|
+
confirmColor?: string | undefined;
|
|
2956
|
+
confirmDisabled?: boolean | undefined;
|
|
2957
|
+
cancelHidden?: boolean | undefined;
|
|
2958
|
+
$props: {
|
|
2959
|
+
readonly id?: string | undefined;
|
|
2960
|
+
readonly description?: string | undefined;
|
|
2961
|
+
readonly title?: string | undefined;
|
|
2962
|
+
readonly config?: Record<string, any> | undefined;
|
|
2963
|
+
readonly dataTest?: string | undefined;
|
|
2964
|
+
readonly modelValue?: boolean | undefined;
|
|
2965
|
+
readonly confirmLabel?: string | undefined;
|
|
2966
|
+
readonly size?: string | undefined;
|
|
2967
|
+
readonly closeOnCross?: boolean | undefined;
|
|
2968
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
2969
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
2970
|
+
readonly inner?: boolean | undefined;
|
|
2971
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
2972
|
+
readonly confirmColor?: string | undefined;
|
|
2973
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
2974
|
+
readonly cancelHidden?: boolean | undefined;
|
|
2975
|
+
};
|
|
2976
|
+
}, {}, {}, {}, 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 () => {
|
|
2977
|
+
$slots: {
|
|
2978
|
+
"header-left"?(_: {}): any;
|
|
2979
|
+
"before-title"?(_: {}): any;
|
|
2980
|
+
"after-title"?(_: {}): any;
|
|
2981
|
+
"header-right"?(_: {}): any;
|
|
2982
|
+
"close-button"?(_: {
|
|
2983
|
+
iconName: any;
|
|
2984
|
+
}): any;
|
|
2985
|
+
default?(_: {}): any;
|
|
2986
|
+
"footer-left"?(_: {}): any;
|
|
2987
|
+
"footer-right"?(_: {}): any;
|
|
2988
|
+
};
|
|
2989
|
+
});
|
|
2990
|
+
UButton: {
|
|
2991
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2992
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2993
|
+
label: string;
|
|
2994
|
+
id: string;
|
|
2995
|
+
rightIcon: string;
|
|
2996
|
+
leftIcon: string;
|
|
2997
|
+
config: Record<string, any>;
|
|
2998
|
+
dataTest: string;
|
|
2999
|
+
icon: string;
|
|
3000
|
+
color?: string | undefined;
|
|
3001
|
+
disabled?: boolean | undefined;
|
|
3002
|
+
size?: string | undefined;
|
|
3003
|
+
square?: boolean | undefined;
|
|
3004
|
+
filled?: boolean | undefined;
|
|
3005
|
+
variant?: string | undefined;
|
|
3006
|
+
loading?: boolean | undefined;
|
|
3007
|
+
tag?: string | undefined;
|
|
3008
|
+
tabindex?: string | number | undefined;
|
|
3009
|
+
block?: boolean | undefined;
|
|
3010
|
+
round?: boolean | undefined;
|
|
3011
|
+
noRing?: boolean | undefined;
|
|
3012
|
+
$props: {
|
|
3013
|
+
readonly label?: string | undefined;
|
|
3014
|
+
readonly id?: string | undefined;
|
|
3015
|
+
readonly rightIcon?: string | undefined;
|
|
3016
|
+
readonly leftIcon?: string | undefined;
|
|
3017
|
+
readonly config?: Record<string, any> | undefined;
|
|
3018
|
+
readonly dataTest?: string | undefined;
|
|
3019
|
+
readonly icon?: string | undefined;
|
|
3020
|
+
readonly color?: string | undefined;
|
|
3021
|
+
readonly disabled?: boolean | undefined;
|
|
3022
|
+
readonly size?: string | undefined;
|
|
3023
|
+
readonly square?: boolean | undefined;
|
|
3024
|
+
readonly filled?: boolean | undefined;
|
|
3025
|
+
readonly variant?: string | undefined;
|
|
3026
|
+
readonly loading?: boolean | undefined;
|
|
3027
|
+
readonly tag?: string | undefined;
|
|
3028
|
+
readonly tabindex?: string | number | undefined;
|
|
3029
|
+
readonly block?: boolean | undefined;
|
|
3030
|
+
readonly round?: boolean | undefined;
|
|
3031
|
+
readonly noRing?: boolean | undefined;
|
|
3032
|
+
};
|
|
3033
|
+
}, {}, {}, {}, 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, {
|
|
3034
|
+
P: {};
|
|
3035
|
+
B: {};
|
|
3036
|
+
D: {};
|
|
3037
|
+
C: {};
|
|
3038
|
+
M: {};
|
|
3039
|
+
Defaults: {};
|
|
3040
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3041
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3042
|
+
label: string;
|
|
3043
|
+
id: string;
|
|
3044
|
+
rightIcon: string;
|
|
3045
|
+
leftIcon: string;
|
|
3046
|
+
config: Record<string, any>;
|
|
3047
|
+
dataTest: string;
|
|
3048
|
+
icon: string;
|
|
3049
|
+
color?: string | undefined;
|
|
3050
|
+
disabled?: boolean | undefined;
|
|
3051
|
+
size?: string | undefined;
|
|
3052
|
+
square?: boolean | undefined;
|
|
3053
|
+
filled?: boolean | undefined;
|
|
3054
|
+
variant?: string | undefined;
|
|
3055
|
+
loading?: boolean | undefined;
|
|
3056
|
+
tag?: string | undefined;
|
|
3057
|
+
tabindex?: string | number | undefined;
|
|
3058
|
+
block?: boolean | undefined;
|
|
3059
|
+
round?: boolean | undefined;
|
|
3060
|
+
noRing?: boolean | undefined;
|
|
3061
|
+
$props: {
|
|
3062
|
+
readonly label?: string | undefined;
|
|
3063
|
+
readonly id?: string | undefined;
|
|
3064
|
+
readonly rightIcon?: string | undefined;
|
|
3065
|
+
readonly leftIcon?: string | undefined;
|
|
3066
|
+
readonly config?: Record<string, any> | undefined;
|
|
3067
|
+
readonly dataTest?: string | undefined;
|
|
3068
|
+
readonly icon?: string | undefined;
|
|
3069
|
+
readonly color?: string | undefined;
|
|
3070
|
+
readonly disabled?: boolean | undefined;
|
|
3071
|
+
readonly size?: string | undefined;
|
|
3072
|
+
readonly square?: boolean | undefined;
|
|
3073
|
+
readonly filled?: boolean | undefined;
|
|
3074
|
+
readonly variant?: string | undefined;
|
|
3075
|
+
readonly loading?: boolean | undefined;
|
|
3076
|
+
readonly tag?: string | undefined;
|
|
3077
|
+
readonly tabindex?: string | number | undefined;
|
|
3078
|
+
readonly block?: boolean | undefined;
|
|
3079
|
+
readonly round?: boolean | undefined;
|
|
3080
|
+
readonly noRing?: boolean | undefined;
|
|
3081
|
+
};
|
|
3082
|
+
}, {}, {}, {}, {}>;
|
|
3083
|
+
__isFragment?: never;
|
|
3084
|
+
__isTeleport?: never;
|
|
3085
|
+
__isSuspense?: never;
|
|
3086
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3087
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3088
|
+
label: string;
|
|
3089
|
+
id: string;
|
|
3090
|
+
rightIcon: string;
|
|
3091
|
+
leftIcon: string;
|
|
3092
|
+
config: Record<string, any>;
|
|
3093
|
+
dataTest: string;
|
|
3094
|
+
icon: string;
|
|
3095
|
+
color?: string | undefined;
|
|
3096
|
+
disabled?: boolean | undefined;
|
|
3097
|
+
size?: string | undefined;
|
|
3098
|
+
square?: boolean | undefined;
|
|
3099
|
+
filled?: boolean | undefined;
|
|
3100
|
+
variant?: string | undefined;
|
|
3101
|
+
loading?: boolean | undefined;
|
|
3102
|
+
tag?: string | undefined;
|
|
3103
|
+
tabindex?: string | number | undefined;
|
|
3104
|
+
block?: boolean | undefined;
|
|
3105
|
+
round?: boolean | undefined;
|
|
3106
|
+
noRing?: boolean | undefined;
|
|
3107
|
+
$props: {
|
|
3108
|
+
readonly label?: string | undefined;
|
|
3109
|
+
readonly id?: string | undefined;
|
|
3110
|
+
readonly rightIcon?: string | undefined;
|
|
3111
|
+
readonly leftIcon?: string | undefined;
|
|
3112
|
+
readonly config?: Record<string, any> | undefined;
|
|
3113
|
+
readonly dataTest?: string | undefined;
|
|
3114
|
+
readonly icon?: string | undefined;
|
|
3115
|
+
readonly color?: string | undefined;
|
|
3116
|
+
readonly disabled?: boolean | undefined;
|
|
3117
|
+
readonly size?: string | undefined;
|
|
3118
|
+
readonly square?: boolean | undefined;
|
|
3119
|
+
readonly filled?: boolean | undefined;
|
|
3120
|
+
readonly variant?: string | undefined;
|
|
3121
|
+
readonly loading?: boolean | undefined;
|
|
3122
|
+
readonly tag?: string | undefined;
|
|
3123
|
+
readonly tabindex?: string | number | undefined;
|
|
3124
|
+
readonly block?: boolean | undefined;
|
|
3125
|
+
readonly round?: boolean | undefined;
|
|
3126
|
+
readonly noRing?: boolean | undefined;
|
|
3127
|
+
};
|
|
3128
|
+
}, {}, {}, {}, 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 () => {
|
|
3129
|
+
$slots: {
|
|
3130
|
+
left?(_: {
|
|
3131
|
+
iconName: string;
|
|
3132
|
+
iconSize: any;
|
|
3133
|
+
iconColor: string | undefined;
|
|
3134
|
+
}): any;
|
|
3135
|
+
default?(_: {
|
|
3136
|
+
label: string;
|
|
3137
|
+
iconName: string;
|
|
3138
|
+
iconSize: any;
|
|
3139
|
+
iconColor: string | undefined;
|
|
3140
|
+
}): any;
|
|
3141
|
+
right?(_: {
|
|
3142
|
+
iconName: string;
|
|
3143
|
+
iconSize: any;
|
|
3144
|
+
iconColor: string | undefined;
|
|
3145
|
+
}): any;
|
|
3146
|
+
};
|
|
3147
|
+
});
|
|
3148
|
+
UHeader: {
|
|
3149
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3150
|
+
label: string;
|
|
3151
|
+
config: Record<string, any>;
|
|
3152
|
+
dataTest: string;
|
|
3153
|
+
color?: string | undefined;
|
|
3154
|
+
size?: string | undefined;
|
|
3155
|
+
line?: boolean | undefined;
|
|
3156
|
+
tag?: string | undefined;
|
|
3157
|
+
underlined?: boolean | undefined;
|
|
3158
|
+
$props: {
|
|
3159
|
+
readonly label?: string | undefined;
|
|
3160
|
+
readonly config?: Record<string, any> | undefined;
|
|
3161
|
+
readonly dataTest?: string | undefined;
|
|
3162
|
+
readonly color?: string | undefined;
|
|
3163
|
+
readonly size?: string | undefined;
|
|
3164
|
+
readonly line?: boolean | undefined;
|
|
3165
|
+
readonly tag?: string | undefined;
|
|
3166
|
+
readonly underlined?: boolean | undefined;
|
|
3167
|
+
};
|
|
3168
|
+
}, {}, {}, {}, 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, {
|
|
3169
|
+
P: {};
|
|
3170
|
+
B: {};
|
|
3171
|
+
D: {};
|
|
3172
|
+
C: {};
|
|
3173
|
+
M: {};
|
|
3174
|
+
Defaults: {};
|
|
3175
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3176
|
+
label: string;
|
|
3177
|
+
config: Record<string, any>;
|
|
3178
|
+
dataTest: string;
|
|
3179
|
+
color?: string | undefined;
|
|
3180
|
+
size?: string | undefined;
|
|
3181
|
+
line?: boolean | undefined;
|
|
3182
|
+
tag?: string | undefined;
|
|
3183
|
+
underlined?: boolean | undefined;
|
|
3184
|
+
$props: {
|
|
3185
|
+
readonly label?: string | undefined;
|
|
3186
|
+
readonly config?: Record<string, any> | undefined;
|
|
3187
|
+
readonly dataTest?: string | undefined;
|
|
3188
|
+
readonly color?: string | undefined;
|
|
3189
|
+
readonly size?: string | undefined;
|
|
3190
|
+
readonly line?: boolean | undefined;
|
|
3191
|
+
readonly tag?: string | undefined;
|
|
3192
|
+
readonly underlined?: boolean | undefined;
|
|
3193
|
+
};
|
|
3194
|
+
}, {}, {}, {}, {}>;
|
|
3195
|
+
__isFragment?: never;
|
|
3196
|
+
__isTeleport?: never;
|
|
3197
|
+
__isSuspense?: never;
|
|
3198
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3199
|
+
label: string;
|
|
3200
|
+
config: Record<string, any>;
|
|
3201
|
+
dataTest: string;
|
|
3202
|
+
color?: string | undefined;
|
|
3203
|
+
size?: string | undefined;
|
|
3204
|
+
line?: boolean | undefined;
|
|
3205
|
+
tag?: string | undefined;
|
|
3206
|
+
underlined?: boolean | undefined;
|
|
3207
|
+
$props: {
|
|
3208
|
+
readonly label?: string | undefined;
|
|
3209
|
+
readonly config?: Record<string, any> | undefined;
|
|
3210
|
+
readonly dataTest?: string | undefined;
|
|
3211
|
+
readonly color?: string | undefined;
|
|
3212
|
+
readonly size?: string | undefined;
|
|
3213
|
+
readonly line?: boolean | undefined;
|
|
3214
|
+
readonly tag?: string | undefined;
|
|
3215
|
+
readonly underlined?: boolean | undefined;
|
|
3216
|
+
};
|
|
3217
|
+
}, {}, {}, {}, 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 () => {
|
|
3218
|
+
$slots: {
|
|
3219
|
+
default?(_: {}): any;
|
|
3220
|
+
};
|
|
3221
|
+
});
|
|
3222
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
3223
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
3224
|
+
config: Record<string, any>;
|
|
3225
|
+
name: string;
|
|
3226
|
+
src: Record<string, any>;
|
|
3227
|
+
tooltip: string;
|
|
3228
|
+
tooltipSettings: Record<string, any>;
|
|
3229
|
+
dataTest: string;
|
|
3230
|
+
internal: boolean;
|
|
3231
|
+
color?: string | undefined;
|
|
3232
|
+
size?: string | undefined;
|
|
3233
|
+
interactive?: boolean | undefined;
|
|
3234
|
+
variant?: string | undefined;
|
|
3235
|
+
$props: {
|
|
3236
|
+
readonly config?: Record<string, any> | undefined;
|
|
3237
|
+
readonly name?: string | undefined;
|
|
3238
|
+
readonly src?: Record<string, any> | undefined;
|
|
3239
|
+
readonly tooltip?: string | undefined;
|
|
3240
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
3241
|
+
readonly dataTest?: string | undefined;
|
|
3242
|
+
readonly internal?: boolean | undefined;
|
|
3243
|
+
readonly color?: string | undefined;
|
|
3244
|
+
readonly size?: string | undefined;
|
|
3245
|
+
readonly interactive?: boolean | undefined;
|
|
3246
|
+
readonly variant?: string | undefined;
|
|
3247
|
+
};
|
|
3248
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3249
|
+
};
|
|
3250
|
+
setup(): {
|
|
3251
|
+
args: any;
|
|
3252
|
+
slots: any;
|
|
3253
|
+
onClick: () => void;
|
|
3254
|
+
};
|
|
3255
|
+
template: string;
|
|
3256
|
+
};
|
|
3257
|
+
export namespace SlotHeaderLeft {
|
|
3258
|
+
export namespace args_8 {
|
|
3259
|
+
let slotTemplate_2: string;
|
|
3260
|
+
export { slotTemplate_2 as slotTemplate };
|
|
3261
|
+
}
|
|
3262
|
+
export { args_8 as args };
|
|
3263
|
+
}
|
|
3264
|
+
export function SlotHeaderRight(args: any): {
|
|
3265
|
+
components: {
|
|
3266
|
+
UModalConfirm: {
|
|
3267
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3268
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3269
|
+
id: string;
|
|
3270
|
+
description: string;
|
|
3271
|
+
title: string;
|
|
3272
|
+
config: Record<string, any>;
|
|
3273
|
+
dataTest: string;
|
|
3274
|
+
modelValue: boolean;
|
|
3275
|
+
confirmLabel: string;
|
|
3276
|
+
size?: string | undefined;
|
|
3277
|
+
closeOnCross?: boolean | undefined;
|
|
3278
|
+
closeOnOverlay?: boolean | undefined;
|
|
3279
|
+
closeOnEsc?: boolean | undefined;
|
|
3280
|
+
inner?: boolean | undefined;
|
|
3281
|
+
mobileStickBottom?: boolean | undefined;
|
|
3282
|
+
confirmColor?: string | undefined;
|
|
3283
|
+
confirmDisabled?: boolean | undefined;
|
|
3284
|
+
cancelHidden?: boolean | undefined;
|
|
3285
|
+
$props: {
|
|
3286
|
+
readonly id?: string | undefined;
|
|
3287
|
+
readonly description?: string | undefined;
|
|
3288
|
+
readonly title?: string | undefined;
|
|
3289
|
+
readonly config?: Record<string, any> | undefined;
|
|
3290
|
+
readonly dataTest?: string | undefined;
|
|
3291
|
+
readonly modelValue?: boolean | undefined;
|
|
3292
|
+
readonly confirmLabel?: string | undefined;
|
|
3293
|
+
readonly size?: string | undefined;
|
|
3294
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3295
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3296
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3297
|
+
readonly inner?: boolean | undefined;
|
|
3298
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3299
|
+
readonly confirmColor?: string | undefined;
|
|
3300
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3301
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3302
|
+
};
|
|
3303
|
+
}, {}, {}, {}, 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, {
|
|
3304
|
+
P: {};
|
|
3305
|
+
B: {};
|
|
3306
|
+
D: {};
|
|
3307
|
+
C: {};
|
|
3308
|
+
M: {};
|
|
3309
|
+
Defaults: {};
|
|
3310
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3311
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3312
|
+
id: string;
|
|
3313
|
+
description: string;
|
|
3314
|
+
title: string;
|
|
3315
|
+
config: Record<string, any>;
|
|
3316
|
+
dataTest: string;
|
|
3317
|
+
modelValue: boolean;
|
|
3318
|
+
confirmLabel: string;
|
|
3319
|
+
size?: string | undefined;
|
|
3320
|
+
closeOnCross?: boolean | undefined;
|
|
3321
|
+
closeOnOverlay?: boolean | undefined;
|
|
3322
|
+
closeOnEsc?: boolean | undefined;
|
|
3323
|
+
inner?: boolean | undefined;
|
|
3324
|
+
mobileStickBottom?: boolean | undefined;
|
|
3325
|
+
confirmColor?: string | undefined;
|
|
3326
|
+
confirmDisabled?: boolean | undefined;
|
|
3327
|
+
cancelHidden?: boolean | undefined;
|
|
3328
|
+
$props: {
|
|
3329
|
+
readonly id?: string | undefined;
|
|
3330
|
+
readonly description?: string | undefined;
|
|
3331
|
+
readonly title?: string | undefined;
|
|
3332
|
+
readonly config?: Record<string, any> | undefined;
|
|
3333
|
+
readonly dataTest?: string | undefined;
|
|
3334
|
+
readonly modelValue?: boolean | undefined;
|
|
3335
|
+
readonly confirmLabel?: string | undefined;
|
|
3336
|
+
readonly size?: string | undefined;
|
|
3337
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3338
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3339
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3340
|
+
readonly inner?: boolean | undefined;
|
|
3341
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3342
|
+
readonly confirmColor?: string | undefined;
|
|
3343
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3344
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3345
|
+
};
|
|
3346
|
+
}, {}, {}, {}, {}>;
|
|
3347
|
+
__isFragment?: never;
|
|
3348
|
+
__isTeleport?: never;
|
|
3349
|
+
__isSuspense?: never;
|
|
3350
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3351
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3352
|
+
id: string;
|
|
3353
|
+
description: string;
|
|
3354
|
+
title: string;
|
|
3355
|
+
config: Record<string, any>;
|
|
3356
|
+
dataTest: string;
|
|
3357
|
+
modelValue: boolean;
|
|
3358
|
+
confirmLabel: string;
|
|
3359
|
+
size?: string | undefined;
|
|
3360
|
+
closeOnCross?: boolean | undefined;
|
|
3361
|
+
closeOnOverlay?: boolean | undefined;
|
|
3362
|
+
closeOnEsc?: boolean | undefined;
|
|
3363
|
+
inner?: boolean | undefined;
|
|
3364
|
+
mobileStickBottom?: boolean | undefined;
|
|
3365
|
+
confirmColor?: string | undefined;
|
|
3366
|
+
confirmDisabled?: boolean | undefined;
|
|
3367
|
+
cancelHidden?: boolean | undefined;
|
|
3368
|
+
$props: {
|
|
3369
|
+
readonly id?: string | undefined;
|
|
3370
|
+
readonly description?: string | undefined;
|
|
3371
|
+
readonly title?: string | undefined;
|
|
3372
|
+
readonly config?: Record<string, any> | undefined;
|
|
3373
|
+
readonly dataTest?: string | undefined;
|
|
3374
|
+
readonly modelValue?: boolean | undefined;
|
|
3375
|
+
readonly confirmLabel?: string | undefined;
|
|
3376
|
+
readonly size?: string | undefined;
|
|
3377
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3378
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3379
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3380
|
+
readonly inner?: boolean | undefined;
|
|
3381
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3382
|
+
readonly confirmColor?: string | undefined;
|
|
3383
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3384
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3385
|
+
};
|
|
3386
|
+
}, {}, {}, {}, 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 () => {
|
|
3387
|
+
$slots: {
|
|
3388
|
+
"header-left"?(_: {}): any;
|
|
3389
|
+
"before-title"?(_: {}): any;
|
|
3390
|
+
"after-title"?(_: {}): any;
|
|
3391
|
+
"header-right"?(_: {}): any;
|
|
3392
|
+
"close-button"?(_: {
|
|
3393
|
+
iconName: any;
|
|
3394
|
+
}): any;
|
|
3395
|
+
default?(_: {}): any;
|
|
3396
|
+
"footer-left"?(_: {}): any;
|
|
3397
|
+
"footer-right"?(_: {}): any;
|
|
3398
|
+
};
|
|
3399
|
+
});
|
|
3400
|
+
UButton: {
|
|
3401
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3402
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3403
|
+
label: string;
|
|
3404
|
+
id: string;
|
|
3405
|
+
rightIcon: string;
|
|
3406
|
+
leftIcon: string;
|
|
3407
|
+
config: Record<string, any>;
|
|
3408
|
+
dataTest: string;
|
|
3409
|
+
icon: string;
|
|
3410
|
+
color?: string | undefined;
|
|
3411
|
+
disabled?: boolean | undefined;
|
|
3412
|
+
size?: string | undefined;
|
|
3413
|
+
square?: boolean | undefined;
|
|
3414
|
+
filled?: boolean | undefined;
|
|
3415
|
+
variant?: string | undefined;
|
|
3416
|
+
loading?: boolean | undefined;
|
|
3417
|
+
tag?: string | undefined;
|
|
3418
|
+
tabindex?: string | number | undefined;
|
|
3419
|
+
block?: boolean | undefined;
|
|
3420
|
+
round?: boolean | undefined;
|
|
3421
|
+
noRing?: boolean | undefined;
|
|
3422
|
+
$props: {
|
|
3423
|
+
readonly label?: string | undefined;
|
|
3424
|
+
readonly id?: string | undefined;
|
|
3425
|
+
readonly rightIcon?: string | undefined;
|
|
3426
|
+
readonly leftIcon?: string | undefined;
|
|
3427
|
+
readonly config?: Record<string, any> | undefined;
|
|
3428
|
+
readonly dataTest?: string | undefined;
|
|
3429
|
+
readonly icon?: string | undefined;
|
|
3430
|
+
readonly color?: string | undefined;
|
|
3431
|
+
readonly disabled?: boolean | undefined;
|
|
3432
|
+
readonly size?: string | undefined;
|
|
3433
|
+
readonly square?: boolean | undefined;
|
|
3434
|
+
readonly filled?: boolean | undefined;
|
|
3435
|
+
readonly variant?: string | undefined;
|
|
3436
|
+
readonly loading?: boolean | undefined;
|
|
3437
|
+
readonly tag?: string | undefined;
|
|
3438
|
+
readonly tabindex?: string | number | undefined;
|
|
3439
|
+
readonly block?: boolean | undefined;
|
|
3440
|
+
readonly round?: boolean | undefined;
|
|
3441
|
+
readonly noRing?: boolean | undefined;
|
|
3442
|
+
};
|
|
3443
|
+
}, {}, {}, {}, 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, {
|
|
3444
|
+
P: {};
|
|
3445
|
+
B: {};
|
|
3446
|
+
D: {};
|
|
3447
|
+
C: {};
|
|
3448
|
+
M: {};
|
|
3449
|
+
Defaults: {};
|
|
3450
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3451
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3452
|
+
label: string;
|
|
3453
|
+
id: string;
|
|
3454
|
+
rightIcon: string;
|
|
3455
|
+
leftIcon: string;
|
|
3456
|
+
config: Record<string, any>;
|
|
3457
|
+
dataTest: string;
|
|
3458
|
+
icon: string;
|
|
3459
|
+
color?: string | undefined;
|
|
3460
|
+
disabled?: boolean | undefined;
|
|
3461
|
+
size?: string | undefined;
|
|
3462
|
+
square?: boolean | undefined;
|
|
3463
|
+
filled?: boolean | undefined;
|
|
3464
|
+
variant?: string | undefined;
|
|
3465
|
+
loading?: boolean | undefined;
|
|
3466
|
+
tag?: string | undefined;
|
|
3467
|
+
tabindex?: string | number | undefined;
|
|
3468
|
+
block?: boolean | undefined;
|
|
3469
|
+
round?: boolean | undefined;
|
|
3470
|
+
noRing?: boolean | undefined;
|
|
3471
|
+
$props: {
|
|
3472
|
+
readonly label?: string | undefined;
|
|
3473
|
+
readonly id?: string | undefined;
|
|
3474
|
+
readonly rightIcon?: string | undefined;
|
|
3475
|
+
readonly leftIcon?: string | undefined;
|
|
3476
|
+
readonly config?: Record<string, any> | undefined;
|
|
3477
|
+
readonly dataTest?: string | undefined;
|
|
3478
|
+
readonly icon?: string | undefined;
|
|
3479
|
+
readonly color?: string | undefined;
|
|
3480
|
+
readonly disabled?: boolean | undefined;
|
|
3481
|
+
readonly size?: string | undefined;
|
|
3482
|
+
readonly square?: boolean | undefined;
|
|
3483
|
+
readonly filled?: boolean | undefined;
|
|
3484
|
+
readonly variant?: string | undefined;
|
|
3485
|
+
readonly loading?: boolean | undefined;
|
|
3486
|
+
readonly tag?: string | undefined;
|
|
3487
|
+
readonly tabindex?: string | number | undefined;
|
|
3488
|
+
readonly block?: boolean | undefined;
|
|
3489
|
+
readonly round?: boolean | undefined;
|
|
3490
|
+
readonly noRing?: boolean | undefined;
|
|
3491
|
+
};
|
|
3492
|
+
}, {}, {}, {}, {}>;
|
|
3493
|
+
__isFragment?: never;
|
|
3494
|
+
__isTeleport?: never;
|
|
3495
|
+
__isSuspense?: never;
|
|
3496
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3497
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3498
|
+
label: string;
|
|
3499
|
+
id: string;
|
|
3500
|
+
rightIcon: string;
|
|
3501
|
+
leftIcon: string;
|
|
3502
|
+
config: Record<string, any>;
|
|
3503
|
+
dataTest: string;
|
|
3504
|
+
icon: string;
|
|
3505
|
+
color?: string | undefined;
|
|
3506
|
+
disabled?: boolean | undefined;
|
|
3507
|
+
size?: string | undefined;
|
|
3508
|
+
square?: boolean | undefined;
|
|
3509
|
+
filled?: boolean | undefined;
|
|
3510
|
+
variant?: string | undefined;
|
|
3511
|
+
loading?: boolean | undefined;
|
|
3512
|
+
tag?: string | undefined;
|
|
3513
|
+
tabindex?: string | number | undefined;
|
|
3514
|
+
block?: boolean | undefined;
|
|
3515
|
+
round?: boolean | undefined;
|
|
3516
|
+
noRing?: boolean | undefined;
|
|
3517
|
+
$props: {
|
|
3518
|
+
readonly label?: string | undefined;
|
|
3519
|
+
readonly id?: string | undefined;
|
|
3520
|
+
readonly rightIcon?: string | undefined;
|
|
3521
|
+
readonly leftIcon?: string | undefined;
|
|
3522
|
+
readonly config?: Record<string, any> | undefined;
|
|
3523
|
+
readonly dataTest?: string | undefined;
|
|
3524
|
+
readonly icon?: string | undefined;
|
|
3525
|
+
readonly color?: string | undefined;
|
|
3526
|
+
readonly disabled?: boolean | undefined;
|
|
3527
|
+
readonly size?: string | undefined;
|
|
3528
|
+
readonly square?: boolean | undefined;
|
|
3529
|
+
readonly filled?: boolean | undefined;
|
|
3530
|
+
readonly variant?: string | undefined;
|
|
3531
|
+
readonly loading?: boolean | undefined;
|
|
3532
|
+
readonly tag?: string | undefined;
|
|
3533
|
+
readonly tabindex?: string | number | undefined;
|
|
3534
|
+
readonly block?: boolean | undefined;
|
|
3535
|
+
readonly round?: boolean | undefined;
|
|
3536
|
+
readonly noRing?: boolean | undefined;
|
|
3537
|
+
};
|
|
3538
|
+
}, {}, {}, {}, 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 () => {
|
|
3539
|
+
$slots: {
|
|
3540
|
+
left?(_: {
|
|
3541
|
+
iconName: string;
|
|
3542
|
+
iconSize: any;
|
|
3543
|
+
iconColor: string | undefined;
|
|
3544
|
+
}): any;
|
|
3545
|
+
default?(_: {
|
|
3546
|
+
label: string;
|
|
3547
|
+
iconName: string;
|
|
3548
|
+
iconSize: any;
|
|
3549
|
+
iconColor: string | undefined;
|
|
3550
|
+
}): any;
|
|
3551
|
+
right?(_: {
|
|
3552
|
+
iconName: string;
|
|
3553
|
+
iconSize: any;
|
|
3554
|
+
iconColor: string | undefined;
|
|
3555
|
+
}): any;
|
|
3556
|
+
};
|
|
3557
|
+
});
|
|
3558
|
+
UHeader: {
|
|
3559
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3560
|
+
label: string;
|
|
3561
|
+
config: Record<string, any>;
|
|
3562
|
+
dataTest: string;
|
|
3563
|
+
color?: string | undefined;
|
|
3564
|
+
size?: string | undefined;
|
|
3565
|
+
line?: boolean | undefined;
|
|
3566
|
+
tag?: string | undefined;
|
|
3567
|
+
underlined?: boolean | undefined;
|
|
3568
|
+
$props: {
|
|
3569
|
+
readonly label?: string | undefined;
|
|
3570
|
+
readonly config?: Record<string, any> | undefined;
|
|
3571
|
+
readonly dataTest?: string | undefined;
|
|
3572
|
+
readonly color?: string | undefined;
|
|
3573
|
+
readonly size?: string | undefined;
|
|
3574
|
+
readonly line?: boolean | undefined;
|
|
3575
|
+
readonly tag?: string | undefined;
|
|
3576
|
+
readonly underlined?: boolean | undefined;
|
|
3577
|
+
};
|
|
3578
|
+
}, {}, {}, {}, 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, {
|
|
3579
|
+
P: {};
|
|
3580
|
+
B: {};
|
|
3581
|
+
D: {};
|
|
3582
|
+
C: {};
|
|
3583
|
+
M: {};
|
|
3584
|
+
Defaults: {};
|
|
3585
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3586
|
+
label: string;
|
|
3587
|
+
config: Record<string, any>;
|
|
3588
|
+
dataTest: string;
|
|
3589
|
+
color?: string | undefined;
|
|
3590
|
+
size?: string | undefined;
|
|
3591
|
+
line?: boolean | undefined;
|
|
3592
|
+
tag?: string | undefined;
|
|
3593
|
+
underlined?: boolean | undefined;
|
|
3594
|
+
$props: {
|
|
3595
|
+
readonly label?: string | undefined;
|
|
3596
|
+
readonly config?: Record<string, any> | undefined;
|
|
3597
|
+
readonly dataTest?: string | undefined;
|
|
3598
|
+
readonly color?: string | undefined;
|
|
3599
|
+
readonly size?: string | undefined;
|
|
3600
|
+
readonly line?: boolean | undefined;
|
|
3601
|
+
readonly tag?: string | undefined;
|
|
3602
|
+
readonly underlined?: boolean | undefined;
|
|
3603
|
+
};
|
|
3604
|
+
}, {}, {}, {}, {}>;
|
|
3605
|
+
__isFragment?: never;
|
|
3606
|
+
__isTeleport?: never;
|
|
3607
|
+
__isSuspense?: never;
|
|
3608
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3609
|
+
label: string;
|
|
3610
|
+
config: Record<string, any>;
|
|
3611
|
+
dataTest: string;
|
|
3612
|
+
color?: string | undefined;
|
|
3613
|
+
size?: string | undefined;
|
|
3614
|
+
line?: boolean | undefined;
|
|
3615
|
+
tag?: string | undefined;
|
|
3616
|
+
underlined?: boolean | undefined;
|
|
3617
|
+
$props: {
|
|
3618
|
+
readonly label?: string | undefined;
|
|
3619
|
+
readonly config?: Record<string, any> | undefined;
|
|
3620
|
+
readonly dataTest?: string | undefined;
|
|
3621
|
+
readonly color?: string | undefined;
|
|
3622
|
+
readonly size?: string | undefined;
|
|
3623
|
+
readonly line?: boolean | undefined;
|
|
3624
|
+
readonly tag?: string | undefined;
|
|
3625
|
+
readonly underlined?: boolean | undefined;
|
|
3626
|
+
};
|
|
3627
|
+
}, {}, {}, {}, 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 () => {
|
|
3628
|
+
$slots: {
|
|
3629
|
+
default?(_: {}): any;
|
|
3630
|
+
};
|
|
3631
|
+
});
|
|
3632
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
3633
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
3634
|
+
config: Record<string, any>;
|
|
3635
|
+
name: string;
|
|
3636
|
+
src: Record<string, any>;
|
|
3637
|
+
tooltip: string;
|
|
3638
|
+
tooltipSettings: Record<string, any>;
|
|
3639
|
+
dataTest: string;
|
|
3640
|
+
internal: boolean;
|
|
3641
|
+
color?: string | undefined;
|
|
3642
|
+
size?: string | undefined;
|
|
3643
|
+
interactive?: boolean | undefined;
|
|
3644
|
+
variant?: string | undefined;
|
|
3645
|
+
$props: {
|
|
3646
|
+
readonly config?: Record<string, any> | undefined;
|
|
3647
|
+
readonly name?: string | undefined;
|
|
3648
|
+
readonly src?: Record<string, any> | undefined;
|
|
3649
|
+
readonly tooltip?: string | undefined;
|
|
3650
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
3651
|
+
readonly dataTest?: string | undefined;
|
|
3652
|
+
readonly internal?: boolean | undefined;
|
|
3653
|
+
readonly color?: string | undefined;
|
|
3654
|
+
readonly size?: string | undefined;
|
|
3655
|
+
readonly interactive?: boolean | undefined;
|
|
3656
|
+
readonly variant?: string | undefined;
|
|
3657
|
+
};
|
|
3658
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3659
|
+
};
|
|
3660
|
+
setup(): {
|
|
3661
|
+
args: any;
|
|
3662
|
+
slots: any;
|
|
3663
|
+
onClick: () => void;
|
|
3664
|
+
};
|
|
3665
|
+
template: string;
|
|
3666
|
+
};
|
|
3667
|
+
export namespace SlotHeaderRight {
|
|
3668
|
+
export namespace args_9 {
|
|
3669
|
+
let slotTemplate_3: string;
|
|
3670
|
+
export { slotTemplate_3 as slotTemplate };
|
|
3671
|
+
}
|
|
3672
|
+
export { args_9 as args };
|
|
3673
|
+
}
|
|
3674
|
+
export function SlotDefault(args: any): {
|
|
3675
|
+
components: {
|
|
3676
|
+
UModalConfirm: {
|
|
3677
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3678
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3679
|
+
id: string;
|
|
3680
|
+
description: string;
|
|
3681
|
+
title: string;
|
|
3682
|
+
config: Record<string, any>;
|
|
3683
|
+
dataTest: string;
|
|
3684
|
+
modelValue: boolean;
|
|
3685
|
+
confirmLabel: string;
|
|
3686
|
+
size?: string | undefined;
|
|
3687
|
+
closeOnCross?: boolean | undefined;
|
|
3688
|
+
closeOnOverlay?: boolean | undefined;
|
|
3689
|
+
closeOnEsc?: boolean | undefined;
|
|
3690
|
+
inner?: boolean | undefined;
|
|
3691
|
+
mobileStickBottom?: boolean | undefined;
|
|
3692
|
+
confirmColor?: string | undefined;
|
|
3693
|
+
confirmDisabled?: boolean | undefined;
|
|
3694
|
+
cancelHidden?: boolean | undefined;
|
|
3695
|
+
$props: {
|
|
3696
|
+
readonly id?: string | undefined;
|
|
3697
|
+
readonly description?: string | undefined;
|
|
3698
|
+
readonly title?: string | undefined;
|
|
3699
|
+
readonly config?: Record<string, any> | undefined;
|
|
3700
|
+
readonly dataTest?: string | undefined;
|
|
3701
|
+
readonly modelValue?: boolean | undefined;
|
|
3702
|
+
readonly confirmLabel?: string | undefined;
|
|
3703
|
+
readonly size?: string | undefined;
|
|
3704
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3705
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3706
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3707
|
+
readonly inner?: boolean | undefined;
|
|
3708
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3709
|
+
readonly confirmColor?: string | undefined;
|
|
3710
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3711
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3712
|
+
};
|
|
3713
|
+
}, {}, {}, {}, 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, {
|
|
3714
|
+
P: {};
|
|
3715
|
+
B: {};
|
|
3716
|
+
D: {};
|
|
3717
|
+
C: {};
|
|
3718
|
+
M: {};
|
|
3719
|
+
Defaults: {};
|
|
3720
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3721
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3722
|
+
id: string;
|
|
3723
|
+
description: string;
|
|
3724
|
+
title: string;
|
|
3725
|
+
config: Record<string, any>;
|
|
3726
|
+
dataTest: string;
|
|
3727
|
+
modelValue: boolean;
|
|
3728
|
+
confirmLabel: string;
|
|
3729
|
+
size?: string | undefined;
|
|
3730
|
+
closeOnCross?: boolean | undefined;
|
|
3731
|
+
closeOnOverlay?: boolean | undefined;
|
|
3732
|
+
closeOnEsc?: boolean | undefined;
|
|
3733
|
+
inner?: boolean | undefined;
|
|
3734
|
+
mobileStickBottom?: boolean | undefined;
|
|
3735
|
+
confirmColor?: string | undefined;
|
|
3736
|
+
confirmDisabled?: boolean | undefined;
|
|
3737
|
+
cancelHidden?: boolean | undefined;
|
|
3738
|
+
$props: {
|
|
3739
|
+
readonly id?: string | undefined;
|
|
3740
|
+
readonly description?: string | undefined;
|
|
3741
|
+
readonly title?: string | undefined;
|
|
3742
|
+
readonly config?: Record<string, any> | undefined;
|
|
3743
|
+
readonly dataTest?: string | undefined;
|
|
3744
|
+
readonly modelValue?: boolean | undefined;
|
|
3745
|
+
readonly confirmLabel?: string | undefined;
|
|
3746
|
+
readonly size?: string | undefined;
|
|
3747
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3748
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3749
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3750
|
+
readonly inner?: boolean | undefined;
|
|
3751
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3752
|
+
readonly confirmColor?: string | undefined;
|
|
3753
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3754
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3755
|
+
};
|
|
3756
|
+
}, {}, {}, {}, {}>;
|
|
3757
|
+
__isFragment?: never;
|
|
3758
|
+
__isTeleport?: never;
|
|
3759
|
+
__isSuspense?: never;
|
|
3760
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3761
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
3762
|
+
id: string;
|
|
3763
|
+
description: string;
|
|
3764
|
+
title: string;
|
|
3765
|
+
config: Record<string, any>;
|
|
3766
|
+
dataTest: string;
|
|
3767
|
+
modelValue: boolean;
|
|
3768
|
+
confirmLabel: string;
|
|
3769
|
+
size?: string | undefined;
|
|
3770
|
+
closeOnCross?: boolean | undefined;
|
|
3771
|
+
closeOnOverlay?: boolean | undefined;
|
|
3772
|
+
closeOnEsc?: boolean | undefined;
|
|
3773
|
+
inner?: boolean | undefined;
|
|
3774
|
+
mobileStickBottom?: boolean | undefined;
|
|
3775
|
+
confirmColor?: string | undefined;
|
|
3776
|
+
confirmDisabled?: boolean | undefined;
|
|
3777
|
+
cancelHidden?: boolean | undefined;
|
|
3778
|
+
$props: {
|
|
3779
|
+
readonly id?: string | undefined;
|
|
3780
|
+
readonly description?: string | undefined;
|
|
3781
|
+
readonly title?: string | undefined;
|
|
3782
|
+
readonly config?: Record<string, any> | undefined;
|
|
3783
|
+
readonly dataTest?: string | undefined;
|
|
3784
|
+
readonly modelValue?: boolean | undefined;
|
|
3785
|
+
readonly confirmLabel?: string | undefined;
|
|
3786
|
+
readonly size?: string | undefined;
|
|
3787
|
+
readonly closeOnCross?: boolean | undefined;
|
|
3788
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
3789
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
3790
|
+
readonly inner?: boolean | undefined;
|
|
3791
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
3792
|
+
readonly confirmColor?: string | undefined;
|
|
3793
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
3794
|
+
readonly cancelHidden?: boolean | undefined;
|
|
3795
|
+
};
|
|
3796
|
+
}, {}, {}, {}, 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 () => {
|
|
3797
|
+
$slots: {
|
|
3798
|
+
"header-left"?(_: {}): any;
|
|
3799
|
+
"before-title"?(_: {}): any;
|
|
3800
|
+
"after-title"?(_: {}): any;
|
|
3801
|
+
"header-right"?(_: {}): any;
|
|
3802
|
+
"close-button"?(_: {
|
|
3803
|
+
iconName: any;
|
|
3804
|
+
}): any;
|
|
3805
|
+
default?(_: {}): any;
|
|
3806
|
+
"footer-left"?(_: {}): any;
|
|
3807
|
+
"footer-right"?(_: {}): any;
|
|
3808
|
+
};
|
|
3809
|
+
});
|
|
3810
|
+
UButton: {
|
|
3811
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3812
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3813
|
+
label: string;
|
|
3814
|
+
id: string;
|
|
3815
|
+
rightIcon: string;
|
|
3816
|
+
leftIcon: string;
|
|
3817
|
+
config: Record<string, any>;
|
|
3818
|
+
dataTest: string;
|
|
3819
|
+
icon: string;
|
|
3820
|
+
color?: string | undefined;
|
|
3821
|
+
disabled?: boolean | undefined;
|
|
3822
|
+
size?: string | undefined;
|
|
3823
|
+
square?: boolean | undefined;
|
|
3824
|
+
filled?: boolean | undefined;
|
|
3825
|
+
variant?: string | undefined;
|
|
3826
|
+
loading?: boolean | undefined;
|
|
3827
|
+
tag?: string | undefined;
|
|
3828
|
+
tabindex?: string | number | undefined;
|
|
3829
|
+
block?: boolean | undefined;
|
|
3830
|
+
round?: boolean | undefined;
|
|
3831
|
+
noRing?: boolean | undefined;
|
|
3832
|
+
$props: {
|
|
3833
|
+
readonly label?: string | undefined;
|
|
3834
|
+
readonly id?: string | undefined;
|
|
3835
|
+
readonly rightIcon?: string | undefined;
|
|
3836
|
+
readonly leftIcon?: string | undefined;
|
|
3837
|
+
readonly config?: Record<string, any> | undefined;
|
|
3838
|
+
readonly dataTest?: string | undefined;
|
|
3839
|
+
readonly icon?: string | undefined;
|
|
3840
|
+
readonly color?: string | undefined;
|
|
3841
|
+
readonly disabled?: boolean | undefined;
|
|
3842
|
+
readonly size?: string | undefined;
|
|
3843
|
+
readonly square?: boolean | undefined;
|
|
3844
|
+
readonly filled?: boolean | undefined;
|
|
3845
|
+
readonly variant?: string | undefined;
|
|
3846
|
+
readonly loading?: boolean | undefined;
|
|
3847
|
+
readonly tag?: string | undefined;
|
|
3848
|
+
readonly tabindex?: string | number | undefined;
|
|
3849
|
+
readonly block?: boolean | undefined;
|
|
3850
|
+
readonly round?: boolean | undefined;
|
|
3851
|
+
readonly noRing?: boolean | undefined;
|
|
3852
|
+
};
|
|
3853
|
+
}, {}, {}, {}, 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, {
|
|
3854
|
+
P: {};
|
|
3855
|
+
B: {};
|
|
3856
|
+
D: {};
|
|
3857
|
+
C: {};
|
|
3858
|
+
M: {};
|
|
3859
|
+
Defaults: {};
|
|
3860
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3861
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3862
|
+
label: string;
|
|
3863
|
+
id: string;
|
|
3864
|
+
rightIcon: string;
|
|
3865
|
+
leftIcon: string;
|
|
3866
|
+
config: Record<string, any>;
|
|
3867
|
+
dataTest: string;
|
|
3868
|
+
icon: string;
|
|
3869
|
+
color?: string | undefined;
|
|
3870
|
+
disabled?: boolean | undefined;
|
|
3871
|
+
size?: string | undefined;
|
|
3872
|
+
square?: boolean | undefined;
|
|
3873
|
+
filled?: boolean | undefined;
|
|
3874
|
+
variant?: string | undefined;
|
|
3875
|
+
loading?: boolean | undefined;
|
|
3876
|
+
tag?: string | undefined;
|
|
3877
|
+
tabindex?: string | number | undefined;
|
|
3878
|
+
block?: boolean | undefined;
|
|
3879
|
+
round?: boolean | undefined;
|
|
3880
|
+
noRing?: boolean | undefined;
|
|
3881
|
+
$props: {
|
|
3882
|
+
readonly label?: string | undefined;
|
|
3883
|
+
readonly id?: string | undefined;
|
|
3884
|
+
readonly rightIcon?: string | undefined;
|
|
3885
|
+
readonly leftIcon?: string | undefined;
|
|
3886
|
+
readonly config?: Record<string, any> | undefined;
|
|
3887
|
+
readonly dataTest?: string | undefined;
|
|
3888
|
+
readonly icon?: string | undefined;
|
|
3889
|
+
readonly color?: string | undefined;
|
|
3890
|
+
readonly disabled?: boolean | undefined;
|
|
3891
|
+
readonly size?: string | undefined;
|
|
3892
|
+
readonly square?: boolean | undefined;
|
|
3893
|
+
readonly filled?: boolean | undefined;
|
|
3894
|
+
readonly variant?: string | undefined;
|
|
3895
|
+
readonly loading?: boolean | undefined;
|
|
3896
|
+
readonly tag?: string | undefined;
|
|
3897
|
+
readonly tabindex?: string | number | undefined;
|
|
3898
|
+
readonly block?: boolean | undefined;
|
|
3899
|
+
readonly round?: boolean | undefined;
|
|
3900
|
+
readonly noRing?: boolean | undefined;
|
|
3901
|
+
};
|
|
3902
|
+
}, {}, {}, {}, {}>;
|
|
3903
|
+
__isFragment?: never;
|
|
3904
|
+
__isTeleport?: never;
|
|
3905
|
+
__isSuspense?: never;
|
|
3906
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
3907
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
3908
|
+
label: string;
|
|
3909
|
+
id: string;
|
|
3910
|
+
rightIcon: string;
|
|
3911
|
+
leftIcon: string;
|
|
3912
|
+
config: Record<string, any>;
|
|
3913
|
+
dataTest: string;
|
|
3914
|
+
icon: string;
|
|
3915
|
+
color?: string | undefined;
|
|
3916
|
+
disabled?: boolean | undefined;
|
|
3917
|
+
size?: string | undefined;
|
|
3918
|
+
square?: boolean | undefined;
|
|
3919
|
+
filled?: boolean | undefined;
|
|
3920
|
+
variant?: string | undefined;
|
|
3921
|
+
loading?: boolean | undefined;
|
|
3922
|
+
tag?: string | undefined;
|
|
3923
|
+
tabindex?: string | number | undefined;
|
|
3924
|
+
block?: boolean | undefined;
|
|
3925
|
+
round?: boolean | undefined;
|
|
3926
|
+
noRing?: boolean | undefined;
|
|
3927
|
+
$props: {
|
|
3928
|
+
readonly label?: string | undefined;
|
|
3929
|
+
readonly id?: string | undefined;
|
|
3930
|
+
readonly rightIcon?: string | undefined;
|
|
3931
|
+
readonly leftIcon?: string | undefined;
|
|
3932
|
+
readonly config?: Record<string, any> | undefined;
|
|
3933
|
+
readonly dataTest?: string | undefined;
|
|
3934
|
+
readonly icon?: string | undefined;
|
|
3935
|
+
readonly color?: string | undefined;
|
|
3936
|
+
readonly disabled?: boolean | undefined;
|
|
3937
|
+
readonly size?: string | undefined;
|
|
3938
|
+
readonly square?: boolean | undefined;
|
|
3939
|
+
readonly filled?: boolean | undefined;
|
|
3940
|
+
readonly variant?: string | undefined;
|
|
3941
|
+
readonly loading?: boolean | undefined;
|
|
3942
|
+
readonly tag?: string | undefined;
|
|
3943
|
+
readonly tabindex?: string | number | undefined;
|
|
3944
|
+
readonly block?: boolean | undefined;
|
|
3945
|
+
readonly round?: boolean | undefined;
|
|
3946
|
+
readonly noRing?: boolean | undefined;
|
|
3947
|
+
};
|
|
3948
|
+
}, {}, {}, {}, 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 () => {
|
|
3949
|
+
$slots: {
|
|
3950
|
+
left?(_: {
|
|
3951
|
+
iconName: string;
|
|
3952
|
+
iconSize: any;
|
|
3953
|
+
iconColor: string | undefined;
|
|
3954
|
+
}): any;
|
|
3955
|
+
default?(_: {
|
|
3956
|
+
label: string;
|
|
3957
|
+
iconName: string;
|
|
3958
|
+
iconSize: any;
|
|
3959
|
+
iconColor: string | undefined;
|
|
3960
|
+
}): any;
|
|
3961
|
+
right?(_: {
|
|
3962
|
+
iconName: string;
|
|
3963
|
+
iconSize: any;
|
|
3964
|
+
iconColor: string | undefined;
|
|
3965
|
+
}): any;
|
|
3966
|
+
};
|
|
3967
|
+
});
|
|
3968
|
+
UHeader: {
|
|
3969
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
3970
|
+
label: string;
|
|
3971
|
+
config: Record<string, any>;
|
|
3972
|
+
dataTest: string;
|
|
3973
|
+
color?: string | undefined;
|
|
3974
|
+
size?: string | undefined;
|
|
3975
|
+
line?: boolean | undefined;
|
|
3976
|
+
tag?: string | undefined;
|
|
3977
|
+
underlined?: boolean | undefined;
|
|
3978
|
+
$props: {
|
|
3979
|
+
readonly label?: string | undefined;
|
|
3980
|
+
readonly config?: Record<string, any> | undefined;
|
|
3981
|
+
readonly dataTest?: string | undefined;
|
|
3982
|
+
readonly color?: string | undefined;
|
|
3983
|
+
readonly size?: string | undefined;
|
|
3984
|
+
readonly line?: boolean | undefined;
|
|
3985
|
+
readonly tag?: string | undefined;
|
|
3986
|
+
readonly underlined?: boolean | undefined;
|
|
3987
|
+
};
|
|
3988
|
+
}, {}, {}, {}, 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, {
|
|
3989
|
+
P: {};
|
|
3990
|
+
B: {};
|
|
3991
|
+
D: {};
|
|
3992
|
+
C: {};
|
|
3993
|
+
M: {};
|
|
3994
|
+
Defaults: {};
|
|
3995
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
3996
|
+
label: string;
|
|
3997
|
+
config: Record<string, any>;
|
|
3998
|
+
dataTest: string;
|
|
3999
|
+
color?: string | undefined;
|
|
4000
|
+
size?: string | undefined;
|
|
4001
|
+
line?: boolean | undefined;
|
|
4002
|
+
tag?: string | undefined;
|
|
4003
|
+
underlined?: boolean | undefined;
|
|
4004
|
+
$props: {
|
|
4005
|
+
readonly label?: string | undefined;
|
|
4006
|
+
readonly config?: Record<string, any> | undefined;
|
|
4007
|
+
readonly dataTest?: string | undefined;
|
|
4008
|
+
readonly color?: string | undefined;
|
|
4009
|
+
readonly size?: string | undefined;
|
|
4010
|
+
readonly line?: boolean | undefined;
|
|
4011
|
+
readonly tag?: string | undefined;
|
|
4012
|
+
readonly underlined?: boolean | undefined;
|
|
4013
|
+
};
|
|
4014
|
+
}, {}, {}, {}, {}>;
|
|
4015
|
+
__isFragment?: never;
|
|
4016
|
+
__isTeleport?: never;
|
|
4017
|
+
__isSuspense?: never;
|
|
4018
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
4019
|
+
label: string;
|
|
4020
|
+
config: Record<string, any>;
|
|
4021
|
+
dataTest: string;
|
|
4022
|
+
color?: string | undefined;
|
|
4023
|
+
size?: string | undefined;
|
|
4024
|
+
line?: boolean | undefined;
|
|
4025
|
+
tag?: string | undefined;
|
|
4026
|
+
underlined?: boolean | undefined;
|
|
4027
|
+
$props: {
|
|
4028
|
+
readonly label?: string | undefined;
|
|
4029
|
+
readonly config?: Record<string, any> | undefined;
|
|
4030
|
+
readonly dataTest?: string | undefined;
|
|
4031
|
+
readonly color?: string | undefined;
|
|
4032
|
+
readonly size?: string | undefined;
|
|
4033
|
+
readonly line?: boolean | undefined;
|
|
4034
|
+
readonly tag?: string | undefined;
|
|
4035
|
+
readonly underlined?: boolean | undefined;
|
|
4036
|
+
};
|
|
4037
|
+
}, {}, {}, {}, 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 () => {
|
|
4038
|
+
$slots: {
|
|
4039
|
+
default?(_: {}): any;
|
|
4040
|
+
};
|
|
4041
|
+
});
|
|
4042
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
4043
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
4044
|
+
config: Record<string, any>;
|
|
4045
|
+
name: string;
|
|
4046
|
+
src: Record<string, any>;
|
|
4047
|
+
tooltip: string;
|
|
4048
|
+
tooltipSettings: Record<string, any>;
|
|
4049
|
+
dataTest: string;
|
|
4050
|
+
internal: boolean;
|
|
4051
|
+
color?: string | undefined;
|
|
4052
|
+
size?: string | undefined;
|
|
4053
|
+
interactive?: boolean | undefined;
|
|
4054
|
+
variant?: string | undefined;
|
|
4055
|
+
$props: {
|
|
4056
|
+
readonly config?: Record<string, any> | undefined;
|
|
4057
|
+
readonly name?: string | undefined;
|
|
4058
|
+
readonly src?: Record<string, any> | undefined;
|
|
4059
|
+
readonly tooltip?: string | undefined;
|
|
4060
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
4061
|
+
readonly dataTest?: string | undefined;
|
|
4062
|
+
readonly internal?: boolean | undefined;
|
|
4063
|
+
readonly color?: string | undefined;
|
|
4064
|
+
readonly size?: string | undefined;
|
|
4065
|
+
readonly interactive?: boolean | undefined;
|
|
4066
|
+
readonly variant?: string | undefined;
|
|
4067
|
+
};
|
|
4068
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4069
|
+
};
|
|
4070
|
+
setup(): {
|
|
4071
|
+
args: any;
|
|
4072
|
+
slots: any;
|
|
4073
|
+
onClick: () => void;
|
|
4074
|
+
};
|
|
4075
|
+
template: string;
|
|
4076
|
+
};
|
|
4077
|
+
export namespace SlotDefault {
|
|
4078
|
+
export namespace args_10 {
|
|
4079
|
+
let slotTemplate_4: string;
|
|
4080
|
+
export { slotTemplate_4 as slotTemplate };
|
|
4081
|
+
}
|
|
4082
|
+
export { args_10 as args };
|
|
4083
|
+
}
|
|
4084
|
+
export function SlotFooterRight(args: any): {
|
|
4085
|
+
components: {
|
|
4086
|
+
UModalConfirm: {
|
|
4087
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
4088
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
4089
|
+
id: string;
|
|
4090
|
+
description: string;
|
|
4091
|
+
title: string;
|
|
4092
|
+
config: Record<string, any>;
|
|
4093
|
+
dataTest: string;
|
|
4094
|
+
modelValue: boolean;
|
|
4095
|
+
confirmLabel: string;
|
|
4096
|
+
size?: string | undefined;
|
|
4097
|
+
closeOnCross?: boolean | undefined;
|
|
4098
|
+
closeOnOverlay?: boolean | undefined;
|
|
4099
|
+
closeOnEsc?: boolean | undefined;
|
|
4100
|
+
inner?: boolean | undefined;
|
|
4101
|
+
mobileStickBottom?: boolean | undefined;
|
|
4102
|
+
confirmColor?: string | undefined;
|
|
4103
|
+
confirmDisabled?: boolean | undefined;
|
|
4104
|
+
cancelHidden?: boolean | undefined;
|
|
4105
|
+
$props: {
|
|
4106
|
+
readonly id?: string | undefined;
|
|
4107
|
+
readonly description?: string | undefined;
|
|
4108
|
+
readonly title?: string | undefined;
|
|
4109
|
+
readonly config?: Record<string, any> | undefined;
|
|
4110
|
+
readonly dataTest?: string | undefined;
|
|
4111
|
+
readonly modelValue?: boolean | undefined;
|
|
4112
|
+
readonly confirmLabel?: string | undefined;
|
|
4113
|
+
readonly size?: string | undefined;
|
|
4114
|
+
readonly closeOnCross?: boolean | undefined;
|
|
4115
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
4116
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
4117
|
+
readonly inner?: boolean | undefined;
|
|
4118
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
4119
|
+
readonly confirmColor?: string | undefined;
|
|
4120
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
4121
|
+
readonly cancelHidden?: boolean | undefined;
|
|
4122
|
+
};
|
|
4123
|
+
}, {}, {}, {}, 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, {
|
|
4124
|
+
P: {};
|
|
4125
|
+
B: {};
|
|
4126
|
+
D: {};
|
|
4127
|
+
C: {};
|
|
4128
|
+
M: {};
|
|
4129
|
+
Defaults: {};
|
|
4130
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
4131
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
4132
|
+
id: string;
|
|
4133
|
+
description: string;
|
|
4134
|
+
title: string;
|
|
4135
|
+
config: Record<string, any>;
|
|
4136
|
+
dataTest: string;
|
|
4137
|
+
modelValue: boolean;
|
|
4138
|
+
confirmLabel: string;
|
|
4139
|
+
size?: string | undefined;
|
|
4140
|
+
closeOnCross?: boolean | undefined;
|
|
4141
|
+
closeOnOverlay?: boolean | undefined;
|
|
4142
|
+
closeOnEsc?: boolean | undefined;
|
|
4143
|
+
inner?: boolean | undefined;
|
|
4144
|
+
mobileStickBottom?: boolean | undefined;
|
|
4145
|
+
confirmColor?: string | undefined;
|
|
4146
|
+
confirmDisabled?: boolean | undefined;
|
|
4147
|
+
cancelHidden?: boolean | undefined;
|
|
4148
|
+
$props: {
|
|
4149
|
+
readonly id?: string | undefined;
|
|
4150
|
+
readonly description?: string | undefined;
|
|
4151
|
+
readonly title?: string | undefined;
|
|
4152
|
+
readonly config?: Record<string, any> | undefined;
|
|
4153
|
+
readonly dataTest?: string | undefined;
|
|
4154
|
+
readonly modelValue?: boolean | undefined;
|
|
4155
|
+
readonly confirmLabel?: string | undefined;
|
|
4156
|
+
readonly size?: string | undefined;
|
|
4157
|
+
readonly closeOnCross?: boolean | undefined;
|
|
4158
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
4159
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
4160
|
+
readonly inner?: boolean | undefined;
|
|
4161
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
4162
|
+
readonly confirmColor?: string | undefined;
|
|
4163
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
4164
|
+
readonly cancelHidden?: boolean | undefined;
|
|
4165
|
+
};
|
|
4166
|
+
}, {}, {}, {}, {}>;
|
|
4167
|
+
__isFragment?: never;
|
|
4168
|
+
__isTeleport?: never;
|
|
4169
|
+
__isSuspense?: never;
|
|
4170
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
4171
|
+
$emit: (event: "close" | "update:modelValue" | "confirm", ...args: any[]) => void;
|
|
4172
|
+
id: string;
|
|
4173
|
+
description: string;
|
|
4174
|
+
title: string;
|
|
4175
|
+
config: Record<string, any>;
|
|
4176
|
+
dataTest: string;
|
|
4177
|
+
modelValue: boolean;
|
|
4178
|
+
confirmLabel: string;
|
|
4179
|
+
size?: string | undefined;
|
|
4180
|
+
closeOnCross?: boolean | undefined;
|
|
4181
|
+
closeOnOverlay?: boolean | undefined;
|
|
4182
|
+
closeOnEsc?: boolean | undefined;
|
|
4183
|
+
inner?: boolean | undefined;
|
|
4184
|
+
mobileStickBottom?: boolean | undefined;
|
|
4185
|
+
confirmColor?: string | undefined;
|
|
4186
|
+
confirmDisabled?: boolean | undefined;
|
|
4187
|
+
cancelHidden?: boolean | undefined;
|
|
4188
|
+
$props: {
|
|
4189
|
+
readonly id?: string | undefined;
|
|
4190
|
+
readonly description?: string | undefined;
|
|
4191
|
+
readonly title?: string | undefined;
|
|
4192
|
+
readonly config?: Record<string, any> | undefined;
|
|
4193
|
+
readonly dataTest?: string | undefined;
|
|
4194
|
+
readonly modelValue?: boolean | undefined;
|
|
4195
|
+
readonly confirmLabel?: string | undefined;
|
|
4196
|
+
readonly size?: string | undefined;
|
|
4197
|
+
readonly closeOnCross?: boolean | undefined;
|
|
4198
|
+
readonly closeOnOverlay?: boolean | undefined;
|
|
4199
|
+
readonly closeOnEsc?: boolean | undefined;
|
|
4200
|
+
readonly inner?: boolean | undefined;
|
|
4201
|
+
readonly mobileStickBottom?: boolean | undefined;
|
|
4202
|
+
readonly confirmColor?: string | undefined;
|
|
4203
|
+
readonly confirmDisabled?: boolean | undefined;
|
|
4204
|
+
readonly cancelHidden?: boolean | undefined;
|
|
4205
|
+
};
|
|
4206
|
+
}, {}, {}, {}, 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 () => {
|
|
4207
|
+
$slots: {
|
|
4208
|
+
"header-left"?(_: {}): any;
|
|
4209
|
+
"before-title"?(_: {}): any;
|
|
4210
|
+
"after-title"?(_: {}): any;
|
|
4211
|
+
"header-right"?(_: {}): any;
|
|
4212
|
+
"close-button"?(_: {
|
|
4213
|
+
iconName: any;
|
|
4214
|
+
}): any;
|
|
4215
|
+
default?(_: {}): any;
|
|
4216
|
+
"footer-left"?(_: {}): any;
|
|
4217
|
+
"footer-right"?(_: {}): any;
|
|
4218
|
+
};
|
|
4219
|
+
});
|
|
4220
|
+
UButton: {
|
|
4221
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
4222
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
4223
|
+
label: string;
|
|
4224
|
+
id: string;
|
|
4225
|
+
rightIcon: string;
|
|
4226
|
+
leftIcon: string;
|
|
4227
|
+
config: Record<string, any>;
|
|
4228
|
+
dataTest: string;
|
|
4229
|
+
icon: string;
|
|
4230
|
+
color?: string | undefined;
|
|
4231
|
+
disabled?: boolean | undefined;
|
|
4232
|
+
size?: string | undefined;
|
|
4233
|
+
square?: boolean | undefined;
|
|
4234
|
+
filled?: boolean | undefined;
|
|
4235
|
+
variant?: string | undefined;
|
|
4236
|
+
loading?: boolean | undefined;
|
|
4237
|
+
tag?: string | undefined;
|
|
4238
|
+
tabindex?: string | number | undefined;
|
|
4239
|
+
block?: boolean | undefined;
|
|
4240
|
+
round?: boolean | undefined;
|
|
4241
|
+
noRing?: boolean | undefined;
|
|
4242
|
+
$props: {
|
|
4243
|
+
readonly label?: string | undefined;
|
|
4244
|
+
readonly id?: string | undefined;
|
|
4245
|
+
readonly rightIcon?: string | undefined;
|
|
4246
|
+
readonly leftIcon?: string | undefined;
|
|
4247
|
+
readonly config?: Record<string, any> | undefined;
|
|
4248
|
+
readonly dataTest?: string | undefined;
|
|
4249
|
+
readonly icon?: string | undefined;
|
|
4250
|
+
readonly color?: string | undefined;
|
|
4251
|
+
readonly disabled?: boolean | undefined;
|
|
4252
|
+
readonly size?: string | undefined;
|
|
4253
|
+
readonly square?: boolean | undefined;
|
|
4254
|
+
readonly filled?: boolean | undefined;
|
|
4255
|
+
readonly variant?: string | undefined;
|
|
4256
|
+
readonly loading?: boolean | undefined;
|
|
4257
|
+
readonly tag?: string | undefined;
|
|
4258
|
+
readonly tabindex?: string | number | undefined;
|
|
4259
|
+
readonly block?: boolean | undefined;
|
|
4260
|
+
readonly round?: boolean | undefined;
|
|
4261
|
+
readonly noRing?: boolean | undefined;
|
|
4262
|
+
};
|
|
4263
|
+
}, {}, {}, {}, 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, {
|
|
4264
|
+
P: {};
|
|
4265
|
+
B: {};
|
|
4266
|
+
D: {};
|
|
4267
|
+
C: {};
|
|
4268
|
+
M: {};
|
|
4269
|
+
Defaults: {};
|
|
4270
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
4271
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
4272
|
+
label: string;
|
|
4273
|
+
id: string;
|
|
4274
|
+
rightIcon: string;
|
|
4275
|
+
leftIcon: string;
|
|
4276
|
+
config: Record<string, any>;
|
|
4277
|
+
dataTest: string;
|
|
4278
|
+
icon: string;
|
|
4279
|
+
color?: string | undefined;
|
|
4280
|
+
disabled?: boolean | undefined;
|
|
4281
|
+
size?: string | undefined;
|
|
4282
|
+
square?: boolean | undefined;
|
|
4283
|
+
filled?: boolean | undefined;
|
|
4284
|
+
variant?: string | undefined;
|
|
4285
|
+
loading?: boolean | undefined;
|
|
4286
|
+
tag?: string | undefined;
|
|
4287
|
+
tabindex?: string | number | undefined;
|
|
4288
|
+
block?: boolean | undefined;
|
|
4289
|
+
round?: boolean | undefined;
|
|
4290
|
+
noRing?: boolean | undefined;
|
|
4291
|
+
$props: {
|
|
4292
|
+
readonly label?: string | undefined;
|
|
4293
|
+
readonly id?: string | undefined;
|
|
4294
|
+
readonly rightIcon?: string | undefined;
|
|
4295
|
+
readonly leftIcon?: string | undefined;
|
|
4296
|
+
readonly config?: Record<string, any> | undefined;
|
|
4297
|
+
readonly dataTest?: string | undefined;
|
|
4298
|
+
readonly icon?: string | undefined;
|
|
4299
|
+
readonly color?: string | undefined;
|
|
4300
|
+
readonly disabled?: boolean | undefined;
|
|
4301
|
+
readonly size?: string | undefined;
|
|
4302
|
+
readonly square?: boolean | undefined;
|
|
4303
|
+
readonly filled?: boolean | undefined;
|
|
4304
|
+
readonly variant?: string | undefined;
|
|
4305
|
+
readonly loading?: boolean | undefined;
|
|
4306
|
+
readonly tag?: string | undefined;
|
|
4307
|
+
readonly tabindex?: string | number | undefined;
|
|
4308
|
+
readonly block?: boolean | undefined;
|
|
4309
|
+
readonly round?: boolean | undefined;
|
|
4310
|
+
readonly noRing?: boolean | undefined;
|
|
4311
|
+
};
|
|
4312
|
+
}, {}, {}, {}, {}>;
|
|
4313
|
+
__isFragment?: never;
|
|
4314
|
+
__isTeleport?: never;
|
|
4315
|
+
__isSuspense?: never;
|
|
4316
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
4317
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
4318
|
+
label: string;
|
|
4319
|
+
id: string;
|
|
4320
|
+
rightIcon: string;
|
|
4321
|
+
leftIcon: string;
|
|
4322
|
+
config: Record<string, any>;
|
|
4323
|
+
dataTest: string;
|
|
4324
|
+
icon: string;
|
|
4325
|
+
color?: string | undefined;
|
|
4326
|
+
disabled?: boolean | undefined;
|
|
4327
|
+
size?: string | undefined;
|
|
4328
|
+
square?: boolean | undefined;
|
|
4329
|
+
filled?: boolean | undefined;
|
|
4330
|
+
variant?: string | undefined;
|
|
4331
|
+
loading?: boolean | undefined;
|
|
4332
|
+
tag?: string | undefined;
|
|
4333
|
+
tabindex?: string | number | undefined;
|
|
4334
|
+
block?: boolean | undefined;
|
|
4335
|
+
round?: boolean | undefined;
|
|
4336
|
+
noRing?: boolean | undefined;
|
|
4337
|
+
$props: {
|
|
4338
|
+
readonly label?: string | undefined;
|
|
4339
|
+
readonly id?: string | undefined;
|
|
4340
|
+
readonly rightIcon?: string | undefined;
|
|
4341
|
+
readonly leftIcon?: string | undefined;
|
|
4342
|
+
readonly config?: Record<string, any> | undefined;
|
|
4343
|
+
readonly dataTest?: string | undefined;
|
|
4344
|
+
readonly icon?: string | undefined;
|
|
4345
|
+
readonly color?: string | undefined;
|
|
4346
|
+
readonly disabled?: boolean | undefined;
|
|
4347
|
+
readonly size?: string | undefined;
|
|
4348
|
+
readonly square?: boolean | undefined;
|
|
4349
|
+
readonly filled?: boolean | undefined;
|
|
4350
|
+
readonly variant?: string | undefined;
|
|
4351
|
+
readonly loading?: boolean | undefined;
|
|
4352
|
+
readonly tag?: string | undefined;
|
|
4353
|
+
readonly tabindex?: string | number | undefined;
|
|
4354
|
+
readonly block?: boolean | undefined;
|
|
4355
|
+
readonly round?: boolean | undefined;
|
|
4356
|
+
readonly noRing?: boolean | undefined;
|
|
4357
|
+
};
|
|
4358
|
+
}, {}, {}, {}, 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 () => {
|
|
4359
|
+
$slots: {
|
|
4360
|
+
left?(_: {
|
|
4361
|
+
iconName: string;
|
|
4362
|
+
iconSize: any;
|
|
4363
|
+
iconColor: string | undefined;
|
|
4364
|
+
}): any;
|
|
4365
|
+
default?(_: {
|
|
4366
|
+
label: string;
|
|
4367
|
+
iconName: string;
|
|
4368
|
+
iconSize: any;
|
|
4369
|
+
iconColor: string | undefined;
|
|
4370
|
+
}): any;
|
|
4371
|
+
right?(_: {
|
|
4372
|
+
iconName: string;
|
|
4373
|
+
iconSize: any;
|
|
4374
|
+
iconColor: string | undefined;
|
|
4375
|
+
}): any;
|
|
4376
|
+
};
|
|
4377
|
+
});
|
|
4378
|
+
UHeader: {
|
|
4379
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
4380
|
+
label: string;
|
|
4381
|
+
config: Record<string, any>;
|
|
4382
|
+
dataTest: string;
|
|
4383
|
+
color?: string | undefined;
|
|
4384
|
+
size?: string | undefined;
|
|
4385
|
+
line?: boolean | undefined;
|
|
4386
|
+
tag?: string | undefined;
|
|
4387
|
+
underlined?: boolean | undefined;
|
|
4388
|
+
$props: {
|
|
4389
|
+
readonly label?: string | undefined;
|
|
4390
|
+
readonly config?: Record<string, any> | undefined;
|
|
4391
|
+
readonly dataTest?: string | undefined;
|
|
4392
|
+
readonly color?: string | undefined;
|
|
4393
|
+
readonly size?: string | undefined;
|
|
4394
|
+
readonly line?: boolean | undefined;
|
|
4395
|
+
readonly tag?: string | undefined;
|
|
4396
|
+
readonly underlined?: boolean | undefined;
|
|
4397
|
+
};
|
|
4398
|
+
}, {}, {}, {}, 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, {
|
|
4399
|
+
P: {};
|
|
4400
|
+
B: {};
|
|
4401
|
+
D: {};
|
|
4402
|
+
C: {};
|
|
4403
|
+
M: {};
|
|
4404
|
+
Defaults: {};
|
|
4405
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
4406
|
+
label: string;
|
|
4407
|
+
config: Record<string, any>;
|
|
4408
|
+
dataTest: string;
|
|
4409
|
+
color?: string | undefined;
|
|
4410
|
+
size?: string | undefined;
|
|
4411
|
+
line?: boolean | undefined;
|
|
4412
|
+
tag?: string | undefined;
|
|
4413
|
+
underlined?: boolean | undefined;
|
|
4414
|
+
$props: {
|
|
4415
|
+
readonly label?: string | undefined;
|
|
4416
|
+
readonly config?: Record<string, any> | undefined;
|
|
4417
|
+
readonly dataTest?: string | undefined;
|
|
4418
|
+
readonly color?: string | undefined;
|
|
4419
|
+
readonly size?: string | undefined;
|
|
4420
|
+
readonly line?: boolean | undefined;
|
|
4421
|
+
readonly tag?: string | undefined;
|
|
4422
|
+
readonly underlined?: boolean | undefined;
|
|
4423
|
+
};
|
|
4424
|
+
}, {}, {}, {}, {}>;
|
|
4425
|
+
__isFragment?: never;
|
|
4426
|
+
__isTeleport?: never;
|
|
4427
|
+
__isSuspense?: never;
|
|
4428
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
4429
|
+
label: string;
|
|
4430
|
+
config: Record<string, any>;
|
|
4431
|
+
dataTest: string;
|
|
4432
|
+
color?: string | undefined;
|
|
4433
|
+
size?: string | undefined;
|
|
4434
|
+
line?: boolean | undefined;
|
|
4435
|
+
tag?: string | undefined;
|
|
4436
|
+
underlined?: boolean | undefined;
|
|
4437
|
+
$props: {
|
|
4438
|
+
readonly label?: string | undefined;
|
|
4439
|
+
readonly config?: Record<string, any> | undefined;
|
|
4440
|
+
readonly dataTest?: string | undefined;
|
|
4441
|
+
readonly color?: string | undefined;
|
|
4442
|
+
readonly size?: string | undefined;
|
|
4443
|
+
readonly line?: boolean | undefined;
|
|
4444
|
+
readonly tag?: string | undefined;
|
|
4445
|
+
readonly underlined?: boolean | undefined;
|
|
4446
|
+
};
|
|
4447
|
+
}, {}, {}, {}, 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 () => {
|
|
4448
|
+
$slots: {
|
|
4449
|
+
default?(_: {}): any;
|
|
4450
|
+
};
|
|
4451
|
+
});
|
|
4452
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
4453
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
4454
|
+
config: Record<string, any>;
|
|
4455
|
+
name: string;
|
|
4456
|
+
src: Record<string, any>;
|
|
4457
|
+
tooltip: string;
|
|
4458
|
+
tooltipSettings: Record<string, any>;
|
|
4459
|
+
dataTest: string;
|
|
4460
|
+
internal: boolean;
|
|
4461
|
+
color?: string | undefined;
|
|
4462
|
+
size?: string | undefined;
|
|
4463
|
+
interactive?: boolean | undefined;
|
|
4464
|
+
variant?: string | undefined;
|
|
4465
|
+
$props: {
|
|
4466
|
+
readonly config?: Record<string, any> | undefined;
|
|
4467
|
+
readonly name?: string | undefined;
|
|
4468
|
+
readonly src?: Record<string, any> | undefined;
|
|
4469
|
+
readonly tooltip?: string | undefined;
|
|
4470
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
4471
|
+
readonly dataTest?: string | undefined;
|
|
4472
|
+
readonly internal?: boolean | undefined;
|
|
4473
|
+
readonly color?: string | undefined;
|
|
4474
|
+
readonly size?: string | undefined;
|
|
4475
|
+
readonly interactive?: boolean | undefined;
|
|
4476
|
+
readonly variant?: string | undefined;
|
|
4477
|
+
};
|
|
4478
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4479
|
+
};
|
|
4480
|
+
setup(): {
|
|
4481
|
+
args: any;
|
|
4482
|
+
slots: any;
|
|
4483
|
+
onClick: () => void;
|
|
4484
|
+
};
|
|
4485
|
+
template: string;
|
|
4486
|
+
};
|
|
4487
|
+
export namespace SlotFooterRight {
|
|
4488
|
+
export namespace args_11 {
|
|
4489
|
+
let slotTemplate_5: string;
|
|
4490
|
+
export { slotTemplate_5 as slotTemplate };
|
|
4491
|
+
}
|
|
4492
|
+
export { args_11 as args };
|
|
4493
|
+
}
|
|
4494
|
+
import UModalConfirm from "../../ui.container-modal-confirm/UModalConfirm.vue";
|