@synerise/ds-editable-items-list 0.0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-editable-items-list@0.1.0...@synerise/ds-editable-items-list@0.1.1) (2024-01-17)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-editable-items-list
9
+
10
+
11
+
12
+
13
+
14
+ # 0.1.0 (2024-01-15)
15
+
16
+
17
+ ### Features
18
+
19
+ * **editable-items-list:** added new component editable-items-list ([35d3af8](https://github.com/Synerise/synerise-design/commit/35d3af8604f1f58ed79dc016f0ee49505dc697d2))
package/README.md CHANGED
@@ -32,7 +32,7 @@ import EditableItemsList from '@synerise/ds-editable-items-list'
32
32
  | items | Array of items to be rendered, each should have a unique id. | T[] | - |
33
33
  | addButtonLabel | Text or custom component for the "Add" button. | string \| ReactNode | - |
34
34
  | addButtonIcon | Custom icon for the "Add" button. | ReactElement | - |
35
- | addButtonProps | Additional props for the "Add" button. It can override default style. | Partial<ButtonProps> | - |
35
+ | addButtonProps | Additional props for the "Add" button. It can override default style. | Partial&lt;ButtonProps&gt; | - |
36
36
  | onAdd | Callback function called when the "Add" button is clicked. | () => void | - |
37
37
  | minRowLength | The minimum number of rows to display. | number | 1 |
38
38
  | maxRowLength | The maximum number of rows allowed. | number | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-editable-items-list",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "EditableItemsList UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -33,7 +33,7 @@
33
33
  ],
34
34
  "types": "dist/index.d.ts",
35
35
  "dependencies": {
36
- "@synerise/ds-button": "^0.18.7",
36
+ "@synerise/ds-button": "^0.18.11",
37
37
  "@synerise/ds-cruds": "^0.3.40"
38
38
  },
39
39
  "peerDependencies": {
@@ -41,5 +41,5 @@
41
41
  "react": ">=16.9.0 < 17.0.0",
42
42
  "styled-components": "5.0.1"
43
43
  },
44
- "gitHead": "212fee47706d5956bde989445e89ad46ef5c8867"
44
+ "gitHead": "16918244eff3f4e37db24ae3d90687d4e6a233a4"
45
45
  }