@synerise/ds-inline-edit 0.7.7 → 0.7.9
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/dist/InlineEdit.d.ts +2 -1
- package/dist/InlineEdit.js +1 -0
- package/dist/InlineSelect/InlineSelect.d.ts +2 -1
- package/package.json +10 -10
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.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.7.8...@synerise/ds-inline-edit@0.7.9) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.7.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.7.7...@synerise/ds-inline-edit@0.7.8) (2024-05-23)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **inline-edit:** pass placeholder prop to autosize ([8d446b0](https://github.com/Synerise/synerise-design/commit/8d446b0495f4745047fc29dbbb913ebf8a5b5cba))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.7.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.7.6...@synerise/ds-inline-edit@0.7.7) (2024-05-23)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-inline-edit
|
package/dist/InlineEdit.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InlineEditProps } from './InlineEdit.types';
|
|
2
|
-
declare const InlineEdit: ({ className, style, size, disabled, autoFocus, hideIcon, tooltipTitle, error, input, }: InlineEditProps) => JSX.Element;
|
|
3
|
+
declare const InlineEdit: ({ className, style, size, disabled, autoFocus, hideIcon, tooltipTitle, error, input, }: InlineEditProps) => React.JSX.Element;
|
|
3
4
|
export default InlineEdit;
|
package/dist/InlineEdit.js
CHANGED
|
@@ -64,6 +64,7 @@ var InlineEdit = function InlineEdit(_ref) {
|
|
|
64
64
|
}, /*#__PURE__*/React.createElement(AutosizeInput, {
|
|
65
65
|
extraWidth: 2,
|
|
66
66
|
value: input.value || '',
|
|
67
|
+
placeholder: input.placeholder,
|
|
67
68
|
placeholderIsMinWidth: false,
|
|
68
69
|
wrapperClassName: "autosize-input"
|
|
69
70
|
}, /*#__PURE__*/React.createElement("input", {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InlineSelectProps } from './InlineSelect.types';
|
|
2
|
-
declare const InlineSelect: ({ className, style, expanded, dropdownProps, dropdownOverlayStyle, inputStyle, size, disabled, autoFocus, hideIcon, error, input, placeholder, dataSource, initialValue, }: InlineSelectProps) => JSX.Element;
|
|
3
|
+
declare const InlineSelect: ({ className, style, expanded, dropdownProps, dropdownOverlayStyle, inputStyle, size, disabled, autoFocus, hideIcon, error, input, placeholder, dataSource, initialValue, }: InlineSelectProps) => React.JSX.Element;
|
|
3
4
|
export default InlineSelect;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-inline-edit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9",
|
|
4
4
|
"description": "InlineEdit UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-dropdown": "^0.
|
|
37
|
-
"@synerise/ds-icon": "^0.
|
|
38
|
-
"@synerise/ds-input": "^0.21.
|
|
39
|
-
"@synerise/ds-menu": "^0.
|
|
40
|
-
"@synerise/ds-scrollbar": "^0.
|
|
41
|
-
"@synerise/ds-search": "^0.8.
|
|
42
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
36
|
+
"@synerise/ds-dropdown": "^0.18.0",
|
|
37
|
+
"@synerise/ds-icon": "^0.62.0",
|
|
38
|
+
"@synerise/ds-input": "^0.21.5",
|
|
39
|
+
"@synerise/ds-menu": "^0.19.0",
|
|
40
|
+
"@synerise/ds-scrollbar": "^0.11.0",
|
|
41
|
+
"@synerise/ds-search": "^0.8.92",
|
|
42
|
+
"@synerise/ds-tooltip": "^0.14.29",
|
|
43
43
|
"@synerise/ds-typography": "^0.15.0",
|
|
44
|
-
"@synerise/ds-utils": "^0.
|
|
44
|
+
"@synerise/ds-utils": "^0.27.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@synerise/ds-core": "*",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"@testing-library/jest-dom": "5.1.1",
|
|
53
53
|
"@testing-library/react": "10.0.1"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "6bd94c78745df68ee3b853120a863ab24fc233ef"
|
|
56
56
|
}
|