@vtx/components 4.0.0-beta.4 → 4.0.0-beta.41
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 +76 -0
- package/es/utils/columnSort.js +23 -0
- package/es/utils/components/DropdownFooter/index.js +53 -0
- package/es/utils/components/DropdownFooter/style.js +25 -0
- package/es/utils/components/ErrorBoundary/index.js +53 -0
- package/es/utils/components/FieldLabel/index.js +144 -0
- package/es/utils/components/FieldLabel/style.js +93 -0
- package/es/utils/components/FilterDropdown/index.js +62 -0
- package/es/utils/components/FilterDropdown/style.js +26 -0
- package/es/utils/components/InlineErrorFormItem/index.js +156 -0
- package/es/utils/components/InlineErrorFormItem/style.js +47 -0
- package/es/utils/components/LabelIconTip/index.js +68 -0
- package/es/utils/components/LabelIconTip/style.js +47 -0
- package/es/utils/components/ProFormContext/index.js +41 -0
- package/es/utils/conversionMomentValue/index.js +163 -0
- package/es/utils/dateArrayFormatter/index.js +36 -0
- package/es/utils/filterSpecialCharacters.js +83 -0
- package/es/utils/genColumnKey.js +6 -0
- package/es/utils/genCopyable/index.js +59 -0
- package/es/utils/getComponentProps.js +7 -0
- package/es/utils/getFieldPropsOrFormItemProps/index.js +16 -0
- package/es/utils/getPlaceholder.js +5 -0
- package/es/utils/getToken.js +6 -0
- package/es/utils/hooks/useDebounceFn/index.js +71 -0
- package/es/utils/hooks/useDebounceValue/index.js +40 -0
- package/es/utils/hooks/useDeepCompareEffect/index.js +24 -0
- package/es/utils/hooks/useDeepCompareMemo/index.js +15 -0
- package/es/utils/hooks/useDocumentTitle/index.js +10 -0
- package/es/utils/hooks/useForceRender/index.js +18 -0
- package/es/utils/hooks/useLatest/index.js +10 -0
- package/es/utils/hooks/usePrevious/index.js +8 -0
- package/es/utils/hooks/useReactiveRef/index.js +7 -0
- package/es/utils/hooks/useRefCallback/index.js +26 -0
- package/es/utils/hooks/useRefFunction/index.js +13 -0
- package/es/utils/index.js +72 -0
- package/es/utils/isBrowser/index.d.ts +9 -0
- package/es/utils/isBrowser/index.js +16 -0
- package/es/utils/isDeepEqualReact/index.js +95 -0
- package/es/utils/isDropdownValueType/index.js +7 -0
- package/es/utils/isFunction.js +3 -0
- package/es/utils/isImg/index.js +4 -0
- package/es/utils/isNil/index.js +3 -0
- package/es/utils/isObject/index.js +3 -0
- package/es/utils/isObject.js +3 -0
- package/es/utils/isUrl/index.js +17 -0
- package/es/utils/merge/index.js +36 -0
- package/es/utils/nanoid/index.js +29 -0
- package/es/utils/omitBoolean/index.js +11 -0
- package/es/utils/omitUndefined/index.js +12 -0
- package/es/utils/omitUndefinedAndEmptyArr/index.js +14 -0
- package/es/utils/parseValueToMoment/index.js +28 -0
- package/es/utils/pickProFormItemProps/index.js +15 -0
- package/es/utils/pickProProps/index.js +15 -0
- package/es/utils/proFieldParsingText/index.js +161 -0
- package/es/utils/runFunction/index.js +10 -0
- package/es/utils/sortByGivenOrder.js +36 -0
- package/es/utils/sortByKeyArrayExtract.js +38 -0
- package/es/utils/stringify/index.js +10 -0
- package/es/utils/transformKeySubmitValue/index.js +330 -0
- package/es/utils/useColSize.js +20 -0
- package/es/utils/useEditableArray/index.js +906 -0
- package/es/utils/useEditableMap/index.js +214 -0
- package/es/utils/useInterval.js +12 -0
- package/es/utils/useMediaQuery/index.js +106 -0
- package/es/utils/useMediaQuery/query.js +30 -0
- package/es/utils/useMountMergeState/index.js +2 -0
- package/es/utils/useSet.js +38 -0
- package/es/version.js +3 -0
- package/es/vtx-color-picker/index.js +175 -0
- package/es/vtx-color-picker/style/index.js +54 -0
- package/es/vtx-combogrid/Combogrid.js +252 -0
- package/es/vtx-combogrid/index.js +121 -0
- package/es/vtx-combogrid/style/index.js +42 -0
- package/es/vtx-datagrid/Alert/index.js +49 -0
- package/es/vtx-datagrid/Alert/style.js +44 -0
- package/es/vtx-datagrid/Store/Provide.js +493 -0
- package/es/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +531 -0
- package/es/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +88 -0
- package/es/vtx-datagrid/ToolBar/components/Density/index.js +53 -0
- package/es/vtx-datagrid/ToolBar/components/Fullscreen/index.js +77 -0
- package/es/vtx-datagrid/ToolBar/components/TableStyle/index.js +74 -0
- package/es/vtx-datagrid/ToolBar/index.js +88 -0
- package/es/vtx-datagrid/ToolBar/style.js +59 -0
- package/es/vtx-datagrid/index.js +434 -0
- package/es/vtx-datagrid/renderColumnButtons.js +117 -0
- package/es/vtx-datagrid/style/index.js +142 -0
- package/es/vtx-datagrid/style/index.less +242 -0
- package/es/vtx-date-picker/QdatePicker.js +152 -0
- package/es/vtx-date-picker/generatePicker.js +104 -0
- package/es/vtx-date-picker/index.js +49 -0
- package/es/vtx-date-picker/style/index.js +39 -0
- package/es/vtx-date-picker/style/index.less +39 -0
- package/es/vtx-descriptions/Descriptions.js +30 -0
- package/es/vtx-descriptions/index.js +3 -0
- package/es/vtx-descriptions/style/index.js +19 -0
- package/es/vtx-ellipsis-text/index.js +57 -0
- package/es/vtx-ellipsis-text/style/index.js +31 -0
- package/es/vtx-export/index.js +196 -0
- package/es/vtx-export/style/index.js +24 -0
- package/es/vtx-export-async/ColumnsSelect.js +63 -0
- package/es/vtx-export-async/History.js +260 -0
- package/es/vtx-export-async/index.js +429 -0
- package/es/vtx-export-async/style/index.js +49 -0
- package/es/vtx-export-async/util.js +51 -0
- package/es/vtx-form-layout/Card.js +74 -0
- package/es/vtx-form-layout/Divider.js +22 -0
- package/es/vtx-form-layout/FormItem.js +136 -0
- package/es/vtx-form-layout/Pane.js +52 -0
- package/es/vtx-form-layout/Row.js +19 -0
- package/es/vtx-form-layout/context.js +2 -0
- package/es/vtx-form-layout/index.js +80 -0
- package/es/vtx-form-layout/style/index.js +261 -0
- package/es/vtx-icon/index.js +115 -0
- package/es/vtx-icon/svg/alignRightOutlined.js +29 -0
- package/es/vtx-icon/svg/columnHeightOutlined.js +25 -0
- package/es/vtx-icon/svg/downOutlined.js +24 -0
- package/es/vtx-icon/svg/fullscreen.js +25 -0
- package/es/vtx-icon/svg/redoOutlined.js +29 -0
- package/es/vtx-icon/svg/rightOutlined.js +24 -0
- package/es/vtx-icon/svg/settingOutlined.js +29 -0
- package/es/vtx-image/Image.js +257 -0
- package/es/vtx-image/Preview.js +145 -0
- package/es/vtx-image/PreviewGroup.js +81 -0
- package/es/vtx-image/index.js +4 -0
- package/es/vtx-image/style/index.js +91 -0
- package/es/vtx-import/index.js +460 -0
- package/es/vtx-import/result.js +85 -0
- package/es/vtx-import/style/index.js +29 -0
- package/es/vtx-import2/CheckResult.js +45 -0
- package/es/vtx-import2/Content.js +104 -0
- package/es/vtx-import2/DownloadSvg.js +41 -0
- package/es/vtx-import2/ImportResult.js +57 -0
- package/es/vtx-import2/UploadSvg.js +41 -0
- package/es/vtx-import2/index.js +462 -0
- package/es/vtx-import2/style/index.js +151 -0
- package/es/vtx-input/TextArea/index.js +66 -0
- package/es/vtx-input/TextArea/style.js +30 -0
- package/es/vtx-input/index.js +92 -0
- package/es/vtx-input/style/index.js +24 -0
- package/es/vtx-input/useLength.js +21 -0
- package/es/vtx-modal/Title.js +34 -0
- package/es/vtx-modal/index.js +246 -0
- package/es/vtx-modal/style/index.js +111 -0
- package/es/vtx-page-layout/Basic.js +28 -0
- package/es/vtx-page-layout/Content.js +43 -0
- package/es/vtx-page-layout/Pane.js +40 -0
- package/es/vtx-page-layout/TabLayout.js +59 -0
- package/es/vtx-page-layout/TableLayout.js +173 -0
- package/es/vtx-page-layout/TableWrap.js +37 -0
- package/es/vtx-page-layout/TreeLayout.js +73 -0
- package/es/vtx-page-layout/container.js +69 -0
- package/es/vtx-page-layout/index.js +26 -0
- package/es/vtx-page-layout/style/index.js +129 -0
- package/es/vtx-provider/index.js +324 -0
- package/es/vtx-provider/intl.js +140 -0
- package/es/vtx-provider/locale/ar_EG.js +71 -0
- package/es/vtx-provider/locale/ca_ES.js +71 -0
- package/es/vtx-provider/locale/cs_CZ.js +74 -0
- package/es/vtx-provider/locale/de_DE.js +71 -0
- package/es/vtx-provider/locale/en_GB.js +73 -0
- package/es/vtx-provider/locale/en_US.js +189 -0
- package/es/vtx-provider/locale/es_ES.js +71 -0
- package/es/vtx-provider/locale/fa_IR.js +71 -0
- package/es/vtx-provider/locale/fr_FR.js +71 -0
- package/es/vtx-provider/locale/he_IL.js +74 -0
- package/es/vtx-provider/locale/hr_HR.js +71 -0
- package/es/vtx-provider/locale/id_ID.js +71 -0
- package/es/vtx-provider/locale/it_IT.js +71 -0
- package/es/vtx-provider/locale/ja_JP.js +71 -0
- package/es/vtx-provider/locale/ko_KR.js +71 -0
- package/es/vtx-provider/locale/mn_MN.js +71 -0
- package/es/vtx-provider/locale/ms_MY.js +71 -0
- package/es/vtx-provider/locale/nl_NL.js +74 -0
- package/es/vtx-provider/locale/pl_PL.js +71 -0
- package/es/vtx-provider/locale/pt_BR.js +71 -0
- package/es/vtx-provider/locale/ro_RO.js +74 -0
- package/es/vtx-provider/locale/ru_RU.js +71 -0
- package/es/vtx-provider/locale/sk_SK.js +74 -0
- package/es/vtx-provider/locale/sr_RS.js +71 -0
- package/es/vtx-provider/locale/sv_SE.js +74 -0
- package/es/vtx-provider/locale/th_TH.js +74 -0
- package/es/vtx-provider/locale/tr_TR.js +71 -0
- package/es/vtx-provider/locale/uk_UA.js +74 -0
- package/es/vtx-provider/locale/uz_UZ.js +71 -0
- package/es/vtx-provider/locale/vi_VN.js +71 -0
- package/es/vtx-provider/locale/zh_CN.js +201 -0
- package/es/vtx-provider/locale/zh_HK.js +83 -0
- package/es/vtx-provider/locale/zh_TW.js +74 -0
- package/es/vtx-provider/typing/layoutToken.js +60 -0
- package/es/vtx-provider/useStyle/index.js +110 -0
- package/es/vtx-provider/utils/merge.js +27 -0
- package/es/vtx-rps-frame/index.js +164 -0
- package/es/vtx-rps-frame/style/index.js +26 -0
- package/es/vtx-scrollable-row/index.js +193 -0
- package/es/vtx-scrollable-row/style/index.js +108 -0
- package/es/vtx-search/index.js +354 -0
- package/es/vtx-search/style/index.js +95 -0
- package/es/vtx-select/index.js +264 -0
- package/es/vtx-select/style/index.js +31 -0
- package/es/vtx-signature/index.js +120 -0
- package/es/vtx-signature/style/index.js +47 -0
- package/es/vtx-split-pane/Resizer.js +47 -0
- package/es/vtx-split-pane/SplitPane.js +70 -0
- package/es/vtx-split-pane/index.js +3 -0
- package/es/vtx-split-pane/style/index.js +29 -0
- package/es/vtx-statistics-column/Back.js +27 -0
- package/es/vtx-statistics-column/Item.js +54 -0
- package/es/vtx-statistics-column/Total.js +54 -0
- package/es/vtx-statistics-column/context.js +2 -0
- package/es/vtx-statistics-column/index.js +54 -0
- package/es/vtx-statistics-column/style/index.js +72 -0
- package/es/vtx-time-picker/index.js +63 -0
- package/es/vtx-time-picker/style/index.js +0 -0
- package/es/vtx-transfer/Transfer.js +30 -0
- package/es/vtx-transfer/index.js +3 -0
- package/es/vtx-transfer/style/index.js +19 -0
- package/es/vtx-transfer-select/TransferSelect.js +143 -0
- package/es/vtx-transfer-select/index.js +3 -0
- package/es/vtx-transfer-select/style/index.js +19 -0
- package/es/vtx-tree/index.js +405 -0
- package/es/vtx-tree/style/index.js +50 -0
- package/es/vtx-tree/utils.js +73 -0
- package/es/vtx-tree-select/index.js +262 -0
- package/es/vtx-tree-select/style/index.js +79 -0
- package/es/vtx-upload/FilePreview.js +112 -0
- package/es/vtx-upload/index.js +468 -0
- package/es/vtx-upload/style/index.js +83 -0
- package/es/vtx-wang-editor/index.js +421 -0
- package/es/vtx-wang-editor/style/index.js +33 -0
- package/es/vtx-wang-editor/style/index.less +12 -0
- package/es/vtx-wang-editor/wangEditorUtil.js +276 -0
- package/lib/index.js +399 -0
- package/lib/utils/columnSort.js +29 -0
- package/lib/utils/components/DropdownFooter/index.js +62 -0
- package/lib/utils/components/DropdownFooter/style.js +31 -0
- package/lib/utils/components/ErrorBoundary/index.js +59 -0
- package/lib/utils/components/FieldLabel/index.js +152 -0
- package/lib/utils/components/FieldLabel/style.js +99 -0
- package/lib/utils/components/FilterDropdown/index.js +70 -0
- package/lib/utils/components/FilterDropdown/style.js +32 -0
- package/lib/utils/components/InlineErrorFormItem/index.js +162 -0
- package/lib/utils/components/InlineErrorFormItem/style.js +53 -0
- package/lib/utils/components/LabelIconTip/index.js +73 -0
- package/lib/utils/components/LabelIconTip/style.js +53 -0
- package/lib/utils/components/ProFormContext/index.js +48 -0
- package/lib/utils/conversionMomentValue/index.js +170 -0
- package/lib/utils/dateArrayFormatter/index.js +43 -0
- package/lib/utils/filterSpecialCharacters.js +91 -0
- package/lib/utils/genColumnKey.js +12 -0
- package/lib/utils/genCopyable/index.js +66 -0
- package/lib/utils/getComponentProps.js +13 -0
- package/lib/utils/getFieldPropsOrFormItemProps/index.js +21 -0
- package/lib/utils/getPlaceholder.js +11 -0
- package/lib/utils/getToken.js +12 -0
- package/lib/utils/hooks/useDebounceFn/index.js +77 -0
- package/lib/utils/hooks/useDebounceValue/index.js +45 -0
- package/lib/utils/hooks/useDeepCompareEffect/index.js +33 -0
- package/lib/utils/hooks/useDeepCompareMemo/index.js +21 -0
- package/lib/utils/hooks/useDocumentTitle/index.js +16 -0
- package/lib/utils/hooks/useForceRender/index.js +24 -0
- package/lib/utils/hooks/useLatest/index.js +15 -0
- package/lib/utils/hooks/usePrevious/index.js +14 -0
- package/lib/utils/hooks/useReactiveRef/index.js +14 -0
- package/lib/utils/hooks/useRefCallback/index.js +31 -0
- package/lib/utils/hooks/useRefFunction/index.js +18 -0
- package/lib/utils/index.js +429 -0
- package/lib/utils/isBrowser/index.d.ts +9 -0
- package/lib/utils/isBrowser/index.js +22 -0
- package/lib/utils/isDeepEqualReact/index.js +101 -0
- package/lib/utils/isDropdownValueType/index.js +13 -0
- package/lib/utils/isFunction.js +9 -0
- package/lib/utils/isImg/index.js +10 -0
- package/lib/utils/isNil/index.js +9 -0
- package/lib/utils/isObject/index.js +9 -0
- package/lib/utils/isObject.js +9 -0
- package/lib/utils/isUrl/index.js +23 -0
- package/lib/utils/merge/index.js +41 -0
- package/lib/utils/nanoid/index.js +35 -0
- package/lib/utils/omitBoolean/index.js +17 -0
- package/lib/utils/omitUndefined/index.js +18 -0
- package/lib/utils/omitUndefinedAndEmptyArr/index.js +20 -0
- package/lib/utils/parseValueToMoment/index.js +35 -0
- package/lib/utils/pickProFormItemProps/index.js +21 -0
- package/lib/utils/pickProProps/index.js +21 -0
- package/lib/utils/proFieldParsingText/index.js +166 -0
- package/lib/utils/runFunction/index.js +16 -0
- package/lib/utils/sortByGivenOrder.js +42 -0
- package/lib/utils/sortByKeyArrayExtract.js +44 -0
- package/lib/utils/stringify/index.js +21 -0
- package/lib/utils/transformKeySubmitValue/index.js +337 -0
- package/lib/utils/useColSize.js +26 -0
- package/lib/utils/useEditableArray/index.js +918 -0
- package/lib/utils/useEditableMap/index.js +219 -0
- package/lib/utils/useInterval.js +18 -0
- package/lib/utils/useMediaQuery/index.js +112 -0
- package/lib/utils/useMediaQuery/query.js +36 -0
- package/lib/utils/useMountMergeState/index.js +12 -0
- package/lib/utils/useSet.js +43 -0
- package/lib/version.js +9 -0
- package/lib/vtx-color-picker/index.js +182 -0
- package/lib/vtx-color-picker/style/index.js +60 -0
- package/lib/vtx-combogrid/Combogrid.js +260 -0
- package/lib/vtx-combogrid/index.js +129 -0
- package/lib/vtx-combogrid/style/index.js +48 -0
- package/lib/vtx-datagrid/Alert/index.js +57 -0
- package/lib/vtx-datagrid/Alert/style.js +50 -0
- package/lib/vtx-datagrid/Store/Provide.js +499 -0
- package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +535 -0
- package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +94 -0
- package/lib/vtx-datagrid/ToolBar/components/Density/index.js +59 -0
- package/lib/vtx-datagrid/ToolBar/components/Fullscreen/index.js +83 -0
- package/lib/vtx-datagrid/ToolBar/components/TableStyle/index.js +80 -0
- package/lib/vtx-datagrid/ToolBar/index.js +96 -0
- package/lib/vtx-datagrid/ToolBar/style.js +65 -0
- package/lib/vtx-datagrid/index.js +443 -0
- package/lib/vtx-datagrid/renderColumnButtons.js +123 -0
- package/lib/vtx-datagrid/style/index.js +148 -0
- package/lib/vtx-datagrid/style/index.less +242 -0
- package/lib/vtx-date-picker/QdatePicker.js +157 -0
- package/lib/vtx-date-picker/generatePicker.js +111 -0
- package/lib/vtx-date-picker/index.js +55 -0
- package/lib/vtx-date-picker/style/index.js +45 -0
- package/lib/vtx-date-picker/style/index.less +39 -0
- package/lib/vtx-descriptions/Descriptions.js +39 -0
- package/lib/vtx-descriptions/index.js +15 -0
- package/lib/vtx-descriptions/style/index.js +25 -0
- package/lib/vtx-ellipsis-text/index.js +65 -0
- package/lib/vtx-ellipsis-text/style/index.js +37 -0
- package/lib/vtx-export/index.js +202 -0
- package/lib/vtx-export/style/index.js +30 -0
- package/lib/vtx-export-async/ColumnsSelect.js +69 -0
- package/lib/vtx-export-async/History.js +268 -0
- package/lib/vtx-export-async/index.js +436 -0
- package/lib/vtx-export-async/style/index.js +55 -0
- package/lib/vtx-export-async/util.js +57 -0
- package/lib/vtx-form-layout/Card.js +83 -0
- package/lib/vtx-form-layout/Divider.js +31 -0
- package/lib/vtx-form-layout/FormItem.js +142 -0
- package/lib/vtx-form-layout/Pane.js +61 -0
- package/lib/vtx-form-layout/Row.js +26 -0
- package/lib/vtx-form-layout/context.js +8 -0
- package/lib/vtx-form-layout/index.js +89 -0
- package/lib/vtx-form-layout/style/index.js +267 -0
- package/lib/vtx-icon/index.js +135 -0
- package/lib/vtx-icon/svg/alignRightOutlined.js +34 -0
- package/lib/vtx-icon/svg/columnHeightOutlined.js +31 -0
- package/lib/vtx-icon/svg/downOutlined.js +30 -0
- package/lib/vtx-icon/svg/fullscreen.js +31 -0
- package/lib/vtx-icon/svg/redoOutlined.js +34 -0
- package/lib/vtx-icon/svg/rightOutlined.js +30 -0
- package/lib/vtx-icon/svg/settingOutlined.js +34 -0
- package/lib/vtx-image/Image.js +264 -0
- package/lib/vtx-image/Preview.js +151 -0
- package/lib/vtx-image/PreviewGroup.js +91 -0
- package/lib/vtx-image/index.js +31 -0
- package/lib/vtx-image/style/index.js +97 -0
- package/lib/vtx-import/index.js +468 -0
- package/lib/vtx-import/result.js +92 -0
- package/lib/vtx-import/style/index.js +35 -0
- package/lib/vtx-import2/CheckResult.js +50 -0
- package/lib/vtx-import2/Content.js +113 -0
- package/lib/vtx-import2/DownloadSvg.js +47 -0
- package/lib/vtx-import2/ImportResult.js +62 -0
- package/lib/vtx-import2/UploadSvg.js +47 -0
- package/lib/vtx-import2/index.js +467 -0
- package/lib/vtx-import2/style/index.js +157 -0
- package/lib/vtx-input/TextArea/index.js +75 -0
- package/lib/vtx-input/TextArea/style.js +36 -0
- package/lib/vtx-input/index.js +100 -0
- package/lib/vtx-input/style/index.js +30 -0
- package/lib/vtx-input/useLength.js +27 -0
- package/lib/vtx-modal/Title.js +42 -0
- package/lib/vtx-modal/index.js +252 -0
- package/lib/vtx-modal/style/index.js +117 -0
- package/lib/vtx-page-layout/Basic.js +36 -0
- package/lib/vtx-page-layout/Content.js +50 -0
- package/lib/vtx-page-layout/Pane.js +47 -0
- package/lib/vtx-page-layout/TabLayout.js +64 -0
- package/lib/vtx-page-layout/TableLayout.js +182 -0
- package/lib/vtx-page-layout/TableWrap.js +44 -0
- package/lib/vtx-page-layout/TreeLayout.js +78 -0
- package/lib/vtx-page-layout/container.js +75 -0
- package/lib/vtx-page-layout/index.js +32 -0
- package/lib/vtx-page-layout/style/index.js +136 -0
- package/lib/vtx-provider/index.js +359 -0
- package/lib/vtx-provider/intl.js +145 -0
- package/lib/vtx-provider/locale/ar_EG.js +77 -0
- package/lib/vtx-provider/locale/ca_ES.js +77 -0
- package/lib/vtx-provider/locale/cs_CZ.js +80 -0
- package/lib/vtx-provider/locale/de_DE.js +77 -0
- package/lib/vtx-provider/locale/en_GB.js +79 -0
- package/lib/vtx-provider/locale/en_US.js +195 -0
- package/lib/vtx-provider/locale/es_ES.js +77 -0
- package/lib/vtx-provider/locale/fa_IR.js +77 -0
- package/lib/vtx-provider/locale/fr_FR.js +77 -0
- package/lib/vtx-provider/locale/he_IL.js +80 -0
- package/lib/vtx-provider/locale/hr_HR.js +77 -0
- package/lib/vtx-provider/locale/id_ID.js +77 -0
- package/lib/vtx-provider/locale/it_IT.js +77 -0
- package/lib/vtx-provider/locale/ja_JP.js +77 -0
- package/lib/vtx-provider/locale/ko_KR.js +77 -0
- package/lib/vtx-provider/locale/mn_MN.js +77 -0
- package/lib/vtx-provider/locale/ms_MY.js +77 -0
- package/lib/vtx-provider/locale/nl_NL.js +80 -0
- package/lib/vtx-provider/locale/pl_PL.js +77 -0
- package/lib/vtx-provider/locale/pt_BR.js +77 -0
- package/lib/vtx-provider/locale/ro_RO.js +80 -0
- package/lib/vtx-provider/locale/ru_RU.js +77 -0
- package/lib/vtx-provider/locale/sk_SK.js +80 -0
- package/lib/vtx-provider/locale/sr_RS.js +77 -0
- package/lib/vtx-provider/locale/sv_SE.js +80 -0
- package/lib/vtx-provider/locale/th_TH.js +80 -0
- package/lib/vtx-provider/locale/tr_TR.js +77 -0
- package/lib/vtx-provider/locale/uk_UA.js +80 -0
- package/lib/vtx-provider/locale/uz_UZ.js +77 -0
- package/lib/vtx-provider/locale/vi_VN.js +77 -0
- package/lib/vtx-provider/locale/zh_CN.js +207 -0
- package/lib/vtx-provider/locale/zh_HK.js +89 -0
- package/lib/vtx-provider/locale/zh_TW.js +80 -0
- package/lib/vtx-provider/typing/layoutToken.js +66 -0
- package/lib/vtx-provider/useStyle/index.js +116 -0
- package/lib/vtx-provider/utils/merge.js +33 -0
- package/lib/vtx-rps-frame/index.js +173 -0
- package/lib/vtx-rps-frame/style/index.js +32 -0
- package/lib/vtx-scrollable-row/index.js +203 -0
- package/lib/vtx-scrollable-row/style/index.js +114 -0
- package/lib/vtx-search/index.js +359 -0
- package/lib/vtx-search/style/index.js +102 -0
- package/lib/vtx-select/index.js +271 -0
- package/lib/vtx-select/style/index.js +37 -0
- package/lib/vtx-signature/index.js +128 -0
- package/lib/vtx-signature/style/index.js +53 -0
- package/lib/vtx-split-pane/Resizer.js +52 -0
- package/lib/vtx-split-pane/SplitPane.js +78 -0
- package/lib/vtx-split-pane/index.js +15 -0
- package/lib/vtx-split-pane/style/index.js +35 -0
- package/lib/vtx-statistics-column/Back.js +36 -0
- package/lib/vtx-statistics-column/Item.js +62 -0
- package/lib/vtx-statistics-column/Total.js +62 -0
- package/lib/vtx-statistics-column/context.js +8 -0
- package/lib/vtx-statistics-column/index.js +63 -0
- package/lib/vtx-statistics-column/style/index.js +78 -0
- package/lib/vtx-time-picker/index.js +71 -0
- package/lib/vtx-time-picker/style/index.js +1 -0
- package/lib/vtx-transfer/Transfer.js +39 -0
- package/lib/vtx-transfer/index.js +15 -0
- package/lib/vtx-transfer/style/index.js +25 -0
- package/lib/vtx-transfer-select/TransferSelect.js +151 -0
- package/lib/vtx-transfer-select/index.js +15 -0
- package/lib/vtx-transfer-select/style/index.js +25 -0
- package/lib/vtx-tree/index.js +412 -0
- package/lib/vtx-tree/style/index.js +56 -0
- package/lib/vtx-tree/utils.js +80 -0
- package/lib/vtx-tree-select/index.js +268 -0
- package/lib/vtx-tree-select/style/index.js +85 -0
- package/lib/vtx-upload/FilePreview.js +117 -0
- package/lib/vtx-upload/index.js +474 -0
- package/lib/vtx-upload/style/index.js +89 -0
- package/lib/vtx-wang-editor/index.js +425 -0
- package/lib/vtx-wang-editor/style/index.js +39 -0
- package/lib/vtx-wang-editor/style/index.less +12 -0
- package/lib/vtx-wang-editor/wangEditorUtil.js +285 -0
- package/package.json +44 -29
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Typography } from 'antd';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
4
|
+
var isNeedTranText = function isNeedTranText(item) {
|
|
5
|
+
var _item$valueType;
|
|
6
|
+
if (item !== null && item !== void 0 && (_item$valueType = item.valueType) !== null && _item$valueType !== void 0 && _item$valueType.toString().startsWith('date')) {
|
|
7
|
+
return true;
|
|
8
|
+
}
|
|
9
|
+
if ((item === null || item === void 0 ? void 0 : item.valueType) === 'select' || item !== null && item !== void 0 && item.valueEnum) {
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
return false;
|
|
13
|
+
};
|
|
14
|
+
var getEllipsis = function getEllipsis(item) {
|
|
15
|
+
var _item$ellipsis;
|
|
16
|
+
if (((_item$ellipsis = item.ellipsis) === null || _item$ellipsis === void 0 ? void 0 : _item$ellipsis.showTitle) === false) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
return item.ellipsis;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* 生成 Copyable 或 Ellipsis 的 dom
|
|
24
|
+
*
|
|
25
|
+
* @param dom
|
|
26
|
+
* @param item
|
|
27
|
+
* @param text
|
|
28
|
+
*/
|
|
29
|
+
export var genCopyable = function genCopyable(dom, item, text) {
|
|
30
|
+
if (item.copyable || item.ellipsis) {
|
|
31
|
+
var copyable = item.copyable && text ? {
|
|
32
|
+
text: text,
|
|
33
|
+
tooltips: ['', '']
|
|
34
|
+
} : undefined;
|
|
35
|
+
|
|
36
|
+
/** 有些 valueType 需要设置copy的为string */
|
|
37
|
+
var needTranText = isNeedTranText(item);
|
|
38
|
+
var ellipsis = getEllipsis(item) && text ? {
|
|
39
|
+
tooltip:
|
|
40
|
+
// 支持一下 tooltip 的关闭
|
|
41
|
+
(item === null || item === void 0 ? void 0 : item.tooltip) !== false && needTranText ? /*#__PURE__*/_jsx("div", {
|
|
42
|
+
className: "pro-table-tooltip-text",
|
|
43
|
+
children: dom
|
|
44
|
+
}) : text
|
|
45
|
+
} : false;
|
|
46
|
+
return /*#__PURE__*/_jsx(Typography.Text, {
|
|
47
|
+
style: {
|
|
48
|
+
width: '100%',
|
|
49
|
+
margin: 0,
|
|
50
|
+
padding: 0
|
|
51
|
+
},
|
|
52
|
+
title: "",
|
|
53
|
+
copyable: copyable,
|
|
54
|
+
ellipsis: ellipsis,
|
|
55
|
+
children: dom
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
return dom;
|
|
59
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
export default function getComponentProps(prop) {
|
|
3
|
+
if (prop && _typeof(prop) === 'object') {
|
|
4
|
+
return prop;
|
|
5
|
+
}
|
|
6
|
+
return {};
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { runFunction } from "../runFunction";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 因为 fieldProps 支持了 function 所以新增了这个方法
|
|
5
|
+
*
|
|
6
|
+
* @param {any} fieldProps
|
|
7
|
+
* @param {any} [form]
|
|
8
|
+
* @param {any} [extraProps]
|
|
9
|
+
* @returns {Record<string, any> & { onChange: any, colSize: number }}
|
|
10
|
+
*/
|
|
11
|
+
export var getFieldPropsOrFormItemProps = function getFieldPropsOrFormItemProps(fieldProps, form, extraProps) {
|
|
12
|
+
if (form === undefined) {
|
|
13
|
+
return fieldProps;
|
|
14
|
+
}
|
|
15
|
+
return runFunction(fieldProps, form, extraProps);
|
|
16
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
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; }
|
|
3
|
+
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); } }
|
|
4
|
+
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); }); }; }
|
|
5
|
+
import { useCallback, useEffect, useRef } from 'react';
|
|
6
|
+
import { useRefFunction } from "../useRefFunction";
|
|
7
|
+
/**
|
|
8
|
+
* 一个去抖的 hook,传入一个 function,返回一个去抖后的 function
|
|
9
|
+
* @param {(...args:T) => Promise<any>} fn
|
|
10
|
+
* @param {number} wait?
|
|
11
|
+
*/
|
|
12
|
+
export function useDebounceFn(fn, wait) {
|
|
13
|
+
var callback = useRefFunction(fn);
|
|
14
|
+
var timer = useRef();
|
|
15
|
+
var cancel = useCallback(function () {
|
|
16
|
+
if (timer.current) {
|
|
17
|
+
clearTimeout(timer.current);
|
|
18
|
+
timer.current = null;
|
|
19
|
+
}
|
|
20
|
+
}, []);
|
|
21
|
+
var run = useCallback( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
22
|
+
var _len,
|
|
23
|
+
args,
|
|
24
|
+
_key,
|
|
25
|
+
_args2 = arguments;
|
|
26
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
27
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
28
|
+
case 0:
|
|
29
|
+
for (_len = _args2.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
30
|
+
args[_key] = _args2[_key];
|
|
31
|
+
}
|
|
32
|
+
if (!(wait === 0 || wait === undefined)) {
|
|
33
|
+
_context2.next = 3;
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
return _context2.abrupt("return", callback.apply(void 0, args));
|
|
37
|
+
case 3:
|
|
38
|
+
cancel();
|
|
39
|
+
return _context2.abrupt("return", new Promise(function (resolve) {
|
|
40
|
+
timer.current = setTimeout( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
41
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
42
|
+
while (1) switch (_context.prev = _context.next) {
|
|
43
|
+
case 0:
|
|
44
|
+
_context.t0 = resolve;
|
|
45
|
+
_context.next = 3;
|
|
46
|
+
return callback.apply(void 0, args);
|
|
47
|
+
case 3:
|
|
48
|
+
_context.t1 = _context.sent;
|
|
49
|
+
(0, _context.t0)(_context.t1);
|
|
50
|
+
return _context.abrupt("return");
|
|
51
|
+
case 6:
|
|
52
|
+
case "end":
|
|
53
|
+
return _context.stop();
|
|
54
|
+
}
|
|
55
|
+
}, _callee);
|
|
56
|
+
})), wait);
|
|
57
|
+
}));
|
|
58
|
+
case 5:
|
|
59
|
+
case "end":
|
|
60
|
+
return _context2.stop();
|
|
61
|
+
}
|
|
62
|
+
}, _callee2);
|
|
63
|
+
})), [callback, cancel, wait]);
|
|
64
|
+
useEffect(function () {
|
|
65
|
+
return cancel;
|
|
66
|
+
}, [cancel]);
|
|
67
|
+
return {
|
|
68
|
+
run: run,
|
|
69
|
+
cancel: cancel
|
|
70
|
+
};
|
|
71
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
2
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
3
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
4
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
5
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
6
|
+
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."); }
|
|
7
|
+
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); }
|
|
8
|
+
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; }
|
|
9
|
+
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; } }
|
|
10
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
11
|
+
import { useEffect, useState } from 'react';
|
|
12
|
+
import { useLatest } from "../useLatest";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 一个去抖的setState,减少更新的频率
|
|
16
|
+
* @param {any} value
|
|
17
|
+
* @param {number} [delay=100]
|
|
18
|
+
* @param {any[]} deps
|
|
19
|
+
* @returns {any}
|
|
20
|
+
*/
|
|
21
|
+
export function useDebounceValue(value) {
|
|
22
|
+
var delay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 100;
|
|
23
|
+
var deps = arguments.length > 2 ? arguments[2] : undefined;
|
|
24
|
+
var _useState = useState(value),
|
|
25
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
26
|
+
debouncedValue = _useState2[0],
|
|
27
|
+
setDebouncedValue = _useState2[1];
|
|
28
|
+
var valueRef = useLatest(value);
|
|
29
|
+
useEffect(function () {
|
|
30
|
+
var handler = setTimeout(function () {
|
|
31
|
+
setDebouncedValue(valueRef.current);
|
|
32
|
+
}, delay);
|
|
33
|
+
return function () {
|
|
34
|
+
return clearTimeout(handler);
|
|
35
|
+
};
|
|
36
|
+
},
|
|
37
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
38
|
+
deps ? [delay].concat(_toConsumableArray(deps)) : undefined);
|
|
39
|
+
return debouncedValue;
|
|
40
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { useEffect, useRef } from 'react';
|
|
2
|
+
import { isDeepEqualReact } from "../../isDeepEqualReact";
|
|
3
|
+
import { useDebounceFn } from "../useDebounceFn";
|
|
4
|
+
export var isDeepEqual = function isDeepEqual(a, b, ignoreKeys) {
|
|
5
|
+
return isDeepEqualReact(a, b, ignoreKeys);
|
|
6
|
+
};
|
|
7
|
+
export function useDeepCompareMemoize(value, ignoreKeys) {
|
|
8
|
+
var ref = useRef();
|
|
9
|
+
if (!isDeepEqual(value, ref.current, ignoreKeys)) {
|
|
10
|
+
ref.current = value;
|
|
11
|
+
}
|
|
12
|
+
return ref.current;
|
|
13
|
+
}
|
|
14
|
+
export function useDeepCompareEffect(effect, dependencies, ignoreKeys) {
|
|
15
|
+
useEffect(effect, useDeepCompareMemoize(dependencies || [], ignoreKeys));
|
|
16
|
+
}
|
|
17
|
+
export function useDeepCompareEffectDebounce(effect, dependencies, ignoreKeys, waitTime) {
|
|
18
|
+
var effectDn = useDebounceFn(function () {
|
|
19
|
+
effect();
|
|
20
|
+
}, waitTime || 16);
|
|
21
|
+
useEffect(function () {
|
|
22
|
+
effectDn.run();
|
|
23
|
+
}, useDeepCompareMemoize(dependencies || [], ignoreKeys));
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { useDeepCompareMemoize } from "../useDeepCompareEffect";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* `useDeepCompareMemo` will only recompute the memoized value when one of the
|
|
6
|
+
* `deps` has changed.
|
|
7
|
+
*
|
|
8
|
+
* Usage note: only use this if `deps` are objects or arrays that contain
|
|
9
|
+
* objects. Otherwise you should just use React.useMemo.
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
function useDeepCompareMemo(factory, dependencies) {
|
|
13
|
+
return React.useMemo(factory, useDeepCompareMemoize(dependencies));
|
|
14
|
+
}
|
|
15
|
+
export default useDeepCompareMemo;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
import { isBrowser } from "../../isBrowser";
|
|
3
|
+
export function useDocumentTitle(titleInfo, appDefaultTitle) {
|
|
4
|
+
var titleText = typeof titleInfo.title === 'string' ? titleInfo.title : appDefaultTitle;
|
|
5
|
+
useEffect(function () {
|
|
6
|
+
if (isBrowser() && titleText) {
|
|
7
|
+
document.title = titleText;
|
|
8
|
+
}
|
|
9
|
+
}, [titleInfo.title, titleText]);
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
2
|
+
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."); }
|
|
3
|
+
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); }
|
|
4
|
+
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; }
|
|
5
|
+
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; } }
|
|
6
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
7
|
+
import { useCallback, useState } from 'react';
|
|
8
|
+
export default function useForceRender() {
|
|
9
|
+
var _useState = useState(true),
|
|
10
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
11
|
+
setValue = _useState2[1];
|
|
12
|
+
var updateValue = useCallback(function () {
|
|
13
|
+
return setValue(function (oldValue) {
|
|
14
|
+
return !oldValue;
|
|
15
|
+
});
|
|
16
|
+
}, []);
|
|
17
|
+
return updateValue;
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { useMemo } from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* useRefCallback
|
|
5
|
+
* @param {Function} callback ref.current 变化时触发
|
|
6
|
+
* @param {any} [initialValue] 初始值
|
|
7
|
+
* @returns {Object} 代理后的 ref 对象
|
|
8
|
+
*/
|
|
9
|
+
export function useRefCallback(callback, initialValue) {
|
|
10
|
+
var ref = useMemo(function () {
|
|
11
|
+
var defaultValue = {
|
|
12
|
+
current: initialValue
|
|
13
|
+
};
|
|
14
|
+
return new Proxy(defaultValue, {
|
|
15
|
+
set: function set(target, prop, newValue) {
|
|
16
|
+
if (!Object.is(target[prop], newValue)) {
|
|
17
|
+
target[prop] = newValue;
|
|
18
|
+
callback(ref); // 通知变化
|
|
19
|
+
}
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}, []); // 空依赖,确保只创建一次
|
|
24
|
+
|
|
25
|
+
return ref;
|
|
26
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { useCallback, useRef } from 'react';
|
|
2
|
+
var useRefFunction = function useRefFunction(reFunction) {
|
|
3
|
+
var ref = useRef(null);
|
|
4
|
+
ref.current = reFunction;
|
|
5
|
+
return useCallback(function () {
|
|
6
|
+
var _ref$current;
|
|
7
|
+
for (var _len = arguments.length, rest = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
8
|
+
rest[_key] = arguments[_key];
|
|
9
|
+
}
|
|
10
|
+
return (_ref$current = ref.current) === null || _ref$current === void 0 ? void 0 : _ref$current.call.apply(_ref$current, [ref].concat(rest));
|
|
11
|
+
}, []);
|
|
12
|
+
};
|
|
13
|
+
export { useRefFunction };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { lighten, operationUnit, resetComponent, setAlpha, useStyle } from "../vtx-provider";
|
|
2
|
+
import { DropdownFooter } from "./components/DropdownFooter";
|
|
3
|
+
import { ErrorBoundary } from "./components/ErrorBoundary";
|
|
4
|
+
import { FieldLabel } from "./components/FieldLabel";
|
|
5
|
+
import { FilterDropdown } from "./components/FilterDropdown";
|
|
6
|
+
import { InlineErrorFormItem } from "./components/InlineErrorFormItem";
|
|
7
|
+
import { LabelIconTip } from "./components/LabelIconTip";
|
|
8
|
+
import { ProFormContext } from "./components/ProFormContext";
|
|
9
|
+
import { conversionMomentValue, convertMoment, dateFormatterMap } from "./conversionMomentValue";
|
|
10
|
+
import { dateArrayFormatter } from "./dateArrayFormatter";
|
|
11
|
+
import { genCopyable } from "./genCopyable";
|
|
12
|
+
import { getFieldPropsOrFormItemProps } from "./getFieldPropsOrFormItemProps";
|
|
13
|
+
import { useDebounceFn } from "./hooks/useDebounceFn";
|
|
14
|
+
import { useDebounceValue } from "./hooks/useDebounceValue";
|
|
15
|
+
import { useDeepCompareEffect, useDeepCompareEffectDebounce } from "./hooks/useDeepCompareEffect";
|
|
16
|
+
import useDeepCompareMemo from "./hooks/useDeepCompareMemo";
|
|
17
|
+
import { useDocumentTitle } from "./hooks/useDocumentTitle";
|
|
18
|
+
import { useLatest } from "./hooks/useLatest";
|
|
19
|
+
import { usePrevious } from "./hooks/usePrevious";
|
|
20
|
+
import { useReactiveRef } from "./hooks/useReactiveRef";
|
|
21
|
+
import { useRefCallback } from "./hooks/useRefCallback";
|
|
22
|
+
import { useRefFunction } from "./hooks/useRefFunction";
|
|
23
|
+
import { isBrowser } from "./isBrowser";
|
|
24
|
+
import { isDeepEqualReact } from "./isDeepEqualReact";
|
|
25
|
+
import { isDropdownValueType } from "./isDropdownValueType";
|
|
26
|
+
import { isImg } from "./isImg";
|
|
27
|
+
import { isNil } from "./isNil";
|
|
28
|
+
import isObject from "./isObject";
|
|
29
|
+
import { isUrl } from "./isUrl";
|
|
30
|
+
import { merge } from "./merge";
|
|
31
|
+
import { nanoid } from "./nanoid";
|
|
32
|
+
import { isFunction } from "./isFunction";
|
|
33
|
+
import { sortByKeyArrayExtract } from "./sortByKeyArrayExtract";
|
|
34
|
+
import { columnSort } from "./columnSort";
|
|
35
|
+
import { sortByGivenOrder } from "./sortByGivenOrder";
|
|
36
|
+
import { omitBoolean } from "./omitBoolean";
|
|
37
|
+
import { omitUndefined } from "./omitUndefined";
|
|
38
|
+
import { omitUndefinedAndEmptyArr } from "./omitUndefinedAndEmptyArr";
|
|
39
|
+
import { parseValueToDay } from "./parseValueToMoment";
|
|
40
|
+
import { pickProFormItemProps } from "./pickProFormItemProps";
|
|
41
|
+
import { pickProProps } from "./pickProProps";
|
|
42
|
+
import { objectToMap, proFieldParsingText } from "./proFieldParsingText";
|
|
43
|
+
import { runFunction } from "./runFunction";
|
|
44
|
+
import stringify from "./stringify";
|
|
45
|
+
import { transformKeySubmitValue } from "./transformKeySubmitValue";
|
|
46
|
+
import { editableRowByKey, recordKeyToString, useEditableArray } from "./useEditableArray";
|
|
47
|
+
import { useEditableMap } from "./useEditableMap";
|
|
48
|
+
import { useBreakpoint } from "./useMediaQuery";
|
|
49
|
+
import { useMountMergeState } from "./useMountMergeState";
|
|
50
|
+
import { genColumnKey } from "./genColumnKey";
|
|
51
|
+
import { getPlaceholder } from "./getPlaceholder";
|
|
52
|
+
|
|
53
|
+
// 导出类型定义移除,因为JavaScript不支持类型导出
|
|
54
|
+
export { conversionMomentValue, conversionMomentValue as conversionSubmitValue, convertMoment, dateArrayFormatter, dateFormatterMap, DropdownFooter, editableRowByKey, ErrorBoundary, FieldLabel, FilterDropdown, genCopyable, getFieldPropsOrFormItemProps, InlineErrorFormItem, isBrowser, isDeepEqualReact, isDropdownValueType, isImg, isNil, isObject, isUrl, isFunction, columnSort, LabelIconTip, lighten, merge, nanoid, objectToMap, omitBoolean, omitUndefined, omitUndefinedAndEmptyArr, operationUnit, parseValueToDay, pickProFormItemProps, pickProProps, proFieldParsingText, ProFormContext, recordKeyToString, resetComponent, runFunction, setAlpha, stringify, sortByKeyArrayExtract, sortByGivenOrder,
|
|
55
|
+
// function
|
|
56
|
+
transformKeySubmitValue, useBreakpoint, useDebounceFn, useDebounceValue, useDeepCompareEffect, useDeepCompareEffectDebounce, useDeepCompareMemo, useDocumentTitle,
|
|
57
|
+
// hooks
|
|
58
|
+
useEditableArray, useEditableMap, useLatest, useMountMergeState, usePrevious, useReactiveRef, useRefCallback, useRefFunction, useStyle, genColumnKey, getPlaceholder };
|
|
59
|
+
|
|
60
|
+
// 注意:以下类型导出在JavaScript中不可用,已移除
|
|
61
|
+
// export type {
|
|
62
|
+
// ProFormInstanceType,
|
|
63
|
+
// ProRequestData,
|
|
64
|
+
// RowEditableConfig,
|
|
65
|
+
// RowEditableType,
|
|
66
|
+
// UseEditableMapType,
|
|
67
|
+
// UseEditableMapUtilType,
|
|
68
|
+
// UseEditableType,
|
|
69
|
+
// UseEditableUtilType,
|
|
70
|
+
// };
|
|
71
|
+
|
|
72
|
+
// 如果需要类型定义,可以考虑使用JSDoc注释或者创建独立的.d.ts声明文件
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 用于判断当前是否在浏览器环境中。
|
|
3
|
+
* 首先会判断当前是否处于测试环境中(通过 process.env.NODE_ENV === 'TEST' 判断),
|
|
4
|
+
* 如果是,则返回 true。否则,会进一步判断是否存在 window 对象、document 对象以及 matchMedia 方法
|
|
5
|
+
* 同时通过 !isNode 判断当前不是在服务器(Node.js)环境下执行,
|
|
6
|
+
* 如果都符合,则返回 true 表示当前处于浏览器环境中。
|
|
7
|
+
* @returns boolean
|
|
8
|
+
*/
|
|
9
|
+
export declare const isBrowser: () => boolean;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var isNode = typeof process !== 'undefined' && process.versions != null && process.versions.node != null;
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 用于判断当前是否在浏览器环境中。
|
|
5
|
+
* 首先会判断当前是否处于测试环境中(通过 process.env.NODE_ENV === 'TEST' 判断),
|
|
6
|
+
* 如果是,则返回 true。否则,会进一步判断是否存在 window 对象、document 对象以及 matchMedia 方法
|
|
7
|
+
* 同时通过 !isNode 判断当前不是在服务器(Node.js)环境下执行,
|
|
8
|
+
* 如果都符合,则返回 true 表示当前处于浏览器环境中。
|
|
9
|
+
* @returns boolean
|
|
10
|
+
*/
|
|
11
|
+
export var isBrowser = function isBrowser() {
|
|
12
|
+
if (typeof process !== 'undefined' && process.env.NODE_ENV === 'TEST') {
|
|
13
|
+
return true;
|
|
14
|
+
}
|
|
15
|
+
return typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.matchMedia !== 'undefined' && !isNode;
|
|
16
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
2
|
+
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); }
|
|
3
|
+
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; }
|
|
4
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
5
|
+
/* eslint-disable no-restricted-syntax */
|
|
6
|
+
/* eslint-disable no-continue */
|
|
7
|
+
/* eslint-disable no-unused-vars */
|
|
8
|
+
/* eslint-disable no-self-compare */
|
|
9
|
+
/* eslint-disable eqeqeq */
|
|
10
|
+
/* eslint-disable no-plusplus */
|
|
11
|
+
// do not edit .js files directly - edit src/index.jst
|
|
12
|
+
|
|
13
|
+
export function isDeepEqualReact(a, b, ignoreKeys) {
|
|
14
|
+
if (a === b) return true;
|
|
15
|
+
if (a && b && _typeof(a) === 'object' && _typeof(b) === 'object') {
|
|
16
|
+
if (a.constructor !== b.constructor) return false;
|
|
17
|
+
var length, i, keys;
|
|
18
|
+
if (Array.isArray(a)) {
|
|
19
|
+
length = a.length;
|
|
20
|
+
if (length != b.length) return false;
|
|
21
|
+
for (i = length; i-- !== 0;) if (!isDeepEqualReact(a[i], b[i], ignoreKeys)) return false;
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
if (a instanceof Map && b instanceof Map) {
|
|
25
|
+
if (a.size !== b.size) return false;
|
|
26
|
+
var _iterator = _createForOfIteratorHelper(a.entries()),
|
|
27
|
+
_step;
|
|
28
|
+
try {
|
|
29
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
30
|
+
i = _step.value;
|
|
31
|
+
if (!b.has(i[0])) return false;
|
|
32
|
+
}
|
|
33
|
+
} catch (err) {
|
|
34
|
+
_iterator.e(err);
|
|
35
|
+
} finally {
|
|
36
|
+
_iterator.f();
|
|
37
|
+
}
|
|
38
|
+
var _iterator2 = _createForOfIteratorHelper(a.entries()),
|
|
39
|
+
_step2;
|
|
40
|
+
try {
|
|
41
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
42
|
+
i = _step2.value;
|
|
43
|
+
if (!isDeepEqualReact(i[1], b.get(i[0]), ignoreKeys)) return false;
|
|
44
|
+
}
|
|
45
|
+
} catch (err) {
|
|
46
|
+
_iterator2.e(err);
|
|
47
|
+
} finally {
|
|
48
|
+
_iterator2.f();
|
|
49
|
+
}
|
|
50
|
+
return true;
|
|
51
|
+
}
|
|
52
|
+
if (a instanceof Set && b instanceof Set) {
|
|
53
|
+
if (a.size !== b.size) return false;
|
|
54
|
+
var _iterator3 = _createForOfIteratorHelper(a.entries()),
|
|
55
|
+
_step3;
|
|
56
|
+
try {
|
|
57
|
+
for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
|
|
58
|
+
i = _step3.value;
|
|
59
|
+
if (!b.has(i[0])) return false;
|
|
60
|
+
}
|
|
61
|
+
} catch (err) {
|
|
62
|
+
_iterator3.e(err);
|
|
63
|
+
} finally {
|
|
64
|
+
_iterator3.f();
|
|
65
|
+
}
|
|
66
|
+
return true;
|
|
67
|
+
}
|
|
68
|
+
if (ArrayBuffer.isView(a) && ArrayBuffer.isView(b)) {
|
|
69
|
+
length = a.length;
|
|
70
|
+
if (length != b.length) return false;
|
|
71
|
+
for (i = length; i-- !== 0;) if (a[i] !== b[i]) return false;
|
|
72
|
+
return true;
|
|
73
|
+
}
|
|
74
|
+
if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
|
|
75
|
+
if (a.valueOf !== Object.prototype.valueOf && a.valueOf) return a.valueOf() === b.valueOf();
|
|
76
|
+
if (a.toString !== Object.prototype.toString && a.toString) return a.toString() === b.toString();
|
|
77
|
+
keys = Object.keys(a);
|
|
78
|
+
length = keys.length;
|
|
79
|
+
if (length !== Object.keys(b).length) return false;
|
|
80
|
+
for (i = length; i-- !== 0;) if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false;
|
|
81
|
+
for (i = length; i-- !== 0;) {
|
|
82
|
+
var key = keys[i];
|
|
83
|
+
if (ignoreKeys && ignoreKeys.includes(key)) continue;
|
|
84
|
+
if (key === '_owner' && a.$$typeof) {
|
|
85
|
+
// React-specific: avoid traversing React elements' _owner.
|
|
86
|
+
continue;
|
|
87
|
+
}
|
|
88
|
+
if (!isDeepEqualReact(a[key], b[key], ignoreKeys)) return false;
|
|
89
|
+
}
|
|
90
|
+
return true;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// true if both NaN, false otherwise
|
|
94
|
+
return a !== a && b !== b;
|
|
95
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var isDropdownValueType = function isDropdownValueType(valueType) {
|
|
2
|
+
var isDropdown = false;
|
|
3
|
+
if (typeof valueType === 'string' && valueType.startsWith('date') && !valueType.endsWith('Range') || valueType === 'select' || valueType === 'time') {
|
|
4
|
+
isDropdown = true;
|
|
5
|
+
}
|
|
6
|
+
return isDropdown;
|
|
7
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 判断是不是一个 url
|
|
3
|
+
* @param {string|undefined} path
|
|
4
|
+
* @returns boolean
|
|
5
|
+
*/
|
|
6
|
+
export var isUrl = function isUrl(path) {
|
|
7
|
+
if (!path) return false;
|
|
8
|
+
if (!path.startsWith('http')) {
|
|
9
|
+
return false;
|
|
10
|
+
}
|
|
11
|
+
try {
|
|
12
|
+
var url = new URL(path);
|
|
13
|
+
return !!url;
|
|
14
|
+
} catch (error) {
|
|
15
|
+
return false;
|
|
16
|
+
}
|
|
17
|
+
};
|