@appquality/unguess-design-system 2.12.74 → 2.12.76
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 +26 -0
- package/build/index.js +5 -1
- package/build/stories/grid/grid/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v2.12.76 (Thu Feb 23 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Grid [#214](https://github.com/AppQuality/unguess-design-system/pull/214) ([@marcbon](https://github.com/marcbon))
|
|
6
|
+
- fix(grid): restore default gutter + remove side padding [#213](https://github.com/AppQuality/unguess-design-system/pull/213) ([@marcbon](https://github.com/marcbon))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v2.12.75 (Wed Feb 22 2023)
|
|
15
|
+
|
|
16
|
+
#### 🐛 Bug Fix
|
|
17
|
+
|
|
18
|
+
- Grid [#212](https://github.com/AppQuality/unguess-design-system/pull/212) ([@marcbon](https://github.com/marcbon))
|
|
19
|
+
- fix(grid): set default gutter false [#211](https://github.com/AppQuality/unguess-design-system/pull/211) ([@marcbon](https://github.com/marcbon))
|
|
20
|
+
|
|
21
|
+
#### Authors: 1
|
|
22
|
+
|
|
23
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v2.12.74 (Wed Feb 22 2023)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -2788,13 +2788,17 @@ const Col = (props) => jsxRuntime.jsx(StyledCol$1, Object.assign({}, props));
|
|
|
2788
2788
|
|
|
2789
2789
|
const Row$1 = (props) => jsxRuntime.jsx(reactGrid.Row, Object.assign({}, props));
|
|
2790
2790
|
|
|
2791
|
+
const UgGrid = styled__default["default"](reactGrid.Grid) `
|
|
2792
|
+
padding-left: 0;
|
|
2793
|
+
padding-right: 0;
|
|
2794
|
+
`;
|
|
2791
2795
|
/**
|
|
2792
2796
|
* The Grid component is a framework for building modular layouts.
|
|
2793
2797
|
* <hr>
|
|
2794
2798
|
* Used for this:
|
|
2795
2799
|
- To structure the layout of a page
|
|
2796
2800
|
*/
|
|
2797
|
-
const Grid = (props) => jsxRuntime.jsx(
|
|
2801
|
+
const Grid = (props) => jsxRuntime.jsx(UgGrid, Object.assign({}, props));
|
|
2798
2802
|
|
|
2799
2803
|
var _path$q;
|
|
2800
2804
|
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|