@chauvet/connect-base-profiles 2.0.4 → 2.0.6
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 +20 -2
- package/package.json +1 -1
- package/src/baseProfiles.ts +20 -2
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,7 +623,11 @@ const baseProfiles = {
|
|
|
618
623
|
{
|
|
619
624
|
location: 13,
|
|
620
625
|
label: 'Foreground Color',
|
|
621
|
-
|
|
626
|
+
condition: {
|
|
627
|
+
location: 10,
|
|
628
|
+
minValue: 110,
|
|
629
|
+
maxValue: 220
|
|
630
|
+
},
|
|
622
631
|
values: [
|
|
623
632
|
{
|
|
624
633
|
item: 'Red',
|
|
@@ -685,6 +694,11 @@ const baseProfiles = {
|
|
|
685
694
|
{
|
|
686
695
|
location: 14,
|
|
687
696
|
label: 'Background Dimmer',
|
|
697
|
+
condition: {
|
|
698
|
+
location: 10,
|
|
699
|
+
minValue: 110,
|
|
700
|
+
maxValue: 220
|
|
701
|
+
},
|
|
688
702
|
range: {
|
|
689
703
|
start: 0,
|
|
690
704
|
end: 255
|
|
@@ -693,7 +707,11 @@ const baseProfiles = {
|
|
|
693
707
|
{
|
|
694
708
|
location: 15,
|
|
695
709
|
label: 'Background Color',
|
|
696
|
-
|
|
710
|
+
condition: {
|
|
711
|
+
location: 10,
|
|
712
|
+
minValue: 110,
|
|
713
|
+
maxValue: 220
|
|
714
|
+
},
|
|
697
715
|
values: [
|
|
698
716
|
{
|
|
699
717
|
item: 'Red',
|
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,7 +655,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
650
655
|
{
|
|
651
656
|
location: 13,
|
|
652
657
|
label: 'Foreground Color',
|
|
653
|
-
|
|
658
|
+
condition: {
|
|
659
|
+
location: 10,
|
|
660
|
+
minValue: 110,
|
|
661
|
+
maxValue: 220
|
|
662
|
+
},
|
|
654
663
|
values: [
|
|
655
664
|
{
|
|
656
665
|
item: 'Red',
|
|
@@ -720,6 +729,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
720
729
|
{
|
|
721
730
|
location: 14,
|
|
722
731
|
label: 'Background Dimmer',
|
|
732
|
+
condition: {
|
|
733
|
+
location: 10,
|
|
734
|
+
minValue: 110,
|
|
735
|
+
maxValue: 220
|
|
736
|
+
},
|
|
723
737
|
range: {
|
|
724
738
|
start: 0,
|
|
725
739
|
end: 255
|
|
@@ -728,7 +742,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
728
742
|
{
|
|
729
743
|
location: 15,
|
|
730
744
|
label: 'Background Color',
|
|
731
|
-
|
|
745
|
+
condition: {
|
|
746
|
+
location: 10,
|
|
747
|
+
minValue: 110,
|
|
748
|
+
maxValue: 220
|
|
749
|
+
},
|
|
732
750
|
values: [
|
|
733
751
|
{
|
|
734
752
|
item: 'Red',
|