@synerise/ds-form 0.5.50 → 0.5.52

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,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.5.52](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form@0.5.51...@synerise/ds-form@0.5.52) (2023-10-02)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-form
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.5.51](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form@0.5.50...@synerise/ds-form@0.5.51) (2023-09-26)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-form
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.5.50](https://github.com/Synerise/synerise-design/compare/@synerise/ds-form@0.5.49...@synerise/ds-form@0.5.50) (2023-09-19)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-form
@@ -1,16 +1,16 @@
1
1
  import * as React from 'react';
2
2
  import type { AutocompleteProps } from '@synerise/ds-autocomplete';
3
3
  import type { InputProps } from 'antd/lib/input';
4
- export declare type EditableParam = {
4
+ export type EditableParam = {
5
5
  name: string;
6
6
  value: string;
7
7
  };
8
- declare type AddButtonConfigProps = {
8
+ type AddButtonConfigProps = {
9
9
  textAddButton?: string;
10
10
  disableAddButton?: boolean;
11
11
  onClickAddRow?: () => void;
12
12
  };
13
- export declare type EditListProps = {
13
+ export type EditListProps = {
14
14
  autocompleteOptions?: string | React.ReactNode;
15
15
  leftColumnName?: string | React.ReactNode;
16
16
  rightColumnName?: string | React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-form",
3
- "version": "0.5.50",
3
+ "version": "0.5.52",
4
4
  "description": "Form UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,13 +32,13 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-autocomplete": "^0.5.1",
36
- "@synerise/ds-button": "^0.18.1",
37
- "@synerise/ds-cruds": "^0.3.33",
38
- "@synerise/ds-divider": "^0.5.42",
39
- "@synerise/ds-icon": "^0.58.1",
40
- "@synerise/ds-input": "^0.19.1",
41
- "@synerise/ds-typography": "^0.12.10"
35
+ "@synerise/ds-autocomplete": "^0.5.3",
36
+ "@synerise/ds-button": "^0.18.3",
37
+ "@synerise/ds-cruds": "^0.3.35",
38
+ "@synerise/ds-divider": "^0.5.44",
39
+ "@synerise/ds-icon": "^0.58.3",
40
+ "@synerise/ds-input": "^0.19.3",
41
+ "@synerise/ds-typography": "^0.13.1"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@synerise/ds-core": "*",
@@ -47,8 +47,8 @@
47
47
  "styled-components": "5.0.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@synerise/ds-utils": "^0.24.15",
50
+ "@synerise/ds-utils": "^0.24.17",
51
51
  "@testing-library/jest-dom": "5.1.1"
52
52
  },
53
- "gitHead": "dcdec905a4a36109a33d28d9d31fc0b4af51567e"
53
+ "gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
54
54
  }