3h1-ui 3.0.0-next.23 → 3.0.0-next.231
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 +46574 -34994
- package/es/style.css +4530 -3609
- 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 +629 -0
- package/es/ui/src/Modal/src/BasicModal.vue.d.ts +282 -0
- package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/es/ui/src/Modal/src/components/Modal.d.ts +260 -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 +264 -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 +157 -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 +2000 -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 +912 -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 +46739 -35159
- package/lib/style.css +4530 -3609
- 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 +629 -0
- package/lib/ui/src/Modal/src/BasicModal.vue.d.ts +282 -0
- package/lib/ui/src/Modal/src/components/BasicTitle.vue.d.ts +126 -0
- package/lib/ui/src/Modal/src/components/Modal.d.ts +260 -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 +264 -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 +157 -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 +2000 -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 +912 -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 +6 -5
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
import type { Ref } from 'vue';
|
|
2
|
+
import type { FormProps, FormSchema } from '../types/form';
|
|
3
|
+
export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsRef: Ref<FormProps>): import("vue").ComputedRef<{
|
|
4
|
+
labelCol: Partial<import("vue").ExtractPropTypes<{
|
|
5
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
6
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
7
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
8
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
9
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
10
|
+
xs: {
|
|
11
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
12
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
13
|
+
};
|
|
14
|
+
sm: {
|
|
15
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
16
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
17
|
+
};
|
|
18
|
+
md: {
|
|
19
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
20
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
21
|
+
};
|
|
22
|
+
lg: {
|
|
23
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
24
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
25
|
+
};
|
|
26
|
+
xl: {
|
|
27
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
28
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
29
|
+
};
|
|
30
|
+
xxl: {
|
|
31
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
32
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
33
|
+
};
|
|
34
|
+
prefixCls: StringConstructor;
|
|
35
|
+
flex: (NumberConstructor | StringConstructor)[];
|
|
36
|
+
}>> & import("vue").HTMLAttributes;
|
|
37
|
+
wrapperCol: Partial<import("vue").ExtractPropTypes<{
|
|
38
|
+
span: (NumberConstructor | StringConstructor)[];
|
|
39
|
+
order: (NumberConstructor | StringConstructor)[];
|
|
40
|
+
offset: (NumberConstructor | StringConstructor)[];
|
|
41
|
+
push: (NumberConstructor | StringConstructor)[];
|
|
42
|
+
pull: (NumberConstructor | StringConstructor)[];
|
|
43
|
+
xs: {
|
|
44
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
45
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
46
|
+
};
|
|
47
|
+
sm: {
|
|
48
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
49
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
50
|
+
};
|
|
51
|
+
md: {
|
|
52
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
53
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
54
|
+
};
|
|
55
|
+
lg: {
|
|
56
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
57
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
58
|
+
};
|
|
59
|
+
xl: {
|
|
60
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
61
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
62
|
+
};
|
|
63
|
+
xxl: {
|
|
64
|
+
type: import("vue").PropType<string | number | import("ant-design-vue/lib/grid/Col").ColSize>;
|
|
65
|
+
default: string | number | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
66
|
+
};
|
|
67
|
+
prefixCls: StringConstructor;
|
|
68
|
+
flex: (NumberConstructor | StringConstructor)[];
|
|
69
|
+
}>>;
|
|
70
|
+
} | {
|
|
71
|
+
labelCol: {
|
|
72
|
+
xxl?: string | number | {
|
|
73
|
+
span: number;
|
|
74
|
+
offset: number;
|
|
75
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
76
|
+
xl?: string | number | {
|
|
77
|
+
span: number;
|
|
78
|
+
offset: number;
|
|
79
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
80
|
+
lg?: string | number | {
|
|
81
|
+
span: number;
|
|
82
|
+
offset: number;
|
|
83
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
84
|
+
md?: string | number | {
|
|
85
|
+
span: number;
|
|
86
|
+
offset: number;
|
|
87
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
88
|
+
sm?: string | number | {
|
|
89
|
+
span: number;
|
|
90
|
+
offset: number;
|
|
91
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
92
|
+
xs?: string | number | {
|
|
93
|
+
span: number;
|
|
94
|
+
offset: number;
|
|
95
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
96
|
+
span?: string | number;
|
|
97
|
+
push?: string | number;
|
|
98
|
+
prefixCls?: string;
|
|
99
|
+
order?: string | number;
|
|
100
|
+
offset?: string | number;
|
|
101
|
+
pull?: string | number;
|
|
102
|
+
flex?: string | number;
|
|
103
|
+
innerHTML?: string;
|
|
104
|
+
class?: any;
|
|
105
|
+
style: any;
|
|
106
|
+
accesskey?: string;
|
|
107
|
+
contenteditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only";
|
|
108
|
+
contextmenu?: string;
|
|
109
|
+
dir?: string;
|
|
110
|
+
draggable?: boolean | "false" | "true";
|
|
111
|
+
hidden?: "" | "hidden" | (boolean | "false" | "true") | "until-found";
|
|
112
|
+
id?: string;
|
|
113
|
+
inert?: boolean | "false" | "true";
|
|
114
|
+
lang?: string;
|
|
115
|
+
placeholder?: string;
|
|
116
|
+
spellcheck?: boolean | "false" | "true";
|
|
117
|
+
tabindex?: string | number;
|
|
118
|
+
title?: string;
|
|
119
|
+
translate?: "yes" | "no";
|
|
120
|
+
radiogroup?: string;
|
|
121
|
+
role?: string;
|
|
122
|
+
about?: string;
|
|
123
|
+
datatype?: string;
|
|
124
|
+
inlist?: any;
|
|
125
|
+
prefix?: string;
|
|
126
|
+
property?: string;
|
|
127
|
+
resource?: string;
|
|
128
|
+
typeof?: string;
|
|
129
|
+
vocab?: string;
|
|
130
|
+
autocapitalize?: string;
|
|
131
|
+
autocorrect?: string;
|
|
132
|
+
autosave?: string;
|
|
133
|
+
color?: string;
|
|
134
|
+
itemprop?: string;
|
|
135
|
+
itemscope?: boolean | "false" | "true";
|
|
136
|
+
itemtype?: string;
|
|
137
|
+
itemid?: string;
|
|
138
|
+
itemref?: string;
|
|
139
|
+
results?: string | number;
|
|
140
|
+
security?: string;
|
|
141
|
+
unselectable?: "off" | "on";
|
|
142
|
+
inputmode?: "none" | "text" | "search" | "decimal" | "url" | "email" | "tel" | "numeric";
|
|
143
|
+
is?: string;
|
|
144
|
+
'aria-activedescendant'?: string;
|
|
145
|
+
'aria-atomic'?: boolean | "false" | "true";
|
|
146
|
+
'aria-autocomplete'?: "none" | "inline" | "both" | "list";
|
|
147
|
+
'aria-busy'?: boolean | "false" | "true";
|
|
148
|
+
'aria-checked'?: "mixed" | (boolean | "false" | "true");
|
|
149
|
+
'aria-colcount'?: string | number;
|
|
150
|
+
'aria-colindex'?: string | number;
|
|
151
|
+
'aria-colspan'?: string | number;
|
|
152
|
+
'aria-controls'?: string;
|
|
153
|
+
'aria-current'?: "time" | "date" | "step" | "page" | (boolean | "false" | "true") | "location";
|
|
154
|
+
'aria-describedby'?: string;
|
|
155
|
+
'aria-details'?: string;
|
|
156
|
+
'aria-disabled'?: boolean | "false" | "true";
|
|
157
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup";
|
|
158
|
+
'aria-errormessage'?: string;
|
|
159
|
+
'aria-expanded'?: boolean | "false" | "true";
|
|
160
|
+
'aria-flowto'?: string;
|
|
161
|
+
'aria-grabbed'?: boolean | "false" | "true";
|
|
162
|
+
'aria-haspopup'?: "dialog" | "menu" | "grid" | "listbox" | (boolean | "false" | "true") | "tree";
|
|
163
|
+
'aria-hidden'?: boolean | "false" | "true";
|
|
164
|
+
'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling";
|
|
165
|
+
'aria-keyshortcuts'?: string;
|
|
166
|
+
'aria-label'?: string;
|
|
167
|
+
'aria-labelledby'?: string;
|
|
168
|
+
'aria-level'?: string | number;
|
|
169
|
+
'aria-live'?: "off" | "assertive" | "polite";
|
|
170
|
+
'aria-modal'?: boolean | "false" | "true";
|
|
171
|
+
'aria-multiline'?: boolean | "false" | "true";
|
|
172
|
+
'aria-multiselectable'?: boolean | "false" | "true";
|
|
173
|
+
'aria-orientation'?: "vertical" | "horizontal";
|
|
174
|
+
'aria-owns'?: string;
|
|
175
|
+
'aria-placeholder'?: string;
|
|
176
|
+
'aria-posinset'?: string | number;
|
|
177
|
+
'aria-pressed'?: "mixed" | (boolean | "false" | "true");
|
|
178
|
+
'aria-readonly'?: boolean | "false" | "true";
|
|
179
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
180
|
+
'aria-required'?: boolean | "false" | "true";
|
|
181
|
+
'aria-roledescription'?: string;
|
|
182
|
+
'aria-rowcount'?: string | number;
|
|
183
|
+
'aria-rowindex'?: string | number;
|
|
184
|
+
'aria-rowspan'?: string | number;
|
|
185
|
+
'aria-selected'?: boolean | "false" | "true";
|
|
186
|
+
'aria-setsize'?: string | number;
|
|
187
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
188
|
+
'aria-valuemax'?: string | number;
|
|
189
|
+
'aria-valuemin'?: string | number;
|
|
190
|
+
'aria-valuenow'?: string | number;
|
|
191
|
+
'aria-valuetext'?: string;
|
|
192
|
+
onCopy?: (payload: ClipboardEvent) => void;
|
|
193
|
+
onCut?: (payload: ClipboardEvent) => void;
|
|
194
|
+
onPaste?: (payload: ClipboardEvent) => void;
|
|
195
|
+
onCompositionend?: (payload: CompositionEvent) => void;
|
|
196
|
+
onCompositionstart?: (payload: CompositionEvent) => void;
|
|
197
|
+
onCompositionupdate?: (payload: CompositionEvent) => void;
|
|
198
|
+
onDrag?: (payload: DragEvent) => void;
|
|
199
|
+
onDragend?: (payload: DragEvent) => void;
|
|
200
|
+
onDragenter?: (payload: DragEvent) => void;
|
|
201
|
+
onDragexit?: (payload: DragEvent) => void;
|
|
202
|
+
onDragleave?: (payload: DragEvent) => void;
|
|
203
|
+
onDragover?: (payload: DragEvent) => void;
|
|
204
|
+
onDragstart?: (payload: DragEvent) => void;
|
|
205
|
+
onDrop?: (payload: DragEvent) => void;
|
|
206
|
+
onFocus?: (payload: FocusEvent) => void;
|
|
207
|
+
onFocusin?: (payload: FocusEvent) => void;
|
|
208
|
+
onFocusout?: (payload: FocusEvent) => void;
|
|
209
|
+
onBlur?: (payload: FocusEvent) => void;
|
|
210
|
+
onChange?: (payload: Event) => void;
|
|
211
|
+
onBeforeinput?: (payload: Event) => void;
|
|
212
|
+
onInput?: (payload: Event) => void;
|
|
213
|
+
onReset?: (payload: Event) => void;
|
|
214
|
+
onSubmit?: (payload: Event) => void;
|
|
215
|
+
onInvalid?: (payload: Event) => void;
|
|
216
|
+
onLoad?: (payload: Event) => void;
|
|
217
|
+
onError?: (payload: Event) => void;
|
|
218
|
+
onKeydown?: (payload: KeyboardEvent) => void;
|
|
219
|
+
onKeypress?: (payload: KeyboardEvent) => void;
|
|
220
|
+
onKeyup?: (payload: KeyboardEvent) => void;
|
|
221
|
+
onAuxclick?: (payload: MouseEvent) => void;
|
|
222
|
+
onClick?: (payload: MouseEvent) => void;
|
|
223
|
+
onContextmenu?: (payload: MouseEvent) => void;
|
|
224
|
+
onDblclick?: (payload: MouseEvent) => void;
|
|
225
|
+
onMousedown?: (payload: MouseEvent) => void;
|
|
226
|
+
onMouseenter?: (payload: MouseEvent) => void;
|
|
227
|
+
onMouseleave?: (payload: MouseEvent) => void;
|
|
228
|
+
onMousemove?: (payload: MouseEvent) => void;
|
|
229
|
+
onMouseout?: (payload: MouseEvent) => void;
|
|
230
|
+
onMouseover?: (payload: MouseEvent) => void;
|
|
231
|
+
onMouseup?: (payload: MouseEvent) => void;
|
|
232
|
+
onAbort?: (payload: Event) => void;
|
|
233
|
+
onCanplay?: (payload: Event) => void;
|
|
234
|
+
onCanplaythrough?: (payload: Event) => void;
|
|
235
|
+
onDurationchange?: (payload: Event) => void;
|
|
236
|
+
onEmptied?: (payload: Event) => void;
|
|
237
|
+
onEncrypted?: (payload: Event) => void;
|
|
238
|
+
onEnded?: (payload: Event) => void;
|
|
239
|
+
onLoadeddata?: (payload: Event) => void;
|
|
240
|
+
onLoadedmetadata?: (payload: Event) => void;
|
|
241
|
+
onLoadstart?: (payload: Event) => void;
|
|
242
|
+
onPause?: (payload: Event) => void;
|
|
243
|
+
onPlay?: (payload: Event) => void;
|
|
244
|
+
onPlaying?: (payload: Event) => void;
|
|
245
|
+
onProgress?: (payload: Event) => void;
|
|
246
|
+
onRatechange?: (payload: Event) => void;
|
|
247
|
+
onSeeked?: (payload: Event) => void;
|
|
248
|
+
onSeeking?: (payload: Event) => void;
|
|
249
|
+
onStalled?: (payload: Event) => void;
|
|
250
|
+
onSuspend?: (payload: Event) => void;
|
|
251
|
+
onTimeupdate?: (payload: Event) => void;
|
|
252
|
+
onVolumechange?: (payload: Event) => void;
|
|
253
|
+
onWaiting?: (payload: Event) => void;
|
|
254
|
+
onSelect?: (payload: Event) => void;
|
|
255
|
+
onScroll?: (payload: Event) => void;
|
|
256
|
+
onScrollend?: (payload: Event) => void;
|
|
257
|
+
onTouchcancel?: (payload: TouchEvent) => void;
|
|
258
|
+
onTouchend?: (payload: TouchEvent) => void;
|
|
259
|
+
onTouchmove?: (payload: TouchEvent) => void;
|
|
260
|
+
onTouchstart?: (payload: TouchEvent) => void;
|
|
261
|
+
onPointerdown?: (payload: PointerEvent) => void;
|
|
262
|
+
onPointermove?: (payload: PointerEvent) => void;
|
|
263
|
+
onPointerup?: (payload: PointerEvent) => void;
|
|
264
|
+
onPointercancel?: (payload: PointerEvent) => void;
|
|
265
|
+
onPointerenter?: (payload: PointerEvent) => void;
|
|
266
|
+
onPointerleave?: (payload: PointerEvent) => void;
|
|
267
|
+
onPointerover?: (payload: PointerEvent) => void;
|
|
268
|
+
onPointerout?: (payload: PointerEvent) => void;
|
|
269
|
+
onWheel?: (payload: WheelEvent) => void;
|
|
270
|
+
onAnimationstart?: (payload: AnimationEvent) => void;
|
|
271
|
+
onAnimationend?: (payload: AnimationEvent) => void;
|
|
272
|
+
onAnimationiteration?: (payload: AnimationEvent) => void;
|
|
273
|
+
onTransitionend?: (payload: TransitionEvent) => void;
|
|
274
|
+
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
275
|
+
};
|
|
276
|
+
wrapperCol: {
|
|
277
|
+
xxl?: string | number | {
|
|
278
|
+
span: number;
|
|
279
|
+
offset: number;
|
|
280
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
281
|
+
xl?: string | number | {
|
|
282
|
+
span: number;
|
|
283
|
+
offset: number;
|
|
284
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
285
|
+
lg?: string | number | {
|
|
286
|
+
span: number;
|
|
287
|
+
offset: number;
|
|
288
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
289
|
+
md?: string | number | {
|
|
290
|
+
span: number;
|
|
291
|
+
offset: number;
|
|
292
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
293
|
+
sm?: string | number | {
|
|
294
|
+
span: number;
|
|
295
|
+
offset: number;
|
|
296
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
297
|
+
xs?: string | number | {
|
|
298
|
+
span: number;
|
|
299
|
+
offset: number;
|
|
300
|
+
} | import("ant-design-vue/lib/grid/Col").ColSize;
|
|
301
|
+
span?: string | number;
|
|
302
|
+
push?: string | number;
|
|
303
|
+
prefixCls?: string;
|
|
304
|
+
order?: string | number;
|
|
305
|
+
offset?: string | number;
|
|
306
|
+
pull?: string | number;
|
|
307
|
+
flex?: string | number;
|
|
308
|
+
style: any;
|
|
309
|
+
};
|
|
310
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FormProps, UseFormReturnType } from '../types/form';
|
|
2
|
+
import type { NamePath } from 'ant-design-vue/lib/form/interface';
|
|
3
|
+
import { Ref, ComputedRef } from 'vue';
|
|
4
|
+
export type DynamicProps<T> = {
|
|
5
|
+
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
|
|
6
|
+
};
|
|
7
|
+
export declare type ValidateFields = (nameList?: NamePath[]) => Promise<Recordable>;
|
|
8
|
+
type Props = Partial<DynamicProps<FormProps>>;
|
|
9
|
+
export declare function useShyForm(props?: Props): UseFormReturnType;
|
|
10
|
+
export {};
|