@synerise/ds-grid 0.3.68 → 0.3.70

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,22 @@
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.70](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@0.3.69...@synerise/ds-grid@0.3.70) (2024-09-26)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-grid
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.69](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@0.3.68...@synerise/ds-grid@0.3.69) (2024-09-17)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-grid
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.68](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@0.3.67...@synerise/ds-grid@0.3.68) (2024-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-grid
package/dist/Grid.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { GridProps } from './Grid.types';
3
3
  export declare const GridContext: React.Context<{
4
4
  dimensions: {
package/dist/Grid.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { useBreakpoint } from '@synerise/ds-utils';
3
3
  import * as S from './Grid.styles';
4
4
  import Item from './GridItem/GridItem';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  export type GridProps = {
3
3
  gutter?: number;
4
4
  style?: CSSStyleRule;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { GridItemProps } from '../Grid.types';
3
3
  declare const Item: React.FC<GridItemProps>;
4
4
  export default Item;
@@ -2,7 +2,7 @@ var _excluded = ["children", "contentWrapper"];
2
2
 
3
3
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
4
4
 
5
- import * as React from 'react';
5
+ import React from 'react';
6
6
  import * as S from '../Grid.styles';
7
7
  import { DEFAULT_COLUMNS_NUMBER, GridContext } from '../Grid';
8
8
  var BREAKPOINTS = ['xxl', 'xl', 'lg', 'md', 'sm', 'xs'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-grid",
3
- "version": "0.3.68",
3
+ "version": "0.3.70",
4
4
  "description": "Grid UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -25,7 +25,8 @@
25
25
  "prepublish": "npm run build",
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
28
- "types": "tsc --noEmit"
28
+ "types": "tsc --noEmit",
29
+ "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
29
30
  },
30
31
  "sideEffects": [
31
32
  "dist/style/*",
@@ -33,12 +34,12 @@
33
34
  ],
34
35
  "types": "dist/index.d.ts",
35
36
  "dependencies": {
36
- "@synerise/ds-utils": "^0.29.2"
37
+ "@synerise/ds-utils": "^0.29.4"
37
38
  },
38
39
  "peerDependencies": {
39
40
  "@synerise/ds-core": "*",
40
41
  "react": ">=16.9.0 <= 17.0.2",
41
42
  "styled-components": "5.0.1"
42
43
  },
43
- "gitHead": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
44
+ "gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
44
45
  }