@takeshape/schema 9.43.0 → 9.47.0

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.
Files changed (72) hide show
  1. package/dist/migration/index.d.ts +1 -0
  2. package/dist/migration/index.d.ts.map +1 -1
  3. package/dist/migration/index.js +4 -1
  4. package/dist/migration/to/v3.34.0.d.ts +7 -0
  5. package/dist/migration/to/v3.34.0.d.ts.map +1 -0
  6. package/dist/migration/to/v3.34.0.js +161 -0
  7. package/dist/project-schema/index.d.ts +4 -1
  8. package/dist/project-schema/index.d.ts.map +1 -1
  9. package/dist/project-schema/index.js +20 -3
  10. package/dist/project-schema/latest.d.ts +1 -1
  11. package/dist/project-schema/migrate.d.ts.map +1 -1
  12. package/dist/project-schema/migrate.js +4 -0
  13. package/dist/project-schema/v3.34.0.d.ts +1446 -0
  14. package/dist/project-schema/v3.34.0.d.ts.map +1 -0
  15. package/dist/project-schema/v3.34.0.js +5 -0
  16. package/dist/schema-util.js +5 -5
  17. package/dist/schemas/index.d.ts +2 -2
  18. package/dist/schemas/index.d.ts.map +1 -1
  19. package/dist/schemas/index.js +6 -4
  20. package/dist/schemas/index.ts +4 -2
  21. package/dist/schemas/project-schema/latest.json +3 -3
  22. package/dist/schemas/project-schema/v3.34.0.json +3088 -0
  23. package/dist/schemas/project-schema.json +3 -0
  24. package/dist/types/types.d.ts +2 -2
  25. package/dist/types/types.d.ts.map +1 -1
  26. package/es/migration/index.js +3 -1
  27. package/es/migration/to/v3.34.0.js +140 -0
  28. package/es/project-schema/index.js +3 -1
  29. package/es/project-schema/migrate.js +5 -1
  30. package/es/project-schema/v3.34.0.js +1 -0
  31. package/es/schema-util.js +5 -5
  32. package/es/schemas/index.js +4 -3
  33. package/es/schemas/index.ts +4 -2
  34. package/es/schemas/project-schema/latest.json +3 -3
  35. package/es/schemas/project-schema/v3.34.0.json +3088 -0
  36. package/es/schemas/project-schema.json +3 -0
  37. package/examples/latest/betzino.json +2012 -1756
  38. package/examples/latest/blog-schema.json +1 -1
  39. package/examples/latest/brewery-schema.json +31 -26
  40. package/examples/latest/complex-project-schema.json +645 -480
  41. package/examples/latest/complex-schema.json +866 -671
  42. package/examples/latest/fabric-ecommerce.json +7 -38
  43. package/examples/latest/frank-and-fred-schema.json +866 -671
  44. package/examples/latest/klirr-schema.json +1641 -1264
  45. package/examples/latest/massive-schema.json +897 -681
  46. package/examples/latest/mill-components-schema.json +1 -1
  47. package/examples/latest/one-earth.json +3012 -2462
  48. package/examples/latest/pet-oneof-array.json +1 -1
  49. package/examples/latest/post-schema.json +1 -1
  50. package/examples/latest/pruned-shopify-product-schema.json +1 -1
  51. package/examples/latest/real-world-schema.json +19 -14
  52. package/examples/latest/recursive-repeater-schema.json +1 -1
  53. package/examples/latest/recursive-schema.json +1 -1
  54. package/examples/latest/rick-and-morty-ast.json +39 -226
  55. package/examples/latest/rick-and-morty-graphql.json +35 -222
  56. package/examples/latest/rick-and-morty-rest.json +1 -1
  57. package/examples/latest/schema-with-repeater-draftjs.json +1 -1
  58. package/examples/latest/shape-books-v3_2_0.json +19 -14
  59. package/examples/latest/shape-books.json +19 -14
  60. package/examples/latest/shape-editor-schema-edited.json +1009 -0
  61. package/examples/latest/shape-editor-schema-initial.json +411 -0
  62. package/examples/latest/shopify-lookbook.json +9 -39
  63. package/examples/latest/shopify-product-2022-07.json +21 -213
  64. package/examples/latest/shopify-product-2023-04.json +21 -213
  65. package/examples/latest/shopify-store-with-widget.json +97 -360
  66. package/examples/latest/stripe-product-runtime-schema.json +21 -213
  67. package/examples/latest/stripe-starter-resolved.json +21 -213
  68. package/examples/latest/user-schema-no-required.json +1 -1
  69. package/examples/latest/user-schema-with-defaults.json +1 -1
  70. package/examples/source/shape-editor-schema-edited.json +1009 -0
  71. package/examples/source/shape-editor-schema-initial.json +411 -0
  72. package/package.json +5 -5
@@ -94,6 +94,19 @@
94
94
  ]
95
95
  }
96
96
  },
97
+ "LoginProviderTags": {
98
+ "default": {
99
+ "properties": {
100
+ "value": {
101
+ "widget": "singleLineText"
102
+ }
103
+ },
104
+ "widget": "repeater",
105
+ "order": [
106
+ "value"
107
+ ]
108
+ }
109
+ },
97
110
  "LoginProvider": {
98
111
  "default": {
99
112
  "properties": {
@@ -107,15 +120,7 @@
107
120
  "widget": "checkboxes"
108
121
  },
109
122
  "tags": {
110
- "properties": {
111
- "value": {
112
- "widget": "singleLineText"
113
- }
114
- },
115
- "widget": "repeater",
116
- "order": [
117
- "value"
118
- ]
123
+ "widget": "shapeArray"
119
124
  }
120
125
  },
121
126
  "order": [
@@ -126,6 +131,19 @@
126
131
  ]
127
132
  }
128
133
  },
134
+ "RedirectionDevices": {
135
+ "default": {
136
+ "properties": {
137
+ "value": {
138
+ "widget": "singleLineText"
139
+ }
140
+ },
141
+ "widget": "repeater",
142
+ "order": [
143
+ "value"
144
+ ]
145
+ }
146
+ },
129
147
  "Redirection": {
130
148
  "default": {
131
149
  "properties": {
@@ -139,26 +157,10 @@
139
157
  "widget": "dropdown"
140
158
  },
141
159
  "devices": {
142
- "properties": {
143
- "value": {
144
- "widget": "singleLineText"
145
- }
146
- },
147
- "widget": "repeater",
148
- "order": [
149
- "value"
150
- ]
160
+ "widget": "shapeArray"
151
161
  },
152
162
  "jurisdictions": {
153
- "properties": {
154
- "value": {
155
- "widget": "singleLineText"
156
- }
157
- },
158
- "widget": "repeater",
159
- "order": [
160
- "value"
161
- ]
163
+ "widget": "shapeArray"
162
164
  }
163
165
  },
164
166
  "order": [
@@ -170,6 +172,19 @@
170
172
  ]
171
173
  }
172
174
  },
