homebridge-multiple-switch 1.7.0-beta.3 → 1.7.0-beta.5

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
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.0-beta.5] - 2026-05-17
4
+
5
+ ### Changed
6
+ - Switch fields (Switch Name, Auto Turn Off, Default State) now use the same 3-equal-column grid as device fields
7
+
8
+ ## [1.7.0-beta.4] - 2026-05-17
9
+
10
+ ### Changed
11
+ - Auto Turn Off column narrowed to 120px so Default State checkbox has more breathing room
12
+
3
13
  ## [1.7.0-beta.3] - 2026-05-17
4
14
 
5
15
  ### Changed
@@ -470,7 +470,7 @@
470
470
  </div>
471
471
  </div>
472
472
  <div class="switch-body ${isOpen ? '' : 'collapsed'}">
473
- <div class="inline-row" style="grid-template-columns: 1fr 1fr auto; align-items: end;">
473
+ <div class="inline-row" style="grid-template-columns: 1fr 1fr 1fr; align-items: end;">
474
474
  <div class="form-group" style="margin-bottom:0">
475
475
  <label>${t.switchName || 'Switch Name'}</label>
476
476
  <input type="text" class="sw-field" data-dev="${di}" data-sw="${si}" data-field="name" value="${esc(sw.name || '')}">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-multiple-switch",
3
- "version": "1.7.0-beta.3",
3
+ "version": "1.7.0-beta.5",
4
4
  "description": "Multiple switch platform for Homebridge",
5
5
  "homepage": "https://github.com/azadaydinli/homebridge-multiple-switch",
6
6
  "main": "index.js",