@para-ui/core 2.2.44 → 2.2.45
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/README.md +7 -2
- package/TextEditor/common.d.ts +11 -0
- package/TextEditor/index.d.ts +127 -0
- package/TextEditor/index.js +177 -0
- package/cdn/TextEditor/index.js +230 -0
- package/index.d.ts +2 -0
- package/index.js +167 -4
- package/package.json +5 -3
- package/style.css +2 -0
package/index.d.ts
CHANGED
|
@@ -122,6 +122,8 @@ export { default as Tabs } from './Tabs';
|
|
|
122
122
|
export * from './Tabs';
|
|
123
123
|
export { default as Tag } from './Tag';
|
|
124
124
|
export * from './Tag';
|
|
125
|
+
export { default as TextEditor } from './TextEditor';
|
|
126
|
+
export * from './TextEditor';
|
|
125
127
|
export { default as TextField } from './TextField';
|
|
126
128
|
export * from './TextField';
|
|
127
129
|
export { default as TimePicker } from './TimePicker';
|