cozy-ui 62.4.2 → 62.5.1

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 (60) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/cozy-ui.min.css +1 -1
  3. package/package.json +6 -6
  4. package/react/ActionMenu/__snapshots__/index.spec.jsx.snap +142 -0
  5. package/react/ActionMenu/index.spec.jsx +36 -1
  6. package/react/AppLinker/native.js +1 -2
  7. package/react/AppTile/index.jsx +2 -2
  8. package/react/BottomDrawer/index.jsx +4 -4
  9. package/react/BottomSheet/BottomSheet.jsx +2 -0
  10. package/react/Buttons/Readme.md +2 -0
  11. package/react/Buttons/index.jsx +40 -36
  12. package/react/ContactPicker/index.spec.jsx +6 -3
  13. package/react/ContactsList/ContactRow.jsx +16 -16
  14. package/react/ContactsList/ContactRow.spec.js +2 -2
  15. package/react/ContactsList/Contacts/ContactCozy.jsx +5 -1
  16. package/react/ContactsList/Contacts/ContactEmail.jsx +5 -1
  17. package/react/ContactsList/Contacts/ContactIdentity.jsx +13 -10
  18. package/react/ContactsList/Contacts/ContactName.jsx +28 -14
  19. package/react/ContactsList/Contacts/ContactPhone.jsx +5 -1
  20. package/react/ContactsList/ContactsList.jsx +19 -23
  21. package/react/ContactsList/__snapshots__/ContactRow.spec.js.snap +18 -13
  22. package/react/ContactsList/styles.styl +6 -39
  23. package/react/InfosCarrousel/index.jsx +4 -2
  24. package/react/IntentDialogOpener/IntentDialogOpener.jsx +5 -5
  25. package/react/Labs/PasswordInput/helpers.js +8 -4
  26. package/react/LoadMore/index.jsx +2 -0
  27. package/react/SelectionBar/index.jsx +2 -0
  28. package/react/UploadQueue/index.jsx +2 -0
  29. package/react/ViewStack/ModalStack.jsx +2 -2
  30. package/react/Viewer/PdfMobileViewer.jsx +1 -0
  31. package/react/__snapshots__/examples.spec.jsx.snap +1384 -1516
  32. package/react/examples.spec.jsx +0 -1
  33. package/react/helpers/tracker.jsx +9 -16
  34. package/react/helpers/useInstance.jsx +1 -0
  35. package/react/hooks/useRealtime.js +1 -0
  36. package/stylus/components/table.styl +4 -4
  37. package/transpiled/react/AppLinker/native.js +1 -2
  38. package/transpiled/react/AppTile/index.js +2 -2
  39. package/transpiled/react/BottomDrawer/index.js +4 -4
  40. package/transpiled/react/BottomSheet/BottomSheet.js +2 -1
  41. package/transpiled/react/Buttons/index.js +23 -14
  42. package/transpiled/react/ContactsList/ContactRow.js +20 -23
  43. package/transpiled/react/ContactsList/Contacts/ContactCozy.js +5 -7
  44. package/transpiled/react/ContactsList/Contacts/ContactEmail.js +5 -7
  45. package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +15 -13
  46. package/transpiled/react/ContactsList/Contacts/ContactName.js +25 -27
  47. package/transpiled/react/ContactsList/Contacts/ContactPhone.js +5 -7
  48. package/transpiled/react/ContactsList/ContactsList.js +14 -33
  49. package/transpiled/react/InfosCarrousel/index.js +8 -5
  50. package/transpiled/react/IntentDialogOpener/IntentDialogOpener.js +7 -5
  51. package/transpiled/react/Labs/PasswordInput/helpers.js +10 -3
  52. package/transpiled/react/LoadMore/index.js +2 -0
  53. package/transpiled/react/SelectionBar/index.js +2 -1
  54. package/transpiled/react/UploadQueue/index.js +2 -1
  55. package/transpiled/react/ViewStack/ModalStack.js +2 -2
  56. package/transpiled/react/Viewer/PdfMobileViewer.js +2 -1
  57. package/transpiled/react/helpers/tracker.js +14 -9
  58. package/transpiled/react/helpers/useInstance.js +1 -1
  59. package/transpiled/react/hooks/useRealtime.js +1 -1
  60. package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## [62.5.1](https://github.com/cozy/cozy-ui/compare/v62.5.0...v62.5.1) (2022-04-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Propagate the ref on the MUIButton ([86f52eb](https://github.com/cozy/cozy-ui/commit/86f52eb))
7
+
8
+ # [62.5.0](https://github.com/cozy/cozy-ui/compare/v62.4.3...v62.5.0) (2022-04-05)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Table use theme colors ([7339482](https://github.com/cozy/cozy-ui/commit/7339482))
14
+
15
+
16
+ ### Features
17
+
18
+ * ContactsList behave as Contacts app does ([5a3837c](https://github.com/cozy/cozy-ui/commit/5a3837c))
19
+
20
+ ## [62.4.3](https://github.com/cozy/cozy-ui/compare/v62.4.2...v62.4.3) (2022-04-01)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **deps:** update babel monorepo ([e0f7159](https://github.com/cozy/cozy-ui/commit/e0f7159))
26
+ * **deps:** update dependency kss to v3.0.1 ([31d81b2](https://github.com/cozy/cozy-ui/commit/31d81b2))
27
+ * **deps:** update dependency react-redux to v7.2.7 ([0af0356](https://github.com/cozy/cozy-ui/commit/0af0356))
28
+
1
29
  ## [62.4.2](https://github.com/cozy/cozy-ui/compare/v62.4.1...v62.4.2) (2022-04-01)
2
30
 
3
31