@synerise/ds-form 0.6.52 → 0.6.53

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,17 @@
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.6.53](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form@0.6.52...@synerise/ds-form@0.6.53) (2025-01-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **field-set:** make divider optional and fix description font-size ([3eb7620](https://github.com/Synerise/synerise-design/commit/3eb762012f8dd11fbcffe4e4f77b9037130b164c))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.6.52](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form@0.6.51...@synerise/ds-form@0.6.52) (2024-12-16)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-form
@@ -1,4 +1,7 @@
1
1
  import React from 'react';
2
2
  import { FieldSetProps } from './FieldSet.types';
3
+ /**
4
+ * @deprecated - FieldSet component will no longer be supported
5
+ */
3
6
  declare const FieldSet: React.FC<FieldSetProps>;
4
7
  export default FieldSet;
@@ -1,6 +1,9 @@
1
1
  import React from 'react';
2
2
  import Divider from '@synerise/ds-divider';
3
3
  import * as S from './FieldSet.styles';
4
+ /**
5
+ * @deprecated - FieldSet component will no longer be supported
6
+ */
4
7
  var FieldSet = function FieldSet(_ref) {
5
8
  var className = _ref.className,
6
9
  heading = _ref.heading,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-form",
3
- "version": "0.6.52",
3
+ "version": "0.6.53",
4
4
  "description": "Form UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,13 +34,13 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-autocomplete": "^0.8.33",
38
- "@synerise/ds-button": "^0.22.1",
39
- "@synerise/ds-cruds": "^0.5.33",
40
- "@synerise/ds-divider": "^0.7.19",
41
- "@synerise/ds-icon": "^0.69.0",
42
- "@synerise/ds-input": "^0.24.19",
43
- "@synerise/ds-typography": "^0.16.10",
37
+ "@synerise/ds-autocomplete": "^0.8.34",
38
+ "@synerise/ds-button": "^0.22.2",
39
+ "@synerise/ds-cruds": "^0.5.34",
40
+ "@synerise/ds-divider": "^0.7.20",
41
+ "@synerise/ds-icon": "^0.69.1",
42
+ "@synerise/ds-input": "^0.24.20",
43
+ "@synerise/ds-typography": "^0.16.11",
44
44
  "@synerise/ds-utils": "^0.31.2"
45
45
  },
46
46
  "peerDependencies": {
@@ -49,5 +49,5 @@
49
49
  "react": ">=16.9.0 <= 17.0.2",
50
50
  "styled-components": "5.0.1"
51
51
  },
52
- "gitHead": "d1f15a1187417faf8e625758d6b3aa4db58c0ecf"
52
+ "gitHead": "f591d14d24d6a14aab76edcb60f04aaadec8336d"
53
53
  }