@lls/vivi 24.37.0-e2a6b625 → 24.37.0-e4928d15
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/lib/assets/vivi.css +222 -222
- package/lib/builttypes/vivi/src/components/Alert.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/Audio.d.ts +5 -0
- package/lib/builttypes/vivi/src/components/HighlightedArea.d.ts +8 -0
- package/lib/builttypes/vivi/src/components/Rive.d.ts +11 -0
- package/lib/builttypes/vivi/src/components/Video.d.ts +5 -0
- package/lib/builttypes/vivi/src/components/ViewImage.d.ts +9 -0
- package/lib/builttypes/vivi/src/components/core/Document.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/core/DocumentHtml.d.ts +11 -0
- package/lib/builttypes/vivi/src/components/core/DocumentToolbar.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/core/ErrorBoundary.d.ts +24 -0
- package/lib/builttypes/vivi/src/components/core/editor/CodemirrorEditor.d.ts +3 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditViewerMd.d.ts +20 -0
- package/lib/builttypes/vivi/src/components/core/editor/Editor.d.ts +14 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorHeaderModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorListModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorMathsModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorOrderedListModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorQuestionModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorSsr.d.ts +2 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorStampModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorTableModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorTitleModal.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorToolbar.d.ts +4 -0
- package/lib/builttypes/vivi/src/components/core/editor/EditorView.d.ts +19 -0
- package/lib/builttypes/vivi/src/components/core/editor/MetadataEditor.d.ts +13 -0
- package/lib/builttypes/vivi/src/components/core/viewer/ViewerMd.d.ts +37 -0
- package/lib/builttypes/vivi/src/components/lazy/CodemirrorEditor.browser.d.ts +12 -0
- package/lib/builttypes/vivi/src/components/lazy/index.editor.d.ts +16 -0
- package/lib/builttypes/vivi/src/components/primarygrid/AudioWord.d.ts +8 -0
- package/lib/builttypes/vivi/src/components/primarygrid/Correction.d.ts +9 -0
- package/lib/builttypes/vivi/src/components/primarygrid/DefinitionWord.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/primarygrid/EditGrid.d.ts +6 -0
- package/lib/builttypes/vivi/src/components/primarygrid/EditZoneModal.d.ts +19 -0
- package/lib/builttypes/vivi/src/components/primarygrid/FullscreenDocument.d.ts +8 -0
- package/lib/builttypes/vivi/src/components/primarygrid/Grid.d.ts +6 -0
- package/lib/builttypes/vivi/src/components/primarygrid/PicWord.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/primarygrid/SubZone.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/primarygrid/ViewGrid.d.ts +6 -0
- package/lib/builttypes/vivi/src/components/primarygrid/ZoneCoordinates.d.ts +8 -0
- package/lib/builttypes/vivi/src/components/primarygrid/ZoneMaker.d.ts +16 -0
- package/lib/builttypes/vivi/src/components/primarygrid/ZoomedPicture.d.ts +12 -0
- package/lib/builttypes/vivi/src/components/primarygrid/sortable/SortableGrid.d.ts +10 -0
- package/lib/builttypes/vivi/src/components/primarygrid/sortable/SortableItem.d.ts +7 -0
- package/lib/builttypes/vivi/src/config/development.d.ts +6 -0
- package/lib/builttypes/vivi/src/config/index.d.ts +6 -0
- package/lib/builttypes/vivi/src/config/preproduction.d.ts +6 -0
- package/lib/builttypes/vivi/src/config/production.d.ts +6 -0
- package/lib/builttypes/vivi/src/config/test.d.ts +6 -0
- package/lib/builttypes/vivi/src/constants/config.d.ts +1 -0
- package/lib/builttypes/vivi/src/constants/grid.d.ts +3 -0
- package/lib/builttypes/vivi/src/constants/index.d.ts +5 -0
- package/lib/builttypes/vivi/src/constants/template.d.ts +4 -0
- package/lib/builttypes/vivi/src/constants/zoneElements.d.ts +8 -0
- package/lib/builttypes/vivi/src/constants/zoneMaker.d.ts +35 -0
- package/lib/builttypes/vivi/src/hooks/useClientMounted.d.ts +2 -0
- package/lib/builttypes/vivi/src/hooks/useDragAndResize.d.ts +21 -0
- package/lib/builttypes/vivi/src/hooks/useEditor.d.ts +13 -0
- package/lib/builttypes/vivi/src/hooks/usePictureSource.d.ts +13 -0
- package/lib/builttypes/vivi/src/hooks/useScroll.d.ts +7 -0
- package/lib/builttypes/vivi/src/index.d.ts +2 -0
- package/lib/builttypes/vivi/src/index.editor.d.ts +3 -0
- package/lib/builttypes/vivi/src/index.viewer.d.ts +4 -0
- package/lib/builttypes/vivi/src/store/documentPropsSlice.d.ts +16 -0
- package/lib/builttypes/vivi/src/store/index.d.ts +15 -0
- package/lib/builttypes/vivi/src/store/mdRendererPropsSlice.d.ts +48 -0
- package/lib/builttypes/vivi/src/utils/css-bare.d.mts +2 -0
- package/lib/builttypes/vivi/src/utils/dom.d.ts +6 -0
- package/lib/builttypes/vivi/src/utils/layoutTemplate.d.ts +2 -0
- package/lib/builttypes/vivi/src/utils/lazy.d.ts +9 -0
- package/lib/builttypes/vivi/src/utils/memo.d.ts +14 -0
- package/lib/builttypes/vivi/src/utils/mode.d.ts +3 -0
- package/lib/builttypes/vivi/src/utils/string.d.ts +5 -0
- package/lib/builttypes/vivi/src/utils/table.d.ts +4 -0
- package/lib/builttypes/vivi/src/utils/template.d.ts +61 -0
- package/lib/builttypes/vivi/src/utils/url.d.ts +1 -0
- package/lib/builttypes/vivi/src/utils/zoneMaker.d.ts +45 -0
- package/lib/index.js +237 -237
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lls/vivi",
|
|
3
|
-
"version": "24.37.0-
|
|
3
|
+
"version": "24.37.0-e4928d15",
|
|
4
4
|
"description": "renderer de page primaire de manuel",
|
|
5
5
|
"author": "",
|
|
6
6
|
"exports": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@types/react-dom": "18.3.1",
|
|
46
46
|
"@vitejs/plugin-react": "5.1.1",
|
|
47
47
|
"axios": "1.13.2",
|
|
48
|
-
"esbuild": "0.27.
|
|
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",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"typescript": "5.9.3",
|
|
58
58
|
"vite": "npm:rolldown-vite@7.2.10",
|
|
59
59
|
"vite-tsconfig-paths": "5.1.4",
|
|
60
|
-
"@lls/lls-kit": "24.37.0-
|
|
61
|
-
"@lls/utils": "24.37.0-
|
|
62
|
-
"@lls/vitescripts": "24.37.0-
|
|
60
|
+
"@lls/lls-kit": "24.37.0-e4928d15",
|
|
61
|
+
"@lls/utils": "24.37.0-e4928d15",
|
|
62
|
+
"@lls/vitescripts": "24.37.0-e4928d15"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@dnd-kit/core": "6.3.1",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|
|
92
92
|
"start": "pnpm ladle serve",
|
|
93
|
-
"dts": "pnpm
|
|
93
|
+
"dts": "pnpm tsc --project tsconfig.production.json",
|
|
94
94
|
"build": "NODE_ENV=production node build.mjs",
|
|
95
95
|
"deploy-ladle": "PUBLISH=1 pnpm ladle build",
|
|
96
96
|
"deploy-ladle-pr": "pnpm ladle build && s5cmd sync --delete --acl public-read --destination-region eu-west-1 'dist/*' s3://build.lelivrescolaire.fr/storybook/vivi-pr-$PR_NUMBER/",
|