3h1-ui 3.0.0-next.24 → 3.0.0-next.241
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.js +46649 -35051
- package/es/style.css +1933 -2633
- package/es/ui/config/index.d.ts +5 -0
- package/es/ui/index.d.ts +34 -0
- package/es/ui/src/AdvancedSearch/index.d.ts +3 -0
- package/es/ui/src/AdvancedSearch/src/data.d.ts +27 -0
- package/es/ui/src/Basic/index.d.ts +4 -0
- package/es/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
- package/es/ui/src/Basic/src/BasicHelp.d.ts +117 -0
- package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
- package/es/ui/src/BasicContainer/index.d.ts +3 -0
- package/es/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
- package/es/ui/src/BasicContainer/src/props.d.ts +94 -0
- package/es/ui/src/BasicResizeWrapper/index.d.ts +2 -0
- package/es/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
- package/es/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
- package/es/ui/src/Button/index.d.ts +235 -0
- package/es/ui/src/Button/src/BasicButton.d.ts +105 -0
- package/es/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
- package/es/ui/src/Button/src/props.d.ts +48 -0
- package/es/ui/src/ClickOutSide/index.d.ts +2 -0
- package/es/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
- package/es/ui/src/ColorPickerPopover/index.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
- package/es/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
- package/es/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
- package/es/ui/src/Container/index.d.ts +5 -0
- package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
- package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
- package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
- package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
- package/es/ui/src/Container/src/typing.d.ts +15 -0
- package/es/ui/src/ContextMenu/index.d.ts +3 -0
- package/es/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
- package/es/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
- package/es/ui/src/ContextMenu/src/typing.d.ts +33 -0
- package/es/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
- package/es/ui/src/CountDown/index.d.ts +3 -0
- package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
- package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
- package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
- package/es/ui/src/CountTo/index.d.ts +2 -0
- package/es/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
- package/es/ui/src/Cropper/index.d.ts +4 -0
- package/es/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
- package/es/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
- package/es/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
- package/es/ui/src/Cropper/src/typing.d.ts +6 -0
- package/es/ui/src/Description/index.d.ts +6 -0
- package/es/ui/src/Description/src/Description.d.ts +98 -0
- package/es/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
- package/es/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
- package/es/ui/src/Description/src/components/formItem.d.ts +41 -0
- package/es/ui/src/Description/src/props.d.ts +60 -0
- package/es/ui/src/Description/src/typing.d.ts +38 -0
- package/es/ui/src/Description/src/useDescription.d.ts +2 -0
- package/es/ui/src/Descriptions/index.d.ts +249 -0
- package/es/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
- package/es/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
- package/es/ui/src/Descriptions/src/props.d.ts +52 -0
- package/es/ui/src/Descriptions/src/typing.d.ts +31 -0
- package/es/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
- package/es/ui/src/Drawer/index.d.ts +4 -0
- package/es/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
- package/es/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
- package/es/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
- package/es/ui/src/Drawer/src/props.d.ts +115 -0
- package/es/ui/src/Drawer/src/typing.d.ts +177 -0
- package/es/ui/src/Drawer/src/useDrawer.d.ts +6 -0
- package/es/ui/src/Dropdown/index.d.ts +3 -0
- package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
- package/es/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
- package/es/ui/src/Icon/index.d.ts +5 -0
- package/es/ui/src/Icon/src/Icon.vue.d.ts +51 -0
- package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
- package/es/ui/src/Label/index.d.ts +2 -0
- package/es/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
- package/es/ui/src/Label/src/props.d.ts +14 -0
- package/es/ui/src/Loading/index.d.ts +4 -0
- package/es/ui/src/Loading/src/Loading.vue.d.ts +57 -0
- package/es/ui/src/Loading/src/createLoading.d.ts +13 -0
- package/es/ui/src/Loading/src/typing.d.ts +9 -0
- package/es/ui/src/Loading/src/useLoading.d.ts +11 -0
- package/es/ui/src/Modal/index.d.ts +710 -0
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
- package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/es/ui/src/Modal/src/components/Modal.d.ts +300 -0
- package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
- package/es/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
- package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
- package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
- package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
- package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
- package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
- package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
- package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
- package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
- package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
- package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
- package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
- package/es/ui/src/Modal/src/props.d.ts +171 -0
- package/es/ui/src/Modal/src/typing.d.ts +174 -0
- package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
- package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
- package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
- package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
- package/es/ui/src/Page/index.d.ts +5 -0
- package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
- package/es/ui/src/Page/src/PageSecond.d.ts +63 -0
- package/es/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
- package/es/ui/src/Process/index.d.ts +2 -0
- package/es/ui/src/Process/src/Process.d.ts +80 -0
- package/es/ui/src/Scrollbar/index.d.ts +6 -0
- package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
- package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
- package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
- package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
- package/es/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
- package/es/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
- package/es/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
- package/es/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
- package/es/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
- package/es/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
- package/es/ui/src/ShyContainer/index.d.ts +3 -0
- package/es/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
- package/es/ui/src/ShyContainer/src/props.d.ts +98 -0
- package/es/ui/src/ShyForm/index.d.ts +21 -0
- package/es/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
- package/es/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
- package/es/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
- package/es/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
- package/es/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
- package/es/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
- package/es/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
- package/es/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
- package/es/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
- package/es/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
- package/es/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
- package/es/ui/src/ShyForm/src/components/Group.d.ts +125 -0
- package/es/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
- package/es/ui/src/ShyForm/src/components/Table.d.ts +271 -0
- package/es/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
- package/es/ui/src/ShyForm/src/helper.d.ts +14 -0
- package/es/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
- package/es/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
- package/es/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
- package/es/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
- package/es/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
- package/es/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
- package/es/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
- package/es/ui/src/ShyForm/src/props.d.ts +430 -0
- package/es/ui/src/ShyForm/src/types/form.d.ts +127 -0
- package/es/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
- package/es/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
- package/es/ui/src/ShyForm/src/types/index.d.ts +90 -0
- package/es/ui/src/ShyLayoutContainer/index.d.ts +2 -0
- package/es/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
- package/es/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
- package/es/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
- package/es/ui/src/ShyTable/index.d.ts +10 -0
- package/es/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
- package/es/ui/src/ShyTable/src/componentMap.d.ts +6 -0
- package/es/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
- package/es/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
- package/es/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
- package/es/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
- package/es/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
- package/es/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
- package/es/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
- package/es/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
- package/es/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
- package/es/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
- package/es/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
- package/es/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
- package/es/ui/src/ShyTable/src/const.d.ts +25 -0
- package/es/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
- package/es/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
- package/es/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
- package/es/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
- package/es/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
- package/es/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
- package/es/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
- package/es/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
- package/es/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
- package/es/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
- package/es/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
- package/es/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
- package/es/ui/src/ShyTable/src/props.d.ts +577 -0
- package/es/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
- package/es/ui/src/ShyTable/src/types/table.d.ts +422 -0
- package/es/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
- package/es/ui/src/ShyTag/index.d.ts +3 -0
- package/es/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
- package/es/ui/src/ShyTag/src/props.d.ts +47 -0
- package/es/ui/src/StrengthMeter/index.d.ts +2 -0
- package/es/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
- package/es/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
- package/es/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
- package/es/ui/src/TablePlus/componentMap.d.ts +6 -0
- package/es/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
- package/es/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
- package/es/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
- package/es/ui/src/TablePlus/hooks/index.d.ts +2 -0
- package/es/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
- package/es/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
- package/es/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
- package/es/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
- package/es/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
- package/es/ui/src/TablePlus/index.d.ts +3 -0
- package/es/ui/src/TablePlus/props.d.ts +6 -0
- package/es/ui/src/TablePlus/types/componentType.d.ts +1 -0
- package/es/ui/src/Transition/index.d.ts +368 -0
- package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
- package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
- package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
- package/es/ui/src/Tree/index.d.ts +12 -0
- package/es/ui/src/Tree/src/BasicTree.d.ts +97 -0
- package/es/ui/src/Tree/src/TreeIcon.d.ts +2 -0
- package/es/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
- package/es/ui/src/Tree/src/types/tree.d.ts +123 -0
- package/es/ui/src/Tree/style/index.d.ts +0 -0
- package/es/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/es/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
- package/es/ui/src/Upload/src/components/data.d.ts +9 -0
- package/es/ui/src/Upload/src/helper.d.ts +7 -0
- package/es/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
- package/es/ui/src/Upload/src/props.d.ts +153 -0
- package/es/ui/src/Upload/src/types/typing.d.ts +45 -0
- package/es/ui/src/directives/clickOutside.d.ts +3 -0
- package/es/ui/src/directives/index.d.ts +1 -0
- package/es/ui/src/enums/sizeEnum.d.ts +11 -0
- package/es/ui/types/global.d.ts +102 -0
- package/es/ui/types/index.d.ts +36 -0
- package/lib/index.js +46623 -35025
- package/lib/style.css +1933 -2633
- package/lib/ui/config/index.d.ts +5 -0
- package/lib/ui/index.d.ts +34 -0
- package/lib/ui/src/AdvancedSearch/index.d.ts +3 -0
- package/lib/ui/src/AdvancedSearch/src/data.d.ts +27 -0
- package/lib/ui/src/Basic/index.d.ts +4 -0
- package/lib/ui/src/Basic/src/BasicArrow.vue.d.ts +114 -0
- package/lib/ui/src/Basic/src/BasicHelp.d.ts +117 -0
- package/lib/ui/src/Basic/src/BasicTitle.vue.d.ts +115 -0
- package/lib/ui/src/BasicContainer/index.d.ts +3 -0
- package/lib/ui/src/BasicContainer/src/BasicContainer.vue.d.ts +212 -0
- package/lib/ui/src/BasicContainer/src/props.d.ts +94 -0
- package/lib/ui/src/BasicResizeWrapper/index.d.ts +2 -0
- package/lib/ui/src/BasicResizeWrapper/src/BasicResizeWrapper.vue.d.ts +31 -0
- package/lib/ui/src/BasicResizeWrapper/src/props.d.ts +11 -0
- package/lib/ui/src/Button/index.d.ts +235 -0
- package/lib/ui/src/Button/src/BasicButton.d.ts +105 -0
- package/lib/ui/src/Button/src/PopConfirmButton.d.ts +14 -0
- package/lib/ui/src/Button/src/props.d.ts +48 -0
- package/lib/ui/src/ClickOutSide/index.d.ts +2 -0
- package/lib/ui/src/ClickOutSide/src/ClickOutSide.vue.d.ts +8 -0
- package/lib/ui/src/ColorPickerPopover/index.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/ColorPickerPopover.d.ts +38 -0
- package/lib/ui/src/ColorPickerPopover/src/hooks/useColorManipulation.d.ts +3 -0
- package/lib/ui/src/ColorPickerPopover/src/utils/makeStyle.d.ts +7 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/HexColorPicker.d.ts +23 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/RgbaColorPicker.d.ts +23 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Alpha.d.ts +27 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/AlphaColorPicker.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/ColorPicker.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Hue.d.ts +27 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Interactive.d.ts +24 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Pointer.d.ts +30 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/components/common/Saturation.d.ts +30 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useEventCallback.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/hooks/useStyleSheet.d.ts +5 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/index.d.ts +2 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/types.d.ts +44 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/clamp.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/compare.d.ts +4 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/convert.d.ts +26 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/format.d.ts +1 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/nonce.d.ts +11 -0
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/utils/round.d.ts +1 -0
- package/lib/ui/src/Container/index.d.ts +5 -0
- package/lib/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
- package/lib/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
- package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +525 -0
- package/lib/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
- package/lib/ui/src/Container/src/typing.d.ts +15 -0
- package/lib/ui/src/ContextMenu/index.d.ts +3 -0
- package/lib/ui/src/ContextMenu/src/ContextMenu.d.ts +64 -0
- package/lib/ui/src/ContextMenu/src/createContextMenu.d.ts +3 -0
- package/lib/ui/src/ContextMenu/src/typing.d.ts +33 -0
- package/lib/ui/src/ContextMenu/src/useContextMenu.d.ts +3 -0
- package/lib/ui/src/CountDown/index.d.ts +3 -0
- package/lib/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
- package/lib/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
- package/lib/ui/src/CountDown/src/useCountdown.d.ts +9 -0
- package/lib/ui/src/CountTo/index.d.ts +2 -0
- package/lib/ui/src/CountTo/src/CountTo.vue.d.ts +137 -0
- package/lib/ui/src/Cropper/index.d.ts +4 -0
- package/lib/ui/src/Cropper/src/CopperModal.vue.d.ts +40 -0
- package/lib/ui/src/Cropper/src/Cropper.vue.d.ts +87 -0
- package/lib/ui/src/Cropper/src/CropperAvatar.vue.d.ts +173 -0
- package/lib/ui/src/Cropper/src/typing.d.ts +6 -0
- package/lib/ui/src/Description/index.d.ts +6 -0
- package/lib/ui/src/Description/src/Description.d.ts +98 -0
- package/lib/ui/src/Description/src/DescriptionGroup.d.ts +14 -0
- package/lib/ui/src/Description/src/ShyComponentMap.d.ts +6 -0
- package/lib/ui/src/Description/src/components/formItem.d.ts +41 -0
- package/lib/ui/src/Description/src/props.d.ts +60 -0
- package/lib/ui/src/Description/src/typing.d.ts +38 -0
- package/lib/ui/src/Description/src/useDescription.d.ts +2 -0
- package/lib/ui/src/Descriptions/index.d.ts +249 -0
- package/lib/ui/src/Descriptions/src/Descriptions.d.ts +11 -0
- package/lib/ui/src/Descriptions/src/ShyDescriptions.d.ts +111 -0
- package/lib/ui/src/Descriptions/src/props.d.ts +52 -0
- package/lib/ui/src/Descriptions/src/typing.d.ts +31 -0
- package/lib/ui/src/Descriptions/src/useShyDescriptions.d.ts +2 -0
- package/lib/ui/src/Drawer/index.d.ts +4 -0
- package/lib/ui/src/Drawer/src/BasicDrawer.vue.d.ts +170 -0
- package/lib/ui/src/Drawer/src/components/DrawerFooter.vue.d.ts +95 -0
- package/lib/ui/src/Drawer/src/components/DrawerHeader.vue.d.ts +30 -0
- package/lib/ui/src/Drawer/src/props.d.ts +115 -0
- package/lib/ui/src/Drawer/src/typing.d.ts +177 -0
- package/lib/ui/src/Drawer/src/useDrawer.d.ts +6 -0
- package/lib/ui/src/Dropdown/index.d.ts +3 -0
- package/lib/ui/src/Dropdown/src/typing.d.ts +9 -0
- package/lib/ui/src/Icon/data/icons.data.tabler.d.ts +2 -0
- package/lib/ui/src/Icon/index.d.ts +5 -0
- package/lib/ui/src/Icon/src/Icon.vue.d.ts +51 -0
- package/lib/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
- package/lib/ui/src/Label/index.d.ts +2 -0
- package/lib/ui/src/Label/src/BasicLabel.vue.d.ts +32 -0
- package/lib/ui/src/Label/src/props.d.ts +14 -0
- package/lib/ui/src/Loading/index.d.ts +4 -0
- package/lib/ui/src/Loading/src/Loading.vue.d.ts +57 -0
- package/lib/ui/src/Loading/src/createLoading.d.ts +13 -0
- package/lib/ui/src/Loading/src/typing.d.ts +9 -0
- package/lib/ui/src/Loading/src/useLoading.d.ts +11 -0
- package/lib/ui/src/Modal/index.d.ts +710 -0
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +322 -0
- package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/lib/ui/src/Modal/src/components/Modal.d.ts +300 -0
- package/lib/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
- package/lib/ui/src/Modal/src/components/ModalFooter.vue.d.ts +304 -0
- package/lib/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
- package/lib/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +97 -0
- package/lib/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +2 -0
- package/lib/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
- package/lib/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
- package/lib/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
- package/lib/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
- package/lib/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
- package/lib/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
- package/lib/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
- package/lib/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
- package/lib/ui/src/Modal/src/props.d.ts +171 -0
- package/lib/ui/src/Modal/src/typing.d.ts +174 -0
- package/lib/ui/src/Modal/src/utils/index.d.ts +5 -0
- package/lib/ui/src/Modal/src/utils/is.d.ts +13 -0
- package/lib/ui/src/Modal/src/utils/log.d.ts +2 -0
- package/lib/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
- package/lib/ui/src/Page/index.d.ts +5 -0
- package/lib/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
- package/lib/ui/src/Page/src/PageSecond.d.ts +63 -0
- package/lib/ui/src/Page/src/PageWrapper.vue.d.ts +86 -0
- package/lib/ui/src/Process/index.d.ts +2 -0
- package/lib/ui/src/Process/src/Process.d.ts +80 -0
- package/lib/ui/src/Scrollbar/index.d.ts +6 -0
- package/lib/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
- package/lib/ui/src/Scrollbar/src/bar.d.ts +14 -0
- package/lib/ui/src/Scrollbar/src/types.d.ts +18 -0
- package/lib/ui/src/Scrollbar/src/util.d.ts +8 -0
- package/lib/ui/src/ShyAdvancedSearch/index.d.ts +3 -0
- package/lib/ui/src/ShyAdvancedSearch/src/ShyAdvancedSearch.d.ts +13 -0
- package/lib/ui/src/ShyAdvancedSearch/src/ShyGlobalSearch.d.ts +13 -0
- package/lib/ui/src/ShyAdvancedSearch/src/constant.d.ts +24 -0
- package/lib/ui/src/ShyAdvancedSearch/src/hooks/useAdvancedSearch.d.ts +4 -0
- package/lib/ui/src/ShyAdvancedSearch/src/types/index.d.ts +11 -0
- package/lib/ui/src/ShyContainer/index.d.ts +3 -0
- package/lib/ui/src/ShyContainer/src/ShyContainer.d.ts +217 -0
- package/lib/ui/src/ShyContainer/src/props.d.ts +98 -0
- package/lib/ui/src/ShyForm/index.d.ts +21 -0
- package/lib/ui/src/ShyForm/src/ShyComponentMap.d.ts +6 -0
- package/lib/ui/src/ShyForm/src/ShyForm.d.ts +1046 -0
- package/lib/ui/src/ShyForm/src/components/ApiCascader.vue.d.ts +141 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/DeptTree.vue.d.ts +134 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Modal.vue.d.ts +2080 -0
- package/lib/ui/src/ShyForm/src/components/ApiModalSelect/Table.vue.d.ts +1213 -0
- package/lib/ui/src/ShyForm/src/components/ApiSelect.vue.d.ts +102 -0
- package/lib/ui/src/ShyForm/src/components/ApiTransfer.vue.d.ts +144 -0
- package/lib/ui/src/ShyForm/src/components/ApiTree.vue.d.ts +50 -0
- package/lib/ui/src/ShyForm/src/components/ApiTreeSelect.vue.d.ts +43 -0
- package/lib/ui/src/ShyForm/src/components/FormAction.vue.d.ts +111 -0
- package/lib/ui/src/ShyForm/src/components/FormItem.d.ts +70 -0
- package/lib/ui/src/ShyForm/src/components/FormWrapper.vue.d.ts +18 -0
- package/lib/ui/src/ShyForm/src/components/Group.d.ts +125 -0
- package/lib/ui/src/ShyForm/src/components/RadioButtonGroup.vue.d.ts +35 -0
- package/lib/ui/src/ShyForm/src/components/Table.d.ts +271 -0
- package/lib/ui/src/ShyForm/src/components/Tinymce.vue.d.ts +19 -0
- package/lib/ui/src/ShyForm/src/helper.d.ts +14 -0
- package/lib/ui/src/ShyForm/src/hooks/useAutoFocus.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/hooks/useComponentRegister.d.ts +3 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormContext.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormEvents.d.ts +28 -0
- package/lib/ui/src/ShyForm/src/hooks/useFormValues.d.ts +13 -0
- package/lib/ui/src/ShyForm/src/hooks/useLabelWidth.d.ts +310 -0
- package/lib/ui/src/ShyForm/src/hooks/useShyForm.d.ts +10 -0
- package/lib/ui/src/ShyForm/src/props.d.ts +430 -0
- package/lib/ui/src/ShyForm/src/types/form.d.ts +127 -0
- package/lib/ui/src/ShyForm/src/types/formItem.d.ts +82 -0
- package/lib/ui/src/ShyForm/src/types/hooks.d.ts +6 -0
- package/lib/ui/src/ShyForm/src/types/index.d.ts +90 -0
- package/lib/ui/src/ShyLayoutContainer/index.d.ts +2 -0
- package/lib/ui/src/ShyLayoutContainer/src/ShyLayoutContainer.d.ts +87 -0
- package/lib/ui/src/ShyLayoutContainer/src/props.d.ts +62 -0
- package/lib/ui/src/ShyLayoutContainer/src/types.d.ts +2 -0
- package/lib/ui/src/ShyTable/index.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/ShyTable.d.ts +1200 -0
- package/lib/ui/src/ShyTable/src/componentMap.d.ts +6 -0
- package/lib/ui/src/ShyTable/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/components/HeaderCell.vue.d.ts +95 -0
- package/lib/ui/src/ShyTable/src/components/ShyInfo.d.ts +24 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableAction.d.ts +109 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableFooter.d.ts +57 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableHeader.d.ts +63 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowMore.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyShowSearch.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableAdvancedSearch.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableColumn.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableFullScreen.d.ts +2 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableGlobalSearch.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/ShyTableSize.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/components/ShyTableSettings/index.d.ts +7 -0
- package/lib/ui/src/ShyTable/src/components/TableImg.vue.d.ts +93 -0
- package/lib/ui/src/ShyTable/src/components/editable/CellComponent.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/components/editable/EditableCell.d.ts +80 -0
- package/lib/ui/src/ShyTable/src/components/editable/helper.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/components/editable/index.d.ts +23 -0
- package/lib/ui/src/ShyTable/src/const.d.ts +25 -0
- package/lib/ui/src/ShyTable/src/hooks/useColumns.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/hooks/useCustomRow.d.ts +19 -0
- package/lib/ui/src/ShyTable/src/hooks/useDataSource.d.ts +29 -0
- package/lib/ui/src/ShyTable/src/hooks/useLoading.d.ts +6 -0
- package/lib/ui/src/ShyTable/src/hooks/usePagination.d.ts +10 -0
- package/lib/ui/src/ShyTable/src/hooks/useRowSelection.d.ts +12 -0
- package/lib/ui/src/ShyTable/src/hooks/useScrollTo.d.ts +4 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTable.d.ts +16 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTableContext.d.ts +16 -0
- package/lib/ui/src/ShyTable/src/hooks/useShyTableForm.d.ts +9 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableExpand.d.ts +14 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableHeader.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableScroll.d.ts +11 -0
- package/lib/ui/src/ShyTable/src/hooks/useTableStyle.d.ts +5 -0
- package/lib/ui/src/ShyTable/src/props.d.ts +577 -0
- package/lib/ui/src/ShyTable/src/types/pagination.d.ts +93 -0
- package/lib/ui/src/ShyTable/src/types/table.d.ts +422 -0
- package/lib/ui/src/ShyTable/src/types/tableAction.d.ts +26 -0
- package/lib/ui/src/ShyTag/index.d.ts +3 -0
- package/lib/ui/src/ShyTag/src/ShyTag.d.ts +100 -0
- package/lib/ui/src/ShyTag/src/props.d.ts +47 -0
- package/lib/ui/src/StrengthMeter/index.d.ts +2 -0
- package/lib/ui/src/StrengthMeter/src/StrengthMeter.vue.d.ts +35 -0
- package/lib/ui/src/TablePlus/TableColGroup.vue.d.ts +52 -0
- package/lib/ui/src/TablePlus/TablePlus.vue.d.ts +1977 -0
- package/lib/ui/src/TablePlus/componentMap.d.ts +6 -0
- package/lib/ui/src/TablePlus/components/ButtonGroupEdit.vue.d.ts +105 -0
- package/lib/ui/src/TablePlus/components/Icon/Sort.vue.d.ts +28 -0
- package/lib/ui/src/TablePlus/components/editable/CellComponent.d.ts +10 -0
- package/lib/ui/src/TablePlus/hooks/index.d.ts +2 -0
- package/lib/ui/src/TablePlus/hooks/useColumns.d.ts +8 -0
- package/lib/ui/src/TablePlus/hooks/usePagination.d.ts +9 -0
- package/lib/ui/src/TablePlus/hooks/useSort.d.ts +4 -0
- package/lib/ui/src/TablePlus/hooks/useTableData.d.ts +11 -0
- package/lib/ui/src/TablePlus/hooks/useTablePlus.d.ts +1 -0
- package/lib/ui/src/TablePlus/index.d.ts +3 -0
- package/lib/ui/src/TablePlus/props.d.ts +6 -0
- package/lib/ui/src/TablePlus/types/componentType.d.ts +1 -0
- package/lib/ui/src/Transition/index.d.ts +368 -0
- package/lib/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
- package/lib/ui/src/Transition/src/CreateTransition.d.ts +47 -0
- package/lib/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
- package/lib/ui/src/Tree/index.d.ts +12 -0
- package/lib/ui/src/Tree/src/BasicTree.d.ts +97 -0
- package/lib/ui/src/Tree/src/TreeIcon.d.ts +2 -0
- package/lib/ui/src/Tree/src/hooks/useTree.d.ts +14 -0
- package/lib/ui/src/Tree/src/types/tree.d.ts +123 -0
- package/lib/ui/src/Tree/style/index.d.ts +0 -0
- package/lib/ui/src/Upload/src/components/FileList.d.ts +254 -0
- package/lib/ui/src/Upload/src/components/UploadPreviewModal.vue.d.ts +992 -0
- package/lib/ui/src/Upload/src/components/data.d.ts +9 -0
- package/lib/ui/src/Upload/src/helper.d.ts +7 -0
- package/lib/ui/src/Upload/src/hooks/useUpload.d.ts +11 -0
- package/lib/ui/src/Upload/src/props.d.ts +153 -0
- package/lib/ui/src/Upload/src/types/typing.d.ts +45 -0
- package/lib/ui/src/directives/clickOutside.d.ts +3 -0
- package/lib/ui/src/directives/index.d.ts +1 -0
- package/lib/ui/src/enums/sizeEnum.d.ts +11 -0
- package/lib/ui/types/global.d.ts +102 -0
- package/lib/ui/types/index.d.ts +36 -0
- package/package.json +7 -6
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Component } from 'vue';
|
|
2
|
+
import type { ComponentType } from './types/componentType';
|
|
3
|
+
declare const componentMap: Map<ComponentType, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>>;
|
|
4
|
+
export declare function add(compName: ComponentType, component: Component): void;
|
|
5
|
+
export declare function del(compName: ComponentType): void;
|
|
6
|
+
export { componentMap };
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
row: {
|
|
3
|
+
default: any;
|
|
4
|
+
};
|
|
5
|
+
}, {
|
|
6
|
+
emit: (event: "edit-cancel" | "row-remove" | "updateStatusEdit" | "edit-ensure", ...args: any[]) => void;
|
|
7
|
+
props: any;
|
|
8
|
+
getActions: import("vue").ComputedRef<({
|
|
9
|
+
label: string;
|
|
10
|
+
onClick: () => void;
|
|
11
|
+
ifShow: boolean;
|
|
12
|
+
popConfirm?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
label: string;
|
|
15
|
+
popConfirm: {
|
|
16
|
+
title: string;
|
|
17
|
+
confirm: () => void;
|
|
18
|
+
};
|
|
19
|
+
ifShow: boolean;
|
|
20
|
+
onClick?: undefined;
|
|
21
|
+
})[]>;
|
|
22
|
+
readonly ShyTableAction: import("vue").DefineComponent<{
|
|
23
|
+
type: {
|
|
24
|
+
type: ((new (...args: any[]) => "button" | "link") | (() => "button" | "link")) | ((new (...args: any[]) => "button" | "link") | (() => "button" | "link"))[];
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
actions: {
|
|
28
|
+
type: ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[])) | ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[]))[];
|
|
29
|
+
default: any;
|
|
30
|
+
};
|
|
31
|
+
dropDownActions: {
|
|
32
|
+
type: ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[])) | ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[]))[];
|
|
33
|
+
default: any;
|
|
34
|
+
};
|
|
35
|
+
divider: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
outside: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
};
|
|
42
|
+
stopButtonPropagation: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
showCount: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: () => 2;
|
|
49
|
+
};
|
|
50
|
+
iconDirection: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
};
|
|
53
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
|
+
type: {
|
|
55
|
+
type: ((new (...args: any[]) => "button" | "link") | (() => "button" | "link")) | ((new (...args: any[]) => "button" | "link") | (() => "button" | "link"))[];
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
actions: {
|
|
59
|
+
type: ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[])) | ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[]))[];
|
|
60
|
+
default: any;
|
|
61
|
+
};
|
|
62
|
+
dropDownActions: {
|
|
63
|
+
type: ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[])) | ((new (...args: any[]) => import("../../ShyTable").ActionItem[]) | (() => import("../../ShyTable").ActionItem[]))[];
|
|
64
|
+
default: any;
|
|
65
|
+
};
|
|
66
|
+
divider: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
outside: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
};
|
|
73
|
+
stopButtonPropagation: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
showCount: {
|
|
78
|
+
type: NumberConstructor;
|
|
79
|
+
default: () => 2;
|
|
80
|
+
};
|
|
81
|
+
iconDirection: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
};
|
|
84
|
+
}>>, {
|
|
85
|
+
type: "button" | "link";
|
|
86
|
+
actions: import("../../ShyTable").ActionItem[];
|
|
87
|
+
showCount: number;
|
|
88
|
+
dropDownActions: import("../../ShyTable").ActionItem[];
|
|
89
|
+
divider: boolean;
|
|
90
|
+
outside: boolean;
|
|
91
|
+
stopButtonPropagation: boolean;
|
|
92
|
+
}, {}>;
|
|
93
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("edit-cancel" | "row-remove" | "updateStatusEdit" | "edit-ensure")[], "edit-cancel" | "row-remove" | "updateStatusEdit" | "edit-ensure", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
94
|
+
row: {
|
|
95
|
+
default: any;
|
|
96
|
+
};
|
|
97
|
+
}>> & {
|
|
98
|
+
"onEdit-cancel"?: (...args: any[]) => any;
|
|
99
|
+
"onRow-remove"?: (...args: any[]) => any;
|
|
100
|
+
onUpdateStatusEdit?: (...args: any[]) => any;
|
|
101
|
+
"onEdit-ensure"?: (...args: any[]) => any;
|
|
102
|
+
}, {
|
|
103
|
+
row: any;
|
|
104
|
+
}, {}>;
|
|
105
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
+
basStyle: {
|
|
3
|
+
display: string;
|
|
4
|
+
color: string;
|
|
5
|
+
fontSize: string;
|
|
6
|
+
};
|
|
7
|
+
emits: (event: "change", ...args: any[]) => void;
|
|
8
|
+
curPicker: import("vue").Ref<number>;
|
|
9
|
+
handleUpClick: () => void;
|
|
10
|
+
handleDownClick: () => void;
|
|
11
|
+
getStyleUp: import("vue").ComputedRef<{
|
|
12
|
+
transform: string;
|
|
13
|
+
color: string;
|
|
14
|
+
display: string;
|
|
15
|
+
fontSize: string;
|
|
16
|
+
}>;
|
|
17
|
+
getStyleDown: import("vue").ComputedRef<{
|
|
18
|
+
transform: string;
|
|
19
|
+
color: string;
|
|
20
|
+
display: string;
|
|
21
|
+
fontSize: string;
|
|
22
|
+
}>;
|
|
23
|
+
readonly CaretUpOutlined: import("@ant-design/icons-vue/lib/icons/CaretUpOutlined").CaretUpOutlinedIconType;
|
|
24
|
+
readonly CaretDownOutlined: import("@ant-design/icons-vue/lib/icons/CaretDownOutlined").CaretDownOutlinedIconType;
|
|
25
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
26
|
+
onChange?: (...args: any[]) => any;
|
|
27
|
+
}, {}, {}>;
|
|
28
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FunctionalComponent } from 'vue';
|
|
2
|
+
import type { ComponentType } from '../../types/componentType';
|
|
3
|
+
export interface ComponentProps {
|
|
4
|
+
component: ComponentType;
|
|
5
|
+
rule: boolean;
|
|
6
|
+
popoverVisible: boolean;
|
|
7
|
+
ruleMessage: string;
|
|
8
|
+
getPopupContainer?: Fn;
|
|
9
|
+
}
|
|
10
|
+
export declare const CellComponent: FunctionalComponent;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const useColumns: (getProps: any, tableRef: any) => {
|
|
2
|
+
getColumnsRef: import("vue").ComputedRef<any>;
|
|
3
|
+
hideColumn: (fields: any) => void;
|
|
4
|
+
showColumn: (fields: any) => void;
|
|
5
|
+
resetColumn: () => void;
|
|
6
|
+
getColumns: () => any;
|
|
7
|
+
refreshColumn: () => void;
|
|
8
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const useTableData: (getProps: any, { setPage, params, tableRef }: {
|
|
2
|
+
setPage: any;
|
|
3
|
+
params: any;
|
|
4
|
+
tableRef: any;
|
|
5
|
+
}) => {
|
|
6
|
+
dataSource: import("vue").Ref<any[]>;
|
|
7
|
+
setTableData: (data: any) => void;
|
|
8
|
+
reload: () => any;
|
|
9
|
+
getTableData: () => any[];
|
|
10
|
+
addTableData: (list?: {}[]) => void;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useTablePlus(tableProps: any): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ComponentType = 'Input' | 'InputNumber' | 'InputTextArea' | 'Select' | 'ApiSelect' | 'AutoComplete' | 'ApiTreeSelect' | 'Checkbox' | 'Switch' | 'DatePicker' | 'TimePicker' | 'RadioGroup' | 'RadioButtonGroup' | 'ApiRadioGroup';
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
export { default as CollapseTransition } from './src/CollapseTransition.vue';
|
|
2
|
+
export declare const FadeTransition: import("vue").DefineComponent<{
|
|
3
|
+
group: {
|
|
4
|
+
type: import("vue").PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
mode: {
|
|
8
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
9
|
+
default: "default" | "in-out" | "out-in";
|
|
10
|
+
};
|
|
11
|
+
origin: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
group: {
|
|
17
|
+
type: import("vue").PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
mode: {
|
|
21
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
22
|
+
default: "default" | "in-out" | "out-in";
|
|
23
|
+
};
|
|
24
|
+
origin: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
mode: "default" | "in-out" | "out-in";
|
|
30
|
+
group: boolean;
|
|
31
|
+
origin: string;
|
|
32
|
+
}, {}>;
|
|
33
|
+
export declare const ScaleTransition: import("vue").DefineComponent<{
|
|
34
|
+
group: {
|
|
35
|
+
type: import("vue").PropType<boolean>;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
mode: {
|
|
39
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
40
|
+
default: "default" | "in-out" | "out-in";
|
|
41
|
+
};
|
|
42
|
+
origin: {
|
|
43
|
+
type: import("vue").PropType<string>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
group: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
mode: {
|
|
52
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
53
|
+
default: "default" | "in-out" | "out-in";
|
|
54
|
+
};
|
|
55
|
+
origin: {
|
|
56
|
+
type: import("vue").PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
}>>, {
|
|
60
|
+
mode: "default" | "in-out" | "out-in";
|
|
61
|
+
group: boolean;
|
|
62
|
+
origin: string;
|
|
63
|
+
}, {}>;
|
|
64
|
+
export declare const SlideYTransition: import("vue").DefineComponent<{
|
|
65
|
+
group: {
|
|
66
|
+
type: import("vue").PropType<boolean>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
mode: {
|
|
70
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
71
|
+
default: "default" | "in-out" | "out-in";
|
|
72
|
+
};
|
|
73
|
+
origin: {
|
|
74
|
+
type: import("vue").PropType<string>;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
78
|
+
group: {
|
|
79
|
+
type: import("vue").PropType<boolean>;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
mode: {
|
|
83
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
84
|
+
default: "default" | "in-out" | "out-in";
|
|
85
|
+
};
|
|
86
|
+
origin: {
|
|
87
|
+
type: import("vue").PropType<string>;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
}>>, {
|
|
91
|
+
mode: "default" | "in-out" | "out-in";
|
|
92
|
+
group: boolean;
|
|
93
|
+
origin: string;
|
|
94
|
+
}, {}>;
|
|
95
|
+
export declare const ScrollYTransition: import("vue").DefineComponent<{
|
|
96
|
+
group: {
|
|
97
|
+
type: import("vue").PropType<boolean>;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
mode: {
|
|
101
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
102
|
+
default: "default" | "in-out" | "out-in";
|
|
103
|
+
};
|
|
104
|
+
origin: {
|
|
105
|
+
type: import("vue").PropType<string>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
109
|
+
group: {
|
|
110
|
+
type: import("vue").PropType<boolean>;
|
|
111
|
+
default: boolean;
|
|
112
|
+
};
|
|
113
|
+
mode: {
|
|
114
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
115
|
+
default: "default" | "in-out" | "out-in";
|
|
116
|
+
};
|
|
117
|
+
origin: {
|
|
118
|
+
type: import("vue").PropType<string>;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
}>>, {
|
|
122
|
+
mode: "default" | "in-out" | "out-in";
|
|
123
|
+
group: boolean;
|
|
124
|
+
origin: string;
|
|
125
|
+
}, {}>;
|
|
126
|
+
export declare const SlideYReverseTransition: import("vue").DefineComponent<{
|
|
127
|
+
group: {
|
|
128
|
+
type: import("vue").PropType<boolean>;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
mode: {
|
|
132
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
133
|
+
default: "default" | "in-out" | "out-in";
|
|
134
|
+
};
|
|
135
|
+
origin: {
|
|
136
|
+
type: import("vue").PropType<string>;
|
|
137
|
+
default: string;
|
|
138
|
+
};
|
|
139
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
140
|
+
group: {
|
|
141
|
+
type: import("vue").PropType<boolean>;
|
|
142
|
+
default: boolean;
|
|
143
|
+
};
|
|
144
|
+
mode: {
|
|
145
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
146
|
+
default: "default" | "in-out" | "out-in";
|
|
147
|
+
};
|
|
148
|
+
origin: {
|
|
149
|
+
type: import("vue").PropType<string>;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
}>>, {
|
|
153
|
+
mode: "default" | "in-out" | "out-in";
|
|
154
|
+
group: boolean;
|
|
155
|
+
origin: string;
|
|
156
|
+
}, {}>;
|
|
157
|
+
export declare const ScrollYReverseTransition: import("vue").DefineComponent<{
|
|
158
|
+
group: {
|
|
159
|
+
type: import("vue").PropType<boolean>;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
mode: {
|
|
163
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
164
|
+
default: "default" | "in-out" | "out-in";
|
|
165
|
+
};
|
|
166
|
+
origin: {
|
|
167
|
+
type: import("vue").PropType<string>;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
171
|
+
group: {
|
|
172
|
+
type: import("vue").PropType<boolean>;
|
|
173
|
+
default: boolean;
|
|
174
|
+
};
|
|
175
|
+
mode: {
|
|
176
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
177
|
+
default: "default" | "in-out" | "out-in";
|
|
178
|
+
};
|
|
179
|
+
origin: {
|
|
180
|
+
type: import("vue").PropType<string>;
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
183
|
+
}>>, {
|
|
184
|
+
mode: "default" | "in-out" | "out-in";
|
|
185
|
+
group: boolean;
|
|
186
|
+
origin: string;
|
|
187
|
+
}, {}>;
|
|
188
|
+
export declare const SlideXTransition: import("vue").DefineComponent<{
|
|
189
|
+
group: {
|
|
190
|
+
type: import("vue").PropType<boolean>;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
193
|
+
mode: {
|
|
194
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
195
|
+
default: "default" | "in-out" | "out-in";
|
|
196
|
+
};
|
|
197
|
+
origin: {
|
|
198
|
+
type: import("vue").PropType<string>;
|
|
199
|
+
default: string;
|
|
200
|
+
};
|
|
201
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
202
|
+
group: {
|
|
203
|
+
type: import("vue").PropType<boolean>;
|
|
204
|
+
default: boolean;
|
|
205
|
+
};
|
|
206
|
+
mode: {
|
|
207
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
208
|
+
default: "default" | "in-out" | "out-in";
|
|
209
|
+
};
|
|
210
|
+
origin: {
|
|
211
|
+
type: import("vue").PropType<string>;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
214
|
+
}>>, {
|
|
215
|
+
mode: "default" | "in-out" | "out-in";
|
|
216
|
+
group: boolean;
|
|
217
|
+
origin: string;
|
|
218
|
+
}, {}>;
|
|
219
|
+
export declare const ScrollXTransition: import("vue").DefineComponent<{
|
|
220
|
+
group: {
|
|
221
|
+
type: import("vue").PropType<boolean>;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
mode: {
|
|
225
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
226
|
+
default: "default" | "in-out" | "out-in";
|
|
227
|
+
};
|
|
228
|
+
origin: {
|
|
229
|
+
type: import("vue").PropType<string>;
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
232
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
233
|
+
group: {
|
|
234
|
+
type: import("vue").PropType<boolean>;
|
|
235
|
+
default: boolean;
|
|
236
|
+
};
|
|
237
|
+
mode: {
|
|
238
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
239
|
+
default: "default" | "in-out" | "out-in";
|
|
240
|
+
};
|
|
241
|
+
origin: {
|
|
242
|
+
type: import("vue").PropType<string>;
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
}>>, {
|
|
246
|
+
mode: "default" | "in-out" | "out-in";
|
|
247
|
+
group: boolean;
|
|
248
|
+
origin: string;
|
|
249
|
+
}, {}>;
|
|
250
|
+
export declare const SlideXReverseTransition: import("vue").DefineComponent<{
|
|
251
|
+
group: {
|
|
252
|
+
type: import("vue").PropType<boolean>;
|
|
253
|
+
default: boolean;
|
|
254
|
+
};
|
|
255
|
+
mode: {
|
|
256
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
257
|
+
default: "default" | "in-out" | "out-in";
|
|
258
|
+
};
|
|
259
|
+
origin: {
|
|
260
|
+
type: import("vue").PropType<string>;
|
|
261
|
+
default: string;
|
|
262
|
+
};
|
|
263
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
264
|
+
group: {
|
|
265
|
+
type: import("vue").PropType<boolean>;
|
|
266
|
+
default: boolean;
|
|
267
|
+
};
|
|
268
|
+
mode: {
|
|
269
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
270
|
+
default: "default" | "in-out" | "out-in";
|
|
271
|
+
};
|
|
272
|
+
origin: {
|
|
273
|
+
type: import("vue").PropType<string>;
|
|
274
|
+
default: string;
|
|
275
|
+
};
|
|
276
|
+
}>>, {
|
|
277
|
+
mode: "default" | "in-out" | "out-in";
|
|
278
|
+
group: boolean;
|
|
279
|
+
origin: string;
|
|
280
|
+
}, {}>;
|
|
281
|
+
export declare const ScrollXReverseTransition: import("vue").DefineComponent<{
|
|
282
|
+
group: {
|
|
283
|
+
type: import("vue").PropType<boolean>;
|
|
284
|
+
default: boolean;
|
|
285
|
+
};
|
|
286
|
+
mode: {
|
|
287
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
288
|
+
default: "default" | "in-out" | "out-in";
|
|
289
|
+
};
|
|
290
|
+
origin: {
|
|
291
|
+
type: import("vue").PropType<string>;
|
|
292
|
+
default: string;
|
|
293
|
+
};
|
|
294
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
295
|
+
group: {
|
|
296
|
+
type: import("vue").PropType<boolean>;
|
|
297
|
+
default: boolean;
|
|
298
|
+
};
|
|
299
|
+
mode: {
|
|
300
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
301
|
+
default: "default" | "in-out" | "out-in";
|
|
302
|
+
};
|
|
303
|
+
origin: {
|
|
304
|
+
type: import("vue").PropType<string>;
|
|
305
|
+
default: string;
|
|
306
|
+
};
|
|
307
|
+
}>>, {
|
|
308
|
+
mode: "default" | "in-out" | "out-in";
|
|
309
|
+
group: boolean;
|
|
310
|
+
origin: string;
|
|
311
|
+
}, {}>;
|
|
312
|
+
export declare const ScaleRotateTransition: import("vue").DefineComponent<{
|
|
313
|
+
group: {
|
|
314
|
+
type: import("vue").PropType<boolean>;
|
|
315
|
+
default: boolean;
|
|
316
|
+
};
|
|
317
|
+
mode: {
|
|
318
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
319
|
+
default: "default" | "in-out" | "out-in";
|
|
320
|
+
};
|
|
321
|
+
origin: {
|
|
322
|
+
type: import("vue").PropType<string>;
|
|
323
|
+
default: string;
|
|
324
|
+
};
|
|
325
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
326
|
+
group: {
|
|
327
|
+
type: import("vue").PropType<boolean>;
|
|
328
|
+
default: boolean;
|
|
329
|
+
};
|
|
330
|
+
mode: {
|
|
331
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
332
|
+
default: "default" | "in-out" | "out-in";
|
|
333
|
+
};
|
|
334
|
+
origin: {
|
|
335
|
+
type: import("vue").PropType<string>;
|
|
336
|
+
default: string;
|
|
337
|
+
};
|
|
338
|
+
}>>, {
|
|
339
|
+
mode: "default" | "in-out" | "out-in";
|
|
340
|
+
group: boolean;
|
|
341
|
+
origin: string;
|
|
342
|
+
}, {}>;
|
|
343
|
+
export declare const ExpandXTransition: import("vue").DefineComponent<{
|
|
344
|
+
mode: {
|
|
345
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
346
|
+
default: "default" | "in-out" | "out-in";
|
|
347
|
+
};
|
|
348
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
349
|
+
mode: {
|
|
350
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
351
|
+
default: "default" | "in-out" | "out-in";
|
|
352
|
+
};
|
|
353
|
+
}>>, {
|
|
354
|
+
mode: "default" | "in-out" | "out-in";
|
|
355
|
+
}, {}>;
|
|
356
|
+
export declare const ExpandTransition: import("vue").DefineComponent<{
|
|
357
|
+
mode: {
|
|
358
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
359
|
+
default: "default" | "in-out" | "out-in";
|
|
360
|
+
};
|
|
361
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
362
|
+
mode: {
|
|
363
|
+
type: import("vue").PropType<"default" | "in-out" | "out-in">;
|
|
364
|
+
default: "default" | "in-out" | "out-in";
|
|
365
|
+
};
|
|
366
|
+
}>>, {
|
|
367
|
+
mode: "default" | "in-out" | "out-in";
|
|
368
|
+
}, {}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
+
on: {
|
|
3
|
+
beforeEnter(el: any): void;
|
|
4
|
+
enter(el: any): void;
|
|
5
|
+
afterEnter(el: any): void;
|
|
6
|
+
beforeLeave(el: any): void;
|
|
7
|
+
leave(el: any): void;
|
|
8
|
+
afterLeave(el: any): void;
|
|
9
|
+
};
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
11
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
type Mode = 'in-out' | 'out-in' | 'default' | undefined;
|
|
3
|
+
export declare function createSimpleTransition(name: string, origin?: string, mode?: Mode): import("vue").DefineComponent<{
|
|
4
|
+
group: {
|
|
5
|
+
type: PropType<boolean>;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
mode: {
|
|
9
|
+
type: PropType<Mode>;
|
|
10
|
+
default: Mode;
|
|
11
|
+
};
|
|
12
|
+
origin: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
group: {
|
|
18
|
+
type: PropType<boolean>;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
mode: {
|
|
22
|
+
type: PropType<Mode>;
|
|
23
|
+
default: Mode;
|
|
24
|
+
};
|
|
25
|
+
origin: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
}>>, {
|
|
30
|
+
mode: Mode;
|
|
31
|
+
group: boolean;
|
|
32
|
+
origin: string;
|
|
33
|
+
}, {}>;
|
|
34
|
+
export declare function createJavascriptTransition(name: string, functions: Recordable, mode?: Mode): import("vue").DefineComponent<{
|
|
35
|
+
mode: {
|
|
36
|
+
type: PropType<Mode>;
|
|
37
|
+
default: Mode;
|
|
38
|
+
};
|
|
39
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
mode: {
|
|
41
|
+
type: PropType<Mode>;
|
|
42
|
+
default: Mode;
|
|
43
|
+
};
|
|
44
|
+
}>>, {
|
|
45
|
+
mode: Mode;
|
|
46
|
+
}, {}>;
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Makes the first character of a string uppercase
|
|
3
|
+
*/
|
|
4
|
+
export declare function upperFirst(str: string): string;
|
|
5
|
+
interface HTMLExpandElement extends HTMLElement {
|
|
6
|
+
_parent?: (Node & ParentNode & HTMLElement) | null;
|
|
7
|
+
_initialStyle: {
|
|
8
|
+
transition: string;
|
|
9
|
+
overflow: string | null;
|
|
10
|
+
height?: string | null;
|
|
11
|
+
width?: string | null;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export default function (expandedParentClass?: string, x?: boolean): {
|
|
15
|
+
beforeEnter(el: HTMLExpandElement): void;
|
|
16
|
+
enter(el: HTMLExpandElement): void;
|
|
17
|
+
afterEnter: (el: HTMLExpandElement) => void;
|
|
18
|
+
enterCancelled: (el: HTMLExpandElement) => void;
|
|
19
|
+
leave(el: HTMLExpandElement): void;
|
|
20
|
+
afterLeave: (el: HTMLExpandElement) => void;
|
|
21
|
+
leaveCancelled: (el: HTMLExpandElement) => void;
|
|
22
|
+
};
|
|
23
|
+
export {};
|