175
+ "RedirectionJurisdictions": {
176
+ "default": {
177
+ "properties": {
178
+ "value": {
179
+ "widget": "singleLineText"
180
+ }
181
+ },
182
+ "widget": "repeater",
183
+ "order": [
184
+ "value"
185
+ ]
186
+ }
187
+ },
173
188
  "StyleTag": {
174
189
  "default": {
175
190
  "properties": {
@@ -431,6 +446,19 @@
431
446
  ]
432
447
  }
433
448
  },
449
+ "ResponsiveTableHeaderColumn": {
450
+ "default": {
451
+ "properties": {
452
+ "content": {
453
+ "widget": "wysiwygText"
454
+ }
455
+ },
456
+ "widget": "repeater",
457
+ "order": [
458
+ "content"
459
+ ]
460
+ }
461
+ },
434
462
  "ResponsiveTable": {
435
463
  "default": {
436
464
  "properties": {
@@ -438,38 +466,10 @@
438
466
  "widget": "singleLineText"
439
467
  },
440
468
  "headerColumn": {
441
- "properties": {
442
- "content": {
443
- "widget": "wysiwygText"
444
- }
445
- },
446
- "widget": "repeater",
447
- "order": [
448
- "content"
449
- ]
469
+ "widget": "shapeArray"
450
470
  },
451
471
  "row": {
452
- "properties": {
453
- "column": {
454
- "properties": {
455
- "width": {
456
- "widget": "singleLineText"
457
- },
458
- "content": {
459
- "widget": "wysiwygText"
460
- }
461
- },
462
- "widget": "repeater",
463
- "order": [
464
- "width",
465
- "content"
466
- ]
467
- }
468
- },
469
- "widget": "repeater",
470
- "order": [
471
- "column"
472
- ]
472
+ "widget": "shapeArray"
473
473
  }
474
474
  },
475
475
  "order": [
@@ -479,6 +479,36 @@
479
479
  ]
480
480
  }
481
481
  },
482
+ "ResponsiveTableRow": {
483
+ "default": {
484
+ "properties": {
485
+ "column": {
486
+ "widget": "shapeArray"
487
+ }
488
+ },
489
+ "widget": "repeater",
490
+ "order": [
491
+ "column"
492
+ ]
493
+ }
494
+ },
495
+ "ResponsiveTableRowColumn": {
496
+ "default": {
497
+ "properties": {
498
+ "width": {
499
+ "widget": "singleLineText"
500
+ },
501
+ "content": {
502
+ "widget": "wysiwygText"
503
+ }
504
+ },
505
+ "widget": "repeater",
506
+ "order": [
507
+ "width",
508
+ "content"
509
+ ]
510
+ }
511
+ },
482
512
  "NavList": {
483
513
  "default": {
484
514
  "properties": {
@@ -591,6 +621,71 @@
591
621
  ]
592
622
  }
593
623
  },
624
+ "ColorPaletteContrastColors": {
625
+ "default": {
626
+ "properties": {
627
+ "c200": {
628
+ "widget": "color"
629
+ },
630
+ "c100": {
631
+ "widget": "color"
632
+ },
633
+ "c800": {
634
+ "widget": "color"
635
+ },
636
+ "c700": {
637
+ "widget": "color"
638
+ },
639
+ "a700": {
640
+ "widget": "color"
641
+ },
642
+ "c900": {
643
+ "widget": "color"
644
+ },
645
+ "c400": {
646
+ "widget": "color"
647
+ },
648
+ "a100": {
649
+ "widget": "color"
650
+ },
651
+ "c300": {
652
+ "widget": "color"
653
+ },
654
+ "a200": {
655
+ "widget": "color"
656
+ },
657
+ "c600": {
658
+ "widget": "color"
659
+ },
660
+ "c50": {
661
+ "widget": "color"
662
+ },
663
+ "c500": {
664
+ "widget": "color"
665
+ },
666
+ "a400": {
667
+ "widget": "color"
668
+ }
669
+ },
670
+ "widget": "object",
671
+ "order": [
672
+ "c50",
673
+ "c100",
674
+ "c200",
675
+ "c300",
676
+ "c400",
677
+ "c500",
678
+ "c600",
679
+ "c700",
680
+ "c800",
681
+ "c900",
682
+ "a100",
683
+ "a200",
684
+ "a400",
685
+ "a700"
686
+ ]
687
+ }
688
+ },
594
689
  "ColorPalette": {
595
690
  "default": {
596
691
  "properties": {
@@ -598,130 +693,10 @@
598
693
  "widget": "singleLineText"
599
694
  },
600
695
  "contrastColors": {
601
- "properties": {
602
- "c200": {
603
- "widget": "color"
604
- },
605
- "c100": {
606
- "widget": "color"
607
- },
608
- "c800": {
609
- "widget": "color"
610
- },
611
- "c700": {
612
- "widget": "color"
613
- },
614
- "a700": {
615
- "widget": "color"
616
- },
617
- "c900": {
618
- "widget": "color"
619
- },
620
- "c400": {
621
- "widget": "color"
622
- },
623
- "a100": {
624
- "widget": "color"
625
- },
626
- "c300": {
627
- "widget": "color"
628
- },
629
- "a200": {
630
- "widget": "color"
631
- },
632
- "c600": {
633
- "widget": "color"
634
- },
635
- "c50": {
636
- "widget": "color"
637
- },
638
- "c500": {
639
- "widget": "color"
640
- },
641
- "a400": {
642
- "widget": "color"
643
- }
644
- },
645
- "widget": "object",
646
- "order": [
647
- "c50",
648
- "c100",
649
- "c200",
650
- "c300",
651
- "c400",
652
- "c500",
653
- "c600",
654
- "c700",
655
- "c800",
656
- "c900",
657
- "a100",
658
- "a200",
659
- "a400",
660
- "a700"
661
- ]
696
+ "widget": "shapeObject"
662
697
  },
663
698
  "colors": {
664
- "properties": {
665
- "c200": {
666
- "widget": "color"
667
- },
668
- "c100": {
669
- "widget": "color"
670
- },
671
- "c800": {
672
- "widget": "color"
673
- },
674
- "c700": {
675
- "widget": "color"
676
- },
677
- "a700": {
678
- "widget": "color"
679
- },
680
- "c900": {
681
- "widget": "color"
682
- },
683
- "c400": {
684
- "widget": "color"
685
- },
686
- "a100": {
687
- "widget": "color"
688
- },
689
- "c300": {
690
- "widget": "color"
691
- },
692
- "a200": {
693
- "widget": "color"
694
- },
695
- "c600": {
696
- "widget": "color"
697
- },
698
- "c50": {
699
- "widget": "color"
700
- },
701
- "c500": {
702
- "widget": "color"
703
- },
704
- "a400": {
705
- "widget": "color"
706
- }
707
- },
708
- "widget": "object",
709
- "order": [
710
- "c50",
711
- "c100",
712
- "c200",
713
- "c300",
714
- "c400",
715
- "c500",
716
- "c600",
717
- "c700",
718
- "c800",
719
- "c900",
720
- "a100",
721
- "a200",
722
- "a400",
723
- "a700"
724
- ]
699
+ "widget": "shapeObject"
725
700
  }
726
701
  },
727
702
  "order": [
@@ -731,6 +706,84 @@
731
706
  ]
732
707
  }
