roosterjs 8.21.1-dev.2 → 8.22.0
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 +5 -0
- package/dist/rooster-amd-min.js +1 -1
- package/dist/rooster-amd-min.js.map +1 -1
- package/dist/rooster-amd.d.ts +8826 -0
- package/dist/rooster-amd.js +21507 -19589
- package/dist/rooster-amd.js.map +1 -1
- package/dist/rooster-min.js +1 -1
- package/dist/rooster-min.js.map +1 -1
- package/dist/rooster.d.ts +8828 -0
- package/dist/rooster.js +21507 -19589
- package/dist/rooster.js.map +1 -1
- package/lib/createEditor.d.ts +10 -10
- package/lib/createEditor.js +31 -31
- package/lib/index.d.ts +8 -7
- package/lib/index.js +22 -21
- package/lib/index.js.map +1 -1
- package/lib-amd/createEditor.d.ts +10 -10
- package/lib-amd/createEditor.js +30 -30
- package/lib-amd/index.d.ts +8 -7
- package/lib-amd/index.js +23 -22
- package/lib-amd/index.js.map +1 -1
- package/package.json +7 -6
- package/test/createEditorTest.d.ts +1 -1
- package/test/createEditorTest.js +56 -56
- package/tsconfig.child.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,11 @@ There are also some extension packages to provide additional functionalities.
|
|
|
52
52
|
2. [roosterjs-react](https://microsoft.github.io/roosterjs/docs/modules/roosterjs_react.html):
|
|
53
53
|
Provide a React wrapper of roosterjs so it can be easily used with React.
|
|
54
54
|
|
|
55
|
+
3. [roosterjs-editor-types-compatible](modules/roosterjs_editor_types_compatible.html):
|
|
56
|
+
Provide types that are compatible with isolatedModules mode. When using isolatedModules mode,
|
|
57
|
+
"const enum" will not work correctly, this package provides enums with prefix "Compatible" in
|
|
58
|
+
their names and they have the same value with const enums in roosterjs-editor-types package
|
|
59
|
+
|
|
55
60
|
### APIs
|
|
56
61
|
|
|
57
62
|
Rooster provides DOM level APIs (in `roosterjs-editor-dom`), core APIs (in `roosterjs-editor-core`), and formatting APIs
|