@synerise/ds-inline-edit 0.6.54 → 0.6.56

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.6.56](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.55...@synerise/ds-inline-edit@0.6.56) (2023-03-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **inline-edit:** allow additional inline styles on input element ([b75fca9](https://github.com/Synerise/synerise-design/commit/b75fca9be873f91d2567742c102c5d6789b6dd8a))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.6.55](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.54...@synerise/ds-inline-edit@0.6.55) (2023-03-21)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-inline-edit
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.6.54](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-edit@0.6.53...@synerise/ds-inline-edit@0.6.54) (2023-03-20)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-inline-edit
@@ -16,6 +16,8 @@ var InlineSelect = function InlineSelect(_ref) {
16
16
  dropdownProps = _ref$dropdownProps === void 0 ? {} : _ref$dropdownProps,
17
17
  _ref$dropdownOverlayS = _ref.dropdownOverlayStyle,
18
18
  dropdownOverlayStyle = _ref$dropdownOverlayS === void 0 ? {} : _ref$dropdownOverlayS,
19
+ _ref$inputStyle = _ref.inputStyle,
20
+ inputStyle = _ref$inputStyle === void 0 ? {} : _ref$inputStyle,
19
21
  _ref$size = _ref.size,
20
22
  size = _ref$size === void 0 ? 'normal' : _ref$size,
21
23
  disabled = _ref.disabled,
@@ -105,7 +107,8 @@ var InlineSelect = function InlineSelect(_ref) {
105
107
  name: input.name,
106
108
  value: selectedValue || placeholder,
107
109
  autoComplete: input.autoComplete,
108
- placeholderIsMinWidth: false
110
+ placeholderIsMinWidth: false,
111
+ style: inputStyle
109
112
  /* eslint-disable-next-line @typescript-eslint/no-explicit-any */
110
113
  ,
111
114
  ref: inputRef
@@ -10,6 +10,7 @@ export interface InlineSelectProps {
10
10
  input: Partial<InputProps>;
11
11
  style?: React.CSSProperties;
12
12
  dropdownOverlayStyle?: React.CSSProperties;
13
+ inputStyle?: React.CSSProperties;
13
14
  dropdownProps?: Partial<DropdownProps>;
14
15
  autoFocus?: boolean;
15
16
  error?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-inline-edit",
3
- "version": "0.6.54",
3
+ "version": "0.6.56",
4
4
  "description": "InlineEdit UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,10 +32,10 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-dropdown": "^0.17.57",
35
+ "@synerise/ds-dropdown": "^0.17.58",
36
36
  "@synerise/ds-icon": "^0.54.0",
37
37
  "@synerise/ds-menu": "^0.17.5",
38
- "@synerise/ds-search": "^0.8.43",
38
+ "@synerise/ds-search": "^0.8.44",
39
39
  "@synerise/ds-tooltip": "^0.13.0",
40
40
  "react-input-autosize": "^2.2.2"
41
41
  },
@@ -47,5 +47,5 @@
47
47
  "@synerise/ds-utils": "^0.19.0",
48
48
  "@types/react-input-autosize": "2.0.2"
49
49
  },
50
- "gitHead": "41419f123b90134def2fecde455da13946fc2c0e"
50
+ "gitHead": "68778b33000a395c36159c186b5e2a6392a1b375"
51
51
  }