mce 0.26.0 → 0.26.1

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -108,6 +108,13 @@ npm i mce
108
108
  <script setup lang="ts">
109
109
  import { Editor, EditorLayout, EditorLayoutItem } from 'mce'
110
110
  import 'mce/styles'
111
+ // Plugins that ship UI components export their own stylesheet — import it or
112
+ // their editor styles (chart / table / comments / presence / workflow) are missing.
113
+ import '@mce/chart/styles'
114
+ import '@mce/collaboration/styles'
115
+ import '@mce/comments/styles'
116
+ import '@mce/table/styles'
117
+ import '@mce/workflow/styles'
111
118
  import ai from '@mce/ai'
112
119
  import chart from '@mce/chart'
113
120
  import collaboration from '@mce/collaboration'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mce",
3
3
  "type": "module",
4
- "version": "0.26.0",
4
+ "version": "0.26.1",
5
5
  "description": "A headless infinite canvas editor framework built on WebGL rendering, supports exporting to image, video, and PPT. Only the ESM.",
6
6
  "author": "wxm",
7
7
  "license": "MIT",