@genesislcap/rapid-design-system 14.446.2 → 14.447.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 (45) hide show
  1. package/dist/custom-elements.json +1692 -258
  2. package/dist/dts/_common/color.hex.d.ts +1 -0
  3. package/dist/dts/_common/color.hex.d.ts.map +1 -1
  4. package/dist/dts/_config/configure.d.ts +13 -0
  5. package/dist/dts/_config/configure.d.ts.map +1 -0
  6. package/dist/dts/_config/index.d.ts +1 -0
  7. package/dist/dts/_config/index.d.ts.map +1 -1
  8. package/dist/dts/_config/tokens/error-palette.d.ts +3 -0
  9. package/dist/dts/_config/tokens/error-palette.d.ts.map +1 -0
  10. package/dist/dts/_config/tokens/index.d.ts +5 -0
  11. package/dist/dts/_config/tokens/index.d.ts.map +1 -1
  12. package/dist/dts/_config/tokens/secondary.d.ts +7 -0
  13. package/dist/dts/_config/tokens/secondary.d.ts.map +1 -0
  14. package/dist/dts/_config/tokens/semantic-palette.factory.d.ts +42 -0
  15. package/dist/dts/_config/tokens/semantic-palette.factory.d.ts.map +1 -0
  16. package/dist/dts/_config/tokens/success-palette.d.ts +3 -0
  17. package/dist/dts/_config/tokens/success-palette.d.ts.map +1 -0
  18. package/dist/dts/_config/tokens/tertiary-palette.d.ts +7 -0
  19. package/dist/dts/_config/tokens/tertiary-palette.d.ts.map +1 -0
  20. package/dist/dts/_config/tokens/warning-palette.d.ts +3 -0
  21. package/dist/dts/_config/tokens/warning-palette.d.ts.map +1 -0
  22. package/dist/dts/_config/values/color.d.ts +5 -0
  23. package/dist/dts/_config/values/color.d.ts.map +1 -1
  24. package/dist/dts/_config/values/defaults.d.ts.map +1 -1
  25. package/dist/dts/button/button.styles.d.ts.map +1 -1
  26. package/dist/dts/dialog/dialog.styles.d.ts.map +1 -1
  27. package/dist/dts/react.d.ts +8 -8
  28. package/dist/esm/_common/color.hex.js +1 -0
  29. package/dist/esm/_config/configure.js +31 -0
  30. package/dist/esm/_config/index.js +1 -0
  31. package/dist/esm/_config/tokens/error-palette.js +4 -0
  32. package/dist/esm/_config/tokens/index.js +5 -0
  33. package/dist/esm/_config/tokens/secondary.js +11 -0
  34. package/dist/esm/_config/tokens/semantic-palette.factory.js +145 -0
  35. package/dist/esm/_config/tokens/success-palette.js +4 -0
  36. package/dist/esm/_config/tokens/tertiary-palette.js +11 -0
  37. package/dist/esm/_config/tokens/warning-palette.js +4 -0
  38. package/dist/esm/_config/values/color.js +5 -0
  39. package/dist/esm/_config/values/defaults.js +21 -1
  40. package/dist/esm/button/button.styles.js +176 -38
  41. package/dist/esm/dialog/dialog.styles.js +2 -3
  42. package/dist/esm/flyout/flyout.styles.js +1 -1
  43. package/dist/react.cjs +5 -5
  44. package/dist/react.mjs +4 -4
  45. package/package.json +11 -11
@@ -772,11 +772,60 @@
772
772
  }
773
773
  ]
774
774
  },
