@chauvet/connect-base-profiles 2.0.4 → 2.0.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/dist/baseProfiles.js +10 -0
- package/package.json +1 -1
- package/src/baseProfiles.ts +10 -0
package/dist/baseProfiles.js
CHANGED
|
@@ -610,6 +610,11 @@ const baseProfiles = {
|
|
|
610
610
|
{
|
|
611
611
|
location: 11,
|
|
612
612
|
label: 'Foreground Dimmer',
|
|
613
|
+
condition: {
|
|
614
|
+
location: 10,
|
|
615
|
+
minValue: 110,
|
|
616
|
+
maxValue: 220
|
|
617
|
+
},
|
|
613
618
|
range: {
|
|
614
619
|
start: 12,
|
|
615
620
|
end: 255
|
|
@@ -618,6 +623,11 @@ const baseProfiles = {
|
|
|
618
623
|
{
|
|
619
624
|
location: 13,
|
|
620
625
|
label: 'Foreground Color',
|
|
626
|
+
condition: {
|
|
627
|
+
location: 10,
|
|
628
|
+
minValue: 110,
|
|
629
|
+
maxValue: 220
|
|
630
|
+
},
|
|
621
631
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
622
632
|
values: [
|
|
623
633
|
{
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -642,6 +642,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
642
642
|
{
|
|
643
643
|
location: 11,
|
|
644
644
|
label: 'Foreground Dimmer',
|
|
645
|
+
condition: {
|
|
646
|
+
location: 10,
|
|
647
|
+
minValue: 110,
|
|
648
|
+
maxValue: 220
|
|
649
|
+
},
|
|
645
650
|
range: {
|
|
646
651
|
start: 12,
|
|
647
652
|
end: 255
|
|
@@ -650,6 +655,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
650
655
|
{
|
|
651
656
|
location: 13,
|
|
652
657
|
label: 'Foreground Color',
|
|
658
|
+
condition: {
|
|
659
|
+
location: 10,
|
|
660
|
+
minValue: 110,
|
|
661
|
+
maxValue: 220
|
|
662
|
+
},
|
|
653
663
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
654
664
|
values: [
|
|
655
665
|
{
|