@lls/vivi 24.35.0 → 24.36.0-15a0bd28

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 (79) hide show
  1. package/lib/assets/vivi.css +222 -222
  2. package/lib/builttypes/vivi/src/components/Alert.d.ts +4 -0
  3. package/lib/builttypes/vivi/src/components/Audio.d.ts +5 -0
  4. package/lib/builttypes/vivi/src/components/HighlightedArea.d.ts +8 -0
  5. package/lib/builttypes/vivi/src/components/Rive.d.ts +11 -0
  6. package/lib/builttypes/vivi/src/components/Video.d.ts +5 -0
  7. package/lib/builttypes/vivi/src/components/ViewImage.d.ts +9 -0
  8. package/lib/builttypes/vivi/src/components/core/Document.d.ts +10 -0
  9. package/lib/builttypes/vivi/src/components/core/DocumentHtml.d.ts +11 -0
  10. package/lib/builttypes/vivi/src/components/core/DocumentToolbar.d.ts +10 -0
  11. package/lib/builttypes/vivi/src/components/core/ErrorBoundary.d.ts +24 -0
  12. package/lib/builttypes/vivi/src/components/core/editor/CodemirrorEditor.d.ts +3 -0
  13. package/lib/builttypes/vivi/src/components/core/editor/EditViewerMd.d.ts +20 -0
  14. package/lib/builttypes/vivi/src/components/core/editor/Editor.d.ts +14 -0
  15. package/lib/builttypes/vivi/src/components/core/editor/EditorHeaderModal.d.ts +4 -0
  16. package/lib/builttypes/vivi/src/components/core/editor/EditorListModal.d.ts +4 -0
  17. package/lib/builttypes/vivi/src/components/core/editor/EditorMathsModal.d.ts +4 -0
  18. package/lib/builttypes/vivi/src/components/core/editor/EditorOrderedListModal.d.ts +4 -0
  19. package/lib/builttypes/vivi/src/components/core/editor/EditorQuestionModal.d.ts +4 -0
  20. package/lib/builttypes/vivi/src/components/core/editor/EditorSsr.d.ts +2 -0
  21. package/lib/builttypes/vivi/src/components/core/editor/EditorStampModal.d.ts +4 -0
  22. package/lib/builttypes/vivi/src/components/core/editor/EditorTableModal.d.ts +4 -0
  23. package/lib/builttypes/vivi/src/components/core/editor/EditorTitleModal.d.ts +4 -0
  24. package/lib/builttypes/vivi/src/components/core/editor/EditorToolbar.d.ts +4 -0
  25. package/lib/builttypes/vivi/src/components/core/editor/EditorView.d.ts +19 -0
  26. package/lib/builttypes/vivi/src/components/core/editor/MetadataEditor.d.ts +13 -0
  27. package/lib/builttypes/vivi/src/components/core/viewer/ViewerMd.d.ts +37 -0
  28. package/lib/builttypes/vivi/src/components/lazy/CodemirrorEditor.browser.d.ts +12 -0
  29. package/lib/builttypes/vivi/src/components/lazy/index.editor.d.ts +16 -0
  30. package/lib/builttypes/vivi/src/components/primarygrid/AudioWord.d.ts +8 -0
  31. package/lib/builttypes/vivi/src/components/primarygrid/Correction.d.ts +9 -0
  32. package/lib/builttypes/vivi/src/components/primarygrid/DefinitionWord.d.ts +10 -0
  33. package/lib/builttypes/vivi/src/components/primarygrid/EditGrid.d.ts +6 -0
  34. package/lib/builttypes/vivi/src/components/primarygrid/EditZoneModal.d.ts +19 -0
  35. package/lib/builttypes/vivi/src/components/primarygrid/FullscreenDocument.d.ts +8 -0
  36. package/lib/builttypes/vivi/src/components/primarygrid/Grid.d.ts +6 -0
  37. package/lib/builttypes/vivi/src/components/primarygrid/PicWord.d.ts +10 -0
  38. package/lib/builttypes/vivi/src/components/primarygrid/SubZone.d.ts +10 -0
  39. package/lib/builttypes/vivi/src/components/primarygrid/ViewGrid.d.ts +6 -0
  40. package/lib/builttypes/vivi/src/components/primarygrid/ZoneCoordinates.d.ts +8 -0
  41. package/lib/builttypes/vivi/src/components/primarygrid/ZoneMaker.d.ts +16 -0
  42. package/lib/builttypes/vivi/src/components/primarygrid/ZoomedPicture.d.ts +12 -0
  43. package/lib/builttypes/vivi/src/components/primarygrid/sortable/SortableGrid.d.ts +10 -0
  44. package/lib/builttypes/vivi/src/components/primarygrid/sortable/SortableItem.d.ts +7 -0
  45. package/lib/builttypes/vivi/src/config/development.d.ts +6 -0
  46. package/lib/builttypes/vivi/src/config/index.d.ts +6 -0
  47. package/lib/builttypes/vivi/src/config/preproduction.d.ts +6 -0
  48. package/lib/builttypes/vivi/src/config/production.d.ts +6 -0
  49. package/lib/builttypes/vivi/src/config/test.d.ts +6 -0
  50. package/lib/builttypes/vivi/src/constants/config.d.ts +1 -0
  51. package/lib/builttypes/vivi/src/constants/grid.d.ts +3 -0
  52. package/lib/builttypes/vivi/src/constants/index.d.ts +5 -0
  53. package/lib/builttypes/vivi/src/constants/template.d.ts +4 -0
  54. package/lib/builttypes/vivi/src/constants/zoneElements.d.ts +8 -0
  55. package/lib/builttypes/vivi/src/constants/zoneMaker.d.ts +35 -0
  56. package/lib/builttypes/vivi/src/hooks/useClientMounted.d.ts +2 -0
  57. package/lib/builttypes/vivi/src/hooks/useDragAndResize.d.ts +21 -0
  58. package/lib/builttypes/vivi/src/hooks/useEditor.d.ts +13 -0
  59. package/lib/builttypes/vivi/src/hooks/usePictureSource.d.ts +13 -0
  60. package/lib/builttypes/vivi/src/hooks/useScroll.d.ts +7 -0
  61. package/lib/builttypes/vivi/src/index.d.ts +2 -0
  62. package/lib/builttypes/vivi/src/index.editor.d.ts +3 -0
  63. package/lib/builttypes/vivi/src/index.viewer.d.ts +4 -0
  64. package/lib/builttypes/vivi/src/store/documentPropsSlice.d.ts +16 -0
  65. package/lib/builttypes/vivi/src/store/index.d.ts +15 -0
  66. package/lib/builttypes/vivi/src/store/mdRendererPropsSlice.d.ts +48 -0
  67. package/lib/builttypes/vivi/src/utils/css-bare.d.mts +2 -0
  68. package/lib/builttypes/vivi/src/utils/dom.d.ts +6 -0
  69. package/lib/builttypes/vivi/src/utils/layoutTemplate.d.ts +2 -0
  70. package/lib/builttypes/vivi/src/utils/lazy.d.ts +9 -0
  71. package/lib/builttypes/vivi/src/utils/memo.d.ts +14 -0
  72. package/lib/builttypes/vivi/src/utils/mode.d.ts +3 -0
  73. package/lib/builttypes/vivi/src/utils/string.d.ts +5 -0
  74. package/lib/builttypes/vivi/src/utils/table.d.ts +4 -0
  75. package/lib/builttypes/vivi/src/utils/template.d.ts +61 -0
  76. package/lib/builttypes/vivi/src/utils/url.d.ts +1 -0
  77. package/lib/builttypes/vivi/src/utils/zoneMaker.d.ts +45 -0
  78. package/lib/index.js +251 -257
  79. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/vivi",
