@storm-software/config 1.125.21 → 1.126.3
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 +63 -0
- package/README.md +1 -2
- package/dist/{chunk-GS4SYJW6.js → chunk-OOZVCZMK.js} +52 -17
- package/dist/{chunk-E2YM2F4R.cjs → chunk-Q4GCJANL.cjs} +52 -17
- package/dist/define-config.d.cts +24 -18
- package/dist/define-config.d.ts +24 -18
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +36 -19
- package/dist/schema.d.ts +36 -19
- package/dist/schema.js +1 -1
- package/package.json +2 -2
- package/presets/storm-software.json +13 -7
- package/schemas/storm-workspace.schema.json +114 -42
- package/src/define-config.d.ts +6 -0
- package/src/schema.d.ts +34 -17
|
@@ -366,7 +366,7 @@
|
|
|
366
366
|
"properties": {
|
|
367
367
|
"dark": {
|
|
368
368
|
"description": "The dark background color of the workspace",
|
|
369
|
-
"default": "#
|
|
369
|
+
"default": "#151718",
|
|
370
370
|
"type": "string",
|
|
371
371
|
"minLength": 7,
|
|
372
372
|
"maxLength": 7,
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
},
|
|
375
375
|
"light": {
|
|
376
376
|
"description": "The light background color of the workspace",
|
|
377
|
-
"default": "#
|
|
377
|
+
"default": "#cbd5e1",
|
|
378
378
|
"type": "string",
|
|
379
379
|
"minLength": 7,
|
|
380
380
|
"maxLength": 7,
|
|
@@ -404,6 +404,7 @@
|
|
|
404
404
|
},
|
|
405
405
|
"link": {
|
|
406
406
|
"description": "The color used to display hyperlink text",
|
|
407
|
+
"default": "#3fa6ff",
|
|
407
408
|
"type": "string",
|
|
408
409
|
"minLength": 7,
|
|
409
410
|
"maxLength": 7,
|
|
@@ -411,7 +412,7 @@
|
|
|
411
412
|
},
|
|
412
413
|
"help": {
|
|
413
414
|
"description": "The second brand specific color of the workspace",
|
|
414
|
-
"default": "#
|
|
415
|
+
"default": "#818cf8",
|
|
415
416
|
"type": "string",
|
|
416
417
|
"minLength": 7,
|
|
417
418
|
"maxLength": 7,
|
|
@@ -419,7 +420,7 @@
|
|
|
419
420
|
},
|
|
420
421
|
"success": {
|
|
421
422
|
"description": "The success color of the workspace",
|
|
422
|
-
"default": "#
|
|
423
|
+
"default": "#45b27e",
|
|
423
424
|
"type": "string",
|
|
424
425
|
"minLength": 7,
|
|
425
426
|
"maxLength": 7,
|
|
@@ -427,7 +428,7 @@
|
|
|
427
428
|
},
|
|
428
429
|
"info": {
|
|
429
430
|
"description": "The informational color of the workspace",
|
|
430
|
-
"default": "#
|
|
431
|
+
"default": "#38bdf8",
|
|
431
432
|
"type": "string",
|
|
432
433
|
"minLength": 7,
|
|
433
434
|
"maxLength": 7,
|
|
@@ -435,7 +436,7 @@
|
|
|
435
436
|
},
|
|
436
437
|
"warning": {
|
|
437
438
|
"description": "The warning color of the workspace",
|
|
438
|
-
"default": "#
|
|
439
|
+
"default": "#f3d371",
|
|
439
440
|
"type": "string",
|
|
440
441
|
"minLength": 7,
|
|
441
442
|
"maxLength": 7,
|
|
@@ -443,7 +444,7 @@
|
|
|
443
444
|
},
|
|
444
445
|
"danger": {
|
|
445
446
|
"description": "The danger color of the workspace",
|
|
446
|
-
"default": "#
|
|
447
|
+
"default": "#d8314a",
|
|
447
448
|
"type": "string",
|
|
448
449
|
"minLength": 7,
|
|
449
450
|
"maxLength": 7,
|
|
@@ -471,12 +472,23 @@
|
|
|
471
472
|
"minLength": 7,
|
|
472
473
|
"maxLength": 7,
|
|
473
474
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
475
|
+
},
|
|
476
|
+
"gradient": {
|
|
477
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
478
|
+
"type": "array",
|
|
479
|
+
"items": {
|
|
480
|
+
"type": "string",
|
|
481
|
+
"minLength": 7,
|
|
482
|
+
"maxLength": 7,
|
|
483
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
484
|
+
}
|
|
474
485
|
}
|
|
475
486
|
},
|
|
476
487
|
"required": [
|
|
477
488
|
"dark",
|
|
478
489
|
"light",
|
|
479
490
|
"brand",
|
|
491
|
+
"link",
|
|
480
492
|
"help",
|
|
481
493
|
"success",
|
|
482
494
|
"info",
|
|
@@ -495,7 +507,7 @@
|
|
|
495
507
|
"properties": {
|
|
496
508
|
"foreground": {
|
|
497
509
|
"description": "The light background color of the workspace",
|
|
498
|
-
"default": "#
|
|
510
|
+
"default": "#cbd5e1",
|
|
499
511
|
"type": "string",
|
|
500
512
|
"minLength": 7,
|
|
501
513
|
"maxLength": 7,
|
|
@@ -503,7 +515,7 @@
|
|
|
503
515
|
},
|
|
504
516
|
"background": {
|
|
505
517
|
"description": "The dark background color of the workspace",
|
|
506
|
-
"default": "#
|
|
518
|
+
"default": "#151718",
|
|
507
519
|
"type": "string",
|
|
508
520
|
"minLength": 7,
|
|
509
521
|
"maxLength": 7,
|
|
@@ -533,6 +545,7 @@
|
|
|
533
545
|
},
|
|
534
546
|
"link": {
|
|
535
547
|
"description": "The color used to display hyperlink text",
|
|
548
|
+
"default": "#3fa6ff",
|
|
536
549
|
"type": "string",
|
|
537
550
|
"minLength": 7,
|
|
538
551
|
"maxLength": 7,
|
|
@@ -540,7 +553,7 @@
|
|
|
540
553
|
},
|
|
541
554
|
"help": {
|
|
542
555
|
"description": "The second brand specific color of the workspace",
|
|
543
|
-
"default": "#
|
|
556
|
+
"default": "#818cf8",
|
|
544
557
|
"type": "string",
|
|
545
558
|
"minLength": 7,
|
|
546
559
|
"maxLength": 7,
|
|
@@ -548,7 +561,7 @@
|
|
|
548
561
|
},
|
|
549
562
|
"success": {
|
|
550
563
|
"description": "The success color of the workspace",
|
|
551
|
-
"default": "#
|
|
564
|
+
"default": "#45b27e",
|
|
552
565
|
"type": "string",
|
|
553
566
|
"minLength": 7,
|
|
554
567
|
"maxLength": 7,
|
|
@@ -556,7 +569,7 @@
|
|
|
556
569
|
},
|
|
557
570
|
"info": {
|
|
558
571
|
"description": "The informational color of the workspace",
|
|
559
|
-
"default": "#
|
|
572
|
+
"default": "#38bdf8",
|
|
560
573
|
"type": "string",
|
|
561
574
|
"minLength": 7,
|
|
562
575
|
"maxLength": 7,
|
|
@@ -564,7 +577,7 @@
|
|
|
564
577
|
},
|
|
565
578
|
"warning": {
|
|
566
579
|
"description": "The warning color of the workspace",
|
|
567
|
-
"default": "#
|
|
580
|
+
"default": "#f3d371",
|
|
568
581
|
"type": "string",
|
|
569
582
|
"minLength": 7,
|
|
570
583
|
"maxLength": 7,
|
|
@@ -572,7 +585,7 @@
|
|
|
572
585
|
},
|
|
573
586
|
"danger": {
|
|
574
587
|
"description": "The danger color of the workspace",
|
|
575
|
-
"default": "#
|
|
588
|
+
"default": "#d8314a",
|
|
576
589
|
"type": "string",
|
|
577
590
|
"minLength": 7,
|
|
578
591
|
"maxLength": 7,
|
|
@@ -600,12 +613,23 @@
|
|
|
600
613
|
"minLength": 7,
|
|
601
614
|
"maxLength": 7,
|
|
602
615
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
616
|
+
},
|
|
617
|
+
"gradient": {
|
|
618
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
619
|
+
"type": "array",
|
|
620
|
+
"items": {
|
|
621
|
+
"type": "string",
|
|
622
|
+
"minLength": 7,
|
|
623
|
+
"maxLength": 7,
|
|
624
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
625
|
+
}
|
|
603
626
|
}
|
|
604
627
|
},
|
|
605
628
|
"required": [
|
|
606
629
|
"foreground",
|
|
607
630
|
"background",
|
|
608
631
|
"brand",
|
|
632
|
+
"link",
|
|
609
633
|
"help",
|
|
610
634
|
"success",
|
|
611
635
|
"info",
|
|
@@ -621,7 +645,7 @@
|
|
|
621
645
|
"properties": {
|
|
622
646
|
"foreground": {
|
|
623
647
|
"description": "The dark background color of the workspace",
|
|
624
|
-
"default": "#
|
|
648
|
+
"default": "#151718",
|
|
625
649
|
"type": "string",
|
|
626
650
|
"minLength": 7,
|
|
627
651
|
"maxLength": 7,
|
|
@@ -629,7 +653,7 @@
|
|
|
629
653
|
},
|
|
630
654
|
"background": {
|
|
631
655
|
"description": "The light background color of the workspace",
|
|
632
|
-
"default": "#
|
|
656
|
+
"default": "#cbd5e1",
|
|
633
657
|
"type": "string",
|
|
634
658
|
"minLength": 7,
|
|
635
659
|
"maxLength": 7,
|
|
@@ -659,6 +683,7 @@
|
|
|
659
683
|
},
|
|
660
684
|
"link": {
|
|
661
685
|
"description": "The color used to display hyperlink text",
|
|
686
|
+
"default": "#3fa6ff",
|
|
662
687
|
"type": "string",
|
|
663
688
|
"minLength": 7,
|
|
664
689
|
"maxLength": 7,
|
|
@@ -666,7 +691,7 @@
|
|
|
666
691
|
},
|
|
667
692
|
"help": {
|
|
668
693
|
"description": "The second brand specific color of the workspace",
|
|
669
|
-
"default": "#
|
|
694
|
+
"default": "#818cf8",
|
|
670
695
|
"type": "string",
|
|
671
696
|
"minLength": 7,
|
|
672
697
|
"maxLength": 7,
|
|
@@ -674,7 +699,7 @@
|
|
|
674
699
|
},
|
|
675
700
|
"success": {
|
|
676
701
|
"description": "The success color of the workspace",
|
|
677
|
-
"default": "#
|
|
702
|
+
"default": "#45b27e",
|
|
678
703
|
"type": "string",
|
|
679
704
|
"minLength": 7,
|
|
680
705
|
"maxLength": 7,
|
|
@@ -682,7 +707,7 @@
|
|
|
682
707
|
},
|
|
683
708
|
"info": {
|
|
684
709
|
"description": "The informational color of the workspace",
|
|
685
|
-
"default": "#
|
|
710
|
+
"default": "#38bdf8",
|
|
686
711
|
"type": "string",
|
|
687
712
|
"minLength": 7,
|
|
688
713
|
"maxLength": 7,
|
|
@@ -690,7 +715,7 @@
|
|
|
690
715
|
},
|
|
691
716
|
"warning": {
|
|
692
717
|
"description": "The warning color of the workspace",
|
|
693
|
-
"default": "#
|
|
718
|
+
"default": "#f3d371",
|
|
694
719
|
"type": "string",
|
|
695
720
|
"minLength": 7,
|
|
696
721
|
"maxLength": 7,
|
|
@@ -698,7 +723,7 @@
|
|
|
698
723
|
},
|
|
699
724
|
"danger": {
|
|
700
725
|
"description": "The danger color of the workspace",
|
|
701
|
-
"default": "#
|
|
726
|
+
"default": "#d8314a",
|
|
702
727
|
"type": "string",
|
|
703
728
|
"minLength": 7,
|
|
704
729
|
"maxLength": 7,
|
|
@@ -726,12 +751,23 @@
|
|
|
726
751
|
"minLength": 7,
|
|
727
752
|
"maxLength": 7,
|
|
728
753
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
754
|
+
},
|
|
755
|
+
"gradient": {
|
|
756
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
757
|
+
"type": "array",
|
|
758
|
+
"items": {
|
|
759
|
+
"type": "string",
|
|
760
|
+
"minLength": 7,
|
|
761
|
+
"maxLength": 7,
|
|
762
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
763
|
+
}
|
|
729
764
|
}
|
|
730
765
|
},
|
|
731
766
|
"required": [
|
|
732
767
|
"foreground",
|
|
733
768
|
"background",
|
|
734
769
|
"brand",
|
|
770
|
+
"link",
|
|
735
771
|
"help",
|
|
736
772
|
"success",
|
|
737
773
|
"info",
|
|
@@ -769,7 +805,7 @@
|
|
|
769
805
|
"properties": {
|
|
770
806
|
"dark": {
|
|
771
807
|
"description": "The dark background color of the workspace",
|
|
772
|
-
"default": "#
|
|
808
|
+
"default": "#151718",
|
|
773
809
|
"type": "string",
|
|
774
810
|
"minLength": 7,
|
|
775
811
|
"maxLength": 7,
|
|
@@ -777,7 +813,7 @@
|
|
|
777
813
|
},
|
|
778
814
|
"light": {
|
|
779
815
|
"description": "The light background color of the workspace",
|
|
780
|
-
"default": "#
|
|
816
|
+
"default": "#cbd5e1",
|
|
781
817
|
"type": "string",
|
|
782
818
|
"minLength": 7,
|
|
783
819
|
"maxLength": 7,
|
|
@@ -807,6 +843,7 @@
|
|
|
807
843
|
},
|
|
808
844
|
"link": {
|
|
809
845
|
"description": "The color used to display hyperlink text",
|
|
846
|
+
"default": "#3fa6ff",
|
|
810
847
|
"type": "string",
|
|
811
848
|
"minLength": 7,
|
|
812
849
|
"maxLength": 7,
|
|
@@ -814,7 +851,7 @@
|
|
|
814
851
|
},
|
|
815
852
|
"help": {
|
|
816
853
|
"description": "The second brand specific color of the workspace",
|
|
817
|
-
"default": "#
|
|
854
|
+
"default": "#818cf8",
|
|
818
855
|
"type": "string",
|
|
819
856
|
"minLength": 7,
|
|
820
857
|
"maxLength": 7,
|
|
@@ -822,7 +859,7 @@
|
|
|
822
859
|
},
|
|
823
860
|
"success": {
|
|
824
861
|
"description": "The success color of the workspace",
|
|
825
|
-
"default": "#
|
|
862
|
+
"default": "#45b27e",
|
|
826
863
|
"type": "string",
|
|
827
864
|
"minLength": 7,
|
|
828
865
|
"maxLength": 7,
|
|
@@ -830,7 +867,7 @@
|
|
|
830
867
|
},
|
|
831
868
|
"info": {
|
|
832
869
|
"description": "The informational color of the workspace",
|
|
833
|
-
"default": "#
|
|
870
|
+
"default": "#38bdf8",
|
|
834
871
|
"type": "string",
|
|
835
872
|
"minLength": 7,
|
|
836
873
|
"maxLength": 7,
|
|
@@ -838,7 +875,7 @@
|
|
|
838
875
|
},
|
|
839
876
|
"warning": {
|
|
840
877
|
"description": "The warning color of the workspace",
|
|
841
|
-
"default": "#
|
|
878
|
+
"default": "#f3d371",
|
|
842
879
|
"type": "string",
|
|
843
880
|
"minLength": 7,
|
|
844
881
|
"maxLength": 7,
|
|
@@ -846,7 +883,7 @@
|
|
|
846
883
|
},
|
|
847
884
|
"danger": {
|
|
848
885
|
"description": "The danger color of the workspace",
|
|
849
|
-
"default": "#
|
|
886
|
+
"default": "#d8314a",
|
|
850
887
|
"type": "string",
|
|
851
888
|
"minLength": 7,
|
|
852
889
|
"maxLength": 7,
|
|
@@ -874,12 +911,23 @@
|
|
|
874
911
|
"minLength": 7,
|
|
875
912
|
"maxLength": 7,
|
|
876
913
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
914
|
+
},
|
|
915
|
+
"gradient": {
|
|
916
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
917
|
+
"type": "array",
|
|
918
|
+
"items": {
|
|
919
|
+
"type": "string",
|
|
920
|
+
"minLength": 7,
|
|
921
|
+
"maxLength": 7,
|
|
922
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
923
|
+
}
|
|
877
924
|
}
|
|
878
925
|
},
|
|
879
926
|
"required": [
|
|
880
927
|
"dark",
|
|
881
928
|
"light",
|
|
882
929
|
"brand",
|
|
930
|
+
"link",
|
|
883
931
|
"help",
|
|
884
932
|
"success",
|
|
885
933
|
"info",
|
|
@@ -898,7 +946,7 @@
|
|
|
898
946
|
"properties": {
|
|
899
947
|
"foreground": {
|
|
900
948
|
"description": "The light background color of the workspace",
|
|
901
|
-
"default": "#
|
|
949
|
+
"default": "#cbd5e1",
|
|
902
950
|
"type": "string",
|
|
903
951
|
"minLength": 7,
|
|
904
952
|
"maxLength": 7,
|
|
@@ -906,7 +954,7 @@
|
|
|
906
954
|
},
|
|
907
955
|
"background": {
|
|
908
956
|
"description": "The dark background color of the workspace",
|
|
909
|
-
"default": "#
|
|
957
|
+
"default": "#151718",
|
|
910
958
|
"type": "string",
|
|
911
959
|
"minLength": 7,
|
|
912
960
|
"maxLength": 7,
|
|
@@ -936,6 +984,7 @@
|
|
|
936
984
|
},
|
|
937
985
|
"link": {
|
|
938
986
|
"description": "The color used to display hyperlink text",
|
|
987
|
+
"default": "#3fa6ff",
|
|
939
988
|
"type": "string",
|
|
940
989
|
"minLength": 7,
|
|
941
990
|
"maxLength": 7,
|
|
@@ -943,7 +992,7 @@
|
|
|
943
992
|
},
|
|
944
993
|
"help": {
|
|
945
994
|
"description": "The second brand specific color of the workspace",
|
|
946
|
-
"default": "#
|
|
995
|
+
"default": "#818cf8",
|
|
947
996
|
"type": "string",
|
|
948
997
|
"minLength": 7,
|
|
949
998
|
"maxLength": 7,
|
|
@@ -951,7 +1000,7 @@
|
|
|
951
1000
|
},
|
|
952
1001
|
"success": {
|
|
953
1002
|
"description": "The success color of the workspace",
|
|
954
|
-
"default": "#
|
|
1003
|
+
"default": "#45b27e",
|
|
955
1004
|
"type": "string",
|
|
956
1005
|
"minLength": 7,
|
|
957
1006
|
"maxLength": 7,
|
|
@@ -959,7 +1008,7 @@
|
|
|
959
1008
|
},
|
|
960
1009
|
"info": {
|
|
961
1010
|
"description": "The informational color of the workspace",
|
|
962
|
-
"default": "#
|
|
1011
|
+
"default": "#38bdf8",
|
|
963
1012
|
"type": "string",
|
|
964
1013
|
"minLength": 7,
|
|
965
1014
|
"maxLength": 7,
|
|
@@ -967,7 +1016,7 @@
|
|
|
967
1016
|
},
|
|
968
1017
|
"warning": {
|
|
969
1018
|
"description": "The warning color of the workspace",
|
|
970
|
-
"default": "#
|
|
1019
|
+
"default": "#f3d371",
|
|
971
1020
|
"type": "string",
|
|
972
1021
|
"minLength": 7,
|
|
973
1022
|
"maxLength": 7,
|
|
@@ -975,7 +1024,7 @@
|
|
|
975
1024
|
},
|
|
976
1025
|
"danger": {
|
|
977
1026
|
"description": "The danger color of the workspace",
|
|
978
|
-
"default": "#
|
|
1027
|
+
"default": "#d8314a",
|
|
979
1028
|
"type": "string",
|
|
980
1029
|
"minLength": 7,
|
|
981
1030
|
"maxLength": 7,
|
|
@@ -1003,12 +1052,23 @@
|
|
|
1003
1052
|
"minLength": 7,
|
|
1004
1053
|
"maxLength": 7,
|
|
1005
1054
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1055
|
+
},
|
|
1056
|
+
"gradient": {
|
|
1057
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
1058
|
+
"type": "array",
|
|
1059
|
+
"items": {
|
|
1060
|
+
"type": "string",
|
|
1061
|
+
"minLength": 7,
|
|
1062
|
+
"maxLength": 7,
|
|
1063
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1064
|
+
}
|
|
1006
1065
|
}
|
|
1007
1066
|
},
|
|
1008
1067
|
"required": [
|
|
1009
1068
|
"foreground",
|
|
1010
1069
|
"background",
|
|
1011
1070
|
"brand",
|
|
1071
|
+
"link",
|
|
1012
1072
|
"help",
|
|
1013
1073
|
"success",
|
|
1014
1074
|
"info",
|
|
@@ -1024,7 +1084,7 @@
|
|
|
1024
1084
|
"properties": {
|
|
1025
1085
|
"foreground": {
|
|
1026
1086
|
"description": "The dark background color of the workspace",
|
|
1027
|
-
"default": "#
|
|
1087
|
+
"default": "#151718",
|
|
1028
1088
|
"type": "string",
|
|
1029
1089
|
"minLength": 7,
|
|
1030
1090
|
"maxLength": 7,
|
|
@@ -1032,7 +1092,7 @@
|
|
|
1032
1092
|
},
|
|
1033
1093
|
"background": {
|
|
1034
1094
|
"description": "The light background color of the workspace",
|
|
1035
|
-
"default": "#
|
|
1095
|
+
"default": "#cbd5e1",
|
|
1036
1096
|
"type": "string",
|
|
1037
1097
|
"minLength": 7,
|
|
1038
1098
|
"maxLength": 7,
|
|
@@ -1062,6 +1122,7 @@
|
|
|
1062
1122
|
},
|
|
1063
1123
|
"link": {
|
|
1064
1124
|
"description": "The color used to display hyperlink text",
|
|
1125
|
+
"default": "#3fa6ff",
|
|
1065
1126
|
"type": "string",
|
|
1066
1127
|
"minLength": 7,
|
|
1067
1128
|
"maxLength": 7,
|
|
@@ -1069,7 +1130,7 @@
|
|
|
1069
1130
|
},
|
|
1070
1131
|
"help": {
|
|
1071
1132
|
"description": "The second brand specific color of the workspace",
|
|
1072
|
-
"default": "#
|
|
1133
|
+
"default": "#818cf8",
|
|
1073
1134
|
"type": "string",
|
|
1074
1135
|
"minLength": 7,
|
|
1075
1136
|
"maxLength": 7,
|
|
@@ -1077,7 +1138,7 @@
|
|
|
1077
1138
|
},
|
|
1078
1139
|
"success": {
|
|
1079
1140
|
"description": "The success color of the workspace",
|
|
1080
|
-
"default": "#
|
|
1141
|
+
"default": "#45b27e",
|
|
1081
1142
|
"type": "string",
|
|
1082
1143
|
"minLength": 7,
|
|
1083
1144
|
"maxLength": 7,
|
|
@@ -1085,7 +1146,7 @@
|
|
|
1085
1146
|
},
|
|
1086
1147
|
"info": {
|
|
1087
1148
|
"description": "The informational color of the workspace",
|
|
1088
|
-
"default": "#
|
|
1149
|
+
"default": "#38bdf8",
|
|
1089
1150
|
"type": "string",
|
|
1090
1151
|
"minLength": 7,
|
|
1091
1152
|
"maxLength": 7,
|
|
@@ -1093,7 +1154,7 @@
|
|
|
1093
1154
|
},
|
|
1094
1155
|
"warning": {
|
|
1095
1156
|
"description": "The warning color of the workspace",
|
|
1096
|
-
"default": "#
|
|
1157
|
+
"default": "#f3d371",
|
|
1097
1158
|
"type": "string",
|
|
1098
1159
|
"minLength": 7,
|
|
1099
1160
|
"maxLength": 7,
|
|
@@ -1101,7 +1162,7 @@
|
|
|
1101
1162
|
},
|
|
1102
1163
|
"danger": {
|
|
1103
1164
|
"description": "The danger color of the workspace",
|
|
1104
|
-
"default": "#
|
|
1165
|
+
"default": "#d8314a",
|
|
1105
1166
|
"type": "string",
|
|
1106
1167
|
"minLength": 7,
|
|
1107
1168
|
"maxLength": 7,
|
|
@@ -1129,12 +1190,23 @@
|
|
|
1129
1190
|
"minLength": 7,
|
|
1130
1191
|
"maxLength": 7,
|
|
1131
1192
|
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1193
|
+
},
|
|
1194
|
+
"gradient": {
|
|
1195
|
+
"description": "The color stops for the base gradient color pattern used in the workspace",
|
|
1196
|
+
"type": "array",
|
|
1197
|
+
"items": {
|
|
1198
|
+
"type": "string",
|
|
1199
|
+
"minLength": 7,
|
|
1200
|
+
"maxLength": 7,
|
|
1201
|
+
"pattern": "^#([0-9a-f]{3}){1,2}$"
|
|
1202
|
+
}
|
|
1132
1203
|
}
|
|
1133
1204
|
},
|
|
1134
1205
|
"required": [
|
|
1135
1206
|
"foreground",
|
|
1136
1207
|
"background",
|
|
1137
1208
|
"brand",
|
|
1209
|
+
"link",
|
|
1138
1210
|
"help",
|
|
1139
1211
|
"success",
|
|
1140
1212
|
"info",
|
package/src/define-config.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
52
52
|
fatal?: string | undefined;
|
|
53
53
|
positive?: string | undefined;
|
|
54
54
|
negative?: string | undefined;
|
|
55
|
+
gradient?: string[] | undefined;
|
|
55
56
|
};
|
|
56
57
|
light: {
|
|
57
58
|
foreground?: string | undefined;
|
|
@@ -68,6 +69,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
68
69
|
fatal?: string | undefined;
|
|
69
70
|
positive?: string | undefined;
|
|
70
71
|
negative?: string | undefined;
|
|
72
|
+
gradient?: string[] | undefined;
|
|
71
73
|
};
|
|
72
74
|
} | {
|
|
73
75
|
dark?: string | undefined;
|
|
@@ -84,6 +86,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
84
86
|
fatal?: string | undefined;
|
|
85
87
|
positive?: string | undefined;
|
|
86
88
|
negative?: string | undefined;
|
|
89
|
+
gradient?: string[] | undefined;
|
|
87
90
|
} | Record<string, {
|
|
88
91
|
dark: {
|
|
89
92
|
foreground?: string | undefined;
|
|
@@ -100,6 +103,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
100
103
|
fatal?: string | undefined;
|
|
101
104
|
positive?: string | undefined;
|
|
102
105
|
negative?: string | undefined;
|
|
106
|
+
gradient?: string[] | undefined;
|
|
103
107
|
};
|
|
104
108
|
light: {
|
|
105
109
|
foreground?: string | undefined;
|
|
@@ -116,6 +120,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
116
120
|
fatal?: string | undefined;
|
|
117
121
|
positive?: string | undefined;
|
|
118
122
|
negative?: string | undefined;
|
|
123
|
+
gradient?: string[] | undefined;
|
|
119
124
|
};
|
|
120
125
|
} | {
|
|
121
126
|
dark?: string | undefined;
|
|
@@ -132,6 +137,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
132
137
|
fatal?: string | undefined;
|
|
133
138
|
positive?: string | undefined;
|
|
134
139
|
negative?: string | undefined;
|
|
140
|
+
gradient?: string[] | undefined;
|
|
135
141
|
}>;
|
|
136
142
|
$schema?: string | undefined;
|
|
137
143
|
extends?: string | string[] | undefined;
|