@para-ui/core 3.0.6 → 3.0.8
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/AutoTips/index.js +1 -1
- package/Form/index.js +1 -1
- package/FormItem/index.js +1 -1
- package/FunctionModal/index.js +2 -2
- package/Modal/index.js +1 -1
- package/README.md +8 -0
- package/Selector/index.js +319 -83
- package/Selector/interface.d.ts +38 -5
- package/Selector/lang/en_US.d.ts +2 -0
- package/Selector/lang/zh_CN.d.ts +2 -0
- package/SelectorPicker/index.js +2 -2
- package/Table/index.js +47 -12
- package/Table/interface.d.ts +4 -2
- package/Table/lang/en_US.d.ts +1 -0
- package/Table/lang/zh_CN.d.ts +1 -0
- package/Table/tableBodyInterface.d.ts +1 -1
- package/TextEditor/index.d.ts +2 -0
- package/TextEditor/index.js +91 -19942
- package/_verture/{index-7b63f88e.js → index-2a854dc1.js} +0 -0
- package/_verture/{modalContext-4bce2dae.js → modalContext-44a724b5.js} +0 -0
- package/index.js +4 -2
- package/package.json +1 -1
|
File without changes
|
|
File without changes
|
package/index.js
CHANGED
|
@@ -20,8 +20,8 @@ export { Drawer } from './Drawer/index.js';
|
|
|
20
20
|
export { Dropdown } from './Dropdown/index.js';
|
|
21
21
|
export { default as Empty } from './Empty/index.js';
|
|
22
22
|
export { default as Form } from './Form/index.js';
|
|
23
|
-
export { F as FormItem } from './_verture/index-
|
|
24
|
-
export { u as FunctionModal, F as FunctionModalProvider, a as useClose } from './_verture/modalContext-
|
|
23
|
+
export { F as FormItem } from './_verture/index-2a854dc1.js';
|
|
24
|
+
export { u as FunctionModal, F as FunctionModalProvider, a as useClose } from './_verture/modalContext-44a724b5.js';
|
|
25
25
|
export { default as GlobalContext, changeConfirmLocale, getConfirmLocale } from './GlobalContext/index.js';
|
|
26
26
|
export { default as Help } from './Help/index.js';
|
|
27
27
|
export { default as HelperText } from './HelperText/index.js';
|
|
@@ -152,6 +152,8 @@ import '@para-ui/icons/UpTriangleF';
|
|
|
152
152
|
import '@para-ui/icons/DownTriangleF';
|
|
153
153
|
import '@para-ui/icons/Panel';
|
|
154
154
|
import 'rc-tabs';
|
|
155
|
+
import '@wangeditor/editor-for-react';
|
|
156
|
+
import '@wangeditor/editor';
|
|
155
157
|
import '@para-ui/icons/PreviewClose';
|
|
156
158
|
import '@para-ui/icons/PreviewOpen';
|
|
157
159
|
import 'rc-tooltip';
|