3h1-ui 3.0.0-next.25 → 3.0.0-next.251
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 +46593 -34991
- package/es/style.css +1750 -2464
- 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/AdvancedSearch.vue.d.ts +279 -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 +142 -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/DescriptionsForm/index.d.ts +426 -0
- package/es/ui/src/DescriptionsForm/src/DescriptionsForm.vue.d.ts +106 -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/ApiModalSelect.vue.d.ts +2211 -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 +1534 -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/index.d.ts +9574 -0
- package/es/ui/src/Upload/src/BasicUpload.vue.d.ts +2949 -0
- package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/es/ui/src/Upload/src/components/ImageUpload.vue.d.ts +410 -0
- package/es/ui/src/Upload/src/components/ThumbUrl.vue.d.ts +25 -0
- package/es/ui/src/Upload/src/components/UploadModal.vue.d.ts +1350 -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 +46755 -35153
- package/lib/style.css +1750 -2464
- 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/AdvancedSearch.vue.d.ts +279 -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 +142 -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/DescriptionsForm/index.d.ts +426 -0
- package/lib/ui/src/DescriptionsForm/src/DescriptionsForm.vue.d.ts +106 -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/ApiModalSelect.vue.d.ts +2211 -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 +1534 -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/index.d.ts +9574 -0
- package/lib/ui/src/Upload/src/BasicUpload.vue.d.ts +2949 -0
- package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/lib/ui/src/Upload/src/components/ImageUpload.vue.d.ts +410 -0
- package/lib/ui/src/Upload/src/components/ThumbUrl.vue.d.ts +25 -0
- package/lib/ui/src/Upload/src/components/UploadModal.vue.d.ts +1350 -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,254 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
columns: {
|
|
3
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
|
|
4
|
+
default: any;
|
|
5
|
+
};
|
|
6
|
+
actionColumn: {
|
|
7
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
|
|
8
|
+
default: any;
|
|
9
|
+
};
|
|
10
|
+
dataSource: {
|
|
11
|
+
type: import("vue").PropType<any[]>;
|
|
12
|
+
default: any;
|
|
13
|
+
};
|
|
14
|
+
openDrag: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
dragOptions: {
|
|
19
|
+
type: import("vue").PropType<{
|
|
20
|
+
scroll: boolean | HTMLElement;
|
|
21
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
22
|
+
sort: boolean;
|
|
23
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
24
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
25
|
+
disabled: boolean;
|
|
26
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
27
|
+
draggable: string;
|
|
28
|
+
group: string | import("sortablejs").GroupOptions;
|
|
29
|
+
animation: number;
|
|
30
|
+
chosenClass: string;
|
|
31
|
+
dataIdAttr: string;
|
|
32
|
+
delay: number;
|
|
33
|
+
delayOnTouchOnly: boolean;
|
|
34
|
+
dragClass: string;
|
|
35
|
+
dragoverBubble: boolean;
|
|
36
|
+
dropBubble: boolean;
|
|
37
|
+
emptyInsertThreshold: number;
|
|
38
|
+
easing: string;
|
|
39
|
+
fallbackClass: string;
|
|
40
|
+
fallbackOnBody: boolean;
|
|
41
|
+
fallbackTolerance: number;
|
|
42
|
+
fallbackOffset: {
|
|
43
|
+
x: number;
|
|
44
|
+
y: number;
|
|
45
|
+
};
|
|
46
|
+
forceFallback: boolean;
|
|
47
|
+
ghostClass: string;
|
|
48
|
+
handle: string;
|
|
49
|
+
ignore: string;
|
|
50
|
+
invertSwap: boolean;
|
|
51
|
+
invertedSwapThreshold: number;
|
|
52
|
+
preventOnFilter: boolean;
|
|
53
|
+
removeCloneOnHide: boolean;
|
|
54
|
+
store: {
|
|
55
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
56
|
+
set: (sortable: import("sortablejs")) => void;
|
|
57
|
+
};
|
|
58
|
+
swapThreshold: number;
|
|
59
|
+
touchStartThreshold: number;
|
|
60
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
61
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
62
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
63
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
64
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
65
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
66
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
67
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
68
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
69
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
70
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
71
|
+
forceAutoScrollFallback: boolean;
|
|
72
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
73
|
+
scrollSensitivity: number;
|
|
74
|
+
scrollSpeed: number;
|
|
75
|
+
bubbleScroll: boolean;
|
|
76
|
+
multiDrag: boolean;
|
|
77
|
+
selectedClass: string;
|
|
78
|
+
multiDragKey: string;
|
|
79
|
+
avoidImplicitDeselect: boolean;
|
|
80
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
81
|
+
revertOnSpill: boolean;
|
|
82
|
+
removeOnSpill: boolean;
|
|
83
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
84
|
+
swap: boolean;
|
|
85
|
+
swapClass: string;
|
|
86
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
87
|
+
}>;
|
|
88
|
+
default: () => {};
|
|
89
|
+
};
|
|
90
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
91
|
+
columns: {
|
|
92
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn[]>;
|
|
93
|
+
default: any;
|
|
94
|
+
};
|
|
95
|
+
actionColumn: {
|
|
96
|
+
type: import("vue").PropType<import("../types/typing").FileBasicColumn>;
|
|
97
|
+
default: any;
|
|
98
|
+
};
|
|
99
|
+
dataSource: {
|
|
100
|
+
type: import("vue").PropType<any[]>;
|
|
101
|
+
default: any;
|
|
102
|
+
};
|
|
103
|
+
openDrag: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
dragOptions: {
|
|
108
|
+
type: import("vue").PropType<{
|
|
109
|
+
scroll: boolean | HTMLElement;
|
|
110
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
111
|
+
sort: boolean;
|
|
112
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
113
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
114
|
+
disabled: boolean;
|
|
115
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
116
|
+
draggable: string;
|
|
117
|
+
group: string | import("sortablejs").GroupOptions;
|
|
118
|
+
animation: number;
|
|
119
|
+
chosenClass: string;
|
|
120
|
+
dataIdAttr: string;
|
|
121
|
+
delay: number;
|
|
122
|
+
delayOnTouchOnly: boolean;
|
|
123
|
+
dragClass: string;
|
|
124
|
+
dragoverBubble: boolean;
|
|
125
|
+
dropBubble: boolean;
|
|
126
|
+
emptyInsertThreshold: number;
|
|
127
|
+
easing: string;
|
|
128
|
+
fallbackClass: string;
|
|
129
|
+
fallbackOnBody: boolean;
|
|
130
|
+
fallbackTolerance: number;
|
|
131
|
+
fallbackOffset: {
|
|
132
|
+
x: number;
|
|
133
|
+
y: number;
|
|
134
|
+
};
|
|
135
|
+
forceFallback: boolean;
|
|
136
|
+
ghostClass: string;
|
|
137
|
+
handle: string;
|
|
138
|
+
ignore: string;
|
|
139
|
+
invertSwap: boolean;
|
|
140
|
+
invertedSwapThreshold: number;
|
|
141
|
+
preventOnFilter: boolean;
|
|
142
|
+
removeCloneOnHide: boolean;
|
|
143
|
+
store: {
|
|
144
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
145
|
+
set: (sortable: import("sortablejs")) => void;
|
|
146
|
+
};
|
|
147
|
+
swapThreshold: number;
|
|
148
|
+
touchStartThreshold: number;
|
|
149
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
150
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
151
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
152
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
153
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
154
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
155
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
156
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
157
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
158
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
159
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
160
|
+
forceAutoScrollFallback: boolean;
|
|
161
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
162
|
+
scrollSensitivity: number;
|
|
163
|
+
scrollSpeed: number;
|
|
164
|
+
bubbleScroll: boolean;
|
|
165
|
+
multiDrag: boolean;
|
|
166
|
+
selectedClass: string;
|
|
167
|
+
multiDragKey: string;
|
|
168
|
+
avoidImplicitDeselect: boolean;
|
|
169
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
170
|
+
revertOnSpill: boolean;
|
|
171
|
+
removeOnSpill: boolean;
|
|
172
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
173
|
+
swap: boolean;
|
|
174
|
+
swapClass: string;
|
|
175
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
176
|
+
}>;
|
|
177
|
+
default: () => {};
|
|
178
|
+
};
|
|
179
|
+
}>>, {
|
|
180
|
+
columns: import("../types/typing").FileBasicColumn[];
|
|
181
|
+
dataSource: any[];
|
|
182
|
+
actionColumn: import("../types/typing").FileBasicColumn;
|
|
183
|
+
openDrag: boolean;
|
|
184
|
+
dragOptions: {
|
|
185
|
+
scroll: boolean | HTMLElement;
|
|
186
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
187
|
+
sort: boolean;
|
|
188
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
189
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
190
|
+
disabled: boolean;
|
|
191
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
192
|
+
draggable: string;
|
|
193
|
+
group: string | import("sortablejs").GroupOptions;
|
|
194
|
+
animation: number;
|
|
195
|
+
chosenClass: string;
|
|
196
|
+
dataIdAttr: string;
|
|
197
|
+
delay: number;
|
|
198
|
+
delayOnTouchOnly: boolean;
|
|
199
|
+
dragClass: string;
|
|
200
|
+
dragoverBubble: boolean;
|
|
201
|
+
dropBubble: boolean;
|
|
202
|
+
emptyInsertThreshold: number;
|
|
203
|
+
easing: string;
|
|
204
|
+
fallbackClass: string;
|
|
205
|
+
fallbackOnBody: boolean;
|
|
206
|
+
fallbackTolerance: number;
|
|
207
|
+
fallbackOffset: {
|
|
208
|
+
x: number;
|
|
209
|
+
y: number;
|
|
210
|
+
};
|
|
211
|
+
forceFallback: boolean;
|
|
212
|
+
ghostClass: string;
|
|
213
|
+
handle: string;
|
|
214
|
+
ignore: string;
|
|
215
|
+
invertSwap: boolean;
|
|
216
|
+
invertedSwapThreshold: number;
|
|
217
|
+
preventOnFilter: boolean;
|
|
218
|
+
removeCloneOnHide: boolean;
|
|
219
|
+
store: {
|
|
220
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
221
|
+
set: (sortable: import("sortablejs")) => void;
|
|
222
|
+
};
|
|
223
|
+
swapThreshold: number;
|
|
224
|
+
touchStartThreshold: number;
|
|
225
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
226
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
227
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
228
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
229
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
230
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
231
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
232
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
233
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
234
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
235
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
236
|
+
forceAutoScrollFallback: boolean;
|
|
237
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
238
|
+
scrollSensitivity: number;
|
|
239
|
+
scrollSpeed: number;
|
|
240
|
+
bubbleScroll: boolean;
|
|
241
|
+
multiDrag: boolean;
|
|
242
|
+
selectedClass: string;
|
|
243
|
+
multiDragKey: string;
|
|
244
|
+
avoidImplicitDeselect: boolean;
|
|
245
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
246
|
+
revertOnSpill: boolean;
|
|
247
|
+
removeOnSpill: boolean;
|
|
248
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
249
|
+
swap: boolean;
|
|
250
|
+
swapClass: string;
|
|
251
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
252
|
+
};
|
|
253
|
+
}, {}>;
|
|
254
|
+
export default _default;
|
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
import type { UploadFile } from 'ant-design-vue';
|
|
2
|
+
import { UploadRequestOption } from 'ant-design-vue/lib/vc-upload/interface';
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
showPreviewNumber: {
|
|
5
|
+
type: import("vue").PropType<boolean>;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
emptyHidePreview: {
|
|
9
|
+
type: import("vue").PropType<boolean>;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
listType: {
|
|
13
|
+
type: import("vue").PropType<"picture" | "text" | "picture-card">;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
helpText: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
maxSize: {
|
|
21
|
+
type: import("vue").PropType<number>;
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
maxNumber: {
|
|
25
|
+
type: import("vue").PropType<number>;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
accept: {
|
|
29
|
+
type: import("vue").PropType<string[]>;
|
|
30
|
+
default: () => any[];
|
|
31
|
+
};
|
|
32
|
+
multiple: {
|
|
33
|
+
type: import("vue").PropType<boolean>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
uploadParams: {
|
|
37
|
+
type: import("vue").PropType<any>;
|
|
38
|
+
default: () => {};
|
|
39
|
+
};
|
|
40
|
+
api: {
|
|
41
|
+
type: import("vue").PropType<PromiseFn<any, any>>;
|
|
42
|
+
default: any;
|
|
43
|
+
required: boolean;
|
|
44
|
+
};
|
|
45
|
+
name: {
|
|
46
|
+
type: import("vue").PropType<string>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
filename: {
|
|
50
|
+
type: import("vue").PropType<string>;
|
|
51
|
+
default: any;
|
|
52
|
+
};
|
|
53
|
+
fileListOpenDrag: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
fileListDragOptions: {
|
|
58
|
+
type: import("vue").PropType<{
|
|
59
|
+
scroll: boolean | HTMLElement;
|
|
60
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
61
|
+
sort: boolean;
|
|
62
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
63
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
64
|
+
disabled: boolean;
|
|
65
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
66
|
+
draggable: string;
|
|
67
|
+
group: string | import("sortablejs").GroupOptions;
|
|
68
|
+
animation: number;
|
|
69
|
+
chosenClass: string;
|
|
70
|
+
dataIdAttr: string;
|
|
71
|
+
delay: number;
|
|
72
|
+
delayOnTouchOnly: boolean;
|
|
73
|
+
dragClass: string;
|
|
74
|
+
dragoverBubble: boolean;
|
|
75
|
+
dropBubble: boolean;
|
|
76
|
+
emptyInsertThreshold: number;
|
|
77
|
+
easing: string;
|
|
78
|
+
fallbackClass: string;
|
|
79
|
+
fallbackOnBody: boolean;
|
|
80
|
+
fallbackTolerance: number;
|
|
81
|
+
fallbackOffset: {
|
|
82
|
+
x: number;
|
|
83
|
+
y: number;
|
|
84
|
+
};
|
|
85
|
+
forceFallback: boolean;
|
|
86
|
+
ghostClass: string;
|
|
87
|
+
handle: string;
|
|
88
|
+
ignore: string;
|
|
89
|
+
invertSwap: boolean;
|
|
90
|
+
invertedSwapThreshold: number;
|
|
91
|
+
preventOnFilter: boolean;
|
|
92
|
+
removeCloneOnHide: boolean;
|
|
93
|
+
store: {
|
|
94
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
95
|
+
set: (sortable: import("sortablejs")) => void;
|
|
96
|
+
};
|
|
97
|
+
swapThreshold: number;
|
|
98
|
+
touchStartThreshold: number;
|
|
99
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
100
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
101
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
102
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
103
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
104
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
105
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
106
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
107
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
108
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
109
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
110
|
+
forceAutoScrollFallback: boolean;
|
|
111
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
112
|
+
scrollSensitivity: number;
|
|
113
|
+
scrollSpeed: number;
|
|
114
|
+
bubbleScroll: boolean;
|
|
115
|
+
multiDrag: boolean;
|
|
116
|
+
selectedClass: string;
|
|
117
|
+
multiDragKey: string;
|
|
118
|
+
avoidImplicitDeselect: boolean;
|
|
119
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
120
|
+
revertOnSpill: boolean;
|
|
121
|
+
removeOnSpill: boolean;
|
|
122
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
123
|
+
swap: boolean;
|
|
124
|
+
swapClass: string;
|
|
125
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
126
|
+
}>;
|
|
127
|
+
default: () => {};
|
|
128
|
+
};
|
|
129
|
+
value: {
|
|
130
|
+
type: import("vue").PropType<string[]>;
|
|
131
|
+
default: () => any[];
|
|
132
|
+
};
|
|
133
|
+
}, {
|
|
134
|
+
emit: (event: "delete" | "change" | "update:value", ...args: any[]) => void;
|
|
135
|
+
props: any;
|
|
136
|
+
t: (key: any) => any;
|
|
137
|
+
createMessage: any;
|
|
138
|
+
accept: import("vue").Ref<string[]>;
|
|
139
|
+
helpText: import("vue").Ref<string>;
|
|
140
|
+
maxNumber: import("vue").Ref<number>;
|
|
141
|
+
maxSize: import("vue").Ref<number>;
|
|
142
|
+
isInnerOperate: import("vue").Ref<boolean>;
|
|
143
|
+
getStringAccept: import("vue").ComputedRef<string>;
|
|
144
|
+
previewOpen: import("vue").Ref<boolean>;
|
|
145
|
+
previewImage: import("vue").Ref<string>;
|
|
146
|
+
previewTitle: import("vue").Ref<string>;
|
|
147
|
+
fileList: import("vue").Ref<{
|
|
148
|
+
uid: string;
|
|
149
|
+
size?: number;
|
|
150
|
+
name: string;
|
|
151
|
+
fileName?: string;
|
|
152
|
+
lastModified?: number;
|
|
153
|
+
lastModifiedDate?: Date;
|
|
154
|
+
url?: string;
|
|
155
|
+
status?: import("ant-design-vue/es/upload/interface").UploadFileStatus;
|
|
156
|
+
percent?: number;
|
|
157
|
+
thumbUrl?: string;
|
|
158
|
+
crossOrigin?: "" | "anonymous" | "use-credentials";
|
|
159
|
+
originFileObj?: {
|
|
160
|
+
readonly lastModifiedDate: Date;
|
|
161
|
+
uid: string;
|
|
162
|
+
readonly lastModified: number;
|
|
163
|
+
readonly name: string;
|
|
164
|
+
readonly webkitRelativePath: string;
|
|
165
|
+
readonly size: number;
|
|
166
|
+
readonly type: string;
|
|
167
|
+
arrayBuffer: () => Promise<ArrayBuffer>;
|
|
168
|
+
slice: (start?: number, end?: number, contentType?: string) => Blob;
|
|
169
|
+
stream: () => ReadableStream<Uint8Array>;
|
|
170
|
+
text: () => Promise<string>;
|
|
171
|
+
};
|
|
172
|
+
response?: unknown;
|
|
173
|
+
error?: any;
|
|
174
|
+
linkProps?: any;
|
|
175
|
+
type?: string;
|
|
176
|
+
xhr?: unknown;
|
|
177
|
+
preview?: string;
|
|
178
|
+
}[]>;
|
|
179
|
+
isLtMsg: import("vue").Ref<boolean>;
|
|
180
|
+
isActMsg: import("vue").Ref<boolean>;
|
|
181
|
+
getBase64: <T_1 extends string | ArrayBuffer>(file: File) => Promise<T_1>;
|
|
182
|
+
handlePreview: (file: UploadFile) => Promise<void>;
|
|
183
|
+
handleRemove: (file: UploadFile) => Promise<void>;
|
|
184
|
+
handleCancel: () => void;
|
|
185
|
+
beforeUpload: (file: File) => any;
|
|
186
|
+
customRequest: (info: UploadRequestOption<any>) => Promise<void>;
|
|
187
|
+
getValue: () => any;
|
|
188
|
+
readonly PlusOutlined: import("@ant-design/icons-vue/lib/icons/PlusOutlined").PlusOutlinedIconType;
|
|
189
|
+
readonly Modal: any;
|
|
190
|
+
readonly Upload: any;
|
|
191
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("delete" | "change" | "update:value")[], "delete" | "change" | "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
192
|
+
showPreviewNumber: {
|
|
193
|
+
type: import("vue").PropType<boolean>;
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
196
|
+
emptyHidePreview: {
|
|
197
|
+
type: import("vue").PropType<boolean>;
|
|
198
|
+
default: boolean;
|
|
199
|
+
};
|
|
200
|
+
listType: {
|
|
201
|
+
type: import("vue").PropType<"picture" | "text" | "picture-card">;
|
|
202
|
+
default: string;
|
|
203
|
+
};
|
|
204
|
+
helpText: {
|
|
205
|
+
type: import("vue").PropType<string>;
|
|
206
|
+
default: string;
|
|
207
|
+
};
|
|
208
|
+
maxSize: {
|
|
209
|
+
type: import("vue").PropType<number>;
|
|
210
|
+
default: number;
|
|
211
|
+
};
|
|
212
|
+
maxNumber: {
|
|
213
|
+
type: import("vue").PropType<number>;
|
|
214
|
+
default: number;
|
|
215
|
+
};
|
|
216
|
+
accept: {
|
|
217
|
+
type: import("vue").PropType<string[]>;
|
|
218
|
+
default: () => any[];
|
|
219
|
+
};
|
|
220
|
+
multiple: {
|
|
221
|
+
type: import("vue").PropType<boolean>;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
uploadParams: {
|
|
225
|
+
type: import("vue").PropType<any>;
|
|
226
|
+
default: () => {};
|
|
227
|
+
};
|
|
228
|
+
api: {
|
|
229
|
+
type: import("vue").PropType<PromiseFn<any, any>>;
|
|
230
|
+
default: any;
|
|
231
|
+
required: boolean;
|
|
232
|
+
};
|
|
233
|
+
name: {
|
|
234
|
+
type: import("vue").PropType<string>;
|
|
235
|
+
default: string;
|
|
236
|
+
};
|
|
237
|
+
filename: {
|
|
238
|
+
type: import("vue").PropType<string>;
|
|
239
|
+
default: any;
|
|
240
|
+
};
|
|
241
|
+
fileListOpenDrag: {
|
|
242
|
+
type: BooleanConstructor;
|
|
243
|
+
default: boolean;
|
|
244
|
+
};
|
|
245
|
+
fileListDragOptions: {
|
|
246
|
+
type: import("vue").PropType<{
|
|
247
|
+
scroll: boolean | HTMLElement;
|
|
248
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
249
|
+
sort: boolean;
|
|
250
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
251
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
252
|
+
disabled: boolean;
|
|
253
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
254
|
+
draggable: string;
|
|
255
|
+
group: string | import("sortablejs").GroupOptions;
|
|
256
|
+
animation: number;
|
|
257
|
+
chosenClass: string;
|
|
258
|
+
dataIdAttr: string;
|
|
259
|
+
delay: number;
|
|
260
|
+
delayOnTouchOnly: boolean;
|
|
261
|
+
dragClass: string;
|
|
262
|
+
dragoverBubble: boolean;
|
|
263
|
+
dropBubble: boolean;
|
|
264
|
+
emptyInsertThreshold: number;
|
|
265
|
+
easing: string;
|
|
266
|
+
fallbackClass: string;
|
|
267
|
+
fallbackOnBody: boolean;
|
|
268
|
+
fallbackTolerance: number;
|
|
269
|
+
fallbackOffset: {
|
|
270
|
+
x: number;
|
|
271
|
+
y: number;
|
|
272
|
+
};
|
|
273
|
+
forceFallback: boolean;
|
|
274
|
+
ghostClass: string;
|
|
275
|
+
handle: string;
|
|
276
|
+
ignore: string;
|
|
277
|
+
invertSwap: boolean;
|
|
278
|
+
invertedSwapThreshold: number;
|
|
279
|
+
preventOnFilter: boolean;
|
|
280
|
+
removeCloneOnHide: boolean;
|
|
281
|
+
store: {
|
|
282
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
283
|
+
set: (sortable: import("sortablejs")) => void;
|
|
284
|
+
};
|
|
285
|
+
swapThreshold: number;
|
|
286
|
+
touchStartThreshold: number;
|
|
287
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
288
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
289
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
290
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
291
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
292
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
293
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
294
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
295
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
296
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
297
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
298
|
+
forceAutoScrollFallback: boolean;
|
|
299
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
300
|
+
scrollSensitivity: number;
|
|
301
|
+
scrollSpeed: number;
|
|
302
|
+
bubbleScroll: boolean;
|
|
303
|
+
multiDrag: boolean;
|
|
304
|
+
selectedClass: string;
|
|
305
|
+
multiDragKey: string;
|
|
306
|
+
avoidImplicitDeselect: boolean;
|
|
307
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
308
|
+
revertOnSpill: boolean;
|
|
309
|
+
removeOnSpill: boolean;
|
|
310
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
311
|
+
swap: boolean;
|
|
312
|
+
swapClass: string;
|
|
313
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
314
|
+
}>;
|
|
315
|
+
default: () => {};
|
|
316
|
+
};
|
|
317
|
+
value: {
|
|
318
|
+
type: import("vue").PropType<string[]>;
|
|
319
|
+
default: () => any[];
|
|
320
|
+
};
|
|
321
|
+
}>> & {
|
|
322
|
+
onChange?: (...args: any[]) => any;
|
|
323
|
+
"onUpdate:value"?: (...args: any[]) => any;
|
|
324
|
+
onDelete?: (...args: any[]) => any;
|
|
325
|
+
}, {
|
|
326
|
+
value: string[];
|
|
327
|
+
name: string;
|
|
328
|
+
api: PromiseFn<any, any>;
|
|
329
|
+
showPreviewNumber: boolean;
|
|
330
|
+
emptyHidePreview: boolean;
|
|
331
|
+
listType: "picture" | "text" | "picture-card";
|
|
332
|
+
helpText: string;
|
|
333
|
+
maxSize: number;
|
|
334
|
+
maxNumber: number;
|
|
335
|
+
accept: string[];
|
|
336
|
+
multiple: boolean;
|
|
337
|
+
uploadParams: any;
|
|
338
|
+
filename: string;
|
|
339
|
+
fileListOpenDrag: boolean;
|
|
340
|
+
fileListDragOptions: {
|
|
341
|
+
scroll: boolean | HTMLElement;
|
|
342
|
+
filter: string | ((this: import("sortablejs"), event: Event | TouchEvent, target: HTMLElement, sortable: import("sortablejs")) => boolean);
|
|
343
|
+
sort: boolean;
|
|
344
|
+
onChange: (evt: import("sortablejs").SortableEvent) => void;
|
|
345
|
+
onSelect: (event: import("sortablejs").SortableEvent) => void;
|
|
346
|
+
disabled: boolean;
|
|
347
|
+
direction: ((evt: import("sortablejs").SortableEvent, target: HTMLElement, dragEl: HTMLElement) => import("sortablejs").Direction) | import("sortablejs").Direction;
|
|
348
|
+
draggable: string;
|
|
349
|
+
group: string | import("sortablejs").GroupOptions;
|
|
350
|
+
animation: number;
|
|
351
|
+
chosenClass: string;
|
|
352
|
+
dataIdAttr: string;
|
|
353
|
+
delay: number;
|
|
354
|
+
delayOnTouchOnly: boolean;
|
|
355
|
+
dragClass: string;
|
|
356
|
+
dragoverBubble: boolean;
|
|
357
|
+
dropBubble: boolean;
|
|
358
|
+
emptyInsertThreshold: number;
|
|
359
|
+
easing: string;
|
|
360
|
+
fallbackClass: string;
|
|
361
|
+
fallbackOnBody: boolean;
|
|
362
|
+
fallbackTolerance: number;
|
|
363
|
+
fallbackOffset: {
|
|
364
|
+
x: number;
|
|
365
|
+
y: number;
|
|
366
|
+
};
|
|
367
|
+
forceFallback: boolean;
|
|
368
|
+
ghostClass: string;
|
|
369
|
+
handle: string;
|
|
370
|
+
ignore: string;
|
|
371
|
+
invertSwap: boolean;
|
|
372
|
+
invertedSwapThreshold: number;
|
|
373
|
+
preventOnFilter: boolean;
|
|
374
|
+
removeCloneOnHide: boolean;
|
|
375
|
+
store: {
|
|
376
|
+
get: (sortable: import("sortablejs")) => string[];
|
|
377
|
+
set: (sortable: import("sortablejs")) => void;
|
|
378
|
+
};
|
|
379
|
+
swapThreshold: number;
|
|
380
|
+
touchStartThreshold: number;
|
|
381
|
+
setData: (dataTransfer: DataTransfer, draggedElement: HTMLElement) => void;
|
|
382
|
+
onStart: (event: import("sortablejs").SortableEvent) => void;
|
|
383
|
+
onAdd: (event: import("sortablejs").SortableEvent) => void;
|
|
384
|
+
onClone: (event: import("sortablejs").SortableEvent) => void;
|
|
385
|
+
onChoose: (event: import("sortablejs").SortableEvent) => void;
|
|
386
|
+
onUnchoose: (event: import("sortablejs").SortableEvent) => void;
|
|
387
|
+
onUpdate: (event: import("sortablejs").SortableEvent) => void;
|
|
388
|
+
onSort: (event: import("sortablejs").SortableEvent) => void;
|
|
389
|
+
onRemove: (event: import("sortablejs").SortableEvent) => void;
|
|
390
|
+
onFilter: (event: import("sortablejs").SortableEvent) => void;
|
|
391
|
+
onMove: (evt: import("sortablejs").MoveEvent, originalEvent: Event) => boolean | void | 1 | -1;
|
|
392
|
+
forceAutoScrollFallback: boolean;
|
|
393
|
+
scrollFn: (this: import("sortablejs"), offsetX: number, offsetY: number, originalEvent: Event, touchEvt: TouchEvent, hoverTargetEl: HTMLElement) => void | "continue";
|
|
394
|
+
scrollSensitivity: number;
|
|
395
|
+
scrollSpeed: number;
|
|
396
|
+
bubbleScroll: boolean;
|
|
397
|
+
multiDrag: boolean;
|
|
398
|
+
selectedClass: string;
|
|
399
|
+
multiDragKey: string;
|
|
400
|
+
avoidImplicitDeselect: boolean;
|
|
401
|
+
onDeselect: (event: import("sortablejs").SortableEvent) => void;
|
|
402
|
+
revertOnSpill: boolean;
|
|
403
|
+
removeOnSpill: boolean;
|
|
404
|
+
onSpill: (evt: import("sortablejs").SortableEvent) => void;
|
|
405
|
+
swap: boolean;
|
|
406
|
+
swapClass: string;
|
|
407
|
+
onAfterEnd: <T = any, R = any>(params: T) => R;
|
|
408
|
+
};
|
|
409
|
+
}, {}>;
|
|
410
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
fileUrl: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
fileName: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}, {
|
|
11
|
+
readonly Image: any;
|
|
12
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
fileUrl: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
fileName: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
fileName: string;
|
|
23
|
+
fileUrl: string;
|
|
24
|
+
}, {}>;
|
|
25
|
+
export default _sfc_main;
|