775
+ {
776
+ "kind": "javascript-module",
777
+ "path": "src/_config/configure.ts",
778
+ "declarations": [
779
+ {
780
+ "kind": "function",
781
+ "name": "configureRapidDesignSystem",
782
+ "return": {
783
+ "type": {
784
+ "text": "void"
785
+ }
786
+ },
787
+ "parameters": [
788
+ {
789
+ "name": "provider",
790
+ "type": {
791
+ "text": "HTMLElement"
792
+ }
793
+ },
794
+ {
795
+ "name": "config",
796
+ "type": {
797
+ "text": "Partial<DesignTokensConfig>"
798
+ }
799
+ }
800
+ ],
801
+ "description": "Extends configureDesignSystem with support for the `secondary`, `tertiary`, `error`,\n`success`, and `warning` color palettes.\n\nPass any of these entries under `design_tokens.color` in your config to override the defaults.\nOmitting any of them is safe — existing apps are unaffected and each token falls back to its\nbuilt-in default.",
802
+ "privacy": "public"
803
+ }
804
+ ],
805
+ "exports": [
806
+ {
807
+ "kind": "js",
808
+ "name": "configureRapidDesignSystem",
809
+ "declaration": {
810
+ "name": "configureRapidDesignSystem",
811
+ "module": "src/_config/configure.ts"
812
+ }
813
+ }
814
+ ]
815
+ },
775
816
  {
776
817
  "kind": "javascript-module",
777
818
  "path": "src/_config/index.ts",
778
819
  "declarations": [],
779
820
  "exports": [
821
+ {
822
+ "kind": "js",
823
+ "name": "*",
824
+ "declaration": {
825
+ "name": "*",
826
+ "package": "./configure"
827
+ }
828
+ },
780
829
  {
781
830
  "kind": "js",
782
831
  "name": "*",
@@ -805,11 +854,11 @@
805
854
  },
806
855
  {
807
856
  "kind": "javascript-module",
808
- "path": "src/accordion/accordion.styles.ts",
857
+ "path": "src/accordion-item/accordion-item.styles.ts",
809
858
  "declarations": [
810
859
  {
811
860
  "kind": "function",
812
- "name": "rapidAccordionStyles",
861
+ "name": "rapidAccordionItemStyles",
813
862
  "return": {
814
863
  "type": {
815
864
  "text": "ElementStyles"
@@ -834,24 +883,24 @@
834
883
  "exports": [
835
884
  {
836
885
  "kind": "js",
837
- "name": "rapidAccordionStyles",
886
+ "name": "rapidAccordionItemStyles",
838
887
  "declaration": {
839
- "name": "rapidAccordionStyles",
840
- "module": "src/accordion/accordion.styles.ts"
888
+ "name": "rapidAccordionItemStyles",
889
+ "module": "src/accordion-item/accordion-item.styles.ts"
841
890
  }
842
891
  }
843
892
  ]
844
893
  },
845
894
  {
846
895
  "kind": "javascript-module",
847
- "path": "src/accordion/accordion.template.ts",
896
+ "path": "src/accordion-item/accordion-item.template.ts",
848
897
  "declarations": [
849
898
  {
850
899
  "kind": "function",
851
- "name": "rapidAccordionTemplate",
900
+ "name": "rapidAccordionItemTemplate",
852
901
  "return": {
853
902
  "type": {
854
- "text": "ViewTemplate<Accordion>"
903
+ "text": "ViewTemplate<AccordionItem>"
855
904
  }
856
905
  },
857
906
  "parameters": [
@@ -873,56 +922,56 @@
873
922
  "exports": [
874
923
  {
875
924
  "kind": "js",
876
- "name": "rapidAccordionTemplate",
925
+ "name": "rapidAccordionItemTemplate",
877
926
  "declaration": {
878
- "name": "rapidAccordionTemplate",
879
- "module": "src/accordion/accordion.template.ts"
927
+ "name": "rapidAccordionItemTemplate",
928
+ "module": "src/accordion-item/accordion-item.template.ts"
880
929
  }
881
930
  }
882
931
  ]
883
932
  },
884
933
  {
885
934
  "kind": "javascript-module",
886
- "path": "src/accordion/accordion.ts",
935
+ "path": "src/accordion-item/accordion-item.ts",
887
936
  "declarations": [
888
937
  {
889
938
  "kind": "class",
890
939
  "description": "",
891
- "name": "Accordion",
940
+ "name": "AccordionItem",
892
941
  "superclass": {
893
- "name": "foundationAccordion",
942
+ "name": "foundationAccordionItem",
894
943
  "package": "@genesislcap/foundation-ui"
895
944
  },
896
- "tagName": "%%prefix%%-accordion",
945
+ "tagName": "%%prefix%%-accordion-item",
897
946
  "customElement": true
898
947
  },
899
948
  {
900
949
  "kind": "variable",
901
- "name": "rapidAccordion"
950
+ "name": "rapidAccordionItem"
902
951
  }
903
952
  ],
904
953
  "exports": [
905
954
  {
906
955
  "kind": "js",
907
- "name": "Accordion",
956
+ "name": "AccordionItem",
908
957
  "declaration": {
909
- "name": "Accordion",
910
- "module": "src/accordion/accordion.ts"
958
+ "name": "AccordionItem",
959
+ "module": "src/accordion-item/accordion-item.ts"
911
960
  }
912
961
  },
913
962
  {
914
963
  "kind": "js",
915
- "name": "rapidAccordion",
964
+ "name": "rapidAccordionItem",
916
965
  "declaration": {
917
- "name": "rapidAccordion",
918
- "module": "src/accordion/accordion.ts"
966
+ "name": "rapidAccordionItem",
967
+ "module": "src/accordion-item/accordion-item.ts"
919
968
  }
920
969
  }
921
970
  ]
922
971
  },
923
972
  {
924
973
  "kind": "javascript-module",
925
- "path": "src/accordion/index.ts",
974
+ "path": "src/accordion-item/index.ts",
926
975
  "declarations": [],
927
976
  "exports": [
928
977
  {
@@ -930,7 +979,7 @@
930
979
  "name": "*",
931
980
  "declaration": {
932
981
  "name": "*",
933
- "package": "./accordion"
982
+ "package": "./accordion-item"
934
983
  }
935
984
  },
936
985
  {
@@ -938,7 +987,7 @@
938
987
  "name": "*",
939
988
  "declaration": {
940
989
  "name": "*",
941
- "package": "./accordion.styles"
990
+ "package": "./accordion-item.styles"
942
991
  }
943
992
  },
944
993
  {
@@ -946,18 +995,18 @@
946
995
  "name": "*",
947
996
  "declaration": {
948
997
  "name": "*",
949
- "package": "./accordion.template"
998
+ "package": "./accordion-item.template"
950
999
  }
951
1000
  }
952
1001
  ]
953
1002
  },
954
1003
  {
955
1004
  "kind": "javascript-module",
956
- "path": "src/accordion-item/accordion-item.styles.ts",
1005
+ "path": "src/accordion/accordion.styles.ts",
957
1006
  "declarations": [
958
1007
  {
959
1008
  "kind": "function",
960
- "name": "rapidAccordionItemStyles",
1009
+ "name": "rapidAccordionStyles",
961
1010
  "return": {
962
1011
  "type": {
963
1012
  "text": "ElementStyles"
@@ -982,24 +1031,24 @@
982
1031
  "exports": [
983
1032
  {
984
1033
  "kind": "js",
985
- "name": "rapidAccordionItemStyles",
1034
+ "name": "rapidAccordionStyles",
986
1035
  "declaration": {
987
- "name": "rapidAccordionItemStyles",
988
- "module": "src/accordion-item/accordion-item.styles.ts"
1036
+ "name": "rapidAccordionStyles",
1037
+ "module": "src/accordion/accordion.styles.ts"
989
1038
  }
990
1039
  }
991
1040
  ]
992
1041
  },
993
1042
  {
994
1043
  "kind": "javascript-module",
995
- "path": "src/accordion-item/accordion-item.template.ts",
1044
+ "path": "src/accordion/accordion.template.ts",
996
1045
  "declarations": [
997
1046
  {
998
1047
  "kind": "function",
999
- "name": "rapidAccordionItemTemplate",
1048
+ "name": "rapidAccordionTemplate",
1000
1049
  "return": {
1001
1050
  "type": {
1002
- "text": "ViewTemplate<AccordionItem>"
1051
+ "text": "ViewTemplate<Accordion>"
1003
1052
  }
1004
1053
  },
1005
1054
  "parameters": [
@@ -1021,56 +1070,56 @@
1021
1070
  "exports": [
1022
1071
  {
1023
1072
  "kind": "js",
1024
- "name": "rapidAccordionItemTemplate",
1073
+ "name": "rapidAccordionTemplate",
1025
1074
  "declaration": {
1026
- "name": "rapidAccordionItemTemplate",
1027
- "module": "src/accordion-item/accordion-item.template.ts"
1075
+ "name": "rapidAccordionTemplate",
1076
+ "module": "src/accordion/accordion.template.ts"
1028
1077
  }
1029
1078
  }
1030
1079
  ]
1031
1080
  },
1032
1081
  {
1033
1082
  "kind": "javascript-module",
1034
- "path": "src/accordion-item/accordion-item.ts",
1083
+ "path": "src/accordion/accordion.ts",
1035
1084
  "declarations": [
1036
1085
  {
1037
1086
  "kind": "class",
1038
1087
  "description": "",
1039
- "name": "AccordionItem",
1088
+ "name": "Accordion",
1040
1089
  "superclass": {
1041
- "name": "foundationAccordionItem",
1090
+ "name": "foundationAccordion",
1042
1091
  "package": "@genesislcap/foundation-ui"
1043
1092
  },
1044
- "tagName": "%%prefix%%-accordion-item",
1093
+ "tagName": "%%prefix%%-accordion",
1045
1094
  "customElement": true
1046
1095
  },
1047
1096
  {
1048
1097
  "kind": "variable",
1049
- "name": "rapidAccordionItem"
1098
+ "name": "rapidAccordion"
1050
1099
  }
1051
1100
  ],
1052
1101
  "exports": [
1053
1102
  {
1054
1103
  "kind": "js",
1055
- "name": "AccordionItem",
1104
+ "name": "Accordion",
1056
1105
  "declaration": {
1057
- "name": "AccordionItem",
1058
- "module": "src/accordion-item/accordion-item.ts"
1106
+ "name": "Accordion",
1107
+ "module": "src/accordion/accordion.ts"
1059
1108
  }
1060
1109
  },
1061
1110
  {
1062
1111
  "kind": "js",
1063
- "name": "rapidAccordionItem",
1112
+ "name": "rapidAccordion",
1064
1113
  "declaration": {
1065
- "name": "rapidAccordionItem",
1066
- "module": "src/accordion-item/accordion-item.ts"
1114
+ "name": "rapidAccordion",
1115
+ "module": "src/accordion/accordion.ts"
1067
1116
  }
1068
1117
  }
1069
1118
  ]
1070
1119
  },
1071
1120
  {
1072
1121
  "kind": "javascript-module",
1073
- "path": "src/accordion-item/index.ts",
1122
+ "path": "src/accordion/index.ts",
1074
1123
  "declarations": [],
1075
1124
  "exports": [
1076
1125
  {
@@ -1078,7 +1127,7 @@
1078
1127
  "name": "*",
1079
1128
  "declaration": {
1080
1129
  "name": "*",
1081
- "package": "./accordion-item"
1130
+ "package": "./accordion"
1082
1131
  }
1083
1132
  },
1084
1133
  {
@@ -1086,7 +1135,7 @@
1086
1135
  "name": "*",
1087
1136
  "declaration": {
1088
1137
  "name": "*",
1089
- "package": "./accordion-item.styles"
1138
+ "package": "./accordion.styles"
1090
1139
  }
1091
1140
  },
1092
1141
  {
@@ -1094,7 +1143,7 @@
1094
1143
  "name": "*",
1095
1144
  "declaration": {
1096
1145
  "name": "*",
1097
- "package": "./accordion-item.template"
1146
+ "package": "./accordion.template"
1098
1147
  }
1099
1148
  }
1100
1149
  ]
@@ -10393,7 +10442,7 @@
10393
10442
  {
10394
10443
  "kind": "variable",
10395
10444
  "name": "rapidDialogStyles",
10396
- "default": "css`\n ${foundationDialogStyles}\n :host {\n --dialog-background: ${neutralLayer2};\n\n font-family: var(--body-font);\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n dialog {\n position: var(--dialog-position, fixed);\n top: 0;\n bottom: 0;\n border-radius: var(--card-border-radius, calc(var(--control-corner-radius) * 1px));\n border: var(--card-border, calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-rest));\n text-align: left;\n line-height: normal;\n box-shadow: 0 2px 15px 0 rgb(0 0 0 / 35%);\n }\n\n .top {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--neutral-foreground-rest);\n margin-bottom: calc(var(--design-unit) * 2px);\n font-weight: 500;\n }\n\n .bottom {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--neutral-foreground-rest);\n gap: calc(var(--design-unit) * 2px);\n }\n\n :host slot:first-of-type {\n color: ${neutralForegroundRest};\n }\n\n ::slotted(rapid-button) {\n margin-top: calc(var(--design-unit) * 4px - 1px);\n }\n\n slot[name='top']::slotted(*) {\n margin: 0;\n font-size: var(--type-ramp-base-font-size);\n color: var(--neutral-foreground-hint);\n font-weight: 700;\n }\n\n .content-wrapper {\n min-width: var(--dialog-min-width);\n min-height: var(--dialog-min-height);\n height: fit-content;\n width: fit-content;\n max-width: var(--dialog-max-width);\n max-height: var(--dialog-max-height);\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n }\n\n .close-icon:hover svg {\n background-color: color-mix(in srgb, var(--neutral-foreground-rest), transparent 95%);\n }\n\n .close-icon svg g path {\n fill: color-mix(in srgb, var(--neutral-foreground-rest), transparent 50%);\n }\n\n .close-icon:hover svg g path {\n fill: var(--neutral-foreground-rest);\n }\n\n .close-icon:active svg {\n background-color: var(--neutral-layer-4);\n }\n\n .close-icon:active svg g path {\n fill: color-mix(in srgb, var(--neutral-foreground-rest), transparent 67%);\n }\n\n .header-controls {\n rapid-button {\n --base-height-multiplier: 8;\n }\n\n rapid-button::part(control) {\n padding: 0 calc((8 + var(--design-unit) * 1 * var(--density)) * 1px);\n }\n }\n`"
10445
+ "default": "css`\n ${foundationDialogStyles}\n :host {\n font-family: var(--body-font);\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n dialog {\n position: var(--dialog-position, fixed);\n top: 0;\n bottom: 0;\n border-radius: var(--card-border-radius, calc(var(--control-corner-radius) * 1px));\n border: var(--card-border, calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-rest));\n text-align: left;\n line-height: normal;\n box-shadow: 0 2px 15px 0 rgb(0 0 0 / 35%);\n background-color: var(--dialog-background, var(--neutral-layer-1));\n }\n\n .top {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--neutral-foreground-rest);\n margin-bottom: calc(var(--design-unit) * 2px);\n font-weight: 500;\n }\n\n .bottom {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: var(--neutral-foreground-rest);\n gap: calc(var(--design-unit) * 2px);\n }\n\n :host slot:first-of-type {\n color: ${neutralForegroundRest};\n }\n\n ::slotted(rapid-button) {\n margin-top: calc(var(--design-unit) * 4px - 1px);\n }\n\n slot[name='top']::slotted(*) {\n margin: 0;\n font-size: var(--type-ramp-base-font-size);\n color: var(--neutral-foreground-hint);\n font-weight: 700;\n }\n\n .content-wrapper {\n min-width: var(--dialog-min-width);\n min-height: var(--dialog-min-height);\n height: fit-content;\n width: fit-content;\n max-width: var(--dialog-max-width);\n max-height: var(--dialog-max-height);\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n }\n\n .close-icon:hover svg {\n background-color: color-mix(in srgb, var(--neutral-foreground-rest), transparent 95%);\n }\n\n .close-icon svg g path {\n fill: color-mix(in srgb, var(--neutral-foreground-rest), transparent 50%);\n }\n\n .close-icon:hover svg g path {\n fill: var(--neutral-foreground-rest);\n }\n\n .close-icon:active svg {\n background-color: var(--neutral-layer-4);\n }\n\n .close-icon:active svg g path {\n fill: color-mix(in srgb, var(--neutral-foreground-rest), transparent 67%);\n }\n\n .header-controls {\n rapid-button {\n --base-height-multiplier: 8;\n }\n\n rapid-button::part(control) {\n padding: 0 calc((8 + var(--design-unit) * 1 * var(--density)) * 1px);\n }\n }\n`"
10397
10446
  }
10398
10447
  ],
10399
10448
  "exports": [
@@ -16754,7 +16803,7 @@
16754
16803
  {
16755
16804
  "kind": "variable",
16756
16805
  "name": "rapidFlyoutStyles",
16757
- "default": "css`\n ${foundationFlyoutStyles}\n div.flyout {\n background-color: var(--neutral-layer-2);\n border-color: var(--neutral-stroke-rest);\n color: var(--neutral-foreground-rest);\n padding: calc(var(--design-unit) * 4px);\n }\n\n div.background {\n padding: calc(var(--design-unit) * 4px) 0;\n }\n\n :host {\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n line-height: var(--type-ramp-base-line-height);\n }\n\n :host([position='left']) div.flyout {\n border-right-style: solid;\n border-right-width: calc(var(--stroke-width) * 1px);\n }\n\n :host([position='right']) div.flyout {\n border-left-style: solid;\n border-left-width: calc(var(--stroke-width) * 1px);\n }\n\n div.exit {\n cursor: pointer;\n width: calc((var(--base-height-multiplier) * (var(--design-unit) - 1)) * 1px);\n height: calc((var(--base-height-multiplier) * (var(--design-unit) - 1)) * 1px);\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n div.content,\n div.footer {\n padding: 0 0 calc(var(--design-unit) * 2px);\n }\n\n div.exit:hover {\n background-color: var(--neutral-fill-hover);\n border-radius: calc(var(--stroke-width) * 3px);\n }\n`"
16806
+ "default": "css`\n ${foundationFlyoutStyles}\n div.flyout {\n background-color: var(--neutral-layer-1);\n border-color: var(--neutral-stroke-rest);\n color: var(--neutral-foreground-rest);\n padding: calc(var(--design-unit) * 4px);\n }\n\n div.background {\n padding: calc(var(--design-unit) * 4px) 0;\n }\n\n :host {\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n line-height: var(--type-ramp-base-line-height);\n }\n\n :host([position='left']) div.flyout {\n border-right-style: solid;\n border-right-width: calc(var(--stroke-width) * 1px);\n }\n\n :host([position='right']) div.flyout {\n border-left-style: solid;\n border-left-width: calc(var(--stroke-width) * 1px);\n }\n\n div.exit {\n cursor: pointer;\n width: calc((var(--base-height-multiplier) * (var(--design-unit) - 1)) * 1px);\n height: calc((var(--base-height-multiplier) * (var(--design-unit) - 1)) * 1px);\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n div.content,\n div.footer {\n padding: 0 0 calc(var(--design-unit) * 2px);\n }\n\n div.exit:hover {\n background-color: var(--neutral-fill-hover);\n border-radius: calc(var(--stroke-width) * 3px);\n }\n`"
16758
16807
  }
16759
16808
  ],
16760
16809
  "exports": [
@@ -42631,298 +42680,1683 @@
42631
42680
  },
42632
42681
  {
42633
42682
  "kind": "javascript-module",
42634
- "path": "src/_config/tokens/index.ts",
42683
+ "path": "src/_config/tokens/error-palette.ts",
42635
42684
  "declarations": [],
42636
42685
  "exports": [
42637
42686
  {
42638
42687
  "kind": "js",
42639
- "name": "*",
42688
+ "name": "errorPalette",
42640
42689
  "declaration": {
42641
- "name": "*",
42642
- "package": "./default"
42690
+ "name": "errorPalette",
42691
+ "module": "src/_config/tokens/error-palette.ts"
42643
42692
  }
42644
42693
  },
42645
42694
  {
42646
42695
  "kind": "js",
42647
- "name": "*",
42696
+ "name": "errorFillRestDelta",
42648
42697
  "declaration": {
42649
- "name": "*",
42650
- "package": "./custom"
42698
+ "name": "errorFillRestDelta",
42699
+ "module": "src/_config/tokens/error-palette.ts"
42651
42700
  }
42652
- }
42653
- ]
42654
- },
42655
- {
42656
- "kind": "javascript-module",
42657
- "path": "src/_config/values/color.ts",
42658
- "declarations": [
42701
+ },
42659
42702
  {
42660
- "kind": "variable",
42661
- "name": "accentPaletteValue"
42703
+ "kind": "js",
42704
+ "name": "errorFillHoverDelta",
42705
+ "declaration": {
42706
+ "name": "errorFillHoverDelta",
42707
+ "module": "src/_config/tokens/error-palette.ts"
42708
+ }
42662
42709
  },
42663
42710
  {
42664
- "kind": "variable",
42665
- "name": "neutralPaletteValue"
42711
+ "kind": "js",
42712
+ "name": "errorFillActiveDelta",
42713
+ "declaration": {
42714
+ "name": "errorFillActiveDelta",
42715
+ "module": "src/_config/tokens/error-palette.ts"
42716
+ }
42666
42717
  },
42667
42718
  {
42668
- "kind": "variable",
42669
- "name": "baseLayerLuminanceValue"
42719
+ "kind": "js",
42720
+ "name": "errorFillFocusDelta",
42721
+ "declaration": {
42722
+ "name": "errorFillFocusDelta",
42723
+ "module": "src/_config/tokens/error-palette.ts"
42724
+ }
42670
42725
  },
42671
42726
  {
42672
- "kind": "variable",
42673
- "name": "accentFillRestDeltaValue",
42674
- "type": {
42675
- "text": "number"
42676
- },
42677
- "default": "0"
42727
+ "kind": "js",
42728
+ "name": "errorForegroundRestDelta",
42729
+ "declaration": {
42730
+ "name": "errorForegroundRestDelta",
42731
+ "module": "src/_config/tokens/error-palette.ts"
42732
+ }
42678
42733
  },
42679
42734
  {
42680
- "kind": "variable",
42681
- "name": "accentFillHoverDeltaValue",
42682
- "type": {
42683
- "text": "number"
42684
- },
42685
- "default": "4"
42735
+ "kind": "js",
42736
+ "name": "errorForegroundHoverDelta",
42737
+ "declaration": {
42738
+ "name": "errorForegroundHoverDelta",
42739
+ "module": "src/_config/tokens/error-palette.ts"
42740
+ }
42686
42741
  },
42687
42742
  {
42688
- "kind": "variable",
42689
- "name": "accentFillActiveDeltaValue",
42690
- "type": {
42691
- "text": "number"
42692
- },
42693
- "default": "-5"
42743
+ "kind": "js",
42744
+ "name": "errorForegroundActiveDelta",
42745
+ "declaration": {
42746
+ "name": "errorForegroundActiveDelta",
42747
+ "module": "src/_config/tokens/error-palette.ts"
42748
+ }
42694
42749
  },
42695
42750
  {
42696
- "kind": "variable",
42697
- "name": "accentFillFocusDeltaValue",
42698
- "type": {
42699
- "text": "number"
42700
- },
42701
- "default": "0"
42751
+ "kind": "js",
42752
+ "name": "errorForegroundFocusDelta",
42753
+ "declaration": {
42754
+ "name": "errorForegroundFocusDelta",
42755
+ "module": "src/_config/tokens/error-palette.ts"
42756
+ }
42702
42757
  },
42703
42758
  {
42704
- "kind": "variable",
42705
- "name": "accentForegroundRestDeltaValue",
42706
- "type": {
42707
- "text": "number"
42708
- },
42709
- "default": "0"
42759
+ "kind": "js",
42760
+ "name": "errorFillRecipe",
42761
+ "declaration": {
42762
+ "name": "errorFillRecipe",
42763
+ "module": "src/_config/tokens/error-palette.ts"
42764
+ }
42710
42765
  },
42711
42766
  {
42712
- "kind": "variable",
42713
- "name": "accentForegroundHoverDeltaValue",
42714
- "type": {
42715
- "text": "number"
42716
- },
42717
- "default": "6"
42767
+ "kind": "js",
42768
+ "name": "errorFillRest",
42769
+ "declaration": {
42770
+ "name": "errorFillRest",
42771
+ "module": "src/_config/tokens/error-palette.ts"
42772
+ }
42718
42773
  },
42719
42774
  {
42720
- "kind": "variable",
42721
- "name": "accentForegroundActiveDeltaValue",
42722
- "type": {
42723
- "text": "number"
42724
- },
42725
- "default": "-4"
42775
+ "kind": "js",
42776
+ "name": "errorFillHover",
42777
+ "declaration": {
42778
+ "name": "errorFillHover",
42779
+ "module": "src/_config/tokens/error-palette.ts"
42780
+ }
42726
42781
  },
42727
42782
  {
42728
- "kind": "variable",
42729
- "name": "accentForegroundFocusDeltaValue",
42730
- "type": {
42731
- "text": "number"
42732
- },
42733
- "default": "0"
42783
+ "kind": "js",
42784
+ "name": "errorFillActive",
42785
+ "declaration": {
42786
+ "name": "errorFillActive",
42787
+ "module": "src/_config/tokens/error-palette.ts"
42788
+ }
42734
42789
  },
42735
42790
  {
42736
- "kind": "variable",
42737
- "name": "neutralFillRestDeltaValue",
42738
- "type": {
42739
- "text": "number"
42740
- },
42741
- "default": "7"
42791
+ "kind": "js",
42792
+ "name": "errorFillFocus",
42793
+ "declaration": {
42794
+ "name": "errorFillFocus",
42795
+ "module": "src/_config/tokens/error-palette.ts"
42796
+ }
42742
42797
  },
42743
42798
  {
42744
- "kind": "variable",
42745
- "name": "neutralFillHoverDeltaValue",
42746
- "type": {
42747
- "text": "number"
42748
- },
42749
- "default": "10"
42799
+ "kind": "js",
42800
+ "name": "foregroundOnErrorRecipe",
42801
+ "declaration": {
42802
+ "name": "foregroundOnErrorRecipe",
42803
+ "module": "src/_config/tokens/error-palette.ts"
42804
+ }
42750
42805
  },
42751
42806
  {
42752
- "kind": "variable",
42753
- "name": "neutralFillActiveDeltaValue",
42754
- "type": {
42755
- "text": "number"
42756
- },
42757
- "default": "5"
42807
+ "kind": "js",
42808
+ "name": "foregroundOnErrorRest",
42809
+ "declaration": {
42810
+ "name": "foregroundOnErrorRest",
42811
+ "module": "src/_config/tokens/error-palette.ts"
42812
+ }
42758
42813
  },
42759
42814
  {
42760
- "kind": "variable",
42761
- "name": "neutralFillFocusDeltaValue",
42762
- "type": {
42763
- "text": "number"
42764
- },
42765
- "default": "0"
42815
+ "kind": "js",
42816
+ "name": "foregroundOnErrorHover",
42817
+ "declaration": {
42818
+ "name": "foregroundOnErrorHover",
42819
+ "module": "src/_config/tokens/error-palette.ts"
42820
+ }
42766
42821
  },
42767
42822
  {
42768
- "kind": "variable",
42769
- "name": "neutralFillInputRestDeltaValue",
42770
- "type": {
42771
- "text": "number"
42772
- },
42773
- "default": "0"
42823
+ "kind": "js",
42824
+ "name": "foregroundOnErrorActive",
42825
+ "declaration": {
42826
+ "name": "foregroundOnErrorActive",
42827
+ "module": "src/_config/tokens/error-palette.ts"
42828
+ }
42774
42829
  },
42775
42830
  {
42776
- "kind": "variable",
42777
- "name": "neutralFillInputHoverDeltaValue",
42778
- "type": {
42779
- "text": "number"
42780
- },
42781
- "default": "5"
42831
+ "kind": "js",
42832
+ "name": "foregroundOnErrorFocus",
42833
+ "declaration": {
42834
+ "name": "foregroundOnErrorFocus",
42835
+ "module": "src/_config/tokens/error-palette.ts"
42836
+ }
42782
42837
  },
42783
42838
  {
42784
- "kind": "variable",
42785
- "name": "neutralFillInputActiveDeltaValue",
42786
- "type": {
42787
- "text": "number"
42788
- },
42789
- "default": "0"
42839
+ "kind": "js",
42840
+ "name": "foregroundOnErrorLargeRecipe",
42841
+ "declaration": {
42842
+ "name": "foregroundOnErrorLargeRecipe",
42843
+ "module": "src/_config/tokens/error-palette.ts"
42844
+ }
42790
42845
  },
42791
42846
  {
42792
- "kind": "variable",
42793
- "name": "neutralFillInputFocusDeltaValue",
42794
- "type": {
42795
- "text": "number"
42796
- },
42797
- "default": "10"
42847
+ "kind": "js",
42848
+ "name": "foregroundOnErrorRestLarge",
42849
+ "declaration": {
42850
+ "name": "foregroundOnErrorRestLarge",
42851
+ "module": "src/_config/tokens/error-palette.ts"
42852
+ }
42798
42853
  },
42799
42854
  {
42800
- "kind": "variable",
42801
- "name": "neutralFillStealthRestDeltaValue",
42802
- "type": {
42803
- "text": "number"
42804
- },
42805
- "default": "0"
42855
+ "kind": "js",
42856
+ "name": "foregroundOnErrorHoverLarge",
42857
+ "declaration": {
42858
+ "name": "foregroundOnErrorHoverLarge",
42859
+ "module": "src/_config/tokens/error-palette.ts"
42860
+ }
42806
42861
  },
42807
42862
  {
42808
- "kind": "variable",
42809
- "name": "neutralFillStealthHoverDeltaValue",
42810
- "type": {
42811
- "text": "number"
42812
- },
42813
- "default": "5"
42863
+ "kind": "js",
42864
+ "name": "foregroundOnErrorActiveLarge",
42865
+ "declaration": {
42866
+ "name": "foregroundOnErrorActiveLarge",
42867
+ "module": "src/_config/tokens/error-palette.ts"
42868
+ }
42814
42869
  },
42815
42870
  {
42816
- "kind": "variable",
42817
- "name": "neutralFillStealthActiveDeltaValue",
42818
- "type": {
42819
- "text": "number"
42820
- },
42821
- "default": "3"
42871
+ "kind": "js",
42872
+ "name": "foregroundOnErrorFocusLarge",
42873
+ "declaration": {
42874
+ "name": "foregroundOnErrorFocusLarge",
42875
+ "module": "src/_config/tokens/error-palette.ts"
42876
+ }
42822
42877
  },
42823
42878
  {
42824
- "kind": "variable",
42825
- "name": "neutralFillStealthFocusDeltaValue",
42826
- "type": {
42827
- "text": "number"
42828
- },
42829
- "default": "0"
42879
+ "kind": "js",
42880
+ "name": "errorForegroundRecipe",
42881
+ "declaration": {
42882
+ "name": "errorForegroundRecipe",
42883
+ "module": "src/_config/tokens/error-palette.ts"
42884
+ }
42830
42885
  },
42831
42886
  {
42832
- "kind": "variable",
42833
- "name": "neutralFillStrongRestDeltaValue",
42834
- "type": {
42835
- "text": "number"
42836
- },
42837
- "default": "0"
42887
+ "kind": "js",
42888
+ "name": "errorForegroundRest",
42889
+ "declaration": {
42890
+ "name": "errorForegroundRest",
42891
+ "module": "src/_config/tokens/error-palette.ts"
42892
+ }
42838
42893
  },
42839
42894
  {
42840
- "kind": "variable",
42841
- "name": "neutralFillStrongHoverDeltaValue",
42842
- "type": {
42843
- "text": "number"
42844
- },
42845
- "default": "8"
42895
+ "kind": "js",
42896
+ "name": "errorForegroundHover",
42897
+ "declaration": {
42898
+ "name": "errorForegroundHover",
42899
+ "module": "src/_config/tokens/error-palette.ts"
42900
+ }
42846
42901
  },
42847
42902
  {
42848
- "kind": "variable",
42849
- "name": "neutralFillStrongActiveDeltaValue",
42850
- "type": {
42851
- "text": "number"
42852
- },
42853
- "default": "-5"
42903
+ "kind": "js",
42904
+ "name": "errorForegroundActive",
42905
+ "declaration": {
42906
+ "name": "errorForegroundActive",
42907
+ "module": "src/_config/tokens/error-palette.ts"
42908
+ }
42854
42909
  },
42855
42910
  {
42856
- "kind": "variable",
42857
- "name": "neutralFillStrongFocusDeltaValue",
42858
- "type": {
42859
- "text": "number"
42860
- },
42861
- "default": "0"
42911
+ "kind": "js",
42912
+ "name": "errorForegroundFocus",
42913
+ "declaration": {
42914
+ "name": "errorForegroundFocus",
42915
+ "module": "src/_config/tokens/error-palette.ts"
42916
+ }
42917
+ }
42918
+ ]
42919
+ },
42920
+ {
42921
+ "kind": "javascript-module",
42922
+ "path": "src/_config/tokens/index.ts",
42923
+ "declarations": [],
42924
+ "exports": [
42925
+ {
42926
+ "kind": "js",
42927
+ "name": "*",
42928
+ "declaration": {
42929
+ "name": "*",
42930
+ "package": "./default"
42931
+ }
42862
42932
  },
42863
42933
  {
42864
- "kind": "variable",
42865
- "name": "neutralFillLayerRestDeltaValue",
42866
- "type": {
42867
- "text": "number"
42868
- },
42869
- "default": "3"
42934
+ "kind": "js",
42935
+ "name": "*",
42936
+ "declaration": {
42937
+ "name": "*",
42938
+ "package": "./custom"
42939
+ }
42870
42940
  },
42871
42941
  {
42872
- "kind": "variable",
42873
- "name": "neutralStrokeRestDeltaValue",
42874
- "type": {
42875
- "text": "number"
42876
- },
42877
- "default": "25"
42942
+ "kind": "js",
42943
+ "name": "*",
42944
+ "declaration": {
42945
+ "name": "*",
42946
+ "package": "./secondary"
42947
+ }
42878
42948
  },
42879
42949
  {
42880
- "kind": "variable",
42881
- "name": "neutralStrokeHoverDeltaValue",
42882
- "type": {
42883
- "text": "number"
42884
- },
42885
- "default": "40"
42950
+ "kind": "js",
42951
+ "name": "*",
42952
+ "declaration": {
42953
+ "name": "*",
42954
+ "package": "./tertiary-palette"
42955
+ }
42886
42956
  },
42887
42957
  {
42888
- "kind": "variable",
42889
- "name": "neutralStrokeActiveDeltaValue",
42890
- "type": {
42891
- "text": "number"
42892
- },
42893
- "default": "16"
42958
+ "kind": "js",
42959
+ "name": "*",
42960
+ "declaration": {
42961
+ "name": "*",
42962
+ "package": "./error-palette"
42963
+ }
42964
+ },
42965
+ {
42966
+ "kind": "js",
42967
+ "name": "*",
42968
+ "declaration": {
42969
+ "name": "*",
42970
+ "package": "./success-palette"
42971
+ }
42894
42972
  },
42973
+ {
42974
+ "kind": "js",
42975
+ "name": "*",
42976
+ "declaration": {
42977
+ "name": "*",
42978
+ "package": "./warning-palette"
42979
+ }
42980
+ }
42981
+ ]
42982
+ },
42983
+ {
42984
+ "kind": "javascript-module",
42985
+ "path": "src/_config/tokens/secondary.ts",
42986
+ "declarations": [
42895
42987
  {
42896
42988
  "kind": "variable",
42897
- "name": "neutralStrokeFocusDeltaValue",
42898
- "type": {
42899
- "text": "number"
42900
- },
42901
- "default": "25"
42989
+ "name": "defaultSecondaryColor"
42902
42990
  },
42903
42991
  {
42904
42992
  "kind": "variable",
42905
- "name": "neutralStrokeDividerRestDeltaValue",
42906
- "type": {
42907
- "text": "number"
42908
- },
42909
- "default": "8"
42993
+ "name": "secondaryColor",
42994
+ "privacy": "public"
42910
42995
  }
42911
42996
  ],
42912
42997
  "exports": [
42913
42998
  {
42914
42999
  "kind": "js",
42915
- "name": "accentPaletteValue",
43000
+ "name": "defaultSecondaryColor",
42916
43001
  "declaration": {
42917
- "name": "accentPaletteValue",
42918
- "module": "src/_config/values/color.ts"
43002
+ "name": "defaultSecondaryColor",
43003
+ "module": "src/_config/tokens/secondary.ts"
42919
43004
  }
42920
43005
  },
42921
43006
  {
42922
43007
  "kind": "js",
42923
- "name": "neutralPaletteValue",
43008
+ "name": "secondaryColor",
42924
43009
  "declaration": {
42925
- "name": "neutralPaletteValue",
43010
+ "name": "secondaryColor",
43011
+ "module": "src/_config/tokens/secondary.ts"
43012
+ }
43013
+ },
43014
+ {
43015
+ "kind": "js",
43016
+ "name": "secondaryPalette",
43017
+ "declaration": {
43018
+ "name": "secondaryPalette",
43019
+ "module": "src/_config/tokens/secondary.ts"
43020
+ }
43021
+ },
43022
+ {
43023
+ "kind": "js",
43024
+ "name": "secondaryFillRestDelta",
43025
+ "declaration": {
43026
+ "name": "secondaryFillRestDelta",
43027
+ "module": "src/_config/tokens/secondary.ts"
43028
+ }
43029
+ },
43030
+ {
43031
+ "kind": "js",
43032
+ "name": "secondaryFillHoverDelta",
43033
+ "declaration": {
43034
+ "name": "secondaryFillHoverDelta",
43035
+ "module": "src/_config/tokens/secondary.ts"
43036
+ }
43037
+ },
43038
+ {
43039
+ "kind": "js",
43040
+ "name": "secondaryFillActiveDelta",
43041
+ "declaration": {
43042
+ "name": "secondaryFillActiveDelta",
43043
+ "module": "src/_config/tokens/secondary.ts"
43044
+ }
43045
+ },
43046
+ {
43047
+ "kind": "js",
43048
+ "name": "secondaryFillFocusDelta",
43049
+ "declaration": {
43050
+ "name": "secondaryFillFocusDelta",
43051
+ "module": "src/_config/tokens/secondary.ts"
43052
+ }
43053
+ },
43054
+ {
43055
+ "kind": "js",
43056
+ "name": "secondaryForegroundRestDelta",
43057
+ "declaration": {
43058
+ "name": "secondaryForegroundRestDelta",
43059
+ "module": "src/_config/tokens/secondary.ts"
43060
+ }
43061
+ },
43062
+ {
43063
+ "kind": "js",
43064
+ "name": "secondaryForegroundHoverDelta",
43065
+ "declaration": {
43066
+ "name": "secondaryForegroundHoverDelta",
43067
+ "module": "src/_config/tokens/secondary.ts"
43068
+ }
43069
+ },
43070
+ {
43071
+ "kind": "js",
43072
+ "name": "secondaryForegroundActiveDelta",
43073
+ "declaration": {
43074
+ "name": "secondaryForegroundActiveDelta",
43075
+ "module": "src/_config/tokens/secondary.ts"
43076
+ }
43077
+ },
43078
+ {
43079
+ "kind": "js",
43080
+ "name": "secondaryForegroundFocusDelta",
43081
+ "declaration": {
43082
+ "name": "secondaryForegroundFocusDelta",
43083
+ "module": "src/_config/tokens/secondary.ts"
43084
+ }
43085
+ },
43086
+ {
43087
+ "kind": "js",
43088
+ "name": "secondaryFillRecipe",
43089
+ "declaration": {
43090
+ "name": "secondaryFillRecipe",
43091
+ "module": "src/_config/tokens/secondary.ts"
43092
+ }
43093
+ },
43094
+ {
43095
+ "kind": "js",
43096
+ "name": "secondaryFillRest",
43097
+ "declaration": {
43098
+ "name": "secondaryFillRest",
43099
+ "module": "src/_config/tokens/secondary.ts"
43100
+ }
43101
+ },
43102
+ {
43103
+ "kind": "js",
43104
+ "name": "secondaryFillHover",
43105
+ "declaration": {
43106
+ "name": "secondaryFillHover",
43107
+ "module": "src/_config/tokens/secondary.ts"
43108
+ }
43109
+ },
43110
+ {
43111
+ "kind": "js",
43112
+ "name": "secondaryFillActive",
43113
+ "declaration": {
43114
+ "name": "secondaryFillActive",
43115
+ "module": "src/_config/tokens/secondary.ts"
43116
+ }
43117
+ },
43118
+ {
43119
+ "kind": "js",
43120
+ "name": "secondaryFillFocus",
43121
+ "declaration": {
43122
+ "name": "secondaryFillFocus",
43123
+ "module": "src/_config/tokens/secondary.ts"
43124
+ }
43125
+ },
43126
+ {
43127
+ "kind": "js",
43128
+ "name": "foregroundOnSecondaryRecipe",
43129
+ "declaration": {
43130
+ "name": "foregroundOnSecondaryRecipe",
43131
+ "module": "src/_config/tokens/secondary.ts"
43132
+ }
43133
+ },
43134
+ {
43135
+ "kind": "js",
43136
+ "name": "foregroundOnSecondaryRest",
43137
+ "declaration": {
43138
+ "name": "foregroundOnSecondaryRest",
43139
+ "module": "src/_config/tokens/secondary.ts"
43140
+ }
43141
+ },
43142
+ {
43143
+ "kind": "js",
43144
+ "name": "foregroundOnSecondaryHover",
43145
+ "declaration": {
43146
+ "name": "foregroundOnSecondaryHover",
43147
+ "module": "src/_config/tokens/secondary.ts"
43148
+ }
43149
+ },
43150
+ {
43151
+ "kind": "js",
43152
+ "name": "foregroundOnSecondaryActive",
43153
+ "declaration": {
43154
+ "name": "foregroundOnSecondaryActive",
43155
+ "module": "src/_config/tokens/secondary.ts"
43156
+ }
43157
+ },
43158
+ {
43159
+ "kind": "js",
43160
+ "name": "foregroundOnSecondaryFocus",
43161
+ "declaration": {
43162
+ "name": "foregroundOnSecondaryFocus",
43163
+ "module": "src/_config/tokens/secondary.ts"
43164
+ }
43165
+ },
43166
+ {
43167
+ "kind": "js",
43168
+ "name": "foregroundOnSecondaryLargeRecipe",
43169
+ "declaration": {
43170
+ "name": "foregroundOnSecondaryLargeRecipe",
43171
+ "module": "src/_config/tokens/secondary.ts"
43172
+ }
43173
+ },
43174
+ {
43175
+ "kind": "js",
43176
+ "name": "foregroundOnSecondaryRestLarge",
43177
+ "declaration": {
43178
+ "name": "foregroundOnSecondaryRestLarge",
43179
+ "module": "src/_config/tokens/secondary.ts"
43180
+ }
43181
+ },
43182
+ {
43183
+ "kind": "js",
43184
+ "name": "foregroundOnSecondaryHoverLarge",
43185
+ "declaration": {
43186
+ "name": "foregroundOnSecondaryHoverLarge",
43187
+ "module": "src/_config/tokens/secondary.ts"
43188
+ }
43189
+ },
43190
+ {
43191
+ "kind": "js",
43192
+ "name": "foregroundOnSecondaryActiveLarge",
43193
+ "declaration": {
43194
+ "name": "foregroundOnSecondaryActiveLarge",
43195
+ "module": "src/_config/tokens/secondary.ts"
43196
+ }
43197
+ },
43198
+ {
43199
+ "kind": "js",
43200
+ "name": "foregroundOnSecondaryFocusLarge",
43201
+ "declaration": {
43202
+ "name": "foregroundOnSecondaryFocusLarge",
43203
+ "module": "src/_config/tokens/secondary.ts"
43204
+ }
43205
+ },
43206
+ {
43207
+ "kind": "js",
43208
+ "name": "secondaryForegroundRecipe",
43209
+ "declaration": {
43210
+ "name": "secondaryForegroundRecipe",
43211
+ "module": "src/_config/tokens/secondary.ts"
43212
+ }
43213
+ },
43214
+ {
43215
+ "kind": "js",
43216
+ "name": "secondaryForegroundRest",
43217
+ "declaration": {
43218
+ "name": "secondaryForegroundRest",
43219
+ "module": "src/_config/tokens/secondary.ts"
43220
+ }
43221
+ },
43222
+ {
43223
+ "kind": "js",
43224
+ "name": "secondaryForegroundHover",
43225
+ "declaration": {
43226
+ "name": "secondaryForegroundHover",
43227
+ "module": "src/_config/tokens/secondary.ts"
43228
+ }
43229
+ },
43230
+ {
43231
+ "kind": "js",
43232
+ "name": "secondaryForegroundActive",
43233
+ "declaration": {
43234
+ "name": "secondaryForegroundActive",
43235
+ "module": "src/_config/tokens/secondary.ts"
43236
+ }
43237
+ },
43238
+ {
43239
+ "kind": "js",
43240
+ "name": "secondaryForegroundFocus",
43241
+ "declaration": {
43242
+ "name": "secondaryForegroundFocus",
43243
+ "module": "src/_config/tokens/secondary.ts"
43244
+ }
43245
+ }
43246
+ ]
43247
+ },
43248
+ {
43249
+ "kind": "javascript-module",
43250
+ "path": "src/_config/tokens/semantic-palette.factory.ts",
43251
+ "declarations": [
43252
+ {
43253
+ "kind": "function",
43254
+ "name": "createSemanticPalette",
43255
+ "parameters": [
43256
+ {
43257
+ "name": "cssPrefix",
43258
+ "type": {
43259
+ "text": "string"
43260
+ },
43261
+ "description": "Token name prefix, e.g. `'error'` → `--error-fill-rest`"
43262
+ },
43263
+ {
43264
+ "name": "sourceColorToken",
43265
+ "type": {
43266
+ "text": "DesignToken<Swatch>"
43267
+ },
43268
+ "description": "The swatch token whose value drives the palette"
43269
+ }
43270
+ ],
43271
+ "description": "Creates the full set of interactive palette tokens for a semantic colour (fill, foreground,\nforeground-on variants) mirroring FAST's built-in accent/neutral pattern.",
43272
+ "privacy": "public"
43273
+ }
43274
+ ],
43275
+ "exports": [
43276
+ {
43277
+ "kind": "js",
43278
+ "name": "createSemanticPalette",
43279
+ "declaration": {
43280
+ "name": "createSemanticPalette",
43281
+ "module": "src/_config/tokens/semantic-palette.factory.ts"
43282
+ }
43283
+ }
43284
+ ]
43285
+ },
43286
+ {
43287
+ "kind": "javascript-module",
43288
+ "path": "src/_config/tokens/success-palette.ts",
43289
+ "declarations": [],
43290
+ "exports": [
43291
+ {
43292
+ "kind": "js",
43293
+ "name": "successPalette",
43294
+ "declaration": {
43295
+ "name": "successPalette",
43296
+ "module": "src/_config/tokens/success-palette.ts"
43297
+ }
43298
+ },
43299
+ {
43300
+ "kind": "js",
43301
+ "name": "successFillRestDelta",
43302
+ "declaration": {
43303
+ "name": "successFillRestDelta",
43304
+ "module": "src/_config/tokens/success-palette.ts"
43305
+ }
43306
+ },
43307
+ {
43308
+ "kind": "js",
43309
+ "name": "successFillHoverDelta",
43310
+ "declaration": {
43311
+ "name": "successFillHoverDelta",
43312
+ "module": "src/_config/tokens/success-palette.ts"
43313
+ }
43314
+ },
43315
+ {
43316
+ "kind": "js",
43317
+ "name": "successFillActiveDelta",
43318
+ "declaration": {
43319
+ "name": "successFillActiveDelta",
43320
+ "module": "src/_config/tokens/success-palette.ts"
43321
+ }
43322
+ },
43323
+ {
43324
+ "kind": "js",
43325
+ "name": "successFillFocusDelta",
43326
+ "declaration": {
43327
+ "name": "successFillFocusDelta",
43328
+ "module": "src/_config/tokens/success-palette.ts"
43329
+ }
43330
+ },
43331
+ {
43332
+ "kind": "js",
43333
+ "name": "successForegroundRestDelta",
43334
+ "declaration": {
43335
+ "name": "successForegroundRestDelta",
43336
+ "module": "src/_config/tokens/success-palette.ts"
43337
+ }
43338
+ },
43339
+ {
43340
+ "kind": "js",
43341
+ "name": "successForegroundHoverDelta",
43342
+ "declaration": {
43343
+ "name": "successForegroundHoverDelta",
43344
+ "module": "src/_config/tokens/success-palette.ts"
43345
+ }
43346
+ },
43347
+ {
43348
+ "kind": "js",
43349
+ "name": "successForegroundActiveDelta",
43350
+ "declaration": {
43351
+ "name": "successForegroundActiveDelta",
43352
+ "module": "src/_config/tokens/success-palette.ts"
43353
+ }
43354
+ },
43355
+ {
43356
+ "kind": "js",
43357
+ "name": "successForegroundFocusDelta",
43358
+ "declaration": {
43359
+ "name": "successForegroundFocusDelta",
43360
+ "module": "src/_config/tokens/success-palette.ts"
43361
+ }
43362
+ },
43363
+ {
43364
+ "kind": "js",
43365
+ "name": "successFillRecipe",
43366
+ "declaration": {
43367
+ "name": "successFillRecipe",
43368
+ "module": "src/_config/tokens/success-palette.ts"
43369
+ }
43370
+ },
43371
+ {
43372
+ "kind": "js",
43373
+ "name": "successFillRest",
43374
+ "declaration": {
43375
+ "name": "successFillRest",
43376
+ "module": "src/_config/tokens/success-palette.ts"
43377
+ }
43378
+ },
43379
+ {
43380
+ "kind": "js",
43381
+ "name": "successFillHover",
43382
+ "declaration": {
43383
+ "name": "successFillHover",
43384
+ "module": "src/_config/tokens/success-palette.ts"
43385
+ }
43386
+ },
43387
+ {
43388
+ "kind": "js",
43389
+ "name": "successFillActive",
43390
+ "declaration": {
43391
+ "name": "successFillActive",
43392
+ "module": "src/_config/tokens/success-palette.ts"
43393
+ }
43394
+ },
43395
+ {
43396
+ "kind": "js",
43397
+ "name": "successFillFocus",
43398
+ "declaration": {
43399
+ "name": "successFillFocus",
43400
+ "module": "src/_config/tokens/success-palette.ts"
43401
+ }
43402
+ },
43403
+ {
43404
+ "kind": "js",
43405
+ "name": "foregroundOnSuccessRecipe",
43406
+ "declaration": {
43407
+ "name": "foregroundOnSuccessRecipe",
43408
+ "module": "src/_config/tokens/success-palette.ts"
43409
+ }
43410
+ },
43411
+ {
43412
+ "kind": "js",
43413
+ "name": "foregroundOnSuccessRest",
43414
+ "declaration": {
43415
+ "name": "foregroundOnSuccessRest",
43416
+ "module": "src/_config/tokens/success-palette.ts"
43417
+ }
43418
+ },
43419
+ {
43420
+ "kind": "js",
43421
+ "name": "foregroundOnSuccessHover",
43422
+ "declaration": {
43423
+ "name": "foregroundOnSuccessHover",
43424
+ "module": "src/_config/tokens/success-palette.ts"
43425
+ }
43426
+ },
43427
+ {
43428
+ "kind": "js",
43429
+ "name": "foregroundOnSuccessActive",
43430
+ "declaration": {
43431
+ "name": "foregroundOnSuccessActive",
43432
+ "module": "src/_config/tokens/success-palette.ts"
43433
+ }
43434
+ },
43435
+ {
43436
+ "kind": "js",
43437
+ "name": "foregroundOnSuccessFocus",
43438
+ "declaration": {
43439
+ "name": "foregroundOnSuccessFocus",
43440
+ "module": "src/_config/tokens/success-palette.ts"
43441
+ }
43442
+ },
43443
+ {
43444
+ "kind": "js",
43445
+ "name": "foregroundOnSuccessLargeRecipe",
43446
+ "declaration": {
43447
+ "name": "foregroundOnSuccessLargeRecipe",
43448
+ "module": "src/_config/tokens/success-palette.ts"
43449
+ }
43450
+ },
43451
+ {
43452
+ "kind": "js",
43453
+ "name": "foregroundOnSuccessRestLarge",
43454
+ "declaration": {
43455
+ "name": "foregroundOnSuccessRestLarge",
43456
+ "module": "src/_config/tokens/success-palette.ts"
43457
+ }
43458
+ },
43459
+ {
43460
+ "kind": "js",
43461
+ "name": "foregroundOnSuccessHoverLarge",
43462
+ "declaration": {
43463
+ "name": "foregroundOnSuccessHoverLarge",
43464
+ "module": "src/_config/tokens/success-palette.ts"
43465
+ }
43466
+ },
43467
+ {
43468
+ "kind": "js",
43469
+ "name": "foregroundOnSuccessActiveLarge",
43470
+ "declaration": {
43471
+ "name": "foregroundOnSuccessActiveLarge",
43472
+ "module": "src/_config/tokens/success-palette.ts"
43473
+ }
43474
+ },
43475
+ {
43476
+ "kind": "js",
43477
+ "name": "foregroundOnSuccessFocusLarge",
43478
+ "declaration": {
43479
+ "name": "foregroundOnSuccessFocusLarge",
43480
+ "module": "src/_config/tokens/success-palette.ts"
43481
+ }
43482
+ },
43483
+ {
43484
+ "kind": "js",
43485
+ "name": "successForegroundRecipe",
43486
+ "declaration": {
43487
+ "name": "successForegroundRecipe",
43488
+ "module": "src/_config/tokens/success-palette.ts"
43489
+ }
43490
+ },
43491
+ {
43492
+ "kind": "js",
43493
+ "name": "successForegroundRest",
43494
+ "declaration": {
43495
+ "name": "successForegroundRest",
43496
+ "module": "src/_config/tokens/success-palette.ts"
43497
+ }
43498
+ },
43499
+ {
43500
+ "kind": "js",
43501
+ "name": "successForegroundHover",
43502
+ "declaration": {
43503
+ "name": "successForegroundHover",
43504
+ "module": "src/_config/tokens/success-palette.ts"
43505
+ }
43506
+ },
43507
+ {
43508
+ "kind": "js",
43509
+ "name": "successForegroundActive",
43510
+ "declaration": {
43511
+ "name": "successForegroundActive",
43512
+ "module": "src/_config/tokens/success-palette.ts"
43513
+ }
43514
+ },
43515
+ {
43516
+ "kind": "js",
43517
+ "name": "successForegroundFocus",
43518
+ "declaration": {
43519
+ "name": "successForegroundFocus",
43520
+ "module": "src/_config/tokens/success-palette.ts"
43521
+ }
43522
+ }
43523
+ ]
43524
+ },
43525
+ {
43526
+ "kind": "javascript-module",
43527
+ "path": "src/_config/tokens/tertiary-palette.ts",
43528
+ "declarations": [
43529
+ {
43530
+ "kind": "variable",
43531
+ "name": "defaultTertiaryColor"
43532
+ },
43533
+ {
43534
+ "kind": "variable",
43535
+ "name": "tertiaryColor",
43536
+ "privacy": "public"
43537
+ }
43538
+ ],
43539
+ "exports": [
43540
+ {
43541
+ "kind": "js",
43542
+ "name": "defaultTertiaryColor",
43543
+ "declaration": {
43544
+ "name": "defaultTertiaryColor",
43545
+ "module": "src/_config/tokens/tertiary-palette.ts"
43546
+ }
43547
+ },
43548
+ {
43549
+ "kind": "js",
43550
+ "name": "tertiaryColor",
43551
+ "declaration": {
43552
+ "name": "tertiaryColor",
43553
+ "module": "src/_config/tokens/tertiary-palette.ts"
43554
+ }
43555
+ },
43556
+ {
43557
+ "kind": "js",
43558
+ "name": "tertiaryPalette",
43559
+ "declaration": {
43560
+ "name": "tertiaryPalette",
43561
+ "module": "src/_config/tokens/tertiary-palette.ts"
43562
+ }
43563
+ },
43564
+ {
43565
+ "kind": "js",
43566
+ "name": "tertiaryFillRestDelta",
43567
+ "declaration": {
43568
+ "name": "tertiaryFillRestDelta",
43569
+ "module": "src/_config/tokens/tertiary-palette.ts"
43570
+ }
43571
+ },
43572
+ {
43573
+ "kind": "js",
43574
+ "name": "tertiaryFillHoverDelta",
43575
+ "declaration": {
43576
+ "name": "tertiaryFillHoverDelta",
43577
+ "module": "src/_config/tokens/tertiary-palette.ts"
43578
+ }
43579
+ },
43580
+ {
43581
+ "kind": "js",
43582
+ "name": "tertiaryFillActiveDelta",
43583
+ "declaration": {
43584
+ "name": "tertiaryFillActiveDelta",
43585
+ "module": "src/_config/tokens/tertiary-palette.ts"
43586
+ }
43587
+ },
43588
+ {
43589
+ "kind": "js",
43590
+ "name": "tertiaryFillFocusDelta",
43591
+ "declaration": {
43592
+ "name": "tertiaryFillFocusDelta",
43593
+ "module": "src/_config/tokens/tertiary-palette.ts"
43594
+ }
43595
+ },
43596
+ {
43597
+ "kind": "js",
43598
+ "name": "tertiaryForegroundRestDelta",
43599
+ "declaration": {
43600
+ "name": "tertiaryForegroundRestDelta",
43601
+ "module": "src/_config/tokens/tertiary-palette.ts"
43602
+ }
43603
+ },
43604
+ {
43605
+ "kind": "js",
43606
+ "name": "tertiaryForegroundHoverDelta",
43607
+ "declaration": {
43608
+ "name": "tertiaryForegroundHoverDelta",
43609
+ "module": "src/_config/tokens/tertiary-palette.ts"
43610
+ }
43611
+ },
43612
+ {
43613
+ "kind": "js",
43614
+ "name": "tertiaryForegroundActiveDelta",
43615
+ "declaration": {
43616
+ "name": "tertiaryForegroundActiveDelta",
43617
+ "module": "src/_config/tokens/tertiary-palette.ts"
43618
+ }
43619
+ },
43620
+ {
43621
+ "kind": "js",
43622
+ "name": "tertiaryForegroundFocusDelta",
43623
+ "declaration": {
43624
+ "name": "tertiaryForegroundFocusDelta",
43625
+ "module": "src/_config/tokens/tertiary-palette.ts"
43626
+ }
43627
+ },
43628
+ {
43629
+ "kind": "js",
43630
+ "name": "tertiaryFillRecipe",
43631
+ "declaration": {
43632
+ "name": "tertiaryFillRecipe",
43633
+ "module": "src/_config/tokens/tertiary-palette.ts"
43634
+ }
43635
+ },
43636
+ {
43637
+ "kind": "js",
43638
+ "name": "tertiaryFillRest",
43639
+ "declaration": {
43640
+ "name": "tertiaryFillRest",
43641
+ "module": "src/_config/tokens/tertiary-palette.ts"
43642
+ }
43643
+ },
43644
+ {
43645
+ "kind": "js",
43646
+ "name": "tertiaryFillHover",
43647
+ "declaration": {
43648
+ "name": "tertiaryFillHover",
43649
+ "module": "src/_config/tokens/tertiary-palette.ts"
43650
+ }
43651
+ },
43652
+ {
43653
+ "kind": "js",
43654
+ "name": "tertiaryFillActive",
43655
+ "declaration": {
43656
+ "name": "tertiaryFillActive",
43657
+ "module": "src/_config/tokens/tertiary-palette.ts"
43658
+ }
43659
+ },
43660
+ {
43661
+ "kind": "js",
43662
+ "name": "tertiaryFillFocus",
43663
+ "declaration": {
43664
+ "name": "tertiaryFillFocus",
43665
+ "module": "src/_config/tokens/tertiary-palette.ts"
43666
+ }
43667
+ },
43668
+ {
43669
+ "kind": "js",
43670
+ "name": "foregroundOnTertiaryRecipe",
43671
+ "declaration": {
43672
+ "name": "foregroundOnTertiaryRecipe",
43673
+ "module": "src/_config/tokens/tertiary-palette.ts"
43674
+ }
43675
+ },
43676
+ {
43677
+ "kind": "js",
43678
+ "name": "foregroundOnTertiaryRest",
43679
+ "declaration": {
43680
+ "name": "foregroundOnTertiaryRest",
43681
+ "module": "src/_config/tokens/tertiary-palette.ts"
43682
+ }
43683
+ },
43684
+ {
43685
+ "kind": "js",
43686
+ "name": "foregroundOnTertiaryHover",
43687
+ "declaration": {
43688
+ "name": "foregroundOnTertiaryHover",
43689
+ "module": "src/_config/tokens/tertiary-palette.ts"
43690
+ }
43691
+ },
43692
+ {
43693
+ "kind": "js",
43694
+ "name": "foregroundOnTertiaryActive",
43695
+ "declaration": {
43696
+ "name": "foregroundOnTertiaryActive",
43697
+ "module": "src/_config/tokens/tertiary-palette.ts"
43698
+ }
43699
+ },
43700
+ {
43701
+ "kind": "js",
43702
+ "name": "foregroundOnTertiaryFocus",
43703
+ "declaration": {
43704
+ "name": "foregroundOnTertiaryFocus",
43705
+ "module": "src/_config/tokens/tertiary-palette.ts"
43706
+ }
43707
+ },
43708
+ {
43709
+ "kind": "js",
43710
+ "name": "foregroundOnTertiaryLargeRecipe",
43711
+ "declaration": {
43712
+ "name": "foregroundOnTertiaryLargeRecipe",
43713
+ "module": "src/_config/tokens/tertiary-palette.ts"
43714
+ }
43715
+ },
43716
+ {
43717
+ "kind": "js",
43718
+ "name": "foregroundOnTertiaryRestLarge",
43719
+ "declaration": {
43720
+ "name": "foregroundOnTertiaryRestLarge",
43721
+ "module": "src/_config/tokens/tertiary-palette.ts"
43722
+ }
43723
+ },
43724
+ {
43725
+ "kind": "js",
43726
+ "name": "foregroundOnTertiaryHoverLarge",
43727
+ "declaration": {
43728
+ "name": "foregroundOnTertiaryHoverLarge",
43729
+ "module": "src/_config/tokens/tertiary-palette.ts"
43730
+ }
43731
+ },
43732
+ {
43733
+ "kind": "js",
43734
+ "name": "foregroundOnTertiaryActiveLarge",
43735
+ "declaration": {
43736
+ "name": "foregroundOnTertiaryActiveLarge",
43737
+ "module": "src/_config/tokens/tertiary-palette.ts"
43738
+ }
43739
+ },
43740
+ {
43741
+ "kind": "js",
43742
+ "name": "foregroundOnTertiaryFocusLarge",
43743
+ "declaration": {
43744
+ "name": "foregroundOnTertiaryFocusLarge",
43745
+ "module": "src/_config/tokens/tertiary-palette.ts"
43746
+ }
43747
+ },
43748
+ {
43749
+ "kind": "js",
43750
+ "name": "tertiaryForegroundRecipe",
43751
+ "declaration": {
43752
+ "name": "tertiaryForegroundRecipe",
43753
+ "module": "src/_config/tokens/tertiary-palette.ts"
43754
+ }
43755
+ },
43756
+ {
43757
+ "kind": "js",
43758
+ "name": "tertiaryForegroundRest",
43759
+ "declaration": {
43760
+ "name": "tertiaryForegroundRest",
43761
+ "module": "src/_config/tokens/tertiary-palette.ts"
43762
+ }
43763
+ },
43764
+ {
43765
+ "kind": "js",
43766
+ "name": "tertiaryForegroundHover",
43767
+ "declaration": {
43768
+ "name": "tertiaryForegroundHover",
43769
+ "module": "src/_config/tokens/tertiary-palette.ts"
43770
+ }
43771
+ },
43772
+ {
43773
+ "kind": "js",
43774
+ "name": "tertiaryForegroundActive",
43775
+ "declaration": {
43776
+ "name": "tertiaryForegroundActive",
43777
+ "module": "src/_config/tokens/tertiary-palette.ts"
43778
+ }
43779
+ },
43780
+ {
43781
+ "kind": "js",
43782
+ "name": "tertiaryForegroundFocus",
43783
+ "declaration": {
43784
+ "name": "tertiaryForegroundFocus",
43785
+ "module": "src/_config/tokens/tertiary-palette.ts"
43786
+ }
43787
+ }
43788
+ ]
43789
+ },
43790
+ {
43791
+ "kind": "javascript-module",
43792
+ "path": "src/_config/tokens/warning-palette.ts",
43793
+ "declarations": [],
43794
+ "exports": [
43795
+ {
43796
+ "kind": "js",
43797
+ "name": "warningPalette",
43798
+ "declaration": {
43799
+ "name": "warningPalette",
43800
+ "module": "src/_config/tokens/warning-palette.ts"
43801
+ }
43802
+ },
43803
+ {
43804
+ "kind": "js",
43805
+ "name": "warningFillRestDelta",
43806
+ "declaration": {
43807
+ "name": "warningFillRestDelta",
43808
+ "module": "src/_config/tokens/warning-palette.ts"
43809
+ }
43810
+ },
43811
+ {
43812
+ "kind": "js",
43813
+ "name": "warningFillHoverDelta",
43814
+ "declaration": {
43815
+ "name": "warningFillHoverDelta",
43816
+ "module": "src/_config/tokens/warning-palette.ts"
43817
+ }
43818
+ },
43819
+ {
43820
+ "kind": "js",
43821
+ "name": "warningFillActiveDelta",
43822
+ "declaration": {
43823
+ "name": "warningFillActiveDelta",
43824
+ "module": "src/_config/tokens/warning-palette.ts"
43825
+ }
43826
+ },
43827
+ {
43828
+ "kind": "js",
43829
+ "name": "warningFillFocusDelta",
43830
+ "declaration": {
43831
+ "name": "warningFillFocusDelta",
43832
+ "module": "src/_config/tokens/warning-palette.ts"
43833
+ }
43834
+ },
43835
+ {
43836
+ "kind": "js",
43837
+ "name": "warningForegroundRestDelta",
43838
+ "declaration": {
43839
+ "name": "warningForegroundRestDelta",
43840
+ "module": "src/_config/tokens/warning-palette.ts"
43841
+ }
43842
+ },
43843
+ {
43844
+ "kind": "js",
43845
+ "name": "warningForegroundHoverDelta",
43846
+ "declaration": {
43847
+ "name": "warningForegroundHoverDelta",
43848
+ "module": "src/_config/tokens/warning-palette.ts"
43849
+ }
43850
+ },
43851
+ {
43852
+ "kind": "js",
43853
+ "name": "warningForegroundActiveDelta",
43854
+ "declaration": {
43855
+ "name": "warningForegroundActiveDelta",
43856
+ "module": "src/_config/tokens/warning-palette.ts"
43857
+ }
43858
+ },
43859
+ {
43860
+ "kind": "js",
43861
+ "name": "warningForegroundFocusDelta",
43862
+ "declaration": {
43863
+ "name": "warningForegroundFocusDelta",
43864
+ "module": "src/_config/tokens/warning-palette.ts"
43865
+ }
43866
+ },
43867
+ {
43868
+ "kind": "js",
43869
+ "name": "warningFillRecipe",
43870
+ "declaration": {
43871
+ "name": "warningFillRecipe",
43872
+ "module": "src/_config/tokens/warning-palette.ts"
43873
+ }
43874
+ },
43875
+ {
43876
+ "kind": "js",
43877
+ "name": "warningFillRest",
43878
+ "declaration": {
43879
+ "name": "warningFillRest",
43880
+ "module": "src/_config/tokens/warning-palette.ts"
43881
+ }
43882
+ },
43883
+ {
43884
+ "kind": "js",
43885
+ "name": "warningFillHover",
43886
+ "declaration": {
43887
+ "name": "warningFillHover",
43888
+ "module": "src/_config/tokens/warning-palette.ts"
43889
+ }
43890
+ },
43891
+ {
43892
+ "kind": "js",
43893
+ "name": "warningFillActive",
43894
+ "declaration": {
43895
+ "name": "warningFillActive",
43896
+ "module": "src/_config/tokens/warning-palette.ts"
43897
+ }
43898
+ },
43899
+ {
43900
+ "kind": "js",
43901
+ "name": "warningFillFocus",
43902
+ "declaration": {
43903
+ "name": "warningFillFocus",
43904
+ "module": "src/_config/tokens/warning-palette.ts"
43905
+ }
43906
+ },
43907
+ {
43908
+ "kind": "js",
43909
+ "name": "foregroundOnWarningRecipe",
43910
+ "declaration": {
43911
+ "name": "foregroundOnWarningRecipe",
43912
+ "module": "src/_config/tokens/warning-palette.ts"
43913
+ }
43914
+ },
43915
+ {
43916
+ "kind": "js",
43917
+ "name": "foregroundOnWarningRest",
43918
+ "declaration": {
43919
+ "name": "foregroundOnWarningRest",
43920
+ "module": "src/_config/tokens/warning-palette.ts"
43921
+ }
43922
+ },
43923
+ {
43924
+ "kind": "js",
43925
+ "name": "foregroundOnWarningHover",
43926
+ "declaration": {
43927
+ "name": "foregroundOnWarningHover",
43928
+ "module": "src/_config/tokens/warning-palette.ts"
43929
+ }
43930
+ },
43931
+ {
43932
+ "kind": "js",
43933
+ "name": "foregroundOnWarningActive",
43934
+ "declaration": {
43935
+ "name": "foregroundOnWarningActive",
43936
+ "module": "src/_config/tokens/warning-palette.ts"
43937
+ }
43938
+ },
43939
+ {
43940
+ "kind": "js",
43941
+ "name": "foregroundOnWarningFocus",
43942
+ "declaration": {
43943
+ "name": "foregroundOnWarningFocus",
43944
+ "module": "src/_config/tokens/warning-palette.ts"
43945
+ }
43946
+ },
43947
+ {
43948
+ "kind": "js",
43949
+ "name": "foregroundOnWarningLargeRecipe",
43950
+ "declaration": {
43951
+ "name": "foregroundOnWarningLargeRecipe",
43952
+ "module": "src/_config/tokens/warning-palette.ts"
43953
+ }
43954
+ },
43955
+ {
43956
+ "kind": "js",
43957
+ "name": "foregroundOnWarningRestLarge",
43958
+ "declaration": {
43959
+ "name": "foregroundOnWarningRestLarge",
43960
+ "module": "src/_config/tokens/warning-palette.ts"
43961
+ }
43962
+ },
43963
+ {
43964
+ "kind": "js",
43965
+ "name": "foregroundOnWarningHoverLarge",
43966
+ "declaration": {
43967
+ "name": "foregroundOnWarningHoverLarge",
43968
+ "module": "src/_config/tokens/warning-palette.ts"
43969
+ }
43970
+ },
43971
+ {
43972
+ "kind": "js",
43973
+ "name": "foregroundOnWarningActiveLarge",
43974
+ "declaration": {
43975
+ "name": "foregroundOnWarningActiveLarge",
43976
+ "module": "src/_config/tokens/warning-palette.ts"
43977
+ }
43978
+ },
43979
+ {
43980
+ "kind": "js",
43981
+ "name": "foregroundOnWarningFocusLarge",
43982
+ "declaration": {
43983
+ "name": "foregroundOnWarningFocusLarge",
43984
+ "module": "src/_config/tokens/warning-palette.ts"
43985
+ }
43986
+ },
43987
+ {
43988
+ "kind": "js",
43989
+ "name": "warningForegroundRecipe",
43990
+ "declaration": {
43991
+ "name": "warningForegroundRecipe",
43992
+ "module": "src/_config/tokens/warning-palette.ts"
43993
+ }
43994
+ },
43995
+ {
43996
+ "kind": "js",
43997
+ "name": "warningForegroundRest",
43998
+ "declaration": {
43999
+ "name": "warningForegroundRest",
44000
+ "module": "src/_config/tokens/warning-palette.ts"
44001
+ }
44002
+ },
44003
+ {
44004
+ "kind": "js",
44005
+ "name": "warningForegroundHover",
44006
+ "declaration": {
44007
+ "name": "warningForegroundHover",
44008
+ "module": "src/_config/tokens/warning-palette.ts"
44009
+ }
44010
+ },
44011
+ {
44012
+ "kind": "js",
44013
+ "name": "warningForegroundActive",
44014
+ "declaration": {
44015
+ "name": "warningForegroundActive",
44016
+ "module": "src/_config/tokens/warning-palette.ts"
44017
+ }
44018
+ },
44019
+ {
44020
+ "kind": "js",
44021
+ "name": "warningForegroundFocus",
44022
+ "declaration": {
44023
+ "name": "warningForegroundFocus",
44024
+ "module": "src/_config/tokens/warning-palette.ts"
44025
+ }
44026
+ }
44027
+ ]
44028
+ },
44029
+ {
44030
+ "kind": "javascript-module",
44031
+ "path": "src/_config/values/color.ts",
44032
+ "declarations": [
44033
+ {
44034
+ "kind": "variable",
44035
+ "name": "accentPaletteValue"
44036
+ },
44037
+ {
44038
+ "kind": "variable",
44039
+ "name": "neutralPaletteValue"
44040
+ },
44041
+ {
44042
+ "kind": "variable",
44043
+ "name": "secondaryPaletteValue"
44044
+ },
44045
+ {
44046
+ "kind": "variable",
44047
+ "name": "tertiaryPaletteValue"
44048
+ },
44049
+ {
44050
+ "kind": "variable",
44051
+ "name": "errorPaletteValue"
44052
+ },
44053
+ {
44054
+ "kind": "variable",
44055
+ "name": "successPaletteValue"
44056
+ },
44057
+ {
44058
+ "kind": "variable",
44059
+ "name": "warningPaletteValue"
44060
+ },
44061
+ {
44062
+ "kind": "variable",
44063
+ "name": "baseLayerLuminanceValue"
44064
+ },
44065
+ {
44066
+ "kind": "variable",
44067
+ "name": "accentFillRestDeltaValue",
44068
+ "type": {
44069
+ "text": "number"
44070
+ },
44071
+ "default": "0"
44072
+ },
44073
+ {
44074
+ "kind": "variable",
44075
+ "name": "accentFillHoverDeltaValue",
44076
+ "type": {
44077
+ "text": "number"
44078
+ },
44079
+ "default": "4"
44080
+ },
44081
+ {
44082
+ "kind": "variable",
44083
+ "name": "accentFillActiveDeltaValue",
44084
+ "type": {
44085
+ "text": "number"
44086
+ },
44087
+ "default": "-5"
44088
+ },
44089
+ {
44090
+ "kind": "variable",
44091
+ "name": "accentFillFocusDeltaValue",
44092
+ "type": {
44093
+ "text": "number"
44094
+ },
44095
+ "default": "0"
44096
+ },
44097
+ {
44098
+ "kind": "variable",
44099
+ "name": "accentForegroundRestDeltaValue",
44100
+ "type": {
44101
+ "text": "number"
44102
+ },
44103
+ "default": "0"
44104
+ },
44105
+ {
44106
+ "kind": "variable",
44107
+ "name": "accentForegroundHoverDeltaValue",
44108
+ "type": {
44109
+ "text": "number"
44110
+ },
44111
+ "default": "6"
44112
+ },
44113
+ {
44114
+ "kind": "variable",
44115
+ "name": "accentForegroundActiveDeltaValue",
44116
+ "type": {
44117
+ "text": "number"
44118
+ },
44119
+ "default": "-4"
44120
+ },
44121
+ {
44122
+ "kind": "variable",
44123
+ "name": "accentForegroundFocusDeltaValue",
44124
+ "type": {
44125
+ "text": "number"
44126
+ },
44127
+ "default": "0"
44128
+ },
44129
+ {
44130
+ "kind": "variable",
44131
+ "name": "neutralFillRestDeltaValue",
44132
+ "type": {
44133
+ "text": "number"
44134
+ },
44135
+ "default": "7"
44136
+ },
44137
+ {
44138
+ "kind": "variable",
44139
+ "name": "neutralFillHoverDeltaValue",
44140
+ "type": {
44141
+ "text": "number"
44142
+ },
44143
+ "default": "10"
44144
+ },
44145
+ {
44146
+ "kind": "variable",
44147
+ "name": "neutralFillActiveDeltaValue",
44148
+ "type": {
44149
+ "text": "number"
44150
+ },
44151
+ "default": "5"
44152
+ },
44153
+ {
44154
+ "kind": "variable",
44155
+ "name": "neutralFillFocusDeltaValue",
44156
+ "type": {
44157
+ "text": "number"
44158
+ },
44159
+ "default": "0"
44160
+ },
44161
+ {
44162
+ "kind": "variable",
44163
+ "name": "neutralFillInputRestDeltaValue",
44164
+ "type": {
44165
+ "text": "number"
44166
+ },
44167
+ "default": "0"
44168
+ },
44169
+ {
44170
+ "kind": "variable",
44171
+ "name": "neutralFillInputHoverDeltaValue",
44172
+ "type": {
44173
+ "text": "number"
44174
+ },
44175
+ "default": "5"
44176
+ },
44177
+ {
44178
+ "kind": "variable",
44179
+ "name": "neutralFillInputActiveDeltaValue",
44180
+ "type": {
44181
+ "text": "number"
44182
+ },
44183
+ "default": "0"
44184
+ },
44185
+ {
44186
+ "kind": "variable",
44187
+ "name": "neutralFillInputFocusDeltaValue",
44188
+ "type": {
44189
+ "text": "number"
44190
+ },
44191
+ "default": "10"
44192
+ },
44193
+ {
44194
+ "kind": "variable",
44195
+ "name": "neutralFillStealthRestDeltaValue",
44196
+ "type": {
44197
+ "text": "number"
44198
+ },
44199
+ "default": "0"
44200
+ },
44201
+ {
44202
+ "kind": "variable",
44203
+ "name": "neutralFillStealthHoverDeltaValue",
44204
+ "type": {
44205
+ "text": "number"
44206
+ },
44207
+ "default": "5"
44208
+ },
44209
+ {
44210
+ "kind": "variable",
44211
+ "name": "neutralFillStealthActiveDeltaValue",
44212
+ "type": {
44213
+ "text": "number"
44214
+ },
44215
+ "default": "3"
44216
+ },
44217
+ {
44218
+ "kind": "variable",
44219
+ "name": "neutralFillStealthFocusDeltaValue",
44220
+ "type": {
44221
+ "text": "number"
44222
+ },
44223
+ "default": "0"
44224
+ },
44225
+ {
44226
+ "kind": "variable",
44227
+ "name": "neutralFillStrongRestDeltaValue",
44228
+ "type": {
44229
+ "text": "number"
44230
+ },
44231
+ "default": "0"
44232
+ },
44233
+ {
44234
+ "kind": "variable",
44235
+ "name": "neutralFillStrongHoverDeltaValue",
44236
+ "type": {
44237
+ "text": "number"
44238
+ },
44239
+ "default": "8"
44240
+ },
44241
+ {
44242
+ "kind": "variable",
44243
+ "name": "neutralFillStrongActiveDeltaValue",
44244
+ "type": {
44245
+ "text": "number"
44246
+ },
44247
+ "default": "-5"
44248
+ },
44249
+ {
44250
+ "kind": "variable",
44251
+ "name": "neutralFillStrongFocusDeltaValue",
44252
+ "type": {
44253
+ "text": "number"
44254
+ },
44255
+ "default": "0"
44256
+ },
44257
+ {
44258
+ "kind": "variable",
44259
+ "name": "neutralFillLayerRestDeltaValue",
44260
+ "type": {
44261
+ "text": "number"
44262
+ },
44263
+ "default": "3"
44264
+ },
44265
+ {
44266
+ "kind": "variable",
44267
+ "name": "neutralStrokeRestDeltaValue",
44268
+ "type": {
44269
+ "text": "number"
44270
+ },
44271
+ "default": "25"
44272
+ },
44273
+ {
44274
+ "kind": "variable",
44275
+ "name": "neutralStrokeHoverDeltaValue",
44276
+ "type": {
44277
+ "text": "number"
44278
+ },
44279
+ "default": "40"
44280
+ },
44281
+ {
44282
+ "kind": "variable",
44283
+ "name": "neutralStrokeActiveDeltaValue",
44284
+ "type": {
44285
+ "text": "number"
44286
+ },
44287
+ "default": "16"
44288
+ },
44289
+ {
44290
+ "kind": "variable",
44291
+ "name": "neutralStrokeFocusDeltaValue",
44292
+ "type": {
44293
+ "text": "number"
44294
+ },
44295
+ "default": "25"
44296
+ },
44297
+ {
44298
+ "kind": "variable",
44299
+ "name": "neutralStrokeDividerRestDeltaValue",
44300
+ "type": {
44301
+ "text": "number"
44302
+ },
44303
+ "default": "8"
44304
+ }
44305
+ ],
44306
+ "exports": [
44307
+ {
44308
+ "kind": "js",
44309
+ "name": "accentPaletteValue",
44310
+ "declaration": {
44311
+ "name": "accentPaletteValue",
44312
+ "module": "src/_config/values/color.ts"
44313
+ }
44314
+ },
44315
+ {
44316
+ "kind": "js",
44317
+ "name": "neutralPaletteValue",
44318
+ "declaration": {
44319
+ "name": "neutralPaletteValue",
44320
+ "module": "src/_config/values/color.ts"
44321
+ }
44322
+ },
44323
+ {
44324
+ "kind": "js",
44325
+ "name": "secondaryPaletteValue",
44326
+ "declaration": {
44327
+ "name": "secondaryPaletteValue",
44328
+ "module": "src/_config/values/color.ts"
44329
+ }
44330
+ },
44331
+ {
44332
+ "kind": "js",
44333
+ "name": "tertiaryPaletteValue",
44334
+ "declaration": {
44335
+ "name": "tertiaryPaletteValue",
44336
+ "module": "src/_config/values/color.ts"
44337
+ }
44338
+ },
44339
+ {
44340
+ "kind": "js",
44341
+ "name": "errorPaletteValue",
44342
+ "declaration": {
44343
+ "name": "errorPaletteValue",
44344
+ "module": "src/_config/values/color.ts"
44345
+ }
44346
+ },
44347
+ {
44348
+ "kind": "js",
44349
+ "name": "successPaletteValue",
44350
+ "declaration": {
44351
+ "name": "successPaletteValue",
44352
+ "module": "src/_config/values/color.ts"
44353
+ }
44354
+ },
44355
+ {
44356
+ "kind": "js",
44357
+ "name": "warningPaletteValue",
44358
+ "declaration": {
44359
+ "name": "warningPaletteValue",
42926
44360
  "module": "src/_config/values/color.ts"
42927
44361
  }
42928
44362
  },
@@ -43186,7 +44620,7 @@
43186
44620
  "type": {
43187
44621
  "text": "DesignTokensConfig"
43188
44622
  },
43189
- "default": "{\n design_tokens: {\n color: {\n accent: {\n $value: accentPaletteValue.source.toColorString(),\n $type: 'color',\n },\n neutral: {\n $value: neutralPaletteValue.source.toColorString(),\n $type: 'color',\n },\n },\n fontFamily: {\n bodyFont: {\n $value: bodyFontValue,\n $type: 'fontFamily',\n },\n },\n typography: {\n baseFontSize: {\n $value: typeRampBaseFontSizeValue,\n $type: 'dimension',\n },\n baseLineHeight: {\n $value: typeRampBaseLineHeightValue,\n $type: 'dimension',\n },\n },\n mode: {\n luminance: {\n $value: baseLayerLuminanceValue,\n $type: 'number',\n },\n },\n style: {\n density: {\n $value: densityValue,\n $type: 'number',\n },\n baseHeightMultiplier: {\n $value: baseHeightMultiplierValue,\n $type: 'number',\n },\n borderRadius: {\n $value: controlCornerRadiusValue,\n $type: 'number',\n },\n strokeWidth: {\n $value: strokeWidthValue,\n $type: 'number',\n },\n },\n space: {\n designUnit: {\n $value: designUnitValue,\n $type: 'number',\n },\n },\n },\n}"
44623
+ "default": "{\n design_tokens: {\n color: {\n accent: {\n $value: accentPaletteValue.source.toColorString(),\n $type: 'color',\n },\n neutral: {\n $value: neutralPaletteValue.source.toColorString(),\n $type: 'color',\n },\n secondary: {\n $value: secondaryPaletteValue.source.toColorString(),\n $type: 'color',\n },\n tertiary: {\n $value: tertiaryPaletteValue.source.toColorString(),\n $type: 'color',\n },\n error: {\n $value: errorPaletteValue.source.toColorString(),\n $type: 'color',\n },\n success: {\n $value: successPaletteValue.source.toColorString(),\n $type: 'color',\n },\n warning: {\n $value: warningPaletteValue.source.toColorString(),\n $type: 'color',\n },\n },\n fontFamily: {\n bodyFont: {\n $value: bodyFontValue,\n $type: 'fontFamily',\n },\n },\n typography: {\n baseFontSize: {\n $value: typeRampBaseFontSizeValue,\n $type: 'dimension',\n },\n baseLineHeight: {\n $value: typeRampBaseLineHeightValue,\n $type: 'dimension',\n },\n },\n mode: {\n luminance: {\n $value: baseLayerLuminanceValue,\n $type: 'number',\n },\n },\n style: {\n density: {\n $value: densityValue,\n $type: 'number',\n },\n baseHeightMultiplier: {\n $value: baseHeightMultiplierValue,\n $type: 'number',\n },\n borderRadius: {\n $value: controlCornerRadiusValue,\n $type: 'number',\n },\n strokeWidth: {\n $value: strokeWidthValue,\n $type: 'number',\n },\n },\n space: {\n designUnit: {\n $value: designUnitValue,\n $type: 'number',\n },\n },\n },\n}"
43190
44624
  }
43191
44625
  ],
43192
44626
  "exports": [