@synerise/ds-grid 1.1.13 → 1.1.15
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 +8 -0
- package/README.md +8 -7
- package/package.json +3 -3
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
|
+
## [1.1.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.1.14...@synerise/ds-grid@1.1.15) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-grid
|
|
9
|
+
|
|
10
|
+
## [1.1.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.1.13...@synerise/ds-grid@1.1.14) (2026-02-05)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-grid
|
|
13
|
+
|
|
6
14
|
## [1.1.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-grid@1.1.12...@synerise/ds-grid@1.1.13) (2026-01-29)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-grid
|
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ import Grid from '@synerise/ds-grid'
|
|
|
21
21
|
<Grid>
|
|
22
22
|
<Grid.Item xxl={12} xl={8} lg={6} md={4} sm={4} xs={3}>
|
|
23
23
|
<Card>...</Card>
|
|
24
|
-
</Grid>
|
|
24
|
+
</Grid.Item>
|
|
25
25
|
<Grid.Item xxl={12} xl={8} lg={6} md={4} sm={4} xs={3}>
|
|
26
26
|
<Card>...</Card>
|
|
27
|
-
</Grid>
|
|
27
|
+
</Grid.Item>
|
|
28
28
|
<Grid.Item xxl={12} xl={8} lg={6} md={4} sm={4} xs={3}>
|
|
29
29
|
<Card>...</Card>
|
|
30
|
-
</Grid>
|
|
30
|
+
</Grid.Item>
|
|
31
31
|
</Grid>
|
|
32
32
|
|
|
33
33
|
```
|
|
@@ -40,9 +40,10 @@ import Grid from '@synerise/ds-grid'
|
|
|
40
40
|
|
|
41
41
|
### Grid
|
|
42
42
|
|
|
43
|
-
| Property | Description | Type
|
|
44
|
-
| -------- | -------------------------- |
|
|
45
|
-
| gutter | Spacing between grids (px) | number
|
|
43
|
+
| Property | Description | Type | Default |
|
|
44
|
+
| -------- | -------------------------- | ------------- | ------- |
|
|
45
|
+
| gutter | Spacing between grids (px) | number | 24 |
|
|
46
|
+
| style | Inline style on the grid container | CSSProperties | - |
|
|
46
47
|
|
|
47
48
|
### Grid.Item
|
|
48
49
|
|
|
@@ -53,5 +54,5 @@ import Grid from '@synerise/ds-grid'
|
|
|
53
54
|
| lg | `screen > 960`, number of cells to occupy, 0 corresponds to display: none, max value: 12 | number | - |
|
|
54
55
|
| md | `screen > 768`, number of cells to occupy, 0 corresponds to display: none, max value: 8 | number | - |
|
|
55
56
|
| sm | `screen > 320`, number of cells to occupy, 0 corresponds to display: none, max value: 8 | number | - |
|
|
56
|
-
| xs | `screen <= 320`, number of cells to occupy, 0 corresponds to display: none, max value:
|
|
57
|
+
| xs | `screen <= 320`, number of cells to occupy, 0 corresponds to display: none, max value: 4 | number | - |
|
|
57
58
|
| contentWrapper | Group content with max size (defined in col size props) and center them horizontally | boolean | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-grid",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "Grid UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-utils": "^1.
|
|
38
|
+
"@synerise/ds-utils": "^1.7.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@synerise/ds-core": "*",
|
|
42
42
|
"react": ">=16.9.0 <= 18.3.1",
|
|
43
43
|
"styled-components": "^5.3.3"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
46
46
|
}
|