@appquality/unguess-design-system 2.12.14 → 2.12.16
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 +25 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v2.12.16 (Thu Oct 06 2022)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `master`
|
|
4
|
+
|
|
5
|
+
- Merge branch 'master' of github.com:AppQuality/unguess-design-system ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- fix(sidebar): remove margin-left on sm breakpoint ([@cannarocks](https://github.com/cannarocks))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v2.12.15 (Thu Sep 29 2022)
|
|
15
|
+
|
|
16
|
+
#### ⚠️ Pushed to `master`
|
|
17
|
+
|
|
18
|
+
- chore(export): export special-cards ([@marcbon](https://github.com/marcbon))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v2.12.14 (Wed Sep 28 2022)
|
|
2
27
|
|
|
3
28
|
#### ⚠️ Pushed to `master`
|
package/build/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./stories/campaign-cards";
|
|
|
13
13
|
export * from "./stories/product-cards";
|
|
14
14
|
export * from "./stories/service-cards";
|
|
15
15
|
export * from "./stories/info-cards";
|
|
16
|
+
export * from "./stories/special-cards";
|
|
16
17
|
export * from "./stories/close";
|
|
17
18
|
export * from "./stories/counter";
|
|
18
19
|
export * from "./stories/drawers";
|
package/build/index.js
CHANGED
|
@@ -1994,7 +1994,7 @@ var UgNav = styled__default["default"](reactChrome.Nav)(templateObject_1$x || (t
|
|
|
1994
1994
|
return "\n margin-left: ".concat(props.isExpanded
|
|
1995
1995
|
? 0
|
|
1996
1996
|
: -(props.theme.components.chrome.nav.openWidth -
|
|
1997
|
-
props.theme.components.chrome.nav.closedWidth), "px;\n width: ").concat(props.theme.components.chrome.nav.openWidth, "px;\n \n @media (max-width: ").concat(props.theme.breakpoints.sm, ") {\n width: ").concat(props.isExpanded ? "100%" : "0", ";\n border-right: none;\n }\n ");
|
|
1997
|
+
props.theme.components.chrome.nav.closedWidth), "px;\n width: ").concat(props.theme.components.chrome.nav.openWidth, "px;\n \n @media (max-width: ").concat(props.theme.breakpoints.sm, ") {\n width: ").concat(props.isExpanded ? "100%" : "0", ";\n margin-left: 0;\n border-right: none;\n }\n ");
|
|
1998
1998
|
}, function (_a) {
|
|
1999
1999
|
var theme = _a.theme;
|
|
2000
2000
|
return theme.space.sm;
|
|
@@ -3253,6 +3253,7 @@ exports.ServiceCard = ServiceCard;
|
|
|
3253
3253
|
exports.Sidebar = Sidebar;
|
|
3254
3254
|
exports.Skeleton = Skeleton;
|
|
3255
3255
|
exports.Span = Span;
|
|
3256
|
+
exports.SpecialCard = SpecialCard;
|
|
3256
3257
|
exports.Spinner = Spinner;
|
|
3257
3258
|
exports.SplitButton = SplitButton;
|
|
3258
3259
|
exports.Stepper = Stepper;
|