@synerise/ds-flex-box 0.1.0 → 0.3.0

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,28 @@
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.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-flex-box@0.2.0...@synerise/ds-flex-box@0.3.0) (2025-01-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * antd@4.24 react@18 ([d97a667](https://github.com/Synerise/synerise-design/commit/d97a667b1f33aed3177e1851de3b6f60be2d46a6))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.2.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-flex-box@0.1.0...@synerise/ds-flex-box@0.2.0) (2024-12-10)
18
+
19
+
20
+ ### Features
21
+
22
+ * **flex-box:** export FlexProps and BoxProps ([c345e18](https://github.com/Synerise/synerise-design/commit/c345e1856753b2e12cdc7e66910754abaeac5eee))
23
+
24
+
25
+
26
+
27
+
6
28
  # 0.1.0 (2024-12-09)
7
29
 
8
30
 
package/README.md CHANGED
@@ -14,9 +14,12 @@ yarn add @synerise/ds-flex-box
14
14
 
15
15
  ## Usage
16
16
  ```
17
- import FlexBox from '@synerise/ds-flex-box'
17
+ import {Flex, Box} from '@synerise/ds-flex-box'
18
+
19
+ <Flex>
20
+ <Box />
21
+ </Flex>
18
22
 
19
- <FlexBox />
20
23
 
21
24
  ```
22
25
 
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { Flex, Box } from '@rebass/grid';
1
+ export { Flex, Box, BoxProps, FlexProps } from '@rebass/grid';
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export { Flex, Box } from '@rebass/grid';
1
+ export { Flex, Box, BoxProps, FlexProps } from '@rebass/grid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-flex-box",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "FlexBox UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@synerise/ds-core": "*",
41
- "react": ">=16.9.0 <= 17.0.2",
42
- "styled-components": "5.0.1"
41
+ "react": ">=16.9.0 <= 18.3.1",
42
+ "styled-components": "^5.3.3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/rebass__grid": "^6.0.14"
46
46
  },
47
- "gitHead": "b9c11172ec3c38d4df4c4c5304b99c6811bdd2b3"
47
+ "gitHead": "fbde34e126b492edaf148e469ab96247a891d6df"
48
48
  }