@synerise/ds-field-set 0.2.28 → 0.2.30
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/dist/FieldSet.js +1 -3
- package/dist/FieldSet.styles.d.ts +1 -3
- package/dist/FieldSet.styles.js +1 -1
- package/package.json +5 -3
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
|
+
## [0.2.30](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.29...@synerise/ds-field-set@0.2.30) (2024-08-27)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @synerise/ds-field-set
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [0.2.29](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.28...@synerise/ds-field-set@0.2.29) (2024-08-05)
|
15
|
+
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
* **field-set:** remove centering field set description ([1a38256](https://github.com/Synerise/synerise-design/commit/1a3825605dcd0e78b6a51471082e917576760388))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
6
25
|
## [0.2.28](https://github.com/Synerise/synerise-design/compare/@synerise/ds-field-set@0.2.27...@synerise/ds-field-set@0.2.28) (2024-07-05)
|
7
26
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-field-set
|
package/dist/FieldSet.js
CHANGED
@@ -18,9 +18,7 @@ var FieldSet = function FieldSet(_ref) {
|
|
18
18
|
onClick: onTitleClick,
|
19
19
|
isClickable: Boolean(onTitleClick),
|
20
20
|
description: Boolean(description)
|
21
|
-
}, title), /*#__PURE__*/React.createElement(S.Description,
|
22
|
-
description: Boolean(description)
|
23
|
-
}, description))), /*#__PURE__*/React.createElement(Divider, null), component && /*#__PURE__*/React.createElement(S.ComponentWrapper, null, component), button && /*#__PURE__*/React.createElement(S.ActionButton, null, button));
|
21
|
+
}, 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));
|
24
22
|
};
|
25
23
|
|
26
24
|
export default FieldSet;
|
@@ -13,6 +13,4 @@ export declare const FieldSetTitle: import("styled-components").StyledComponent<
|
|
13
13
|
description?: boolean | undefined;
|
14
14
|
}, never>;
|
15
15
|
export declare const ComponentWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
16
|
-
export declare const Description: import("styled-components").StyledComponent<"div", any, {
|
17
|
-
description?: boolean | undefined;
|
18
|
-
}, never>;
|
16
|
+
export declare const Description: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/dist/FieldSet.styles.js
CHANGED
@@ -46,4 +46,4 @@ export var ComponentWrapper = styled.div.withConfig({
|
|
46
46
|
export var Description = styled.div.withConfig({
|
47
47
|
displayName: "FieldSetstyles__Description",
|
48
48
|
componentId: "sc-1hezedi-8"
|
49
|
-
})(["display:flex;line-height:16px;font-size:12px;word-wrap:break-word;
|
49
|
+
})(["display:flex;line-height:16px;font-size:12px;word-wrap:break-word;"]);
|
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.30",
|
4
4
|
"description": "FieldSet UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -33,12 +33,14 @@
|
|
33
33
|
],
|
34
34
|
"types": "dist/index.d.ts",
|
35
35
|
"dependencies": {
|
36
|
-
"@synerise/ds-divider": "^0.7.
|
36
|
+
"@synerise/ds-divider": "^0.7.2",
|
37
|
+
"@synerise/ds-utils": "^0.28.2"
|
37
38
|
},
|
38
39
|
"peerDependencies": {
|
39
40
|
"@synerise/ds-core": "*",
|
41
|
+
"antd": "4.7.0",
|
40
42
|
"react": ">=16.9.0 <= 17.0.2",
|
41
43
|
"styled-components": "5.0.1"
|
42
44
|
},
|
43
|
-
"gitHead": "
|
45
|
+
"gitHead": "a035aeea499cea00e72e20e3790c0ffcad4fe956"
|
44
46
|
}
|