@iobroker/adapter-react-v5 4.9.2 → 4.9.3
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/Dialogs/SelectID.js +8 -8
- package/README.md +3 -0
- package/package.json +1 -1
package/Dialogs/SelectID.js
CHANGED
|
@@ -107,14 +107,14 @@ class DialogSelectID extends react_1.Component {
|
|
|
107
107
|
else {
|
|
108
108
|
title = this.props.title || i18n_1.default.t('ra_Please select object ID...');
|
|
109
109
|
}
|
|
110
|
-
return react_1.default.createElement(material_1.Dialog, { onClose: () => { }, maxWidth: false,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
110
|
+
return react_1.default.createElement(material_1.Dialog, { onClose: () => { }, maxWidth: false, sx: {
|
|
111
|
+
'&.MuiDialog-paper': {
|
|
112
|
+
height: '95%',
|
|
113
|
+
padding: 4,
|
|
114
|
+
width: '100%',
|
|
115
|
+
maxWidth: '100%',
|
|
116
|
+
maxHeight: 'calc(100% - 16px)',
|
|
117
|
+
}
|
|
118
118
|
}, fullWidth: true, open: !0, "aria-labelledby": "ar_dialog_selectid_title" },
|
|
119
119
|
react_1.default.createElement(material_1.DialogTitle, { id: "ar_dialog_selectid_title", style: {
|
|
120
120
|
whiteSpace: 'nowrap',
|
package/README.md
CHANGED
|
@@ -670,6 +670,9 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
670
670
|
-->
|
|
671
671
|
|
|
672
672
|
## Changelog
|
|
673
|
+
### 4.9.3 (2023-12-31)
|
|
674
|
+
* (foxriver76) try to fix `SelectID` scrolling
|
|
675
|
+
|
|
673
676
|
### 4.9.2 (2023-12-30)
|
|
674
677
|
* (foxriver76) bump version of `@iobroker/json-config`
|
|
675
678
|
|