3
- "version": "24.35.0",
3
+ "version": "24.36.0-15a0bd28",
4
4
  "description": "renderer de page primaire de manuel",
5
5
  "author": "",
6
6
  "exports": {
@@ -32,20 +32,20 @@
32
32
  "@biomejs/biome": "1.9.4",
33
33
  "@floating-ui/react": "0.26.24",
34
34
  "@happy-dom/global-registrator": "15.11.0",
35
- "@ladle/react": "5.1.0",
35
+ "@ladle/react": "5.1.1",
36
36
  "@playwright/test": "1.56.0",
37
37
  "@rive-app/react-canvas": "4.23.4",
38
38
  "@testing-library/react": "16.3.0",
39
39
  "@types/axios": "0.14.4",
40
- "@types/codemirror": "5.60.16",
40
+ "@types/codemirror": "5.60.17",
41
41
  "@types/domhandler": "2.4.5",
42
- "@types/lodash": "4.17.20",
42
+ "@types/lodash": "4.17.21",
43
43
  "@types/node": "22.15.30",
44
44
  "@types/react": "18.3.12",
45
45
  "@types/react-dom": "18.3.1",
46
46
  "@vitejs/plugin-react": "5.1.1",
47
- "axios": "1.12.2",
48
- "esbuild": "0.27.0",
47
+ "axios": "1.13.2",
48
+ "esbuild": "0.27.1",
49
49
  "get-port": "7.1.0",
50
50
  "happy-dom": "15.11.1",
51
51
  "jsdom": "25.0.1",
@@ -55,11 +55,11 @@
55
55
  "react-dom": "18.3.1",
56
56
  "sharp": "0.33.5",
57
57
  "typescript": "5.8.3",
58
- "vite": "npm:rolldown-vite@7.2.7",
58
+ "vite": "npm:rolldown-vite@7.2.10",
59
59
  "vite-tsconfig-paths": "5.1.4",
60
- "@lls/lls-kit": "24.35.0",
61
- "@lls/utils": "24.35.0",
62
- "@lls/vitescripts": "24.35.0"
60
+ "@lls/lls-kit": "24.36.0-15a0bd28",
61
+ "@lls/utils": "24.36.0-15a0bd28",
62
+ "@lls/vitescripts": "24.36.0-15a0bd28"
63
63
  },
64
64
  "dependencies": {
65
65
  "@dnd-kit/core": "6.3.1",
@@ -68,7 +68,7 @@
68
68
  "codemirror": "5.65.18",
69
69
  "html-to-react": "1.7.0",
70
70
  "nanoid": "5.1.6",
71
- "react-player": "2.16.0",
71
+ "react-player": "3.4.0",
72
72
  "react-select": "5.10.2",
73
73
  "xml-formatter": "3.6.7",
74
74
  "zustand": "4.5.4"