ode-explorer 1.4.18-develop-pedago.202409241537 → 1.4.18-develop.202409241510

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 (42) hide show
  1. package/dist/index.html +1 -1
  2. package/dist/index.js +76432 -1206
  3. package/dist/version.txt +1 -1
  4. package/lib/ActionBarContainer.js +166 -172
  5. package/lib/AppAction.js +25 -27
  6. package/lib/DeleteModal.js +4 -6
  7. package/lib/EmptyScreenApp.js +24 -26
  8. package/lib/ExportModal.js +11 -13
  9. package/lib/FolderModal.js +4 -6
  10. package/lib/FoldersList.js +44 -84
  11. package/lib/Library.js +10 -10
  12. package/lib/MoveModal.js +55 -71
  13. package/lib/ResourcesList.js +73 -96
  14. package/lib/components/Explorer.d.ts +1 -1
  15. package/lib/config/{explorer.d.ts → getExplorerConfig.d.ts} +1 -5
  16. package/lib/features/AccessControl/AccessControl.d.ts +1 -1
  17. package/lib/features/ActionBar/Move/useMoveModal.d.ts +4 -3
  18. package/lib/features/ActionBar/useActionBar.d.ts +1 -1
  19. package/lib/features/List/FolderCard.d.ts +2 -6
  20. package/lib/index.d.ts +1 -1
  21. package/lib/index.js +5 -7
  22. package/lib/index2.js +950 -1019
  23. package/lib/store/index.d.ts +33 -87
  24. package/lib/utils/TreeNodeFolderWrapper.d.ts +12 -0
  25. package/lib/utils/addNode.d.ts +6 -0
  26. package/lib/utils/deleteNode.d.ts +4 -0
  27. package/lib/utils/findNodeById.d.ts +2 -0
  28. package/lib/utils/getAncestors.d.ts +2 -0
  29. package/lib/utils/hasChildren.d.ts +2 -0
  30. package/lib/utils/modifyNode.d.ts +2 -0
  31. package/lib/utils/moveNode.d.ts +5 -0
  32. package/lib/utils/updateNode.d.ts +6 -0
  33. package/lib/utils/wrapTreeNode.d.ts +3 -0
  34. package/package.json +5 -7
  35. package/lib/DraggableCard.js +0 -25
  36. package/lib/config/dndkit.d.ts +0 -2
  37. package/lib/config/index.d.ts +0 -2
  38. package/lib/features/DndKit/useDndKit.d.ts +0 -7
  39. package/lib/features/List/DraggableCard.d.ts +0 -6
  40. package/lib/providers/index.d.ts +0 -6
  41. package/lib/services/resource/service.d.ts +0 -11
  42. package/lib/utils/getChildrenIds.d.ts +0 -2
package/dist/index.html CHANGED
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Exploration des ressources</title>
7
7
  <link rel="icon" id="favicon" href="" />
8
- <link rel="stylesheet" href="/assets/themes/edifice-bootstrap/index.css?v=1390335d" />
8
+ <link rel="stylesheet" href="/assets/themes/edifice-bootstrap/index.css?v=7f6efabf" />
9
9
  <script type="module" crossorigin src="/index.js"></script>
10
10
  </head>
11
11