cozy-ui 110.0.0 → 110.1.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 (49) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/cozy-ui.min.css +1 -1
  3. package/package.json +1 -1
  4. package/react/ActionsMenu/Actions/print.js +7 -1
  5. package/react/BottomSheet/BottomSheet.jsx +7 -2
  6. package/react/Dialog/DialogEffects.spec.tsx +8 -4
  7. package/react/Dialog/DialogEffects.ts +14 -6
  8. package/react/IntentDialogOpener/IntentDialogOpener.md +4 -3
  9. package/react/IntentHeader/styles.styl +2 -2
  10. package/react/IntentIframe/Readme.md +8 -13
  11. package/react/IntentIframe/styles.styl +1 -2
  12. package/react/Layout/Layout.md +52 -14
  13. package/react/Sidebar/index.jsx +3 -1
  14. package/react/Viewer/ViewerInformationsWrapper.jsx +3 -1
  15. package/react/deprecated/ActionMenu/ActionMenuEffects.ts +7 -4
  16. package/react/deprecated/Modal/ModalEffects.ts +15 -6
  17. package/react/deprecated/Modal/index.jsx +21 -3
  18. package/react/providers/CozyTheme/index.jsx +10 -17
  19. package/stylus/components/modals.styl +4 -4
  20. package/stylus/elements/defaults.styl +0 -1
  21. package/stylus/objects/layouts.styl +2 -6
  22. package/transpiled/react/ActionsMenu/Actions/print.js +7 -1
  23. package/transpiled/react/BottomSheet/BottomSheet.js +8 -4
  24. package/transpiled/react/Dialog/DialogEffects.d.ts +3 -2
  25. package/transpiled/react/Dialog/DialogEffects.js +15 -6
  26. package/transpiled/react/MuiCozyTheme/helpers.d.ts +138 -0
  27. package/transpiled/react/MuiCozyTheme/index.d.ts +19 -0
  28. package/transpiled/react/MuiCozyTheme/makePalette.d.ts +1 -0
  29. package/transpiled/react/MuiCozyTheme/makeTheme.d.ts +15 -0
  30. package/transpiled/react/MuiCozyTheme/makeTypography.d.ts +66 -0
  31. package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1427 -0
  32. package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1376 -0
  33. package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1427 -0
  34. package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1376 -0
  35. package/transpiled/react/MuiCozyTheme/theme.d.ts +61 -0
  36. package/transpiled/react/Sidebar/index.js +6 -1
  37. package/transpiled/react/Viewer/ViewerInformationsWrapper.js +6 -1
  38. package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.js +9 -4
  39. package/transpiled/react/deprecated/Modal/ModalEffects.js +12 -6
  40. package/transpiled/react/deprecated/Modal/index.js +23 -9
  41. package/transpiled/react/helpers/isTesting.d.ts +2 -0
  42. package/transpiled/react/hooks/useMediaQuery.d.ts +2 -0
  43. package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
  44. package/transpiled/react/providers/CozyTheme/index.d.ts +38 -0
  45. package/transpiled/react/providers/CozyTheme/index.js +9 -10
  46. package/transpiled/react/providers/CozyTheme/queries.d.ts +8 -0
  47. package/transpiled/react/styles/index.d.ts +1 -0
  48. package/transpiled/react/stylesheet.css +1 -1
  49. package/transpiled/react/utils/color.d.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ # [110.1.0](https://github.com/cozy/cozy-ui/compare/v110.0.1...v110.1.0) (2024-06-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Correct status bar overlay for BottomSheet in flagship app ([cd2c0dc](https://github.com/cozy/cozy-ui/commit/cd2c0dc))
7
+ * **Intent:** Colors for component to be more dark mode compliant ([2c0bd99](https://github.com/cozy/cozy-ui/commit/2c0bd99))
8
+
9
+
10
+ ### Features
11
+
12
+ * Adapt setFlagshipUI to dark mode ([51019b4](https://github.com/cozy/cozy-ui/commit/51019b4))
13
+ * **Modal:** Add theme responsive support ([2168457](https://github.com/cozy/cozy-ui/commit/2168457))
14
+ * Remove class creation on body and fix layout ([afdedbe](https://github.com/cozy/cozy-ui/commit/afdedbe))
15
+
16
+ ## [110.0.1](https://github.com/cozy/cozy-ui/compare/v110.0.0...v110.0.1) (2024-06-19)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Print in Safari ([03bab6b](https://github.com/cozy/cozy-ui/commit/03bab6b))
22
+
1
23
  # [110.0.0](https://github.com/cozy/cozy-ui/compare/v109.2.0...v110.0.0) (2024-06-18)
2
24
 
3
25