@synerise/ds-inline-edit 0.6.104 → 0.7.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 +19 -0
- package/README.md +1 -0
- package/dist/InlineEdit.js +1 -0
- package/dist/InlineEdit.types.d.ts +1 -0
- package/package.json +9 -9
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.7.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.105...@synerise/ds-inline-edit@0.7.0) (2024-04-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **code-area:** new component ([2a94d6e](https://github.com/Synerise/synerise-design/commit/2a94d6ea3c830f803fbd10b00ae009d5e20575e2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.6.105](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.104...@synerise/ds-inline-edit@0.6.105) (2024-04-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.6.104](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.103...@synerise/ds-inline-edit@0.6.104) (2024-04-05)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-inline-edit
|
package/README.md
CHANGED
|
@@ -73,6 +73,7 @@ InlineEdit UI Component
|
|
|
73
73
|
| disabled | Disabled state of component | boolean | `false` | - |
|
|
74
74
|
| maxLength | Maximum characters inside the input element | number | `false` | - |
|
|
75
75
|
| name | Native html name attribute | string | - | - |
|
|
76
|
+
| readOnly | Readonly state of the Input component | boolean | - | - |
|
|
76
77
|
| placeholder | Default text component | string | - | - |
|
|
77
78
|
| onBlur | Called when input blured | function | - | - |
|
|
78
79
|
| onEnterPress | Called when user press `Enter` in focused input | function | - | - |
|
package/dist/InlineEdit.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-inline-edit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "InlineEdit UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
37
|
-
"@synerise/ds-icon": "^0.60.
|
|
38
|
-
"@synerise/ds-menu": "^0.18.
|
|
39
|
-
"@synerise/ds-scrollbar": "^0.10.
|
|
40
|
-
"@synerise/ds-search": "^0.8.
|
|
41
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
36
|
+
"@synerise/ds-dropdown": "^0.17.105",
|
|
37
|
+
"@synerise/ds-icon": "^0.60.7",
|
|
38
|
+
"@synerise/ds-menu": "^0.18.20",
|
|
39
|
+
"@synerise/ds-scrollbar": "^0.10.2",
|
|
40
|
+
"@synerise/ds-search": "^0.8.87",
|
|
41
|
+
"@synerise/ds-tooltip": "^0.14.25",
|
|
42
42
|
"@synerise/ds-typography": "^0.14.3",
|
|
43
|
-
"@synerise/ds-utils": "^0.26.
|
|
43
|
+
"@synerise/ds-utils": "^0.26.3",
|
|
44
44
|
"react-input-autosize": "^2.2.2"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"@testing-library/react": "10.0.1",
|
|
54
54
|
"@types/react-input-autosize": "2.2.1"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "2b3ed7503dacc36c207049a5a3e81bfe190de0be"
|
|
57
57
|
}
|