cozy-ui 95.7.0 → 95.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/package.json +1 -1
- package/react/AppSections/locales/en.json +2 -1
- package/react/AppSections/locales/fr.json +2 -1
- package/react/CozyDialogs/IllustrationDialog.jsx +1 -1
- package/transpiled/react/AppSections/Sections.js +4 -2
- package/transpiled/react/CozyDialogs/IllustrationDialog.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [95.9.0](https://github.com/cozy/cozy-ui/compare/v95.8.0...v95.9.0) (2023-11-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Add content push to IllustrationDialog ([4880f78](https://github.com/cozy/cozy-ui/commit/4880f78))
|
|
7
|
+
|
|
8
|
+
# [95.8.0](https://github.com/cozy/cozy-ui/compare/v95.7.0...v95.8.0) (2023-11-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Add pro category to Sections translation ([485c7c4](https://github.com/cozy/cozy-ui/commit/485c7c4))
|
|
14
|
+
|
|
1
15
|
# [95.7.0](https://github.com/cozy/cozy-ui/compare/v95.6.0...v95.7.0) (2023-11-07)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -46,7 +46,7 @@ const IllustrationDialog = props => {
|
|
|
46
46
|
/>
|
|
47
47
|
)}
|
|
48
48
|
<DialogContent {...dialogContentProps}>
|
|
49
|
-
<div className="dialogContentInner withFluidActions">
|
|
49
|
+
<div className="dialogContentInner withFluidActions u-pt-1-half">
|
|
50
50
|
{title && (
|
|
51
51
|
<div className="dialogTitleFluidContainer">
|
|
52
52
|
<DialogTitle
|
|
@@ -49,7 +49,8 @@ var en = {
|
|
|
49
49
|
shopping: "Shopping",
|
|
50
50
|
social: "Social",
|
|
51
51
|
telecom: "Telecom",
|
|
52
|
-
transport: "Transportation"
|
|
52
|
+
transport: "Transportation",
|
|
53
|
+
pro: "Work"
|
|
53
54
|
},
|
|
54
55
|
sections: {
|
|
55
56
|
applications: "Applications",
|
|
@@ -80,7 +81,8 @@ var fr = {
|
|
|
80
81
|
shopping: "Shopping",
|
|
81
82
|
social: "Social",
|
|
82
83
|
telecom: "Mobile",
|
|
83
|
-
transport: "Voyage et transport"
|
|
84
|
+
transport: "Voyage et transport",
|
|
85
|
+
pro: "Travail"
|
|
84
86
|
},
|
|
85
87
|
sections: {
|
|
86
88
|
applications: "Applications",
|
|
@@ -43,7 +43,7 @@ var IllustrationDialog = function IllustrationDialog(props) {
|
|
|
43
43
|
"data-testid": "modal-backclose-button-".concat(id),
|
|
44
44
|
onClick: onBackOrClose
|
|
45
45
|
}), /*#__PURE__*/React.createElement(DialogContent, dialogContentProps, /*#__PURE__*/React.createElement("div", {
|
|
46
|
-
className: "dialogContentInner withFluidActions"
|
|
46
|
+
className: "dialogContentInner withFluidActions u-pt-1-half"
|
|
47
47
|
}, title && /*#__PURE__*/React.createElement("div", {
|
|
48
48
|
className: "dialogTitleFluidContainer"
|
|
49
49
|
}, /*#__PURE__*/React.createElement(DialogTitle, _extends({}, dialogTitleProps, {
|