@appquality/unguess-design-system 2.12.74 → 2.12.75
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,16 @@
|
|
|
1
|
+
# v2.12.75 (Wed Feb 22 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Grid [#212](https://github.com/AppQuality/unguess-design-system/pull/212) ([@marcbon](https://github.com/marcbon))
|
|
6
|
+
- fix(grid): set default gutter false [#211](https://github.com/AppQuality/unguess-design-system/pull/211) ([@marcbon](https://github.com/marcbon))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v2.12.74 (Wed Feb 22 2023)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -2794,7 +2794,10 @@ const Row$1 = (props) => jsxRuntime.jsx(reactGrid.Row, Object.assign({}, props))
|
|
|
2794
2794
|
* Used for this:
|
|
2795
2795
|
- To structure the layout of a page
|
|
2796
2796
|
*/
|
|
2797
|
-
const Grid = (
|
|
2797
|
+
const Grid = (_a) => {
|
|
2798
|
+
var { gutters = false } = _a, props = __rest(_a, ["gutters"]);
|
|
2799
|
+
return (jsxRuntime.jsx(reactGrid.Grid, Object.assign({ gutters: gutters }, props)));
|
|
2800
|
+
};
|
|
2798
2801
|
|
|
2799
2802
|
var _path$q;
|
|
2800
2803
|
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); }
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { GridArgs } from
|
|
1
|
+
import { GridArgs } from "./_types";
|
|
2
2
|
/**
|
|
3
3
|
* The Grid component is a framework for building modular layouts.
|
|
4
4
|
* <hr>
|
|
5
5
|
* Used for this:
|
|
6
6
|
- To structure the layout of a page
|
|
7
7
|
*/
|
|
8
|
-
declare const Grid: (props: GridArgs) => JSX.Element;
|
|
8
|
+
declare const Grid: ({ gutters, ...props }: GridArgs) => JSX.Element;
|
|
9
9
|
export { Grid };
|
|
@@ -7,5 +7,5 @@ interface GridProps extends GridArgs {
|
|
|
7
7
|
export declare const Default: Story<GridProps>;
|
|
8
8
|
export declare const EqualColumns: Story<GridProps>;
|
|
9
9
|
export declare const OneWiderColumn: Story<GridProps>;
|
|
10
|
-
declare const _default: ComponentMeta<(props: GridArgs) => JSX.Element>;
|
|
10
|
+
declare const _default: ComponentMeta<({ gutters, ...props }: GridArgs) => JSX.Element>;
|
|
11
11
|
export default _default;
|