@synerise/ds-grid 0.3.71 → 0.3.72

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.3.72](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@0.3.71...@synerise/ds-grid@0.3.72) (2024-10-21)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-grid
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.3.71](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@0.3.70...@synerise/ds-grid@0.3.71) (2024-10-01)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-grid
package/dist/Grid.d.ts CHANGED
@@ -7,7 +7,8 @@ export declare const GridContext: React.Context<{
7
7
  };
8
8
  }>;
9
9
  export declare const DEFAULT_COLUMNS_NUMBER = 24;
10
- declare const Grid: React.FC<GridProps> & {
11
- Item: React.ElementType;
10
+ declare const Grid: {
11
+ ({ children, gutter, style }: GridProps): React.JSX.Element;
12
+ Item: React.FC<import("./Grid.types").GridItemProps>;
12
13
  };
13
14
  export default Grid;
@@ -1,7 +1,6 @@
1
1
  export declare const GridContainer: import("styled-components").StyledComponent<"div", any, {
2
2
  columns: number;
3
3
  gutter: number;
4
- style?: CSSStyleRule | undefined;
5
4
  }, never>;
6
5
  export declare const GridItem: import("styled-components").StyledComponent<"div", any, {
7
6
  columns?: number | undefined;
@@ -1,8 +1,8 @@
1
- import React from 'react';
1
+ import { CSSProperties, ReactNode } from 'react';
2
2
  export type GridProps = {
3
3
  gutter?: number;
4
- style?: CSSStyleRule;
5
- children?: React.ReactNode | React.ReactNode[];
4
+ style?: CSSProperties;
5
+ children?: ReactNode | ReactNode[];
6
6
  };
7
7
  export type GridItemProps = {
8
8
  contentWrapper?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-grid",
3
- "version": "0.3.71",
3
+ "version": "0.3.72",
4
4
  "description": "Grid UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -41,5 +41,5 @@
41
41
  "react": ">=16.9.0 <= 17.0.2",
42
42
  "styled-components": "5.0.1"
43
43
  },
44
- "gitHead": "2389b995aa44e42ec1dd9a177c7ab1f1a0001a70"
44
+ "gitHead": "e8e5f3ad6ef7c84de801b5097c715e0320c12350"
45
45
  }