@synerise/ds-grid 1.0.1 → 1.1.1

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,25 @@
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
+ ## [1.1.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.1.0...@synerise/ds-grid@1.1.1) (2025-05-07)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-grid
9
+
10
+
11
+
12
+
13
+
14
+ # [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.0.1...@synerise/ds-grid@1.1.0) (2025-04-16)
15
+
16
+
17
+ ### Features
18
+
19
+ * **form-field:** add form-field component ([7f6b191](https://github.com/Synerise/synerise-design/commit/7f6b191132a3b0d694c21fb4d649f4deea6acb89))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.0.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.0.0...@synerise/ds-grid@1.0.1) (2025-03-18)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-grid
package/dist/Grid.js CHANGED
@@ -2,7 +2,7 @@ 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';
5
- export var GridContext = React.createContext({
5
+ export var GridContext = /*#__PURE__*/React.createContext({
6
6
  dimensions: {
7
7
  width: window.innerWidth,
8
8
  height: window.innerHeight
@@ -1,5 +1,5 @@
1
1
  var _excluded = ["children", "contentWrapper"];
2
- 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; }
2
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
3
3
  import React from 'react';
4
4
  import * as S from '../Grid.styles';
5
5
  import { DEFAULT_COLUMNS_NUMBER, GridContext } from '../Grid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-grid",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Grid UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,12 +34,12 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-utils": "^1.0.1"
37
+ "@synerise/ds-utils": "^1.1.0"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@synerise/ds-core": "*",
41
41
  "react": ">=16.9.0 <= 18.3.1",
42
42
  "styled-components": "^5.3.3"
43
43
  },
44
- "gitHead": "218110f61f4371bc04d793b2b976b71d14e99e76"
44
+ "gitHead": "90af7549cf0f556340bdd0deec4bb59bacf3e95e"
45
45
  }