cozy-ui 98.1.1 → 99.0.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.
- package/CHANGELOG.md +20 -0
- package/dist/cozy-ui.min.css +1 -1
- package/dist/cozy-ui.utils.min.css +1 -1
- package/package.json +1 -1
- package/react/ActionsMenu/Actions/helpers.js +20 -0
- package/react/ActionsMenu/Actions/helpers.spec.js +19 -1
- package/react/ActionsMenu/Actions/index.js +1 -0
- package/react/ActionsMenu/Actions/print.js +67 -0
- package/react/ActionsMenu/Readme.md +2 -2
- package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +9 -9
- package/react/__snapshots__/examples.spec.jsx.snap +4 -4
- package/react/deprecated/ActionMenu/Actions/locales/en.json +1 -0
- package/react/deprecated/ActionMenu/Actions/locales/fr.json +1 -0
- package/react/providers/CozyTheme/index.jsx +7 -3
- package/stylus/utilities/display.styl +4 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.js +41 -1
- package/transpiled/react/ActionsMenu/Actions/index.js +1 -0
- package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.js +2 -0
- package/transpiled/react/ActionsMenu/Actions/print.js +105 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.js +2 -0
- package/transpiled/react/providers/CozyTheme/index.js +9 -2
- package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [99.0.0](https://github.com/cozy/cozy-ui/compare/v98.2.0...v99.0.0) (2023-12-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Add `u-dc` utility css class to force `display: contents` ([700df67](https://github.com/cozy/cozy-ui/commit/700df67))
|
|
7
|
+
* **CozyTheme:** Add ignoreItself prop (add `u-dc` css class) ([8c82390](https://github.com/cozy/cozy-ui/commit/8c82390))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* **CozyTheme:** `CozyTheme` use now `display: contents` by default so as not to change the style of the page, since it's just a wrapper that supports styles and nothing else. If this causes problems in the structure of your app, you can always revert to the previous state by setting `<CozyTheme ignoreItself={[secure]}>`.
|
|
13
|
+
|
|
14
|
+
# [98.2.0](https://github.com/cozy/cozy-ui/compare/v98.1.1...v98.2.0) (2023-12-07)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **ActionsMenu:** Add print action ([82d918d](https://github.com/cozy/cozy-ui/commit/82d918d))
|
|
20
|
+
|
|
1
21
|
## [98.1.1](https://github.com/cozy/cozy-ui/compare/v98.1.0...v98.1.1) (2023-12-06)
|
|
2
22
|
|
|
3
23
|
|