@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/lib/index.js CHANGED
@@ -372,19 +372,19 @@ var init_constants = __esm({
372
372
  }
373
373
  });
374
374
 
375
- // css-modules:css-modules://FNdKoYEiF1zySB6iGra5WsT46pjPevD1DyMQHdG6uRQ.css
376
- var init_FNdKoYEiF1zySB6iGra5WsT46pjPevD1DyMQHdG6uRQ = __esm({
377
- "css-modules:css-modules://FNdKoYEiF1zySB6iGra5WsT46pjPevD1DyMQHdG6uRQ.css"() {
375
+ // css-modules:css-modules://D35xzBN0bqxNypjynlJzmN3JqOc7Z8yRAG67hGBULtU.css
376
+ var init_D35xzBN0bqxNypjynlJzmN3JqOc7Z8yRAG67hGBULtU = __esm({
377
+ "css-modules:css-modules://D35xzBN0bqxNypjynlJzmN3JqOc7Z8yRAG67hGBULtU.css"() {
378
378
  }
379
379
  });
380
380
 
381
- // tmp_esbuild1764780799245/_src_components_lazy_CodemirrorEditor.browser.module.css
381
+ // tmp_esbuild1766162304688/_src_components_lazy_CodemirrorEditor.browser.module.css
382
382
  var src_components_lazy_CodemirrorEditor_browser_default;
383
383
  var init_src_components_lazy_CodemirrorEditor_browser = __esm({
384
- "tmp_esbuild1764780799245/_src_components_lazy_CodemirrorEditor.browser.module.css"() {
384
+ "tmp_esbuild1766162304688/_src_components_lazy_CodemirrorEditor.browser.module.css"() {
385
385
  "use strict";
386
- init_FNdKoYEiF1zySB6iGra5WsT46pjPevD1DyMQHdG6uRQ();
387
- src_components_lazy_CodemirrorEditor_browser_default = { "codemirrorWrapper": "vv-6lY_Oq-codemirrorWrapper" };
386
+ init_D35xzBN0bqxNypjynlJzmN3JqOc7Z8yRAG67hGBULtU();
387
+ src_components_lazy_CodemirrorEditor_browser_default = { "codemirrorWrapper": "vv-49JodG-codemirrorWrapper" };
388
388
  }
389
389
  });
390
390
 
@@ -536,19 +536,19 @@ var init_CodemirrorEditor = __esm({
536
536
  }
537
537
  });
538
538
 
539
- // css-modules:css-modules://VYM_rWveWn0yFCaKOdOJeSls06GHWqxWSZ9RKL5APvs.css
540
- var init_VYM_rWveWn0yFCaKOdOJeSls06GHWqxWSZ9RKL5APvs = __esm({
541
- "css-modules:css-modules://VYM_rWveWn0yFCaKOdOJeSls06GHWqxWSZ9RKL5APvs.css"() {
539
+ // css-modules:css-modules://mqqmEgj1_guGxPE5Mq-OAXwrMQZkCbk38I6a69qphB4.css
540
+ var init_mqqmEgj1_guGxPE5Mq_OAXwrMQZkCbk38I6a69qphB4 = __esm({
541
+ "css-modules:css-modules://mqqmEgj1_guGxPE5Mq-OAXwrMQZkCbk38I6a69qphB4.css"() {
542
542
  }
543
543
  });
544
544
 
545
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorHeaderModal.module.css
545
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorHeaderModal.module.css
546
546
  var src_components_core_editor_EditorHeaderModal_default;
547
547
  var init_src_components_core_editor_EditorHeaderModal = __esm({
548
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorHeaderModal.module.css"() {
548
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorHeaderModal.module.css"() {
549
549
  "use strict";
550
- init_VYM_rWveWn0yFCaKOdOJeSls06GHWqxWSZ9RKL5APvs();
551
- src_components_core_editor_EditorHeaderModal_default = { "header": "vv-Zg7KeG-header" };
550
+ init_mqqmEgj1_guGxPE5Mq_OAXwrMQZkCbk38I6a69qphB4();
551
+ src_components_core_editor_EditorHeaderModal_default = { "header": "vv-5uKa7q-header" };
552
552
  }
553
553
  });
554
554
 
@@ -660,19 +660,19 @@ var init_EditorHeaderModal2 = __esm({
660
660
  }
661
661
  });
662
662
 
663
- // css-modules:css-modules://4zlXKef-RZVPHGsZnrQ-m8XUsjLVxVh6O5jouIYiLV4.css
664
- var init_zlXKef_RZVPHGsZnrQ_m8XUsjLVxVh6O5jouIYiLV4 = __esm({
665
- "css-modules:css-modules://4zlXKef-RZVPHGsZnrQ-m8XUsjLVxVh6O5jouIYiLV4.css"() {
663
+ // css-modules:css-modules://kya7ESnMQCaX6NKWZDPXyhowpOib-6aA0Z4Lzqbs25E.css
664
+ var init_kya7ESnMQCaX6NKWZDPXyhowpOib_6aA0Z4Lzqbs25E = __esm({
665
+ "css-modules:css-modules://kya7ESnMQCaX6NKWZDPXyhowpOib-6aA0Z4Lzqbs25E.css"() {
666
666
  }
667
667
  });
668
668
 
669
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorListModal.module.css
669
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorListModal.module.css
670
670
  var src_components_core_editor_EditorListModal_default;
671
671
  var init_src_components_core_editor_EditorListModal = __esm({
672
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorListModal.module.css"() {
672
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorListModal.module.css"() {
673
673
  "use strict";
674
- init_zlXKef_RZVPHGsZnrQ_m8XUsjLVxVh6O5jouIYiLV4();
675
- src_components_core_editor_EditorListModal_default = { "ul": "vv-iRHnhq-ul" };
674
+ init_kya7ESnMQCaX6NKWZDPXyhowpOib_6aA0Z4Lzqbs25E();
675
+ src_components_core_editor_EditorListModal_default = { "ul": "vv-pkp-_q-ul" };
676
676
  }
677
677
  });
678
678
 
@@ -707,19 +707,19 @@ var init_EditorListModal2 = __esm({
707
707
  }
708
708
  });
709
709
 
710
- // css-modules:css-modules://lMHu2PqfOP9uoSgKyFfRxL4sachooFfu4f8MDu6x9aE.css
711
- var init_lMHu2PqfOP9uoSgKyFfRxL4sachooFfu4f8MDu6x9aE = __esm({
712
- "css-modules:css-modules://lMHu2PqfOP9uoSgKyFfRxL4sachooFfu4f8MDu6x9aE.css"() {
710
+ // css-modules:css-modules://Jkk7LOwXbRPBrUENdwTgZUzjkPh22OVyJ6sclgZX_Fw.css
711
+ var init_Jkk7LOwXbRPBrUENdwTgZUzjkPh22OVyJ6sclgZX_Fw = __esm({
712
+ "css-modules:css-modules://Jkk7LOwXbRPBrUENdwTgZUzjkPh22OVyJ6sclgZX_Fw.css"() {
713
713
  }
714
714
  });
715
715
 
716
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorMathsModal.module.css
716
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorMathsModal.module.css
717
717
  var src_components_core_editor_EditorMathsModal_default;
718
718
  var init_src_components_core_editor_EditorMathsModal = __esm({
719
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorMathsModal.module.css"() {
719
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorMathsModal.module.css"() {
720
720
  "use strict";
721
- init_lMHu2PqfOP9uoSgKyFfRxL4sachooFfu4f8MDu6x9aE();
722
- src_components_core_editor_EditorMathsModal_default = { "mathsElement": "vv-YsA88W-mathsElement" };
721
+ init_Jkk7LOwXbRPBrUENdwTgZUzjkPh22OVyJ6sclgZX_Fw();
722
+ src_components_core_editor_EditorMathsModal_default = { "mathsElement": "vv-DyYh3G-mathsElement" };
723
723
  }
724
724
  });
725
725
 
@@ -762,19 +762,19 @@ var init_EditorMathsModal2 = __esm({
762
762
  }
763
763
  });
764
764
 
765
- // css-modules:css-modules://vJhH5QePt0Yil3p6tddBQUuo21LIUvauqkI8A_k_-Es.css
766
- var init_vJhH5QePt0Yil3p6tddBQUuo21LIUvauqkI8A_k_Es = __esm({
767
- "css-modules:css-modules://vJhH5QePt0Yil3p6tddBQUuo21LIUvauqkI8A_k_-Es.css"() {
765
+ // css-modules:css-modules://YGgvVT3m_fnU6TiYQ8ysRR666UMNQp-nZWLUdoNnaU8.css
766
+ var init_YGgvVT3m_fnU6TiYQ8ysRR666UMNQp_nZWLUdoNnaU8 = __esm({
767
+ "css-modules:css-modules://YGgvVT3m_fnU6TiYQ8ysRR666UMNQp-nZWLUdoNnaU8.css"() {
768
768
  }
769
769
  });
770
770
 
771
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorOrderedListModal.module.css
771
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorOrderedListModal.module.css
772
772
  var src_components_core_editor_EditorOrderedListModal_default;
773
773
  var init_src_components_core_editor_EditorOrderedListModal = __esm({
774
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorOrderedListModal.module.css"() {
774
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorOrderedListModal.module.css"() {
775
775
  "use strict";
776
- init_vJhH5QePt0Yil3p6tddBQUuo21LIUvauqkI8A_k_Es();
777
- src_components_core_editor_EditorOrderedListModal_default = { "ol": "vv-QXaKeq-ol" };
776
+ init_YGgvVT3m_fnU6TiYQ8ysRR666UMNQp_nZWLUdoNnaU8();
777
+ src_components_core_editor_EditorOrderedListModal_default = { "ol": "vv-G3dKja-ol" };
778
778
  }
779
779
  });
780
780
 
@@ -831,19 +831,19 @@ var init_EditorOrderedListModal2 = __esm({
831
831
  }
832
832
  });
833
833
 
834
- // css-modules:css-modules://6XVIGMVFh7ukX-l4YCxV3O3PsUzVc60h-J_kr-qWrSs.css
835
- var init_XVIGMVFh7ukX_l4YCxV3O3PsUzVc60h_J_kr_qWrSs = __esm({
836
- "css-modules:css-modules://6XVIGMVFh7ukX-l4YCxV3O3PsUzVc60h-J_kr-qWrSs.css"() {
834
+ // css-modules:css-modules://YEvTEtRY_rENMUYHpvZppg3YNJ7OzWw96bZjvvuRdb4.css
835
+ var init_YEvTEtRY_rENMUYHpvZppg3YNJ7OzWw96bZjvvuRdb4 = __esm({
836
+ "css-modules:css-modules://YEvTEtRY_rENMUYHpvZppg3YNJ7OzWw96bZjvvuRdb4.css"() {
837
837
  }
838
838
  });
839
839
 
840
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorQuestionModal.module.css
840
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorQuestionModal.module.css
841
841
  var src_components_core_editor_EditorQuestionModal_default;
842
842
  var init_src_components_core_editor_EditorQuestionModal = __esm({
843
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorQuestionModal.module.css"() {
843
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorQuestionModal.module.css"() {
844
844
  "use strict";
845
- init_XVIGMVFh7ukX_l4YCxV3O3PsUzVc60h_J_kr_qWrSs();
846
- src_components_core_editor_EditorQuestionModal_default = { "question": "vv-6XGW-G-question" };
845
+ init_YEvTEtRY_rENMUYHpvZppg3YNJ7OzWw96bZjvvuRdb4();
846
+ src_components_core_editor_EditorQuestionModal_default = { "question": "vv-bK-bsq-question" };
847
847
  }
848
848
  });
849
849
 
@@ -909,19 +909,19 @@ var init_EditorQuestionModal2 = __esm({
909
909
  }
910
910
  });
911
911
 
912
- // css-modules:css-modules://x8v_yATXDKzdZ0i24duFFd22IB9_csnVIOXvFW288w8.css
913
- var init_x8v_yATXDKzdZ0i24duFFd22IB9_csnVIOXvFW288w8 = __esm({
914
- "css-modules:css-modules://x8v_yATXDKzdZ0i24duFFd22IB9_csnVIOXvFW288w8.css"() {
912
+ // css-modules:css-modules://a3K2f2nfOykh1iJdB-IsAthhGupvUwEMKBmtUg40vNI.css
913
+ var init_a3K2f2nfOykh1iJdB_IsAthhGupvUwEMKBmtUg40vNI = __esm({
914
+ "css-modules:css-modules://a3K2f2nfOykh1iJdB-IsAthhGupvUwEMKBmtUg40vNI.css"() {
915
915
  }
916
916
  });
917
917
 
918
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorStampModal.module.css
918
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorStampModal.module.css
919
919
  var src_components_core_editor_EditorStampModal_default;
920
920
  var init_src_components_core_editor_EditorStampModal = __esm({
921
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorStampModal.module.css"() {
921
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorStampModal.module.css"() {
922
922
  "use strict";
923
- init_x8v_yATXDKzdZ0i24duFFd22IB9_csnVIOXvFW288w8();
924
- src_components_core_editor_EditorStampModal_default = { "stamp": "vv-1h6vtq-stamp" };
923
+ init_a3K2f2nfOykh1iJdB_IsAthhGupvUwEMKBmtUg40vNI();
924
+ src_components_core_editor_EditorStampModal_default = { "stamp": "vv-fryuCG-stamp" };
925
925
  }
926
926
  });
927
927
 
@@ -983,19 +983,19 @@ var init_table = __esm({
983
983
  }
984
984
  });
985
985
 
986
- // css-modules:css-modules://9PZAg_4Uk3py_mjDxTUjF5WlIpmlrATfJzbidWdeaE4.css
987
- var init_PZAg_4Uk3py_mjDxTUjF5WlIpmlrATfJzbidWdeaE4 = __esm({
988
- "css-modules:css-modules://9PZAg_4Uk3py_mjDxTUjF5WlIpmlrATfJzbidWdeaE4.css"() {
986
+ // css-modules:css-modules://F2B4PDh_urYZHkCUtXuCYw1L9CapGX6Vdhih44GPQzs.css
987
+ var init_F2B4PDh_urYZHkCUtXuCYw1L9CapGX6Vdhih44GPQzs = __esm({
988
+ "css-modules:css-modules://F2B4PDh_urYZHkCUtXuCYw1L9CapGX6Vdhih44GPQzs.css"() {
989
989
  }
990
990
  });
991
991
 
992
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorTableModal.module.css
992
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorTableModal.module.css
993
993
  var src_components_core_editor_EditorTableModal_default;
994
994
  var init_src_components_core_editor_EditorTableModal = __esm({
995
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorTableModal.module.css"() {
995
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorTableModal.module.css"() {
996
996
  "use strict";
997
- init_PZAg_4Uk3py_mjDxTUjF5WlIpmlrATfJzbidWdeaE4();
998
- src_components_core_editor_EditorTableModal_default = { "cell": "vv-dOt1EW-cell", "header": "vv-dOt1EW-header", "grid": "vv-dOt1EW-grid", "line": "vv-dOt1EW-line" };
997
+ init_F2B4PDh_urYZHkCUtXuCYw1L9CapGX6Vdhih44GPQzs();
998
+ src_components_core_editor_EditorTableModal_default = { "header": "vv-iG1w-a-header", "line": "vv-iG1w-a-line", "cell": "vv-iG1w-a-cell", "grid": "vv-iG1w-a-grid" };
999
999
  }
1000
1000
  });
1001
1001
 
@@ -1085,19 +1085,19 @@ var init_EditorTableModal2 = __esm({
1085
1085
  }
1086
1086
  });
1087
1087
 
1088
- // css-modules:css-modules://6CTZMjbiLEnF199aWKCF1ITnNUUyhTT9188-LFqW6FI.css
1089
- var init_CTZMjbiLEnF199aWKCF1ITnNUUyhTT9188_LFqW6FI = __esm({
1090
- "css-modules:css-modules://6CTZMjbiLEnF199aWKCF1ITnNUUyhTT9188-LFqW6FI.css"() {
1088
+ // css-modules:css-modules://-TOE3XS8UXeQyQ7ZrbiEWxSBFnuzcG91tmQ0t_pPHIQ.css
1089
+ var init_TOE3XS8UXeQyQ7ZrbiEWxSBFnuzcG91tmQ0t_pPHIQ = __esm({
1090
+ "css-modules:css-modules://-TOE3XS8UXeQyQ7ZrbiEWxSBFnuzcG91tmQ0t_pPHIQ.css"() {
1091
1091
  }
1092
1092
  });
1093
1093
 
1094
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorTitleModal.module.css
1094
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorTitleModal.module.css
1095
1095
  var src_components_core_editor_EditorTitleModal_default;
1096
1096
  var init_src_components_core_editor_EditorTitleModal = __esm({
1097
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorTitleModal.module.css"() {
1097
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorTitleModal.module.css"() {
1098
1098
  "use strict";
1099
- init_CTZMjbiLEnF199aWKCF1ITnNUUyhTT9188_LFqW6FI();
1100
- src_components_core_editor_EditorTitleModal_default = { "title": "vv-ng-nqW-title", "body2": "vv-ng-nqW-body2", "h3": "vv-ng-nqW-h3", "h1": "vv-ng-nqW-h1", "body3": "vv-ng-nqW-body3", "body1": "vv-ng-nqW-body1", "h4": "vv-ng-nqW-h4", "h2": "vv-ng-nqW-h2" };
1099
+ init_TOE3XS8UXeQyQ7ZrbiEWxSBFnuzcG91tmQ0t_pPHIQ();
1100
+ src_components_core_editor_EditorTitleModal_default = { "body1": "vv-5ynGPG-body1", "h1": "vv-5ynGPG-h1", "h2": "vv-5ynGPG-h2", "body3": "vv-5ynGPG-body3", "title": "vv-5ynGPG-title", "h4": "vv-5ynGPG-h4", "body2": "vv-5ynGPG-body2", "h3": "vv-5ynGPG-h3" };
1101
1101
  }
1102
1102
  });
1103
1103
 
@@ -1179,19 +1179,19 @@ var init_EditorTitleModal2 = __esm({
1179
1179
  }
1180
1180
  });
1181
1181
 
1182
- // css-modules:css-modules://-BJqA6FLHHhXoJKKCqBQjLI4EnUozYZ4fxl7gTTS2jQ.css
1183
- var init_BJqA6FLHHhXoJKKCqBQjLI4EnUozYZ4fxl7gTTS2jQ = __esm({
1184
- "css-modules:css-modules://-BJqA6FLHHhXoJKKCqBQjLI4EnUozYZ4fxl7gTTS2jQ.css"() {
1182
+ // css-modules:css-modules://q8ZP6g-PtOmYgl6TSHi3s8iBPUBRwSZt5aHoe4Sdg0M.css
1183
+ var init_q8ZP6g_PtOmYgl6TSHi3s8iBPUBRwSZt5aHoe4Sdg0M = __esm({
1184
+ "css-modules:css-modules://q8ZP6g-PtOmYgl6TSHi3s8iBPUBRwSZt5aHoe4Sdg0M.css"() {
1185
1185
  }
1186
1186
  });
1187
1187
 
1188
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorToolbar.module.css
1188
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorToolbar.module.css
1189
1189
  var src_components_core_editor_EditorToolbar_default;
1190
1190
  var init_src_components_core_editor_EditorToolbar = __esm({
1191
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorToolbar.module.css"() {
1191
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorToolbar.module.css"() {
1192
1192
  "use strict";
1193
- init_BJqA6FLHHhXoJKKCqBQjLI4EnUozYZ4fxl7gTTS2jQ();
1194
- src_components_core_editor_EditorToolbar_default = { "editorToolbar": "vv-Vipbeq-editorToolbar", "span": "vv-Vipbeq-span" };
1193
+ init_q8ZP6g_PtOmYgl6TSHi3s8iBPUBRwSZt5aHoe4Sdg0M();
1194
+ src_components_core_editor_EditorToolbar_default = { "editorToolbar": "vv-8KqQeW-editorToolbar", "span": "vv-8KqQeW-span" };
1195
1195
  }
1196
1196
  });
1197
1197
 
@@ -1436,19 +1436,19 @@ ${selectedText}
1436
1436
  }
1437
1437
  });
1438
1438
 
1439
- // css-modules:css-modules://pTCtgGAmc6Ie4K9e3MbCWBVRk-lyuU3r2blaUbSCiuQ.css
1440
- var init_pTCtgGAmc6Ie4K9e3MbCWBVRk_lyuU3r2blaUbSCiuQ = __esm({
1441
- "css-modules:css-modules://pTCtgGAmc6Ie4K9e3MbCWBVRk-lyuU3r2blaUbSCiuQ.css"() {
1439
+ // css-modules:css-modules://xKXTZN6pQevyMF-6YEx0TeSmcBHN2kYM-aQAp7gr5gc.css
1440
+ var init_xKXTZN6pQevyMF_6YEx0TeSmcBHN2kYM_aQAp7gr5gc = __esm({
1441
+ "css-modules:css-modules://xKXTZN6pQevyMF-6YEx0TeSmcBHN2kYM-aQAp7gr5gc.css"() {
1442
1442
  }
1443
1443
  });
1444
1444
 
1445
- // tmp_esbuild1764780799245/_src_hooks_useDragAndResize.module.css
1445
+ // tmp_esbuild1766162304688/_src_hooks_useDragAndResize.module.css
1446
1446
  var src_hooks_useDragAndResize_default;
1447
1447
  var init_src_hooks_useDragAndResize = __esm({
1448
- "tmp_esbuild1764780799245/_src_hooks_useDragAndResize.module.css"() {
1448
+ "tmp_esbuild1766162304688/_src_hooks_useDragAndResize.module.css"() {
1449
1449
  "use strict";
1450
- init_pTCtgGAmc6Ie4K9e3MbCWBVRk_lyuU3r2blaUbSCiuQ();
1451
- src_hooks_useDragAndResize_default = { "handle": "vv-Xv_AdG-handle" };
1450
+ init_xKXTZN6pQevyMF_6YEx0TeSmcBHN2kYM_aQAp7gr5gc();
1451
+ src_hooks_useDragAndResize_default = { "handle": "vv-P8ttLa-handle" };
1452
1452
  }
1453
1453
  });
1454
1454
 
@@ -1728,19 +1728,19 @@ var init_useDragAndResize2 = __esm({
1728
1728
  }
1729
1729
  });
1730
1730
 
1731
- // css-modules:css-modules://BA8Q8ps00i0wyvTkc9gBZgPbdGTP3KvV1BGFOYF6QRI.css
1732
- var init_BA8Q8ps00i0wyvTkc9gBZgPbdGTP3KvV1BGFOYF6QRI = __esm({
1733
- "css-modules:css-modules://BA8Q8ps00i0wyvTkc9gBZgPbdGTP3KvV1BGFOYF6QRI.css"() {
1731
+ // css-modules:css-modules://ayDGq29DXqczU5eOpNG8EkGJ4tJPQ-LJyEnvpnykQtE.css
1732
+ var init_ayDGq29DXqczU5eOpNG8EkGJ4tJPQ_LJyEnvpnykQtE = __esm({
1733
+ "css-modules:css-modules://ayDGq29DXqczU5eOpNG8EkGJ4tJPQ-LJyEnvpnykQtE.css"() {
1734
1734
  }
1735
1735
  });
1736
1736
 
1737
- // tmp_esbuild1764780799245/_src_components_core_editor_Editor.module.css
1737
+ // tmp_esbuild1766162304688/_src_components_core_editor_Editor.module.css
1738
1738
  var src_components_core_editor_Editor_default;
1739
1739
  var init_src_components_core_editor_Editor = __esm({
1740
- "tmp_esbuild1764780799245/_src_components_core_editor_Editor.module.css"() {
1740
+ "tmp_esbuild1766162304688/_src_components_core_editor_Editor.module.css"() {
1741
1741
  "use strict";
1742
- init_BA8Q8ps00i0wyvTkc9gBZgPbdGTP3KvV1BGFOYF6QRI();
1743
- src_components_core_editor_Editor_default = { "rnd": "vv-HnMQYG-rnd", "wrapper": "vv-HnMQYG-wrapper", "errorBanner": "vv-HnMQYG-errorBanner", "header": "vv-HnMQYG-header" };
1742
+ init_ayDGq29DXqczU5eOpNG8EkGJ4tJPQ_LJyEnvpnykQtE();
1743
+ src_components_core_editor_Editor_default = { "wrapper": "vv-1mTs4G-wrapper", "rnd": "vv-1mTs4G-rnd", "errorBanner": "vv-1mTs4G-errorBanner", "header": "vv-1mTs4G-header" };
1744
1744
  }
1745
1745
  });
1746
1746
 
@@ -2012,19 +2012,19 @@ var init_mode = __esm({
2012
2012
  }
2013
2013
  });
2014
2014
 
2015
- // css-modules:css-modules://wd7-0S9Y4BLSrdBU3Q-EyUBpsZJrvdnRR5CICvF-8Ss.css
2016
- var init_wd7_0S9Y4BLSrdBU3Q_EyUBpsZJrvdnRR5CICvF_8Ss = __esm({
2017
- "css-modules:css-modules://wd7-0S9Y4BLSrdBU3Q-EyUBpsZJrvdnRR5CICvF-8Ss.css"() {
2015
+ // css-modules:css-modules://rFhTzIPsYylcNxnVfYSVclTUEzXujUQQEbseoeS_mC4.css
2016
+ var init_rFhTzIPsYylcNxnVfYSVclTUEzXujUQQEbseoeS_mC4 = __esm({
2017
+ "css-modules:css-modules://rFhTzIPsYylcNxnVfYSVclTUEzXujUQQEbseoeS_mC4.css"() {
2018
2018
  }
2019
2019
  });
2020
2020
 
2021
- // tmp_esbuild1764780799245/_src_components_core_DocumentToolbar.module.css
2021
+ // tmp_esbuild1766162304688/_src_components_core_DocumentToolbar.module.css
2022
2022
  var src_components_core_DocumentToolbar_default;
2023
2023
  var init_src_components_core_DocumentToolbar = __esm({
2024
- "tmp_esbuild1764780799245/_src_components_core_DocumentToolbar.module.css"() {
2024
+ "tmp_esbuild1766162304688/_src_components_core_DocumentToolbar.module.css"() {
2025
2025
  "use strict";
2026
- init_wd7_0S9Y4BLSrdBU3Q_EyUBpsZJrvdnRR5CICvF_8Ss();
2027
- src_components_core_DocumentToolbar_default = { "toggleMenuButton": "vv-JhuOWa-toggleMenuButton", "toolbar": "vv-JhuOWa-toolbar", "parentToolbar": "vv-JhuOWa-parentToolbar" };
2026
+ init_rFhTzIPsYylcNxnVfYSVclTUEzXujUQQEbseoeS_mC4();
2027
+ src_components_core_DocumentToolbar_default = { "toggleMenuButton": "vv-UCg2LG-toggleMenuButton", "toolbar": "vv-UCg2LG-toolbar", "parentToolbar": "vv-UCg2LG-parentToolbar" };
2028
2028
  }
2029
2029
  });
2030
2030
 
@@ -2081,19 +2081,19 @@ var init_DocumentToolbar2 = __esm({
2081
2081
  }
2082
2082
  });
2083
2083
 
2084
- // css-modules:css-modules://Xsj79bheDe1gJ5Iw408bHY7RfMM9D_pE7YcV4emHsGs.css
2085
- var init_Xsj79bheDe1gJ5Iw408bHY7RfMM9D_pE7YcV4emHsGs = __esm({
2086
- "css-modules:css-modules://Xsj79bheDe1gJ5Iw408bHY7RfMM9D_pE7YcV4emHsGs.css"() {
2084
+ // css-modules:css-modules://P5Hwi6a4S82-JINtlXHs7Uu4kPm06gSHL4m3Bb7ZRpk.css
2085
+ var init_P5Hwi6a4S82_JINtlXHs7Uu4kPm06gSHL4m3Bb7ZRpk = __esm({
2086
+ "css-modules:css-modules://P5Hwi6a4S82-JINtlXHs7Uu4kPm06gSHL4m3Bb7ZRpk.css"() {
2087
2087
  }
2088
2088
  });
2089
2089
 
2090
- // tmp_esbuild1764780799245/_src_components_core_ErrorBoundary.module.css
2090
+ // tmp_esbuild1766162304688/_src_components_core_ErrorBoundary.module.css
2091
2091
  var src_components_core_ErrorBoundary_default;
2092
2092
  var init_src_components_core_ErrorBoundary = __esm({
2093
- "tmp_esbuild1764780799245/_src_components_core_ErrorBoundary.module.css"() {
2093
+ "tmp_esbuild1766162304688/_src_components_core_ErrorBoundary.module.css"() {
2094
2094
  "use strict";
2095
- init_Xsj79bheDe1gJ5Iw408bHY7RfMM9D_pE7YcV4emHsGs();
2096
- src_components_core_ErrorBoundary_default = { "errorBoundary": "vv-2n2wca-errorBoundary" };
2095
+ init_P5Hwi6a4S82_JINtlXHs7Uu4kPm06gSHL4m3Bb7ZRpk();
2096
+ src_components_core_ErrorBoundary_default = { "errorBoundary": "vv-43unWa-errorBoundary" };
2097
2097
  }
2098
2098
  });
2099
2099
 
@@ -2246,19 +2246,19 @@ var init_config = __esm({
2246
2246
  }
2247
2247
  });
2248
2248
 
2249
- // css-modules:css-modules://NDkoENPo11DSvuXe6N2EQl3bzWZydRNp7RA2yv_zdH0.css
2250
- var init_NDkoENPo11DSvuXe6N2EQl3bzWZydRNp7RA2yv_zdH0 = __esm({
2251
- "css-modules:css-modules://NDkoENPo11DSvuXe6N2EQl3bzWZydRNp7RA2yv_zdH0.css"() {
2249
+ // css-modules:css-modules://H562c7sjLdug_mI29dVlqsFO4uhVZzV3AmJUuOJknYg.css
2250
+ var init_H562c7sjLdug_mI29dVlqsFO4uhVZzV3AmJUuOJknYg = __esm({
2251
+ "css-modules:css-modules://H562c7sjLdug_mI29dVlqsFO4uhVZzV3AmJUuOJknYg.css"() {
2252
2252
  }
2253
2253
  });
2254
2254
 
2255
- // tmp_esbuild1764780799245/_src_components_primarygrid_EditGrid.module.css
2255
+ // tmp_esbuild1766162304688/_src_components_primarygrid_EditGrid.module.css
2256
2256
  var src_components_primarygrid_EditGrid_default;
2257
2257
  var init_src_components_primarygrid_EditGrid = __esm({
2258
- "tmp_esbuild1764780799245/_src_components_primarygrid_EditGrid.module.css"() {
2258
+ "tmp_esbuild1766162304688/_src_components_primarygrid_EditGrid.module.css"() {
2259
2259
  "use strict";
2260
- init_NDkoENPo11DSvuXe6N2EQl3bzWZydRNp7RA2yv_zdH0();
2261
- src_components_primarygrid_EditGrid_default = { "col": "vv-mVCCHa-col", "docs": "vv-mVCCHa-docs", "angleValue": "vv-mVCCHa-angleValue", "interfaceHeader": "vv-mVCCHa-interfaceHeader", "row": "vv-mVCCHa-row", "zone": "vv-mVCCHa-zone", "interface": "vv-mVCCHa-interface", "zonePictureInner": "vv-mVCCHa-zonePictureInner", "editGrid": "vv-mVCCHa-editGrid", "zonePicture": "vv-mVCCHa-zonePicture" };
2260
+ init_H562c7sjLdug_mI29dVlqsFO4uhVZzV3AmJUuOJknYg();
2261
+ src_components_primarygrid_EditGrid_default = { "interfaceHeader": "vv-4mkJ-q-interfaceHeader", "zonePicture": "vv-4mkJ-q-zonePicture", "interface": "vv-4mkJ-q-interface", "col": "vv-4mkJ-q-col", "row": "vv-4mkJ-q-row", "angleValue": "vv-4mkJ-q-angleValue", "editGrid": "vv-4mkJ-q-editGrid", "zonePictureInner": "vv-4mkJ-q-zonePictureInner", "zone": "vv-4mkJ-q-zone", "docs": "vv-4mkJ-q-docs" };
2262
2262
  }
2263
2263
  });
2264
2264
 
@@ -2270,19 +2270,19 @@ var init_EditGrid = __esm({
2270
2270
  }
2271
2271
  });
2272
2272
 
2273
- // css-modules:css-modules://TR32RWGVUHrtbZqkFl9MlG6GM72vEsEofY0muimzPfM.css
2274
- var init_TR32RWGVUHrtbZqkFl9MlG6GM72vEsEofY0muimzPfM = __esm({
2275
- "css-modules:css-modules://TR32RWGVUHrtbZqkFl9MlG6GM72vEsEofY0muimzPfM.css"() {
2273
+ // css-modules:css-modules://0mckzSpd4EsiOT6gOkVpz0pJHWG4vulvtCup4NUmWxY.css
2274
+ var init_mckzSpd4EsiOT6gOkVpz0pJHWG4vulvtCup4NUmWxY = __esm({
2275
+ "css-modules:css-modules://0mckzSpd4EsiOT6gOkVpz0pJHWG4vulvtCup4NUmWxY.css"() {
2276
2276
  }
2277
2277
  });
2278
2278
 
2279
- // tmp_esbuild1764780799245/_src_components_Audio.module.css
2279
+ // tmp_esbuild1766162304688/_src_components_Audio.module.css
2280
2280
  var src_components_Audio_default;
2281
2281
  var init_src_components_Audio = __esm({
2282
- "tmp_esbuild1764780799245/_src_components_Audio.module.css"() {
2282
+ "tmp_esbuild1766162304688/_src_components_Audio.module.css"() {
2283
2283
  "use strict";
2284
- init_TR32RWGVUHrtbZqkFl9MlG6GM72vEsEofY0muimzPfM();
2285
- src_components_Audio_default = { "audio": "vv-wPzk-W-audio", "container": "vv-wPzk-W-container" };
2284
+ init_mckzSpd4EsiOT6gOkVpz0pJHWG4vulvtCup4NUmWxY();
2285
+ src_components_Audio_default = { "container": "vv-GTNYCW-container", "audio": "vv-GTNYCW-audio" };
2286
2286
  }
2287
2287
  });
2288
2288
 
@@ -2325,19 +2325,19 @@ var init_Audio2 = __esm({
2325
2325
  }
2326
2326
  });
2327
2327
 
2328
- // css-modules:css-modules://28jKjd5DFC_5VTq3d08OXIxGt0XstvO-HDhYfpRi1N8.css
2329
- var init_jKjd5DFC_5VTq3d08OXIxGt0XstvO_HDhYfpRi1N8 = __esm({
2330
- "css-modules:css-modules://28jKjd5DFC_5VTq3d08OXIxGt0XstvO-HDhYfpRi1N8.css"() {
2328
+ // css-modules:css-modules://-GiL6b1JW_yfgz46GacF5nyN66yCBNd4zYzOg8H_8ug.css
2329
+ var init_GiL6b1JW_yfgz46GacF5nyN66yCBNd4zYzOg8H_8ug = __esm({
2330
+ "css-modules:css-modules://-GiL6b1JW_yfgz46GacF5nyN66yCBNd4zYzOg8H_8ug.css"() {
2331
2331
  }
2332
2332
  });
2333
2333
 
2334
- // tmp_esbuild1764780799245/_src_components_Rive.module.css
2334
+ // tmp_esbuild1766162304688/_src_components_Rive.module.css
2335
2335
  var src_components_Rive_default;
2336
2336
  var init_src_components_Rive = __esm({
2337
- "tmp_esbuild1764780799245/_src_components_Rive.module.css"() {
2337
+ "tmp_esbuild1766162304688/_src_components_Rive.module.css"() {
2338
2338
  "use strict";
2339
- init_jKjd5DFC_5VTq3d08OXIxGt0XstvO_HDhYfpRi1N8();
2340
- src_components_Rive_default = { "container": "vv-xzXylq-container" };
2339
+ init_GiL6b1JW_yfgz46GacF5nyN66yCBNd4zYzOg8H_8ug();
2340
+ src_components_Rive_default = { "container": "vv-lqW38q-container" };
2341
2341
  }
2342
2342
  });
2343
2343
 
@@ -2378,19 +2378,19 @@ var init_Rive2 = __esm({
2378
2378
  }
2379
2379
  });
2380
2380
 
2381
- // css-modules:css-modules://kjoi50upWcu2dm8y54pS3v6siMPawwvh5B0J1UHCxus.css
2382
- var init_kjoi50upWcu2dm8y54pS3v6siMPawwvh5B0J1UHCxus = __esm({
2383
- "css-modules:css-modules://kjoi50upWcu2dm8y54pS3v6siMPawwvh5B0J1UHCxus.css"() {
2381
+ // css-modules:css-modules://Ec1D4rruxd9_oc2xhKqNi0WLVpy9P8WzR3PBW1vPdN8.css
2382
+ var init_Ec1D4rruxd9_oc2xhKqNi0WLVpy9P8WzR3PBW1vPdN8 = __esm({
2383
+ "css-modules:css-modules://Ec1D4rruxd9_oc2xhKqNi0WLVpy9P8WzR3PBW1vPdN8.css"() {
2384
2384
  }
2385
2385
  });
2386
2386
 
2387
- // tmp_esbuild1764780799245/_src_components_Video.module.css
2387
+ // tmp_esbuild1766162304688/_src_components_Video.module.css
2388
2388
  var src_components_Video_default;
2389
2389
  var init_src_components_Video = __esm({
2390
- "tmp_esbuild1764780799245/_src_components_Video.module.css"() {
2390
+ "tmp_esbuild1766162304688/_src_components_Video.module.css"() {
2391
2391
  "use strict";
2392
- init_kjoi50upWcu2dm8y54pS3v6siMPawwvh5B0J1UHCxus();
2393
- src_components_Video_default = { "video": "vv-3SMTqG-video", "container": "vv-3SMTqG-container" };
2392
+ init_Ec1D4rruxd9_oc2xhKqNi0WLVpy9P8WzR3PBW1vPdN8();
2393
+ src_components_Video_default = { "container": "vv-8yU0oW-container", "video": "vv-8yU0oW-video" };
2394
2394
  }
2395
2395
  });
2396
2396
 
@@ -2403,31 +2403,20 @@ var init_Video = __esm({
2403
2403
  });
2404
2404
 
2405
2405
  // src/components/Video.tsx
2406
+ import { toNoCookie } from "@lls/utils";
2406
2407
  import { useState as useState7 } from "react";
2407
- import ReactPlayerModule from "react-player";
2408
+ import ReactPlayer from "react-player";
2408
2409
  import { jsx as jsx19 } from "react/jsx-runtime";
2409
- var ReactPlayer, CONFIG, Video, Video_default;
2410
+ var CONFIG_VIDEO, Video, Video_default;
2410
2411
  var init_Video2 = __esm({
2411
2412
  "src/components/Video.tsx"() {
2412
2413
  "use strict";
2413
2414
  init_useClientMounted();
2414
2415
  init_Video();
2415
- ReactPlayer = ReactPlayerModule.default || ReactPlayerModule;
2416
- CONFIG = {
2417
- file: {
2418
- attributes: {
2419
- preload: "none",
2420
- crossOrigin: "true",
2421
- controlsList: "nodownload",
2422
- disablePictureInPicture: true,
2423
- onContextMenu: (e) => e.preventDefault()
2424
- }
2425
- },
2416
+ CONFIG_VIDEO = {
2426
2417
  youtube: {
2427
- playerVars: {
2428
- enablejsapi: 1,
2429
- iv_load_policy: 3
2430
- }
2418
+ enablejsapi: 1,
2419
+ iv_load_policy: 3
2431
2420
  }
2432
2421
  };
2433
2422
  Video = ({ src }) => {
@@ -2442,13 +2431,18 @@ var init_Video2 = __esm({
2442
2431
  ReactPlayer,
2443
2432
  {
2444
2433
  className: src_components_Video_default.video,
2445
- url: src,
2446
- playsinline: true,
2434
+ src: toNoCookie(src),
2435
+ playsInline: true,
2447
2436
  controls: true,
2448
2437
  width: "100%",
2449
2438
  height: "100%",
2439
+ preload: "none",
2440
+ crossOrigin: "anonymous",
2441
+ controlsList: "nodownload",
2442
+ disablePictureInPicture: true,
2443
+ onContextMenu: (e) => e.preventDefault(),
2450
2444
  onError,
2451
- config: CONFIG
2445
+ config: CONFIG_VIDEO
2452
2446
  }
2453
2447
  ) : null });
2454
2448
  };
@@ -2743,19 +2737,19 @@ var init_zoneMaker2 = __esm({
2743
2737
  }
2744
2738
  });
2745
2739
 
2746
- // css-modules:css-modules://Ncv4GRbubRxjESSwSoPZCgUXaPbiIn2zz4I5iA2CGTQ.css
2747
- var init_Ncv4GRbubRxjESSwSoPZCgUXaPbiIn2zz4I5iA2CGTQ = __esm({
2748
- "css-modules:css-modules://Ncv4GRbubRxjESSwSoPZCgUXaPbiIn2zz4I5iA2CGTQ.css"() {
2740
+ // css-modules:css-modules://eSZvb5oS_rftbngmqtNMiELf3NGPShurX6bConr2ccE.css
2741
+ var init_eSZvb5oS_rftbngmqtNMiELf3NGPShurX6bConr2ccE = __esm({
2742
+ "css-modules:css-modules://eSZvb5oS_rftbngmqtNMiELf3NGPShurX6bConr2ccE.css"() {
2749
2743
  }
2750
2744
  });
2751
2745
 
2752
- // tmp_esbuild1764780799245/_src_components_primarygrid_EditZoneModal.module.css
2746
+ // tmp_esbuild1766162304688/_src_components_primarygrid_EditZoneModal.module.css
2753
2747
  var src_components_primarygrid_EditZoneModal_default;
2754
2748
  var init_src_components_primarygrid_EditZoneModal = __esm({
2755
- "tmp_esbuild1764780799245/_src_components_primarygrid_EditZoneModal.module.css"() {
2749
+ "tmp_esbuild1766162304688/_src_components_primarygrid_EditZoneModal.module.css"() {
2756
2750
  "use strict";
2757
- init_Ncv4GRbubRxjESSwSoPZCgUXaPbiIn2zz4I5iA2CGTQ();
2758
- src_components_primarygrid_EditZoneModal_default = { "col": "vv-tdQ8_W-col", "rive": "vv-tdQ8_W-rive", "addZoneButtons": "vv-tdQ8_W-addZoneButtons", "properties": "vv-tdQ8_W-properties", "contentMdDoc": "vv-tdQ8_W-contentMdDoc", "row": "vv-tdQ8_W-row", "zone": "vv-tdQ8_W-zone", "zoneElementsList": "vv-tdQ8_W-zoneElementsList", "zoneElements": "vv-tdQ8_W-zoneElements", "rightButton": "vv-tdQ8_W-rightButton", "zonePictureInner": "vv-tdQ8_W-zonePictureInner", "stickyElementsList": "vv-tdQ8_W-stickyElementsList", "leftButton": "vv-tdQ8_W-leftButton", "zonePicture": "vv-tdQ8_W-zonePicture", "angleValue": "vv-tdQ8_W-angleValue", "mediaContainer": "vv-tdQ8_W-mediaContainer", "addZone": "vv-tdQ8_W-addZone" };
2751
+ init_eSZvb5oS_rftbngmqtNMiELf3NGPShurX6bConr2ccE();
2752
+ src_components_primarygrid_EditZoneModal_default = { "rightButton": "vv-c7j_Tq-rightButton", "addZone": "vv-c7j_Tq-addZone", "zoneElementsList": "vv-c7j_Tq-zoneElementsList", "zone": "vv-c7j_Tq-zone", "properties": "vv-c7j_Tq-properties", "addZoneButtons": "vv-c7j_Tq-addZoneButtons", "leftButton": "vv-c7j_Tq-leftButton", "contentMdDoc": "vv-c7j_Tq-contentMdDoc", "zoneElements": "vv-c7j_Tq-zoneElements", "angleValue": "vv-c7j_Tq-angleValue", "stickyElementsList": "vv-c7j_Tq-stickyElementsList", "row": "vv-c7j_Tq-row", "zonePictureInner": "vv-c7j_Tq-zonePictureInner", "col": "vv-c7j_Tq-col", "mediaContainer": "vv-c7j_Tq-mediaContainer", "zonePicture": "vv-c7j_Tq-zonePicture", "rive": "vv-c7j_Tq-rive" };
2759
2753
  }
2760
2754
  });
2761
2755
 
@@ -2793,19 +2787,19 @@ var init_ZoneCoordinates = __esm({
2793
2787
  }
2794
2788
  });
2795
2789
 
2796
- // css-modules:css-modules://Z0zuli0MlRb0kIjxJzNyUTkcNKjv1hPa43IRY4Kym9U.css
2797
- var init_Z0zuli0MlRb0kIjxJzNyUTkcNKjv1hPa43IRY4Kym9U = __esm({
2798
- "css-modules:css-modules://Z0zuli0MlRb0kIjxJzNyUTkcNKjv1hPa43IRY4Kym9U.css"() {
2790
+ // css-modules:css-modules://j5i01Sy7ml8Z6hh6FFefF_uzeCPxWZTIhb_uj0sr9ns.css
2791
+ var init_j5i01Sy7ml8Z6hh6FFefF_uzeCPxWZTIhb_uj0sr9ns = __esm({
2792
+ "css-modules:css-modules://j5i01Sy7ml8Z6hh6FFefF_uzeCPxWZTIhb_uj0sr9ns.css"() {
2799
2793
  }
2800
2794
  });
2801
2795
 
2802
- // tmp_esbuild1764780799245/_src_components_primarygrid_ZoneMaker.module.css
2796
+ // tmp_esbuild1766162304688/_src_components_primarygrid_ZoneMaker.module.css
2803
2797
  var src_components_primarygrid_ZoneMaker_default;
2804
2798
  var init_src_components_primarygrid_ZoneMaker = __esm({
2805
- "tmp_esbuild1764780799245/_src_components_primarygrid_ZoneMaker.module.css"() {
2799
+ "tmp_esbuild1766162304688/_src_components_primarygrid_ZoneMaker.module.css"() {
2806
2800
  "use strict";
2807
- init_Z0zuli0MlRb0kIjxJzNyUTkcNKjv1hPa43IRY4Kym9U();
2808
- src_components_primarygrid_ZoneMaker_default = { "zoneMaker": "vv-ODoJFq-zoneMaker", "handle": "vv-ODoJFq-handle", "settingsButton": "vv-ODoJFq-settingsButton", "pictureZone": "vv-ODoJFq-pictureZone", "mediaContainer": "vv-ODoJFq-mediaContainer", "pageDivider": "vv-ODoJFq-pageDivider", "zoneMakeContainer": "vv-ODoJFq-zoneMakeContainer" };
2801
+ init_j5i01Sy7ml8Z6hh6FFefF_uzeCPxWZTIhb_uj0sr9ns();
2802
+ src_components_primarygrid_ZoneMaker_default = { "zoneMaker": "vv-_hmq6W-zoneMaker", "pictureZone": "vv-_hmq6W-pictureZone", "settingsButton": "vv-_hmq6W-settingsButton", "mediaContainer": "vv-_hmq6W-mediaContainer", "pageDivider": "vv-_hmq6W-pageDivider", "handle": "vv-_hmq6W-handle", "zoneMakeContainer": "vv-_hmq6W-zoneMakeContainer" };
2809
2803
  }
2810
2804
  });
2811
2805
 
@@ -2827,19 +2821,19 @@ var init_url = __esm({
2827
2821
  }
2828
2822
  });
2829
2823
 
2830
- // css-modules:css-modules://vLoEDvHNXixAa-9hfOSlr5sTTeWsmqRfrVJs6tDCxE8.css
2831
- var init_vLoEDvHNXixAa_9hfOSlr5sTTeWsmqRfrVJs6tDCxE8 = __esm({
2832
- "css-modules:css-modules://vLoEDvHNXixAa-9hfOSlr5sTTeWsmqRfrVJs6tDCxE8.css"() {
2824
+ // css-modules:css-modules://7OyRKrv9S2yZMnSI4PHWbefzVbyEzIRBfP8IB8zG1WY.css
2825
+ var init_OyRKrv9S2yZMnSI4PHWbefzVbyEzIRBfP8IB8zG1WY = __esm({
2826
+ "css-modules:css-modules://7OyRKrv9S2yZMnSI4PHWbefzVbyEzIRBfP8IB8zG1WY.css"() {
2833
2827
  }
2834
2828
  });
2835
2829
 
2836
- // tmp_esbuild1764780799245/_src_components_primarygrid_ZoomedPicture.module.css
2830
+ // tmp_esbuild1766162304688/_src_components_primarygrid_ZoomedPicture.module.css
2837
2831
  var src_components_primarygrid_ZoomedPicture_default;
2838
2832
  var init_src_components_primarygrid_ZoomedPicture = __esm({
2839
- "tmp_esbuild1764780799245/_src_components_primarygrid_ZoomedPicture.module.css"() {
2833
+ "tmp_esbuild1766162304688/_src_components_primarygrid_ZoomedPicture.module.css"() {
2840
2834
  "use strict";
2841
- init_vLoEDvHNXixAa_9hfOSlr5sTTeWsmqRfrVJs6tDCxE8();
2842
- src_components_primarygrid_ZoomedPicture_default = { "zoomedPicture": "vv-RBwDnq-zoomedPicture", "imgPicture": "vv-RBwDnq-imgPicture", "placeholder": "vv-RBwDnq-placeholder", "generatedAsset": "vv-RBwDnq-generatedAsset", "emptyFrame": "vv-RBwDnq-emptyFrame" };
2835
+ init_OyRKrv9S2yZMnSI4PHWbefzVbyEzIRBfP8IB8zG1WY();
2836
+ src_components_primarygrid_ZoomedPicture_default = { "emptyFrame": "vv-SU3IzG-emptyFrame", "imgPicture": "vv-SU3IzG-imgPicture", "zoomedPicture": "vv-SU3IzG-zoomedPicture", "placeholder": "vv-SU3IzG-placeholder", "generatedAsset": "vv-SU3IzG-generatedAsset" };
2843
2837
  }
2844
2838
  });
2845
2839
 
@@ -3527,19 +3521,19 @@ var init_SortableGrid = __esm({
3527
3521
  }
3528
3522
  });
3529
3523
 
3530
- // css-modules:css-modules://EQxb87Cyc3HY3ATN7tO8zXAj6ZPYr5-TV--7-9qgYWg.css
3531
- var init_EQxb87Cyc3HY3ATN7tO8zXAj6ZPYr5_TV_7_9qgYWg = __esm({
3532
- "css-modules:css-modules://EQxb87Cyc3HY3ATN7tO8zXAj6ZPYr5-TV--7-9qgYWg.css"() {
3524
+ // css-modules:css-modules://X8A1POwPvPaiL4LUKtjoZ2ZNyVDYG-4_ORNUcmf6D40.css
3525
+ var init_X8A1POwPvPaiL4LUKtjoZ2ZNyVDYG_4_ORNUcmf6D40 = __esm({
3526
+ "css-modules:css-modules://X8A1POwPvPaiL4LUKtjoZ2ZNyVDYG-4_ORNUcmf6D40.css"() {
3533
3527
  }
3534
3528
  });
3535
3529
 
3536
- // tmp_esbuild1764780799245/_src_components_primarygrid_sortable_SortableItem.module.css
3530
+ // tmp_esbuild1766162304688/_src_components_primarygrid_sortable_SortableItem.module.css
3537
3531
  var src_components_primarygrid_sortable_SortableItem_default;
3538
3532
  var init_src_components_primarygrid_sortable_SortableItem = __esm({
3539
- "tmp_esbuild1764780799245/_src_components_primarygrid_sortable_SortableItem.module.css"() {
3533
+ "tmp_esbuild1766162304688/_src_components_primarygrid_sortable_SortableItem.module.css"() {
3540
3534
  "use strict";
3541
- init_EQxb87Cyc3HY3ATN7tO8zXAj6ZPYr5_TV_7_9qgYWg();
3542
- src_components_primarygrid_sortable_SortableItem_default = { "dragButton": "vv-LFDHIa-dragButton", "item": "vv-LFDHIa-item" };
3535
+ init_X8A1POwPvPaiL4LUKtjoZ2ZNyVDYG_4_ORNUcmf6D40();
3536
+ src_components_primarygrid_sortable_SortableItem_default = { "item": "vv-NdFbtG-item", "dragButton": "vv-NdFbtG-dragButton" };
3543
3537
  }
3544
3538
  });
3545
3539
 
@@ -3879,19 +3873,19 @@ var init_EditGrid2 = __esm({
3879
3873
  }
3880
3874
  });
3881
3875
 
3882
- // css-modules:css-modules://ZscOFiFJ6RH4Tq-tQuJ8Ef0ad_fGlXt8wNOzq9K7-mQ.css
3883
- var init_ZscOFiFJ6RH4Tq_tQuJ8Ef0ad_fGlXt8wNOzq9K7_mQ = __esm({
3884
- "css-modules:css-modules://ZscOFiFJ6RH4Tq-tQuJ8Ef0ad_fGlXt8wNOzq9K7-mQ.css"() {
3876
+ // css-modules:css-modules://M-sgIjw4Ufx5-Vsp6PmIUF9K8JgNXbqw3IcKSokwNhI.css
3877
+ var init_M_sgIjw4Ufx5_Vsp6PmIUF9K8JgNXbqw3IcKSokwNhI = __esm({
3878
+ "css-modules:css-modules://M-sgIjw4Ufx5-Vsp6PmIUF9K8JgNXbqw3IcKSokwNhI.css"() {
3885
3879
  }
3886
3880
  });
3887
3881
 
3888
- // tmp_esbuild1764780799245/_src_components_HighlightedArea.module.css
3882
+ // tmp_esbuild1766162304688/_src_components_HighlightedArea.module.css
3889
3883
  var src_components_HighlightedArea_default;
3890
3884
  var init_src_components_HighlightedArea = __esm({
3891
- "tmp_esbuild1764780799245/_src_components_HighlightedArea.module.css"() {
3885
+ "tmp_esbuild1766162304688/_src_components_HighlightedArea.module.css"() {
3892
3886
  "use strict";
3893
- init_ZscOFiFJ6RH4Tq_tQuJ8Ef0ad_fGlXt8wNOzq9K7_mQ();
3894
- src_components_HighlightedArea_default = { "highlight": "vv-YfL_uW-highlight" };
3887
+ init_M_sgIjw4Ufx5_Vsp6PmIUF9K8JgNXbqw3IcKSokwNhI();
3888
+ src_components_HighlightedArea_default = { "highlight": "vv-YdepYa-highlight" };
3895
3889
  }
3896
3890
  });
3897
3891
 
@@ -3942,19 +3936,19 @@ var init_HighlightedArea2 = __esm({
3942
3936
  }
3943
3937
  });
3944
3938
 
3945
- // css-modules:css-modules://c6XJiC0ONdmoGDuVANj4aKoMkVnqr4X0NCyJ2fTs_KY.css
3946
- var init_c6XJiC0ONdmoGDuVANj4aKoMkVnqr4X0NCyJ2fTs_KY = __esm({
3947
- "css-modules:css-modules://c6XJiC0ONdmoGDuVANj4aKoMkVnqr4X0NCyJ2fTs_KY.css"() {
3939
+ // css-modules:css-modules://qgXGzqm_jJobyvFYMc25MbObV40zLt14TLOHc3IGgJM.css
3940
+ var init_qgXGzqm_jJobyvFYMc25MbObV40zLt14TLOHc3IGgJM = __esm({
3941
+ "css-modules:css-modules://qgXGzqm_jJobyvFYMc25MbObV40zLt14TLOHc3IGgJM.css"() {
3948
3942
  }
3949
3943
  });
3950
3944
 
3951
- // tmp_esbuild1764780799245/_src_components_primarygrid_FullscreenDocument.module.css
3945
+ // tmp_esbuild1766162304688/_src_components_primarygrid_FullscreenDocument.module.css
3952
3946
  var src_components_primarygrid_FullscreenDocument_default;
3953
3947
  var init_src_components_primarygrid_FullscreenDocument = __esm({
3954
- "tmp_esbuild1764780799245/_src_components_primarygrid_FullscreenDocument.module.css"() {
3948
+ "tmp_esbuild1766162304688/_src_components_primarygrid_FullscreenDocument.module.css"() {
3955
3949
  "use strict";
3956
- init_c6XJiC0ONdmoGDuVANj4aKoMkVnqr4X0NCyJ2fTs_KY();
3957
- src_components_primarygrid_FullscreenDocument_default = { "mask": "vv-tKOuva-mask vv-tKOuva-anyZone", "correctionZone": "vv-tKOuva-correctionZone", "riveContainer": "vv-tKOuva-riveContainer", "centeredContainer": "vv-tKOuva-centeredContainer", "volumeIcon": "vv-tKOuva-volumeIcon", "actions": "vv-tKOuva-actions", "anyZone": "vv-tKOuva-anyZone", "switchContent": "vv-tKOuva-switchContent", "document": "vv-tKOuva-document", "zoneContent": "vv-tKOuva-zoneContent" };
3950
+ init_qgXGzqm_jJobyvFYMc25MbObV40zLt14TLOHc3IGgJM();
3951
+ src_components_primarygrid_FullscreenDocument_default = { "zoneContent": "vv-yTvWGa-zoneContent", "switchContent": "vv-yTvWGa-switchContent", "anyZone": "vv-yTvWGa-anyZone", "centeredContainer": "vv-yTvWGa-centeredContainer", "riveContainer": "vv-yTvWGa-riveContainer", "correctionZone": "vv-yTvWGa-correctionZone", "mask": "vv-yTvWGa-mask vv-yTvWGa-anyZone", "volumeIcon": "vv-yTvWGa-volumeIcon", "actions": "vv-yTvWGa-actions", "document": "vv-yTvWGa-document" };
3958
3952
  }
3959
3953
  });
3960
3954
 
@@ -6212,19 +6206,19 @@ var init_floating_ui_react = __esm({
6212
6206
  }
6213
6207
  });
6214
6208
 
6215
- // css-modules:css-modules://MderszRd_SZgF4hVt6-7LLeFdAt9paf3ZysvAbhaEtw.css
6216
- var init_MderszRd_SZgF4hVt6_7LLeFdAt9paf3ZysvAbhaEtw = __esm({
6217
- "css-modules:css-modules://MderszRd_SZgF4hVt6-7LLeFdAt9paf3ZysvAbhaEtw.css"() {
6209
+ // css-modules:css-modules://MwU9Zk95EJCHvnFY7pyArvHUiNP4u0j3lobIvk_mUuE.css
6210
+ var init_MwU9Zk95EJCHvnFY7pyArvHUiNP4u0j3lobIvk_mUuE = __esm({
6211
+ "css-modules:css-modules://MwU9Zk95EJCHvnFY7pyArvHUiNP4u0j3lobIvk_mUuE.css"() {
6218
6212
  }
6219
6213
  });
6220
6214
 
6221
- // tmp_esbuild1764780799245/_src_components_ViewImage.module.css
6215
+ // tmp_esbuild1766162304688/_src_components_ViewImage.module.css
6222
6216
  var src_components_ViewImage_default;
6223
6217
  var init_src_components_ViewImage = __esm({
6224
- "tmp_esbuild1764780799245/_src_components_ViewImage.module.css"() {
6218
+ "tmp_esbuild1766162304688/_src_components_ViewImage.module.css"() {
6225
6219
  "use strict";
6226
- init_MderszRd_SZgF4hVt6_7LLeFdAt9paf3ZysvAbhaEtw();
6227
- src_components_ViewImage_default = { "img": "vv-25Y5vq-img", "definitionTitle": "vv-25Y5vq-definitionTitle", "span": "vv-25Y5vq-span", "container": "vv-25Y5vq-container", "root": "vv-25Y5vq-root", "definition": "vv-25Y5vq-definition" };
6220
+ init_MwU9Zk95EJCHvnFY7pyArvHUiNP4u0j3lobIvk_mUuE();
6221
+ src_components_ViewImage_default = { "root": "vv-084khq-root", "definition": "vv-084khq-definition", "img": "vv-084khq-img", "span": "vv-084khq-span", "definitionTitle": "vv-084khq-definitionTitle", "container": "vv-084khq-container" };
6228
6222
  }
6229
6223
  });
6230
6224
 
@@ -6630,19 +6624,19 @@ var init_FullscreenDocument2 = __esm({
6630
6624
  }
6631
6625
  });
6632
6626
 
6633
- // css-modules:css-modules://u58L6KqX5EOYKn5nnyWAJEKlDcDyLMngrIPSxwdXw8s.css
6634
- var init_u58L6KqX5EOYKn5nnyWAJEKlDcDyLMngrIPSxwdXw8s = __esm({
6635
- "css-modules:css-modules://u58L6KqX5EOYKn5nnyWAJEKlDcDyLMngrIPSxwdXw8s.css"() {
6627
+ // css-modules:css-modules://1H_j3y-oc10300kWdhlGMkxw6U7wc5okXspL4DlYN0Q.css
6628
+ var init_H_j3y_oc10300kWdhlGMkxw6U7wc5okXspL4DlYN0Q = __esm({
6629
+ "css-modules:css-modules://1H_j3y-oc10300kWdhlGMkxw6U7wc5okXspL4DlYN0Q.css"() {
6636
6630
  }
6637
6631
  });
6638
6632
 
6639
- // tmp_esbuild1764780799245/_src_components_primarygrid_ViewGrid.module.css
6633
+ // tmp_esbuild1766162304688/_src_components_primarygrid_ViewGrid.module.css
6640
6634
  var src_components_primarygrid_ViewGrid_default;
6641
6635
  var init_src_components_primarygrid_ViewGrid = __esm({
6642
- "tmp_esbuild1764780799245/_src_components_primarygrid_ViewGrid.module.css"() {
6636
+ "tmp_esbuild1766162304688/_src_components_primarygrid_ViewGrid.module.css"() {
6643
6637
  "use strict";
6644
- init_u58L6KqX5EOYKn5nnyWAJEKlDcDyLMngrIPSxwdXw8s();
6645
- src_components_primarygrid_ViewGrid_default = { "viewGrid": "vv-w3HB_W-viewGrid", "pictureZone": "vv-w3HB_W-pictureZone", "pageDivider": "vv-w3HB_W-pageDivider", "content": "vv-w3HB_W-content" };
6638
+ init_H_j3y_oc10300kWdhlGMkxw6U7wc5okXspL4DlYN0Q();
6639
+ src_components_primarygrid_ViewGrid_default = { "pageDivider": "vv-uB65zG-pageDivider", "viewGrid": "vv-uB65zG-viewGrid", "content": "vv-uB65zG-content", "pictureZone": "vv-uB65zG-pictureZone" };
6646
6640
  }
6647
6641
  });
6648
6642
 
@@ -6728,19 +6722,19 @@ var init_Grid = __esm({
6728
6722
  }
6729
6723
  });
6730
6724
 
6731
- // css-modules:css-modules://aRKHhAZRtQ0jwD1-7MlcEalEKWFgEJxyQk29fFRhEmE.css
6732
- var init_aRKHhAZRtQ0jwD1_7MlcEalEKWFgEJxyQk29fFRhEmE = __esm({
6733
- "css-modules:css-modules://aRKHhAZRtQ0jwD1-7MlcEalEKWFgEJxyQk29fFRhEmE.css"() {
6725
+ // css-modules:css-modules://mE3DuS3i0rmYI9JJ29O2Ywg6jsIFi4jZWDsg3eQCRbs.css
6726
+ var init_mE3DuS3i0rmYI9JJ29O2Ywg6jsIFi4jZWDsg3eQCRbs = __esm({
6727
+ "css-modules:css-modules://mE3DuS3i0rmYI9JJ29O2Ywg6jsIFi4jZWDsg3eQCRbs.css"() {
6734
6728
  }
6735
6729
  });
6736
6730
 
6737
- // tmp_esbuild1764780799245/_src_components_core_DocumentHtml.module.css
6731
+ // tmp_esbuild1766162304688/_src_components_core_DocumentHtml.module.css
6738
6732
  var src_components_core_DocumentHtml_default;
6739
6733
  var init_src_components_core_DocumentHtml = __esm({
6740
- "tmp_esbuild1764780799245/_src_components_core_DocumentHtml.module.css"() {
6734
+ "tmp_esbuild1766162304688/_src_components_core_DocumentHtml.module.css"() {
6741
6735
  "use strict";
6742
- init_aRKHhAZRtQ0jwD1_7MlcEalEKWFgEJxyQk29fFRhEmE();
6743
- src_components_core_DocumentHtml_default = { "document": "vv-eLitJa-document" };
6736
+ init_mE3DuS3i0rmYI9JJ29O2Ywg6jsIFi4jZWDsg3eQCRbs();
6737
+ src_components_core_DocumentHtml_default = { "document": "vv--dO4Ja-document" };
6744
6738
  }
6745
6739
  });
6746
6740
 
@@ -6857,19 +6851,19 @@ var init_DocumentHtml2 = __esm({
6857
6851
  }
6858
6852
  });
6859
6853
 
6860
- // css-modules:css-modules://Kd_JdmO6IxpS4W7-xXknElhfc_nPCD_4K9v3FS9Xa8k.css
6861
- var init_Kd_JdmO6IxpS4W7_xXknElhfc_nPCD_4K9v3FS9Xa8k = __esm({
6862
- "css-modules:css-modules://Kd_JdmO6IxpS4W7-xXknElhfc_nPCD_4K9v3FS9Xa8k.css"() {
6854
+ // css-modules:css-modules://LqDBJMS_Htg4ctD2WemKQsmXxnSCg-_hi4D_AERxb3g.css
6855
+ var init_LqDBJMS_Htg4ctD2WemKQsmXxnSCg_hi4D_AERxb3g = __esm({
6856
+ "css-modules:css-modules://LqDBJMS_Htg4ctD2WemKQsmXxnSCg-_hi4D_AERxb3g.css"() {
6863
6857
  }
6864
6858
  });
6865
6859
 
6866
- // tmp_esbuild1764780799245/_src_components_core_Document.module.css
6860
+ // tmp_esbuild1766162304688/_src_components_core_Document.module.css
6867
6861
  var src_components_core_Document_default;
6868
6862
  var init_src_components_core_Document = __esm({
6869
- "tmp_esbuild1764780799245/_src_components_core_Document.module.css"() {
6863
+ "tmp_esbuild1766162304688/_src_components_core_Document.module.css"() {
6870
6864
  "use strict";
6871
- init_Kd_JdmO6IxpS4W7_xXknElhfc_nPCD_4K9v3FS9Xa8k();
6872
- src_components_core_Document_default = { "rootDocument": "vv-VQDCDa-rootDocument", "divSearch": "vv-VQDCDa-divSearch" };
6865
+ init_LqDBJMS_Htg4ctD2WemKQsmXxnSCg_hi4D_AERxb3g();
6866
+ src_components_core_Document_default = { "divSearch": "vv-xqt-xq-divSearch", "rootDocument": "vv-xqt-xq-rootDocument" };
6873
6867
  }
6874
6868
  });
6875
6869
 
@@ -6923,17 +6917,17 @@ var init_Document2 = __esm({
6923
6917
  }
6924
6918
  });
6925
6919
 
6926
- // css-modules:css-modules://9bqT_OvW7NbUb-WhtIXj4tAI8xfTDDL8f9zZvr0JVE0.css
6927
- var init_bqT_OvW7NbUb_WhtIXj4tAI8xfTDDL8f9zZvr0JVE0 = __esm({
6928
- "css-modules:css-modules://9bqT_OvW7NbUb-WhtIXj4tAI8xfTDDL8f9zZvr0JVE0.css"() {
6920
+ // css-modules:css-modules://uH36a0Ia1igsqbfbl3ZAFBXdO0SykvqGZlYJ9aVG6_g.css
6921
+ var init_uH36a0Ia1igsqbfbl3ZAFBXdO0SykvqGZlYJ9aVG6_g = __esm({
6922
+ "css-modules:css-modules://uH36a0Ia1igsqbfbl3ZAFBXdO0SykvqGZlYJ9aVG6_g.css"() {
6929
6923
  }
6930
6924
  });
6931
6925
 
6932
- // tmp_esbuild1764780799245/_src_styles_Codemirror.module.css
6926
+ // tmp_esbuild1766162304688/_src_styles_Codemirror.module.css
6933
6927
  var init_src_styles_Codemirror = __esm({
6934
- "tmp_esbuild1764780799245/_src_styles_Codemirror.module.css"() {
6928
+ "tmp_esbuild1766162304688/_src_styles_Codemirror.module.css"() {
6935
6929
  "use strict";
6936
- init_bqT_OvW7NbUb_WhtIXj4tAI8xfTDDL8f9zZvr0JVE0();
6930
+ init_uH36a0Ia1igsqbfbl3ZAFBXdO0SykvqGZlYJ9aVG6_g();
6937
6931
  }
6938
6932
  });
6939
6933
 
@@ -6945,19 +6939,19 @@ var init_Codemirror = __esm({
6945
6939
  }
6946
6940
  });
6947
6941
 
6948
- // css-modules:css-modules://GGCneY3Ig17fN_d9yHBLKlKkJKojGYXz4ed-5QYQvt8.css
6949
- var init_GGCneY3Ig17fN_d9yHBLKlKkJKojGYXz4ed_5QYQvt8 = __esm({
6950
- "css-modules:css-modules://GGCneY3Ig17fN_d9yHBLKlKkJKojGYXz4ed-5QYQvt8.css"() {
6942
+ // css-modules:css-modules://6u-Vl9JPz8OEjroGDPdoFvlKyM16zrlQSVNR-qJvcXM.css
6943
+ var init_u_Vl9JPz8OEjroGDPdoFvlKyM16zrlQSVNR_qJvcXM = __esm({
6944
+ "css-modules:css-modules://6u-Vl9JPz8OEjroGDPdoFvlKyM16zrlQSVNR-qJvcXM.css"() {
6951
6945
  }
6952
6946
  });
6953
6947
 
6954
- // tmp_esbuild1764780799245/_src_components_core_viewer_ViewerMd.module.css
6948
+ // tmp_esbuild1766162304688/_src_components_core_viewer_ViewerMd.module.css
6955
6949
  var src_components_core_viewer_ViewerMd_default;
6956
6950
  var init_src_components_core_viewer_ViewerMd = __esm({
6957
- "tmp_esbuild1764780799245/_src_components_core_viewer_ViewerMd.module.css"() {
6951
+ "tmp_esbuild1766162304688/_src_components_core_viewer_ViewerMd.module.css"() {
6958
6952
  "use strict";
6959
- init_GGCneY3Ig17fN_d9yHBLKlKkJKojGYXz4ed_5QYQvt8();
6960
- src_components_core_viewer_ViewerMd_default = { "viewer": "vv-RyrjTq-viewer kit-themecss", "viewerInner": "vv-RyrjTq-viewerInner" };
6953
+ init_u_Vl9JPz8OEjroGDPdoFvlKyM16zrlQSVNR_qJvcXM();
6954
+ src_components_core_viewer_ViewerMd_default = { "viewerInner": "vv-qRnjhG-viewerInner", "viewer": "vv-qRnjhG-viewer kit-themecss" };
6961
6955
  }
6962
6956
  });
6963
6957
 
@@ -7128,19 +7122,19 @@ var init_usePictureSource = __esm({
7128
7122
  }
7129
7123
  });
7130
7124
 
7131
- // css-modules:css-modules://Ga52SfG9kJysTkTnaX-RydlenvPabAgHo1ZyOWY38uk.css
7132
- var init_Ga52SfG9kJysTkTnaX_RydlenvPabAgHo1ZyOWY38uk = __esm({
7133
- "css-modules:css-modules://Ga52SfG9kJysTkTnaX-RydlenvPabAgHo1ZyOWY38uk.css"() {
7125
+ // css-modules:css-modules://hHdslJfWw6P6TZn1FOVoV57CugcKcgygLlL519fs2Xg.css
7126
+ var init_hHdslJfWw6P6TZn1FOVoV57CugcKcgygLlL519fs2Xg = __esm({
7127
+ "css-modules:css-modules://hHdslJfWw6P6TZn1FOVoV57CugcKcgygLlL519fs2Xg.css"() {
7134
7128
  }
7135
7129
  });
7136
7130
 
7137
- // tmp_esbuild1764780799245/_src_components_Alert.module.css
7131
+ // tmp_esbuild1766162304688/_src_components_Alert.module.css
7138
7132
  var src_components_Alert_default;
7139
7133
  var init_src_components_Alert = __esm({
7140
- "tmp_esbuild1764780799245/_src_components_Alert.module.css"() {
7134
+ "tmp_esbuild1766162304688/_src_components_Alert.module.css"() {
7141
7135
  "use strict";
7142
- init_Ga52SfG9kJysTkTnaX_RydlenvPabAgHo1ZyOWY38uk();
7143
- src_components_Alert_default = { "alertOpenedAnimation": "vv-WaC3qq-alertOpenedAnimation", "alert": "vv-WaC3qq-alert" };
7136
+ init_hHdslJfWw6P6TZn1FOVoV57CugcKcgygLlL519fs2Xg();
7137
+ src_components_Alert_default = { "alert": "vv-G2kJsG-alert", "alertOpenedAnimation": "vv-G2kJsG-alertOpenedAnimation" };
7144
7138
  }
7145
7139
  });
7146
7140
 
@@ -7241,19 +7235,19 @@ var init_EditViewerMd = __esm({
7241
7235
  }
7242
7236
  });
7243
7237
 
7244
- // css-modules:css-modules://l_as2JK5ju5-HbL_zSg2k1kgqU5S_oXWnWDFpXCqygs.css
7245
- var init_l_as2JK5ju5_HbL_zSg2k1kgqU5S_oXWnWDFpXCqygs = __esm({
7246
- "css-modules:css-modules://l_as2JK5ju5-HbL_zSg2k1kgqU5S_oXWnWDFpXCqygs.css"() {
7238
+ // css-modules:css-modules://Wpl-_uXG7GExMqV2oDMfAhg6U3C4oQ7TPjSGdD76wR8.css
7239
+ var init_Wpl_uXG7GExMqV2oDMfAhg6U3C4oQ7TPjSGdD76wR8 = __esm({
7240
+ "css-modules:css-modules://Wpl-_uXG7GExMqV2oDMfAhg6U3C4oQ7TPjSGdD76wR8.css"() {
7247
7241
  }
7248
7242
  });
7249
7243
 
7250
- // tmp_esbuild1764780799245/_src_components_core_editor_EditorView.module.css
7244
+ // tmp_esbuild1766162304688/_src_components_core_editor_EditorView.module.css
7251
7245
  var src_components_core_editor_EditorView_default;
7252
7246
  var init_src_components_core_editor_EditorView = __esm({
7253
- "tmp_esbuild1764780799245/_src_components_core_editor_EditorView.module.css"() {
7247
+ "tmp_esbuild1766162304688/_src_components_core_editor_EditorView.module.css"() {
7254
7248
  "use strict";
7255
- init_l_as2JK5ju5_HbL_zSg2k1kgqU5S_oXWnWDFpXCqygs();
7256
- src_components_core_editor_EditorView_default = { "book": "vv-i_i-AG-book", "fullscreenNextButton": "vv-i_i-AG-fullscreenNextButton vv-i_i-AG-fullscreenButton", "fullscreenButton": "vv-i_i-AG-fullscreenButton", "viewTopBar": "vv-i_i-AG-viewTopBar", "fullscreenPrevButton": "vv-i_i-AG-fullscreenPrevButton vv-i_i-AG-fullscreenButton", "editorViewContainer": "vv-i_i-AG-editorViewContainer", "fullscreenExitButton": "vv-i_i-AG-fullscreenExitButton vv-i_i-AG-fullscreenButton", "bookInner": "vv-i_i-AG-bookInner" };
7249
+ init_Wpl_uXG7GExMqV2oDMfAhg6U3C4oQ7TPjSGdD76wR8();
7250
+ src_components_core_editor_EditorView_default = { "viewTopBar": "vv-8QmGSq-viewTopBar", "fullscreenNextButton": "vv-8QmGSq-fullscreenNextButton vv-8QmGSq-fullscreenButton", "editorViewContainer": "vv-8QmGSq-editorViewContainer", "fullscreenPrevButton": "vv-8QmGSq-fullscreenPrevButton vv-8QmGSq-fullscreenButton", "bookInner": "vv-8QmGSq-bookInner", "book": "vv-8QmGSq-book", "fullscreenButton": "vv-8QmGSq-fullscreenButton", "fullscreenExitButton": "vv-8QmGSq-fullscreenExitButton vv-8QmGSq-fullscreenButton" };
7257
7251
  }
7258
7252
  });
7259
7253
 
@@ -7380,19 +7374,19 @@ var init_EditorView2 = __esm({
7380
7374
  }
7381
7375
  });
7382
7376
 
7383
- // css-modules:css-modules://Rha1qKNnVqsfdara7c0Y3tJPnUCRpwqnyUmPNl3z-0g.css
7384
- var init_Rha1qKNnVqsfdara7c0Y3tJPnUCRpwqnyUmPNl3z_0g = __esm({
7385
- "css-modules:css-modules://Rha1qKNnVqsfdara7c0Y3tJPnUCRpwqnyUmPNl3z-0g.css"() {
7377
+ // css-modules:css-modules://zD4OrrO-nZ-C_-tbFRVPVI4tFeCxVKWh55xsUm2UnlI.css
7378
+ var init_zD4OrrO_nZ_C_tbFRVPVI4tFeCxVKWh55xsUm2UnlI = __esm({
7379
+ "css-modules:css-modules://zD4OrrO-nZ-C_-tbFRVPVI4tFeCxVKWh55xsUm2UnlI.css"() {
7386
7380
  }
7387
7381
  });
7388
7382
 
7389
- // tmp_esbuild1764780799245/_src_components_core_editor_MetadataEditor.module.css
7383
+ // tmp_esbuild1766162304688/_src_components_core_editor_MetadataEditor.module.css
7390
7384
  var src_components_core_editor_MetadataEditor_default;
7391
7385
  var init_src_components_core_editor_MetadataEditor = __esm({
7392
- "tmp_esbuild1764780799245/_src_components_core_editor_MetadataEditor.module.css"() {
7386
+ "tmp_esbuild1766162304688/_src_components_core_editor_MetadataEditor.module.css"() {
7393
7387
  "use strict";
7394
- init_Rha1qKNnVqsfdara7c0Y3tJPnUCRpwqnyUmPNl3z_0g();
7395
- src_components_core_editor_MetadataEditor_default = { "fieldWrapper": "vv-HM1uJW-fieldWrapper", "field": "vv-HM1uJW-field", "header": "vv-HM1uJW-header", "body": "vv-HM1uJW-body", "rnd": "vv-HM1uJW-rnd", "uuid": "vv-HM1uJW-uuid", "select": "vv-HM1uJW-select" };
7388
+ init_zD4OrrO_nZ_C_tbFRVPVI4tFeCxVKWh55xsUm2UnlI();
7389
+ src_components_core_editor_MetadataEditor_default = { "field": "vv-EpZxYG-field", "select": "vv-EpZxYG-select", "fieldWrapper": "vv-EpZxYG-fieldWrapper", "uuid": "vv-EpZxYG-uuid", "body": "vv-EpZxYG-body", "rnd": "vv-EpZxYG-rnd", "header": "vv-EpZxYG-header" };
7396
7390
  }
7397
7391
  });
7398
7392
 
@@ -7571,19 +7565,19 @@ var init_useScroll = __esm({
7571
7565
  }
7572
7566
  });
7573
7567
 
7574
- // css-modules:css-modules://iZqIKtJOP1NbKNqrfsMZxTuGLwrmjz2z3nAD38D5UU4.css
7575
- var init_iZqIKtJOP1NbKNqrfsMZxTuGLwrmjz2z3nAD38D5UU4 = __esm({
7576
- "css-modules:css-modules://iZqIKtJOP1NbKNqrfsMZxTuGLwrmjz2z3nAD38D5UU4.css"() {
7568
+ // css-modules:css-modules://iaCWo2kYDTBQ2L8GL49YbDNWJB_OY1blvjUcoVU3Gpw.css
7569
+ var init_iaCWo2kYDTBQ2L8GL49YbDNWJB_OY1blvjUcoVU3Gpw = __esm({
7570
+ "css-modules:css-modules://iaCWo2kYDTBQ2L8GL49YbDNWJB_OY1blvjUcoVU3Gpw.css"() {
7577
7571
  }
7578
7572
  });
7579
7573
 
7580
- // tmp_esbuild1764780799245/_src_components_lazy_index.editor.module.css
7574
+ // tmp_esbuild1766162304688/_src_components_lazy_index.editor.module.css
7581
7575
  var src_components_lazy_index_editor_default;
7582
7576
  var init_src_components_lazy_index_editor = __esm({
7583
- "tmp_esbuild1764780799245/_src_components_lazy_index.editor.module.css"() {
7577
+ "tmp_esbuild1766162304688/_src_components_lazy_index.editor.module.css"() {
7584
7578
  "use strict";
7585
- init_iZqIKtJOP1NbKNqrfsMZxTuGLwrmjz2z3nAD38D5UU4();
7586
- src_components_lazy_index_editor_default = { "pageContainer": "vv-AJwENq-pageContainer", "submit": "vv-AJwENq-submit", "button": "vv-AJwENq-button", "screen": "vv-AJwENq-screen", "alert": "vv-AJwENq-alert", "alertOpenedAnimation": "vv-AJwENq-alertOpenedAnimation", "stickyBar": "vv-AJwENq-stickyBar" };
7579
+ init_iaCWo2kYDTBQ2L8GL49YbDNWJB_OY1blvjUcoVU3Gpw();
7580
+ src_components_lazy_index_editor_default = { "pageContainer": "vv-Opas_a-pageContainer", "screen": "vv-Opas_a-screen", "alert": "vv-Opas_a-alert", "alertOpenedAnimation": "vv-Opas_a-alertOpenedAnimation", "submit": "vv-Opas_a-submit", "stickyBar": "vv-Opas_a-stickyBar", "button": "vv-Opas_a-button" };
7587
7581
  }
7588
7582
  });
7589
7583