733
708
  },
709
+ "ColorPaletteColors": {
710
+ "default": {
711
+ "properties": {
712
+ "c200": {
713
+ "widget": "color"
714
+ },
715
+ "c100": {
716
+ "widget": "color"
717
+ },
718
+ "c800": {
719
+ "widget": "color"
720
+ },
721
+ "c700": {
722
+ "widget": "color"
723
+ },
724
+ "a700": {
725
+ "widget": "color"
726
+ },
727
+ "c900": {
728
+ "widget": "color"
729
+ },
730
+ "c400": {
731
+ "widget": "color"
732
+ },
733
+ "a100": {
734
+ "widget": "color"
735
+ },
736
+ "c300": {
737
+ "widget": "color"
738
+ },
739
+ "a200": {
740
+ "widget": "color"
741
+ },
742
+ "c600": {
743
+ "widget": "color"
744
+ },
745
+ "c50": {
746
+ "widget": "color"
747
+ },
748
+ "c500": {
749
+ "widget": "color"
750
+ },
751
+ "a400": {
752
+ "widget": "color"
753
+ }
754
+ },
755
+ "widget": "object",
756
+ "order": [
757
+ "c50",
758
+ "c100",
759
+ "c200",
760
+ "c300",
761
+ "c400",
762
+ "c500",
763
+ "c600",
764
+ "c700",
765
+ "c800",
766
+ "c900",
767
+ "a100",
768
+ "a200",
769
+ "a400",
770
+ "a700"
771
+ ]
772
+ }
773
+ },
774
+ "GridLayoutTiles": {
775
+ "default": {
776
+ "properties": {
777
+ "gridArea": {
778
+ "widget": "singleLineText"
779
+ }
780
+ },
781
+ "widget": "repeater",
782
+ "order": [
783
+ "gridArea"
784
+ ]
785
+ }
786
+ },
734
787
  "GridLayout": {
735
788
  "default": {
736
789
  "properties": {
@@ -738,15 +791,7 @@
738
791
  "widget": "singleLineText"
739
792
  },
740
793
  "tiles": {
741
- "properties": {
742
- "gridArea": {
743
- "widget": "singleLineText"
744
- }
745
- },
746
- "widget": "repeater",
747
- "order": [
748
- "gridArea"
749
- ]
794
+ "widget": "shapeArray"
750
795
  },
751
796
  "componentLimit": {
752
797
  "widget": "number"
@@ -767,15 +812,7 @@
767
812
  "widget": "singleLineText"
768
813
  },
769
814
  "blacklistedComponents": {
770
- "properties": {
771
- "value": {
772
- "widget": "dropdown"
773
- }
774
- },
775
- "widget": "repeater",
776
- "order": [
777
- "value"
778
- ]
815
+ "widget": "shapeArray"
779
816
  },
780
817
  "breakpoints": {
781
818
  "widget": "relationship"
@@ -799,6 +836,19 @@
799
836
  ]
800
837
  }
801
838
  },
839
+ "GridLayoutBlacklistedComponents": {
840
+ "default": {
841
+ "properties": {
842
+ "value": {
843
+ "widget": "dropdown"
844
+ }
845
+ },
846
+ "widget": "repeater",
847
+ "order": [
848
+ "value"
849
+ ]
850
+ }
851
+ },
802
852
  "PaymentMethod": {
803
853
  "default": {
804
854
  "properties": {
@@ -880,6 +930,19 @@
880
930
  ]
881
931
  }
882
932
  },
933
+ "LanguageSelectorFlags": {
934
+ "default": {
935
+ "properties": {
936
+ "flag": {
937
+ "widget": "shapeObject"
938
+ }
939
+ },
940
+ "widget": "repeater",
941
+ "order": [
942
+ "flag"
943
+ ]
944
+ }
945
+ },
883
946
  "LanguageSelector": {
884
947
  "default": {
885
948
  "properties": {
@@ -887,27 +950,7 @@
887
950
  "widget": "singleLineText"
888
951
  },
889
952
  "flags": {
890
- "properties": {
891
- "flag": {
892
- "properties": {
893
- "locale": {
894
- "widget": "singleLineText"
895
- },
896
- "image": {
897
- "widget": "relationship"
898
- }
899
- },
900
- "widget": "object",
901
- "order": [
902
- "locale",
903
- "image"
904
- ]
905
- }
906
- },
907
- "widget": "repeater",
908
- "order": [
909
- "flag"
910
- ]
953
+ "widget": "shapeArray"
911
954
  },
912
955
  "minWidth": {
913
956
  "widget": "singleLineText"
@@ -932,27 +975,49 @@
932
975
  ]
933
976
  }
934
977
  },
978
+ "LanguageSelectorFlagsFlag": {
979
+ "default": {
980
+ "properties": {
981
+ "locale": {
982
+ "widget": "singleLineText"
983
+ },
984
+ "image": {
985
+ "widget": "relationship"
986
+ }
987
+ },
988
+ "widget": "object",
989
+ "order": [
990
+ "locale",
991
+ "image"
992
+ ]
993
+ }
994
+ },
995
+ "GridListTiles": {
996
+ "default": {
997
+ "properties": {
998
+ "rows": {
999
+ "widget": "number"
1000
+ },
1001
+ "cols": {
1002
+ "widget": "number"
1003
+ },
1004
+ "classes": {
1005
+ "widget": "relationship"
1006
+ }
1007
+ },
1008
+ "widget": "repeater",
1009
+ "order": [
1010
+ "classes",
1011
+ "cols",
1012
+ "rows"
1013
+ ]
1014
+ }
1015
+ },
935
1016
  "GridList": {
936
1017
  "default": {
937
1018
  "properties": {
938
1019
  "tiles": {
939
- "properties": {
940
- "rows": {
941
- "widget": "number"
942
- },
943
- "cols": {
944
- "widget": "number"
945
- },
946
- "classes": {
947
- "widget": "relationship"
948
- }
949
- },
950
- "widget": "repeater",
951
- "order": [
952
- "classes",
953
- "cols",
954
- "rows"
955
- ]
1020
+ "widget": "shapeArray"
956
1021
  },
957
1022
  "componentLimit": {
958
1023
  "widget": "number"
@@ -972,15 +1037,7 @@
972
1037
  "widget": "singleLineText"
973
1038
  },
974
1039
  "blacklistedComponents": {
975
- "properties": {
976
- "value": {
977
- "widget": "dropdown"
978
- }
979
- },
980
- "widget": "repeater",
981
- "order": [
982
- "value"
983
- ]
1040
+ "widget": "shapeArray"
984
1041
  },
985
1042
  "breakpoints": {
986
1043
  "instructions": "If not defined content will be visible on all media sizes",
@@ -1012,6 +1069,19 @@
1012
1069
  ]
1013
1070
  }
1014
1071
  },
1072
+ "GridListBlacklistedComponents": {
1073
+ "default": {
1074
+ "properties": {
1075
+ "value": {
1076
+ "widget": "dropdown"
1077
+ }
1078
+ },
1079
+ "widget": "repeater",
1080
+ "order": [
1081
+ "value"
1082
+ ]
1083
+ }
1084
+ },
1015
1085
  "CasinoGameSearch": {
1016
1086
  "default": {
1017
1087
  "properties": {
@@ -1090,6 +1160,19 @@
1090
1160
  ]
1091
1161
  }
1092
1162
  },
1163
+ "RouteDevices": {
1164
+ "default": {
1165
+ "properties": {
1166
+ "value": {
1167
+ "widget": "singleLineText"
1168
+ }
1169
+ },
1170
+ "widget": "repeater",
1171
+ "order": [
1172
+ "value"
1173
+ ]
1174
+ }
1175
+ },
1093
1176
  "Route": {
1094
1177
  "default": {
1095
1178
  "properties": {
@@ -1106,26 +1189,10 @@
1106
1189
  "widget": "relationship"
1107
1190
  },
1108
1191
  "devices": {
1109
- "properties": {
1110
- "value": {
1111
- "widget": "singleLineText"
1112
- }
1113
- },
1114
- "widget": "repeater",
1115
- "order": [
1116
- "value"
1117
- ]
1192
+ "widget": "shapeArray"
1118
1193
  },
1119
1194
  "jurisdictions": {
1120
- "properties": {
1121
- "value": {
1122
- "widget": "singleLineText"
1123
- }
1124
- },
1125
- "widget": "repeater",
1126
- "order": [
1127
- "value"
1128
- ]
1195
+ "widget": "shapeArray"
1129
1196
  }
1130
1197
  },
1131
1198
  "order": [
@@ -1138,6 +1205,19 @@
1138
1205
  ]
1139
1206
  }
1140
1207
  },
