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