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

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 ADDED
@@ -0,0 +1,11 @@
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.0 (2024-01-15)
7
+
8
+
9
+ ### Features
10
+
11
+ * **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.0",
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.10",
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": "ba51e38beff83b8adba409f09311131f429ada01"
45
45
  }