1208
+ "RouteJurisdictions": {
1209
+ "default": {
1210
+ "properties": {
1211
+ "value": {
1212
+ "widget": "singleLineText"
1213
+ }
1214
+ },
1215
+ "widget": "repeater",
1216
+ "order": [
1217
+ "value"
1218
+ ]
1219
+ }
1220
+ },
1141
1221
  "SetLimitForm": {
1142
1222
  "default": {
1143
1223
  "properties": {
@@ -1178,23 +1258,28 @@
1178
1258
  ]
1179
1259
  }
1180
1260
  },
1261
+ "AchievementProgressBarBadges": {
1262
+ "default": {
1263
+ "properties": {
1264
+ "name": {
1265
+ "widget": "singleLineText"
1266
+ },
1267
+ "asset": {
1268
+ "widget": "image"
1269
+ }
1270
+ },
1271
+ "widget": "repeater",
1272
+ "order": [
1273
+ "name",
1274
+ "asset"
1275
+ ]
1276
+ }
1277
+ },
1181
1278
  "AchievementProgressBar": {
1182
1279
  "default": {
1183
1280
  "properties": {
1184
1281
  "badges": {
1185
- "properties": {
1186
- "name": {
1187
- "widget": "singleLineText"
1188
- },
1189
- "asset": {
1190
- "widget": "image"
1191
- }
1192
- },
1193
- "widget": "repeater",
1194
- "order": [
1195
- "name",
1196
- "asset"
1197
- ]
1282
+ "widget": "shapeArray"
1198
1283
  },
1199
1284
  "showProgress": {
1200
1285
  "widget": "checkbox"
@@ -1341,6 +1426,40 @@
1341
1426
  ]
1342
1427
  }
1343
1428
  },
1429
+ "LayoutItems": {
1430
+ "default": {
1431
+ "properties": {
1432
+ "components": {
1433
+ "widget": "relationship"
1434
+ },
1435
+ "breakpoints": {
1436
+ "widget": "relationship"
1437
+ },
1438
+ "grow": {
1439
+ "widget": "checkbox"
1440
+ },
1441
+ "size": {
1442
+ "instructions": "\"\" | px | % | vw | vh | <grow> <shrink> <basis>",
1443
+ "widget": "singleLineText"
1444
+ },
1445
+ "shrink": {
1446
+ "widget": "checkbox"
1447
+ },
1448
+ "classes": {
1449
+ "widget": "relationship"
1450
+ }
1451
+ },
1452
+ "widget": "repeater",
1453
+ "order": [
1454
+ "breakpoints",
1455
+ "components",
1456
+ "grow",
1457
+ "shrink",
1458
+ "size",
1459
+ "classes"
1460
+ ]
1461
+ }
1462
+ },
1344
1463
  "Layout": {
1345
1464
  "default": {
1346
1465
  "properties": {
@@ -1376,37 +1495,8 @@
1376
1495
  "alignY": {
1377
1496
  "widget": "relationship"
1378
1497
  },
1379
- "items": {
1380
- "properties": {
1381
- "components": {
1382
- "widget": "relationship"
1383
- },
1384
- "breakpoints": {
1385
- "widget": "relationship"
1386
- },
1387
- "grow": {
1388
- "widget": "checkbox"
1389
- },
1390
- "size": {
1391
- "instructions": "\"\" | px | % | vw | vh | <grow> <shrink> <basis>",
1392
- "widget": "singleLineText"
1393
- },
1394
- "shrink": {
1395
- "widget": "checkbox"
1396
- },
1397
- "classes": {
1398
- "widget": "relationship"
1399
- }
1400
- },
1401
- "widget": "repeater",
1402
- "order": [
1403
- "breakpoints",
1404
- "components",
1405
- "grow",
1406
- "shrink",
1407
- "size",
1408
- "classes"
1409
- ]
1498
+ "items": {
1499
+ "widget": "shapeArray"
1410
1500
  }
1411
1501
  },
1412
1502
  "order": [
@@ -1424,6 +1514,19 @@
1424
1514
  ]
1425
1515
  }
1426
1516
  },
1517
+ "PlaceholderTemplateModifiers": {
1518
+ "default": {
1519
+ "properties": {
1520
+ "value": {
1521
+ "widget": "dropdown"
1522
+ }
1523
+ },
1524
+ "widget": "repeater",
1525
+ "order": [
1526
+ "value"
1527
+ ]
1528
+ }
1529
+ },
1427
1530
  "PlaceholderTemplate": {
1428
1531
  "default": {
1429
1532
  "properties": {
@@ -1455,15 +1558,7 @@
1455
1558
  "widget": "relationship"
1456
1559
  },
1457
1560
  "modifiers": {
1458
- "properties": {
1459
- "value": {
1460
- "widget": "dropdown"
1461
- }
1462
- },
1463
- "widget": "repeater",
1464
- "order": [
1465
- "value"
1466
- ]
1561
+ "widget": "shapeArray"
1467
1562
  },
1468
1563
  "content": {
1469
1564
  "widget": "wysiwygText"
@@ -1484,15 +1579,7 @@
1484
1579
  "widget": "wysiwygText"
1485
1580
  },
1486
1581
  "campaignIds": {
1487
- "properties": {
1488
- "value": {
1489
- "widget": "singleLineText"
1490
- }
1491
- },
1492
- "widget": "repeater",
1493
- "order": [
1494
- "value"
1495
- ]
1582
+ "widget": "shapeArray"
1496
1583
  },
1497
1584
  "asset": {
1498
1585
  "widget": "image"
@@ -1524,6 +1611,40 @@
1524
1611
  ]
1525
1612
  }
1526
1613
  },
1614
+ "PlaceholderTemplateCampaignIds": {
1615
+ "default": {
1616
+ "properties": {
1617
+ "value": {
1618
+ "widget": "singleLineText"
1619
+ }
1620
+ },
1621
+ "widget": "repeater",
1622
+ "order": [
1623
+ "value"
1624
+ ]
1625
+ }
1626
+ },
1627
+ "VipBenefitLevels": {
1628
+ "default": {
1629
+ "properties": {
1630
+ "level": {
1631
+ "widget": "relationship"
1632
+ },
1633
+ "value": {
1634
+ "widget": "singleLineText"
1635
+ },
1636
+ "hasValue": {
1637
+ "widget": "checkbox"
1638
+ }
1639
+ },
1640
+ "widget": "repeater",
1641
+ "order": [
1642
+ "level",
1643
+ "hasValue",
1644
+ "value"
1645
+ ]
1646
+ }
1647
+ },
1527
1648
  "VipBenefit": {
1528
1649
  "default": {
1529
1650
  "properties": {
@@ -1537,23 +1658,7 @@
1537
1658
  "widget": "wysiwygSingleLineText"
1538
1659
  },
1539
1660
  "levels": {
1540
- "properties": {
1541
- "level": {
1542
- "widget": "relationship"
1543
- },
1544
- "value": {
1545
- "widget": "singleLineText"
1546
- },
1547
- "hasValue": {
1548
- "widget": "checkbox"
1549
- }
1550
- },
1551
- "widget": "repeater",
1552
- "order": [
1553
- "level",
1554
- "hasValue",
1555
- "value"
1556
- ]
1661
+ "widget": "shapeArray"
1557
1662
  }
1558
1663
  },
1559
1664
  "order": [
@@ -1680,6 +1785,19 @@
1680
1785
  ]
1681
1786
  }
1682
1787
  },
1788
+ "ActionDevices": {
1789
+ "default": {
1790
+ "properties": {
1791
+ "value": {
1792
+ "widget": "singleLineText"
1793
+ }
1794
+ },
1795
+ "widget": "repeater",
1796
+ "order": [
1797
+ "value"
1798
+ ]
1799
+ }
1800
+ },
1683
1801
  "Action": {
1684
1802
  "default": {
1685
1803
  "properties": {
@@ -1690,26 +1808,10 @@
1690
1808
  "widget": "singleLineText"
1691
1809
  },
1692
1810
  "devices": {
1693
- "properties": {
1694
- "value": {
1695
- "widget": "singleLineText"
1696
- }
1697
- },
1698
- "widget": "repeater",
1699
- "order": [
1700
- "value"
1701
- ]
1811
+ "widget": "shapeArray"
1702
1812
  },
1703
1813
  "jurisdictions": {
1704
- "properties": {
1705
- "value": {
1706
- "widget": "singleLineText"
1707
- }
1708
- },
1709
- "widget": "repeater",
1710
- "order": [
1711
- "value"
1712
- ]
1814
+ "widget": "shapeArray"
1713
1815
  }
1714
1816
  },
1715
1817
  "order": [
@@ -1720,6 +1822,19 @@
1720
1822
  ]
1721
1823
  }
1722
1824
  },
