@cloudscape-design/components-themeable 3.0.750 → 3.0.751

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- "commit": "d0958317a50e5a80595f3453ef6a3011e05618fc"
2
+ "commit": "d4baed1e91de2e065a7d2400fdeb3ecfaa07113f"
3
3
  }
@@ -35,4 +35,29 @@
35
35
  &.badge-color-red {
36
36
  background-color: awsui.$color-background-notification-red;
37
37
  }
38
+
39
+ &.badge-color-severity-critical {
40
+ background-color: awsui.$color-background-severity-critical;
41
+ color: awsui.$color-text-severity-critical;
42
+ }
43
+
44
+ &.badge-color-severity-high {
45
+ background-color: awsui.$color-background-severity-high;
46
+ color: awsui.$color-text-severity-high;
47
+ }
48
+
49
+ &.badge-color-severity-medium {
50
+ background-color: awsui.$color-background-severity-medium;
51
+ color: awsui.$color-text-severity-medium;
52
+ }
53
+
54
+ &.badge-color-severity-low {
55
+ background-color: awsui.$color-background-severity-low;
56
+ color: awsui.$color-text-severity-low;
57
+ }
58
+
59
+ &.badge-color-severity-neutral {
60
+ background-color: awsui.$color-background-severity-neutral;
61
+ color: awsui.$color-text-severity-neutral;
62
+ }
38
63
  }
