@appquality/unguess-design-system 2.8.15 → 2.8.18
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 +38 -0
- package/build/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
# v2.8.18 (Thu Apr 14 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- fix(menuitem): fix disabled style to svg icons ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.8.17 (Thu Apr 14 2022)
|
|
14
|
+
|
|
15
|
+
#### ⚠️ Pushed to `master`
|
|
16
|
+
|
|
17
|
+
- Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
|
|
18
|
+
- feat(dropdown): add opacity on svg when an item is disabled ([@cannarocks](https://github.com/cannarocks))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# v2.8.16 (Thu Apr 14 2022)
|
|
27
|
+
|
|
28
|
+
#### ⚠️ Pushed to `master`
|
|
29
|
+
|
|
30
|
+
- Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
|
|
31
|
+
- fix(dropdown): if primary the color must be applied only on component svgs ([@cannarocks](https://github.com/cannarocks))
|
|
32
|
+
|
|
33
|
+
#### Authors: 1
|
|
34
|
+
|
|
35
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
1
39
|
# v2.8.9 (Wed Apr 13 2022)
|
|
2
40
|
|
|
3
41
|
#### ⚠️ Pushed to `master`
|
package/build/index.js
CHANGED
|
@@ -876,7 +876,7 @@ var index$1 = /*#__PURE__*/Object.freeze({
|
|
|
876
876
|
Field: Field$1
|
|
877
877
|
});
|
|
878
878
|
|
|
879
|
-
var UgItem = styled__default["default"](reactDropdowns.Item)(templateObject_1$G || (templateObject_1$G = __makeTemplateObject(["\n &:hover {\n background-color: ", ";\n }\n"], ["\n &:hover {\n background-color: ", ";\n }\n"])), function (_a) {
|
|
879
|
+
var UgItem = styled__default["default"](reactDropdowns.Item)(templateObject_1$G || (templateObject_1$G = __makeTemplateObject(["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"], ["\n &[disabled] svg {\n opacity: 0.5;\n }\n &:hover {\n background-color: ", ";\n }\n"])), function (_a) {
|
|
880
880
|
var theme = _a.theme;
|
|
881
881
|
return theme.palette.blue[100];
|
|
882
882
|
});
|
|
@@ -909,7 +909,7 @@ var Multiselect = function (props) { return (jsxRuntime.jsx(reactDropdowns.Multi
|
|
|
909
909
|
|
|
910
910
|
var UgSelect = styled__default["default"](reactDropdowns.Select)(templateObject_1$E || (templateObject_1$E = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), function (props) {
|
|
911
911
|
return props.isPrimary &&
|
|
912
|
-
"\n background-color: ".concat(props.theme.palette.blue[600], ";\n color: white;\n & svg {\n color: white;\n }\n ");
|
|
912
|
+
"\n background-color: ".concat(props.theme.palette.blue[600], ";\n color: white;\n & svg[data-garden-id=\"forms.media_figure\"] {\n color: white;\n }\n ");
|
|
913
913
|
});
|
|
914
914
|
/**
|
|
915
915
|
* Select allows a user to pick one option from a list. This helps simplify the UI when space is limited
|