1825
+ "ActionJurisdictions": {
1826
+ "default": {
1827
+ "properties": {
1828
+ "value": {
1829
+ "widget": "singleLineText"
1830
+ }
1831
+ },
1832
+ "widget": "repeater",
1833
+ "order": [
1834
+ "value"
1835
+ ]
1836
+ }
1837
+ },
1723
1838
  "GameType": {
1724
1839
  "default": {
1725
1840
  "properties": {
@@ -1799,6 +1914,19 @@
1799
1914
  ]
1800
1915
  }
1801
1916
  },
1917
+ "SidebarDevices": {
1918
+ "default": {
1919
+ "properties": {
1920
+ "value": {
1921
+ "widget": "singleLineText"
1922
+ }
1923
+ },
1924
+ "widget": "repeater",
1925
+ "order": [
1926
+ "value"
1927
+ ]
1928
+ }
1929
+ },
1802
1930
  "Sidebar": {
1803
1931
  "default": {
1804
1932
  "properties": {
@@ -1806,15 +1934,7 @@
1806
1934
  "widget": "relationship"
1807
1935
  },
1808
1936
  "devices": {
1809
- "properties": {
1810
- "value": {
1811
- "widget": "singleLineText"
1812
- }
1813
- },
1814
- "widget": "repeater",
1815
- "order": [
1816
- "value"
1817
- ]
1937
+ "widget": "shapeArray"
1818
1938
  },
1819
1939
  "classes": {
1820
1940
  "instructions": "Add predefined utility classes",
@@ -1837,15 +1957,7 @@
1837
1957
  "widget": "relationship"
1838
1958
  },
1839
1959
  "jurisdictions": {
1840
- "properties": {
1841
- "value": {
1842
- "widget": "singleLineText"
1843
- }
1844
- },
1845
- "widget": "repeater",
1846
- "order": [
1847
- "value"
1848
- ]
1960
+ "widget": "shapeArray"
1849
1961
  }
1850
1962
  },
1851
1963
  "order": [
@@ -1861,6 +1973,19 @@
1861
1973
  ]
1862
1974
  }
1863
1975
  },
1976
+ "SidebarJurisdictions": {
1977
+ "default": {
1978
+ "properties": {
1979
+ "value": {
1980
+ "widget": "singleLineText"
1981
+ }
1982
+ },
1983
+ "widget": "repeater",
1984
+ "order": [
1985
+ "value"
1986
+ ]
1987
+ }
1988
+ },
1864
1989
  "PaymentSearch": {
1865
1990
  "default": {
1866
1991
  "properties": {
@@ -2178,6 +2303,23 @@
2178
2303
  ]
2179
2304
  }
2180
2305
  },
2306
+ "AppCampaignBonusConfigs": {
2307
+ "default": {
2308
+ "properties": {
2309
+ "campaignId": {
2310
+ "widget": "singleLineText"
2311
+ },
2312
+ "bonusId": {
2313
+ "widget": "singleLineText"
2314
+ }
2315
+ },
2316
+ "widget": "repeater",
2317
+ "order": [
2318
+ "campaignId",
2319
+ "bonusId"
2320
+ ]
2321
+ }
2322
+ },
2181
2323
  "App": {
2182
2324
  "default": {
2183
2325
  "properties": {
@@ -2206,19 +2348,7 @@
2206
2348
  "widget": "relationship"
2207
2349
  },
2208
2350
  "campaignBonusConfigs": {
2209
- "properties": {
2210
- "campaignId": {
2211
- "widget": "singleLineText"
2212
- },
2213
- "bonusId": {
2214
- "widget": "singleLineText"
2215
- }
2216
- },
2217
- "widget": "repeater",
2218
- "order": [
2219
- "campaignId",
2220
- "bonusId"
2221
- ]
2351
+ "widget": "shapeArray"
2222
2352
  }
2223
2353
  },
2224
2354
  "order": [
@@ -2394,6 +2524,19 @@
2394
2524
  ]
2395
2525
  }
