@haklex/rich-compose 0.23.0 → 0.25.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.
Files changed (37) hide show
  1. package/README.md +1 -1
  2. package/dist/editor.d.ts +2 -1
  3. package/dist/editor.d.ts.map +1 -1
  4. package/dist/editor.mjs +3 -1
  5. package/dist/litexml-html-preview-client.css +200 -5
  6. package/dist/litexml-html-preview-client.js +402 -139
  7. package/dist/module-Db26fECJ.js +26 -0
  8. package/dist/modules/dynamic/edit.d.ts +3 -0
  9. package/dist/modules/dynamic/edit.d.ts.map +1 -0
  10. package/dist/modules/dynamic/edit.mjs +12 -0
  11. package/dist/modules/dynamic/index.d.ts +7 -0
  12. package/dist/modules/dynamic/index.d.ts.map +1 -0
  13. package/dist/modules/dynamic/index.mjs +3 -0
  14. package/dist/modules/dynamic/module-config.d.ts +3 -0
  15. package/dist/modules/dynamic/module-config.d.ts.map +1 -0
  16. package/dist/modules/dynamic/module.d.ts +2 -0
  17. package/dist/modules/dynamic/module.d.ts.map +1 -0
  18. package/dist/modules/dynamic/node.d.ts +6 -0
  19. package/dist/modules/dynamic/node.d.ts.map +1 -0
  20. package/dist/modules/dynamic/node.mjs +5 -0
  21. package/dist/modules/dynamic/renderer.d.ts +4 -0
  22. package/dist/modules/dynamic/renderer.d.ts.map +1 -0
  23. package/dist/modules/dynamic/types.d.ts +4 -0
  24. package/dist/modules/dynamic/types.d.ts.map +1 -0
  25. package/dist/renderer.d.ts +2 -1
  26. package/dist/renderer.d.ts.map +1 -1
  27. package/dist/renderer.mjs +3 -1
  28. package/dist/style/alert.css +1 -1
  29. package/dist/style/code-block.css +1 -1
  30. package/dist/style/code-snippet.css +1 -1
  31. package/dist/style/embed.css +1 -1
  32. package/dist/style/image.css +1 -1
  33. package/dist/style/mermaid.css +1 -1
  34. package/dist/style/poll.css +1 -1
  35. package/dist/style/video.css +1 -1
  36. package/dist/style.css +8 -8
  37. package/package.json +35 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haklex/rich-compose",
3
- "version": "0.23.0",
3
+ "version": "0.25.0",
4
4
  "description": "Compose primitives for haklex rich content renderers — Gundam-style assembly of Lexical nodes, sync/lazy renderers, and Provider stacks.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -153,6 +153,14 @@
153
153
  "import": "./dist/modules/excalidraw/node.mjs",
154
154
  "types": "./dist/modules/excalidraw/node.d.ts"
155
155
  },
156
+ "./modules/dynamic": {
157
+ "import": "./dist/modules/dynamic/index.mjs",
158
+ "types": "./dist/modules/dynamic/index.d.ts"
159
+ },
160
+ "./modules/dynamic/node": {
161
+ "import": "./dist/modules/dynamic/node.mjs",
162
+ "types": "./dist/modules/dynamic/node.d.ts"
163
+ },
156
164
  "./modules/nested-doc": {
157
165
  "import": "./dist/modules/nested-doc/index.mjs",
158
166
  "types": "./dist/modules/nested-doc/index.d.ts"
@@ -201,6 +209,10 @@
201
209
  "import": "./dist/modules/excalidraw/edit.mjs",
202
210
  "types": "./dist/modules/excalidraw/edit.d.ts"
203
211
  },
212
+ "./modules/dynamic/edit": {
213
+ "import": "./dist/modules/dynamic/edit.mjs",
214
+ "types": "./dist/modules/dynamic/edit.d.ts"
215
+ },
204
216
  "./modules/gallery/edit": {
205
217
  "import": "./dist/modules/gallery/edit.mjs",
206
218
  "types": "./dist/modules/gallery/edit.d.ts"
@@ -261,25 +273,26 @@
261
273
  ],
