@zwave-js/config 12.1.0 → 12.1.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.
@@ -289,6 +289,27 @@
289
289
  "label": "Increase Output Power (Non-Neutral)",
290
290
  "description": "Increase output power when in non-neutral mode. (May cause problems with high level flicker or aux switch detection. Adjust maximum level if you are having problems.)"
291
291
  },
292
+ {
293
+ "#": "26",
294
+ "$if": "firmwareVersion >= 1.1",
295
+ "label": "Dimming Mode",
296
+ "valueSize": 1,
297
+ // This parameter is actually writable, but Inovelli asked to have it readonly
298
+ // to prevent accidental changes that can damage the device:
299
+ // https://github.com/zwave-js/node-zwave-js/issues/6273#issuecomment-1714585107
300
+ "readOnly": true,
301
+ "allowManualEntry": false,
302
+ "options": [
303
+ {
304
+ "label": "Leading edge",
305
+ "value": 0
306
+ },
307
+ {
308
+ "label": "Trailing edge",
309
+ "value": 1
310
+ }
311
+ ]
312
+ },
292
313
  {
293
314
  "#": "50",
294
315
  "label": "Button Delay Time",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "12.1.0",
3
+ "version": "12.1.1",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public"