2396
2526
  },
2527
+ "HeaderDevices": {
2528
+ "default": {
2529
+ "properties": {
2530
+ "value": {
2531
+ "widget": "singleLineText"
2532
+ }
2533
+ },
2534
+ "widget": "repeater",
2535
+ "order": [
2536
+ "value"
2537
+ ]
2538
+ }
2539
+ },
2397
2540
  "Header": {
2398
2541
  "default": {
2399
2542
  "properties": {
@@ -2410,15 +2553,7 @@
2410
2553
  "widget": "checkbox"
2411
2554
  },
2412
2555
  "devices": {
2413
- "properties": {
2414
- "value": {
2415
- "widget": "singleLineText"
2416
- }
2417
- },
2418
- "widget": "repeater",
2419
- "order": [
2420
- "value"
2421
- ]
2556
+ "widget": "shapeArray"
2422
2557
  },
2423
2558
  "classes": {
2424
2559
  "instructions": "Add predefined utility classes",
@@ -2450,15 +2585,7 @@
2450
2585
  "widget": "singleLineText"
2451
2586
  },
2452
2587
  "jurisdictions": {
2453
- "properties": {
2454
- "value": {
2455
- "widget": "singleLineText"
2456
- }
2457
- },
2458
- "widget": "repeater",
2459
- "order": [
2460
- "value"
2461
- ]
2588
+ "widget": "shapeArray"
2462
2589
  }
2463
2590
  },
2464
2591
  "order": [
@@ -2480,6 +2607,19 @@
2480
2607
  ]
2481
2608
  }
2482
2609
  },
2610
+ "HeaderJurisdictions": {
2611
+ "default": {
2612
+ "properties": {
2613
+ "value": {
2614
+ "widget": "singleLineText"
2615
+ }
2616
+ },
2617
+ "widget": "repeater",
2618
+ "order": [
2619
+ "value"
2620
+ ]
2621
+ }
2622
+ },
2483
2623
  "ForgotPasswordForm": {
2484
2624
  "default": {
2485
2625
  "properties": {
@@ -2681,116 +2821,141 @@
2681
2821
  ]
2682
2822
  }
2683
2823
  },
2824
+ "AppThemeLightTheme": {
2825
+ "default": {
2826
+ "properties": {
2827
+ "accent": {
2828
+ "widget": "relationship"
2829
+ },
2830
+ "backgroundForeground": {
2831
+ "widget": "relationship"
2832
+ },
2833
+ "primary": {
2834
+ "widget": "relationship"
2835
+ }
2836
+ },
2837
+ "widget": "object",
2838
+ "order": [
2839
+ "primary",
2840
+ "accent",
2841
+ "backgroundForeground"
2842
+ ]
2843
+ }
2844
+ },
2684
2845
  "AppTheme": {
2685
2846
  "default": {
2686
2847
  "properties": {
2687
2848
  "lightTheme": {
2688
- "properties": {
2689
- "accent": {
2690
- "widget": "relationship"
2691
- },
2692
- "backgroundForeground": {
2693
- "widget": "relationship"
2694
- },
2695
- "primary": {
2696
- "widget": "relationship"
2697
- }
2698
- },
2699
- "widget": "object",
2700
- "order": [
2701
- "primary",
2702
- "accent",
2703
- "backgroundForeground"
2704
- ]
2849
+ "widget": "shapeObject"
2705
2850
  },
2706
2851
  "defaultTheme": {
2707
2852
  "widget": "radio"
2708
2853
  },
2709
2854
  "headingStyle": {
2710
- "properties": {
2711
- "color": {
2712
- "widget": "singleLineText"
2713
- },
2714
- "textTransform": {
2715
- "widget": "dropdown"
2716
- }
2717
- },
2718
- "widget": "object",
2719
- "order": [
2720
- "color",
2721
- "textTransform"
2722
- ]
2855
+ "widget": "shapeObject"
2723
2856
  },
2724
2857
  "inputAppearance": {
2725
2858
  "instructions": "Select your material input appearance. [See examples](https://material.angular.io/components/form-field/overview#form-field-appearance-variants)",
2726
2859
  "widget": "dropdown"
2727
2860
  },
2728
2861
  "buttonStyle": {
2729
- "properties": {
2730
- "shape": {
2731
- "widget": "dropdown"
2732
- },
2733
- "textTransform": {
2734
- "widget": "dropdown"
2735
- }
2736
- },
2737
- "widget": "object",
2738
- "order": [
2739
- "shape",
2740
- "textTransform"
2741
- ]
2862
+ "widget": "shapeObject"
2742
2863
  },
2743
2864
  "darkTheme": {
2744
- "properties": {
2745
- "accent": {
2746
- "widget": "relationship"
2747
- },
2748
- "backgroundForeground": {
2749
- "widget": "relationship"
2750
- },
2751
- "primary": {
2752
- "widget": "relationship"
2753
- }
2754
- },
2755
- "widget": "object",
2756
- "order": [
2757
- "primary",
2758
- "accent",
2759
- "backgroundForeground"
2760
- ]
2865
+ "widget": "shapeObject"
2866
+ },
2867
+ "tabStyle": {
2868
+ "widget": "shapeObject"
2869
+ },
2870
+ "fontTheme": {
2871
+ "widget": "relationship"
2872
+ }
2873
+ },
2874
+ "order": [
2875
+ "inputAppearance",
2876
+ "buttonStyle",
2877
+ "headingStyle",
2878
+ "tabStyle",
2879
+ "defaultTheme",
2880
+ "lightTheme",
2881
+ "darkTheme",
2882
+ "fontTheme"
2883
+ ]
2884
+ }
2885
+ },
2886
+ "AppThemeHeadingStyle": {
2887
+ "default": {
2888
+ "properties": {
2889
+ "color": {
2890
+ "widget": "singleLineText"
2891
+ },
2892
+ "textTransform": {
2893
+ "widget": "dropdown"
2894
+ }
2895
+ },
2896
+ "widget": "object",
2897
+ "order": [
2898
+ "color",
2899
+ "textTransform"
2900
+ ]
2901
+ }
2902
+ },
2903
+ "AppThemeButtonStyle": {
2904
+ "default": {
2905
+ "properties": {
2906
+ "shape": {
2907
+ "widget": "dropdown"
2908
+ },
2909
+ "textTransform": {
2910
+ "widget": "dropdown"
2911
+ }
2912
+ },
2913
+ "widget": "object",
2914
+ "order": [
2915
+ "shape",
2916
+ "textTransform"
2917
+ ]
2918
+ }
2919
+ },
2920
+ "AppThemeDarkTheme": {
2921
+ "default": {
2922
+ "properties": {
2923
+ "accent": {
2924
+ "widget": "relationship"
2925
+ },
2926
+ "backgroundForeground": {
2927
+ "widget": "relationship"
2928
+ },
2929
+ "primary": {
2930
+ "widget": "relationship"
2931
+ }
2932
+ },
2933
+ "widget": "object",
2934
+ "order": [
2935
+ "primary",
2936
+ "accent",
2937
+ "backgroundForeground"
2938
+ ]
2939
+ }
2940
+ },
2941
+ "AppThemeTabStyle": {
2942
+ "default": {
2943
+ "properties": {
2944
+ "color": {
2945
+ "widget": "singleLineText"
2761
2946
  },
2762
- "tabStyle": {
2763
- "properties": {
2764
- "color": {
2765
- "widget": "singleLineText"
2766
- },
2767
- "activeColor": {
2768
- "widget": "singleLineText"
2769
- },
2770
- "textTransform": {
2771
- "widget": "dropdown"
2772
- }
2773
- },
2774
- "widget": "object",
2775
- "order": [
2776
- "color",
2777
- "activeColor",
2778
- "textTransform"
2779
- ]
2947
+ "activeColor": {
2948
+ "widget": "singleLineText"
2780
2949
  },
2781
- "fontTheme": {
2782
- "widget": "relationship"
2950
+ "textTransform": {
2951
+ "widget": "dropdown"
2783
2952
  }
2784
2953
  },
2954
+ "widget": "object",
2785
2955
  "order": [
2786
- "inputAppearance",
2787
- "buttonStyle",
2788
- "headingStyle",
2789
- "tabStyle",
2790
- "defaultTheme",
2791
- "lightTheme",
2792
- "darkTheme",
2793
- "fontTheme"
2956
+ "color",
2957
+ "activeColor",
2958
+ "textTransform"
2794
2959
  ]
2795
2960
  }
2796
2961
  },
@@ -3293,6 +3458,19 @@
3293
3458
  ]
3294
3459
  }
