@synerise/ds-inline-edit 0.8.18 → 0.9.1

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.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.9.0...@synerise/ds-inline-edit@0.9.1) (2024-11-21)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-inline-edit
9
+
10
+
11
+
12
+
13
+
14
+ # [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)
15
+
16
+
17
+ ### Features
18
+
19
+ * **code-area:** readonly and fullscreenlabel prop support ([553b36c](https://github.com/Synerise/synerise-design/commit/553b36c2e3efe4037d67eeb08d106318cd2d8b08))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [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)
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 || 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); }
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 || 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); }
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.8.18",
3
+ "version": "0.9.1",
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.22",
38
- "@synerise/ds-icon": "^0.66.3",
39
- "@synerise/ds-input": "^0.24.12",
40
- "@synerise/ds-list-item": "^0.4.17",
41
- "@synerise/ds-scrollbar": "^0.11.17",
42
- "@synerise/ds-search": "^0.9.17",
43
- "@synerise/ds-tooltip": "^0.14.47",
44
- "@synerise/ds-typography": "^0.16.4",
45
- "@synerise/ds-utils": "^0.31.0"
37
+ "@synerise/ds-dropdown": "^0.18.24",
38
+ "@synerise/ds-icon": "^0.67.0",
39
+ "@synerise/ds-input": "^0.24.14",
40
+ "@synerise/ds-list-item": "^0.4.19",
41
+ "@synerise/ds-scrollbar": "^0.11.19",
42
+ "@synerise/ds-search": "^0.9.19",
43
+ "@synerise/ds-tooltip": "^0.14.49",
44
+ "@synerise/ds-typography": "^0.16.6",
45
+ "@synerise/ds-utils": "^0.31.2"
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": "1bb66dcc360a650e81b9bd195d5b77aa8ae2d308"
52
+ "gitHead": "05f083c767e2cec3c2f91c9475aee89852a77d6c"
53
53
  }