3h1-ui 3.0.0-next.24 → 3.0.0-next.240
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 +8 -7
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* @description: Handling development events
|
|
4
|
+
*/
|
|
5
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
loading: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Can it be expanded
|
|
15
|
+
*/
|
|
16
|
+
canExpan: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Warm reminder on the right side of the title
|
|
22
|
+
*/
|
|
23
|
+
helpMessage: {
|
|
24
|
+
type: PropType<string | string[]>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Whether to trigger window.resize when expanding and contracting,
|
|
29
|
+
* Can adapt to tables and forms, when the form shrinks, the form triggers resize to adapt to the height
|
|
30
|
+
*/
|
|
31
|
+
triggerWindowResize: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Delayed loading time
|
|
36
|
+
*/
|
|
37
|
+
lazyTime: {
|
|
38
|
+
type: NumberConstructor;
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
41
|
+
}, {
|
|
42
|
+
props: any;
|
|
43
|
+
show: import("vue").Ref<boolean>;
|
|
44
|
+
prefixCls: string;
|
|
45
|
+
handleExpand: (val: boolean) => void;
|
|
46
|
+
readonly Skeleton: {
|
|
47
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
active: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: any;
|
|
51
|
+
};
|
|
52
|
+
loading: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: any;
|
|
55
|
+
};
|
|
56
|
+
prefixCls: StringConstructor;
|
|
57
|
+
avatar: {
|
|
58
|
+
type: PropType<boolean | {
|
|
59
|
+
size?: number | "small" | "default" | "large";
|
|
60
|
+
prefixCls?: string;
|
|
61
|
+
shape?: "circle" | "square";
|
|
62
|
+
}>;
|
|
63
|
+
default: boolean | {
|
|
64
|
+
size?: number | "small" | "default" | "large";
|
|
65
|
+
prefixCls?: string;
|
|
66
|
+
shape?: "circle" | "square";
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
title: {
|
|
70
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
71
|
+
prefixCls: StringConstructor;
|
|
72
|
+
width: {
|
|
73
|
+
type: PropType<string | number>;
|
|
74
|
+
};
|
|
75
|
+
}>>>;
|
|
76
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
77
|
+
prefixCls: StringConstructor;
|
|
78
|
+
width: {
|
|
79
|
+
type: PropType<string | number>;
|
|
80
|
+
};
|
|
81
|
+
}>>;
|
|
82
|
+
};
|
|
83
|
+
paragraph: {
|
|
84
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
85
|
+
prefixCls: StringConstructor;
|
|
86
|
+
width: {
|
|
87
|
+
type: PropType<string | number | (string | number)[]>;
|
|
88
|
+
};
|
|
89
|
+
rows: NumberConstructor;
|
|
90
|
+
}>>>;
|
|
91
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
92
|
+
prefixCls: StringConstructor;
|
|
93
|
+
width: {
|
|
94
|
+
type: PropType<string | number | (string | number)[]>;
|
|
95
|
+
};
|
|
96
|
+
rows: NumberConstructor;
|
|
97
|
+
}>>;
|
|
98
|
+
};
|
|
99
|
+
round: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
default: any;
|
|
102
|
+
};
|
|
103
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
104
|
+
active: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: any;
|
|
107
|
+
};
|
|
108
|
+
loading: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: any;
|
|
111
|
+
};
|
|
112
|
+
prefixCls: StringConstructor;
|
|
113
|
+
avatar: {
|
|
114
|
+
type: PropType<boolean | {
|
|
115
|
+
size?: number | "small" | "default" | "large";
|
|
116
|
+
prefixCls?: string;
|
|
117
|
+
shape?: "circle" | "square";
|
|
118
|
+
}>;
|
|
119
|
+
default: boolean | {
|
|
120
|
+
size?: number | "small" | "default" | "large";
|
|
121
|
+
prefixCls?: string;
|
|
122
|
+
shape?: "circle" | "square";
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
title: {
|
|
126
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
127
|
+
prefixCls: StringConstructor;
|
|
128
|
+
width: {
|
|
129
|
+
type: PropType<string | number>;
|
|
130
|
+
};
|
|
131
|
+
}>>>;
|
|
132
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
133
|
+
prefixCls: StringConstructor;
|
|
134
|
+
width: {
|
|
135
|
+
type: PropType<string | number>;
|
|
136
|
+
};
|
|
137
|
+
}>>;
|
|
138
|
+
};
|
|
139
|
+
paragraph: {
|
|
140
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
141
|
+
prefixCls: StringConstructor;
|
|
142
|
+
width: {
|
|
143
|
+
type: PropType<string | number | (string | number)[]>;
|
|
144
|
+
};
|
|
145
|
+
rows: NumberConstructor;
|
|
146
|
+
}>>>;
|
|
147
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
148
|
+
prefixCls: StringConstructor;
|
|
149
|
+
width: {
|
|
150
|
+
type: PropType<string | number | (string | number)[]>;
|
|
151
|
+
};
|
|
152
|
+
rows: NumberConstructor;
|
|
153
|
+
}>>;
|
|
154
|
+
};
|
|
155
|
+
round: {
|
|
156
|
+
type: BooleanConstructor;
|
|
157
|
+
default: any;
|
|
158
|
+
};
|
|
159
|
+
}>>, {
|
|
160
|
+
title: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
161
|
+
prefixCls: StringConstructor;
|
|
162
|
+
width: {
|
|
163
|
+
type: PropType<string | number>;
|
|
164
|
+
};
|
|
165
|
+
}>>;
|
|
166
|
+
round: boolean;
|
|
167
|
+
active: boolean;
|
|
168
|
+
loading: boolean;
|
|
169
|
+
avatar: boolean | {
|
|
170
|
+
size?: number | "small" | "default" | "large";
|
|
171
|
+
prefixCls?: string;
|
|
172
|
+
shape?: "circle" | "square";
|
|
173
|
+
};
|
|
174
|
+
paragraph: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
175
|
+
prefixCls: StringConstructor;
|
|
176
|
+
width: {
|
|
177
|
+
type: PropType<string | number | (string | number)[]>;
|
|
178
|
+
};
|
|
179
|
+
rows: NumberConstructor;
|
|
180
|
+
}>>;
|
|
181
|
+
}, true, {}, {}, {
|
|
182
|
+
P: {};
|
|
183
|
+
B: {};
|
|
184
|
+
D: {};
|
|
185
|
+
C: {};
|
|
186
|
+
M: {};
|
|
187
|
+
Defaults: {};
|
|
188
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
189
|
+
active: {
|
|
190
|
+
type: BooleanConstructor;
|
|
191
|
+
default: any;
|
|
192
|
+
};
|
|
193
|
+
loading: {
|
|
194
|
+
type: BooleanConstructor;
|
|
195
|
+
default: any;
|
|
196
|
+
};
|
|
197
|
+
prefixCls: StringConstructor;
|
|
198
|
+
avatar: {
|
|
199
|
+
type: PropType<boolean | {
|
|
200
|
+
size?: number | "small" | "default" | "large";
|
|
201
|
+
prefixCls?: string;
|
|
202
|
+
shape?: "circle" | "square";
|
|
203
|
+
}>;
|
|
204
|
+
default: boolean | {
|
|
205
|
+
size?: number | "small" | "default" | "large";
|
|
206
|
+
prefixCls?: string;
|
|
207
|
+
shape?: "circle" | "square";
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
title: {
|
|
211
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
212
|
+
prefixCls: StringConstructor;
|
|
213
|
+
width: {
|
|
214
|
+
type: PropType<string | number>;
|
|
215
|
+
};
|
|
216
|
+
}>>>;
|
|
217
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
218
|
+
prefixCls: StringConstructor;
|
|
219
|
+
width: {
|
|
220
|
+
type: PropType<string | number>;
|
|
221
|
+
};
|
|
222
|
+
}>>;
|
|
223
|
+
};
|
|
224
|
+
paragraph: {
|
|
225
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
226
|
+
prefixCls: StringConstructor;
|
|
227
|
+
width: {
|
|
228
|
+
type: PropType<string | number | (string | number)[]>;
|
|
229
|
+
};
|
|
230
|
+
rows: NumberConstructor;
|
|
231
|
+
}>>>;
|
|
232
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
233
|
+
prefixCls: StringConstructor;
|
|
234
|
+
width: {
|
|
235
|
+
type: PropType<string | number | (string | number)[]>;
|
|
236
|
+
};
|
|
237
|
+
rows: NumberConstructor;
|
|
238
|
+
}>>;
|
|
239
|
+
};
|
|
240
|
+
round: {
|
|
241
|
+
type: BooleanConstructor;
|
|
242
|
+
default: any;
|
|
243
|
+
};
|
|
244
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, {
|
|
245
|
+
title: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
246
|
+
prefixCls: StringConstructor;
|
|
247
|
+
width: {
|
|
248
|
+
type: PropType<string | number>;
|
|
249
|
+
};
|
|
250
|
+
}>>;
|
|
251
|
+
round: boolean;
|
|
252
|
+
active: boolean;
|
|
253
|
+
loading: boolean;
|
|
254
|
+
avatar: boolean | {
|
|
255
|
+
size?: number | "small" | "default" | "large";
|
|
256
|
+
prefixCls?: string;
|
|
257
|
+
shape?: "circle" | "square";
|
|
258
|
+
};
|
|
259
|
+
paragraph: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
260
|
+
prefixCls: StringConstructor;
|
|
261
|
+
width: {
|
|
262
|
+
type: PropType<string | number | (string | number)[]>;
|
|
263
|
+
};
|
|
264
|
+
rows: NumberConstructor;
|
|
265
|
+
}>>;
|
|
266
|
+
}>;
|
|
267
|
+
__isFragment?: never;
|
|
268
|
+
__isTeleport?: never;
|
|
269
|
+
__isSuspense?: never;
|
|
270
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
271
|
+
active: {
|
|
272
|
+
type: BooleanConstructor;
|
|
273
|
+
default: any;
|
|
274
|
+
};
|
|
275
|
+
loading: {
|
|
276
|
+
type: BooleanConstructor;
|
|
277
|
+
default: any;
|
|
278
|
+
};
|
|
279
|
+
prefixCls: StringConstructor;
|
|
280
|
+
avatar: {
|
|
281
|
+
type: PropType<boolean | {
|
|
282
|
+
size?: number | "small" | "default" | "large";
|
|
283
|
+
prefixCls?: string;
|
|
284
|
+
shape?: "circle" | "square";
|
|
285
|
+
}>;
|
|
286
|
+
default: boolean | {
|
|
287
|
+
size?: number | "small" | "default" | "large";
|
|
288
|
+
prefixCls?: string;
|
|
289
|
+
shape?: "circle" | "square";
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
title: {
|
|
293
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
294
|
+
prefixCls: StringConstructor;
|
|
295
|
+
width: {
|
|
296
|
+
type: PropType<string | number>;
|
|
297
|
+
};
|
|
298
|
+
}>>>;
|
|
299
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
300
|
+
prefixCls: StringConstructor;
|
|
301
|
+
width: {
|
|
302
|
+
type: PropType<string | number>;
|
|
303
|
+
};
|
|
304
|
+
}>>;
|
|
305
|
+
};
|
|
306
|
+
paragraph: {
|
|
307
|
+
type: PropType<boolean | Partial<import("vue").ExtractPropTypes<{
|
|
308
|
+
prefixCls: StringConstructor;
|
|
309
|
+
width: {
|
|
310
|
+
type: PropType<string | number | (string | number)[]>;
|
|
311
|
+
};
|
|
312
|
+
rows: NumberConstructor;
|
|
313
|
+
}>>>;
|
|
314
|
+
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
315
|
+
prefixCls: StringConstructor;
|
|
316
|
+
width: {
|
|
317
|
+
type: PropType<string | number | (string | number)[]>;
|
|
318
|
+
};
|
|
319
|
+
rows: NumberConstructor;
|
|
320
|
+
}>>;
|
|
321
|
+
};
|
|
322
|
+
round: {
|
|
323
|
+
type: BooleanConstructor;
|
|
324
|
+
default: any;
|
|
325
|
+
};
|
|
326
|
+
}>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
327
|
+
title: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
328
|
+
prefixCls: StringConstructor;
|
|
329
|
+
width: {
|
|
330
|
+
type: PropType<string | number>;
|
|
331
|
+
};
|
|
332
|
+
}>>;
|
|
333
|
+
round: boolean;
|
|
334
|
+
active: boolean;
|
|
335
|
+
loading: boolean;
|
|
336
|
+
avatar: boolean | {
|
|
337
|
+
size?: number | "small" | "default" | "large";
|
|
338
|
+
prefixCls?: string;
|
|
339
|
+
shape?: "circle" | "square";
|
|
340
|
+
};
|
|
341
|
+
paragraph: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
342
|
+
prefixCls: StringConstructor;
|
|
343
|
+
width: {
|
|
344
|
+
type: PropType<string | number | (string | number)[]>;
|
|
345
|
+
};
|
|
346
|
+
rows: NumberConstructor;
|
|
347
|
+
}>>;
|
|
348
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & {
|
|
349
|
+
readonly Button: import("vue").DefineComponent<{
|
|
350
|
+
size: PropType<"small" | "default" | "large">;
|
|
351
|
+
block: BooleanConstructor;
|
|
352
|
+
prefixCls: StringConstructor;
|
|
353
|
+
shape: PropType<"default" | "circle" | "round" | "square">;
|
|
354
|
+
active: {
|
|
355
|
+
type: BooleanConstructor;
|
|
356
|
+
default: any;
|
|
357
|
+
};
|
|
358
|
+
}, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
359
|
+
size: PropType<"small" | "default" | "large">;
|
|
360
|
+
block: BooleanConstructor;
|
|
361
|
+
prefixCls: StringConstructor;
|
|
362
|
+
shape: PropType<"default" | "circle" | "round" | "square">;
|
|
363
|
+
active: {
|
|
364
|
+
type: BooleanConstructor;
|
|
365
|
+
default: any;
|
|
366
|
+
};
|
|
367
|
+
}>>, {
|
|
368
|
+
block: boolean;
|
|
369
|
+
active: boolean;
|
|
370
|
+
}, {}>;
|
|
371
|
+
readonly Avatar: import("vue").DefineComponent<{
|
|
372
|
+
shape: PropType<"circle" | "square">;
|
|
373
|
+
prefixCls: StringConstructor;
|
|
374
|
+
size: PropType<number | "small" | "default" | "large">;
|
|
375
|
+
active: {
|
|
376
|
+
type: BooleanConstructor;
|
|
377
|
+
default: any;
|
|
378
|
+
};
|
|
379
|
+
}, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
380
|
+
shape: PropType<"circle" | "square">;
|
|
381
|
+
prefixCls: StringConstructor;
|
|
382
|
+
size: PropType<number | "small" | "default" | "large">;
|
|
383
|
+
active: {
|
|
384
|
+
type: BooleanConstructor;
|
|
385
|
+
default: any;
|
|
386
|
+
};
|
|
387
|
+
}>>, {
|
|
388
|
+
active: boolean;
|
|
389
|
+
}, {}>;
|
|
390
|
+
readonly Input: import("vue").DefineComponent<{
|
|
391
|
+
size: PropType<"small" | "default" | "large">;
|
|
392
|
+
block: BooleanConstructor;
|
|
393
|
+
active: {
|
|
394
|
+
type: BooleanConstructor;
|
|
395
|
+
default: any;
|
|
396
|
+
};
|
|
397
|
+
prefixCls: StringConstructor;
|
|
398
|
+
}, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
399
|
+
size: PropType<"small" | "default" | "large">;
|
|
400
|
+
block: BooleanConstructor;
|
|
401
|
+
active: {
|
|
402
|
+
type: BooleanConstructor;
|
|
403
|
+
default: any;
|
|
404
|
+
};
|
|
405
|
+
prefixCls: StringConstructor;
|
|
406
|
+
}>>, {
|
|
407
|
+
block: boolean;
|
|
408
|
+
active: boolean;
|
|
409
|
+
}, {}>;
|
|
410
|
+
readonly Image: import("vue").DefineComponent<Omit<{
|
|
411
|
+
prefixCls: StringConstructor;
|
|
412
|
+
size: PropType<number | "small" | "default" | "large">;
|
|
413
|
+
shape: PropType<"default" | "circle" | "round" | "square">;
|
|
414
|
+
active: {
|
|
415
|
+
type: BooleanConstructor;
|
|
416
|
+
default: any;
|
|
417
|
+
}; /**
|
|
418
|
+
* @description: Handling development events
|
|
419
|
+
*/
|
|
420
|
+
}, "size" | "active" | "shape">, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<Omit<{
|
|
421
|
+
prefixCls: StringConstructor;
|
|
422
|
+
size: PropType<number | "small" | "default" | "large">;
|
|
423
|
+
shape: PropType<"default" | "circle" | "round" | "square">;
|
|
424
|
+
active: {
|
|
425
|
+
type: BooleanConstructor;
|
|
426
|
+
default: any;
|
|
427
|
+
};
|
|
428
|
+
}, "size" | "active" | "shape">>>, {}, {}>;
|
|
429
|
+
};
|
|
430
|
+
readonly CollapseTransition: import("vue").DefineComponent<{}, {
|
|
431
|
+
on: {
|
|
432
|
+
beforeEnter(el: any): void;
|
|
433
|
+
enter(el: any): void;
|
|
434
|
+
afterEnter(el: any): void;
|
|
435
|
+
beforeLeave(el: any): void;
|
|
436
|
+
leave(el: any): void;
|
|
437
|
+
afterLeave(el: any): void;
|
|
438
|
+
};
|
|
439
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
440
|
+
CollapseHeader: import("vue").DefineComponent<{
|
|
441
|
+
prefixCls: {
|
|
442
|
+
type: StringConstructor;
|
|
443
|
+
};
|
|
444
|
+
helpMessage: {
|
|
445
|
+
type: globalThis.PropType<string | string[]>;
|
|
446
|
+
default: string;
|
|
447
|
+
};
|
|
448
|
+
title: {
|
|
449
|
+
type: StringConstructor;
|
|
450
|
+
};
|
|
451
|
+
show: {
|
|
452
|
+
type: BooleanConstructor;
|
|
453
|
+
};
|
|
454
|
+
canExpan: {
|
|
455
|
+
type: BooleanConstructor;
|
|
456
|
+
};
|
|
457
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
458
|
+
prefixCls: {
|
|
459
|
+
type: StringConstructor;
|
|
460
|
+
};
|
|
461
|
+
helpMessage: {
|
|
462
|
+
type: globalThis.PropType<string | string[]>;
|
|
463
|
+
default: string;
|
|
464
|
+
};
|
|
465
|
+
title: {
|
|
466
|
+
type: StringConstructor;
|
|
467
|
+
};
|
|
468
|
+
show: {
|
|
469
|
+
type: BooleanConstructor;
|
|
470
|
+
};
|
|
471
|
+
canExpan: {
|
|
472
|
+
type: BooleanConstructor;
|
|
473
|
+
};
|
|
474
|
+
}>> & {
|
|
475
|
+
onExpand?: (...args: any[]) => any;
|
|
476
|
+
}, {
|
|
477
|
+
helpMessage: string | string[];
|
|
478
|
+
canExpan: boolean;
|
|
479
|
+
show: boolean;
|
|
480
|
+
}, {}>;
|
|
481
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
482
|
+
title: {
|
|
483
|
+
type: StringConstructor;
|
|
484
|
+
default: string;
|
|
485
|
+
};
|
|
486
|
+
loading: {
|
|
487
|
+
type: BooleanConstructor;
|
|
488
|
+
};
|
|
489
|
+
/**
|
|
490
|
+
* Can it be expanded
|
|
491
|
+
*/
|
|
492
|
+
canExpan: {
|
|
493
|
+
type: BooleanConstructor;
|
|
494
|
+
default: boolean;
|
|
495
|
+
};
|
|
496
|
+
/**
|
|
497
|
+
* Warm reminder on the right side of the title
|
|
498
|
+
*/
|
|
499
|
+
helpMessage: {
|
|
500
|
+
type: PropType<string | string[]>;
|
|
501
|
+
default: string;
|
|
502
|
+
};
|
|
503
|
+
/**
|
|
504
|
+
* Whether to trigger window.resize when expanding and contracting,
|
|
505
|
+
* Can adapt to tables and forms, when the form shrinks, the form triggers resize to adapt to the height
|
|
506
|
+
*/
|
|
507
|
+
triggerWindowResize: {
|
|
508
|
+
type: BooleanConstructor;
|
|
509
|
+
};
|
|
510
|
+
/**
|
|
511
|
+
* Delayed loading time
|
|
512
|
+
*/
|
|
513
|
+
lazyTime: {
|
|
514
|
+
type: NumberConstructor;
|
|
515
|
+
default: number;
|
|
516
|
+
};
|
|
517
|
+
}>>, {
|
|
518
|
+
title: string;
|
|
519
|
+
loading: boolean;
|
|
520
|
+
helpMessage: string | string[];
|
|
521
|
+
canExpan: boolean;
|
|
522
|
+
triggerWindowResize: boolean;
|
|
523
|
+
lazyTime: number;
|
|
524
|
+
}, {}>;
|
|
525
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
prefixCls: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
helpMessage: {
|
|
6
|
+
type: PropType<string | string[]>;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
title: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
show: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
};
|
|
15
|
+
canExpan: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
};
|
|
18
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
prefixCls: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
};
|
|
22
|
+
helpMessage: {
|
|
23
|
+
type: PropType<string | string[]>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
};
|
|
29
|
+
show: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
};
|
|
32
|
+
canExpan: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
}>> & {
|
|
36
|
+
onExpand?: (...args: any[]) => any;
|
|
37
|
+
}, {
|
|
38
|
+
helpMessage: string | string[];
|
|
39
|
+
canExpan: boolean;
|
|
40
|
+
show: boolean;
|
|
41
|
+
}, {}>;
|
|
42
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type ScrollType = 'default' | 'main';
|
|
2
|
+
export interface CollapseContainerOptions {
|
|
3
|
+
canExpand?: boolean;
|
|
4
|
+
title?: string;
|
|
5
|
+
helpMessage?: Array<any> | string;
|
|
6
|
+
}
|
|
7
|
+
export interface ScrollContainerOptions {
|
|
8
|
+
enableScroll?: boolean;
|
|
9
|
+
type?: ScrollType;
|
|
10
|
+
}
|
|
11
|
+
export type ScrollActionType = RefType<{
|
|
12
|
+
scrollBottom: () => void;
|
|
13
|
+
getScrollWrap: () => Nullable<HTMLElement>;
|
|
14
|
+
scrollTo: (top: number) => void;
|
|
15
|
+
}>;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import type { ContextMenuItem, Axis } from './typing';
|
|
2
|
+
import type { CSSProperties, PropType } from 'vue';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
width: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
default: number;
|
|
7
|
+
};
|
|
8
|
+
customEvent: {
|
|
9
|
+
type: PropType<Event>;
|
|
10
|
+
default: any;
|
|
11
|
+
};
|
|
12
|
+
styles: {
|
|
13
|
+
type: PropType<CSSProperties>;
|
|
14
|
+
};
|
|
15
|
+
showIcon: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
axis: {
|
|
20
|
+
type: PropType<Axis>;
|
|
21
|
+
default(): {
|
|
22
|
+
x: number;
|
|
23
|
+
y: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
items: {
|
|
27
|
+
type: PropType<ContextMenuItem[]>;
|
|
28
|
+
default(): any[];
|
|
29
|
+
};
|
|
30
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
width: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
default: number;
|
|
34
|
+
};
|
|
35
|
+
customEvent: {
|
|
36
|
+
type: PropType<Event>;
|
|
37
|
+
default: any;
|
|
38
|
+
};
|
|
39
|
+
styles: {
|
|
40
|
+
type: PropType<CSSProperties>;
|
|
41
|
+
};
|
|
42
|
+
showIcon: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
axis: {
|
|
47
|
+
type: PropType<Axis>;
|
|
48
|
+
default(): {
|
|
49
|
+
x: number;
|
|
50
|
+
y: number;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
items: {
|
|
54
|
+
type: PropType<ContextMenuItem[]>;
|
|
55
|
+
default(): any[];
|
|
56
|
+
};
|
|
57
|
+
}>>, {
|
|
58
|
+
width: number;
|
|
59
|
+
items: ContextMenuItem[];
|
|
60
|
+
showIcon: boolean;
|
|
61
|
+
customEvent: Event;
|
|
62
|
+
axis: Axis;
|
|
63
|
+
}, {}>;
|
|
64
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export interface Axis {
|
|
2
|
+
x: number;
|
|
3
|
+
y: number;
|
|
4
|
+
}
|
|
5
|
+
export interface ContextMenuItem {
|
|
6
|
+
label: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
hidden?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
handler?: Fn;
|
|
11
|
+
divider?: boolean;
|
|
12
|
+
children?: ContextMenuItem[];
|
|
13
|
+
}
|
|
14
|
+
export interface CreateContextOptions {
|
|
15
|
+
event: MouseEvent;
|
|
16
|
+
icon?: string;
|
|
17
|
+
styles?: any;
|
|
18
|
+
items?: ContextMenuItem[];
|
|
19
|
+
}
|
|
20
|
+
export interface ContextMenuProps {
|
|
21
|
+
event?: MouseEvent;
|
|
22
|
+
styles?: any;
|
|
23
|
+
items: ContextMenuItem[];
|
|
24
|
+
customEvent?: MouseEvent;
|
|
25
|
+
axis?: Axis;
|
|
26
|
+
width?: number;
|
|
27
|
+
showIcon?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export interface ItemContentProps {
|
|
30
|
+
showIcon: boolean | undefined;
|
|
31
|
+
item: ContextMenuItem;
|
|
32
|
+
handler: Fn;
|
|
33
|
+
}
|