3295
3460
  },
3461
+ "GameJurisdictions": {
3462
+ "default": {
3463
+ "properties": {
3464
+ "value": {
3465
+ "widget": "singleLineText"
3466
+ }
3467
+ },
3468
+ "widget": "repeater",
3469
+ "order": [
3470
+ "value"
3471
+ ]
3472
+ }
3473
+ },
3296
3474
  "Game": {
3297
3475
  "default": {
3298
3476
  "properties": {
@@ -3339,15 +3517,7 @@
3339
3517
  "widget": "number"
3340
3518
  },
3341
3519
  "jurisdictions": {
3342
- "properties": {
3343
- "value": {
3344
- "widget": "singleLineText"
3345
- }
3346
- },
3347
- "widget": "repeater",
3348
- "order": [
3349
- "value"
3350
- ]
3520
+ "widget": "shapeArray"
3351
3521
  },
3352
3522
  "gamble": {
3353
3523
  "widget": "checkbox"
@@ -3356,15 +3526,7 @@
3356
3526
  "widget": "singleLineText"
3357
3527
  },
3358
3528
  "devices": {
3359
- "properties": {
3360
- "value": {
3361
- "widget": "singleLineText"
3362
- }
3363
- },
3364
- "widget": "repeater",
3365
- "order": [
3366
- "value"
3367
- ]
3529
+ "widget": "shapeArray"
3368
3530
  },
3369
3531
  "loginRequired": {
3370
3532
  "widget": "checkbox"
@@ -3445,6 +3607,19 @@
3445
3607
  ]
3446
3608
  }
3447
3609
  },
3610
+ "GameDevices": {
3611
+ "default": {
3612
+ "properties": {
3613
+ "value": {
3614
+ "widget": "singleLineText"
3615
+ }
3616
+ },
3617
+ "widget": "repeater",
3618
+ "order": [
3619
+ "value"
3620
+ ]
3621
+ }
3622
+ },
3448
3623
  "PayAndPlay": {
3449
3624
  "default": {
3450
3625
  "properties": {
@@ -3527,6 +3702,19 @@
3527
3702
  ]
3528
3703
  }
3529
3704
  },
3705
+ "FooterDevices": {
3706
+ "default": {
3707
+ "properties": {
3708
+ "value": {
3709
+ "widget": "singleLineText"
3710
+ }
3711
+ },
3712
+ "widget": "repeater",
3713
+ "order": [
3714
+ "value"
3715
+ ]
3716
+ }
3717
+ },
3530
3718
  "Footer": {
3531
3719
  "default": {
3532
3720
  "properties": {
@@ -3534,15 +3722,7 @@
3534
3722
  "widget": "relationship"
3535
3723
  },
3536
3724
  "devices": {
3537
- "properties": {
3538
- "value": {
3539
- "widget": "singleLineText"
3540
- }
3541
- },
3542
- "widget": "repeater",
3543
- "order": [
3544
- "value"
3545
- ]
3725
+ "widget": "shapeArray"
3546
3726
  },
3547
3727
  "background": {
3548
3728
  "widget": "singleLineText"
@@ -3562,15 +3742,7 @@
3562
3742
  "widget": "relationship"
3563
3743
  },
3564
3744
  "jurisdictions": {
3565
- "properties": {
3566
- "value": {
3567
- "widget": "singleLineText"
3568
- }
3569
- },
3570
- "widget": "repeater",
3571
- "order": [
3572
- "value"
3573
- ]
3745
+ "widget": "shapeArray"
3574
3746
  }
3575
3747
  },
3576
3748
  "order": [
@@ -3585,6 +3757,19 @@
3585
3757
  ]
3586
3758
  }
3587
3759
  },
3760
+ "FooterJurisdictions": {
3761
+ "default": {
3762
+ "properties": {
3763
+ "value": {
3764
+ "widget": "singleLineText"
3765
+ }
3766
+ },
3767
+ "widget": "repeater",
3768
+ "order": [
3769
+ "value"
3770
+ ]
3771
+ }
3772
+ },
3588
3773
  "CommunicationDetailsForm": {
3589
3774
  "default": {
3590
3775
  "properties": {
@@ -3613,6 +3798,71 @@
3613
3798
  ]
3614
3799
  }
3615
3800
  },
