@chauvet/connect-base-profiles 2.0.3 → 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 +17 -7
- package/package.json +1 -1
- package/src/baseProfiles.ts +17 -7
package/dist/baseProfiles.js
CHANGED
|
@@ -554,7 +554,7 @@ const baseProfiles = {
|
|
|
554
554
|
whiteMacros: null,
|
|
555
555
|
autoPrograms: [
|
|
556
556
|
{
|
|
557
|
-
location:
|
|
557
|
+
location: 10,
|
|
558
558
|
label: 'Auto Programs',
|
|
559
559
|
values: [
|
|
560
560
|
{
|
|
@@ -608,16 +608,26 @@ const baseProfiles = {
|
|
|
608
608
|
]
|
|
609
609
|
},
|
|
610
610
|
{
|
|
611
|
-
location:
|
|
611
|
+
location: 11,
|
|
612
612
|
label: 'Foreground Dimmer',
|
|
613
|
+
condition: {
|
|
614
|
+
location: 10,
|
|
615
|
+
minValue: 110,
|
|
616
|
+
maxValue: 220
|
|
617
|
+
},
|
|
613
618
|
range: {
|
|
614
|
-
start:
|
|
619
|
+
start: 12,
|
|
615
620
|
end: 255
|
|
616
621
|
}
|
|
617
622
|
},
|
|
618
623
|
{
|
|
619
|
-
location:
|
|
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
|
{
|
|
@@ -683,7 +693,7 @@ const baseProfiles = {
|
|
|
683
693
|
],
|
|
684
694
|
},
|
|
685
695
|
{
|
|
686
|
-
location:
|
|
696
|
+
location: 14,
|
|
687
697
|
label: 'Background Dimmer',
|
|
688
698
|
range: {
|
|
689
699
|
start: 0,
|
|
@@ -691,7 +701,7 @@ const baseProfiles = {
|
|
|
691
701
|
}
|
|
692
702
|
},
|
|
693
703
|
{
|
|
694
|
-
location:
|
|
704
|
+
location: 15,
|
|
695
705
|
label: 'Background Color',
|
|
696
706
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
697
707
|
values: [
|
|
@@ -758,7 +768,7 @@ const baseProfiles = {
|
|
|
758
768
|
],
|
|
759
769
|
},
|
|
760
770
|
{
|
|
761
|
-
location:
|
|
771
|
+
location: 16,
|
|
762
772
|
label: 'Auto Speed',
|
|
763
773
|
range: {
|
|
764
774
|
start: 0,
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -585,7 +585,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
585
585
|
whiteMacros: null,
|
|
586
586
|
autoPrograms: [
|
|
587
587
|
{
|
|
588
|
-
location:
|
|
588
|
+
location: 10,
|
|
589
589
|
label: 'Auto Programs',
|
|
590
590
|
values: [
|
|
591
591
|
{
|
|
@@ -640,16 +640,26 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
640
640
|
]
|
|
641
641
|
},
|
|
642
642
|
{
|
|
643
|
-
location:
|
|
643
|
+
location: 11,
|
|
644
644
|
label: 'Foreground Dimmer',
|
|
645
|
+
condition: {
|
|
646
|
+
location: 10,
|
|
647
|
+
minValue: 110,
|
|
648
|
+
maxValue: 220
|
|
649
|
+
},
|
|
645
650
|
range: {
|
|
646
|
-
start:
|
|
651
|
+
start: 12,
|
|
647
652
|
end: 255
|
|
648
653
|
}
|
|
649
654
|
},
|
|
650
655
|
{
|
|
651
|
-
location:
|
|
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
|
{
|
|
@@ -718,7 +728,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
718
728
|
],
|
|
719
729
|
},
|
|
720
730
|
{
|
|
721
|
-
location:
|
|
731
|
+
location: 14,
|
|
722
732
|
label: 'Background Dimmer',
|
|
723
733
|
range: {
|
|
724
734
|
start: 0,
|
|
@@ -726,7 +736,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
726
736
|
}
|
|
727
737
|
},
|
|
728
738
|
{
|
|
729
|
-
location:
|
|
739
|
+
location: 15,
|
|
730
740
|
label: 'Background Color',
|
|
731
741
|
hint: 'Only active for Auto Programs 5 - 9',
|
|
732
742
|
values: [
|
|
@@ -796,7 +806,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
796
806
|
],
|
|
797
807
|
},
|
|
798
808
|
{
|
|
799
|
-
location:
|
|
809
|
+
location: 16,
|
|
800
810
|
label: 'Auto Speed',
|
|
801
811
|
range: {
|
|
802
812
|
start: 0,
|