@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,425 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
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); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = exports.VtxWangEditor = void 0;
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
+
var _editorForReact = require("@wangeditor/editor-for-react");
|
|
11
|
+
var _pluginUploadAttachment = _interopRequireDefault(require("@wangeditor/plugin-upload-attachment"));
|
|
12
|
+
var _editor = require("@wangeditor/editor");
|
|
13
|
+
var _getToken = _interopRequireDefault(require("../utils/getToken"));
|
|
14
|
+
var _wangEditorUtil = require("./wangEditorUtil");
|
|
15
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
16
|
+
var _index = require("./style/index");
|
|
17
|
+
var _context2 = require("antd/es/form/context");
|
|
18
|
+
var _statusUtils = require("antd/es/_util/statusUtils");
|
|
19
|
+
var _vtxProvider = require("../vtx-provider");
|
|
20
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
21
|
+
var _excluded = ["value", "onChange", "downloadUrl", "uploadUrl", "placeholder", "maxFileSize", "defaultMaxFileSize", "maxNumberOfFiles", "height", "status", "enableSanitization", "toolConfig", "editConfig"];
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
25
|
+
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; }
|
|
26
|
+
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; }
|
|
27
|
+
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; }
|
|
28
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
29
|
+
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); }
|
|
30
|
+
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; }
|
|
31
|
+
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); } }
|
|
32
|
+
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); }); }; }
|
|
33
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
34
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
35
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
36
|
+
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."); }
|
|
37
|
+
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); }
|
|
38
|
+
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; }
|
|
39
|
+
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; } }
|
|
40
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } /*eslint-disable*/ // 注册插件 处理附件
|
|
41
|
+
_editor.Boot.registerModule(_pluginUploadAttachment.default);
|
|
42
|
+
// 注册插件 处理为空的时候
|
|
43
|
+
_editor.Boot.registerPlugin(_wangEditorUtil.withEmptyHtml);
|
|
44
|
+
var VtxWangEditor = exports.VtxWangEditor = function VtxWangEditor(props) {
|
|
45
|
+
var intl = (0, _vtxProvider.useIntl)();
|
|
46
|
+
var _useContext = (0, _react.useContext)(_vtxProvider.VtxProvider),
|
|
47
|
+
getPrefixCls = _useContext.getPrefixCls;
|
|
48
|
+
var prefixCls = getPrefixCls('wang-editor', props.prefixCls);
|
|
49
|
+
var _useStyle = (0, _index.useStyle)(prefixCls),
|
|
50
|
+
wrapSSR = _useStyle.wrapSSR,
|
|
51
|
+
hashId = _useStyle.hashId;
|
|
52
|
+
|
|
53
|
+
// 添加加载状态管理
|
|
54
|
+
var _useState = (0, _react.useState)(false),
|
|
55
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
56
|
+
loading = _useState2[0],
|
|
57
|
+
setLoading = _useState2[1];
|
|
58
|
+
var _useState3 = (0, _react.useState)(null),
|
|
59
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
60
|
+
error = _useState4[0],
|
|
61
|
+
setError = _useState4[1];
|
|
62
|
+
|
|
63
|
+
// 添加错误边界处理
|
|
64
|
+
var handleError = (0, _react.useCallback)(function (error) {
|
|
65
|
+
console.error('VtxWangEditor Error:', error);
|
|
66
|
+
setError(error.message);
|
|
67
|
+
// 可以在这里添加错误上报逻辑
|
|
68
|
+
}, []);
|
|
69
|
+
var valueRef = (0, _react.useRef)();
|
|
70
|
+
var _React$useContext = _react.default.useContext(_context2.FormItemInputContext),
|
|
71
|
+
contextStatus = _React$useContext.status,
|
|
72
|
+
hasFeedback = _React$useContext.hasFeedback,
|
|
73
|
+
isFormItemInput = _React$useContext.isFormItemInput,
|
|
74
|
+
feedbackIcon = _React$useContext.feedbackIcon;
|
|
75
|
+
var value = props.value,
|
|
76
|
+
onChange = props.onChange,
|
|
77
|
+
_props$downloadUrl = props.downloadUrl,
|
|
78
|
+
downloadUrl = _props$downloadUrl === void 0 ? '/cloudFile/common/downloadFile?id=' : _props$downloadUrl,
|
|
79
|
+
_props$uploadUrl = props.uploadUrl,
|
|
80
|
+
uploadUrl = _props$uploadUrl === void 0 ? '/cloudFile/common/uploadFile' : _props$uploadUrl,
|
|
81
|
+
_props$placeholder = props.placeholder,
|
|
82
|
+
placeholder = _props$placeholder === void 0 ? '' : _props$placeholder,
|
|
83
|
+
_props$maxFileSize = props.maxFileSize,
|
|
84
|
+
maxFileSize = _props$maxFileSize === void 0 ? 5 * 1024 * 1024 : _props$maxFileSize,
|
|
85
|
+
_props$defaultMaxFile = props.defaultMaxFileSize,
|
|
86
|
+
defaultMaxFileSize = _props$defaultMaxFile === void 0 ? 1024 * 1024 * 1024 : _props$defaultMaxFile,
|
|
87
|
+
_props$maxNumberOfFil = props.maxNumberOfFiles,
|
|
88
|
+
maxNumberOfFiles = _props$maxNumberOfFil === void 0 ? 5 : _props$maxNumberOfFil,
|
|
89
|
+
_props$height = props.height,
|
|
90
|
+
height = _props$height === void 0 ? 350 : _props$height,
|
|
91
|
+
customStatus = props.status,
|
|
92
|
+
_props$enableSanitiza = props.enableSanitization,
|
|
93
|
+
enableSanitization = _props$enableSanitiza === void 0 ? true : _props$enableSanitiza,
|
|
94
|
+
_props$toolConfig = props.toolConfig,
|
|
95
|
+
toolConfig = _props$toolConfig === void 0 ? {} : _props$toolConfig,
|
|
96
|
+
_props$editConfig = props.editConfig,
|
|
97
|
+
editConfig = _props$editConfig === void 0 ? {} : _props$editConfig,
|
|
98
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
99
|
+
var mergedStatus = (0, _statusUtils.getMergedStatus)(contextStatus, customStatus);
|
|
100
|
+
var _useState5 = (0, _react.useState)(null),
|
|
101
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
102
|
+
editor = _useState6[0],
|
|
103
|
+
setEditor = _useState6[1];
|
|
104
|
+
|
|
105
|
+
// 及时销毁 editor ,重要!
|
|
106
|
+
(0, _react.useEffect)(function () {
|
|
107
|
+
return function () {
|
|
108
|
+
window.REGISTRY_UPLOAD_FILE = false;
|
|
109
|
+
if (editor == null) return;
|
|
110
|
+
if (editor) {
|
|
111
|
+
editor.destroy();
|
|
112
|
+
setEditor(null);
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
}, []);
|
|
116
|
+
(0, _react.useEffect)(function () {
|
|
117
|
+
valueRef.current = value;
|
|
118
|
+
}, [value]);
|
|
119
|
+
|
|
120
|
+
// 修改安全的粘贴处理函数
|
|
121
|
+
var handleSafePaste = (0, _react.useCallback)( /*#__PURE__*/function () {
|
|
122
|
+
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(editor, event) {
|
|
123
|
+
var html, rtf, plainText, imgSrcs, rtfImageData;
|
|
124
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
125
|
+
while (1) switch (_context.prev = _context.next) {
|
|
126
|
+
case 0:
|
|
127
|
+
event.preventDefault();
|
|
128
|
+
_context.prev = 1;
|
|
129
|
+
// 获取粘贴内容
|
|
130
|
+
html = event.clipboardData.getData('text/html');
|
|
131
|
+
rtf = event.clipboardData.getData('text/rtf');
|
|
132
|
+
plainText = event.clipboardData.getData('text/plain'); // 如果没有HTML内容,直接粘贴纯文本
|
|
133
|
+
if (html) {
|
|
134
|
+
_context.next = 8;
|
|
135
|
+
break;
|
|
136
|
+
}
|
|
137
|
+
if (plainText) {
|
|
138
|
+
setTimeout(function () {
|
|
139
|
+
editor.insertText(plainText);
|
|
140
|
+
}, 0);
|
|
141
|
+
}
|
|
142
|
+
return _context.abrupt("return", false);
|
|
143
|
+
case 8:
|
|
144
|
+
// 安全过滤原始HTML内容
|
|
145
|
+
if (enableSanitization) {
|
|
146
|
+
html = (0, _wangEditorUtil.sanitizeHtml)(html);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// 处理Word粘贴(包含RTF数据)
|
|
150
|
+
if (!rtf) {
|
|
151
|
+
_context.next = 32;
|
|
152
|
+
break;
|
|
153
|
+
}
|
|
154
|
+
_context.prev = 10;
|
|
155
|
+
// 列表缩进会超出边框,直接过滤掉
|
|
156
|
+
html = html.replace(/text\-indent:\-(.*?)pt/gi, '');
|
|
157
|
+
|
|
158
|
+
// 从html内容中查找粘贴内容中是否有图片元素
|
|
159
|
+
imgSrcs = (0, _wangEditorUtil.findAllImgSrcsFromHtml)(html);
|
|
160
|
+
html = (0, _wangEditorUtil.replaceAllSpanFontSize)(html);
|
|
161
|
+
|
|
162
|
+
// 处理图片(如果有的话)
|
|
163
|
+
if (!(imgSrcs && Array.isArray(imgSrcs) && imgSrcs.length)) {
|
|
164
|
+
_context.next = 27;
|
|
165
|
+
break;
|
|
166
|
+
}
|
|
167
|
+
rtfImageData = (0, _wangEditorUtil.extractImageDataFromRtf)(rtf);
|
|
168
|
+
if (!rtfImageData.length) {
|
|
169
|
+
_context.next = 27;
|
|
170
|
+
break;
|
|
171
|
+
}
|
|
172
|
+
_context.prev = 17;
|
|
173
|
+
_context.next = 20;
|
|
174
|
+
return (0, _wangEditorUtil.replaceImagesFileSourceWithInlineRepresentation)(html, imgSrcs, rtfImageData, true, uploadUrl, downloadUrl);
|
|
175
|
+
case 20:
|
|
176
|
+
html = _context.sent;
|
|
177
|
+
// 对处理后的HTML再次进行安全过滤
|
|
178
|
+
if (enableSanitization) {
|
|
179
|
+
html = (0, _wangEditorUtil.sanitizeHtml)(html);
|
|
180
|
+
}
|
|
181
|
+
_context.next = 27;
|
|
182
|
+
break;
|
|
183
|
+
case 24:
|
|
184
|
+
_context.prev = 24;
|
|
185
|
+
_context.t0 = _context["catch"](17);
|
|
186
|
+
console.warn('图片处理失败,将跳过图片处理:', _context.t0.message);
|
|
187
|
+
// 图片处理失败时,保留原始HTML(不含图片)
|
|
188
|
+
// 不抛出错误,继续处理文字内容
|
|
189
|
+
case 27:
|
|
190
|
+
_context.next = 32;
|
|
191
|
+
break;
|
|
192
|
+
case 29:
|
|
193
|
+
_context.prev = 29;
|
|
194
|
+
_context.t1 = _context["catch"](10);
|
|
195
|
+
console.warn('Word内容处理失败,将粘贴原始内容:', _context.t1.message);
|
|
196
|
+
// 处理失败时,回退到原始HTML
|
|
197
|
+
case 32:
|
|
198
|
+
// 安全插入HTML(无论是处理过的还是原始的)
|
|
199
|
+
setTimeout(function () {
|
|
200
|
+
try {
|
|
201
|
+
editor.dangerouslyInsertHtml(html);
|
|
202
|
+
} catch (insertError) {
|
|
203
|
+
// 如果HTML插入失败,尝试插入纯文本作为备选
|
|
204
|
+
if (plainText) {
|
|
205
|
+
editor.insertText(plainText);
|
|
206
|
+
}
|
|
207
|
+
handleError(new Error('内容插入失败: ' + insertError.message));
|
|
208
|
+
}
|
|
209
|
+
}, 0);
|
|
210
|
+
return _context.abrupt("return", false);
|
|
211
|
+
case 36:
|
|
212
|
+
_context.prev = 36;
|
|
213
|
+
_context.t2 = _context["catch"](1);
|
|
214
|
+
// 最后的兜底处理
|
|
215
|
+
console.error('粘贴处理严重错误:', _context.t2);
|
|
216
|
+
if (event.clipboardData.getData('text/plain')) {
|
|
217
|
+
// 至少确保文字能够粘贴
|
|
218
|
+
setTimeout(function () {
|
|
219
|
+
editor.insertText(event.clipboardData.getData('text/plain'));
|
|
220
|
+
}, 0);
|
|
221
|
+
}
|
|
222
|
+
handleError(new Error('粘贴处理失败: ' + _context.t2.message));
|
|
223
|
+
return _context.abrupt("return", false);
|
|
224
|
+
case 42:
|
|
225
|
+
case "end":
|
|
226
|
+
return _context.stop();
|
|
227
|
+
}
|
|
228
|
+
}, _callee, null, [[1, 36], [10, 29], [17, 24]]);
|
|
229
|
+
}));
|
|
230
|
+
return function (_x, _x2) {
|
|
231
|
+
return _ref.apply(this, arguments);
|
|
232
|
+
};
|
|
233
|
+
}(), [uploadUrl, downloadUrl, enableSanitization, handleError]);
|
|
234
|
+
|
|
235
|
+
// 添加安全的onChange处理
|
|
236
|
+
var handleEditorChange = (0, _react.useCallback)(function (editor) {
|
|
237
|
+
try {
|
|
238
|
+
var newValue = editor.getHtml() || undefined;
|
|
239
|
+
// 对输出内容也进行安全过滤
|
|
240
|
+
var processedValue = enableSanitization && newValue !== undefined ? (0, _wangEditorUtil.sanitizeHtml)(newValue) : newValue;
|
|
241
|
+
// console.log('编辑器内容变化,处理前内容:', newValue);
|
|
242
|
+
// console.log('编辑器内容变化,处理后内容:', processedValue);
|
|
243
|
+
if (processedValue !== valueRef.current) {
|
|
244
|
+
if (processedValue === undefined) {
|
|
245
|
+
onChange('');
|
|
246
|
+
} else {
|
|
247
|
+
onChange(processedValue);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
} catch (error) {
|
|
251
|
+
handleError(new Error('编辑器内容处理失败: ' + error.message));
|
|
252
|
+
}
|
|
253
|
+
}, [value, onChange, enableSanitization, handleError]);
|
|
254
|
+
|
|
255
|
+
// 编辑器配置
|
|
256
|
+
var editorConfig = _objectSpread(_objectSpread({}, editConfig), {}, {
|
|
257
|
+
MENU_CONF: {
|
|
258
|
+
// 插入图片
|
|
259
|
+
uploadImage: {
|
|
260
|
+
server: uploadUrl,
|
|
261
|
+
maxFileSize: defaultMaxFileSize,
|
|
262
|
+
maxNumberOfFiles: maxNumberOfFiles,
|
|
263
|
+
headers: {
|
|
264
|
+
access_token: (0, _getToken.default)(),
|
|
265
|
+
Authorization: 'Bearer ' + (0, _getToken.default)()
|
|
266
|
+
},
|
|
267
|
+
// onSuccess(file, res) {},
|
|
268
|
+
onBeforeUpload: function onBeforeUpload(file) {
|
|
269
|
+
for (var key in file) {
|
|
270
|
+
if (file[key].size > maxFileSize) {
|
|
271
|
+
message.warn("\u8D85\u8FC7\u6587\u4EF6\u5927\u5C0F\u9650\u5236\uFF0C\u6700\u5927\u6587\u4EF6\u5927\u5C0F\u4E3A".concat(maxFileSize / 1024 / 1024, "M"));
|
|
272
|
+
// return { [key]: false };
|
|
273
|
+
return {};
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
return file;
|
|
277
|
+
},
|
|
278
|
+
onError: function onError(file, err, res) {
|
|
279
|
+
handleError(new Error(intl.getMessage('wangEditor.imageUploadFailed', '图片上传失败')));
|
|
280
|
+
},
|
|
281
|
+
customInsert: function customInsert(res, insertFn) {
|
|
282
|
+
try {
|
|
283
|
+
// res 即服务端的返回结果
|
|
284
|
+
// 从 res 中找到 url alt href ,然后插入图片
|
|
285
|
+
if (res.result == 0) {
|
|
286
|
+
res.data.map(function (item) {
|
|
287
|
+
insertFn("".concat(downloadUrl).concat(item.id), item.fileName);
|
|
288
|
+
});
|
|
289
|
+
} else {
|
|
290
|
+
throw new Error(intl.getMessage('wangEditor.imageInsertionFailed', '插入图片失败'));
|
|
291
|
+
}
|
|
292
|
+
} catch (error) {
|
|
293
|
+
handleError(error);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
// 插入视频
|
|
298
|
+
uploadVideo: {
|
|
299
|
+
server: uploadUrl,
|
|
300
|
+
maxFileSize: defaultMaxFileSize,
|
|
301
|
+
headers: {
|
|
302
|
+
access_token: (0, _getToken.default)(),
|
|
303
|
+
Authorization: 'Bearer ' + (0, _getToken.default)()
|
|
304
|
+
},
|
|
305
|
+
onError: function onError(file, err, res) {
|
|
306
|
+
handleError(new Error(intl.getMessage('wangEditor.videoUploadFailed', '视频上传失败')));
|
|
307
|
+
},
|
|
308
|
+
onBeforeUpload: function onBeforeUpload(file) {
|
|
309
|
+
for (var key in file) {
|
|
310
|
+
if (file[key].size > maxFileSize) {
|
|
311
|
+
message.warn("\u8D85\u8FC7\u6587\u4EF6\u5927\u5C0F\u9650\u5236\uFF0C\u6700\u5927\u6587\u4EF6\u5927\u5C0F\u4E3A".concat(maxFileSize / 1024 / 1024, "M"));
|
|
312
|
+
// return { [key]: false };
|
|
313
|
+
return {};
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
return file;
|
|
317
|
+
},
|
|
318
|
+
// onSuccess(file, res) {},
|
|
319
|
+
// 上传成功后,用户自定义插入文件
|
|
320
|
+
customInsert: function customInsert(res, insertFn) {
|
|
321
|
+
try {
|
|
322
|
+
if (res.result == 0) {
|
|
323
|
+
res.data.map(function (item) {
|
|
324
|
+
insertFn("".concat(downloadUrl).concat(item.id), item.fileName);
|
|
325
|
+
});
|
|
326
|
+
} else {
|
|
327
|
+
throw new Error(intl.getMessage('wangEditor.videoInsertionFailed', '插入视频失败'));
|
|
328
|
+
}
|
|
329
|
+
} catch (error) {
|
|
330
|
+
handleError(error);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
// 插入附件
|
|
335
|
+
uploadAttachment: {
|
|
336
|
+
server: uploadUrl,
|
|
337
|
+
headers: {
|
|
338
|
+
access_token: (0, _getToken.default)(),
|
|
339
|
+
Authorization: 'Bearer ' + (0, _getToken.default)()
|
|
340
|
+
},
|
|
341
|
+
onError: function onError(file, err, res) {
|
|
342
|
+
handleError(new Error(intl.getMessage('wangEditor.attachmentUploadFailed', '附件上传失败')));
|
|
343
|
+
},
|
|
344
|
+
// onSuccess(file, res) {},
|
|
345
|
+
// 上传成功后,用户自定义插入文件
|
|
346
|
+
customInsert: function customInsert(res, file, insertFn) {
|
|
347
|
+
try {
|
|
348
|
+
if (res.result == 0) {
|
|
349
|
+
res.data.map(function (item) {
|
|
350
|
+
console.log('插入附件:', item, insertFn);
|
|
351
|
+
insertFn(item.fileName, "".concat(downloadUrl).concat(item.id));
|
|
352
|
+
});
|
|
353
|
+
} else {
|
|
354
|
+
throw new Error(intl.getMessage('wangEditor.attachmentInsertionFailed', '插入附件失败'));
|
|
355
|
+
}
|
|
356
|
+
} catch (error) {
|
|
357
|
+
handleError(error);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
placeholder: placeholder,
|
|
363
|
+
// 在编辑器中,点击选中“附件”节点时,要弹出的菜单
|
|
364
|
+
hoverbarKeys: {
|
|
365
|
+
attachment: {
|
|
366
|
+
menuKeys: ['downloadAttachment'] // “下载附件”菜单
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
// 使用安全的粘贴处理函数
|
|
370
|
+
customPaste: handleSafePaste
|
|
371
|
+
});
|
|
372
|
+
// 工具栏配置
|
|
373
|
+
var toolbarConfig = _objectSpread(_objectSpread({}, toolConfig), {}, {
|
|
374
|
+
// 自定义工具栏
|
|
375
|
+
insertKeys: {
|
|
376
|
+
// 自定义插入的位置
|
|
377
|
+
index: 24,
|
|
378
|
+
// “上传附件”菜单
|
|
379
|
+
keys: ['uploadAttachment']
|
|
380
|
+
}
|
|
381
|
+
});
|
|
382
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
383
|
+
className: (0, _classnames.default)(prefixCls, (0, _statusUtils.getStatusClassNames)(prefixCls, mergedStatus, hasFeedback), props.prefixCls),
|
|
384
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_editorForReact.Toolbar, {
|
|
385
|
+
editor: editor,
|
|
386
|
+
defaultConfig: toolbarConfig,
|
|
387
|
+
mode: "default"
|
|
388
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editorForReact.Editor, _objectSpread({
|
|
389
|
+
defaultConfig: editorConfig,
|
|
390
|
+
value: value ? enableSanitization ? (0, _wangEditorUtil.sanitizeHtml)(value) : value : '',
|
|
391
|
+
onCreated: setEditor,
|
|
392
|
+
onChange: handleEditorChange,
|
|
393
|
+
mode: "default",
|
|
394
|
+
className: (0, _classnames.default)("".concat(prefixCls, "-content"), hashId),
|
|
395
|
+
style: {
|
|
396
|
+
height: height
|
|
397
|
+
}
|
|
398
|
+
}, rest))]
|
|
399
|
+
});
|
|
400
|
+
};
|
|
401
|
+
var _default = exports.default = VtxWangEditor;
|
|
402
|
+
VtxWangEditor.propTypes = {
|
|
403
|
+
value: _propTypes.default.string,
|
|
404
|
+
onChange: _propTypes.default.func,
|
|
405
|
+
placeholder: _propTypes.default.string,
|
|
406
|
+
downloadUrl: _propTypes.default.string,
|
|
407
|
+
uploadUrl: _propTypes.default.string,
|
|
408
|
+
height: _propTypes.default.number,
|
|
409
|
+
maxFileSize: _propTypes.default.number,
|
|
410
|
+
maxNumberOfFiles: _propTypes.default.number,
|
|
411
|
+
status: _propTypes.default.string,
|
|
412
|
+
prefixCls: _propTypes.default.string,
|
|
413
|
+
enableSanitization: _propTypes.default.bool // 是否启用HTML过滤
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
// 添加默认属性
|
|
417
|
+
VtxWangEditor.defaultProps = {
|
|
418
|
+
enableSanitization: true,
|
|
419
|
+
maxFileSize: 5 * 1024 * 1024,
|
|
420
|
+
maxNumberOfFiles: 5,
|
|
421
|
+
height: 350,
|
|
422
|
+
placeholder: '',
|
|
423
|
+
downloadUrl: '/cloudFile/common/downloadFile?id=',
|
|
424
|
+
uploadUrl: '/cloudFile/common/uploadFile'
|
|
425
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.useStyle = useStyle;
|
|
7
|
+
require("@wangeditor/editor/dist/css/style.css");
|
|
8
|
+
var _vtxProvider = require("../../vtx-provider");
|
|
9
|
+
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); }
|
|
10
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
+
var genVtxWangEditorStyle = function genVtxWangEditorStyle(token) {
|
|
16
|
+
var componentCls = token.componentCls;
|
|
17
|
+
return _defineProperty({}, componentCls, _defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
18
|
+
border: "1px solid ".concat(token.colorBorderSecondary),
|
|
19
|
+
borderRadius: token.borderRadiusLG
|
|
20
|
+
}, "&".concat(componentCls, "-status-error"), {
|
|
21
|
+
borderColor: token.colorError
|
|
22
|
+
}), '&.w-e-full-screen-container', {
|
|
23
|
+
zIndex: '999999'
|
|
24
|
+
}), '&-content', {
|
|
25
|
+
height: '350px',
|
|
26
|
+
borderTop: "1px solid ".concat(token.colorBorderSecondary)
|
|
27
|
+
}), '.w-e-bar, .w-e-text-container', {
|
|
28
|
+
background: 'transparent',
|
|
29
|
+
color: token.colorText
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
function useStyle(prefixCls) {
|
|
33
|
+
return (0, _vtxProvider.useStyle)(prefixCls, function (token) {
|
|
34
|
+
var vtxWangEditorToken = _objectSpread(_objectSpread({}, token), {}, {
|
|
35
|
+
componentCls: ".".concat(prefixCls)
|
|
36
|
+
});
|
|
37
|
+
return [genVtxWangEditorStyle(vtxWangEditorToken)];
|
|
38
|
+
});
|
|
39
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.vtx-wang-editor {
|
|
4
|
+
border: @border-width-base @border-style-base @border-color-base;
|
|
5
|
+
&.w-e-full-screen-container {
|
|
6
|
+
z-index: 999999;
|
|
7
|
+
}
|
|
8
|
+
&-content {
|
|
9
|
+
height: 350px;
|
|
10
|
+
border-top: @border-width-base @border-style-base @border-color-base;
|
|
11
|
+
}
|
|
12
|
+
}
|