3801
+ "BackgroundForegroundBackground": {
3802
+ "default": {
3803
+ "properties": {
3804
+ "raisedButton": {
3805
+ "widget": "color"
3806
+ },
3807
+ "disabledButtonToggle": {
3808
+ "widget": "color"
3809
+ },
3810
+ "focusedButton": {
3811
+ "widget": "color"
3812
+ },
3813
+ "unselectedChip": {
3814
+ "widget": "color"
3815
+ },
3816
+ "disabledButton": {
3817
+ "widget": "color"
3818
+ },
3819
+ "hover": {
3820
+ "widget": "color"
3821
+ },
3822
+ "dialog": {
3823
+ "widget": "color"
3824
+ },
3825
+ "appBar": {
3826
+ "widget": "color"
3827
+ },
3828
+ "background": {
3829
+ "widget": "color"
3830
+ },
3831
+ "selectedButton": {
3832
+ "widget": "color"
3833
+ },
3834
+ "statusBar": {
3835
+ "widget": "color"
3836
+ },
3837
+ "disabledListOption": {
3838
+ "widget": "color"
3839
+ },
3840
+ "selectedDisabledButton": {
3841
+ "widget": "color"
3842
+ },
3843
+ "card": {
3844
+ "widget": "color"
3845
+ }
3846
+ },
3847
+ "widget": "object",
3848
+ "order": [
3849
+ "statusBar",
3850
+ "appBar",
3851
+ "background",
3852
+ "hover",
3853
+ "card",
3854
+ "dialog",
3855
+ "disabledButton",
3856
+ "raisedButton",
3857
+ "focusedButton",
3858
+ "selectedButton",
3859
+ "selectedDisabledButton",
3860
+ "disabledButtonToggle",
3861
+ "unselectedChip",
3862
+ "disabledListOption"
3863
+ ]
3864
+ }
3865
+ },
3616
3866
  "BackgroundForeground": {
3617
3867
  "default": {
3618
3868
  "properties": {
@@ -3620,146 +3870,10 @@
3620
3870
  "widget": "singleLineText"
3621
3871
  },
3622
3872
  "background": {
3623
- "properties": {
3624
- "raisedButton": {
3625
- "widget": "color"
3626
- },
3627
- "disabledButtonToggle": {
3628
- "widget": "color"
3629
- },
3630
- "focusedButton": {
3631
- "widget": "color"
3632
- },
3633
- "unselectedChip": {
3634
- "widget": "color"
3635
- },
3636
- "disabledButton": {
3637
- "widget": "color"
3638
- },
3639
- "hover": {
3640
- "widget": "color"
3641
- },
3642
- "dialog": {
3643
- "widget": "color"
3644
- },
3645
- "appBar": {
3646
- "widget": "color"
3647
- },
3648
- "background": {
3649
- "widget": "color"
3650
- },
3651
- "selectedButton": {
3652
- "widget": "color"
3653
- },
3654
- "statusBar": {
3655
- "widget": "color"
3656
- },
3657
- "disabledListOption": {
3658
- "widget": "color"
3659
- },
3660
- "selectedDisabledButton": {
3661
- "widget": "color"
3662
- },
3663
- "card": {
3664
- "widget": "color"
3665
- }
3666
- },
3667
- "widget": "object",
3668
- "order": [
3669
- "statusBar",
3670
- "appBar",
3671
- "background",
3672
- "hover",
3673
- "card",
3674
- "dialog",
3675
- "disabledButton",
3676
- "raisedButton",
3677
- "focusedButton",
3678
- "selectedButton",
3679
- "selectedDisabledButton",
3680
- "disabledButtonToggle",
3681
- "unselectedChip",
3682
- "disabledListOption"
3683
- ]
3873
+ "widget": "shapeObject"
3684
3874
  },
3685
3875
  "foreground": {
3686
- "properties": {
3687
- "elevation": {
3688
- "widget": "color"
3689
- },
3690
- "sliderMin": {
3691
- "widget": "color"
3692
- },
3693
- "icon": {
3694
- "widget": "color"
3695
- },
3696
- "dividers": {
3697
- "widget": "color"
3698
- },
3699
- "icons": {
3700
- "widget": "color"
3701
- },
3702
- "sliderOffActive": {
3703
- "widget": "color"
3704
- },
3705
- "secondaryText": {
3706
- "widget": "color"
3707
- },
3708
- "disabledButton": {
3709
- "widget": "color"
3710
- },
3711
- "tabTextColor": {
3712
- "widget": "color"
3713
- },
3714
- "tabTextActiveColor": {
3715
- "widget": "color"
3716
- },
3717
- "hintText": {
3718
- "widget": "color"
3719
- },
3720
- "divider": {
3721
- "widget": "color"
3722
- },
3723
- "disabled": {
3724
- "widget": "color"
3725
- },
3726
- "sliderOff": {
3727
- "widget": "color"
3728
- },
3729
- "text": {
3730
- "widget": "color"
3731
- },
3732
- "disabledText": {
3733
- "widget": "color"
3734
- },
3735
- "base": {
3736
- "widget": "color"
3737
- },
3738
- "spinner": {
3739
- "widget": "color"
3740
- }
3741
- },
3742
- "widget": "object",
3743
- "order": [
3744
- "base",
3745
- "divider",
3746
- "dividers",
3747
- "disabled",
3748
- "disabledButton",
3749
- "disabledText",
3750
- "elevation",
3751
- "hintText",
3752
- "secondaryText",
3753
- "icon",
3754
- "icons",
3755
- "text",
3756
- "sliderMin",
3757
- "sliderOff",
3758
- "sliderOffActive",
3759
- "tabTextColor",
3760
- "tabTextActiveColor",
3761
- "spinner"
3762
- ]
3876
+ "widget": "shapeObject"
3763
3877
  }
3764
3878
  },
3765
3879
  "order": [
@@ -3769,6 +3883,87 @@
3769
3883
  ]
3770
3884
  }
3771
3885
  },
3886
+ "BackgroundForegroundForeground": {
3887
+ "default": {
3888
+ "properties": {
3889
+ "elevation": {
3890
+ "widget": "color"
3891
+ },
3892
+ "sliderMin": {
3893
+ "widget": "color"
3894
+ },
3895
+ "icon": {
3896
+ "widget": "color"
3897
+ },
3898
+ "dividers": {
3899
+ "widget": "color"
3900
+ },
3901
+ "icons": {
3902
+ "widget": "color"
3903
+ },
3904
+ "sliderOffActive": {
3905
+ "widget": "color"
3906
+ },
3907
+ "secondaryText": {
3908
+ "widget": "color"
3909
+ },
3910
+ "disabledButton": {
3911
+ "widget": "color"
3912
+ },
3913
+ "tabTextColor": {
3914
+ "widget": "color"
3915
+ },
3916
+ "tabTextActiveColor": {
3917
+ "widget": "color"
3918
+ },
3919
+ "hintText": {
3920
+ "widget": "color"
3921
+ },
3922
+ "divider": {
3923
+ "widget": "color"
3924
+ },
3925
+ "disabled": {
3926
+ "widget": "color"
3927
+ },
3928
+ "sliderOff": {
3929
+ "widget": "color"
3930
+ },
3931
+ "text": {
3932
+ "widget": "color"
3933
+ },
3934
+ "disabledText": {
3935
+ "widget": "color"
3936
+ },
3937
+ "base": {
3938
+ "widget": "color"
3939
+ },
3940
+ "spinner": {
3941
+ "widget": "color"
3942
+ }
3943
+ },
3944
+ "widget": "object",
3945
+ "order": [
3946
+ "base",
3947
+ "divider",
3948
+ "dividers",
3949
+ "disabled",
3950
+ "disabledButton",
3951
+ "disabledText",
3952
+ "elevation",
3953
+ "hintText",
3954
+ "secondaryText",
3955
+ "icon",
3956
+ "icons",
3957
+ "text",
3958
+ "sliderMin",
3959
+ "sliderOff",
3960
+ "sliderOffActive",
3961
+ "tabTextColor",
3962
+ "tabTextActiveColor",
3963
+ "spinner"
3964
+ ]
3965
+ }
3966
+ },
3772
3967
  "BonusList": {
3773
3968
  "default": {
3774
3969
  "properties": {
@@ -23251,6 +23446,6 @@
23251
23446
  }
23252
23447
  }
23253
23448
  },
23254
- "schemaVersion": "3.33.0",
23449
+ "schemaVersion": "3.34.0",
23255
23450
  "services": {}
23256
23451
  }