3h1-ui 3.0.0-next.24 → 3.0.0-next.241
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/es/index.js +46649 -35051
- package/es/style.css +1933 -2633
- package/es/ui/config/index.d.ts +5 -0
- package/es/ui/index.d.ts +34 -0
- package/es/ui/src/AdvancedSearch/index.d.ts +3 -0
- package/es/ui/src/AdvancedSearch/src/data.d.ts +27 -0
- package/es/ui/src/Basic/index.d.ts +4 -0
- package/es/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
- package/es/ui/src/Basic/src/BasicHelp.d.ts +117 -0
- package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
- package/es/ui/src/BasicContainer/index.d.ts +3 -0
- package/es/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
- package/es/ui/src/BasicContainer/src/props.d.ts +94 -0
- package/es/ui/src/BasicResizeWrapper/index.d.ts +2 -0
- package/es/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
- package/es/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
- package/es/ui/src/Button/index.d.ts +235 -0
- package/es/ui/src/Button/src/BasicButton.d.ts +105 -0
- package/es/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
- package/es/ui/src/Button/src/props.d.ts +48 -0
- package/es/ui/src/ClickOutSide/index.d.ts +2 -0
- package/es/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
- package/es/ui/src/ColorPickerPopover/index.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
- package/es/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
- package/es/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
- package/es/ui/src/Container/index.d.ts +5 -0
- package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
- package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
- package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
- package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
- package/es/ui/src/Container/src/typing.d.ts +15 -0
- package/es/ui/src/ContextMenu/index.d.ts +3 -0
- package/es/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
- package/es/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
- package/es/ui/src/ContextMenu/src/typing.d.ts +33 -0
- package/es/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
- package/es/ui/src/CountDown/index.d.ts +3 -0
- package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
- package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
- package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
- package/es/ui/src/CountTo/index.d.ts +2 -0
- package/es/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
- package/es/ui/src/Cropper/index.d.ts +4 -0
- package/es/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
- package/es/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
- package/es/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
- package/es/ui/src/Cropper/src/typing.d.ts +6 -0
- package/es/ui/src/Description/index.d.ts +6 -0
- package/es/ui/src/Description/src/Description.d.ts +98 -0
- package/es/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
- package/es/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
- package/es/ui/src/Description/src/components/formItem.d.ts +41 -0
- package/es/ui/src/Description/src/props.d.ts +60 -0
- package/es/ui/src/Description/src/typing.d.ts +38 -0
- package/es/ui/src/Description/src/useDescription.d.ts +2 -0
- package/es/ui/src/Descriptions/index.d.ts +249 -0
- package/es/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
- package/es/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
- package/es/ui/src/Descriptions/src/props.d.ts +52 -0
- package/es/ui/src/Descriptions/src/typing.d.ts +31 -0
- package/es/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
- package/es/ui/src/Drawer/index.d.ts +4 -0
- package/es/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
- package/es/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
- package/es/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
- package/es/ui/src/Drawer/src/props.d.ts +115 -0
- package/es/ui/src/Drawer/src/typing.d.ts +177 -0
- package/es/ui/src/Drawer/src/useDrawer.d.ts +6 -0
- package/es/ui/src/Dropdown/index.d.ts +3 -0
- package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
- package/es/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
- package/es/ui/src/Icon/index.d.ts +5 -0
- package/es/ui/src/Icon/src/Icon.vue.d.ts +51 -0
- package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
- package/es/ui/src/Label/index.d.ts +2 -0
- package/es/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
- package/es/ui/src/Label/src/props.d.ts +14 -0
- package/es/ui/src/Loading/index.d.ts +4 -0
- package/es/ui/src/Loading/src/Loading.vue.d.ts +57 -0
- package/es/ui/src/Loading/src/createLoading.d.ts +13 -0
- package/es/ui/src/Loading/src/typing.d.ts +9 -0
- package/es/ui/src/Loading/src/useLoading.d.ts +11 -0
- package/es/ui/src/Modal/index.d.ts +710 -0
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
- package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/es/ui/src/Modal/src/components/Modal.d.ts +300 -0
- package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
- package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
- package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
- package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
- package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
- package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
- package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
- package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
- package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
- package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
- package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
- package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
- package/es/ui/src/Modal/src/props.d.ts +171 -0
- package/es/ui/src/Modal/src/typing.d.ts +174 -0
- package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
- package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
- package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
- package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
- package/es/ui/src/Page/index.d.ts +5 -0
- package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
- package/es/ui/src/Page/src/PageSecond.d.ts +63 -0
- package/es/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
- package/es/ui/src/Process/index.d.ts +2 -0
- package/es/ui/src/Process/src/Process.d.ts +80 -0
- package/es/ui/src/Scrollbar/index.d.ts +6 -0
- package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
- package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
- package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
- package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
- package/es/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
- package/es/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
- package/es/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
- package/es/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
- package/es/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
- package/es/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
- package/es/ui/src/ShyContainer/index.d.ts +3 -0
- package/es/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
- package/es/ui/src/ShyContainer/src/props.d.ts +98 -0
- package/es/ui/src/ShyForm/index.d.ts +21 -0
- package/es/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
- package/es/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
- package/es/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
- package/es/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
- package/es/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
- package/es/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
- package/es/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
- package/es/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
- package/es/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
- package/es/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
- package/es/ui/src/ShyForm/src/components/Group.d.ts +125 -0
- package/es/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
- package/es/ui/src/ShyForm/src/components/Table.d.ts +271 -0
- package/es/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
- package/es/ui/src/ShyForm/src/helper.d.ts +14 -0
- package/es/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
- package/es/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
- package/es/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
- package/es/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
- package/es/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
- package/es/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
- package/es/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
- package/es/ui/src/ShyForm/src/props.d.ts +430 -0
- package/es/ui/src/ShyForm/src/types/form.d.ts +127 -0
- package/es/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
- package/es/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
- package/es/ui/src/ShyForm/src/types/index.d.ts +90 -0
- package/es/ui/src/ShyLayoutContainer/index.d.ts +2 -0
- package/es/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
- package/es/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
- package/es/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
- package/es/ui/src/ShyTable/index.d.ts +10 -0
- package/es/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
- package/es/ui/src/ShyTable/src/componentMap.d.ts +6 -0
- package/es/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
- package/es/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
- package/es/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
- package/es/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
- package/es/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
- package/es/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
- package/es/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
- package/es/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
- package/es/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
- package/es/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
- package/es/ui/src/ShyTable/src/const.d.ts +25 -0
- package/es/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
- package/es/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
- package/es/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
- package/es/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
- package/es/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
- package/es/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
- package/es/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
- package/es/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
- package/es/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
- package/es/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
- package/es/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
- package/es/ui/src/ShyTable/src/props.d.ts +577 -0
- package/es/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
- package/es/ui/src/ShyTable/src/types/table.d.ts +422 -0
- package/es/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
- package/es/ui/src/ShyTag/index.d.ts +3 -0
- package/es/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
- package/es/ui/src/ShyTag/src/props.d.ts +47 -0
- package/es/ui/src/StrengthMeter/index.d.ts +2 -0
- package/es/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
- package/es/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
- package/es/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
- package/es/ui/src/TablePlus/componentMap.d.ts +6 -0
- package/es/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
- package/es/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
- package/es/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
- package/es/ui/src/TablePlus/hooks/index.d.ts +2 -0
- package/es/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
- package/es/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
- package/es/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
- package/es/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
- package/es/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
- package/es/ui/src/TablePlus/index.d.ts +3 -0
- package/es/ui/src/TablePlus/props.d.ts +6 -0
- package/es/ui/src/TablePlus/types/componentType.d.ts +1 -0
- package/es/ui/src/Transition/index.d.ts +368 -0
- package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
- package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
- package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
- package/es/ui/src/Tree/index.d.ts +12 -0
- package/es/ui/src/Tree/src/BasicTree.d.ts +97 -0
- package/es/ui/src/Tree/src/TreeIcon.d.ts +2 -0
- package/es/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
- package/es/ui/src/Tree/src/types/tree.d.ts +123 -0
- package/es/ui/src/Tree/style/index.d.ts +0 -0
- package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
- package/es/ui/src/Upload/src/components/data.d.ts +9 -0
- package/es/ui/src/Upload/src/helper.d.ts +7 -0
- package/es/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
- package/es/ui/src/Upload/src/props.d.ts +153 -0
- package/es/ui/src/Upload/src/types/typing.d.ts +45 -0
- package/es/ui/src/directives/clickOutside.d.ts +3 -0
- package/es/ui/src/directives/index.d.ts +1 -0
- package/es/ui/src/enums/sizeEnum.d.ts +11 -0
- package/es/ui/types/global.d.ts +102 -0
- package/es/ui/types/index.d.ts +36 -0
- package/lib/index.js +46623 -35025
- package/lib/style.css +1933 -2633
- package/lib/ui/config/index.d.ts +5 -0
- package/lib/ui/index.d.ts +34 -0
- package/lib/ui/src/AdvancedSearch/index.d.ts +3 -0
- package/lib/ui/src/AdvancedSearch/src/data.d.ts +27 -0
- package/lib/ui/src/Basic/index.d.ts +4 -0
- package/lib/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
- package/lib/ui/src/Basic/src/BasicHelp.d.ts +117 -0
- package/lib/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
- package/lib/ui/src/BasicContainer/index.d.ts +3 -0
- package/lib/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
- package/lib/ui/src/BasicContainer/src/props.d.ts +94 -0
- package/lib/ui/src/BasicResizeWrapper/index.d.ts +2 -0
- package/lib/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
- package/lib/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
- package/lib/ui/src/Button/index.d.ts +235 -0
- package/lib/ui/src/Button/src/BasicButton.d.ts +105 -0
- package/lib/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
- package/lib/ui/src/Button/src/props.d.ts +48 -0
- package/lib/ui/src/ClickOutSide/index.d.ts +2 -0
- package/lib/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
- package/lib/ui/src/ColorPickerPopover/index.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
- package/lib/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
- package/lib/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
- package/lib/ui/src/Container/index.d.ts +5 -0
- package/lib/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
- package/lib/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
- package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
- package/lib/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
- package/lib/ui/src/Container/src/typing.d.ts +15 -0
- package/lib/ui/src/ContextMenu/index.d.ts +3 -0
- package/lib/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
- package/lib/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
- package/lib/ui/src/ContextMenu/src/typing.d.ts +33 -0
- package/lib/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
- package/lib/ui/src/CountDown/index.d.ts +3 -0
- package/lib/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
- package/lib/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
- package/lib/ui/src/CountDown/src/useCountdown.d.ts +9 -0
- package/lib/ui/src/CountTo/index.d.ts +2 -0
- package/lib/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
- package/lib/ui/src/Cropper/index.d.ts +4 -0
- package/lib/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
- package/lib/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
- package/lib/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
- package/lib/ui/src/Cropper/src/typing.d.ts +6 -0
- package/lib/ui/src/Description/index.d.ts +6 -0
- package/lib/ui/src/Description/src/Description.d.ts +98 -0
- package/lib/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
- package/lib/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
- package/lib/ui/src/Description/src/components/formItem.d.ts +41 -0
- package/lib/ui/src/Description/src/props.d.ts +60 -0
- package/lib/ui/src/Description/src/typing.d.ts +38 -0
- package/lib/ui/src/Description/src/useDescription.d.ts +2 -0
- package/lib/ui/src/Descriptions/index.d.ts +249 -0
- package/lib/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
- package/lib/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
- package/lib/ui/src/Descriptions/src/props.d.ts +52 -0
- package/lib/ui/src/Descriptions/src/typing.d.ts +31 -0
- package/lib/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
- package/lib/ui/src/Drawer/index.d.ts +4 -0
- package/lib/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
- package/lib/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
- package/lib/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
- package/lib/ui/src/Drawer/src/props.d.ts +115 -0
- package/lib/ui/src/Drawer/src/typing.d.ts +177 -0
- package/lib/ui/src/Drawer/src/useDrawer.d.ts +6 -0
- package/lib/ui/src/Dropdown/index.d.ts +3 -0
- package/lib/ui/src/Dropdown/src/typing.d.ts +9 -0
- package/lib/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
- package/lib/ui/src/Icon/index.d.ts +5 -0
- package/lib/ui/src/Icon/src/Icon.vue.d.ts +51 -0
- package/lib/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
- package/lib/ui/src/Label/index.d.ts +2 -0
- package/lib/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
- package/lib/ui/src/Label/src/props.d.ts +14 -0
- package/lib/ui/src/Loading/index.d.ts +4 -0
- package/lib/ui/src/Loading/src/Loading.vue.d.ts +57 -0
- package/lib/ui/src/Loading/src/createLoading.d.ts +13 -0
- package/lib/ui/src/Loading/src/typing.d.ts +9 -0
- package/lib/ui/src/Loading/src/useLoading.d.ts +11 -0
- package/lib/ui/src/Modal/index.d.ts +710 -0
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
- package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/lib/ui/src/Modal/src/components/Modal.d.ts +300 -0
- package/lib/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
- package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
- package/lib/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
- package/lib/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
- package/lib/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
- package/lib/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
- package/lib/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
- package/lib/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
- package/lib/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
- package/lib/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
- package/lib/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
- package/lib/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
- package/lib/ui/src/Modal/src/props.d.ts +171 -0
- package/lib/ui/src/Modal/src/typing.d.ts +174 -0
- package/lib/ui/src/Modal/src/utils/index.d.ts +5 -0
- package/lib/ui/src/Modal/src/utils/is.d.ts +13 -0
- package/lib/ui/src/Modal/src/utils/log.d.ts +2 -0
- package/lib/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
- package/lib/ui/src/Page/index.d.ts +5 -0
- package/lib/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
- package/lib/ui/src/Page/src/PageSecond.d.ts +63 -0
- package/lib/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
- package/lib/ui/src/Process/index.d.ts +2 -0
- package/lib/ui/src/Process/src/Process.d.ts +80 -0
- package/lib/ui/src/Scrollbar/index.d.ts +6 -0
- package/lib/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
- package/lib/ui/src/Scrollbar/src/bar.d.ts +14 -0
- package/lib/ui/src/Scrollbar/src/types.d.ts +18 -0
- package/lib/ui/src/Scrollbar/src/util.d.ts +8 -0
- package/lib/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
- package/lib/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
- package/lib/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
- package/lib/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
- package/lib/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
- package/lib/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
- package/lib/ui/src/ShyContainer/index.d.ts +3 -0
- package/lib/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
- package/lib/ui/src/ShyContainer/src/props.d.ts +98 -0
- package/lib/ui/src/ShyForm/index.d.ts +21 -0
- package/lib/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
- package/lib/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
- package/lib/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
- package/lib/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
- package/lib/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
- package/lib/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
- package/lib/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
- package/lib/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
- package/lib/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
- package/lib/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
- package/lib/ui/src/ShyForm/src/components/Group.d.ts +125 -0
- package/lib/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
- package/lib/ui/src/ShyForm/src/components/Table.d.ts +271 -0
- package/lib/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
- package/lib/ui/src/ShyForm/src/helper.d.ts +14 -0
- package/lib/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
- package/lib/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
- package/lib/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/props.d.ts +430 -0
- package/lib/ui/src/ShyForm/src/types/form.d.ts +127 -0
- package/lib/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
- package/lib/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
- package/lib/ui/src/ShyForm/src/types/index.d.ts +90 -0
- package/lib/ui/src/ShyLayoutContainer/index.d.ts +2 -0
- package/lib/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
- package/lib/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
- package/lib/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
- package/lib/ui/src/ShyTable/index.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
- package/lib/ui/src/ShyTable/src/componentMap.d.ts +6 -0
- package/lib/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
- package/lib/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
- package/lib/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
- package/lib/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
- package/lib/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
- package/lib/ui/src/ShyTable/src/const.d.ts +25 -0
- package/lib/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
- package/lib/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
- package/lib/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
- package/lib/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
- package/lib/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/props.d.ts +577 -0
- package/lib/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
- package/lib/ui/src/ShyTable/src/types/table.d.ts +422 -0
- package/lib/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
- package/lib/ui/src/ShyTag/index.d.ts +3 -0
- package/lib/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
- package/lib/ui/src/ShyTag/src/props.d.ts +47 -0
- package/lib/ui/src/StrengthMeter/index.d.ts +2 -0
- package/lib/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
- package/lib/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
- package/lib/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
- package/lib/ui/src/TablePlus/componentMap.d.ts +6 -0
- package/lib/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
- package/lib/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
- package/lib/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
- package/lib/ui/src/TablePlus/hooks/index.d.ts +2 -0
- package/lib/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
- package/lib/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
- package/lib/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
- package/lib/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
- package/lib/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
- package/lib/ui/src/TablePlus/index.d.ts +3 -0
- package/lib/ui/src/TablePlus/props.d.ts +6 -0
- package/lib/ui/src/TablePlus/types/componentType.d.ts +1 -0
- package/lib/ui/src/Transition/index.d.ts +368 -0
- package/lib/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
- package/lib/ui/src/Transition/src/CreateTransition.d.ts +47 -0
- package/lib/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
- package/lib/ui/src/Tree/index.d.ts +12 -0
- package/lib/ui/src/Tree/src/BasicTree.d.ts +97 -0
- package/lib/ui/src/Tree/src/TreeIcon.d.ts +2 -0
- package/lib/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
- package/lib/ui/src/Tree/src/types/tree.d.ts +123 -0
- package/lib/ui/src/Tree/style/index.d.ts +0 -0
- package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
- package/lib/ui/src/Upload/src/components/data.d.ts +9 -0
- package/lib/ui/src/Upload/src/helper.d.ts +7 -0
- package/lib/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
- package/lib/ui/src/Upload/src/props.d.ts +153 -0
- package/lib/ui/src/Upload/src/types/typing.d.ts +45 -0
- package/lib/ui/src/directives/clickOutside.d.ts +3 -0
- package/lib/ui/src/directives/index.d.ts +1 -0
- package/lib/ui/src/enums/sizeEnum.d.ts +11 -0
- package/lib/ui/types/global.d.ts +102 -0
- package/lib/ui/types/index.d.ts +36 -0
- package/package.json +7 -6
|
@@ -0,0 +1,992 @@
|
|
|
1
|
+
import { PreviewFileItem } from '../types/typing';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
value: {
|
|
4
|
+
type: import("vue").PropType<string[]>;
|
|
5
|
+
default: () => any[];
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
props: any;
|
|
9
|
+
emit: (event: "delete" | "register" | "list-change", ...args: any[]) => void;
|
|
10
|
+
columns: any[];
|
|
11
|
+
actionColumn: any;
|
|
12
|
+
register: import("../../../Modal").RegisterFn;
|
|
13
|
+
t: (key: any) => any;
|
|
14
|
+
fileListRef: import("vue").Ref<{
|
|
15
|
+
url: string;
|
|
16
|
+
name: string;
|
|
17
|
+
type: string;
|
|
18
|
+
}[]>;
|
|
19
|
+
handleRemove: (record: PreviewFileItem) => void;
|
|
20
|
+
handleDownload: (record: PreviewFileItem) => void;
|
|
21
|
+
readonly FileList: import("vue").DefineComponent<{
|
|
22
|
+
columns: {
|
|
23
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
|
|
24
|
+
default: any;
|
|
25
|
+
};
|
|
26
|
+
actionColumn: {
|
|
27
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
|
|
28
|
+
default: any;
|
|
29
|
+
};
|
|
30
|
+
dataSource: {
|
|
31
|
+
type: import("vue").PropType<any[]>;
|
|
32
|
+
default: any;
|
|
33
|
+
};
|
|
34
|
+
openDrag: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
dragOptions: {
|
|
39
|
+
type: import("vue").PropType<{
|
|
40
|
+
scroll: boolean | HTMLElement;
|
|
41
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
42
|
+
sort: boolean;
|
|
43
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
44
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
45
|
+
animation: number;
|
|
46
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
47
|
+
disabled: boolean;
|
|
48
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
49
|
+
draggable: string;
|
|
50
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
51
|
+
handle: string;
|
|
52
|
+
delay: number;
|
|
53
|
+
group: string | import("sortablejs").GroupOptions;
|
|
54
|
+
chosenClass: string;
|
|
55
|
+
dataIdAttr: string;
|
|
56
|
+
delayOnTouchOnly: boolean;
|
|
57
|
+
dragClass: string;
|
|
58
|
+
dragoverBubble: boolean;
|
|
59
|
+
dropBubble: boolean;
|
|
60
|
+
emptyInsertThreshold: number;
|
|
61
|
+
easing: string;
|
|
62
|
+
fallbackClass: string;
|
|
63
|
+
fallbackOnBody: boolean;
|
|
64
|
+
fallbackTolerance: number;
|
|
65
|
+
fallbackOffset: {
|
|
66
|
+
x: number;
|
|
67
|
+
y: number;
|
|
68
|
+
};
|
|
69
|
+
forceFallback: boolean;
|
|
70
|
+
ghostClass: string;
|
|
71
|
+
ignore: string;
|
|
72
|
+
invertSwap: boolean;
|
|
73
|
+
invertedSwapThreshold: number;
|
|
74
|
+
preventOnFilter: boolean;
|
|
75
|
+
removeCloneOnHide: boolean;
|
|
76
|
+
store: {
|
|
77
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
78
|
+
set: (sortable: import("sortablejs")) => void;
|
|
79
|
+
};
|
|
80
|
+
swapThreshold: number;
|
|
81
|
+
touchStartThreshold: number;
|
|
82
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
83
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
84
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
85
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
86
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
87
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
88
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
89
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
90
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
91
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
92
|
+
forceAutoScrollFallback: boolean;
|
|
93
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
94
|
+
scrollSensitivity: number;
|
|
95
|
+
scrollSpeed: number;
|
|
96
|
+
bubbleScroll: boolean;
|
|
97
|
+
multiDrag: boolean;
|
|
98
|
+
selectedClass: string;
|
|
99
|
+
multiDragKey: string;
|
|
100
|
+
avoidImplicitDeselect: boolean;
|
|
101
|
+
revertOnSpill: boolean;
|
|
102
|
+
removeOnSpill: boolean;
|
|
103
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
104
|
+
swap: boolean;
|
|
105
|
+
swapClass: string;
|
|
106
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
107
|
+
}>;
|
|
108
|
+
default: () => {};
|
|
109
|
+
};
|
|
110
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
111
|
+
columns: {
|
|
112
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
|
|
113
|
+
default: any;
|
|
114
|
+
};
|
|
115
|
+
actionColumn: {
|
|
116
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
|
|
117
|
+
default: any;
|
|
118
|
+
};
|
|
119
|
+
dataSource: {
|
|
120
|
+
type: import("vue").PropType<any[]>;
|
|
121
|
+
default: any;
|
|
122
|
+
};
|
|
123
|
+
openDrag: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
127
|
+
dragOptions: {
|
|
128
|
+
type: import("vue").PropType<{
|
|
129
|
+
scroll: boolean | HTMLElement;
|
|
130
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
131
|
+
sort: boolean;
|
|
132
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
133
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
134
|
+
animation: number;
|
|
135
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
136
|
+
disabled: boolean;
|
|
137
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
138
|
+
draggable: string;
|
|
139
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
140
|
+
handle: string;
|
|
141
|
+
delay: number;
|
|
142
|
+
group: string | import("sortablejs").GroupOptions;
|
|
143
|
+
chosenClass: string;
|
|
144
|
+
dataIdAttr: string;
|
|
145
|
+
delayOnTouchOnly: boolean;
|
|
146
|
+
dragClass: string;
|
|
147
|
+
dragoverBubble: boolean;
|
|
148
|
+
dropBubble: boolean;
|
|
149
|
+
emptyInsertThreshold: number;
|
|
150
|
+
easing: string;
|
|
151
|
+
fallbackClass: string;
|
|
152
|
+
fallbackOnBody: boolean;
|
|
153
|
+
fallbackTolerance: number;
|
|
154
|
+
fallbackOffset: {
|
|
155
|
+
x: number;
|
|
156
|
+
y: number;
|
|
157
|
+
};
|
|
158
|
+
forceFallback: boolean;
|
|
159
|
+
ghostClass: string;
|
|
160
|
+
ignore: string;
|
|
161
|
+
invertSwap: boolean;
|
|
162
|
+
invertedSwapThreshold: number;
|
|
163
|
+
preventOnFilter: boolean;
|
|
164
|
+
removeCloneOnHide: boolean;
|
|
165
|
+
store: {
|
|
166
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
167
|
+
set: (sortable: import("sortablejs")) => void;
|
|
168
|
+
};
|
|
169
|
+
swapThreshold: number;
|
|
170
|
+
touchStartThreshold: number;
|
|
171
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
172
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
173
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
174
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
175
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
176
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
177
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
178
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
179
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
180
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
181
|
+
forceAutoScrollFallback: boolean;
|
|
182
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
183
|
+
scrollSensitivity: number;
|
|
184
|
+
scrollSpeed: number;
|
|
185
|
+
bubbleScroll: boolean;
|
|
186
|
+
multiDrag: boolean;
|
|
187
|
+
selectedClass: string;
|
|
188
|
+
multiDragKey: string;
|
|
189
|
+
avoidImplicitDeselect: boolean;
|
|
190
|
+
revertOnSpill: boolean;
|
|
191
|
+
removeOnSpill: boolean;
|
|
192
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
193
|
+
swap: boolean;
|
|
194
|
+
swapClass: string;
|
|
195
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
196
|
+
}>;
|
|
197
|
+
default: () => {};
|
|
198
|
+
};
|
|
199
|
+
}>>, {
|
|
200
|
+
columns: import("../types/typing").FileBasicColumn[];
|
|
201
|
+
dataSource: any[];
|
|
202
|
+
actionColumn: import("../types/typing").FileBasicColumn;
|
|
203
|
+
openDrag: boolean;
|
|
204
|
+
dragOptions: {
|
|
205
|
+
scroll: boolean | HTMLElement;
|
|
206
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
207
|
+
sort: boolean;
|
|
208
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
209
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
210
|
+
animation: number;
|
|
211
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
212
|
+
disabled: boolean;
|
|
213
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
214
|
+
draggable: string;
|
|
215
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
216
|
+
handle: string;
|
|
217
|
+
delay: number;
|
|
218
|
+
group: string | import("sortablejs").GroupOptions;
|
|
219
|
+
chosenClass: string;
|
|
220
|
+
dataIdAttr: string;
|
|
221
|
+
delayOnTouchOnly: boolean;
|
|
222
|
+
dragClass: string;
|
|
223
|
+
dragoverBubble: boolean;
|
|
224
|
+
dropBubble: boolean;
|
|
225
|
+
emptyInsertThreshold: number;
|
|
226
|
+
easing: string;
|
|
227
|
+
fallbackClass: string;
|
|
228
|
+
fallbackOnBody: boolean;
|
|
229
|
+
fallbackTolerance: number;
|
|
230
|
+
fallbackOffset: {
|
|
231
|
+
x: number;
|
|
232
|
+
y: number;
|
|
233
|
+
};
|
|
234
|
+
forceFallback: boolean;
|
|
235
|
+
ghostClass: string;
|
|
236
|
+
ignore: string;
|
|
237
|
+
invertSwap: boolean;
|
|
238
|
+
invertedSwapThreshold: number;
|
|
239
|
+
preventOnFilter: boolean;
|
|
240
|
+
removeCloneOnHide: boolean;
|
|
241
|
+
store: {
|
|
242
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
243
|
+
set: (sortable: import("sortablejs")) => void;
|
|
244
|
+
};
|
|
245
|
+
swapThreshold: number;
|
|
246
|
+
touchStartThreshold: number;
|
|
247
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
248
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
249
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
250
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
251
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
252
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
253
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
254
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
255
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
256
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
257
|
+
forceAutoScrollFallback: boolean;
|
|
258
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
259
|
+
scrollSensitivity: number;
|
|
260
|
+
scrollSpeed: number;
|
|
261
|
+
bubbleScroll: boolean;
|
|
262
|
+
multiDrag: boolean;
|
|
263
|
+
selectedClass: string;
|
|
264
|
+
multiDragKey: string;
|
|
265
|
+
avoidImplicitDeselect: boolean;
|
|
266
|
+
revertOnSpill: boolean;
|
|
267
|
+
removeOnSpill: boolean;
|
|
268
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
269
|
+
swap: boolean;
|
|
270
|
+
swapClass: string;
|
|
271
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
272
|
+
};
|
|
273
|
+
}, {}>;
|
|
274
|
+
readonly BasicModal: {
|
|
275
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
276
|
+
defaultFullscreen: {
|
|
277
|
+
type: BooleanConstructor;
|
|
278
|
+
};
|
|
279
|
+
canFullscreen: {
|
|
280
|
+
type: BooleanConstructor;
|
|
281
|
+
default: boolean;
|
|
282
|
+
};
|
|
283
|
+
wrapperFooterOffset: {
|
|
284
|
+
type: NumberConstructor;
|
|
285
|
+
default: number;
|
|
286
|
+
};
|
|
287
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
288
|
+
useWrapper: {
|
|
289
|
+
type: BooleanConstructor;
|
|
290
|
+
default: boolean;
|
|
291
|
+
};
|
|
292
|
+
loading: {
|
|
293
|
+
type: BooleanConstructor;
|
|
294
|
+
};
|
|
295
|
+
loadingTip: {
|
|
296
|
+
type: StringConstructor;
|
|
297
|
+
};
|
|
298
|
+
showCancelBtn: {
|
|
299
|
+
type: BooleanConstructor;
|
|
300
|
+
default: boolean;
|
|
301
|
+
};
|
|
302
|
+
showOkBtn: {
|
|
303
|
+
type: BooleanConstructor;
|
|
304
|
+
default: boolean;
|
|
305
|
+
};
|
|
306
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
307
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
308
|
+
(): () => Promise<VueNode>;
|
|
309
|
+
new (): any;
|
|
310
|
+
readonly prototype: any;
|
|
311
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
312
|
+
(): () => Promise<VueNode>;
|
|
313
|
+
new (): any;
|
|
314
|
+
readonly prototype: any;
|
|
315
|
+
})[];
|
|
316
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
317
|
+
closable: {
|
|
318
|
+
type: BooleanConstructor;
|
|
319
|
+
default: boolean;
|
|
320
|
+
};
|
|
321
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
322
|
+
confirmLoading: {
|
|
323
|
+
type: BooleanConstructor;
|
|
324
|
+
};
|
|
325
|
+
destroyOnClose: {
|
|
326
|
+
type: BooleanConstructor;
|
|
327
|
+
};
|
|
328
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
329
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
330
|
+
(): () => any;
|
|
331
|
+
new (): any;
|
|
332
|
+
readonly prototype: any;
|
|
333
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
334
|
+
(): () => any;
|
|
335
|
+
new (): any;
|
|
336
|
+
readonly prototype: any;
|
|
337
|
+
})[];
|
|
338
|
+
mask: {
|
|
339
|
+
type: BooleanConstructor;
|
|
340
|
+
default: boolean;
|
|
341
|
+
};
|
|
342
|
+
maskClosable: {
|
|
343
|
+
type: BooleanConstructor;
|
|
344
|
+
default: boolean;
|
|
345
|
+
};
|
|
346
|
+
keyboard: {
|
|
347
|
+
type: BooleanConstructor;
|
|
348
|
+
default: boolean;
|
|
349
|
+
};
|
|
350
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
351
|
+
okType: {
|
|
352
|
+
type: StringConstructor;
|
|
353
|
+
default: string;
|
|
354
|
+
};
|
|
355
|
+
okButtonProps: {
|
|
356
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
357
|
+
};
|
|
358
|
+
cancelButtonProps: {
|
|
359
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
360
|
+
};
|
|
361
|
+
title: {
|
|
362
|
+
type: StringConstructor;
|
|
363
|
+
};
|
|
364
|
+
visible: {
|
|
365
|
+
type: BooleanConstructor;
|
|
366
|
+
};
|
|
367
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
368
|
+
wrapClassName: {
|
|
369
|
+
type: StringConstructor;
|
|
370
|
+
};
|
|
371
|
+
zIndex: {
|
|
372
|
+
type: NumberConstructor;
|
|
373
|
+
};
|
|
374
|
+
size: {
|
|
375
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
376
|
+
default: string;
|
|
377
|
+
};
|
|
378
|
+
scrollTop: {
|
|
379
|
+
type: BooleanConstructor;
|
|
380
|
+
default: boolean;
|
|
381
|
+
};
|
|
382
|
+
height: {
|
|
383
|
+
type: NumberConstructor;
|
|
384
|
+
};
|
|
385
|
+
minHeight: {
|
|
386
|
+
type: NumberConstructor;
|
|
387
|
+
};
|
|
388
|
+
draggable: {
|
|
389
|
+
type: BooleanConstructor;
|
|
390
|
+
default: boolean;
|
|
391
|
+
};
|
|
392
|
+
centered: {
|
|
393
|
+
type: BooleanConstructor;
|
|
394
|
+
};
|
|
395
|
+
cancelText: {
|
|
396
|
+
type: StringConstructor;
|
|
397
|
+
default: string;
|
|
398
|
+
};
|
|
399
|
+
okText: {
|
|
400
|
+
type: StringConstructor;
|
|
401
|
+
default: string;
|
|
402
|
+
};
|
|
403
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
404
|
+
(): () => Promise<boolean>;
|
|
405
|
+
new (): any;
|
|
406
|
+
readonly prototype: any;
|
|
407
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
408
|
+
(): () => Promise<boolean>;
|
|
409
|
+
new (): any;
|
|
410
|
+
readonly prototype: any;
|
|
411
|
+
})[];
|
|
412
|
+
}>> & {
|
|
413
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
414
|
+
onCancel?: (...args: any[]) => any;
|
|
415
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
416
|
+
onOk?: (...args: any[]) => any;
|
|
417
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
418
|
+
onRegister?: (...args: any[]) => any;
|
|
419
|
+
}, {
|
|
420
|
+
prefixCls: string;
|
|
421
|
+
handleCancel: (e: Event) => Promise<void>;
|
|
422
|
+
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
423
|
+
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
424
|
+
handleFullScreen: (e: Event) => void;
|
|
425
|
+
fullScreenRef: import("vue").Ref<boolean>;
|
|
426
|
+
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
427
|
+
handleOk: (e: Event) => void;
|
|
428
|
+
visibleRef: import("vue").Ref<boolean>;
|
|
429
|
+
omitBindValue: Object;
|
|
430
|
+
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
431
|
+
modalWrapperRef: import("vue").Ref<any>;
|
|
432
|
+
handleExtHeight: (height: number) => void;
|
|
433
|
+
handleHeightChange: (height: string) => void;
|
|
434
|
+
handleTitleDbClick: (e: Event) => void;
|
|
435
|
+
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
436
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
437
|
+
defaultFullscreen: {
|
|
438
|
+
type: BooleanConstructor;
|
|
439
|
+
};
|
|
440
|
+
canFullscreen: {
|
|
441
|
+
type: BooleanConstructor;
|
|
442
|
+
default: boolean;
|
|
443
|
+
};
|
|
444
|
+
wrapperFooterOffset: {
|
|
445
|
+
type: NumberConstructor;
|
|
446
|
+
default: number;
|
|
447
|
+
};
|
|
448
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
449
|
+
useWrapper: {
|
|
450
|
+
type: BooleanConstructor;
|
|
451
|
+
default: boolean;
|
|
452
|
+
};
|
|
453
|
+
loading: {
|
|
454
|
+
type: BooleanConstructor;
|
|
455
|
+
};
|
|
456
|
+
loadingTip: {
|
|
457
|
+
type: StringConstructor;
|
|
458
|
+
};
|
|
459
|
+
showCancelBtn: {
|
|
460
|
+
type: BooleanConstructor;
|
|
461
|
+
default: boolean;
|
|
462
|
+
};
|
|
463
|
+
showOkBtn: {
|
|
464
|
+
type: BooleanConstructor;
|
|
465
|
+
default: boolean;
|
|
466
|
+
};
|
|
467
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
468
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
469
|
+
(): () => Promise<VueNode>;
|
|
470
|
+
new (): any;
|
|
471
|
+
readonly prototype: any;
|
|
472
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
473
|
+
(): () => Promise<VueNode>;
|
|
474
|
+
new (): any;
|
|
475
|
+
readonly prototype: any;
|
|
476
|
+
})[];
|
|
477
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
478
|
+
closable: {
|
|
479
|
+
type: BooleanConstructor;
|
|
480
|
+
default: boolean;
|
|
481
|
+
};
|
|
482
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
483
|
+
confirmLoading: {
|
|
484
|
+
type: BooleanConstructor;
|
|
485
|
+
};
|
|
486
|
+
destroyOnClose: {
|
|
487
|
+
type: BooleanConstructor;
|
|
488
|
+
};
|
|
489
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
490
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
491
|
+
(): () => any;
|
|
492
|
+
new (): any;
|
|
493
|
+
readonly prototype: any;
|
|
494
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
495
|
+
(): () => any;
|
|
496
|
+
new (): any;
|
|
497
|
+
readonly prototype: any;
|
|
498
|
+
})[];
|
|
499
|
+
mask: {
|
|
500
|
+
type: BooleanConstructor;
|
|
501
|
+
default: boolean;
|
|
502
|
+
};
|
|
503
|
+
maskClosable: {
|
|
504
|
+
type: BooleanConstructor;
|
|
505
|
+
default: boolean;
|
|
506
|
+
};
|
|
507
|
+
keyboard: {
|
|
508
|
+
type: BooleanConstructor;
|
|
509
|
+
default: boolean;
|
|
510
|
+
};
|
|
511
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
512
|
+
okType: {
|
|
513
|
+
type: StringConstructor;
|
|
514
|
+
default: string;
|
|
515
|
+
};
|
|
516
|
+
okButtonProps: {
|
|
517
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
518
|
+
};
|
|
519
|
+
cancelButtonProps: {
|
|
520
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
521
|
+
};
|
|
522
|
+
title: {
|
|
523
|
+
type: StringConstructor;
|
|
524
|
+
};
|
|
525
|
+
visible: {
|
|
526
|
+
type: BooleanConstructor;
|
|
527
|
+
};
|
|
528
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
529
|
+
wrapClassName: {
|
|
530
|
+
type: StringConstructor;
|
|
531
|
+
};
|
|
532
|
+
zIndex: {
|
|
533
|
+
type: NumberConstructor;
|
|
534
|
+
};
|
|
535
|
+
size: {
|
|
536
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
537
|
+
default: string;
|
|
538
|
+
};
|
|
539
|
+
scrollTop: {
|
|
540
|
+
type: BooleanConstructor;
|
|
541
|
+
default: boolean;
|
|
542
|
+
};
|
|
543
|
+
height: {
|
|
544
|
+
type: NumberConstructor;
|
|
545
|
+
};
|
|
546
|
+
minHeight: {
|
|
547
|
+
type: NumberConstructor;
|
|
548
|
+
};
|
|
549
|
+
draggable: {
|
|
550
|
+
type: BooleanConstructor;
|
|
551
|
+
default: boolean;
|
|
552
|
+
};
|
|
553
|
+
centered: {
|
|
554
|
+
type: BooleanConstructor;
|
|
555
|
+
};
|
|
556
|
+
cancelText: {
|
|
557
|
+
type: StringConstructor;
|
|
558
|
+
default: string;
|
|
559
|
+
};
|
|
560
|
+
okText: {
|
|
561
|
+
type: StringConstructor;
|
|
562
|
+
default: string;
|
|
563
|
+
};
|
|
564
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
565
|
+
(): () => Promise<boolean>;
|
|
566
|
+
new (): any;
|
|
567
|
+
readonly prototype: any;
|
|
568
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
569
|
+
(): () => Promise<boolean>;
|
|
570
|
+
new (): any;
|
|
571
|
+
readonly prototype: any;
|
|
572
|
+
})[];
|
|
573
|
+
}>> & {
|
|
574
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
575
|
+
onCancel?: (...args: any[]) => any;
|
|
576
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
577
|
+
onOk?: (...args: any[]) => any;
|
|
578
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
579
|
+
onRegister?: (...args: any[]) => any;
|
|
580
|
+
}, {
|
|
581
|
+
size: "small" | "default" | "large";
|
|
582
|
+
mask: boolean;
|
|
583
|
+
loading: boolean;
|
|
584
|
+
visible: boolean;
|
|
585
|
+
defaultFullscreen: boolean;
|
|
586
|
+
canFullscreen: boolean;
|
|
587
|
+
wrapperFooterOffset: number;
|
|
588
|
+
useWrapper: boolean;
|
|
589
|
+
showCancelBtn: boolean;
|
|
590
|
+
showOkBtn: boolean;
|
|
591
|
+
closable: boolean;
|
|
592
|
+
confirmLoading: boolean;
|
|
593
|
+
destroyOnClose: boolean;
|
|
594
|
+
maskClosable: boolean;
|
|
595
|
+
keyboard: boolean;
|
|
596
|
+
okType: string;
|
|
597
|
+
scrollTop: boolean;
|
|
598
|
+
draggable: boolean;
|
|
599
|
+
centered: boolean;
|
|
600
|
+
cancelText: string;
|
|
601
|
+
okText: string;
|
|
602
|
+
}, true, {}, {}, {
|
|
603
|
+
P: {};
|
|
604
|
+
B: {};
|
|
605
|
+
D: {};
|
|
606
|
+
C: {};
|
|
607
|
+
M: {};
|
|
608
|
+
Defaults: {};
|
|
609
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
610
|
+
defaultFullscreen: {
|
|
611
|
+
type: BooleanConstructor;
|
|
612
|
+
};
|
|
613
|
+
canFullscreen: {
|
|
614
|
+
type: BooleanConstructor;
|
|
615
|
+
default: boolean;
|
|
616
|
+
};
|
|
617
|
+
wrapperFooterOffset: {
|
|
618
|
+
type: NumberConstructor;
|
|
619
|
+
default: number;
|
|
620
|
+
};
|
|
621
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
622
|
+
useWrapper: {
|
|
623
|
+
type: BooleanConstructor;
|
|
624
|
+
default: boolean;
|
|
625
|
+
};
|
|
626
|
+
loading: {
|
|
627
|
+
type: BooleanConstructor;
|
|
628
|
+
};
|
|
629
|
+
loadingTip: {
|
|
630
|
+
type: StringConstructor;
|
|
631
|
+
};
|
|
632
|
+
showCancelBtn: {
|
|
633
|
+
type: BooleanConstructor;
|
|
634
|
+
default: boolean;
|
|
635
|
+
};
|
|
636
|
+
showOkBtn: {
|
|
637
|
+
type: BooleanConstructor;
|
|
638
|
+
default: boolean;
|
|
639
|
+
};
|
|
640
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
641
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
642
|
+
(): () => Promise<VueNode>;
|
|
643
|
+
new (): any;
|
|
644
|
+
readonly prototype: any;
|
|
645
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
646
|
+
(): () => Promise<VueNode>;
|
|
647
|
+
new (): any;
|
|
648
|
+
readonly prototype: any;
|
|
649
|
+
})[];
|
|
650
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
651
|
+
closable: {
|
|
652
|
+
type: BooleanConstructor;
|
|
653
|
+
default: boolean;
|
|
654
|
+
};
|
|
655
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
656
|
+
confirmLoading: {
|
|
657
|
+
type: BooleanConstructor;
|
|
658
|
+
};
|
|
659
|
+
destroyOnClose: {
|
|
660
|
+
type: BooleanConstructor;
|
|
661
|
+
};
|
|
662
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
663
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
664
|
+
(): () => any;
|
|
665
|
+
new (): any;
|
|
666
|
+
readonly prototype: any;
|
|
667
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
668
|
+
(): () => any;
|
|
669
|
+
new (): any;
|
|
670
|
+
readonly prototype: any;
|
|
671
|
+
})[];
|
|
672
|
+
mask: {
|
|
673
|
+
type: BooleanConstructor;
|
|
674
|
+
default: boolean;
|
|
675
|
+
};
|
|
676
|
+
maskClosable: {
|
|
677
|
+
type: BooleanConstructor;
|
|
678
|
+
default: boolean;
|
|
679
|
+
};
|
|
680
|
+
keyboard: {
|
|
681
|
+
type: BooleanConstructor;
|
|
682
|
+
default: boolean;
|
|
683
|
+
};
|
|
684
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
685
|
+
okType: {
|
|
686
|
+
type: StringConstructor;
|
|
687
|
+
default: string;
|
|
688
|
+
};
|
|
689
|
+
okButtonProps: {
|
|
690
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
691
|
+
};
|
|
692
|
+
cancelButtonProps: {
|
|
693
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
694
|
+
};
|
|
695
|
+
title: {
|
|
696
|
+
type: StringConstructor;
|
|
697
|
+
};
|
|
698
|
+
visible: {
|
|
699
|
+
type: BooleanConstructor;
|
|
700
|
+
};
|
|
701
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
702
|
+
wrapClassName: {
|
|
703
|
+
type: StringConstructor;
|
|
704
|
+
};
|
|
705
|
+
zIndex: {
|
|
706
|
+
type: NumberConstructor;
|
|
707
|
+
};
|
|
708
|
+
size: {
|
|
709
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
710
|
+
default: string;
|
|
711
|
+
};
|
|
712
|
+
scrollTop: {
|
|
713
|
+
type: BooleanConstructor;
|
|
714
|
+
default: boolean;
|
|
715
|
+
};
|
|
716
|
+
height: {
|
|
717
|
+
type: NumberConstructor;
|
|
718
|
+
};
|
|
719
|
+
minHeight: {
|
|
720
|
+
type: NumberConstructor;
|
|
721
|
+
};
|
|
722
|
+
draggable: {
|
|
723
|
+
type: BooleanConstructor;
|
|
724
|
+
default: boolean;
|
|
725
|
+
};
|
|
726
|
+
centered: {
|
|
727
|
+
type: BooleanConstructor;
|
|
728
|
+
};
|
|
729
|
+
cancelText: {
|
|
730
|
+
type: StringConstructor;
|
|
731
|
+
default: string;
|
|
732
|
+
};
|
|
733
|
+
okText: {
|
|
734
|
+
type: StringConstructor;
|
|
735
|
+
default: string;
|
|
736
|
+
};
|
|
737
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
738
|
+
(): () => Promise<boolean>;
|
|
739
|
+
new (): any;
|
|
740
|
+
readonly prototype: any;
|
|
741
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
742
|
+
(): () => Promise<boolean>;
|
|
743
|
+
new (): any;
|
|
744
|
+
readonly prototype: any;
|
|
745
|
+
})[];
|
|
746
|
+
}>> & {
|
|
747
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
748
|
+
onCancel?: (...args: any[]) => any;
|
|
749
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
750
|
+
onOk?: (...args: any[]) => any;
|
|
751
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
752
|
+
onRegister?: (...args: any[]) => any;
|
|
753
|
+
}, {
|
|
754
|
+
prefixCls: string;
|
|
755
|
+
handleCancel: (e: Event) => Promise<void>;
|
|
756
|
+
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
757
|
+
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
758
|
+
handleFullScreen: (e: Event) => void;
|
|
759
|
+
fullScreenRef: import("vue").Ref<boolean>;
|
|
760
|
+
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
761
|
+
handleOk: (e: Event) => void;
|
|
762
|
+
visibleRef: import("vue").Ref<boolean>;
|
|
763
|
+
omitBindValue: Object;
|
|
764
|
+
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
765
|
+
modalWrapperRef: import("vue").Ref<any>;
|
|
766
|
+
handleExtHeight: (height: number) => void;
|
|
767
|
+
handleHeightChange: (height: string) => void;
|
|
768
|
+
handleTitleDbClick: (e: Event) => void;
|
|
769
|
+
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
770
|
+
}, {}, {}, {}, {
|
|
771
|
+
size: "small" | "default" | "large";
|
|
772
|
+
mask: boolean;
|
|
773
|
+
loading: boolean;
|
|
774
|
+
visible: boolean;
|
|
775
|
+
defaultFullscreen: boolean;
|
|
776
|
+
canFullscreen: boolean;
|
|
777
|
+
wrapperFooterOffset: number;
|
|
778
|
+
useWrapper: boolean;
|
|
779
|
+
showCancelBtn: boolean;
|
|
780
|
+
showOkBtn: boolean;
|
|
781
|
+
closable: boolean;
|
|
782
|
+
confirmLoading: boolean;
|
|
783
|
+
destroyOnClose: boolean;
|
|
784
|
+
maskClosable: boolean;
|
|
785
|
+
keyboard: boolean;
|
|
786
|
+
okType: string;
|
|
787
|
+
scrollTop: boolean;
|
|
788
|
+
draggable: boolean;
|
|
789
|
+
centered: boolean;
|
|
790
|
+
cancelText: string;
|
|
791
|
+
okText: string;
|
|
792
|
+
}>;
|
|
793
|
+
__isFragment?: never;
|
|
794
|
+
__isTeleport?: never;
|
|
795
|
+
__isSuspense?: never;
|
|
796
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
797
|
+
defaultFullscreen: {
|
|
798
|
+
type: BooleanConstructor;
|
|
799
|
+
};
|
|
800
|
+
canFullscreen: {
|
|
801
|
+
type: BooleanConstructor;
|
|
802
|
+
default: boolean;
|
|
803
|
+
};
|
|
804
|
+
wrapperFooterOffset: {
|
|
805
|
+
type: NumberConstructor;
|
|
806
|
+
default: number;
|
|
807
|
+
};
|
|
808
|
+
helpMessage: ((new (...args: any[]) => string | string[]) | (() => string | string[])) | ((new (...args: any[]) => string | string[]) | (() => string | string[]))[];
|
|
809
|
+
useWrapper: {
|
|
810
|
+
type: BooleanConstructor;
|
|
811
|
+
default: boolean;
|
|
812
|
+
};
|
|
813
|
+
loading: {
|
|
814
|
+
type: BooleanConstructor;
|
|
815
|
+
};
|
|
816
|
+
loadingTip: {
|
|
817
|
+
type: StringConstructor;
|
|
818
|
+
};
|
|
819
|
+
showCancelBtn: {
|
|
820
|
+
type: BooleanConstructor;
|
|
821
|
+
default: boolean;
|
|
822
|
+
};
|
|
823
|
+
showOkBtn: {
|
|
824
|
+
type: BooleanConstructor;
|
|
825
|
+
default: boolean;
|
|
826
|
+
};
|
|
827
|
+
wrapperProps: ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>)) | ((new (...args: any[]) => Partial<import("../../../Modal").ModalWrapperProps>) | (() => Partial<import("../../../Modal").ModalWrapperProps>))[];
|
|
828
|
+
afterClose: ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
829
|
+
(): () => Promise<VueNode>;
|
|
830
|
+
new (): any;
|
|
831
|
+
readonly prototype: any;
|
|
832
|
+
}) | ((new (...args: any[]) => () => Promise<VueNode>) | (() => () => Promise<VueNode>) | {
|
|
833
|
+
(): () => Promise<VueNode>;
|
|
834
|
+
new (): any;
|
|
835
|
+
readonly prototype: any;
|
|
836
|
+
})[];
|
|
837
|
+
bodyStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
838
|
+
closable: {
|
|
839
|
+
type: BooleanConstructor;
|
|
840
|
+
default: boolean;
|
|
841
|
+
};
|
|
842
|
+
closeIcon: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
843
|
+
confirmLoading: {
|
|
844
|
+
type: BooleanConstructor;
|
|
845
|
+
};
|
|
846
|
+
destroyOnClose: {
|
|
847
|
+
type: BooleanConstructor;
|
|
848
|
+
};
|
|
849
|
+
footer: ((new (...args: any[]) => VueNode & {}) | (() => VueNode)) | ((new (...args: any[]) => VueNode & {}) | (() => VueNode))[];
|
|
850
|
+
getContainer: ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
851
|
+
(): () => any;
|
|
852
|
+
new (): any;
|
|
853
|
+
readonly prototype: any;
|
|
854
|
+
}) | ((new (...args: any[]) => () => any) | (() => () => any) | {
|
|
855
|
+
(): () => any;
|
|
856
|
+
new (): any;
|
|
857
|
+
readonly prototype: any;
|
|
858
|
+
})[];
|
|
859
|
+
mask: {
|
|
860
|
+
type: BooleanConstructor;
|
|
861
|
+
default: boolean;
|
|
862
|
+
};
|
|
863
|
+
maskClosable: {
|
|
864
|
+
type: BooleanConstructor;
|
|
865
|
+
default: boolean;
|
|
866
|
+
};
|
|
867
|
+
keyboard: {
|
|
868
|
+
type: BooleanConstructor;
|
|
869
|
+
default: boolean;
|
|
870
|
+
};
|
|
871
|
+
maskStyle: ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties)) | ((new (...args: any[]) => import("vue").CSSProperties) | (() => import("vue").CSSProperties))[];
|
|
872
|
+
okType: {
|
|
873
|
+
type: StringConstructor;
|
|
874
|
+
default: string;
|
|
875
|
+
};
|
|
876
|
+
okButtonProps: {
|
|
877
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
878
|
+
};
|
|
879
|
+
cancelButtonProps: {
|
|
880
|
+
type: ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>)) | ((new (...args: any[]) => Recordable<any>) | (() => Recordable<any>))[];
|
|
881
|
+
};
|
|
882
|
+
title: {
|
|
883
|
+
type: StringConstructor;
|
|
884
|
+
};
|
|
885
|
+
visible: {
|
|
886
|
+
type: BooleanConstructor;
|
|
887
|
+
};
|
|
888
|
+
width: ((new (...args: any[]) => string | number) | (() => string | number)) | ((new (...args: any[]) => string | number) | (() => string | number))[];
|
|
889
|
+
wrapClassName: {
|
|
890
|
+
type: StringConstructor;
|
|
891
|
+
};
|
|
892
|
+
zIndex: {
|
|
893
|
+
type: NumberConstructor;
|
|
894
|
+
};
|
|
895
|
+
size: {
|
|
896
|
+
type: ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large")) | ((new (...args: any[]) => "small" | "default" | "large") | (() => "small" | "default" | "large"))[];
|
|
897
|
+
default: string;
|
|
898
|
+
};
|
|
899
|
+
scrollTop: {
|
|
900
|
+
type: BooleanConstructor;
|
|
901
|
+
default: boolean;
|
|
902
|
+
};
|
|
903
|
+
height: {
|
|
904
|
+
type: NumberConstructor;
|
|
905
|
+
};
|
|
906
|
+
minHeight: {
|
|
907
|
+
type: NumberConstructor;
|
|
908
|
+
};
|
|
909
|
+
draggable: {
|
|
910
|
+
type: BooleanConstructor;
|
|
911
|
+
default: boolean;
|
|
912
|
+
};
|
|
913
|
+
centered: {
|
|
914
|
+
type: BooleanConstructor;
|
|
915
|
+
};
|
|
916
|
+
cancelText: {
|
|
917
|
+
type: StringConstructor;
|
|
918
|
+
default: string;
|
|
919
|
+
};
|
|
920
|
+
okText: {
|
|
921
|
+
type: StringConstructor;
|
|
922
|
+
default: string;
|
|
923
|
+
};
|
|
924
|
+
closeFunc: ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
925
|
+
(): () => Promise<boolean>;
|
|
926
|
+
new (): any;
|
|
927
|
+
readonly prototype: any;
|
|
928
|
+
}) | ((new (...args: any[]) => () => Promise<boolean>) | (() => () => Promise<boolean>) | {
|
|
929
|
+
(): () => Promise<boolean>;
|
|
930
|
+
new (): any;
|
|
931
|
+
readonly prototype: any;
|
|
932
|
+
})[];
|
|
933
|
+
}>> & {
|
|
934
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
935
|
+
onCancel?: (...args: any[]) => any;
|
|
936
|
+
"onHeight-change"?: (...args: any[]) => any;
|
|
937
|
+
onOk?: (...args: any[]) => any;
|
|
938
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
939
|
+
onRegister?: (...args: any[]) => any;
|
|
940
|
+
}, {
|
|
941
|
+
prefixCls: string;
|
|
942
|
+
handleCancel: (e: Event) => Promise<void>;
|
|
943
|
+
getBindValue: import("vue").ComputedRef<Recordable<any>>;
|
|
944
|
+
getProps: import("vue").ComputedRef<Recordable<any>>;
|
|
945
|
+
handleFullScreen: (e: Event) => void;
|
|
946
|
+
fullScreenRef: import("vue").Ref<boolean>;
|
|
947
|
+
getMergeProps: import("vue").ComputedRef<Recordable<any>>;
|
|
948
|
+
handleOk: (e: Event) => void;
|
|
949
|
+
visibleRef: import("vue").Ref<boolean>;
|
|
950
|
+
omitBindValue: Object;
|
|
951
|
+
omitSlotKeys: import("vue").ComputedRef<string[]>;
|
|
952
|
+
modalWrapperRef: import("vue").Ref<any>;
|
|
953
|
+
handleExtHeight: (height: number) => void;
|
|
954
|
+
handleHeightChange: (height: string) => void;
|
|
955
|
+
handleTitleDbClick: (e: Event) => void;
|
|
956
|
+
getWrapperHeight: import("vue").ComputedRef<any>;
|
|
957
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible")[], "cancel" | "height-change" | "ok" | "visible-change" | "register" | "update:visible", {
|
|
958
|
+
size: "small" | "default" | "large";
|
|
959
|
+
mask: boolean;
|
|
960
|
+
loading: boolean;
|
|
961
|
+
visible: boolean;
|
|
962
|
+
defaultFullscreen: boolean;
|
|
963
|
+
canFullscreen: boolean;
|
|
964
|
+
wrapperFooterOffset: number;
|
|
965
|
+
useWrapper: boolean;
|
|
966
|
+
showCancelBtn: boolean;
|
|
967
|
+
showOkBtn: boolean;
|
|
968
|
+
closable: boolean;
|
|
969
|
+
confirmLoading: boolean;
|
|
970
|
+
destroyOnClose: boolean;
|
|
971
|
+
maskClosable: boolean;
|
|
972
|
+
keyboard: boolean;
|
|
973
|
+
okType: string;
|
|
974
|
+
scrollTop: boolean;
|
|
975
|
+
draggable: boolean;
|
|
976
|
+
centered: boolean;
|
|
977
|
+
cancelText: string;
|
|
978
|
+
okText: string;
|
|
979
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
|
|
980
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("delete" | "register" | "list-change")[], "delete" | "register" | "list-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
981
|
+
value: {
|
|
982
|
+
type: import("vue").PropType<string[]>;
|
|
983
|
+
default: () => any[];
|
|
984
|
+
};
|
|
985
|
+
}>> & {
|
|
986
|
+
onRegister?: (...args: any[]) => any;
|
|
987
|
+
onDelete?: (...args: any[]) => any;
|
|
988
|
+
"onList-change"?: (...args: any[]) => any;
|
|
989
|
+
}, {
|
|
990
|
+
value: string[];
|
|
991
|
+
}, {}>;
|
|
992
|
+
export default _sfc_main;
|