@synerise/ds-field-set 0.2.43 → 0.2.44

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,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
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-field-set
9
+
10
+
11
+
12
+
13
+
6
14
  ## [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
15
 
8
16
  **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
- prefix = _ref.prefix,
8
- title = _ref.title,
9
- description = _ref.description,
10
- component = _ref.component,
11
- button = _ref.button,
12
- onTitleClick = _ref.onTitleClick;
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.43",
3
+ "version": "0.2.44",
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.15",
37
+ "@synerise/ds-divider": "^0.7.16",
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": "05f083c767e2cec3c2f91c9475aee89852a77d6c"
46
+ "gitHead": "4a56ee7ef816c22341ce704154dc7aa65b7d1dcc"
47
47
  }