cozy-ui 127.3.0 → 127.5.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 (34) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/cozy-ui.min.css +1 -1
  3. package/package.json +1 -1
  4. package/react/GridList/Virtualized/Dnd/GridItem.jsx +86 -0
  5. package/react/GridList/Virtualized/Dnd/index.jsx +67 -0
  6. package/react/GridList/Virtualized/index.jsx +2 -1
  7. package/react/Layout/Layout.jsx +9 -19
  8. package/react/Layout/Layout.md +73 -23
  9. package/react/Table/Virtualized/Dnd/index.jsx +1 -1
  10. package/react/Table/Virtualized/Dnd/virtuosoComponents.jsx +1 -1
  11. package/react/utils/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
  12. package/react/utils/Dnd/CustomDrag/DragPreview.jsx +43 -0
  13. package/react/utils/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
  14. package/react/utils/Dnd/DnDConfigWrapper.jsx +48 -0
  15. package/scripts/screenshots/screenshotComponent.js +4 -8
  16. package/stylus/elements/defaults.styl +1 -11
  17. package/stylus/objects/layouts.styl +13 -47
  18. package/transpiled/react/GridList/Virtualized/Dnd/GridItem.d.ts +7 -0
  19. package/transpiled/react/GridList/Virtualized/Dnd/GridItem.js +139 -0
  20. package/transpiled/react/GridList/Virtualized/Dnd/index.d.ts +13 -0
  21. package/transpiled/react/GridList/Virtualized/Dnd/index.js +81 -0
  22. package/transpiled/react/GridList/Virtualized/index.js +3 -1
  23. package/transpiled/react/Layout/Layout.js +9 -9
  24. package/transpiled/react/Table/Virtualized/Dnd/index.js +1 -1
  25. package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.js +1 -1
  26. package/transpiled/react/stylesheet.css +1 -1
  27. package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
  28. package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.js +47 -0
  29. package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.d.ts +6 -0
  30. package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.js +34 -0
  31. package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
  32. package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
  33. package/transpiled/react/utils/Dnd/DnDConfigWrapper.d.ts +2 -0
  34. package/transpiled/react/utils/Dnd/DnDConfigWrapper.js +55 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [127.5.0](https://github.com/cozy/cozy-ui/compare/v127.4.0...v127.5.0) (2025-07-29)
2
+
3
+
4
+ ### Features
5
+
6
+ * **Layout:** Simplify the approach and make it compliant with v-tables ([0936323](https://github.com/cozy/cozy-ui/commit/0936323))
7
+
8
+ # [127.4.0](https://github.com/cozy/cozy-ui/compare/v127.3.0...v127.4.0) (2025-07-21)
9
+
10
+
11
+ ### Features
12
+
13
+ * implement virtualized grid list drag and drop :sparkles: ([c4f93a1](https://github.com/cozy/cozy-ui/commit/c4f93a1))
14
+
1
15
  # [127.3.0](https://github.com/cozy/cozy-ui/compare/v127.2.0...v127.3.0) (2025-07-21)
2
16
 
3
17