@storm-software/config 1.124.8 → 1.125.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.
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/dist/{chunk-HPEJ52UX.cjs → chunk-63N4QQ4F.cjs} +10 -10
- package/dist/{chunk-2IM4ZY3U.js → chunk-ABGOB6LC.js} +17 -20
- package/dist/{chunk-M6WLNJVQ.cjs → chunk-C2KLOUYY.cjs} +13 -16
- package/dist/{chunk-X3RNGA5B.js → chunk-KSQRDQGT.js} +15 -15
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +8 -8
- package/dist/constants.d.ts +8 -8
- package/dist/constants.js +13 -13
- package/dist/define-config.d.cts +1 -2
- package/dist/define-config.d.ts +1 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +16 -16
- package/dist/schema.cjs +3 -3
- package/dist/schema.d.cts +3 -4
- package/dist/schema.d.ts +3 -4
- package/dist/schema.js +4 -4
- package/package.json +2 -2
- package/presets/storm-software.json +8 -1
- package/schemas/storm-workspace.schema.json +276 -678
- package/src/constants.d.ts +7 -7
- package/src/define-config.d.ts +1 -2
- package/src/schema.d.ts +2 -3
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
"required": ["banner", "footer"],
|
|
168
168
|
"additionalProperties": false
|
|
169
169
|
},
|
|
170
|
-
"
|
|
170
|
+
"socials": {
|
|
171
171
|
"description": "The workspace's account config used to store various social media links",
|
|
172
172
|
"type": "object",
|
|
173
173
|
"properties": {
|
|
@@ -240,14 +240,6 @@
|
|
|
240
240
|
"description": "The root directory of the workspace",
|
|
241
241
|
"type": "string"
|
|
242
242
|
},
|
|
243
|
-
"externalPackagePatterns": {
|
|
244
|
-
"description": "The build will use these package patterns to determine if they should be external to the bundle",
|
|
245
|
-
"default": [],
|
|
246
|
-
"type": "array",
|
|
247
|
-
"items": {
|
|
248
|
-
"type": "string"
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
243
|
"skipCache": {
|
|
252
244
|
"description": "Should all known types of workspace caching be skipped?",
|
|
253
245
|
"default": false,
|
|
@@ -761,426 +753,164 @@
|
|
|
761
753
|
]
|
|
762
754
|
},
|
|
763
755
|
{
|
|
764
|
-
"
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
"
|
|
769
|
-
|
|
770
|
-
"anyOf": [
|
|
771
|
-
{
|
|
772
|
-
"type": "object",
|
|
773
|
-
"properties": {
|
|
774
|
-
"dark": {
|
|
775
|
-
"description": "The dark background color of the workspace",
|
|
776
|
-
"default": "#1d1e22",
|
|
777
|
-
"type": "string",
|
|
778
|
-
"minLength": 7,
|
|
779
|
-
"maxLength": 7,
|
|
780
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
781
|
-
},
|
|
782
|
-
"light": {
|
|
783
|
-
"description": "The light background color of the workspace",
|
|
784
|
-
"default": "#f4f4f5",
|
|
785
|
-
"type": "string",
|
|
786
|
-
"minLength": 7,
|
|
787
|
-
"maxLength": 7,
|
|
788
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
789
|
-
},
|
|
790
|
-
"brand": {
|
|
791
|
-
"description": "The primary brand specific color of the workspace",
|
|
792
|
-
"default": "#1fb2a6",
|
|
793
|
-
"type": "string",
|
|
794
|
-
"minLength": 7,
|
|
795
|
-
"maxLength": 7,
|
|
796
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
797
|
-
},
|
|
798
|
-
"alternate": {
|
|
799
|
-
"description": "The alternate brand specific color of the workspace",
|
|
800
|
-
"type": "string",
|
|
801
|
-
"minLength": 7,
|
|
802
|
-
"maxLength": 7,
|
|
803
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
804
|
-
},
|
|
805
|
-
"accent": {
|
|
806
|
-
"description": "The secondary brand specific color of the workspace",
|
|
807
|
-
"type": "string",
|
|
808
|
-
"minLength": 7,
|
|
809
|
-
"maxLength": 7,
|
|
810
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
811
|
-
},
|
|
812
|
-
"link": {
|
|
813
|
-
"description": "The color used to display hyperlink text",
|
|
814
|
-
"type": "string",
|
|
815
|
-
"minLength": 7,
|
|
816
|
-
"maxLength": 7,
|
|
817
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
818
|
-
},
|
|
819
|
-
"help": {
|
|
820
|
-
"description": "The second brand specific color of the workspace",
|
|
821
|
-
"default": "#8256D0",
|
|
822
|
-
"type": "string",
|
|
823
|
-
"minLength": 7,
|
|
824
|
-
"maxLength": 7,
|
|
825
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
826
|
-
},
|
|
827
|
-
"success": {
|
|
828
|
-
"description": "The success color of the workspace",
|
|
829
|
-
"default": "#12B66A",
|
|
830
|
-
"type": "string",
|
|
831
|
-
"minLength": 7,
|
|
832
|
-
"maxLength": 7,
|
|
833
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
834
|
-
},
|
|
835
|
-
"info": {
|
|
836
|
-
"description": "The informational color of the workspace",
|
|
837
|
-
"default": "#0070E0",
|
|
838
|
-
"type": "string",
|
|
839
|
-
"minLength": 7,
|
|
840
|
-
"maxLength": 7,
|
|
841
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
842
|
-
},
|
|
843
|
-
"warning": {
|
|
844
|
-
"description": "The warning color of the workspace",
|
|
845
|
-
"default": "#fcc419",
|
|
846
|
-
"type": "string",
|
|
847
|
-
"minLength": 7,
|
|
848
|
-
"maxLength": 7,
|
|
849
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
850
|
-
},
|
|
851
|
-
"danger": {
|
|
852
|
-
"description": "The danger color of the workspace",
|
|
853
|
-
"default": "#D8314A",
|
|
854
|
-
"type": "string",
|
|
855
|
-
"minLength": 7,
|
|
856
|
-
"maxLength": 7,
|
|
857
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
858
|
-
},
|
|
859
|
-
"fatal": {
|
|
860
|
-
"description": "The fatal color of the workspace",
|
|
861
|
-
"type": "string",
|
|
862
|
-
"minLength": 7,
|
|
863
|
-
"maxLength": 7,
|
|
864
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
865
|
-
},
|
|
866
|
-
"positive": {
|
|
867
|
-
"description": "The positive number color of the workspace",
|
|
868
|
-
"default": "#4ade80",
|
|
869
|
-
"type": "string",
|
|
870
|
-
"minLength": 7,
|
|
871
|
-
"maxLength": 7,
|
|
872
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
873
|
-
},
|
|
874
|
-
"negative": {
|
|
875
|
-
"description": "The negative number color of the workspace",
|
|
876
|
-
"default": "#ef4444",
|
|
877
|
-
"type": "string",
|
|
878
|
-
"minLength": 7,
|
|
879
|
-
"maxLength": 7,
|
|
880
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
881
|
-
}
|
|
882
|
-
},
|
|
883
|
-
"required": [
|
|
884
|
-
"dark",
|
|
885
|
-
"light",
|
|
886
|
-
"brand",
|
|
887
|
-
"help",
|
|
888
|
-
"success",
|
|
889
|
-
"info",
|
|
890
|
-
"warning",
|
|
891
|
-
"danger",
|
|
892
|
-
"positive",
|
|
893
|
-
"negative"
|
|
894
|
-
],
|
|
895
|
-
"additionalProperties": false
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"type": "object",
|
|
899
|
-
"properties": {
|
|
900
|
-
"dark": {
|
|
901
|
-
"type": "object",
|
|
902
|
-
"properties": {
|
|
903
|
-
"foreground": {
|
|
904
|
-
"description": "The light background color of the workspace",
|
|
905
|
-
"default": "#f4f4f5",
|
|
906
|
-
"type": "string",
|
|
907
|
-
"minLength": 7,
|
|
908
|
-
"maxLength": 7,
|
|
909
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
910
|
-
},
|
|
911
|
-
"background": {
|
|
912
|
-
"description": "The dark background color of the workspace",
|
|
913
|
-
"default": "#1d1e22",
|
|
914
|
-
"type": "string",
|
|
915
|
-
"minLength": 7,
|
|
916
|
-
"maxLength": 7,
|
|
917
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
918
|
-
},
|
|
919
|
-
"brand": {
|
|
920
|
-
"description": "The primary brand specific color of the workspace",
|
|
921
|
-
"default": "#1fb2a6",
|
|
922
|
-
"type": "string",
|
|
923
|
-
"minLength": 7,
|
|
924
|
-
"maxLength": 7,
|
|
925
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
926
|
-
},
|
|
927
|
-
"alternate": {
|
|
928
|
-
"description": "The alternate brand specific color of the workspace",
|
|
929
|
-
"type": "string",
|
|
930
|
-
"minLength": 7,
|
|
931
|
-
"maxLength": 7,
|
|
932
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
933
|
-
},
|
|
934
|
-
"accent": {
|
|
935
|
-
"description": "The secondary brand specific color of the workspace",
|
|
936
|
-
"type": "string",
|
|
937
|
-
"minLength": 7,
|
|
938
|
-
"maxLength": 7,
|
|
939
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
940
|
-
},
|
|
941
|
-
"link": {
|
|
942
|
-
"description": "The color used to display hyperlink text",
|
|
943
|
-
"type": "string",
|
|
944
|
-
"minLength": 7,
|
|
945
|
-
"maxLength": 7,
|
|
946
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
947
|
-
},
|
|
948
|
-
"help": {
|
|
949
|
-
"description": "The second brand specific color of the workspace",
|
|
950
|
-
"default": "#8256D0",
|
|
951
|
-
"type": "string",
|
|
952
|
-
"minLength": 7,
|
|
953
|
-
"maxLength": 7,
|
|
954
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
955
|
-
},
|
|
956
|
-
"success": {
|
|
957
|
-
"description": "The success color of the workspace",
|
|
958
|
-
"default": "#12B66A",
|
|
959
|
-
"type": "string",
|
|
960
|
-
"minLength": 7,
|
|
961
|
-
"maxLength": 7,
|
|
962
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
963
|
-
},
|
|
964
|
-
"info": {
|
|
965
|
-
"description": "The informational color of the workspace",
|
|
966
|
-
"default": "#0070E0",
|
|
967
|
-
"type": "string",
|
|
968
|
-
"minLength": 7,
|
|
969
|
-
"maxLength": 7,
|
|
970
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
971
|
-
},
|
|
972
|
-
"warning": {
|
|
973
|
-
"description": "The warning color of the workspace",
|
|
974
|
-
"default": "#fcc419",
|
|
975
|
-
"type": "string",
|
|
976
|
-
"minLength": 7,
|
|
977
|
-
"maxLength": 7,
|
|
978
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
979
|
-
},
|
|
980
|
-
"danger": {
|
|
981
|
-
"description": "The danger color of the workspace",
|
|
982
|
-
"default": "#D8314A",
|
|
983
|
-
"type": "string",
|
|
984
|
-
"minLength": 7,
|
|
985
|
-
"maxLength": 7,
|
|
986
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
987
|
-
},
|
|
988
|
-
"fatal": {
|
|
989
|
-
"description": "The fatal color of the workspace",
|
|
990
|
-
"type": "string",
|
|
991
|
-
"minLength": 7,
|
|
992
|
-
"maxLength": 7,
|
|
993
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
994
|
-
},
|
|
995
|
-
"positive": {
|
|
996
|
-
"description": "The positive number color of the workspace",
|
|
997
|
-
"default": "#4ade80",
|
|
998
|
-
"type": "string",
|
|
999
|
-
"minLength": 7,
|
|
1000
|
-
"maxLength": 7,
|
|
1001
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1002
|
-
},
|
|
1003
|
-
"negative": {
|
|
1004
|
-
"description": "The negative number color of the workspace",
|
|
1005
|
-
"default": "#ef4444",
|
|
1006
|
-
"type": "string",
|
|
1007
|
-
"minLength": 7,
|
|
1008
|
-
"maxLength": 7,
|
|
1009
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1010
|
-
}
|
|
1011
|
-
},
|
|
1012
|
-
"required": [
|
|
1013
|
-
"foreground",
|
|
1014
|
-
"background",
|
|
1015
|
-
"brand",
|
|
1016
|
-
"help",
|
|
1017
|
-
"success",
|
|
1018
|
-
"info",
|
|
1019
|
-
"warning",
|
|
1020
|
-
"danger",
|
|
1021
|
-
"positive",
|
|
1022
|
-
"negative"
|
|
1023
|
-
],
|
|
1024
|
-
"additionalProperties": false
|
|
1025
|
-
},
|
|
1026
|
-
"light": {
|
|
1027
|
-
"type": "object",
|
|
1028
|
-
"properties": {
|
|
1029
|
-
"foreground": {
|
|
1030
|
-
"description": "The dark background color of the workspace",
|
|
1031
|
-
"default": "#1d1e22",
|
|
1032
|
-
"type": "string",
|
|
1033
|
-
"minLength": 7,
|
|
1034
|
-
"maxLength": 7,
|
|
1035
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1036
|
-
},
|
|
1037
|
-
"background": {
|
|
1038
|
-
"description": "The light background color of the workspace",
|
|
1039
|
-
"default": "#f4f4f5",
|
|
1040
|
-
"type": "string",
|
|
1041
|
-
"minLength": 7,
|
|
1042
|
-
"maxLength": 7,
|
|
1043
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1044
|
-
},
|
|
1045
|
-
"brand": {
|
|
1046
|
-
"description": "The primary brand specific color of the workspace",
|
|
1047
|
-
"default": "#1fb2a6",
|
|
1048
|
-
"type": "string",
|
|
1049
|
-
"minLength": 7,
|
|
1050
|
-
"maxLength": 7,
|
|
1051
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1052
|
-
},
|
|
1053
|
-
"alternate": {
|
|
1054
|
-
"description": "The alternate brand specific color of the workspace",
|
|
1055
|
-
"type": "string",
|
|
1056
|
-
"minLength": 7,
|
|
1057
|
-
"maxLength": 7,
|
|
1058
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1059
|
-
},
|
|
1060
|
-
"accent": {
|
|
1061
|
-
"description": "The secondary brand specific color of the workspace",
|
|
1062
|
-
"type": "string",
|
|
1063
|
-
"minLength": 7,
|
|
1064
|
-
"maxLength": 7,
|
|
1065
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1066
|
-
},
|
|
1067
|
-
"link": {
|
|
1068
|
-
"description": "The color used to display hyperlink text",
|
|
1069
|
-
"type": "string",
|
|
1070
|
-
"minLength": 7,
|
|
1071
|
-
"maxLength": 7,
|
|
1072
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1073
|
-
},
|
|
1074
|
-
"help": {
|
|
1075
|
-
"description": "The second brand specific color of the workspace",
|
|
1076
|
-
"default": "#8256D0",
|
|
1077
|
-
"type": "string",
|
|
1078
|
-
"minLength": 7,
|
|
1079
|
-
"maxLength": 7,
|
|
1080
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1081
|
-
},
|
|
1082
|
-
"success": {
|
|
1083
|
-
"description": "The success color of the workspace",
|
|
1084
|
-
"default": "#12B66A",
|
|
1085
|
-
"type": "string",
|
|
1086
|
-
"minLength": 7,
|
|
1087
|
-
"maxLength": 7,
|
|
1088
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1089
|
-
},
|
|
1090
|
-
"info": {
|
|
1091
|
-
"description": "The informational color of the workspace",
|
|
1092
|
-
"default": "#0070E0",
|
|
1093
|
-
"type": "string",
|
|
1094
|
-
"minLength": 7,
|
|
1095
|
-
"maxLength": 7,
|
|
1096
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1097
|
-
},
|
|
1098
|
-
"warning": {
|
|
1099
|
-
"description": "The warning color of the workspace",
|
|
1100
|
-
"default": "#fcc419",
|
|
1101
|
-
"type": "string",
|
|
1102
|
-
"minLength": 7,
|
|
1103
|
-
"maxLength": 7,
|
|
1104
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1105
|
-
},
|
|
1106
|
-
"danger": {
|
|
1107
|
-
"description": "The danger color of the workspace",
|
|
1108
|
-
"default": "#D8314A",
|
|
1109
|
-
"type": "string",
|
|
1110
|
-
"minLength": 7,
|
|
1111
|
-
"maxLength": 7,
|
|
1112
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1113
|
-
},
|
|
1114
|
-
"fatal": {
|
|
1115
|
-
"description": "The fatal color of the workspace",
|
|
1116
|
-
"type": "string",
|
|
1117
|
-
"minLength": 7,
|
|
1118
|
-
"maxLength": 7,
|
|
1119
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1120
|
-
},
|
|
1121
|
-
"positive": {
|
|
1122
|
-
"description": "The positive number color of the workspace",
|
|
1123
|
-
"default": "#4ade80",
|
|
1124
|
-
"type": "string",
|
|
1125
|
-
"minLength": 7,
|
|
1126
|
-
"maxLength": 7,
|
|
1127
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1128
|
-
},
|
|
1129
|
-
"negative": {
|
|
1130
|
-
"description": "The negative number color of the workspace",
|
|
1131
|
-
"default": "#ef4444",
|
|
1132
|
-
"type": "string",
|
|
1133
|
-
"minLength": 7,
|
|
1134
|
-
"maxLength": 7,
|
|
1135
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1136
|
-
}
|
|
1137
|
-
},
|
|
1138
|
-
"required": [
|
|
1139
|
-
"foreground",
|
|
1140
|
-
"background",
|
|
1141
|
-
"brand",
|
|
1142
|
-
"help",
|
|
1143
|
-
"success",
|
|
1144
|
-
"info",
|
|
1145
|
-
"warning",
|
|
1146
|
-
"danger",
|
|
1147
|
-
"positive",
|
|
1148
|
-
"negative"
|
|
1149
|
-
],
|
|
1150
|
-
"additionalProperties": false
|
|
1151
|
-
}
|
|
1152
|
-
},
|
|
1153
|
-
"required": ["dark", "light"],
|
|
1154
|
-
"additionalProperties": false
|
|
1155
|
-
}
|
|
1156
|
-
]
|
|
1157
|
-
}
|
|
756
|
+
"type": "object",
|
|
757
|
+
"propertyNames": {
|
|
758
|
+
"anyOf": [
|
|
759
|
+
{
|
|
760
|
+
"type": "string",
|
|
761
|
+
"const": "base"
|
|
1158
762
|
},
|
|
1159
|
-
|
|
1160
|
-
"additionalProperties": false
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
"type": "object",
|
|
1164
|
-
"propertyNames": {
|
|
763
|
+
{
|
|
1165
764
|
"type": "string"
|
|
765
|
+
}
|
|
766
|
+
]
|
|
767
|
+
},
|
|
768
|
+
"additionalProperties": {
|
|
769
|
+
"description": "Colors used for various workspace elements",
|
|
770
|
+
"anyOf": [
|
|
771
|
+
{
|
|
772
|
+
"type": "object",
|
|
773
|
+
"properties": {
|
|
774
|
+
"dark": {
|
|
775
|
+
"description": "The dark background color of the workspace",
|
|
776
|
+
"default": "#1d1e22",
|
|
777
|
+
"type": "string",
|
|
778
|
+
"minLength": 7,
|
|
779
|
+
"maxLength": 7,
|
|
780
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
781
|
+
},
|
|
782
|
+
"light": {
|
|
783
|
+
"description": "The light background color of the workspace",
|
|
784
|
+
"default": "#f4f4f5",
|
|
785
|
+
"type": "string",
|
|
786
|
+
"minLength": 7,
|
|
787
|
+
"maxLength": 7,
|
|
788
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
789
|
+
},
|
|
790
|
+
"brand": {
|
|
791
|
+
"description": "The primary brand specific color of the workspace",
|
|
792
|
+
"default": "#1fb2a6",
|
|
793
|
+
"type": "string",
|
|
794
|
+
"minLength": 7,
|
|
795
|
+
"maxLength": 7,
|
|
796
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
797
|
+
},
|
|
798
|
+
"alternate": {
|
|
799
|
+
"description": "The alternate brand specific color of the workspace",
|
|
800
|
+
"type": "string",
|
|
801
|
+
"minLength": 7,
|
|
802
|
+
"maxLength": 7,
|
|
803
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
804
|
+
},
|
|
805
|
+
"accent": {
|
|
806
|
+
"description": "The secondary brand specific color of the workspace",
|
|
807
|
+
"type": "string",
|
|
808
|
+
"minLength": 7,
|
|
809
|
+
"maxLength": 7,
|
|
810
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
811
|
+
},
|
|
812
|
+
"link": {
|
|
813
|
+
"description": "The color used to display hyperlink text",
|
|
814
|
+
"type": "string",
|
|
815
|
+
"minLength": 7,
|
|
816
|
+
"maxLength": 7,
|
|
817
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
818
|
+
},
|
|
819
|
+
"help": {
|
|
820
|
+
"description": "The second brand specific color of the workspace",
|
|
821
|
+
"default": "#8256D0",
|
|
822
|
+
"type": "string",
|
|
823
|
+
"minLength": 7,
|
|
824
|
+
"maxLength": 7,
|
|
825
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
826
|
+
},
|
|
827
|
+
"success": {
|
|
828
|
+
"description": "The success color of the workspace",
|
|
829
|
+
"default": "#12B66A",
|
|
830
|
+
"type": "string",
|
|
831
|
+
"minLength": 7,
|
|
832
|
+
"maxLength": 7,
|
|
833
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
834
|
+
},
|
|
835
|
+
"info": {
|
|
836
|
+
"description": "The informational color of the workspace",
|
|
837
|
+
"default": "#0070E0",
|
|
838
|
+
"type": "string",
|
|
839
|
+
"minLength": 7,
|
|
840
|
+
"maxLength": 7,
|
|
841
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
842
|
+
},
|
|
843
|
+
"warning": {
|
|
844
|
+
"description": "The warning color of the workspace",
|
|
845
|
+
"default": "#fcc419",
|
|
846
|
+
"type": "string",
|
|
847
|
+
"minLength": 7,
|
|
848
|
+
"maxLength": 7,
|
|
849
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
850
|
+
},
|
|
851
|
+
"danger": {
|
|
852
|
+
"description": "The danger color of the workspace",
|
|
853
|
+
"default": "#D8314A",
|
|
854
|
+
"type": "string",
|
|
855
|
+
"minLength": 7,
|
|
856
|
+
"maxLength": 7,
|
|
857
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
858
|
+
},
|
|
859
|
+
"fatal": {
|
|
860
|
+
"description": "The fatal color of the workspace",
|
|
861
|
+
"type": "string",
|
|
862
|
+
"minLength": 7,
|
|
863
|
+
"maxLength": 7,
|
|
864
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
865
|
+
},
|
|
866
|
+
"positive": {
|
|
867
|
+
"description": "The positive number color of the workspace",
|
|
868
|
+
"default": "#4ade80",
|
|
869
|
+
"type": "string",
|
|
870
|
+
"minLength": 7,
|
|
871
|
+
"maxLength": 7,
|
|
872
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
873
|
+
},
|
|
874
|
+
"negative": {
|
|
875
|
+
"description": "The negative number color of the workspace",
|
|
876
|
+
"default": "#ef4444",
|
|
877
|
+
"type": "string",
|
|
878
|
+
"minLength": 7,
|
|
879
|
+
"maxLength": 7,
|
|
880
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"required": [
|
|
884
|
+
"dark",
|
|
885
|
+
"light",
|
|
886
|
+
"brand",
|
|
887
|
+
"help",
|
|
888
|
+
"success",
|
|
889
|
+
"info",
|
|
890
|
+
"warning",
|
|
891
|
+
"danger",
|
|
892
|
+
"positive",
|
|
893
|
+
"negative"
|
|
894
|
+
],
|
|
895
|
+
"additionalProperties": false
|
|
1166
896
|
},
|
|
1167
|
-
|
|
1168
|
-
"
|
|
1169
|
-
"
|
|
1170
|
-
{
|
|
897
|
+
{
|
|
898
|
+
"type": "object",
|
|
899
|
+
"properties": {
|
|
900
|
+
"dark": {
|
|
1171
901
|
"type": "object",
|
|
1172
902
|
"properties": {
|
|
1173
|
-
"
|
|
1174
|
-
"description": "The
|
|
1175
|
-
"default": "#
|
|
903
|
+
"foreground": {
|
|
904
|
+
"description": "The light background color of the workspace",
|
|
905
|
+
"default": "#f4f4f5",
|
|
1176
906
|
"type": "string",
|
|
1177
907
|
"minLength": 7,
|
|
1178
908
|
"maxLength": 7,
|
|
1179
909
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1180
910
|
},
|
|
1181
|
-
"
|
|
1182
|
-
"description": "The
|
|
1183
|
-
"default": "#
|
|
911
|
+
"background": {
|
|
912
|
+
"description": "The dark background color of the workspace",
|
|
913
|
+
"default": "#1d1e22",
|
|
1184
914
|
"type": "string",
|
|
1185
915
|
"minLength": 7,
|
|
1186
916
|
"maxLength": 7,
|
|
@@ -1280,8 +1010,8 @@
|
|
|
1280
1010
|
}
|
|
1281
1011
|
},
|
|
1282
1012
|
"required": [
|
|
1283
|
-
"
|
|
1284
|
-
"
|
|
1013
|
+
"foreground",
|
|
1014
|
+
"background",
|
|
1285
1015
|
"brand",
|
|
1286
1016
|
"help",
|
|
1287
1017
|
"success",
|
|
@@ -1293,269 +1023,138 @@
|
|
|
1293
1023
|
],
|
|
1294
1024
|
"additionalProperties": false
|
|
1295
1025
|
},
|
|
1296
|
-
{
|
|
1026
|
+
"light": {
|
|
1297
1027
|
"type": "object",
|
|
1298
1028
|
"properties": {
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1301
|
-
"
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
"minLength": 7,
|
|
1337
|
-
"maxLength": 7,
|
|
1338
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1339
|
-
},
|
|
1340
|
-
"link": {
|
|
1341
|
-
"description": "The color used to display hyperlink text",
|
|
1342
|
-
"type": "string",
|
|
1343
|
-
"minLength": 7,
|
|
1344
|
-
"maxLength": 7,
|
|
1345
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1346
|
-
},
|
|
1347
|
-
"help": {
|
|
1348
|
-
"description": "The second brand specific color of the workspace",
|
|
1349
|
-
"default": "#8256D0",
|
|
1350
|
-
"type": "string",
|
|
1351
|
-
"minLength": 7,
|
|
1352
|
-
"maxLength": 7,
|
|
1353
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1354
|
-
},
|
|
1355
|
-
"success": {
|
|
1356
|
-
"description": "The success color of the workspace",
|
|
1357
|
-
"default": "#12B66A",
|
|
1358
|
-
"type": "string",
|
|
1359
|
-
"minLength": 7,
|
|
1360
|
-
"maxLength": 7,
|
|
1361
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1362
|
-
},
|
|
1363
|
-
"info": {
|
|
1364
|
-
"description": "The informational color of the workspace",
|
|
1365
|
-
"default": "#0070E0",
|
|
1366
|
-
"type": "string",
|
|
1367
|
-
"minLength": 7,
|
|
1368
|
-
"maxLength": 7,
|
|
1369
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1370
|
-
},
|
|
1371
|
-
"warning": {
|
|
1372
|
-
"description": "The warning color of the workspace",
|
|
1373
|
-
"default": "#fcc419",
|
|
1374
|
-
"type": "string",
|
|
1375
|
-
"minLength": 7,
|
|
1376
|
-
"maxLength": 7,
|
|
1377
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1378
|
-
},
|
|
1379
|
-
"danger": {
|
|
1380
|
-
"description": "The danger color of the workspace",
|
|
1381
|
-
"default": "#D8314A",
|
|
1382
|
-
"type": "string",
|
|
1383
|
-
"minLength": 7,
|
|
1384
|
-
"maxLength": 7,
|
|
1385
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1386
|
-
},
|
|
1387
|
-
"fatal": {
|
|
1388
|
-
"description": "The fatal color of the workspace",
|
|
1389
|
-
"type": "string",
|
|
1390
|
-
"minLength": 7,
|
|
1391
|
-
"maxLength": 7,
|
|
1392
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1393
|
-
},
|
|
1394
|
-
"positive": {
|
|
1395
|
-
"description": "The positive number color of the workspace",
|
|
1396
|
-
"default": "#4ade80",
|
|
1397
|
-
"type": "string",
|
|
1398
|
-
"minLength": 7,
|
|
1399
|
-
"maxLength": 7,
|
|
1400
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1401
|
-
},
|
|
1402
|
-
"negative": {
|
|
1403
|
-
"description": "The negative number color of the workspace",
|
|
1404
|
-
"default": "#ef4444",
|
|
1405
|
-
"type": "string",
|
|
1406
|
-
"minLength": 7,
|
|
1407
|
-
"maxLength": 7,
|
|
1408
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1409
|
-
}
|
|
1410
|
-
},
|
|
1411
|
-
"required": [
|
|
1412
|
-
"foreground",
|
|
1413
|
-
"background",
|
|
1414
|
-
"brand",
|
|
1415
|
-
"help",
|
|
1416
|
-
"success",
|
|
1417
|
-
"info",
|
|
1418
|
-
"warning",
|
|
1419
|
-
"danger",
|
|
1420
|
-
"positive",
|
|
1421
|
-
"negative"
|
|
1422
|
-
],
|
|
1423
|
-
"additionalProperties": false
|
|
1029
|
+
"foreground": {
|
|
1030
|
+
"description": "The dark background color of the workspace",
|
|
1031
|
+
"default": "#1d1e22",
|
|
1032
|
+
"type": "string",
|
|
1033
|
+
"minLength": 7,
|
|
1034
|
+
"maxLength": 7,
|
|
1035
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1036
|
+
},
|
|
1037
|
+
"background": {
|
|
1038
|
+
"description": "The light background color of the workspace",
|
|
1039
|
+
"default": "#f4f4f5",
|
|
1040
|
+
"type": "string",
|
|
1041
|
+
"minLength": 7,
|
|
1042
|
+
"maxLength": 7,
|
|
1043
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1044
|
+
},
|
|
1045
|
+
"brand": {
|
|
1046
|
+
"description": "The primary brand specific color of the workspace",
|
|
1047
|
+
"default": "#1fb2a6",
|
|
1048
|
+
"type": "string",
|
|
1049
|
+
"minLength": 7,
|
|
1050
|
+
"maxLength": 7,
|
|
1051
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1052
|
+
},
|
|
1053
|
+
"alternate": {
|
|
1054
|
+
"description": "The alternate brand specific color of the workspace",
|
|
1055
|
+
"type": "string",
|
|
1056
|
+
"minLength": 7,
|
|
1057
|
+
"maxLength": 7,
|
|
1058
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1059
|
+
},
|
|
1060
|
+
"accent": {
|
|
1061
|
+
"description": "The secondary brand specific color of the workspace",
|
|
1062
|
+
"type": "string",
|
|
1063
|
+
"minLength": 7,
|
|
1064
|
+
"maxLength": 7,
|
|
1065
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1424
1066
|
},
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
1427
|
-
"
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
"maxLength": 7,
|
|
1495
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1496
|
-
},
|
|
1497
|
-
"warning": {
|
|
1498
|
-
"description": "The warning color of the workspace",
|
|
1499
|
-
"default": "#fcc419",
|
|
1500
|
-
"type": "string",
|
|
1501
|
-
"minLength": 7,
|
|
1502
|
-
"maxLength": 7,
|
|
1503
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1504
|
-
},
|
|
1505
|
-
"danger": {
|
|
1506
|
-
"description": "The danger color of the workspace",
|
|
1507
|
-
"default": "#D8314A",
|
|
1508
|
-
"type": "string",
|
|
1509
|
-
"minLength": 7,
|
|
1510
|
-
"maxLength": 7,
|
|
1511
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1512
|
-
},
|
|
1513
|
-
"fatal": {
|
|
1514
|
-
"description": "The fatal color of the workspace",
|
|
1515
|
-
"type": "string",
|
|
1516
|
-
"minLength": 7,
|
|
1517
|
-
"maxLength": 7,
|
|
1518
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1519
|
-
},
|
|
1520
|
-
"positive": {
|
|
1521
|
-
"description": "The positive number color of the workspace",
|
|
1522
|
-
"default": "#4ade80",
|
|
1523
|
-
"type": "string",
|
|
1524
|
-
"minLength": 7,
|
|
1525
|
-
"maxLength": 7,
|
|
1526
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1527
|
-
},
|
|
1528
|
-
"negative": {
|
|
1529
|
-
"description": "The negative number color of the workspace",
|
|
1530
|
-
"default": "#ef4444",
|
|
1531
|
-
"type": "string",
|
|
1532
|
-
"minLength": 7,
|
|
1533
|
-
"maxLength": 7,
|
|
1534
|
-
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1535
|
-
}
|
|
1536
|
-
},
|
|
1537
|
-
"required": [
|
|
1538
|
-
"foreground",
|
|
1539
|
-
"background",
|
|
1540
|
-
"brand",
|
|
1541
|
-
"help",
|
|
1542
|
-
"success",
|
|
1543
|
-
"info",
|
|
1544
|
-
"warning",
|
|
1545
|
-
"danger",
|
|
1546
|
-
"positive",
|
|
1547
|
-
"negative"
|
|
1548
|
-
],
|
|
1549
|
-
"additionalProperties": false
|
|
1067
|
+
"link": {
|
|
1068
|
+
"description": "The color used to display hyperlink text",
|
|
1069
|
+
"type": "string",
|
|
1070
|
+
"minLength": 7,
|
|
1071
|
+
"maxLength": 7,
|
|
1072
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1073
|
+
},
|
|
1074
|
+
"help": {
|
|
1075
|
+
"description": "The second brand specific color of the workspace",
|
|
1076
|
+
"default": "#8256D0",
|
|
1077
|
+
"type": "string",
|
|
1078
|
+
"minLength": 7,
|
|
1079
|
+
"maxLength": 7,
|
|
1080
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1081
|
+
},
|
|
1082
|
+
"success": {
|
|
1083
|
+
"description": "The success color of the workspace",
|
|
1084
|
+
"default": "#12B66A",
|
|
1085
|
+
"type": "string",
|
|
1086
|
+
"minLength": 7,
|
|
1087
|
+
"maxLength": 7,
|
|
1088
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1089
|
+
},
|
|
1090
|
+
"info": {
|
|
1091
|
+
"description": "The informational color of the workspace",
|
|
1092
|
+
"default": "#0070E0",
|
|
1093
|
+
"type": "string",
|
|
1094
|
+
"minLength": 7,
|
|
1095
|
+
"maxLength": 7,
|
|
1096
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1097
|
+
},
|
|
1098
|
+
"warning": {
|
|
1099
|
+
"description": "The warning color of the workspace",
|
|
1100
|
+
"default": "#fcc419",
|
|
1101
|
+
"type": "string",
|
|
1102
|
+
"minLength": 7,
|
|
1103
|
+
"maxLength": 7,
|
|
1104
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1105
|
+
},
|
|
1106
|
+
"danger": {
|
|
1107
|
+
"description": "The danger color of the workspace",
|
|
1108
|
+
"default": "#D8314A",
|
|
1109
|
+
"type": "string",
|
|
1110
|
+
"minLength": 7,
|
|
1111
|
+
"maxLength": 7,
|
|
1112
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1113
|
+
},
|
|
1114
|
+
"fatal": {
|
|
1115
|
+
"description": "The fatal color of the workspace",
|
|
1116
|
+
"type": "string",
|
|
1117
|
+
"minLength": 7,
|
|
1118
|
+
"maxLength": 7,
|
|
1119
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1120
|
+
},
|
|
1121
|
+
"positive": {
|
|
1122
|
+
"description": "The positive number color of the workspace",
|
|
1123
|
+
"default": "#4ade80",
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"minLength": 7,
|
|
1126
|
+
"maxLength": 7,
|
|
1127
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1128
|
+
},
|
|
1129
|
+
"negative": {
|
|
1130
|
+
"description": "The negative number color of the workspace",
|
|
1131
|
+
"default": "#ef4444",
|
|
1132
|
+
"type": "string",
|
|
1133
|
+
"minLength": 7,
|
|
1134
|
+
"maxLength": 7,
|
|
1135
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1550
1136
|
}
|
|
1551
1137
|
},
|
|
1552
|
-
"required": [
|
|
1138
|
+
"required": [
|
|
1139
|
+
"foreground",
|
|
1140
|
+
"background",
|
|
1141
|
+
"brand",
|
|
1142
|
+
"help",
|
|
1143
|
+
"success",
|
|
1144
|
+
"info",
|
|
1145
|
+
"warning",
|
|
1146
|
+
"danger",
|
|
1147
|
+
"positive",
|
|
1148
|
+
"negative"
|
|
1149
|
+
],
|
|
1553
1150
|
"additionalProperties": false
|
|
1554
1151
|
}
|
|
1555
|
-
|
|
1152
|
+
},
|
|
1153
|
+
"required": ["dark", "light"],
|
|
1154
|
+
"additionalProperties": false
|
|
1556
1155
|
}
|
|
1557
|
-
|
|
1558
|
-
|
|
1156
|
+
]
|
|
1157
|
+
}
|
|
1559
1158
|
}
|
|
1560
1159
|
]
|
|
1561
1160
|
},
|
|
@@ -1576,11 +1175,10 @@
|
|
|
1576
1175
|
"owner",
|
|
1577
1176
|
"bot",
|
|
1578
1177
|
"release",
|
|
1579
|
-
"
|
|
1178
|
+
"socials",
|
|
1580
1179
|
"error",
|
|
1581
1180
|
"mode",
|
|
1582
1181
|
"workspaceRoot",
|
|
1583
|
-
"externalPackagePatterns",
|
|
1584
1182
|
"skipCache",
|
|
1585
1183
|
"directories",
|
|
1586
1184
|
"packageManager",
|