@appquality/unguess-design-system 2.12.80 → 2.12.82

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 CHANGED
@@ -1,3 +1,31 @@
1
+ # v2.12.82 (Wed Mar 22 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - z-index fix [#227](https://github.com/AppQuality/unguess-design-system/pull/227) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
6
+ - feat(nav): higher z-index to nav toggle [#226](https://github.com/AppQuality/unguess-design-system/pull/226) ([@iacopolea](https://github.com/iacopolea))
7
+
8
+ #### Authors: 2
9
+
10
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
11
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
12
+
13
+ ---
14
+
15
+ # v2.12.81 (Thu Mar 09 2023)
16
+
17
+ #### 🐛 Bug Fix
18
+
19
+ - Hide sidebar below md breakpoint [#225](https://github.com/AppQuality/unguess-design-system/pull/225) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
20
+ - fix(nav): change mobile breakpoint and mobile first [#224](https://github.com/AppQuality/unguess-design-system/pull/224) ([@iacopolea](https://github.com/iacopolea))
21
+
22
+ #### Authors: 2
23
+
24
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
25
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
26
+
27
+ ---
28
+
1
29
  # v2.12.80 (Wed Mar 01 2023)
2
30
 
3
31
  #### 🐛 Bug Fix
package/build/index.js CHANGED
@@ -3119,25 +3119,20 @@ const AppHeader = (_a) => {
3119
3119
  };
3120
3120
 
3121
3121
  const UgNav = styled__default["default"](reactChrome.Nav) `
3122
- border-right: ${({ theme }) => theme.borders.sm};
3123
- border-color: ${({ theme }) => reactTheming.getColor(theme.colors.neutralHue, 300)};
3122
+ width: ${p => p.isExpanded ? "100%" : "0"};
3123
+ padding-top: ${({ theme }) => theme.space.sm};
3124
+ margin-left: 0;
3125
+ border-right: none;
3124
3126
  transition: all 0.25s ease;
3125
- ${(props) => `
3126
- margin-left: ${props.isExpanded
3127
+
3128
+ @media (min-width: ${p => p.theme.breakpoints.md}) {
3129
+ border-right: ${({ theme }) => theme.borders.sm};
3130
+ border-color: ${({ theme }) => reactTheming.getColor(theme.colors.neutralHue, 300)};
3131
+ width: ${p => p.theme.components.chrome.nav.openWidth}px;
3132
+ margin-left: ${p => p.isExpanded
3127
3133
  ? 0
3128
- : -(props.theme.components.chrome.nav.openWidth -
3129
- props.theme.components.chrome.nav.closedWidth)}px;
3130
- width: ${props.theme.components.chrome.nav.openWidth}px;
3131
-
3132
- @media (max-width: ${props.theme.breakpoints.sm}) {
3133
- width: ${props.isExpanded ? "100%" : "0"};
3134
- margin-left: 0;
3135
- border-right: none;
3136
- }
3137
- `}
3138
- // transition: width 0.25s ease-in-out;
3139
- padding-top: ${({ theme }) => theme.space.sm};
3140
- @media (min-width: ${({ theme }) => theme.breakpoints.sm}) {
3134
+ : -(p.theme.components.chrome.nav.openWidth -
3135
+ p.theme.components.chrome.nav.closedWidth)}px;
3141
3136
  padding-left: ${({ theme }) => theme.space.xs};
3142
3137
  }
3143
3138
  `;
@@ -3212,6 +3207,7 @@ var SvgChevronLeftStroke = function SvgChevronLeftStroke(props) {
3212
3207
  };
3213
3208
 
3214
3209
  const StyledToggle = styled__default["default"](IconButton) `
3210
+ display: none;
3215
3211
  width: ${({ theme }) => theme.space.base * 6}px;
3216
3212
  height: ${({ theme }) => theme.space.base * 6}px;
3217
3213
  min-width: ${({ theme }) => theme.space.md};
@@ -3219,9 +3215,9 @@ const StyledToggle = styled__default["default"](IconButton) `
3219
3215
  top: ${({ theme }) => theme.space.base * 3}px;
3220
3216
  right: -${({ theme }) => theme.space.base * 3}px;
3221
3217
  background: ${({ theme }) => theme.gradients.dark}};
3222
- z-index: 1;
3223
- @media (max-width: ${({ theme }) => theme.breakpoints.sm}) {
3224
- display: none;
3218
+ z-index: 3;
3219
+ @media (min-width: ${({ theme }) => theme.breakpoints.md}) {
3220
+ display: block;
3225
3221
  }
3226
3222
  `;
3227
3223
  const NavToggle = (props) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "2.12.80",
3
+ "version": "2.12.82",
4
4
  "dependencies": {
5
5
  "@nivo/bar": "^0.80.0",
6
6
  "@nivo/bullet": "^0.80.0",