@synerise/ds-field-set 0.2.43 → 0.2.45
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 +16 -0
- package/dist/FieldSet.js +6 -8
- package/package.json +3 -3
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.2.45](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.44...@synerise/ds-field-set@0.2.45) (2024-11-29)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @synerise/ds-field-set
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [0.2.44](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.43...@synerise/ds-field-set@0.2.44) (2024-11-28)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @synerise/ds-field-set
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
## [0.2.43](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.42...@synerise/ds-field-set@0.2.43) (2024-11-21)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-field-set
|
package/dist/FieldSet.js
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import Divider from '@synerise/ds-divider';
|
3
3
|
import * as S from './FieldSet.styles';
|
4
|
-
|
5
4
|
var FieldSet = function FieldSet(_ref) {
|
6
5
|
var className = _ref.className,
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
6
|
+
prefix = _ref.prefix,
|
7
|
+
title = _ref.title,
|
8
|
+
description = _ref.description,
|
9
|
+
component = _ref.component,
|
10
|
+
button = _ref.button,
|
11
|
+
onTitleClick = _ref.onTitleClick;
|
13
12
|
return /*#__PURE__*/React.createElement(S.ContainerWrapper, {
|
14
13
|
className: "ds-field-set " + className
|
15
14
|
}, /*#__PURE__*/React.createElement(S.HeaderWrapper, null, prefix && /*#__PURE__*/React.createElement(S.ButtonWrapper, null, prefix), /*#__PURE__*/React.createElement(S.FieldSetTitle, {
|
@@ -20,5 +19,4 @@ var FieldSet = function FieldSet(_ref) {
|
|
20
19
|
description: Boolean(description)
|
21
20
|
}, title), /*#__PURE__*/React.createElement(S.Description, null, description))), /*#__PURE__*/React.createElement(Divider, null), component && /*#__PURE__*/React.createElement(S.ComponentWrapper, null, component), button && /*#__PURE__*/React.createElement(S.ActionButton, null, button));
|
22
21
|
};
|
23
|
-
|
24
22
|
export default FieldSet;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-field-set",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.45",
|
4
4
|
"description": "FieldSet UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
],
|
35
35
|
"types": "dist/index.d.ts",
|
36
36
|
"dependencies": {
|
37
|
-
"@synerise/ds-divider": "^0.7.
|
37
|
+
"@synerise/ds-divider": "^0.7.17",
|
38
38
|
"@synerise/ds-utils": "^0.31.2"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|
@@ -43,5 +43,5 @@
|
|
43
43
|
"react": ">=16.9.0 <= 17.0.2",
|
44
44
|
"styled-components": "5.0.1"
|
45
45
|
},
|
46
|
-
"gitHead": "
|
46
|
+
"gitHead": "9ebd107163650754a5f55680d62d30812d740084"
|
47
47
|
}
|