@vtx/components 4.0.0-beta.4 → 4.0.0-beta.40
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 +86 -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 +258 -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 +92 -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 +264 -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,85 @@
|
|
|
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 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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
8
|
+
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."); }
|
|
9
|
+
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); }
|
|
10
|
+
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; }
|
|
11
|
+
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; } }
|
|
12
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
13
|
+
import React from 'react';
|
|
14
|
+
import { Modal, Button } from 'antd';
|
|
15
|
+
import PropTypes from 'prop-types';
|
|
16
|
+
import useSet from "../utils/useSet";
|
|
17
|
+
import VtxDatagrid from "../vtx-datagrid";
|
|
18
|
+
import { useIntl } from "../vtx-provider";
|
|
19
|
+
import VtxModal from "../vtx-modal";
|
|
20
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
21
|
+
function VtxImportResult(props) {
|
|
22
|
+
var intl = useIntl();
|
|
23
|
+
var _useSet = useSet({
|
|
24
|
+
visible: props.visible || false,
|
|
25
|
+
dataSource: props.dataSource || [],
|
|
26
|
+
columns: props.columns,
|
|
27
|
+
modalWidth: props.modalWidth
|
|
28
|
+
}),
|
|
29
|
+
_useSet2 = _slicedToArray(_useSet, 1),
|
|
30
|
+
state = _useSet2[0];
|
|
31
|
+
var modalProps = {
|
|
32
|
+
bodyStyle: {
|
|
33
|
+
backgroundColor: '#f8f8f8'
|
|
34
|
+
},
|
|
35
|
+
open: state.visible,
|
|
36
|
+
title: intl.getMessage('import.result', '导入结果'),
|
|
37
|
+
onCancel: function onCancel() {
|
|
38
|
+
if (typeof props.hideVisible === 'function') {
|
|
39
|
+
props.hideVisible();
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
width: state.modalWidth,
|
|
43
|
+
// maskClosable: false,
|
|
44
|
+
mask: {
|
|
45
|
+
closable: false
|
|
46
|
+
},
|
|
47
|
+
footer: [/*#__PURE__*/_jsx(Button, {
|
|
48
|
+
onClick: function onClick() {
|
|
49
|
+
if (typeof props.hideVisible === 'function') {
|
|
50
|
+
props.hideVisible();
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
children: intl.getMessage('switch.close', '关闭')
|
|
54
|
+
}, "closeWindow")]
|
|
55
|
+
};
|
|
56
|
+
var newTableProps = {
|
|
57
|
+
columns: state.columns,
|
|
58
|
+
dataSource: state.dataSource,
|
|
59
|
+
startIndex: 1,
|
|
60
|
+
size: 'small',
|
|
61
|
+
headFootHeight: 50,
|
|
62
|
+
pagination: false,
|
|
63
|
+
autoFit: false
|
|
64
|
+
};
|
|
65
|
+
return /*#__PURE__*/_jsx(VtxModal, _objectSpread(_objectSpread({}, modalProps), {}, {
|
|
66
|
+
children: /*#__PURE__*/_jsx("div", {
|
|
67
|
+
style: {
|
|
68
|
+
maxHeight: 600,
|
|
69
|
+
width: '100%',
|
|
70
|
+
overflow: 'auto'
|
|
71
|
+
},
|
|
72
|
+
children: /*#__PURE__*/_jsx(VtxDatagrid, _objectSpread({
|
|
73
|
+
toolbar: false
|
|
74
|
+
}, newTableProps))
|
|
75
|
+
})
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
VtxImportResult.propTypes = {
|
|
79
|
+
visible: PropTypes.bool,
|
|
80
|
+
dataSource: PropTypes.array,
|
|
81
|
+
columns: PropTypes.array,
|
|
82
|
+
modalWidth: PropTypes.number,
|
|
83
|
+
hideVisible: PropTypes.func
|
|
84
|
+
};
|
|
85
|
+
export default VtxImportResult;
|
|
@@ -0,0 +1,29 @@
|
|
|
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 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
|
+
import { useStyle as useAntdStyle } from "../../vtx-provider";
|
|
8
|
+
var genVtxImportStyle = function genVtxImportStyle(token) {
|
|
9
|
+
var componentCls = token.componentCls;
|
|
10
|
+
return _defineProperty({}, componentCls, {
|
|
11
|
+
'.ant-modal-container': {
|
|
12
|
+
padding: 0,
|
|
13
|
+
'.ant-modal-header': {
|
|
14
|
+
padding: 20
|
|
15
|
+
},
|
|
16
|
+
'.ant-modal-body': {
|
|
17
|
+
padding: 20
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
export function useStyle(prefixCls) {
|
|
23
|
+
return useAntdStyle('VtxImport', function (token) {
|
|
24
|
+
var vtxImportToken = _objectSpread(_objectSpread({}, token), {}, {
|
|
25
|
+
componentCls: ".".concat(prefixCls)
|
|
26
|
+
});
|
|
27
|
+
return [genVtxImportStyle(vtxImportToken)];
|
|
28
|
+
});
|
|
29
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { CloseCircleFilled, CheckCircleFilled } from '@ant-design/icons';
|
|
4
|
+
import { VtxProvider, useIntl } from "../vtx-provider";
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
8
|
+
var CheckResult = function CheckResult(_ref) {
|
|
9
|
+
var checkResult = _ref.checkResult;
|
|
10
|
+
var intl = useIntl();
|
|
11
|
+
return /*#__PURE__*/_jsx("div", {
|
|
12
|
+
className: "vtx-import2-result-warp",
|
|
13
|
+
children: checkResult ? /*#__PURE__*/_jsxs(_Fragment, {
|
|
14
|
+
children: [/*#__PURE__*/_jsx(CheckCircleFilled, {
|
|
15
|
+
style: {
|
|
16
|
+
color: '#52C41A',
|
|
17
|
+
fontSize: '80px'
|
|
18
|
+
}
|
|
19
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
20
|
+
className: "vtx-import2-result",
|
|
21
|
+
children: intl.getMessage('import.verifySuccess', '校验成功')
|
|
22
|
+
}), /*#__PURE__*/_jsxs("span", {
|
|
23
|
+
className: "vtx-import2-result-success-tips",
|
|
24
|
+
children: [intl.getMessage('import.resultInfoTotal', '本次共计'), "0", intl.getMessage('import.resultInfoData', '条数据')]
|
|
25
|
+
})]
|
|
26
|
+
}) : /*#__PURE__*/_jsxs(_Fragment, {
|
|
27
|
+
children: [/*#__PURE__*/_jsx(CloseCircleFilled, {
|
|
28
|
+
style: {
|
|
29
|
+
color: '#ff4d4f',
|
|
30
|
+
fontSize: '80px'
|
|
31
|
+
}
|
|
32
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
33
|
+
className: "vtx-import2-result",
|
|
34
|
+
children: intl.getMessage('import.verifyFail', '校验失败')
|
|
35
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
36
|
+
className: "vtx-import2-result-error-tips",
|
|
37
|
+
children: intl.getMessage('import.failReasonDown', '下载文件,查看导入失败原因')
|
|
38
|
+
})]
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
};
|
|
42
|
+
CheckResult.propTypes = {
|
|
43
|
+
checkResult: PropTypes.bool
|
|
44
|
+
};
|
|
45
|
+
export default CheckResult;
|
|
@@ -0,0 +1,104 @@
|
|
|
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 _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 _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
5
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
6
|
+
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; }
|
|
7
|
+
import PropTypes from 'prop-types';
|
|
8
|
+
import React, { useRef } from 'react';
|
|
9
|
+
import { CloseCircleFilled } from '@ant-design/icons';
|
|
10
|
+
import UploadSvg from "./UploadSvg";
|
|
11
|
+
import DownloadSvg from "./DownloadSvg";
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
+
var Content = function Content(_ref) {
|
|
15
|
+
var accept = _ref.accept,
|
|
16
|
+
fileKey = _ref.fileKey,
|
|
17
|
+
setFileList = _ref.setFileList,
|
|
18
|
+
fileList = _ref.fileList,
|
|
19
|
+
templateURL = _ref.templateURL,
|
|
20
|
+
customText = _ref.customText,
|
|
21
|
+
TextEnum = _ref.TextEnum,
|
|
22
|
+
extraDom = _ref.extraDom,
|
|
23
|
+
extraText = _ref.extraText,
|
|
24
|
+
prefixCls = _ref.prefixCls;
|
|
25
|
+
var fileInputRef = useRef();
|
|
26
|
+
var onClick = function onClick() {
|
|
27
|
+
fileInputRef.current && fileInputRef.current.click();
|
|
28
|
+
};
|
|
29
|
+
var onFileChange = function onFileChange() {
|
|
30
|
+
setFileList(fileInputRef.current.files);
|
|
31
|
+
};
|
|
32
|
+
var onDeleteFileList = function onDeleteFileList() {
|
|
33
|
+
setFileList([]);
|
|
34
|
+
};
|
|
35
|
+
return /*#__PURE__*/_jsxs("div", {
|
|
36
|
+
children: [extraText && /*#__PURE__*/_jsx("div", {
|
|
37
|
+
style: {
|
|
38
|
+
paddingBottom: 20
|
|
39
|
+
},
|
|
40
|
+
children: extraText
|
|
41
|
+
}), /*#__PURE__*/_jsxs("div", {
|
|
42
|
+
className: "".concat(prefixCls, "-content-box"),
|
|
43
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
44
|
+
className: "".concat(prefixCls, "-content-mark"),
|
|
45
|
+
children: "1"
|
|
46
|
+
}), /*#__PURE__*/_jsx(DownloadSvg, {}), /*#__PURE__*/_jsx("a", {
|
|
47
|
+
className: "".concat(prefixCls, "-download"),
|
|
48
|
+
href: templateURL,
|
|
49
|
+
children: TextEnum.normalTemplateInfoText
|
|
50
|
+
})]
|
|
51
|
+
}), /*#__PURE__*/_jsxs("div", {
|
|
52
|
+
className: "".concat(prefixCls, "-content-box"),
|
|
53
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
54
|
+
className: "".concat(prefixCls, "-content-mark"),
|
|
55
|
+
children: "2"
|
|
56
|
+
}), /*#__PURE__*/_jsx(UploadSvg, {}), /*#__PURE__*/_jsxs("div", {
|
|
57
|
+
className: "".concat(prefixCls, "-file-list"),
|
|
58
|
+
children: [/*#__PURE__*/_jsx("a", {
|
|
59
|
+
onClick: onClick,
|
|
60
|
+
className: "".concat(prefixCls, "-text"),
|
|
61
|
+
children: fileList.length === 0 ? customText || TextEnum.normalSelectFileInfoText : TextEnum.normalReChooseFileText
|
|
62
|
+
}), _toConsumableArray(fileList).map(function (file) {
|
|
63
|
+
return /*#__PURE__*/_jsxs("div", {
|
|
64
|
+
className: "".concat(prefixCls, "-file-item"),
|
|
65
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
66
|
+
className: "".concat(prefixCls, "-file-name"),
|
|
67
|
+
children: file.name
|
|
68
|
+
}), /*#__PURE__*/_jsx(CloseCircleFilled, {
|
|
69
|
+
fill: "#c0c0c0",
|
|
70
|
+
onClick: onDeleteFileList,
|
|
71
|
+
style: {
|
|
72
|
+
color: '#c0c0c0',
|
|
73
|
+
cursor: 'pointer'
|
|
74
|
+
}
|
|
75
|
+
})]
|
|
76
|
+
}, file.name);
|
|
77
|
+
})]
|
|
78
|
+
}), /*#__PURE__*/_jsx("input", {
|
|
79
|
+
type: "file",
|
|
80
|
+
name: fileKey,
|
|
81
|
+
accept: accept,
|
|
82
|
+
ref: fileInputRef,
|
|
83
|
+
style: {
|
|
84
|
+
display: 'none'
|
|
85
|
+
},
|
|
86
|
+
onChange: onFileChange,
|
|
87
|
+
value: fileList.length === 0 ? '' : fileList[0].fileName
|
|
88
|
+
})]
|
|
89
|
+
}), extraDom]
|
|
90
|
+
});
|
|
91
|
+
};
|
|
92
|
+
Content.propTypes = {
|
|
93
|
+
accept: PropTypes.string,
|
|
94
|
+
fileKey: PropTypes.string,
|
|
95
|
+
templateURL: PropTypes.string,
|
|
96
|
+
fileList: PropTypes.any,
|
|
97
|
+
setFileList: PropTypes.func,
|
|
98
|
+
customText: PropTypes.string,
|
|
99
|
+
extraText: PropTypes.string,
|
|
100
|
+
TextEnum: PropTypes.object,
|
|
101
|
+
// extraDom: [PropTypes.string, PropTypes.node],
|
|
102
|
+
extraDom: PropTypes.object
|
|
103
|
+
};
|
|
104
|
+
export default Content;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
|
+
var DownloadSvg = function DownloadSvg() {
|
|
5
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "48",
|
|
8
|
+
height: "48",
|
|
9
|
+
viewBox: "0 0 48 48",
|
|
10
|
+
style: {
|
|
11
|
+
flexShrink: 0
|
|
12
|
+
},
|
|
13
|
+
children: [/*#__PURE__*/_jsx("defs", {}), /*#__PURE__*/_jsx("path", {
|
|
14
|
+
className: "a",
|
|
15
|
+
fill: "#e3fff3",
|
|
16
|
+
d: "M88.358,82.88m-24,0a24,24,0,1,0,24-24A24,24,0,0,0,64.358,82.88Z",
|
|
17
|
+
transform: "translate(-64.358 -58.88)"
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
className: "b",
|
|
20
|
+
fill: "#05c46d",
|
|
21
|
+
d: "M281.991,241.484H269.017a1.041,1.041,0,0,1-.714-.284l-2.955-2.784a1.036,1.036,0,0,0-.714-.284h-5.676a3.583,3.583,0,0,0-3.572,3.593v21.5a3.583,3.583,0,0,0,3.572,3.593h23.031a3.583,3.583,0,0,0,3.571-3.593V245.079a3.58,3.58,0,0,0-3.569-3.6Zm-6,15.429-4.2,4.074a1.934,1.934,0,0,1-2.681.016l-4.123-3.9a1.967,1.967,0,0,1-.084-2.765,1.936,1.936,0,0,1,2.749-.085l.864.817v-5.571a1.945,1.945,0,1,1,3.889,0v5.465l.888-.861a1.934,1.934,0,0,1,2.749.049A1.969,1.969,0,0,1,275.986,256.913Z",
|
|
22
|
+
transform: "translate(-245.153 -228.623)"
|
|
23
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
24
|
+
className: "c",
|
|
25
|
+
fill: "#1dce75",
|
|
26
|
+
d: "M285.563,245.08a3.583,3.583,0,0,0-3.572-3.593H269.018a1.041,1.041,0,0,1-.714-.284l-2.955-2.787a1.036,1.036,0,0,0-.714-.284h-5.676a3.583,3.583,0,0,0-3.572,3.593v21.5a3.583,3.583,0,0,0,3.572,3.593h8.859a24,24,0,0,0,17.743-16.047V245.08Zm-9.577,11.834-4.2,4.074a1.933,1.933,0,0,1-2.681.016l-4.123-3.9a1.967,1.967,0,0,1-.084-2.765,1.936,1.936,0,0,1,2.749-.085l.864.817V249.5a1.945,1.945,0,1,1,3.889,0v5.465l.888-.861a1.934,1.934,0,0,1,2.749.049A1.969,1.969,0,0,1,275.987,256.913Z",
|
|
27
|
+
transform: "translate(-245.154 -228.623)"
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
className: "d",
|
|
30
|
+
fill: "#3cd38e",
|
|
31
|
+
d: "M269.017,241.464a1.044,1.044,0,0,1-.714-.282l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.572,3.571v16.959c.3.011.6.019.9.019a23.842,23.842,0,0,0,8.743-1.649l-.052-.049a1.944,1.944,0,1,1,2.664-2.833l.864.812v-5.535a1.945,1.945,0,1,1,3.889,0v3.015a23.932,23.932,0,0,0,6.852-10.975H269.017Z",
|
|
32
|
+
transform: "translate(-245.179 -228.563)"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
className: "e",
|
|
35
|
+
fill: "#48e1aa",
|
|
36
|
+
d: "M268.791,241.436a1.016,1.016,0,0,1-.486-.255l-2.958-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.572,3.571v7.963a23.884,23.884,0,0,0,13.406-8.229Z",
|
|
37
|
+
transform: "translate(-245.202 -228.578)"
|
|
38
|
+
})]
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
export default DownloadSvg;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { CheckCircleFilled, CloseCircleFilled } from '@ant-design/icons';
|
|
4
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
5
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
7
|
+
var ImportResult = function ImportResult(_ref) {
|
|
8
|
+
var prefixCls = _ref.prefixCls,
|
|
9
|
+
result = _ref.result,
|
|
10
|
+
errorFile = _ref.errorFile,
|
|
11
|
+
errorURL = _ref.errorURL,
|
|
12
|
+
errorDownloadName = _ref.errorDownloadName,
|
|
13
|
+
count = _ref.count,
|
|
14
|
+
token = _ref.token,
|
|
15
|
+
TextEnum = _ref.TextEnum;
|
|
16
|
+
var url = errorURL && errorFile && "".concat(errorURL, "?fileName=").concat(errorFile, "&downloadName=").concat(errorDownloadName || '', "&token=").concat(token);
|
|
17
|
+
return /*#__PURE__*/_jsx("div", {
|
|
18
|
+
className: "".concat(prefixCls, "-result-warp"),
|
|
19
|
+
children: result ? /*#__PURE__*/_jsxs(_Fragment, {
|
|
20
|
+
children: [/*#__PURE__*/_jsx(CheckCircleFilled, {
|
|
21
|
+
style: {
|
|
22
|
+
color: '#52C41A',
|
|
23
|
+
fontSize: '80px'
|
|
24
|
+
}
|
|
25
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
26
|
+
className: "".concat(prefixCls, "-result"),
|
|
27
|
+
children: TextEnum.resultSuccessText
|
|
28
|
+
}), count !== null && /*#__PURE__*/_jsxs("span", {
|
|
29
|
+
className: "".concat(prefixCls, "-result-success-tips"),
|
|
30
|
+
children: [TextEnum.resultInfoTotalText, count, TextEnum.resultInfoDataText]
|
|
31
|
+
})]
|
|
32
|
+
}) : /*#__PURE__*/_jsxs(_Fragment, {
|
|
33
|
+
children: [/*#__PURE__*/_jsx(CloseCircleFilled, {
|
|
34
|
+
style: {
|
|
35
|
+
color: '#ff4d4f',
|
|
36
|
+
fontSize: '80px'
|
|
37
|
+
}
|
|
38
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
39
|
+
className: "".concat(prefixCls, "-result"),
|
|
40
|
+
children: TextEnum.resultFailText
|
|
41
|
+
}), url && /*#__PURE__*/_jsx("a", {
|
|
42
|
+
className: "".concat(prefixCls, "-result-error-tips"),
|
|
43
|
+
href: url,
|
|
44
|
+
children: TextEnum.resultFailReasonDownText
|
|
45
|
+
})]
|
|
46
|
+
})
|
|
47
|
+
});
|
|
48
|
+
};
|
|
49
|
+
ImportResult.propTypes = {
|
|
50
|
+
result: PropTypes.bool,
|
|
51
|
+
errorURL: PropTypes.string,
|
|
52
|
+
token: PropTypes.string,
|
|
53
|
+
errorFile: PropTypes.string,
|
|
54
|
+
errorDownloadName: PropTypes.string,
|
|
55
|
+
count: PropTypes.any
|
|
56
|
+
};
|
|
57
|
+
export default ImportResult;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
|
+
var UploadSvg = function UploadSvg() {
|
|
5
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "48",
|
|
8
|
+
height: "48",
|
|
9
|
+
viewBox: "0 0 48 48",
|
|
10
|
+
style: {
|
|
11
|
+
flexShrink: 0
|
|
12
|
+
},
|
|
13
|
+
children: [/*#__PURE__*/_jsx("defs", {}), /*#__PURE__*/_jsx("path", {
|
|
14
|
+
className: "a",
|
|
15
|
+
fill: "#e9ecff",
|
|
16
|
+
d: "M91.072,82.88m-24,0a24,24,0,1,0,24-24A24,24,0,0,0,67.072,82.88Z",
|
|
17
|
+
transform: "translate(-67.072 -58.88)"
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
className: "b",
|
|
20
|
+
fill: "#6c6cea",
|
|
21
|
+
d: "M263.967,241.484H250.918a1.05,1.05,0,0,1-.718-.284l-2.972-2.784a1.045,1.045,0,0,0-.718-.284H240.8a3.593,3.593,0,0,0-3.592,3.593v21.5a3.593,3.593,0,0,0,3.592,3.593h23.163a3.593,3.593,0,0,0,3.592-3.593V245.079a3.59,3.59,0,0,0-3.589-3.6Zm-5.881,13.44a1.952,1.952,0,0,1-2.764.049l-.893-.861v5.465a1.956,1.956,0,1,1-3.911,0V254l-.869.817a1.955,1.955,0,1,1-2.68-2.847l4.146-3.9a1.953,1.953,0,0,1,2.7.016l4.223,4.074a1.951,1.951,0,0,1,.052,2.765Z",
|
|
22
|
+
transform: "translate(-228.184 -228.623)"
|
|
23
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
24
|
+
className: "c",
|
|
25
|
+
fill: "#757bf2",
|
|
26
|
+
d: "M267.558,245.08a3.593,3.593,0,0,0-3.592-3.593H250.918a1.05,1.05,0,0,1-.718-.284l-2.972-2.787a1.045,1.045,0,0,0-.718-.284H240.8a3.593,3.593,0,0,0-3.592,3.593v21.5a3.593,3.593,0,0,0,3.592,3.593h10.7a24.089,24.089,0,0,0,16.05-18.307V245.08Zm-9.473,9.845a1.953,1.953,0,0,1-2.764.049l-.893-.861v5.465a1.956,1.956,0,1,1-3.911,0V254l-.869.817a1.955,1.955,0,1,1-2.68-2.847l4.146-3.9a1.953,1.953,0,0,1,2.7.016l4.223,4.074a1.951,1.951,0,0,1,.052,2.765Z",
|
|
27
|
+
transform: "translate(-228.184 -228.623)"
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
className: "d",
|
|
30
|
+
fill: "#8486f8",
|
|
31
|
+
d: "M250.841,241.464a1.044,1.044,0,0,1-.714-.282l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.571,3.571v17.662l.147,0a23.808,23.808,0,0,0,13.088-3.9v-1.562l-.864.812a1.943,1.943,0,1,1-2.664-2.83l4.123-3.881a1.942,1.942,0,0,1,2.681.016l2.371,2.287a23.835,23.835,0,0,0,4.416-8.851h-9.666Z",
|
|
32
|
+
transform: "translate(-228.121 -228.561)"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
className: "e",
|
|
35
|
+
fill: "#8d92f8",
|
|
36
|
+
d: "M250.442,241.382a1.072,1.072,0,0,1-.315-.2l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.571,3.571v8.477a23.93,23.93,0,0,0,13.232-8.8Z",
|
|
37
|
+
transform: "translate(-228.139 -228.577)"
|
|
38
|
+
})]
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
export default UploadSvg;
|