262
274
  "dependencies": {
263
275
  "@lexical/headless": "^0.45.0",
264
- "@haklex/rich-ext-chat": "0.23.0",
265
- "@haklex/rich-ext-code-snippet": "0.23.0",
266
- "@haklex/rich-ext-embed": "0.23.0",
267
- "@haklex/rich-ext-excalidraw": "0.23.0",
268
- "@haklex/rich-ext-nested-doc": "0.23.0",
269
- "@haklex/rich-ext-gallery": "0.23.0",
270
- "@haklex/rich-renderer-banner": "0.23.0",
271
- "@haklex/rich-litexml": "0.23.0",
272
- "@haklex/rich-renderer-alert": "0.23.0",
273
- "@haklex/rich-ext-poll": "0.23.0",
274
- "@haklex/rich-renderer-codeblock": "0.23.0",
275
- "@haklex/rich-renderer-image": "0.23.0",
276
- "@haklex/rich-renderer-linkcard": "0.23.0",
277
- "@haklex/rich-renderer-katex": "0.23.0",
278
- "@haklex/rich-renderer-mermaid": "0.23.0",
279
- "@haklex/rich-renderer-mention": "0.23.0",
280
- "@haklex/rich-renderer-ruby": "0.23.0",
281
- "@haklex/rich-renderer-video": "0.23.0",
282
- "@haklex/rich-style-token": "0.23.0"
276
+ "@haklex/rich-ext-chat": "0.25.0",
277
+ "@haklex/rich-ext-excalidraw": "0.25.0",
278
+ "@haklex/rich-ext-dynamic": "0.25.0",
279
+ "@haklex/rich-ext-code-snippet": "0.25.0",
280
+ "@haklex/rich-ext-embed": "0.25.0",
281
+ "@haklex/rich-ext-poll": "0.25.0",
282
+ "@haklex/rich-litexml": "0.25.0",
283
+ "@haklex/rich-ext-nested-doc": "0.25.0",
284
+ "@haklex/rich-renderer-banner": "0.25.0",
285
+ "@haklex/rich-ext-gallery": "0.25.0",
286
+ "@haklex/rich-renderer-katex": "0.25.0",
287
+ "@haklex/rich-renderer-image": "0.25.0",
288
+ "@haklex/rich-renderer-codeblock": "0.25.0",
289
+ "@haklex/rich-renderer-linkcard": "0.25.0",
290
+ "@haklex/rich-renderer-alert": "0.25.0",
291
+ "@haklex/rich-renderer-video": "0.25.0",
292
+ "@haklex/rich-renderer-mention": "0.25.0",
293
+ "@haklex/rich-style-token": "0.25.0",
294
+ "@haklex/rich-renderer-ruby": "0.25.0",
295
+ "@haklex/rich-renderer-mermaid": "0.25.0"
283
296
  },
284
297
  "devDependencies": {
285
298
  "@lexical/react": "^0.45.0",
@@ -295,7 +308,7 @@
295
308
  "unplugin-dts": "^1.0.1",
296
309
  "vite": "^8.0.14",
297
310
  "vitest": "^4.1.7",
298
- "@haklex/rich-editor": "0.23.0"
311
+ "@haklex/rich-editor": "0.25.0"
299
312
  },
300
313
  "peerDependencies": {
301
314
  "@lexical/react": "^0.45.0",
@@ -303,7 +316,7 @@
303
316
  "lucide-react": "^1.0.0",
304
317
  "react": ">=19",
305
318
  "react-dom": ">=19",
306
- "@haklex/rich-editor": "0.23.0"
319
+ "@haklex/rich-editor": "0.25.0"
307
320
  },
308
321
  "publishConfig": {
309
322
  "access": "public"