@@ -4,7 +4,7 @@ export interface BadgeProps extends BaseComponentProps {
4
4
  /**
5
5
  * Specifies the badge color.
6
6
  */
7
- color?: 'blue' | 'grey' | 'green' | 'red';
7
+ color?: 'blue' | 'grey' | 'green' | 'red' | 'severity-critical' | 'severity-high' | 'severity-medium' | 'severity-low' | 'severity-neutral';
8
8
  /**
9
9
  * Text displayed inside the badge.
10
10
  */
@@ -1 +1 @@
1
- {"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/badge/interfaces.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAEhE,MAAM,WAAW,UAAW,SAAQ,kBAAkB;IACpD;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,KAAK,CAAC;IAE1C;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B"}
1
+ {"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/badge/interfaces.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAEhE,MAAM,WAAW,UAAW,SAAQ,kBAAkB;IACpD;;OAEG;IACH,KAAK,CAAC,EACF,MAAM,GACN,MAAM,GACN,OAAO,GACP,KAAK,GACL,mBAAmB,GACnB,eAAe,GACf,iBAAiB,GACjB,cAAc,GACd,kBAAkB,CAAC;IAEvB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B"}
@@ -1 +1 @@
1
- {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/badge/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\n\nimport { BaseComponentProps } from '../internal/base-component';\n\nexport interface BadgeProps extends BaseComponentProps {\n /**\n * Specifies the badge color.\n */\n color?: 'blue' | 'grey' | 'green' | 'red';\n\n /**\n * Text displayed inside the badge.\n */\n children?: React.ReactNode;\n}\n"]}
1
+ {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/badge/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\n\nimport { BaseComponentProps } from '../internal/base-component';\n\nexport interface BadgeProps extends BaseComponentProps {\n /**\n * Specifies the badge color.\n */\n color?:\n | 'blue'\n | 'grey'\n | 'green'\n | 'red'\n | 'severity-critical'\n | 'severity-high'\n | 'severity-medium'\n | 'severity-low'\n | 'severity-neutral';\n\n /**\n * Text displayed inside the badge.\n */\n children?: React.ReactNode;\n}\n"]}
@@ -1,10 +1,15 @@
1
1
 
2
2
  import './styles.scoped.css';
3
3
  export default {
4
- "badge": "awsui_badge_1yjyg_l42to_141",
5
- "badge-color-grey": "awsui_badge-color-grey_1yjyg_l42to_187",
6
- "badge-color-green": "awsui_badge-color-green_1yjyg_l42to_190",
7
- "badge-color-blue": "awsui_badge-color-blue_1yjyg_l42to_193",
8
- "badge-color-red": "awsui_badge-color-red_1yjyg_l42to_196"
4
+ "badge": "awsui_badge_1yjyg_1b6ws_141",
5
+ "badge-color-grey": "awsui_badge-color-grey_1yjyg_1b6ws_187",
6
+ "badge-color-green": "awsui_badge-color-green_1yjyg_1b6ws_190",
7
+ "badge-color-blue": "awsui_badge-color-blue_1yjyg_1b6ws_193",
8
+ "badge-color-red": "awsui_badge-color-red_1yjyg_1b6ws_196",
9
+ "badge-color-severity-critical": "awsui_badge-color-severity-critical_1yjyg_1b6ws_199",
10
+ "badge-color-severity-high": "awsui_badge-color-severity-high_1yjyg_1b6ws_203",
11
+ "badge-color-severity-medium": "awsui_badge-color-severity-medium_1yjyg_1b6ws_207",
12
+ "badge-color-severity-low": "awsui_badge-color-severity-low_1yjyg_1b6ws_211",
13
+ "badge-color-severity-neutral": "awsui_badge-color-severity-neutral_1yjyg_1b6ws_215"
9
14
  };
10
15
 
@@ -138,7 +138,7 @@
138
138
  */
139
139
  /* Style used for links in slots/components that are text heavy, to help links stand out among
140
140
  surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
141
- .awsui_badge_1yjyg_l42to_141:not(#\9) {
141
+ .awsui_badge_1yjyg_1b6ws_141:not(#\9) {
142
142
  border-collapse: separate;
143
143
  border-spacing: 0;
144
144
  box-sizing: border-box;
@@ -185,15 +185,35 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
185
185
  padding-inline: var(--space-xs-xf5ch3, 8px);
186
186
  color: var(--color-text-notification-default-hruauw, #fafafa);
187
187
  }
188
- .awsui_badge_1yjyg_l42to_141.awsui_badge-color-grey_1yjyg_l42to_187:not(#\9) {
188
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-grey_1yjyg_1b6ws_187:not(#\9) {
189
189
  background-color: var(--color-background-notification-grey-hf7l1x, #545b64);
190
190
  }
191
- .awsui_badge_1yjyg_l42to_141.awsui_badge-color-green_1yjyg_l42to_190:not(#\9) {
191
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-green_1yjyg_1b6ws_190:not(#\9) {
192
192
  background-color: var(--color-background-notification-green-igmdlm, #1d8102);
193
193
  }
194
- .awsui_badge_1yjyg_l42to_141.awsui_badge-color-blue_1yjyg_l42to_193:not(#\9) {
194
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-blue_1yjyg_1b6ws_193:not(#\9) {
195
195
  background-color: var(--color-background-notification-blue-xgzcj2, #0073bb);
196
196
  }
197
- .awsui_badge_1yjyg_l42to_141.awsui_badge-color-red_1yjyg_l42to_196:not(#\9) {
197
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-red_1yjyg_1b6ws_196:not(#\9) {
198
198
  background-color: var(--color-background-notification-red-k9i8vf, #d13212);
199
+ }
200
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-severity-critical_1yjyg_1b6ws_199:not(#\9) {
201
+ background-color: var(--color-background-severity-critical-287y6s, #7d2105);
202
+ color: var(--color-text-severity-critical-1jb4g3, #fafafa);
203
+ }
204
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-severity-high_1yjyg_1b6ws_203:not(#\9) {
205
+ background-color: var(--color-background-severity-high-3y1qf3, #ba2e0f);
206
+ color: var(--color-text-severity-high-npgbfw, #fafafa);
207
+ }
208
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-severity-medium_1yjyg_1b6ws_207:not(#\9) {
209
+ background-color: var(--color-background-severity-medium-jq16y6, #cc5f21);
210
+ color: var(--color-text-severity-medium-y5es5h, #000000);
211
+ }
212
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-severity-low_1yjyg_1b6ws_211:not(#\9) {
213
+ background-color: var(--color-background-severity-low-keh5ob, #b2911c);
214
+ color: var(--color-text-severity-low-r9hyjr, #16191f);
215
+ }
216
+ .awsui_badge_1yjyg_1b6ws_141.awsui_badge-color-severity-neutral_1yjyg_1b6ws_215:not(#\9) {
217
+ background-color: var(--color-background-severity-neutral-5g0m75, #545b64);
218
+ color: var(--color-text-severity-neutral-p5k1cx, #fafafa);
199
219
  }
@@ -2,10 +2,15 @@
2
2
  // es-module interop with Babel and Typescript
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  module.exports.default = {
5
- "badge": "awsui_badge_1yjyg_l42to_141",
6
- "badge-color-grey": "awsui_badge-color-grey_1yjyg_l42to_187",
7
- "badge-color-green": "awsui_badge-color-green_1yjyg_l42to_190",
8
- "badge-color-blue": "awsui_badge-color-blue_1yjyg_l42to_193",
9
- "badge-color-red": "awsui_badge-color-red_1yjyg_l42to_196"
5
+ "badge": "awsui_badge_1yjyg_1b6ws_141",
6
+ "badge-color-grey": "awsui_badge-color-grey_1yjyg_1b6ws_187",
7
+ "badge-color-green": "awsui_badge-color-green_1yjyg_1b6ws_190",
8
+ "badge-color-blue": "awsui_badge-color-blue_1yjyg_1b6ws_193",
9
+ "badge-color-red": "awsui_badge-color-red_1yjyg_1b6ws_196",
10
+ "badge-color-severity-critical": "awsui_badge-color-severity-critical_1yjyg_1b6ws_199",
11
+ "badge-color-severity-high": "awsui_badge-color-severity-high_1yjyg_1b6ws_203",
12
+ "badge-color-severity-medium": "awsui_badge-color-severity-medium_1yjyg_1b6ws_207",
13
+ "badge-color-severity-low": "awsui_badge-color-severity-low_1yjyg_1b6ws_211",
14
+ "badge-color-severity-neutral": "awsui_badge-color-severity-neutral_1yjyg_1b6ws_215"
10
15
  };
11
16
 
@@ -401,6 +401,16 @@
401
401
  --color-dropzone-background-hover-5pfqtu:#99cbe4;
402
402
  --color-dropzone-text-active-v8joq4:#545b64;
403
403
  --color-dropzone-text-hover-tw679e:#12293b;
404
+ --color-background-severity-critical-287y6s:#7d2105;
405
+ --color-text-severity-critical-1jb4g3:#fafafa;
406
+ --color-background-severity-high-3y1qf3:#ba2e0f;
407
+ --color-text-severity-high-npgbfw:#fafafa;
408
+ --color-background-severity-medium-jq16y6:#cc5f21;
409
+ --color-text-severity-medium-y5es5h:#000000;
410
+ --color-background-severity-low-keh5ob:#b2911c;
411
+ --color-text-severity-low-r9hyjr:#16191f;
412
+ --color-background-severity-neutral-5g0m75:#545b64;
413
+ --color-text-severity-neutral-p5k1cx:#fafafa;
404
414
  --font-box-value-large-weight-gpwhlq:300;
405
415
  --font-button-letter-spacing-kukfsk:0.25px;
406
416
  --font-button-weight-s67y37:700;
@@ -993,6 +1003,14 @@
993
1003
  --color-dropzone-background-hover-5pfqtu:#0073bb;
994
1004
  --color-dropzone-text-active-v8joq4:#16191f;
995
1005
  --color-dropzone-text-hover-tw679e:#ffffff;
1006
+ --color-background-severity-critical-287y6s:#d63f38;
1007
+ --color-text-severity-critical-1jb4g3:#000000;
1008
+ --color-background-severity-high-3y1qf3:#fe6e73;
1009
+ --color-text-severity-high-npgbfw:#16191f;
1010
+ --color-background-severity-medium-jq16y6:#f89256;
1011
+ --color-text-severity-medium-y5es5h:#16191f;
1012
+ --color-background-severity-low-keh5ob:#dfb52c;
1013
+ --color-background-severity-neutral-5g0m75:#687078;
996
1014
  --shadow-container-5104ec:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
997
1015
  --shadow-dropdown-xrjjuu:0 1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 1px 0 rgba(0, 0, 0, 0.3), -1px 1px 1px 0 rgba(0, 0, 0, 0.3);
998
1016
  --shadow-dropup-ovsp4h:0 -1px 1px 0 rgba(0, 0, 0, 0.3), 1px -1px 1px 0 rgba(0, 0, 0, 0.3), -1px -1px 1px 0 rgba(0, 0, 0, 0.3);
@@ -1297,6 +1315,10 @@
1297
1315
  --color-dropzone-background-hover-5pfqtu:#0073bb;
1298
1316
  --color-dropzone-text-active-v8joq4:#16191f;
1299
1317
  --color-dropzone-text-hover-tw679e:#ffffff;
1318
+ --color-text-severity-critical-1jb4g3:#000000;
1319
+ --color-text-severity-high-npgbfw:#16191f;
1320
+ --color-text-severity-medium-y5es5h:#16191f;
1321
+ --color-background-severity-neutral-5g0m75:#687078;
1300
1322
  }
1301
1323
 
1302
1324
  .awsui-context-flashbar:not(#\9) {
@@ -1616,6 +1638,12 @@
1616
1638
  --color-dropzone-background-hover-5pfqtu:#d3e7f9;
1617
1639
  --color-dropzone-text-active-v8joq4:#5f6b7a;
1618
1640
  --color-dropzone-text-hover-tw679e:#033160;
1641
+ --color-text-severity-critical-1jb4g3:#fbfbfb;
1642
+ --color-text-severity-high-npgbfw:#fbfbfb;
1643
+ --color-text-severity-medium-y5es5h:#000716;
1644
+ --color-text-severity-low-r9hyjr:#000716;
1645
+ --color-background-severity-neutral-5g0m75:#414d5c;
1646
+ --color-text-severity-neutral-p5k1cx:#fbfbfb;
1619
1647
  --font-box-value-large-weight-gpwhlq:700;
1620
1648
  --font-button-letter-spacing-kukfsk:0.005em;
1621
1649
  --font-chart-detail-size-pob89f:12px;
@@ -1964,6 +1992,9 @@
1964
1992
  --color-dropzone-background-hover-5pfqtu:#0972d3;
1965
1993
  --color-dropzone-text-active-v8joq4:#0f1b2a;
1966
1994
  --color-dropzone-text-hover-tw679e:#ffffff;
1995
+ --color-text-severity-critical-1jb4g3:#000000;
1996
+ --color-text-severity-high-npgbfw:#000716;
1997
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
1967
1998
  --shadow-container-5104ec:0px 1px 8px 2px rgba(0, 7, 22, 0.6);
1968
1999
  --shadow-container-active-2up8or:0px 1px 1px 1px #192534, 0px 6px 36px #00040c;
1969
2000
  --shadow-dropdown-xrjjuu:0px 4px 20px 1px rgba(0, 4, 12, 1);
@@ -2239,6 +2270,9 @@
2239
2270
  --color-dropzone-background-active-bfw0vt:#7d8998;
2240
2271
  --color-dropzone-background-hover-5pfqtu:#0972d3;
2241
2272
  --color-dropzone-text-active-v8joq4:#0f1b2a;
2273
+ --color-text-severity-high-npgbfw:#000716;
2274
+ --color-text-severity-medium-y5es5h:#000716;
2275
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
2242
2276
  }
2243
2277
 
2244
2278
  .awsui-context-top-navigation.awsui-visual-refresh:not(#\9) {
@@ -2437,6 +2471,9 @@
2437
2471
  --color-dropzone-background-hover-5pfqtu:#0972d3;
2438
2472
  --color-dropzone-text-active-v8joq4:#0f1b2a;
2439
2473
  --color-dropzone-text-hover-tw679e:#ffffff;
2474
+ --color-text-severity-critical-1jb4g3:#000000;
2475
+ --color-text-severity-high-npgbfw:#000716;
2476
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
2440
2477
  }
2441
2478
 
2442
2479
  .awsui-visual-refresh .awsui-context-content-header:not(#\9) {
@@ -2637,6 +2674,9 @@
2637
2674
  --color-dropzone-background-hover-5pfqtu:#0972d3;
2638
2675
  --color-dropzone-text-active-v8joq4:#0f1b2a;
2639
2676
  --color-dropzone-text-hover-tw679e:#ffffff;
2677
+ --color-text-severity-critical-1jb4g3:#000000;
2678
+ --color-text-severity-high-npgbfw:#000716;
2679
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
2640
2680
  --shadow-container-5104ec:0px 1px 8px 2px rgba(0, 7, 22, 0.6);
2641
2681
  --shadow-container-active-2up8or:0px 1px 1px 1px #192534, 0px 6px 36px #00040c;
2642
2682
  --shadow-dropdown-xrjjuu:0px 4px 20px 1px rgba(0, 4, 12, 1);
@@ -2849,6 +2889,9 @@
2849
2889
  --color-dropzone-background-hover-5pfqtu:#0972d3;
2850
2890
  --color-dropzone-text-active-v8joq4:#0f1b2a;
2851
2891
  --color-dropzone-text-hover-tw679e:#ffffff;
2892
+ --color-text-severity-critical-1jb4g3:#000000;
2893
+ --color-text-severity-high-npgbfw:#000716;
2894
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
2852
2895
  --shadow-container-5104ec:0px 1px 8px 2px rgba(0, 7, 22, 0.6);
2853
2896
  --shadow-container-active-2up8or:0px 1px 1px 1px #192534, 0px 6px 36px #00040c;
2854
2897
  --shadow-dropdown-xrjjuu:0px 4px 20px 1px rgba(0, 4, 12, 1);
@@ -3259,6 +3302,9 @@
3259
3302
  --color-dropzone-background-hover-5pfqtu:#0972d3;
3260
3303
  --color-dropzone-text-active-v8joq4:#0f1b2a;
3261
3304
  --color-dropzone-text-hover-tw679e:#ffffff;
3305
+ --color-text-severity-critical-1jb4g3:#000000;
3306
+ --color-text-severity-high-npgbfw:#000716;
3307
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
3262
3308
  }
3263
3309
 
3264
3310
  .awsui-context-content-header .awsui-context-alert.awsui-visual-refresh:not(#\9) {
@@ -3459,6 +3505,9 @@
3459
3505
  --color-dropzone-background-hover-5pfqtu:#0972d3;
3460
3506
  --color-dropzone-text-active-v8joq4:#0f1b2a;
3461
3507
  --color-dropzone-text-hover-tw679e:#ffffff;
3508
+ --color-text-severity-critical-1jb4g3:#000000;
3509
+ --color-text-severity-high-npgbfw:#000716;
3510
+ --color-background-severity-neutral-5g0m75:#5f6b7a;
3462
3511
  }
3463
3512
 
3464
3513
  @media not print {
@@ -1,4 +1,4 @@
1
1
  export var PACKAGE_SOURCE = "components";
2
- export var PACKAGE_VERSION = "3.0.0 (d0958317)";
2
+ export var PACKAGE_VERSION = "3.0.0 (d4baed1e)";
3
3
  export var THEME = "open-source-visual-refresh";
4
4
  export var ALWAYS_VISUAL_REFRESH = true;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "PACKAGE_SOURCE": "components",
3
- "PACKAGE_VERSION": "3.0.0 (d0958317)",
3
+ "PACKAGE_VERSION": "3.0.0 (d4baed1e)",
4
4
  "THEME": "default",
5
5
  "ALWAYS_VISUAL_REFRESH": false
6
6
  }
@@ -461,6 +461,16 @@ export const colorDropzoneBackgroundActive: string;
461
461
  export const colorDropzoneBackgroundHover: string;
462
462
  export const colorDropzoneTextActive: string;
463
463
  export const colorDropzoneTextHover: string;
464
+ export const colorBackgroundSeverityCritical: string;
465
+ export const colorTextSeverityCritical: string;
466
+ export const colorBackgroundSeverityHigh: string;
467
+ export const colorTextSeverityHigh: string;
468
+ export const colorBackgroundSeverityMedium: string;
469
+ export const colorTextSeverityMedium: string;
470
+ export const colorBackgroundSeverityLow: string;
471
+ export const colorTextSeverityLow: string;
472
+ export const colorBackgroundSeverityNeutral: string;
473
+ export const colorTextSeverityNeutral: string;
464
474
  export const fontBoxValueLargeWeight: string;
465
475
  export const fontButtonLetterSpacing: string;
466
476
  export const fontButtonWeight: string;
@@ -461,6 +461,16 @@ export var colorDropzoneBackgroundActive = "var(--color-dropzone-background-acti
461
461
  export var colorDropzoneBackgroundHover = "var(--color-dropzone-background-hover-42q8nb, #d3e7f9)";
462
462
  export var colorDropzoneTextActive = "var(--color-dropzone-text-active-8e1lcf, #5f6b7a)";
463
463
  export var colorDropzoneTextHover = "var(--color-dropzone-text-hover-4qxymq, #033160)";
464
+ export var colorBackgroundSeverityCritical = "var(--color-background-severity-critical-idosdq, #7d2105)";
465
+ export var colorTextSeverityCritical = "var(--color-text-severity-critical-85viri, #fbfbfb)";
466
+ export var colorBackgroundSeverityHigh = "var(--color-background-severity-high-434xpy, #ba2e0f)";
467
+ export var colorTextSeverityHigh = "var(--color-text-severity-high-uiwahw, #fbfbfb)";
468
+ export var colorBackgroundSeverityMedium = "var(--color-background-severity-medium-n5069n, #cc5f21)";
469
+ export var colorTextSeverityMedium = "var(--color-text-severity-medium-t00q1o, #000716)";
470
+ export var colorBackgroundSeverityLow = "var(--color-background-severity-low-5ab62f, #b2911c)";
471
+ export var colorTextSeverityLow = "var(--color-text-severity-low-alfea6, #000716)";
472
+ export var colorBackgroundSeverityNeutral = "var(--color-background-severity-neutral-wfgvya, #414d5c)";
473
+ export var colorTextSeverityNeutral = "var(--color-text-severity-neutral-2hvk9q, #fbfbfb)";
464
474
  export var fontBoxValueLargeWeight = "var(--font-box-value-large-weight-onoq9k, 700)";
465
475
  export var fontButtonLetterSpacing = "var(--font-button-letter-spacing-65ug0o, 0.005em)";
466
476
  export var fontButtonWeight = "var(--font-button-weight-hv56tz, 700)";
@@ -1729,6 +1729,46 @@ module.exports.preset = {
1729
1729
  "light": "{colorBlue800}",
1730
1730
  "dark": "{colorWhite}"
1731
1731
  },
1732
+ "colorBackgroundSeverityCritical": {
1733
+ "light": "{colorChartsStatusCritical}",
1734
+ "dark": "{colorChartsStatusCritical}"
1735
+ },
1736
+ "colorTextSeverityCritical": {
1737
+ "light": "{colorGrey100}",
1738
+ "dark": "{colorBlack}"
1739
+ },
1740
+ "colorBackgroundSeverityHigh": {
1741
+ "light": "{colorChartsStatusHigh}",
1742
+ "dark": "{colorChartsStatusHigh}"
1743
+ },
1744
+ "colorTextSeverityHigh": {
1745
+ "light": "{colorGrey100}",
1746
+ "dark": "{colorGrey900}"
1747
+ },
1748
+ "colorBackgroundSeverityMedium": {
1749
+ "light": "{colorChartsStatusMedium}",
1750
+ "dark": "{colorChartsStatusMedium}"
1751
+ },
1752
+ "colorTextSeverityMedium": {
1753
+ "light": "{colorGrey900}",
1754
+ "dark": "{colorGrey900}"
1755
+ },
1756
+ "colorBackgroundSeverityLow": {
1757
+ "light": "{colorChartsStatusLow}",
1758
+ "dark": "{colorChartsStatusLow}"
1759
+ },
1760
+ "colorTextSeverityLow": {
1761
+ "light": "{colorGrey900}",
1762
+ "dark": "{colorGrey900}"
1763
+ },
1764
+ "colorBackgroundSeverityNeutral": {
1765
+ "light": "{colorGrey600}",
1766
+ "dark": "{colorGrey550}"
1767
+ },
1768
+ "colorTextSeverityNeutral": {
1769
+ "light": "{colorGrey100}",
1770
+ "dark": "{colorGrey100}"
1771
+ },
1732
1772
  "fontBoxValueLargeWeight": "700",
1733
1773
  "fontButtonLetterSpacing": "0.005em",
1734
1774
  "fontButtonWeight": "700",
@@ -3902,6 +3942,46 @@ module.exports.preset = {
3902
3942
  "colorDropzoneTextHover": {
3903
3943
  "light": "{colorWhite}",
3904
3944
  "dark": "{colorWhite}"
3945
+ },
3946
+ "colorBackgroundSeverityCritical": {
3947
+ "light": "{colorChartsStatusCritical}",
3948
+ "dark": "{colorChartsStatusCritical}"
3949
+ },
3950
+ "colorTextSeverityCritical": {
3951
+ "light": "{colorBlack}",
3952
+ "dark": "{colorBlack}"
3953
+ },
3954
+ "colorBackgroundSeverityHigh": {
3955
+ "light": "{colorChartsStatusHigh}",
3956
+ "dark": "{colorChartsStatusHigh}"
3957
+ },
3958
+ "colorTextSeverityHigh": {
3959
+ "light": "{colorGrey900}",
3960
+ "dark": "{colorGrey900}"
3961
+ },
3962
+ "colorBackgroundSeverityMedium": {
3963
+ "light": "{colorChartsStatusMedium}",
3964
+ "dark": "{colorChartsStatusMedium}"
3965
+ },
3966
+ "colorTextSeverityMedium": {
3967
+ "light": "{colorGrey900}",
3968
+ "dark": "{colorGrey900}"
3969
+ },
3970
+ "colorBackgroundSeverityLow": {
3971
+ "light": "{colorChartsStatusLow}",
3972
+ "dark": "{colorChartsStatusLow}"
3973
+ },
3974
+ "colorTextSeverityLow": {
3975
+ "light": "{colorGrey900}",
3976
+ "dark": "{colorGrey900}"
3977
+ },
3978
+ "colorBackgroundSeverityNeutral": {
3979
+ "light": "{colorGrey550}",
3980
+ "dark": "{colorGrey550}"
3981
+ },
3982
+ "colorTextSeverityNeutral": {
3983
+ "light": "{colorGrey100}",
3984
+ "dark": "{colorGrey100}"
3905
3985
  }
3906
3986
  }
3907
3987
  },
@@ -4996,6 +5076,46 @@ module.exports.preset = {
4996
5076
  "colorDropzoneTextHover": {
4997
5077
  "light": "{colorWhite}",
4998
5078
  "dark": "{colorWhite}"
5079
+ },
5080
+ "colorBackgroundSeverityCritical": {
5081
+ "light": "{colorChartsStatusCritical}",
5082
+ "dark": "{colorChartsStatusCritical}"
5083
+ },
5084
+ "colorTextSeverityCritical": {
5085
+ "light": "{colorBlack}",
5086
+ "dark": "{colorBlack}"
5087
+ },
5088
+ "colorBackgroundSeverityHigh": {
5089
+ "light": "{colorChartsStatusHigh}",
5090
+ "dark": "{colorChartsStatusHigh}"
5091
+ },
5092
+ "colorTextSeverityHigh": {
5093
+ "light": "{colorGrey900}",
5094
+ "dark": "{colorGrey900}"
5095
+ },
5096
+ "colorBackgroundSeverityMedium": {
5097
+ "light": "{colorChartsStatusMedium}",
5098
+ "dark": "{colorChartsStatusMedium}"
5099
+ },
5100
+ "colorTextSeverityMedium": {
5101
+ "light": "{colorGrey900}",
5102
+ "dark": "{colorGrey900}"
5103
+ },
5104
+ "colorBackgroundSeverityLow": {
5105
+ "light": "{colorChartsStatusLow}",
5106
+ "dark": "{colorChartsStatusLow}"
5107
+ },
5108
+ "colorTextSeverityLow": {
5109
+ "light": "{colorGrey900}",
5110
+ "dark": "{colorGrey900}"
5111
+ },
5112
+ "colorBackgroundSeverityNeutral": {
5113
+ "light": "{colorGrey550}",
5114
+ "dark": "{colorGrey550}"
5115
+ },
5116
+ "colorTextSeverityNeutral": {
5117
+ "light": "{colorGrey100}",
5118
+ "dark": "{colorGrey100}"
4999
5119
  }
5000
5120
  }
5001
5121
  },
@@ -6022,6 +6142,46 @@ module.exports.preset = {
6022
6142
  "colorDropzoneTextHover": {
6023
6143
  "light": "{colorBlue800}",
6024
6144
  "dark": "{colorWhite}"
6145
+ },
6146
+ "colorBackgroundSeverityCritical": {
6147
+ "light": "{colorChartsStatusCritical}",
6148
+ "dark": "{colorChartsStatusCritical}"
6149
+ },
6150
+ "colorTextSeverityCritical": {
6151
+ "light": "{colorGrey100}",
6152
+ "dark": "{colorBlack}"
6153
+ },
6154
+ "colorBackgroundSeverityHigh": {
6155
+ "light": "{colorChartsStatusHigh}",
6156
+ "dark": "{colorChartsStatusHigh}"
6157
+ },
6158
+ "colorTextSeverityHigh": {
6159
+ "light": "{colorGrey100}",
6160
+ "dark": "{colorGrey900}"
6161
+ },
6162
+ "colorBackgroundSeverityMedium": {
6163
+ "light": "{colorChartsStatusMedium}",
6164
+ "dark": "{colorChartsStatusMedium}"
6165
+ },
6166
+ "colorTextSeverityMedium": {
6167
+ "light": "{colorGrey900}",
6168
+ "dark": "{colorGrey900}"
6169
+ },
6170
+ "colorBackgroundSeverityLow": {
6171
+ "light": "{colorChartsStatusLow}",
6172
+ "dark": "{colorChartsStatusLow}"
6173
+ },
6174
+ "colorTextSeverityLow": {
6175
+ "light": "{colorGrey900}",
6176
+ "dark": "{colorGrey900}"
6177
+ },
6178
+ "colorBackgroundSeverityNeutral": {
6179
+ "light": "{colorGrey600}",
6180
+ "dark": "{colorGrey550}"
6181
+ },
6182
+ "colorTextSeverityNeutral": {
6183
+ "light": "{colorGrey100}",
6184
+ "dark": "{colorGrey100}"
6025
6185
  }
6026
6186
  }
6027
6187
  },
@@ -7048,6 +7208,46 @@ module.exports.preset = {
7048
7208
  "colorDropzoneTextHover": {
7049
7209
  "light": "{colorBlue800}",
7050
7210
  "dark": "{colorWhite}"
7211
+ },
7212
+ "colorBackgroundSeverityCritical": {
7213
+ "light": "{colorChartsStatusCritical}",
7214
+ "dark": "{colorChartsStatusCritical}"
7215
+ },
7216
+ "colorTextSeverityCritical": {
7217
+ "light": "{colorGrey100}",
7218
+ "dark": "{colorBlack}"
7219
+ },
7220
+ "colorBackgroundSeverityHigh": {
7221
+ "light": "{colorChartsStatusHigh}",
7222
+ "dark": "{colorChartsStatusHigh}"
7223
+ },
7224
+ "colorTextSeverityHigh": {
7225
+ "light": "{colorGrey100}",
7226
+ "dark": "{colorGrey900}"
7227
+ },
7228
+ "colorBackgroundSeverityMedium": {
7229
+ "light": "{colorChartsStatusMedium}",
7230
+ "dark": "{colorChartsStatusMedium}"
7231
+ },
7232
+ "colorTextSeverityMedium": {
7233
+ "light": "{colorGrey900}",
7234
+ "dark": "{colorGrey900}"
7235
+ },
7236
+ "colorBackgroundSeverityLow": {
7237
+ "light": "{colorChartsStatusLow}",
7238
+ "dark": "{colorChartsStatusLow}"
7239
+ },
7240
+ "colorTextSeverityLow": {
7241
+ "light": "{colorGrey900}",
7242
+ "dark": "{colorGrey900}"
7243
+ },
7244
+ "colorBackgroundSeverityNeutral": {
7245
+ "light": "{colorGrey600}",
7246
+ "dark": "{colorGrey550}"
7247
+ },
7248
+ "colorTextSeverityNeutral": {
7249
+ "light": "{colorGrey100}",
7250
+ "dark": "{colorGrey100}"
7051
7251
  }
7052
7252
  }
7053
7253
  },
@@ -8075,6 +8275,46 @@ module.exports.preset = {
8075
8275
  "light": "{colorBlue800}",
8076
8276
  "dark": "{colorWhite}"
8077
8277
  },
8278
+ "colorBackgroundSeverityCritical": {
8279
+ "light": "{colorChartsStatusCritical}",
8280
+ "dark": "{colorChartsStatusCritical}"
8281
+ },
8282
+ "colorTextSeverityCritical": {
8283
+ "light": "{colorGrey100}",
8284
+ "dark": "{colorBlack}"
8285
+ },
8286
+ "colorBackgroundSeverityHigh": {
8287
+ "light": "{colorChartsStatusHigh}",
8288
+ "dark": "{colorChartsStatusHigh}"
8289
+ },
8290
+ "colorTextSeverityHigh": {
8291
+ "light": "{colorGrey100}",
8292
+ "dark": "{colorGrey900}"
8293
+ },
8294
+ "colorBackgroundSeverityMedium": {
8295
+ "light": "{colorChartsStatusMedium}",
8296
+ "dark": "{colorChartsStatusMedium}"
8297
+ },
8298
+ "colorTextSeverityMedium": {
8299
+ "light": "{colorGrey900}",
8300
+ "dark": "{colorGrey900}"
8301
+ },
8302
+ "colorBackgroundSeverityLow": {
8303
+ "light": "{colorChartsStatusLow}",
8304
+ "dark": "{colorChartsStatusLow}"
8305
+ },
8306
+ "colorTextSeverityLow": {
8307
+ "light": "{colorGrey900}",
8308
+ "dark": "{colorGrey900}"
8309
+ },
8310
+ "colorBackgroundSeverityNeutral": {
8311
+ "light": "{colorGrey600}",
8312
+ "dark": "{colorGrey550}"
8313
+ },
8314
+ "colorTextSeverityNeutral": {
8315
+ "light": "{colorGrey100}",
8316
+ "dark": "{colorGrey100}"
8317
+ },
8078
8318
  "fontExpandableHeadingSize": "14px",
8079
8319
  "borderDividerSectionWidth": "1px"
8080
8320
  }
@@ -9102,6 +9342,46 @@ module.exports.preset = {
9102
9342
  "colorDropzoneTextHover": {
9103
9343
  "light": "{colorWhite}",
9104
9344
  "dark": "{colorWhite}"
9345
+ },
9346
+ "colorBackgroundSeverityCritical": {
9347
+ "light": "{colorChartsStatusCritical}",
9348
+ "dark": "{colorChartsStatusCritical}"
9349
+ },
9350
+ "colorTextSeverityCritical": {
9351
+ "light": "{colorBlack}",
9352
+ "dark": "{colorBlack}"
9353
+ },
9354
+ "colorBackgroundSeverityHigh": {
9355
+ "light": "{colorChartsStatusHigh}",
9356
+ "dark": "{colorChartsStatusHigh}"
9357
+ },
9358
+ "colorTextSeverityHigh": {
9359
+ "light": "{colorGrey900}",
9360
+ "dark": "{colorGrey900}"
9361
+ },
9362
+ "colorBackgroundSeverityMedium": {
9363
+ "light": "{colorChartsStatusMedium}",
9364
+ "dark": "{colorChartsStatusMedium}"
9365
+ },
9366
+ "colorTextSeverityMedium": {
9367
+ "light": "{colorGrey900}",
9368
+ "dark": "{colorGrey900}"
9369
+ },
9370
+ "colorBackgroundSeverityLow": {
9371
+ "light": "{colorChartsStatusLow}",
9372
+ "dark": "{colorChartsStatusLow}"
9373
+ },
9374
+ "colorTextSeverityLow": {
9375
+ "light": "{colorGrey900}",
9376
+ "dark": "{colorGrey900}"
9377
+ },
9378
+ "colorBackgroundSeverityNeutral": {
9379
+ "light": "{colorGrey550}",
9380
+ "dark": "{colorGrey550}"
9381
+ },
9382
+ "colorTextSeverityNeutral": {
9383
+ "light": "{colorGrey100}",
9384
+ "dark": "{colorGrey100}"
9105
9385
  }
9106
9386
  }
9107
9387
  }
@@ -9516,6 +9796,16 @@ module.exports.preset = {
9516
9796
  "colorDropzoneBackgroundHover": "color",
9517
9797
  "colorDropzoneTextActive": "color",
9518
9798
  "colorDropzoneTextHover": "color",
9799
+ "colorBackgroundSeverityCritical": "color",
9800
+ "colorTextSeverityCritical": "color",
9801
+ "colorBackgroundSeverityHigh": "color",
9802
+ "colorTextSeverityHigh": "color",
9803
+ "colorBackgroundSeverityMedium": "color",
9804
+ "colorTextSeverityMedium": "color",
9805
+ "colorBackgroundSeverityLow": "color",
9806
+ "colorTextSeverityLow": "color",
9807
+ "colorBackgroundSeverityNeutral": "color",
9808
+ "colorTextSeverityNeutral": "color",
9519
9809
  "motionDurationExtraFast": "motion",
9520
9810
  "motionDurationExtraSlow": "motion",
9521
9811
  "motionDurationFast": "motion",
@@ -10739,6 +11029,16 @@ module.exports.preset = {
10739
11029
  "colorDropzoneBackgroundHover": "color-dropzone-background-hover",
10740
11030
  "colorDropzoneTextActive": "color-dropzone-text-active",
10741
11031
  "colorDropzoneTextHover": "color-dropzone-text-hover",
11032
+ "colorBackgroundSeverityCritical": "color-background-severity-critical",
11033
+ "colorTextSeverityCritical": "color-text-severity-critical",
11034
+ "colorBackgroundSeverityHigh": "color-background-severity-high",
11035
+ "colorTextSeverityHigh": "color-text-severity-high",
11036
+ "colorBackgroundSeverityMedium": "color-background-severity-medium",
11037
+ "colorTextSeverityMedium": "color-text-severity-medium",
11038
+ "colorBackgroundSeverityLow": "color-background-severity-low",
11039
+ "colorTextSeverityLow": "color-text-severity-low",
11040
+ "colorBackgroundSeverityNeutral": "color-background-severity-neutral",
11041
+ "colorTextSeverityNeutral": "color-text-severity-neutral",
10742
11042
  "fontBoxValueLargeWeight": "font-box-value-large-weight",
10743
11043
  "fontButtonLetterSpacing": "font-button-letter-spacing",
10744
11044
  "fontButtonWeight": "font-button-weight",
@@ -11455,6 +11755,16 @@ module.exports.preset = {
11455
11755
  "colorDropzoneBackgroundHover": "--color-dropzone-background-hover-42q8nb",
11456
11756
  "colorDropzoneTextActive": "--color-dropzone-text-active-8e1lcf",
11457
11757
  "colorDropzoneTextHover": "--color-dropzone-text-hover-4qxymq",
11758
+ "colorBackgroundSeverityCritical": "--color-background-severity-critical-idosdq",
11759
+ "colorTextSeverityCritical": "--color-text-severity-critical-85viri",
11760
+ "colorBackgroundSeverityHigh": "--color-background-severity-high-434xpy",
11761
+ "colorTextSeverityHigh": "--color-text-severity-high-uiwahw",
11762
+ "colorBackgroundSeverityMedium": "--color-background-severity-medium-n5069n",
11763
+ "colorTextSeverityMedium": "--color-text-severity-medium-t00q1o",
11764
+ "colorBackgroundSeverityLow": "--color-background-severity-low-5ab62f",
11765
+ "colorTextSeverityLow": "--color-text-severity-low-alfea6",
11766
+ "colorBackgroundSeverityNeutral": "--color-background-severity-neutral-wfgvya",
11767
+ "colorTextSeverityNeutral": "--color-text-severity-neutral-2hvk9q",
11458
11768
  "fontBoxValueLargeWeight": "--font-box-value-large-weight-onoq9k",
11459
11769
  "fontButtonLetterSpacing": "--font-button-letter-spacing-65ug0o",
11460
11770
  "fontButtonWeight": "--font-button-weight-hv56tz",
@@ -1729,6 +1729,46 @@ export var preset = {
1729
1729
  "light": "{colorBlue800}",
1730
1730
  "dark": "{colorWhite}"
1731
1731
  },
1732
+ "colorBackgroundSeverityCritical": {
1733
+ "light": "{colorChartsStatusCritical}",
1734
+ "dark": "{colorChartsStatusCritical}"
1735
+ },
1736
+ "colorTextSeverityCritical": {
1737
+ "light": "{colorGrey100}",
1738
+ "dark": "{colorBlack}"
1739
+ },
1740
+ "colorBackgroundSeverityHigh": {
1741
+ "light": "{colorChartsStatusHigh}",
1742
+ "dark": "{colorChartsStatusHigh}"
1743
+ },
1744
+ "colorTextSeverityHigh": {
1745
+ "light": "{colorGrey100}",
1746
+ "dark": "{colorGrey900}"
1747
+ },
1748
+ "colorBackgroundSeverityMedium": {
1749
+ "light": "{colorChartsStatusMedium}",
1750
+ "dark": "{colorChartsStatusMedium}"
1751
+ },
1752
+ "colorTextSeverityMedium": {
1753
+ "light": "{colorGrey900}",
1754
+ "dark": "{colorGrey900}"
1755
+ },
1756
+ "colorBackgroundSeverityLow": {
1757
+ "light": "{colorChartsStatusLow}",
1758
+ "dark": "{colorChartsStatusLow}"
1759
+ },
1760
+ "colorTextSeverityLow": {
1761
+ "light": "{colorGrey900}",
1762
+ "dark": "{colorGrey900}"
1763
+ },
1764
+ "colorBackgroundSeverityNeutral": {
1765
+ "light": "{colorGrey600}",
1766
+ "dark": "{colorGrey550}"
1767
+ },
1768
+ "colorTextSeverityNeutral": {
1769
+ "light": "{colorGrey100}",
1770
+ "dark": "{colorGrey100}"
1771
+ },
1732
1772
  "fontBoxValueLargeWeight": "700",
1733
1773
  "fontButtonLetterSpacing": "0.005em",
1734
1774
  "fontButtonWeight": "700",
@@ -3902,6 +3942,46 @@ export var preset = {
3902
3942
  "colorDropzoneTextHover": {
3903
3943
  "light": "{colorWhite}",
3904
3944
  "dark": "{colorWhite}"
3945
+ },
3946
+ "colorBackgroundSeverityCritical": {
3947
+ "light": "{colorChartsStatusCritical}",
3948
+ "dark": "{colorChartsStatusCritical}"
3949
+ },
3950
+ "colorTextSeverityCritical": {
3951
+ "light": "{colorBlack}",
3952
+ "dark": "{colorBlack}"
3953
+ },
3954
+ "colorBackgroundSeverityHigh": {
3955
+ "light": "{colorChartsStatusHigh}",
3956
+ "dark": "{colorChartsStatusHigh}"
3957
+ },
3958
+ "colorTextSeverityHigh": {
3959
+ "light": "{colorGrey900}",
3960
+ "dark": "{colorGrey900}"
3961
+ },
3962
+ "colorBackgroundSeverityMedium": {
3963
+ "light": "{colorChartsStatusMedium}",
3964
+ "dark": "{colorChartsStatusMedium}"
3965
+ },
3966
+ "colorTextSeverityMedium": {
3967
+ "light": "{colorGrey900}",
3968
+ "dark": "{colorGrey900}"
3969
+ },
3970
+ "colorBackgroundSeverityLow": {
3971
+ "light": "{colorChartsStatusLow}",
3972
+ "dark": "{colorChartsStatusLow}"
3973
+ },
3974
+ "colorTextSeverityLow": {
3975
+ "light": "{colorGrey900}",
3976
+ "dark": "{colorGrey900}"
3977
+ },
3978
+ "colorBackgroundSeverityNeutral": {
3979
+ "light": "{colorGrey550}",
3980
+ "dark": "{colorGrey550}"
3981
+ },
3982
+ "colorTextSeverityNeutral": {
3983
+ "light": "{colorGrey100}",
3984
+ "dark": "{colorGrey100}"
3905
3985
  }
3906
3986
  }
3907
3987
  },
@@ -4996,6 +5076,46 @@ export var preset = {
4996
5076
  "colorDropzoneTextHover": {
4997
5077
  "light": "{colorWhite}",
4998
5078
  "dark": "{colorWhite}"
5079
+ },
5080
+ "colorBackgroundSeverityCritical": {
5081
+ "light": "{colorChartsStatusCritical}",
5082
+ "dark": "{colorChartsStatusCritical}"
5083
+ },
5084
+ "colorTextSeverityCritical": {
5085
+ "light": "{colorBlack}",
5086
+ "dark": "{colorBlack}"
5087
+ },
5088
+ "colorBackgroundSeverityHigh": {
5089
+ "light": "{colorChartsStatusHigh}",
5090
+ "dark": "{colorChartsStatusHigh}"
5091
+ },
5092
+ "colorTextSeverityHigh": {
5093
+ "light": "{colorGrey900}",
5094
+ "dark": "{colorGrey900}"
5095
+ },
5096
+ "colorBackgroundSeverityMedium": {
5097
+ "light": "{colorChartsStatusMedium}",
5098
+ "dark": "{colorChartsStatusMedium}"
5099
+ },
5100
+ "colorTextSeverityMedium": {
5101
+ "light": "{colorGrey900}",
5102
+ "dark": "{colorGrey900}"
5103
+ },
5104
+ "colorBackgroundSeverityLow": {
5105
+ "light": "{colorChartsStatusLow}",
5106
+ "dark": "{colorChartsStatusLow}"
5107
+ },
5108
+ "colorTextSeverityLow": {
5109
+ "light": "{colorGrey900}",
5110
+ "dark": "{colorGrey900}"
5111
+ },
5112
+ "colorBackgroundSeverityNeutral": {
5113
+ "light": "{colorGrey550}",
5114
+ "dark": "{colorGrey550}"
5115
+ },
5116
+ "colorTextSeverityNeutral": {
5117
+ "light": "{colorGrey100}",
5118
+ "dark": "{colorGrey100}"
4999
5119
  }
5000
5120
  }
5001
5121
  },
@@ -6022,6 +6142,46 @@ export var preset = {
6022
6142
  "colorDropzoneTextHover": {
6023
6143
  "light": "{colorBlue800}",
6024
6144
  "dark": "{colorWhite}"
6145
+ },
6146
+ "colorBackgroundSeverityCritical": {
6147
+ "light": "{colorChartsStatusCritical}",
6148
+ "dark": "{colorChartsStatusCritical}"
6149
+ },
6150
+ "colorTextSeverityCritical": {
6151
+ "light": "{colorGrey100}",
6152
+ "dark": "{colorBlack}"
6153
+ },
6154
+ "colorBackgroundSeverityHigh": {
6155
+ "light": "{colorChartsStatusHigh}",
6156
+ "dark": "{colorChartsStatusHigh}"
6157
+ },
6158
+ "colorTextSeverityHigh": {
6159
+ "light": "{colorGrey100}",
6160
+ "dark": "{colorGrey900}"
6161
+ },
6162
+ "colorBackgroundSeverityMedium": {
6163
+ "light": "{colorChartsStatusMedium}",
6164
+ "dark": "{colorChartsStatusMedium}"
6165
+ },
6166
+ "colorTextSeverityMedium": {
6167
+ "light": "{colorGrey900}",
6168
+ "dark": "{colorGrey900}"
6169
+ },
6170
+ "colorBackgroundSeverityLow": {
6171
+ "light": "{colorChartsStatusLow}",
6172
+ "dark": "{colorChartsStatusLow}"
6173
+ },
6174
+ "colorTextSeverityLow": {
6175
+ "light": "{colorGrey900}",
6176
+ "dark": "{colorGrey900}"
6177
+ },
6178
+ "colorBackgroundSeverityNeutral": {
6179
+ "light": "{colorGrey600}",
6180
+ "dark": "{colorGrey550}"
6181
+ },
6182
+ "colorTextSeverityNeutral": {
6183
+ "light": "{colorGrey100}",
6184
+ "dark": "{colorGrey100}"
6025
6185
  }
6026
6186
  }
6027
6187
  },
@@ -7048,6 +7208,46 @@ export var preset = {
7048
7208
  "colorDropzoneTextHover": {
7049
7209
  "light": "{colorBlue800}",
7050
7210
  "dark": "{colorWhite}"
7211
+ },
7212
+ "colorBackgroundSeverityCritical": {
7213
+ "light": "{colorChartsStatusCritical}",
7214
+ "dark": "{colorChartsStatusCritical}"
7215
+ },
7216
+ "colorTextSeverityCritical": {
7217
+ "light": "{colorGrey100}",
7218
+ "dark": "{colorBlack}"
7219
+ },
7220
+ "colorBackgroundSeverityHigh": {
7221
+ "light": "{colorChartsStatusHigh}",
7222
+ "dark": "{colorChartsStatusHigh}"
7223
+ },
7224
+ "colorTextSeverityHigh": {
7225
+ "light": "{colorGrey100}",
7226
+ "dark": "{colorGrey900}"
7227
+ },
7228
+ "colorBackgroundSeverityMedium": {
7229
+ "light": "{colorChartsStatusMedium}",
7230
+ "dark": "{colorChartsStatusMedium}"
7231
+ },
7232
+ "colorTextSeverityMedium": {
7233
+ "light": "{colorGrey900}",
7234
+ "dark": "{colorGrey900}"
7235
+ },
7236
+ "colorBackgroundSeverityLow": {
7237
+ "light": "{colorChartsStatusLow}",
7238
+ "dark": "{colorChartsStatusLow}"
7239
+ },
7240
+ "colorTextSeverityLow": {
7241
+ "light": "{colorGrey900}",
7242
+ "dark": "{colorGrey900}"
7243
+ },
7244
+ "colorBackgroundSeverityNeutral": {
7245
+ "light": "{colorGrey600}",
7246
+ "dark": "{colorGrey550}"
7247
+ },
7248
+ "colorTextSeverityNeutral": {
7249
+ "light": "{colorGrey100}",
7250
+ "dark": "{colorGrey100}"
7051
7251
  }
7052
7252
  }
7053
7253
  },
@@ -8075,6 +8275,46 @@ export var preset = {
8075
8275
  "light": "{colorBlue800}",
8076
8276
  "dark": "{colorWhite}"
8077
8277
  },
8278
+ "colorBackgroundSeverityCritical": {
8279
+ "light": "{colorChartsStatusCritical}",
8280
+ "dark": "{colorChartsStatusCritical}"
8281
+ },
8282
+ "colorTextSeverityCritical": {
8283
+ "light": "{colorGrey100}",
8284
+ "dark": "{colorBlack}"
8285
+ },
8286
+ "colorBackgroundSeverityHigh": {
8287
+ "light": "{colorChartsStatusHigh}",
8288
+ "dark": "{colorChartsStatusHigh}"
8289
+ },
8290
+ "colorTextSeverityHigh": {
8291
+ "light": "{colorGrey100}",
8292
+ "dark": "{colorGrey900}"
8293
+ },
8294
+ "colorBackgroundSeverityMedium": {
8295
+ "light": "{colorChartsStatusMedium}",
8296
+ "dark": "{colorChartsStatusMedium}"
8297
+ },
8298
+ "colorTextSeverityMedium": {
8299
+ "light": "{colorGrey900}",
8300
+ "dark": "{colorGrey900}"
8301
+ },
8302
+ "colorBackgroundSeverityLow": {
8303
+ "light": "{colorChartsStatusLow}",
8304
+ "dark": "{colorChartsStatusLow}"
8305
+ },
8306
+ "colorTextSeverityLow": {
8307
+ "light": "{colorGrey900}",
8308
+ "dark": "{colorGrey900}"
8309
+ },
8310
+ "colorBackgroundSeverityNeutral": {
8311
+ "light": "{colorGrey600}",
8312
+ "dark": "{colorGrey550}"
8313
+ },
8314
+ "colorTextSeverityNeutral": {
8315
+ "light": "{colorGrey100}",
8316
+ "dark": "{colorGrey100}"
8317
+ },
8078
8318
  "fontExpandableHeadingSize": "14px",
8079
8319
  "borderDividerSectionWidth": "1px"
8080
8320
  }
@@ -9102,6 +9342,46 @@ export var preset = {
9102
9342
  "colorDropzoneTextHover": {
9103
9343
  "light": "{colorWhite}",
9104
9344
  "dark": "{colorWhite}"
9345
+ },
9346
+ "colorBackgroundSeverityCritical": {
9347
+ "light": "{colorChartsStatusCritical}",
9348
+ "dark": "{colorChartsStatusCritical}"
9349
+ },
9350
+ "colorTextSeverityCritical": {
9351
+ "light": "{colorBlack}",
9352
+ "dark": "{colorBlack}"
9353
+ },
9354
+ "colorBackgroundSeverityHigh": {
9355
+ "light": "{colorChartsStatusHigh}",
9356
+ "dark": "{colorChartsStatusHigh}"
9357
+ },
9358
+ "colorTextSeverityHigh": {
9359
+ "light": "{colorGrey900}",
9360
+ "dark": "{colorGrey900}"
9361
+ },
9362
+ "colorBackgroundSeverityMedium": {
9363
+ "light": "{colorChartsStatusMedium}",
9364
+ "dark": "{colorChartsStatusMedium}"
9365
+ },
9366
+ "colorTextSeverityMedium": {
9367
+ "light": "{colorGrey900}",
9368
+ "dark": "{colorGrey900}"
9369
+ },
9370
+ "colorBackgroundSeverityLow": {
9371
+ "light": "{colorChartsStatusLow}",
9372
+ "dark": "{colorChartsStatusLow}"
9373
+ },
9374
+ "colorTextSeverityLow": {
9375
+ "light": "{colorGrey900}",
9376
+ "dark": "{colorGrey900}"
9377
+ },
9378
+ "colorBackgroundSeverityNeutral": {
9379
+ "light": "{colorGrey550}",
9380
+ "dark": "{colorGrey550}"
9381
+ },
9382
+ "colorTextSeverityNeutral": {
9383
+ "light": "{colorGrey100}",
9384
+ "dark": "{colorGrey100}"
9105
9385
  }
9106
9386
  }
9107
9387
  }
@@ -9516,6 +9796,16 @@ export var preset = {
9516
9796
  "colorDropzoneBackgroundHover": "color",
9517
9797
  "colorDropzoneTextActive": "color",
9518
9798
  "colorDropzoneTextHover": "color",
9799
+ "colorBackgroundSeverityCritical": "color",
9800
+ "colorTextSeverityCritical": "color",
9801
+ "colorBackgroundSeverityHigh": "color",
9802
+ "colorTextSeverityHigh": "color",
9803
+ "colorBackgroundSeverityMedium": "color",
9804
+ "colorTextSeverityMedium": "color",
9805
+ "colorBackgroundSeverityLow": "color",
9806
+ "colorTextSeverityLow": "color",
9807
+ "colorBackgroundSeverityNeutral": "color",
9808
+ "colorTextSeverityNeutral": "color",
9519
9809
  "motionDurationExtraFast": "motion",
9520
9810
  "motionDurationExtraSlow": "motion",
9521
9811
  "motionDurationFast": "motion",
@@ -10739,6 +11029,16 @@ export var preset = {
10739
11029
  "colorDropzoneBackgroundHover": "color-dropzone-background-hover",
10740
11030
  "colorDropzoneTextActive": "color-dropzone-text-active",
10741
11031
  "colorDropzoneTextHover": "color-dropzone-text-hover",
11032
+ "colorBackgroundSeverityCritical": "color-background-severity-critical",
11033
+ "colorTextSeverityCritical": "color-text-severity-critical",
11034
+ "colorBackgroundSeverityHigh": "color-background-severity-high",
11035
+ "colorTextSeverityHigh": "color-text-severity-high",
11036
+ "colorBackgroundSeverityMedium": "color-background-severity-medium",
11037
+ "colorTextSeverityMedium": "color-text-severity-medium",
11038
+ "colorBackgroundSeverityLow": "color-background-severity-low",
11039
+ "colorTextSeverityLow": "color-text-severity-low",
11040
+ "colorBackgroundSeverityNeutral": "color-background-severity-neutral",
11041
+ "colorTextSeverityNeutral": "color-text-severity-neutral",
10742
11042
  "fontBoxValueLargeWeight": "font-box-value-large-weight",
10743
11043
  "fontButtonLetterSpacing": "font-button-letter-spacing",
10744
11044
  "fontButtonWeight": "font-button-weight",
@@ -11455,6 +11755,16 @@ export var preset = {
11455
11755
  "colorDropzoneBackgroundHover": "--color-dropzone-background-hover-42q8nb",
11456
11756
  "colorDropzoneTextActive": "--color-dropzone-text-active-8e1lcf",
11457
11757
  "colorDropzoneTextHover": "--color-dropzone-text-hover-4qxymq",
11758
+ "colorBackgroundSeverityCritical": "--color-background-severity-critical-idosdq",
11759
+ "colorTextSeverityCritical": "--color-text-severity-critical-85viri",
11760
+ "colorBackgroundSeverityHigh": "--color-background-severity-high-434xpy",
11761
+ "colorTextSeverityHigh": "--color-text-severity-high-uiwahw",
11762
+ "colorBackgroundSeverityMedium": "--color-background-severity-medium-n5069n",
11763
+ "colorTextSeverityMedium": "--color-text-severity-medium-t00q1o",
11764
+ "colorBackgroundSeverityLow": "--color-background-severity-low-5ab62f",
11765
+ "colorTextSeverityLow": "--color-text-severity-low-alfea6",
11766
+ "colorBackgroundSeverityNeutral": "--color-background-severity-neutral-wfgvya",
11767
+ "colorTextSeverityNeutral": "--color-text-severity-neutral-2hvk9q",
11458
11768
  "fontBoxValueLargeWeight": "--font-box-value-large-weight-onoq9k",
11459
11769
  "fontButtonLetterSpacing": "--font-button-letter-spacing-65ug0o",
11460
11770
  "fontButtonWeight": "--font-button-weight-hv56tz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudscape-design/components-themeable",
3
- "version": "3.0.750",
3
+ "version": "3.0.751",
4
4
  "files": [
5
5
  "lib"
6
6
  ],