@zat-design/sisyphus-react 4.0.0-beta.8 → 4.0.0
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/babel.config.js.backup +13 -0
- package/dist/index.esm.css +1 -1
- package/dist/less.esm.css +1 -1
- package/es/ProAction/index.js +14 -4
- package/es/ProConfigProvider/index.js +11 -2
- package/es/ProDownload/index.js +16 -5
- package/es/ProDownload/utils.js +8 -3
- package/es/ProDrawerForm/components/ProDrawer/index.js +14 -4
- package/es/ProDrawerForm/components/ProModal/index.js +14 -4
- package/es/ProDrawerForm/index.js +13 -3
- package/es/ProEditLabel/components/RenderProForm.js +5 -1
- package/es/ProEditLabel/index.js +16 -5
- package/es/ProEditTable/components/ActionButton/index.js +5 -1
- package/es/ProEditTable/components/RcTable/BaseTable.js +13 -3
- package/es/ProEditTable/components/RcTable/DraggableTable.js +12 -5
- package/es/ProEditTable/components/RenderField/ListChangedWrapper.js +7 -2
- package/es/ProEditTable/components/RenderField/index.js +54 -29
- package/es/ProEditTable/components/RenderToolbar/index.js +10 -4
- package/es/ProEditTable/index.js +16 -5
- package/es/ProEditTable/propsType.d.ts +12 -6
- package/es/ProEditTable/style/index.less +30 -3
- package/es/ProEditTable/utils/config.js +8 -3
- package/es/ProEditTable/utils/index.js +13 -9
- package/es/ProEditTable/utils/tools.js +22 -10
- package/es/ProEditTable/utils/useEditTableError.js +6 -1
- package/es/ProEditTable/utils/useShouldUpdateForTable.js +16 -7
- package/es/ProEnum/components/Group.js +6 -1
- package/es/ProEnum/components/Tag.js +6 -1
- package/es/ProEnum/hooks/useEnum.d.ts +8 -0
- package/es/ProEnum/hooks/useEnum.js +76 -4
- package/es/ProEnum/hooks/useEnumRequest.js +8 -3
- package/es/ProEnum/hooks/useFrequentEnumRequest.js +8 -3
- package/es/ProEnum/index.js +25 -15
- package/es/ProEnum/utils/eventCenter.js +3 -1
- package/es/ProEnum/utils/frequentEnum.js +5 -1
- package/es/ProEnum/utils/index.js +2 -1
- package/es/ProForm/components/FormFooter/index.js +5 -1
- package/es/ProForm/components/base/Checkbox/index.js +7 -2
- package/es/ProForm/components/base/DatePicker/index.js +7 -2
- package/es/ProForm/components/base/DatePicker/useDateLimit.js +6 -1
- package/es/ProForm/components/base/Input/index.js +7 -2
- package/es/ProForm/components/base/InputNumber/index.js +13 -3
- package/es/ProForm/components/base/Radio/index.js +7 -2
- package/es/ProForm/components/base/RangePicker/index.d.ts +7 -1
- package/es/ProForm/components/base/RangePicker/index.js +50 -4
- package/es/ProForm/components/base/RangePicker/useDateRange.js +6 -1
- package/es/ProForm/components/base/Select/index.js +7 -2
- package/es/ProForm/components/base/Switch/index.js +7 -2
- package/es/ProForm/components/base/SwitchCheckbox/index.js +7 -2
- package/es/ProForm/components/base/TextArea/index.js +7 -2
- package/es/ProForm/components/base/TimePicker/index.js +7 -2
- package/es/ProForm/components/combination/Container/index.js +5 -1
- package/es/ProForm/components/combination/Container/style/index.less +5 -0
- package/es/ProForm/components/combination/FormList/components/ActionButton.d.ts +1 -0
- package/es/ProForm/components/combination/FormList/components/ActionButton.js +94 -7
- package/es/ProForm/components/combination/FormList/components/BlockFields.d.ts +2 -0
- package/es/ProForm/components/combination/FormList/components/BlockFields.js +63 -6
- package/es/ProForm/components/combination/FormList/components/Empty.js +14 -4
- package/es/ProForm/components/combination/FormList/components/LineFields.d.ts +1 -0
- package/es/ProForm/components/combination/FormList/components/LineFields.js +9 -3
- package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +48 -13
- package/es/ProForm/components/combination/FormList/index.js +108 -61
- package/es/ProForm/components/combination/FormList/propsType.d.ts +7 -2
- package/es/ProForm/components/combination/FormList/style/index.less +41 -0
- package/es/ProForm/components/combination/FormList/utils.d.ts +6 -0
- package/es/ProForm/components/combination/FormList/utils.js +17 -0
- package/es/ProForm/components/combination/Group/component/ComRender.d.ts +3 -0
- package/es/ProForm/components/combination/Group/component/ComRender.js +70 -3
- package/es/ProForm/components/combination/Group/component/FlexibleGroup.d.ts +10 -0
- package/es/ProForm/components/combination/Group/component/FlexibleGroup.js +351 -0
- package/es/ProForm/components/combination/Group/hooks/index.d.ts +16 -1
- package/es/ProForm/components/combination/Group/hooks/index.js +107 -4
- package/es/ProForm/components/combination/Group/index.d.ts +3 -4
- package/es/ProForm/components/combination/Group/index.js +108 -24
- package/es/ProForm/components/combination/Group/propsType.d.ts +44 -1
- package/es/ProForm/components/combination/Group/style/index.less +425 -3
- package/es/ProForm/components/combination/Group/utils/index.d.ts +154 -0
- package/es/ProForm/components/combination/Group/utils/index.js +428 -0
- package/es/ProForm/components/combination/ProCascader/index.js +13 -3
- package/es/ProForm/components/combination/ProCascader/utils/index.js +7 -2
- package/es/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +14 -4
- package/es/ProForm/components/combination/ProModalSelect/index.js +16 -5
- package/es/ProForm/components/combination/ProNumberRange/index.js +24 -12
- package/es/ProForm/components/combination/ProNumberRange/propsType.d.ts +4 -0
- package/es/ProForm/components/combination/ProNumberRange/style/index.less +14 -7
- package/es/ProForm/components/combination/ProRangeLimit/index.js +13 -3
- package/es/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +6 -1
- package/es/ProForm/components/combination/ProTimeLimit/index.js +13 -3
- package/es/ProForm/components/render/ChangedWrapper.js +7 -2
- package/es/ProForm/components/render/ConfirmWrapper.js +10 -4
- package/es/ProForm/components/render/CustomComponentViewWrapper.d.ts +30 -0
- package/es/ProForm/components/render/CustomComponentViewWrapper.js +120 -0
- package/es/ProForm/components/render/Render.js +71 -16
- package/es/ProForm/components/render/RenderFields.js +7 -2
- package/es/ProForm/index.js +13 -3
- package/es/ProForm/propsType.d.ts +7 -0
- package/es/ProForm/style/index.less +11 -2
- package/es/ProForm/utils/index.js +7 -2
- package/es/ProForm/utils/rulesCreator.js +5 -1
- package/es/ProForm/utils/transformValue.js +5 -1
- package/es/ProForm/utils/useForm.js +15 -5
- package/es/ProForm/utils/useShouldUpdate.js +93 -35
- package/es/ProForm/utils/useWatch.js +9 -4
- package/es/ProForm/utils/valueType.js +11 -2
- package/es/ProIcon/index.js +13 -3
- package/es/ProIcon/utils/index.js +5 -1
- package/es/ProLayout/components/Layout/Menu/FoldMenu/index.js +19 -14
- package/es/ProLayout/components/Layout/Menu/FoldMenu/style/index.less +6 -2
- package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +48 -31
- package/es/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +3 -12
- package/es/ProLayout/components/Layout/Notice/style/index.less +4 -0
- package/es/ProLayout/components/ProCollapse/index.js +5 -1
- package/es/ProLayout/components/ProCollapse/style/index.less +9 -9
- package/es/ProLayout/components/ProFooter/index.js +6 -2
- package/es/ProLayout/components/ProHeader/index.js +33 -19
- package/es/ProLayout/components/TabsManager/components/TabContextMenu.d.ts +7 -0
- package/es/ProLayout/components/TabsManager/components/TabContextMenu.js +100 -0
- package/es/ProLayout/components/TabsManager/components/TabItem.d.ts +26 -0
- package/es/ProLayout/components/TabsManager/components/TabItem.js +61 -0
- package/es/ProLayout/components/TabsManager/components/TabsContext.d.ts +6 -0
- package/es/ProLayout/components/TabsManager/components/TabsContext.js +5 -0
- package/es/ProLayout/components/TabsManager/hooks/useActiveTab.d.ts +6 -0
- package/es/ProLayout/components/TabsManager/hooks/useActiveTab.js +14 -0
- package/es/ProLayout/components/TabsManager/hooks/useProLayoutTabs.d.ts +18 -0
- package/es/ProLayout/components/TabsManager/hooks/useProLayoutTabs.js +26 -0
- package/es/ProLayout/components/TabsManager/hooks/useTabsCache.d.ts +31 -0
- package/es/ProLayout/components/TabsManager/hooks/useTabsCache.js +96 -0
- package/es/ProLayout/components/TabsManager/hooks/useTabsState.d.ts +5 -0
- package/es/ProLayout/components/TabsManager/hooks/useTabsState.js +364 -0
- package/es/ProLayout/components/TabsManager/index.d.ts +8 -0
- package/es/ProLayout/components/TabsManager/index.js +180 -0
- package/es/ProLayout/components/TabsManager/propTypes.d.ts +74 -0
- package/es/ProLayout/components/TabsManager/propTypes.js +16 -0
- package/es/ProLayout/components/TabsManager/style/index.less +179 -0
- package/es/ProLayout/components/TabsManager/utils/index.d.ts +38 -0
- package/es/ProLayout/components/TabsManager/utils/index.js +106 -0
- package/es/ProLayout/index.d.ts +21 -4
- package/es/ProLayout/index.js +107 -14
- package/es/ProLayout/propTypes.d.ts +139 -1
- package/es/ProLayout/propTypes.js +37 -1
- package/es/ProLayout/utils/index.js +16 -7
- package/es/ProSelect/components/AdaptiveTooltip.js +6 -1
- package/es/ProSelect/index.js +13 -3
- package/es/ProSelect/utils/index.js +3 -1
- package/es/ProStep/components/Item/index.js +8 -2
- package/es/ProStep/components/Listener/index.js +10 -4
- package/es/ProStep/components/Step/index.js +11 -2
- package/es/ProStep/index.js +16 -5
- package/es/ProStep/utils/index.js +5 -1
- package/es/ProStepTab/index.js +19 -8
- package/es/ProTable/components/FormatColumn/index.js +7 -2
- package/es/ProTable/components/RcTable/components/BaseTable/index.js +7 -2
- package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +10 -4
- package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +5 -1
- package/es/ProTable/components/RcTable/components/DraggableTable/index.js +7 -2
- package/es/ProTable/components/RenderColumn/index.js +11 -2
- package/es/ProTable/components/RenderTabs/index.js +11 -2
- package/es/ProTable/components/TableResizable/index.js +13 -3
- package/es/ProTable/components/TooltipTitle/index.js +3 -5
- package/es/ProTable/hooks/useAntdTable.js +69 -35
- package/es/ProTable/index.js +16 -5
- package/es/ProTable/style/index.less +3 -0
- package/es/ProTable/utils/index.js +6 -1
- package/es/ProTabs/index.js +13 -3
- package/es/ProThemeTools/component/ProTools/index.js +11 -2
- package/es/ProThemeTools/context/ThemeContext.js +11 -2
- package/es/ProThemeTools/index.js +13 -3
- package/es/ProThemeTools/utils/index.js +5 -1
- package/es/ProTooltip/index.js +13 -3
- package/es/ProTree/components/CloseIcon.js +5 -1
- package/es/ProTree/components/List.js +7 -2
- package/es/ProTree/components/ProTree.js +16 -5
- package/es/ProTree/components/ProTreeSelect/index.js +119 -75
- package/es/ProTree/components/Tree.js +16 -5
- package/es/ProTree/index.js +5 -1
- package/es/ProTree/utils.js +8 -2
- package/es/ProTreeModal/components/Cascader.js +11 -2
- package/es/ProTreeModal/components/CloseIcon.js +5 -1
- package/es/ProTreeModal/components/List.js +6 -1
- package/es/ProTreeModal/components/SortableItem.js +5 -1
- package/es/ProTreeModal/components/Tree.js +13 -3
- package/es/ProTreeModal/components/Trigger.js +11 -2
- package/es/ProTreeModal/index.js +11 -2
- package/es/ProTreeModal/style/index.less +6 -0
- package/es/ProTreeModal/utils.js +8 -2
- package/es/ProUpload/components/ButtonRender.js +8 -3
- package/es/ProUpload/components/DragRender.d.ts +1 -0
- package/es/ProUpload/components/DragRender.js +10 -2
- package/es/ProUpload/components/DraggableUploadListItem.js +5 -1
- package/es/ProUpload/components/Example.js +11 -2
- package/es/ProUpload/components/ImageRender.js +14 -4
- package/es/ProUpload/index.js +17 -5
- package/es/ProUpload/propsType.d.ts +5 -0
- package/es/ProViewer/index.js +14 -4
- package/es/ProWaterMark/index.js +5 -1
- package/es/index.d.ts +1 -2
- package/es/index.js +1 -0
- package/es/locale/en_US.d.ts +9 -0
- package/es/locale/en_US.js +9 -0
- package/es/locale/zh_CN.d.ts +9 -0
- package/es/locale/zh_CN.js +9 -0
- package/es/style/theme/antd.less +11 -35
- package/es/utils/index.js +6 -1
- package/jest.config.js +3 -1
- package/lib/FormsProvider/index.js +2 -1
- package/lib/ProAction/index.js +20 -10
- package/lib/ProConfigProvider/index.js +29 -19
- package/lib/ProDownload/index.js +29 -17
- package/lib/ProDownload/utils.js +14 -12
- package/lib/ProDrawerForm/components/ProDrawer/index.js +27 -16
- package/lib/ProDrawerForm/components/ProModal/index.js +21 -10
- package/lib/ProDrawerForm/components/index.js +2 -2
- package/lib/ProDrawerForm/index.js +20 -9
- package/lib/ProEditLabel/components/RenderProForm.js +9 -6
- package/lib/ProEditLabel/index.js +30 -18
- package/lib/ProEditTable/components/ActionButton/index.js +14 -11
- package/lib/ProEditTable/components/RcTable/BaseTable.js +19 -9
- package/lib/ProEditTable/components/RcTable/DraggableTable.js +24 -16
- package/lib/ProEditTable/components/RcTable/index.js +2 -2
- package/lib/ProEditTable/components/RenderField/ListChangedWrapper.js +16 -10
- package/lib/ProEditTable/components/RenderField/index.js +76 -50
- package/lib/ProEditTable/components/RenderToolbar/index.js +18 -12
- package/lib/ProEditTable/components/index.js +2 -2
- package/lib/ProEditTable/index.js +33 -21
- package/lib/ProEditTable/propsType.d.ts +12 -6
- package/lib/ProEditTable/style/index.less +30 -3
- package/lib/ProEditTable/utils/config.js +20 -15
- package/lib/ProEditTable/utils/index.js +22 -18
- package/lib/ProEditTable/utils/tools.js +30 -21
- package/lib/ProEditTable/utils/useEditTableError.js +7 -3
- package/lib/ProEditTable/utils/useShouldUpdateForTable.js +17 -9
- package/lib/ProEnum/components/Group.js +8 -3
- package/lib/ProEnum/components/Tag.js +8 -3
- package/lib/ProEnum/hooks/useEnum.d.ts +8 -0
- package/lib/ProEnum/hooks/useEnum.js +76 -4
- package/lib/ProEnum/hooks/useEnumRequest.js +23 -18
- package/lib/ProEnum/hooks/useFrequentEnumRequest.js +12 -8
- package/lib/ProEnum/index.js +37 -26
- package/lib/ProEnum/utils/eventCenter.js +4 -3
- package/lib/ProEnum/utils/frequentEnum.js +6 -3
- package/lib/ProEnum/utils/index.js +3 -3
- package/lib/ProForm/components/Container.js +1 -1
- package/lib/ProForm/components/FormFooter/index.js +11 -6
- package/lib/ProForm/components/base/Checkbox/index.js +13 -7
- package/lib/ProForm/components/base/DatePicker/index.js +11 -6
- package/lib/ProForm/components/base/DatePicker/useDateLimit.js +7 -3
- package/lib/ProForm/components/base/Input/index.js +11 -6
- package/lib/ProForm/components/base/InputNumber/index.js +21 -10
- package/lib/ProForm/components/base/Radio/index.js +10 -5
- package/lib/ProForm/components/base/RangePicker/index.d.ts +7 -1
- package/lib/ProForm/components/base/RangePicker/index.js +55 -9
- package/lib/ProForm/components/base/RangePicker/useDateRange.js +7 -3
- package/lib/ProForm/components/base/Select/index.js +10 -5
- package/lib/ProForm/components/base/Switch/index.js +10 -5
- package/lib/ProForm/components/base/SwitchCheckbox/index.js +12 -6
- package/lib/ProForm/components/base/TextArea/index.js +10 -5
- package/lib/ProForm/components/base/TimePicker/index.js +10 -5
- package/lib/ProForm/components/combination/Container/index.js +11 -6
- package/lib/ProForm/components/combination/Container/style/index.less +5 -0
- package/lib/ProForm/components/combination/FormList/components/ActionButton.d.ts +1 -0
- package/lib/ProForm/components/combination/FormList/components/ActionButton.js +108 -20
- package/lib/ProForm/components/combination/FormList/components/BlockFields.d.ts +2 -0
- package/lib/ProForm/components/combination/FormList/components/BlockFields.js +65 -8
- package/lib/ProForm/components/combination/FormList/components/BlockTitle.js +1 -1
- package/lib/ProForm/components/combination/FormList/components/Empty.js +17 -7
- package/lib/ProForm/components/combination/FormList/components/LineFields.d.ts +1 -0
- package/lib/ProForm/components/combination/FormList/components/LineFields.js +11 -5
- package/lib/ProForm/components/combination/FormList/components/ToolbarButton.js +58 -23
- package/lib/ProForm/components/combination/FormList/index.js +113 -65
- package/lib/ProForm/components/combination/FormList/propsType.d.ts +7 -2
- package/lib/ProForm/components/combination/FormList/style/index.less +41 -0
- package/lib/ProForm/components/combination/FormList/utils.d.ts +6 -0
- package/lib/ProForm/components/combination/FormList/utils.js +20 -2
- package/lib/ProForm/components/combination/Group/component/AddonWrapper/index.js +1 -1
- package/lib/ProForm/components/combination/Group/component/ComRender.d.ts +3 -0
- package/lib/ProForm/components/combination/Group/component/ComRender.js +79 -11
- package/lib/ProForm/components/combination/Group/component/FlexibleGroup.d.ts +10 -0
- package/lib/ProForm/components/combination/Group/component/FlexibleGroup.js +360 -0
- package/lib/ProForm/components/combination/Group/hooks/index.d.ts +16 -1
- package/lib/ProForm/components/combination/Group/hooks/index.js +111 -9
- package/lib/ProForm/components/combination/Group/index.d.ts +3 -4
- package/lib/ProForm/components/combination/Group/index.js +111 -27
- package/lib/ProForm/components/combination/Group/propsType.d.ts +44 -1
- package/lib/ProForm/components/combination/Group/style/index.less +425 -3
- package/lib/ProForm/components/combination/Group/utils/index.d.ts +154 -0
- package/lib/ProForm/components/combination/Group/utils/index.js +444 -0
- package/lib/ProForm/components/combination/ProCascader/index.js +20 -10
- package/lib/ProForm/components/combination/ProCascader/utils/index.js +9 -5
- package/lib/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +25 -15
- package/lib/ProForm/components/combination/ProModalSelect/index.js +53 -41
- package/lib/ProForm/components/combination/ProNumberRange/index.js +28 -16
- package/lib/ProForm/components/combination/ProNumberRange/propsType.d.ts +4 -0
- package/lib/ProForm/components/combination/ProNumberRange/style/index.less +14 -7
- package/lib/ProForm/components/combination/ProRangeLimit/index.js +29 -18
- package/lib/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +8 -3
- package/lib/ProForm/components/combination/ProTimeLimit/index.js +26 -15
- package/lib/ProForm/components/index.js +2 -2
- package/lib/ProForm/components/render/ChangedWrapper.js +16 -10
- package/lib/ProForm/components/render/ConfirmWrapper.js +19 -13
- package/lib/ProForm/components/render/CustomComponentViewWrapper.d.ts +30 -0
- package/lib/ProForm/components/render/CustomComponentViewWrapper.js +127 -0
- package/lib/ProForm/components/render/Render.js +93 -37
- package/lib/ProForm/components/render/RenderFields.js +15 -9
- package/lib/ProForm/index.js +23 -12
- package/lib/ProForm/propsType.d.ts +7 -0
- package/lib/ProForm/style/index.less +11 -2
- package/lib/ProForm/utils/index.js +12 -8
- package/lib/ProForm/utils/rulesCreator.js +8 -4
- package/lib/ProForm/utils/transformValue.js +6 -3
- package/lib/ProForm/utils/useFieldProps.js +2 -1
- package/lib/ProForm/utils/useForm.js +21 -12
- package/lib/ProForm/utils/useRules.js +1 -1
- package/lib/ProForm/utils/useShouldUpdate.js +94 -37
- package/lib/ProForm/utils/useWatch.js +11 -6
- package/lib/ProForm/utils/valueType.js +15 -6
- package/lib/ProIcon/index.js +26 -16
- package/lib/ProIcon/utils/index.js +7 -4
- package/lib/ProLayout/components/Layout/Header/index.js +1 -1
- package/lib/ProLayout/components/Layout/Icon/Icon.js +2 -1
- package/lib/ProLayout/components/Layout/Icon/index.js +1 -1
- package/lib/ProLayout/components/Layout/Menu/FoldMenu/index.js +24 -19
- package/lib/ProLayout/components/Layout/Menu/FoldMenu/style/index.less +6 -2
- package/lib/ProLayout/components/Layout/Menu/OpenMenu/index.js +50 -33
- package/lib/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +3 -12
- package/lib/ProLayout/components/Layout/Menu/SideMenu/index.js +1 -1
- package/lib/ProLayout/components/Layout/Menu/index.js +1 -1
- package/lib/ProLayout/components/Layout/Notice/index.js +1 -1
- package/lib/ProLayout/components/Layout/Notice/style/index.less +4 -0
- package/lib/ProLayout/components/Layout/index.js +2 -2
- package/lib/ProLayout/components/ProCollapse/index.js +10 -6
- package/lib/ProLayout/components/ProCollapse/style/index.less +9 -9
- package/lib/ProLayout/components/ProFooter/index.js +8 -4
- package/lib/ProLayout/components/ProHeader/components/Copy/index.js +1 -1
- package/lib/ProLayout/components/ProHeader/components/ProBackBtn/index.js +1 -1
- package/lib/ProLayout/components/ProHeader/components/index.js +2 -2
- package/lib/ProLayout/components/ProHeader/index.js +41 -27
- package/lib/ProLayout/components/TabsManager/components/TabContextMenu.d.ts +7 -0
- package/lib/ProLayout/components/TabsManager/components/TabContextMenu.js +106 -0
- package/lib/ProLayout/components/TabsManager/components/TabItem.d.ts +26 -0
- package/lib/ProLayout/components/TabsManager/components/TabItem.js +67 -0
- package/lib/ProLayout/components/TabsManager/components/TabsContext.d.ts +6 -0
- package/lib/ProLayout/components/TabsManager/components/TabsContext.js +11 -0
- package/lib/ProLayout/components/TabsManager/hooks/useActiveTab.d.ts +6 -0
- package/lib/ProLayout/components/TabsManager/hooks/useActiveTab.js +20 -0
- package/lib/ProLayout/components/TabsManager/hooks/useProLayoutTabs.d.ts +18 -0
- package/lib/ProLayout/components/TabsManager/hooks/useProLayoutTabs.js +31 -0
- package/lib/ProLayout/components/TabsManager/hooks/useTabsCache.d.ts +31 -0
- package/lib/ProLayout/components/TabsManager/hooks/useTabsCache.js +103 -0
- package/lib/ProLayout/components/TabsManager/hooks/useTabsState.d.ts +5 -0
- package/lib/ProLayout/components/TabsManager/hooks/useTabsState.js +370 -0
- package/lib/ProLayout/components/TabsManager/index.d.ts +8 -0
- package/lib/ProLayout/components/TabsManager/index.js +183 -0
- package/lib/ProLayout/components/TabsManager/propTypes.d.ts +74 -0
- package/lib/ProLayout/components/TabsManager/propTypes.js +22 -0
- package/lib/ProLayout/components/TabsManager/style/index.less +179 -0
- package/lib/ProLayout/components/TabsManager/utils/index.d.ts +38 -0
- package/lib/ProLayout/components/TabsManager/utils/index.js +119 -0
- package/lib/ProLayout/components/index.js +2 -2
- package/lib/ProLayout/index.d.ts +21 -4
- package/lib/ProLayout/index.js +122 -21
- package/lib/ProLayout/propTypes.d.ts +139 -1
- package/lib/ProLayout/propTypes.js +40 -1
- package/lib/ProLayout/utils/index.js +18 -13
- package/lib/ProSelect/components/AdaptiveTooltip.js +7 -3
- package/lib/ProSelect/index.js +23 -12
- package/lib/ProSelect/utils/index.js +8 -8
- package/lib/ProStep/components/Anchor/index.js +1 -1
- package/lib/ProStep/components/Item/index.js +15 -9
- package/lib/ProStep/components/Listener/index.js +15 -9
- package/lib/ProStep/components/Step/index.js +17 -7
- package/lib/ProStep/index.js +30 -19
- package/lib/ProStep/utils/index.js +6 -3
- package/lib/ProStepTab/index.js +33 -22
- package/lib/ProTable/components/FormatColumn/index.js +22 -16
- package/lib/ProTable/components/RcTable/components/BaseTable/index.js +9 -5
- package/lib/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +22 -16
- package/lib/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +8 -5
- package/lib/ProTable/components/RcTable/components/DraggableTable/index.js +11 -6
- package/lib/ProTable/components/RcTable/index.js +2 -2
- package/lib/ProTable/components/RenderColumn/index.js +17 -8
- package/lib/ProTable/components/RenderTabs/index.js +16 -7
- package/lib/ProTable/components/TableResizable/index.js +19 -9
- package/lib/ProTable/components/TooltipTitle/index.js +3 -6
- package/lib/ProTable/components/index.js +2 -2
- package/lib/ProTable/hooks/useAntdTable.js +94 -60
- package/lib/ProTable/index.js +41 -29
- package/lib/ProTable/style/index.less +3 -0
- package/lib/ProTable/utils/index.js +7 -3
- package/lib/ProTabs/components/index.js +2 -2
- package/lib/ProTabs/index.js +23 -12
- package/lib/ProThemeTools/component/ProTools/index.js +21 -11
- package/lib/ProThemeTools/component/index.js +2 -2
- package/lib/ProThemeTools/context/ThemeContext.js +20 -16
- package/lib/ProThemeTools/index.js +22 -12
- package/lib/ProThemeTools/utils/index.js +6 -3
- package/lib/ProTooltip/index.js +30 -20
- package/lib/ProTree/components/CloseIcon.js +6 -3
- package/lib/ProTree/components/List.js +10 -5
- package/lib/ProTree/components/ProTree.js +23 -12
- package/lib/ProTree/components/ProTreeSelect/index.js +138 -93
- package/lib/ProTree/components/SearchTitle.js +1 -1
- package/lib/ProTree/components/Tree.js +28 -16
- package/lib/ProTree/components/index.js +2 -2
- package/lib/ProTree/index.js +9 -5
- package/lib/ProTree/utils.js +16 -11
- package/lib/ProTreeModal/components/Cascader.js +14 -5
- package/lib/ProTreeModal/components/CloseIcon.js +6 -3
- package/lib/ProTreeModal/components/List.js +11 -7
- package/lib/ProTreeModal/components/SortableItem.js +10 -6
- package/lib/ProTreeModal/components/Tree.js +24 -13
- package/lib/ProTreeModal/components/Trigger.js +19 -9
- package/lib/ProTreeModal/components/index.js +2 -2
- package/lib/ProTreeModal/index.js +16 -6
- package/lib/ProTreeModal/style/index.less +6 -0
- package/lib/ProTreeModal/utils.js +17 -14
- package/lib/ProUpload/components/ButtonRender.js +14 -9
- package/lib/ProUpload/components/DragRender.d.ts +1 -0
- package/lib/ProUpload/components/DragRender.js +13 -5
- package/lib/ProUpload/components/DraggableUploadListItem.js +7 -3
- package/lib/ProUpload/components/Example.js +16 -6
- package/lib/ProUpload/components/FileItem.js +1 -1
- package/lib/ProUpload/components/ImageRender.js +20 -10
- package/lib/ProUpload/index.js +31 -18
- package/lib/ProUpload/propsType.d.ts +5 -0
- package/lib/ProViewer/index.js +22 -14
- package/lib/ProWaterMark/index.js +7 -3
- package/lib/index.d.ts +1 -2
- package/lib/index.js +4 -3
- package/lib/locale/en_US.d.ts +9 -0
- package/lib/locale/en_US.js +9 -0
- package/lib/locale/index.js +1 -1
- package/lib/locale/zh_CN.d.ts +9 -0
- package/lib/locale/zh_CN.js +9 -0
- package/lib/style/theme/antd.less +11 -35
- package/lib/utils/index.js +9 -4
- package/package.json +14 -17
- package/package.json.backup-antd5 +159 -0
- package/es/ProForm/components/combination/Group/utils.d.ts +0 -54
- package/es/ProForm/components/combination/Group/utils.js +0 -196
- package/es/assets/tip.svg +0 -1
- package/lib/ProForm/components/combination/Group/utils.d.ts +0 -54
- package/lib/ProForm/components/combination/Group/utils.js +0 -210
- package/lib/assets/tip.svg +0 -1
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
2
|
+
import { InternalNamePath, NamePath } from 'antd/lib/form/interface';
|
|
3
|
+
import { FormInstance } from 'antd';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import type { GroupColumnType, SpaceType, FlexibleGroupColumnType } from '../propsType';
|
|
6
|
+
import type { ProFormColumnType, ReactiveFunction } from '../../../render/propsType';
|
|
7
|
+
export type EventArgs = any[];
|
|
8
|
+
/**
|
|
9
|
+
* 插入间隔符
|
|
10
|
+
* @param columns 表单配置数组
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
export declare const insertSeparator: (columns: GroupColumnType[], space?: SpaceType) => any[];
|
|
14
|
+
/** 带出event的组件默认取值方法 */
|
|
15
|
+
export declare function defaultGetValueFromEvent(valuePropName: string, ...args: EventArgs): any;
|
|
16
|
+
/** 转换names */
|
|
17
|
+
export declare const transformNamesString: (arr: (string | string[])[]) => (string | string[])[];
|
|
18
|
+
/**
|
|
19
|
+
* Input TextArea 小写自动转大写
|
|
20
|
+
* @param type 组件类型
|
|
21
|
+
* @param upperCase 是否小写转大写
|
|
22
|
+
* @returns {}
|
|
23
|
+
*/
|
|
24
|
+
export declare const isUpperCase: (type: string, upperCase: boolean) => any;
|
|
25
|
+
interface Params {
|
|
26
|
+
form?: FormInstance;
|
|
27
|
+
index?: number;
|
|
28
|
+
type?: string;
|
|
29
|
+
namePath?: InternalNamePath;
|
|
30
|
+
disabled?: boolean | ReactiveFunction<any, boolean>;
|
|
31
|
+
show?: boolean | ReactiveFunction<any, boolean>;
|
|
32
|
+
component?: React.ReactNode | ReactiveFunction<any, React.ReactNode>;
|
|
33
|
+
fieldProps?: boolean | ReactiveFunction<any, boolean>;
|
|
34
|
+
name?: NamePath;
|
|
35
|
+
desensitization?: [number, number] | ReactiveFunction<any, [number, number]>;
|
|
36
|
+
}
|
|
37
|
+
/** 计算响应式参数的值 */
|
|
38
|
+
export declare const getReactiveProps: (params: Params) => {
|
|
39
|
+
disabled: boolean;
|
|
40
|
+
show: boolean;
|
|
41
|
+
component: React.ReactNode;
|
|
42
|
+
fieldProps: boolean;
|
|
43
|
+
desensitization: [number, number];
|
|
44
|
+
};
|
|
45
|
+
type ValueTypeGetterParams = Pick<ProFormColumnType, 'valueType' | 'switchValue' | 'toISOString' | 'toCSTString' | 'disabled' | 'desensitization'> & {
|
|
46
|
+
type?: any;
|
|
47
|
+
mode?: string;
|
|
48
|
+
};
|
|
49
|
+
/** 获取当前字段的转换函数 */
|
|
50
|
+
export declare const getValueTypeTrans: (params: ValueTypeGetterParams) => any;
|
|
51
|
+
/** 执行所有中间件 返回处理后的值 */
|
|
52
|
+
export declare const getValueMiddleware: (value: any, callbacks?: any[]) => any;
|
|
53
|
+
/** 获取中间件处理后的value */
|
|
54
|
+
export declare const valueFromEventWrapper: (column: any, args: any) => any;
|
|
55
|
+
interface ContextProps {
|
|
56
|
+
form: FormInstance;
|
|
57
|
+
namePath?: InternalNamePath;
|
|
58
|
+
isView?: boolean;
|
|
59
|
+
names?: NamePath[];
|
|
60
|
+
index?: number;
|
|
61
|
+
}
|
|
62
|
+
interface GroupProps {
|
|
63
|
+
disabled?: boolean;
|
|
64
|
+
formDisabled?: boolean;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 创建FormItem属性(Hook版本)
|
|
68
|
+
*/
|
|
69
|
+
export declare const useFormItemProps: (column: FlexibleGroupColumnType, contextProps: ContextProps, groupProps: GroupProps) => {
|
|
70
|
+
rules: any[];
|
|
71
|
+
required: boolean;
|
|
72
|
+
label: string;
|
|
73
|
+
before?: React.ReactNode;
|
|
74
|
+
after?: React.ReactNode;
|
|
75
|
+
confirm?: boolean | import("antd").ModalFuncProps | import("../../../render/propsType").FunctionArgs<any, boolean | import("antd").ModalFuncProps>;
|
|
76
|
+
show?: boolean | ReactiveFunction<any, boolean>;
|
|
77
|
+
component?: React.ReactNode | ReactiveFunction<any, React.ReactNode>;
|
|
78
|
+
trim?: boolean;
|
|
79
|
+
normalize?: (value: any, prevValue: any, allValues: import("@rc-component/form/lib/interface").Store) => any;
|
|
80
|
+
children?: React.ReactNode | ((form: FormInstance<any>) => React.ReactNode);
|
|
81
|
+
vertical?: boolean;
|
|
82
|
+
id?: string;
|
|
83
|
+
className?: string;
|
|
84
|
+
hidden?: boolean;
|
|
85
|
+
style?: React.CSSProperties;
|
|
86
|
+
onReset?: () => void;
|
|
87
|
+
prefixCls?: string;
|
|
88
|
+
rootClassName?: string;
|
|
89
|
+
status?: "" | "success" | "error" | "warning" | "validating";
|
|
90
|
+
trigger?: string;
|
|
91
|
+
colon?: boolean;
|
|
92
|
+
isView?: boolean;
|
|
93
|
+
desensitization?: [number, number] | ReactiveFunction<any, [number, number]>;
|
|
94
|
+
getValueProps?: ((value: any) => Record<string, unknown>) & ((value: any) => Record<string, unknown>);
|
|
95
|
+
htmlFor?: string;
|
|
96
|
+
labelAlign?: import("antd/es/form/interface").FormLabelAlign;
|
|
97
|
+
labelCol?: import("antd").ColProps;
|
|
98
|
+
getValueFromEvent?: (...args: import("@rc-component/form/lib/interface").EventArgs) => any;
|
|
99
|
+
shouldUpdate?: import("@rc-component/form/lib/Field").ShouldUpdate<any>;
|
|
100
|
+
validateTrigger?: string | false | string[];
|
|
101
|
+
validateDebounce?: number;
|
|
102
|
+
valuePropName?: string;
|
|
103
|
+
messageVariables?: Record<string, string>;
|
|
104
|
+
initialValue?: any;
|
|
105
|
+
onMetaChange?: (meta: import("@rc-component/form/lib/Field").MetaEvent) => void;
|
|
106
|
+
preserve?: boolean;
|
|
107
|
+
isListField?: boolean;
|
|
108
|
+
isList?: boolean;
|
|
109
|
+
noStyle?: boolean;
|
|
110
|
+
hasFeedback?: boolean | {
|
|
111
|
+
icons: import("antd/es/form/FormItem").FeedbackIcons;
|
|
112
|
+
};
|
|
113
|
+
validateStatus?: "" | "success" | "error" | "warning" | "validating";
|
|
114
|
+
layout?: import("antd/es/form/Form").FormItemLayout;
|
|
115
|
+
wrapperCol?: import("antd").ColProps;
|
|
116
|
+
help?: React.ReactNode;
|
|
117
|
+
fieldId?: string;
|
|
118
|
+
valueType?: import("../../../render/propsType").ProFormValueType;
|
|
119
|
+
switchValue?: [any, any];
|
|
120
|
+
viewRender?: (value: any, record: any, { form, index, namePath, }: {
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
form: FormInstance<any>;
|
|
123
|
+
index?: number;
|
|
124
|
+
}) => string | React.ReactElement<any, any>;
|
|
125
|
+
viewType?: import("../../../render/propsType").ViewType;
|
|
126
|
+
upperCase?: boolean;
|
|
127
|
+
toISOString?: boolean;
|
|
128
|
+
toCSTString?: boolean;
|
|
129
|
+
clearNotShow?: boolean;
|
|
130
|
+
name: any;
|
|
131
|
+
dependencies: any[];
|
|
132
|
+
tooltip: string | {
|
|
133
|
+
title: string;
|
|
134
|
+
icon?: React.ReactNode;
|
|
135
|
+
};
|
|
136
|
+
extra: React.ReactNode;
|
|
137
|
+
validateFirst: boolean | "parallel";
|
|
138
|
+
disabled: any;
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* 创建组件属性
|
|
142
|
+
*/
|
|
143
|
+
export declare const createComponentProps: (column: FlexibleGroupColumnType, formItemProps: any) => {
|
|
144
|
+
componentProps: import("lodash").Omit<any, "format" | "valueType" | "switchValue" | "dependNames" | "toISOString" | "toCSTString" | "clearNotShow" | "precision">;
|
|
145
|
+
formItemTransform: {
|
|
146
|
+
getValueProps: any;
|
|
147
|
+
normalize: any;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* 配置验证组件
|
|
152
|
+
*/
|
|
153
|
+
export declare const validateChildren: (children: FlexibleGroupColumnType[]) => boolean;
|
|
154
|
+
export {};
|
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
var _excluded = ["name", "label", "rules", "required", "dependencies", "tooltip", "extra", "validateFirst", "disabled", "type", "fieldProps"],
|
|
2
|
+
_excluded2 = ["normalize", "getValueProps"];
|
|
3
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(typeof e + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
4
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
5
|
+
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
6
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
7
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
8
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
9
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : String(i); }
|
|
10
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
12
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
13
|
+
/* eslint-disable no-lonely-if */
|
|
14
|
+
|
|
15
|
+
import { Button } from 'antd';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { isFunction, isString, omit } from 'lodash';
|
|
18
|
+
import { validate } from '@zat-design/utils';
|
|
19
|
+
import valueTypeMap from "../../../../utils/valueType";
|
|
20
|
+
import locale from "../../../../../locale";
|
|
21
|
+
import { isSelect } from "../../../../utils";
|
|
22
|
+
import { rulesCreator } from "../../../../utils/rulesCreator";
|
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
|
+
/**
|
|
25
|
+
* 插入间隔符
|
|
26
|
+
* @param columns 表单配置数组
|
|
27
|
+
* @returns
|
|
28
|
+
*/
|
|
29
|
+
export var insertSeparator = (columns, space) => {
|
|
30
|
+
if (!(space !== null && space !== void 0 && space.separator)) {
|
|
31
|
+
return columns;
|
|
32
|
+
}
|
|
33
|
+
var separatorIndexs = (() => {
|
|
34
|
+
var reuslt = [];
|
|
35
|
+
if (validate.isEmpty(space === null || space === void 0 ? void 0 : space.separatorIndex)) {
|
|
36
|
+
return reuslt;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// 如果 index 是数字,将其转换为数组
|
|
40
|
+
if (typeof (space === null || space === void 0 ? void 0 : space.separatorIndex) === 'number') {
|
|
41
|
+
reuslt.push(space.separatorIndex);
|
|
42
|
+
}
|
|
43
|
+
if (Array.isArray(space.separatorIndex)) {
|
|
44
|
+
reuslt = reuslt.concat(space.separatorIndex);
|
|
45
|
+
}
|
|
46
|
+
return reuslt;
|
|
47
|
+
})();
|
|
48
|
+
return columns.reduce((result, current, index, array) => {
|
|
49
|
+
// 将当前元素添加到结果数组中
|
|
50
|
+
result.push(current);
|
|
51
|
+
if (separatorIndexs !== null && separatorIndexs !== void 0 && separatorIndexs.length) {
|
|
52
|
+
separatorIndexs.forEach(separatorIndex => {
|
|
53
|
+
if (index === separatorIndex) {
|
|
54
|
+
result.push({
|
|
55
|
+
separator: true,
|
|
56
|
+
component: /*#__PURE__*/_jsx(Button, {
|
|
57
|
+
className: "group-separator",
|
|
58
|
+
children: space.separator
|
|
59
|
+
}),
|
|
60
|
+
fieldProps: {
|
|
61
|
+
disabled: true
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
} else {
|
|
67
|
+
// 如果当前元素不是最后一个元素,则添加间隔符
|
|
68
|
+
if (index < array.length - 1) {
|
|
69
|
+
result.push({
|
|
70
|
+
separator: true,
|
|
71
|
+
component: /*#__PURE__*/_jsx(Button, {
|
|
72
|
+
className: "group-separator",
|
|
73
|
+
children: space.separator
|
|
74
|
+
}),
|
|
75
|
+
fieldProps: {
|
|
76
|
+
disabled: true
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return result;
|
|
82
|
+
}, []);
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
/** 带出event的组件默认取值方法 */
|
|
86
|
+
export function defaultGetValueFromEvent(valuePropName) {
|
|
87
|
+
var event = arguments.length <= 1 ? undefined : arguments[1];
|
|
88
|
+
if (event && event.target && typeof event.target === 'object' && valuePropName in event.target) {
|
|
89
|
+
return event.target[valuePropName];
|
|
90
|
+
}
|
|
91
|
+
return event;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/** 转换names */
|
|
95
|
+
export var transformNamesString = arr => {
|
|
96
|
+
var result = arr.map(subArr => {
|
|
97
|
+
if (Array.isArray(subArr)) {
|
|
98
|
+
return subArr.join('_');
|
|
99
|
+
}
|
|
100
|
+
return subArr;
|
|
101
|
+
});
|
|
102
|
+
return result;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Input TextArea 小写自动转大写
|
|
107
|
+
* @param type 组件类型
|
|
108
|
+
* @param upperCase 是否小写转大写
|
|
109
|
+
* @returns {}
|
|
110
|
+
*/
|
|
111
|
+
export var isUpperCase = (type, upperCase) => {
|
|
112
|
+
var result = {};
|
|
113
|
+
if (['Input', 'TextArea'].includes(type) && upperCase) {
|
|
114
|
+
result.getValueFromEvent = event => {
|
|
115
|
+
var _event$target;
|
|
116
|
+
if (Array.isArray(event)) {
|
|
117
|
+
return event.map(value => {
|
|
118
|
+
var newValue = value === null || value === void 0 ? void 0 : value.replace(/[^a-zA-Z]/g, '');
|
|
119
|
+
return (newValue === null || newValue === void 0 ? void 0 : newValue.toUpperCase()) || '';
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
var newValue = (_event$target = event.target) === null || _event$target === void 0 || (_event$target = _event$target.value) === null || _event$target === void 0 ? void 0 : _event$target.replace(/[^a-zA-Z]/g, '');
|
|
123
|
+
return newValue.toUpperCase() || '';
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
return result;
|
|
127
|
+
};
|
|
128
|
+
/** 计算响应式参数的值 */
|
|
129
|
+
export var getReactiveProps = params => {
|
|
130
|
+
var form = params.form,
|
|
131
|
+
index = params.index,
|
|
132
|
+
namePath = params.namePath,
|
|
133
|
+
disabled = params.disabled,
|
|
134
|
+
show = params.show,
|
|
135
|
+
component = params.component,
|
|
136
|
+
fieldProps = params.fieldProps,
|
|
137
|
+
desensitization = params.desensitization;
|
|
138
|
+
var values = namePath ? form.getFieldValue(namePath) : form.getFieldsValue();
|
|
139
|
+
var _disabled = isFunction(disabled) ? disabled(values, {
|
|
140
|
+
form,
|
|
141
|
+
index,
|
|
142
|
+
namePath
|
|
143
|
+
}) : disabled;
|
|
144
|
+
var _show = isFunction(show) ? show(values, {
|
|
145
|
+
form,
|
|
146
|
+
index,
|
|
147
|
+
namePath
|
|
148
|
+
}) : show;
|
|
149
|
+
var _component = isFunction(component) ? component(values, {
|
|
150
|
+
form,
|
|
151
|
+
index,
|
|
152
|
+
namePath
|
|
153
|
+
}) : component;
|
|
154
|
+
var _fieldProps = isFunction(fieldProps) ? fieldProps(values, {
|
|
155
|
+
form,
|
|
156
|
+
index,
|
|
157
|
+
namePath
|
|
158
|
+
}) : fieldProps;
|
|
159
|
+
var _desensitization = isFunction(desensitization) ? desensitization(values, {
|
|
160
|
+
form,
|
|
161
|
+
index,
|
|
162
|
+
namePath
|
|
163
|
+
}) : desensitization;
|
|
164
|
+
return {
|
|
165
|
+
disabled: _disabled,
|
|
166
|
+
show: _show,
|
|
167
|
+
component: _component,
|
|
168
|
+
fieldProps: _fieldProps,
|
|
169
|
+
desensitization: _desensitization
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
/** 获取当前字段的转换函数 */
|
|
173
|
+
export var getValueTypeTrans = params => {
|
|
174
|
+
var _valueTypeMap$valueTy;
|
|
175
|
+
var valueType = params.valueType;
|
|
176
|
+
var transform = (_valueTypeMap$valueTy = valueTypeMap[valueType]) === null || _valueTypeMap$valueTy === void 0 ? void 0 : _valueTypeMap$valueTy.call(valueTypeMap, params);
|
|
177
|
+
return transform;
|
|
178
|
+
};
|
|
179
|
+
var getTrim = value => {
|
|
180
|
+
return (value === null || value === void 0 ? void 0 : value.trim()) || '';
|
|
181
|
+
};
|
|
182
|
+
var getUpperCase = value => {
|
|
183
|
+
var _value = value === null || value === void 0 ? void 0 : value.replace(/[^a-zA-Z]/g, '');
|
|
184
|
+
return _value.toUpperCase() || '';
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
/** 执行所有中间件 返回处理后的值 */
|
|
188
|
+
export var getValueMiddleware = function getValueMiddleware(value) {
|
|
189
|
+
var callbacks = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
190
|
+
return callbacks.reduce((preValue, cb) => {
|
|
191
|
+
return cb === null || cb === void 0 ? void 0 : cb(preValue);
|
|
192
|
+
}, value);
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
/** 获取中间件处理后的value */
|
|
196
|
+
export var valueFromEventWrapper = (column, args) => {
|
|
197
|
+
var getValueFromEvent = column.getValueFromEvent,
|
|
198
|
+
_column$valuePropName = column.valuePropName,
|
|
199
|
+
valuePropName = _column$valuePropName === void 0 ? 'value' : _column$valuePropName,
|
|
200
|
+
trim = column.trim,
|
|
201
|
+
upperCase = column.upperCase;
|
|
202
|
+
var newValue;
|
|
203
|
+
if (getValueFromEvent) {
|
|
204
|
+
newValue = getValueFromEvent(...args);
|
|
205
|
+
} else {
|
|
206
|
+
newValue = defaultGetValueFromEvent(valuePropName, ...args);
|
|
207
|
+
}
|
|
208
|
+
var list = [];
|
|
209
|
+
if (trim) list.push(getTrim);
|
|
210
|
+
if (upperCase) list.push(getUpperCase);
|
|
211
|
+
return getValueMiddleware(newValue, list);
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
// ==================== 原 formItemHelpers.ts 内容 ====================
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* 创建FormItem属性(Hook版本)
|
|
218
|
+
*/
|
|
219
|
+
export var useFormItemProps = (column, contextProps, groupProps) => {
|
|
220
|
+
var _ref, _ref2, _groupProps$formDisab;
|
|
221
|
+
// Debug info removed for production
|
|
222
|
+
|
|
223
|
+
var name = column.name,
|
|
224
|
+
label = column.label,
|
|
225
|
+
_column$rules = column.rules,
|
|
226
|
+
rules = _column$rules === void 0 ? [] : _column$rules,
|
|
227
|
+
required = column.required,
|
|
228
|
+
dependencies = column.dependencies,
|
|
229
|
+
tooltip = column.tooltip,
|
|
230
|
+
extra = column.extra,
|
|
231
|
+
_column$validateFirst = column.validateFirst,
|
|
232
|
+
validateFirst = _column$validateFirst === void 0 ? true : _column$validateFirst,
|
|
233
|
+
columnDisabled = column.disabled,
|
|
234
|
+
type = column.type,
|
|
235
|
+
_column$fieldProps = column.fieldProps,
|
|
236
|
+
fieldProps = _column$fieldProps === void 0 ? {} : _column$fieldProps,
|
|
237
|
+
otherFormItemProps = _objectWithoutProperties(column, _excluded);
|
|
238
|
+
var form = contextProps.form,
|
|
239
|
+
namePath = contextProps.namePath;
|
|
240
|
+
|
|
241
|
+
// 构建完整的name路径
|
|
242
|
+
var fullName = namePath ? [...namePath, name] : name;
|
|
243
|
+
|
|
244
|
+
// 处理依赖关系 - 支持相对路径和绝对路径
|
|
245
|
+
var safeDependencies = Array.isArray(dependencies) ? dependencies : [];
|
|
246
|
+
var processedDependencies = safeDependencies.map(dep => {
|
|
247
|
+
if (typeof dep === 'string') {
|
|
248
|
+
// 相对路径:同Group内的其他字段
|
|
249
|
+
return namePath ? [...namePath, dep] : dep;
|
|
250
|
+
}
|
|
251
|
+
return dep; // 绝对路径保持不变
|
|
252
|
+
});
|
|
253
|
+
|
|
254
|
+
// 处理校验规则 - 确保rules是数组
|
|
255
|
+
var safeRules = Array.isArray(rules) ? rules : [];
|
|
256
|
+
|
|
257
|
+
// 先调用 rulesCreator 转换自定义校验类型(如 type: 'isEmail')
|
|
258
|
+
var transformedRules = rulesCreator({
|
|
259
|
+
rules: safeRules,
|
|
260
|
+
label: label,
|
|
261
|
+
isSelect: isSelect({
|
|
262
|
+
dataSource: fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.dataSource,
|
|
263
|
+
type
|
|
264
|
+
}),
|
|
265
|
+
names: undefined,
|
|
266
|
+
// 灵活模式不使用 names
|
|
267
|
+
required
|
|
268
|
+
});
|
|
269
|
+
|
|
270
|
+
// 然后再处理 validator 的增强逻辑(为 validator 提供 form 和当前字段上下文)
|
|
271
|
+
var processedRules = transformedRules.map(rule => {
|
|
272
|
+
if (typeof rule.validator === 'function') {
|
|
273
|
+
var originalValidator = rule.validator;
|
|
274
|
+
return _objectSpread(_objectSpread({}, rule), {}, {
|
|
275
|
+
validator: function () {
|
|
276
|
+
var _validator = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(ruleObj, value) {
|
|
277
|
+
var enhancedRule;
|
|
278
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
279
|
+
while (1) switch (_context.prev = _context.next) {
|
|
280
|
+
case 0:
|
|
281
|
+
// 为validator提供form和当前字段上下文
|
|
282
|
+
enhancedRule = _objectSpread(_objectSpread({}, ruleObj), {}, {
|
|
283
|
+
form,
|
|
284
|
+
field: fullName,
|
|
285
|
+
getFieldValue: fieldName => {
|
|
286
|
+
// 支持相对路径获取同Group内字段值
|
|
287
|
+
var targetName = namePath ? [...namePath, fieldName] : fieldName;
|
|
288
|
+
return form.getFieldValue(targetName);
|
|
289
|
+
}
|
|
290
|
+
});
|
|
291
|
+
return _context.abrupt("return", originalValidator(enhancedRule, value));
|
|
292
|
+
case 2:
|
|
293
|
+
case "end":
|
|
294
|
+
return _context.stop();
|
|
295
|
+
}
|
|
296
|
+
}, _callee);
|
|
297
|
+
}));
|
|
298
|
+
function validator(_x, _x2) {
|
|
299
|
+
return _validator.apply(this, arguments);
|
|
300
|
+
}
|
|
301
|
+
return validator;
|
|
302
|
+
}()
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
return rule;
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
// 处理disabled状态
|
|
309
|
+
var lastDisabled = (_ref = (_ref2 = (_groupProps$formDisab = groupProps.formDisabled) !== null && _groupProps$formDisab !== void 0 ? _groupProps$formDisab : columnDisabled) !== null && _ref2 !== void 0 ? _ref2 : fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.disabled) !== null && _ref !== void 0 ? _ref : groupProps.disabled;
|
|
310
|
+
|
|
311
|
+
// 直接处理校验规则,避免在非Hook函数中使用useRules
|
|
312
|
+
var internalRule = {
|
|
313
|
+
rules: processedRules,
|
|
314
|
+
required,
|
|
315
|
+
label: label
|
|
316
|
+
};
|
|
317
|
+
return _objectSpread(_objectSpread({
|
|
318
|
+
name: fullName,
|
|
319
|
+
label,
|
|
320
|
+
dependencies: processedDependencies,
|
|
321
|
+
tooltip,
|
|
322
|
+
extra,
|
|
323
|
+
validateFirst,
|
|
324
|
+
disabled: lastDisabled
|
|
325
|
+
}, otherFormItemProps), internalRule);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* 创建组件属性
|
|
330
|
+
*/
|
|
331
|
+
export var createComponentProps = (column, formItemProps) => {
|
|
332
|
+
var type = column.type,
|
|
333
|
+
_column$fieldProps2 = column.fieldProps,
|
|
334
|
+
fieldProps = _column$fieldProps2 === void 0 ? {} : _column$fieldProps2,
|
|
335
|
+
valueType = column.valueType,
|
|
336
|
+
switchValue = column.switchValue,
|
|
337
|
+
toISOString = column.toISOString,
|
|
338
|
+
toCSTString = column.toCSTString;
|
|
339
|
+
|
|
340
|
+
// 处理placeholder
|
|
341
|
+
var label = fieldProps.label,
|
|
342
|
+
placeholder = fieldProps.placeholder,
|
|
343
|
+
dataSource = fieldProps.dataSource;
|
|
344
|
+
var formLabel = formItemProps.label;
|
|
345
|
+
var _isSelect = isSelect({
|
|
346
|
+
dataSource,
|
|
347
|
+
type
|
|
348
|
+
});
|
|
349
|
+
var placeholderHandle = () => {
|
|
350
|
+
var _label = isString(label) ? label : '';
|
|
351
|
+
var _formLabel = isString(formLabel) ? formLabel : '';
|
|
352
|
+
return placeholder || `${_isSelect ? `${locale.ProForm.selectPlaceHolder}` : `${locale.ProForm.inputPlaceholder}`}${_label || _formLabel || ''}`;
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
// 值类型转换
|
|
356
|
+
var transform = getValueTypeTrans({
|
|
357
|
+
type,
|
|
358
|
+
valueType,
|
|
359
|
+
switchValue,
|
|
360
|
+
toISOString,
|
|
361
|
+
toCSTString,
|
|
362
|
+
mode: fieldProps.mode
|
|
363
|
+
});
|
|
364
|
+
|
|
365
|
+
// 组件基本属性
|
|
366
|
+
var componentProps = _objectSpread(_objectSpread({
|
|
367
|
+
placeholder: placeholderHandle()
|
|
368
|
+
}, fieldProps), {}, {
|
|
369
|
+
disabled: formItemProps.disabled
|
|
370
|
+
});
|
|
371
|
+
|
|
372
|
+
// 时间范围placeholder特殊处理
|
|
373
|
+
if (type === 'RangePicker' && !(fieldProps !== null && fieldProps !== void 0 && fieldProps.placeholder)) {
|
|
374
|
+
delete componentProps.placeholder;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
// Switch组件valuePropName处理
|
|
378
|
+
if (['Switch', 'SwitchCheckbox'].includes(type)) {
|
|
379
|
+
formItemProps.valuePropName = 'checked';
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
// 分离 transform 中的 normalize 和 getValueProps(这些应该应用到 Form.Item,而不是组件)
|
|
383
|
+
var _ref3 = transform || {},
|
|
384
|
+
normalize = _ref3.normalize,
|
|
385
|
+
getValueProps = _ref3.getValueProps,
|
|
386
|
+
restTransform = _objectWithoutProperties(_ref3, _excluded2);
|
|
387
|
+
|
|
388
|
+
// formItemTransform 只包含应该应用到 Form.Item 的属性
|
|
389
|
+
var formItemTransform = _objectSpread(_objectSpread({}, normalize && {
|
|
390
|
+
normalize
|
|
391
|
+
}), getValueProps && {
|
|
392
|
+
getValueProps
|
|
393
|
+
});
|
|
394
|
+
|
|
395
|
+
// 过滤掉不应该传递给组件的属性(这些属性只用于转换,不应该出现在 DOM 上)
|
|
396
|
+
var filteredComponentProps = omit(_objectSpread(_objectSpread({}, componentProps), restTransform), ['valueType', 'switchValue', 'toISOString', 'toCSTString', 'format', 'precision', 'clearNotShow', 'dependNames']);
|
|
397
|
+
return {
|
|
398
|
+
componentProps: filteredComponentProps,
|
|
399
|
+
formItemTransform
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* 配置验证组件
|
|
405
|
+
*/
|
|
406
|
+
export var validateChildren = children => {
|
|
407
|
+
// 确保children是数组
|
|
408
|
+
if (!Array.isArray(children) || children.length === 0) {
|
|
409
|
+
console.warn('[ProForm Group] 灵活模式下children必须是数组且不能为空');
|
|
410
|
+
return false;
|
|
411
|
+
}
|
|
412
|
+
var invalidChildren = children.filter(child => {
|
|
413
|
+
return child.names || !child.name || child.type === 'Group';
|
|
414
|
+
});
|
|
415
|
+
if (invalidChildren.length > 0) {
|
|
416
|
+
console.warn('[ProForm Group] 灵活模式下所有子组件都必须配置name属性。且type不能为Group', '缺少name的组件索引:', invalidChildren.map((_, index) => children.findIndex(child => child === invalidChildren[index])), '\n示例配置:', '\n{\n type: "InputNumber",\n name: "min", // 必需\n rules: [...] // 可选\n}');
|
|
417
|
+
return false;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
// 检查name重复
|
|
421
|
+
var names = children.map(child => child.name);
|
|
422
|
+
var duplicateNames = names.filter((name, index) => names.indexOf(name) !== index);
|
|
423
|
+
if (duplicateNames.length > 0) {
|
|
424
|
+
console.warn('[ProForm Group] 子组件中发现重复的name属性:', [...new Set(duplicateNames)]);
|
|
425
|
+
return false;
|
|
426
|
+
}
|
|
427
|
+
return true;
|
|
428
|
+
};
|
|
@@ -1,7 +1,17 @@
|
|
|
1
|
-
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
4
1
|
var _excluded = ["className", "hasDetail", "detailMaxLength", "fieldNames", "value", "disabled", "dataSource", "onChange", "useRequest", "transformResponse", "level", "isView", "enumCode", "code", "tooltip", "separator", "detailPlaceholder", "scrollFollowParent", "desensitization", "otherProps"];
|
|
2
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
3
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
4
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
5
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
6
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
7
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
8
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
9
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
10
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : String(i); }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
15
|
import { useEffect, useState, memo, useMemo, useCallback } from 'react';
|
|
6
16
|
import { Cascader, Tooltip, message } from 'antd';
|
|
7
17
|
import { omit, find as _find, isBoolean, isEqual } from 'lodash';
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
1
|
var _excluded = ["label", "value", "children"];
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : String(i); }
|
|
6
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
7
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
4
9
|
import { omit } from 'lodash';
|
|
5
10
|
export var transformDataName = (dataSource, fieldNames) => {
|
|
6
11
|
var label = fieldNames.label,
|