homebridge-nuheat2 1.2.18 → 1.2.19
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 +6 -0
- package/homebridge-ui/public/styles.css +10 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project should be documented in this file
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.2.19] - 2026-04-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Make saved thermostat and group allow-list values readable and easier to edit in the custom admin UI
|
|
12
|
+
|
|
7
13
|
## [1.2.18] - 2026-04-29
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -124,8 +124,8 @@ select {
|
|
|
124
124
|
width: 100%;
|
|
125
125
|
min-height: 38px;
|
|
126
126
|
padding: 0.45rem 0.75rem;
|
|
127
|
-
color:
|
|
128
|
-
background: var(--
|
|
127
|
+
color: currentColor;
|
|
128
|
+
background-color: var(--plugin-control-surface);
|
|
129
129
|
border: 1px solid var(--plugin-border);
|
|
130
130
|
border-radius: 0.375rem;
|
|
131
131
|
font-family: var(--plugin-font-family);
|
|
@@ -293,9 +293,9 @@ button.secondary:hover {
|
|
|
293
293
|
|
|
294
294
|
.config-row {
|
|
295
295
|
display: grid;
|
|
296
|
-
grid-template-columns:
|
|
296
|
+
grid-template-columns: 1fr;
|
|
297
297
|
gap: 10px;
|
|
298
|
-
align-items:
|
|
298
|
+
align-items: stretch;
|
|
299
299
|
background: var(--plugin-control-surface);
|
|
300
300
|
border: 1px solid var(--plugin-border);
|
|
301
301
|
border-radius: 8px;
|
|
@@ -306,6 +306,12 @@ button.secondary:hover {
|
|
|
306
306
|
min-width: 0;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
+
.config-row .row-actions {
|
|
310
|
+
justify-content: flex-start;
|
|
311
|
+
align-items: center;
|
|
312
|
+
flex-wrap: wrap;
|
|
313
|
+
}
|
|
314
|
+
|
|
309
315
|
.row-checkbox {
|
|
310
316
|
display: inline-flex;
|
|
311
317
|
align-items: center;
|