cozy-ui 85.8.1 → 85.9.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 +14 -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/Alerter/styles.styl +0 -1
- package/react/Checkbox/styles.styl +0 -1
- package/react/CozyTheme/index.jsx +5 -7
- package/react/Dialog/index.jsx +1 -5
- package/react/HistoryRow/styles.styl +1 -1
- package/react/Infos/styles.styl +0 -1
- package/react/InfosCarrousel/styles.styl +0 -1
- package/react/InlineCard/styles.styl +0 -1
- package/react/Modal/styles.styl +0 -2
- package/react/Nav/styles.styl +0 -1
- package/react/SelectBox/styles.styl +0 -1
- package/react/SelectionBar/styles.styl +0 -1
- package/react/Spinner/styles.styl +0 -1
- package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +7 -7
- package/react/Stack/styles.styl +1 -1
- package/react/Toggle/styles.styl +0 -1
- package/react/UploadQueue/styles.styl +0 -1
- package/react/Viewer/ViewersByFile/styles.styl +0 -1
- package/react/Viewer/components/styles.styl +0 -1
- package/react/Viewer/styles.styl +0 -1
- package/stylus/components/card.styl +0 -1
- package/stylus/components/chip.styl +0 -1
- package/stylus/components/panels.styl +1 -1
- package/stylus/components/selectionbar.styl +0 -1
- package/stylus/cozy-ui/utils.styl +1 -0
- package/transpiled/react/Alerter/Alert.js +0 -2
- package/transpiled/react/Card/index.js +0 -2
- package/transpiled/react/Chip/index.js +0 -2
- package/transpiled/react/CozyTheme/index.js +2 -9
- package/transpiled/react/Dialog/index.js +1 -5
- package/transpiled/react/Infos/index.js +0 -2
- package/transpiled/react/InfosCarrousel/index.js +0 -2
- package/transpiled/react/InlineCard/index.js +0 -2
- package/transpiled/react/Modal/ModalBackButton.js +0 -2
- package/transpiled/react/Modal/ModalButtons.js +0 -2
- package/transpiled/react/Modal/ModalContent.js +0 -2
- package/transpiled/react/Modal/ModalCross.js +0 -2
- package/transpiled/react/Modal/ModalFooter.js +0 -2
- package/transpiled/react/Modal/ModalHeader.js +0 -2
- package/transpiled/react/Modal/ModalSection.js +0 -2
- package/transpiled/react/Modal/index.js +0 -2
- package/transpiled/react/Nav/index.js +0 -2
- package/transpiled/react/SelectBox/SelectBox.js +0 -2
- package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.js +0 -2
- package/transpiled/react/SelectionBar/SelectionBarAction.js +0 -2
- package/transpiled/react/SelectionBar/SelectionBarMore.js +0 -2
- package/transpiled/react/SelectionBar/index.js +0 -2
- package/transpiled/react/Spinner/index.js +0 -2
- package/transpiled/react/Toggle/index.js +0 -2
- package/transpiled/react/UploadQueue/index.js +0 -2
- package/transpiled/react/Viewer/NoViewer/NoViewer.js +0 -2
- package/transpiled/react/Viewer/ViewerContainer.js +0 -2
- package/transpiled/react/Viewer/ViewerWithCustomPanelAndFooter.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/AudioViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/ImageViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/NoNetworkViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/PdfJsViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/PdfMobileViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/TextViewer.js +0 -2
- package/transpiled/react/Viewer/ViewersByFile/VideoViewer.js +0 -2
- package/transpiled/react/Viewer/components/Footer.js +0 -2
- package/transpiled/react/Viewer/components/Navigation.js +0 -2
- package/transpiled/react/Viewer/components/Toolbar.js +0 -2
- package/transpiled/react/Viewer/components/ViewerControls.js +0 -2
- package/transpiled/react/stylesheet.css +1 -1
- package/react/utilities.js +0 -5
- package/transpiled/react/utilities.js +0 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [85.9.0](https://github.com/cozy/cozy-ui/compare/v85.8.1...v85.9.0) (2023-06-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **css:** Avoid importing palette.styl and utils.styl in each css of ([311644b](https://github.com/cozy/cozy-ui/commit/311644b))
|
|
7
|
+
* **css:** Now import spaces stylus method from settings ([087245b](https://github.com/cozy/cozy-ui/commit/087245b))
|
|
8
|
+
* Now remove useless import of display css utilities ([ee6553a](https://github.com/cozy/cozy-ui/commit/ee6553a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Remove direct import of palette.styl in legacy components ([95ac529](https://github.com/cozy/cozy-ui/commit/95ac529))
|
|
14
|
+
|
|
1
15
|
## [85.8.1](https://github.com/cozy/cozy-ui/compare/v85.8.0...v85.8.1) (2023-06-16)
|
|
2
16
|
|
|
3
17
|
|