@appquality/unguess-design-system 2.10.69 → 2.10.70
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 +12 -0
- package/build/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v2.10.70 (Thu Aug 04 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- fix(item-container): Update label color ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v2.10.69 (Tue Aug 02 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -1055,7 +1055,7 @@ var Label$1 = styled__default["default"](MD)(templateObject_4$a || (templateObje
|
|
|
1055
1055
|
return theme.fontWeights.medium;
|
|
1056
1056
|
}, function (_a) {
|
|
1057
1057
|
var theme = _a.theme;
|
|
1058
|
-
return theme.
|
|
1058
|
+
return theme.palette.grey[800];
|
|
1059
1059
|
});
|
|
1060
1060
|
var Description$2 = styled__default["default"](SM)(templateObject_5$5 || (templateObject_5$5 = __makeTemplateObject(["\n color: ", ";\n"], ["\n color: ", ";\n"])), function (_a) {
|
|
1061
1061
|
var theme = _a.theme;
|
|
@@ -1067,7 +1067,7 @@ var Image$1 = React.memo(function (_a) {
|
|
|
1067
1067
|
});
|
|
1068
1068
|
var ItemContent = function (props) {
|
|
1069
1069
|
var thumbSrc = props.thumbSrc, description = props.description, label = props.label;
|
|
1070
|
-
return (jsxRuntime.jsxs(Container, { children: [thumbSrc && (jsxRuntime.jsx(ThumbContainer, { children: jsxRuntime.jsx(Image$1, { src: thumbSrc }) })), jsxRuntime.jsxs(MetaContainer$1, { children: [label && jsxRuntime.jsx(Label$1, { children: label }), description && jsxRuntime.jsx(Description$2, { children: description })] })] }));
|
|
1070
|
+
return (jsxRuntime.jsxs(Container, { children: [thumbSrc && (jsxRuntime.jsx(ThumbContainer, { children: jsxRuntime.jsx(Image$1, { src: thumbSrc }) })), jsxRuntime.jsxs(MetaContainer$1, { children: [label && jsxRuntime.jsx(Label$1, __assign({ isBold: true }, { children: label })), description && jsxRuntime.jsx(Description$2, { children: description })] })] }));
|
|
1071
1071
|
};
|
|
1072
1072
|
var templateObject_1$X, templateObject_2$o, templateObject_3$f, templateObject_4$a, templateObject_5$5;
|
|
1073
1073
|
|