@synerise/ds-inline-edit 0.8.17 → 0.9.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
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.9.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.8.18...@synerise/ds-inline-edit@0.9.0) (2024-11-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **code-area:** readonly and fullscreenlabel prop support ([553b36c](https://github.com/Synerise/synerise-design/commit/553b36c2e3efe4037d67eeb08d106318cd2d8b08))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.8.18](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.8.17...@synerise/ds-inline-edit@0.8.18) (2024-11-12)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.8.17](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.8.16...@synerise/ds-inline-edit@0.8.17) (2024-10-29)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-inline-edit
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
var _excluded = ["value", "onChange"];
|
|
2
2
|
|
|
3
|
-
function _extends() { _extends = Object.assign
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
4
|
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
7
|
import React, { useRef, useState, useEffect } from 'react';
|
|
8
|
-
import { toCamelCase } from '@synerise/ds-utils';
|
|
8
|
+
import { NOOP, toCamelCase } from '@synerise/ds-utils';
|
|
9
9
|
import Icon, { AngleDownS } from '@synerise/ds-icon';
|
|
10
10
|
import Dropdown from '@synerise/ds-dropdown';
|
|
11
11
|
import { AutosizeInput } from '@synerise/ds-input';
|
|
@@ -108,7 +108,8 @@ var InlineSelect = function InlineSelect(_ref) {
|
|
|
108
108
|
value: selectedValue || placeholder,
|
|
109
109
|
autoComplete: "off",
|
|
110
110
|
placeholder: placeholder,
|
|
111
|
-
disabled: disabled
|
|
111
|
+
disabled: disabled,
|
|
112
|
+
onChange: NOOP
|
|
112
113
|
}))), !hideIcon && /*#__PURE__*/React.createElement(S.IconWrapper, {
|
|
113
114
|
size: size,
|
|
114
115
|
expanded: isOpened
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
|
|
3
3
|
import React, { useState, useCallback } from 'react';
|
|
4
4
|
import ListItem from '@synerise/ds-list-item';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-inline-edit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "InlineEdit UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
38
|
-
"@synerise/ds-icon": "^0.66.
|
|
39
|
-
"@synerise/ds-input": "^0.24.
|
|
40
|
-
"@synerise/ds-list-item": "^0.4.
|
|
41
|
-
"@synerise/ds-scrollbar": "^0.11.
|
|
42
|
-
"@synerise/ds-search": "^0.9.
|
|
43
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
44
|
-
"@synerise/ds-typography": "^0.16.
|
|
45
|
-
"@synerise/ds-utils": "^0.
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.23",
|
|
38
|
+
"@synerise/ds-icon": "^0.66.4",
|
|
39
|
+
"@synerise/ds-input": "^0.24.13",
|
|
40
|
+
"@synerise/ds-list-item": "^0.4.18",
|
|
41
|
+
"@synerise/ds-scrollbar": "^0.11.18",
|
|
42
|
+
"@synerise/ds-search": "^0.9.18",
|
|
43
|
+
"@synerise/ds-tooltip": "^0.14.48",
|
|
44
|
+
"@synerise/ds-typography": "^0.16.5",
|
|
45
|
+
"@synerise/ds-utils": "^0.31.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@synerise/ds-core": "*",
|
|
49
49
|
"react": ">=16.9.0 <= 17.0.2",
|
|
50
50
|
"styled-components": "5.0.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8d26191fc0475407e0691b9b183761ad3cd7c87d"
|
|
53
53
|
}
|