@sebgroup/green-core 2.35.1 → 2.37.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 (39) hide show
  1. package/components/button/button.trans.styles.scss.js +1 -1
  2. package/components/calendar/calendar.trans.styles.scss.js +1 -1
  3. package/components/context-menu/context-menu.trans.styles.scss.js +1 -1
  4. package/components/datepicker/datepicker.trans.styles.scss.js +1 -1
  5. package/components/dialog/dialog.component.d.ts +22 -2
  6. package/components/dialog/dialog.component.js +104 -23
  7. package/components/formatted-text/date/date-time-formatter.js +1 -3
  8. package/components/grouped-list/grouped-list.trans.styles.scss.js +1 -1
  9. package/components/pagination/pagination.component.js +11 -8
  10. package/components/popover/popover.trans.styles.scss.js +1 -1
  11. package/components/segmented-control/segment/segment.trans.styles.scss.js +1 -1
  12. package/components/segmented-control/segmented-control.trans.styles.css.js +1 -1
  13. package/components/table/table.component.d.ts +30 -1
  14. package/components/table/table.component.js +205 -203
  15. package/components/table/table.stories.data.d.ts +33 -47
  16. package/components/table/table.stories.data.js +308 -287
  17. package/components/table/table.styles.js +196 -11
  18. package/components/table/table.types.d.ts +24 -81
  19. package/components/table/table.types.js +40 -10
  20. package/components/theme/chlorophyll-tokens.scss.js +1 -1
  21. package/custom-elements.json +21506 -21247
  22. package/gds-element.js +1 -1
  23. package/generated/mcp/components.json +1 -1
  24. package/generated/mcp/dialog/api.md +8 -4
  25. package/generated/mcp/icons.json +1 -1
  26. package/generated/mcp/index.json +1 -1
  27. package/generated/mcp/table/api.md +4 -1
  28. package/generated/react/dialog/index.d.ts +2 -1
  29. package/generated/react/index.d.ts +1 -1
  30. package/generated/react/index.js +1 -1
  31. package/generated/react/table/index.d.ts +3 -1
  32. package/package.json +1 -1
  33. package/primitives/field-base/field-base.trans.styles.scss.js +1 -1
  34. package/primitives/listbox/listbox.trans.styles.scss.js +1 -1
  35. package/primitives/listbox/option.trans.styles.scss.js +1 -1
  36. package/primitives/menu/menu-heading.trans.styles.scss.js +1 -1
  37. package/utils/helpers/custom-element-scoping.js +1 -1
  38. package/utils/helpers/id.d.ts +0 -3
  39. package/utils/helpers/id.js +6 -1
@@ -24,6 +24,7 @@ const TableStyles = css`
24
24
  --table-gap: var(--gds-sys-space-m);
25
25
  --table-border-spacing: 0 var(--gds-sys-space-5xs);
26
26
  --table-data-padding: var(--gds-sys-space-5xs) var(--gds-sys-space-4xs);
27
+ --table-data-padding-x: var(--gds-sys-space-4xs);
27
28
  }
28
29
 
29
30
  /* Comfortable default */
@@ -37,6 +38,7 @@ const TableStyles = css`
37
38
  --table-gap: var(--gds-sys-space-l);
38
39
  --table-border-spacing: 0 var(--gds-sys-space-4xs);
39
40
  --table-data-padding: var(--gds-sys-space-3xs) var(--gds-sys-space-2xs);
41
+ --table-data-padding-x: var(--gds-sys-space-2xs);
40
42
  }
41
43
 
42
44
  /* Spacious density */
@@ -50,6 +52,7 @@ const TableStyles = css`
50
52
  --table-gap: var(--gds-sys-space-xl);
51
53
  --table-border-spacing: 0 var(--gds-sys-space-3xs);
52
54
  --table-data-padding: var(--gds-sys-space-3xs) var(--gds-sys-space-xs);
55
+ --table-data-padding-x: var(--gds-sys-space-xs);
53
56
  }
54
57
 
55
58
  /* Secondary and Tertiary */
@@ -61,6 +64,7 @@ const TableStyles = css`
61
64
  --_table-row-hover: var(--gds-sys-color-l2-neutral-01);
62
65
  --_table-row-selected-hover: var(--gds-sys-color-l3-neutral-03);
63
66
  --_table-row-striped: var(--gds-sys-color-l2-neutral-01);
67
+ --_table-card-bg: var(--gds-sys-color-l1-neutral-01);
64
68
  }
65
69
 
66
70
  /* Primary variant */
@@ -75,6 +79,7 @@ const TableStyles = css`
75
79
  );
76
80
  --_table-row-selected-hover: var(--gds-sys-color-l3-neutral-03);
77
81
  --_table-row-striped: var(--gds-sys-color-l2-neutral-01);
82
+ --_table-card-bg: var(--gds-sys-color-l2-neutral-01);
78
83
  }
79
84
 
80
85
  /* Apply density variables */
@@ -360,6 +365,152 @@ const TableStyles = css`
360
365
  justify-content: flex-end;
361
366
  }
362
367
 
368
+ /* Sticky actions column */
369
+ th.actions.sticky,
370
+ td.actions-cell.sticky {
371
+ position: sticky;
372
+ right: calc(-1 * var(--table-data-padding-x, 0px));
373
+ z-index: 1;
374
+ width: max-content;
375
+ padding-right: calc(
376
+ var(--table-cell-padding-x) + var(--table-data-padding-x, 0px)
377
+ );
378
+ }
379
+
380
+ th.actions.sticky {
381
+ z-index: 2;
382
+ background: var(--_table-header-bg);
383
+ }
384
+
385
+ th.actions.sticky .column-header {
386
+ justify-content: flex-end;
387
+ }
388
+
389
+ td.actions-cell.sticky {
390
+ background: var(--_table-card-bg);
391
+ }
392
+
393
+ td.actions-cell.sticky .cell-content {
394
+ justify-content: flex-end;
395
+ position: relative;
396
+ }
397
+
398
+ /* Left gradient fade on sticky action cells */
399
+ td.actions-cell.sticky::before {
400
+ content: '';
401
+ position: absolute;
402
+ inset-block: 0;
403
+ right: 100%;
404
+ width: var(--gds-sys-space-4xl);
405
+ pointer-events: none;
406
+ background: linear-gradient(to right, transparent, var(--_table-card-bg));
407
+ }
408
+
409
+ th.actions.sticky::before {
410
+ content: '';
411
+ position: absolute;
412
+ inset-block: 0;
413
+ right: 100%;
414
+ width: var(--gds-sys-space-4xl);
415
+ pointer-events: none;
416
+ background: linear-gradient(to right, transparent, var(--_table-header-bg));
417
+ }
418
+
419
+ /* Sticky action inherits row hover/selected/striped backgrounds */
420
+ tbody tr:hover td.actions-cell.sticky {
421
+ background: var(--_table-row-hover);
422
+ }
423
+
424
+ tbody tr:hover td.actions-cell.sticky::before {
425
+ background: linear-gradient(to right, transparent, var(--_table-row-hover));
426
+ }
427
+
428
+ tbody tr.selected td.actions-cell.sticky {
429
+ background: var(--gds-sys-color-l3-neutral-02);
430
+ }
431
+
432
+ tbody tr.selected td.actions-cell.sticky::before {
433
+ background: linear-gradient(
434
+ to right,
435
+ transparent,
436
+ var(--gds-sys-color-l3-neutral-02)
437
+ );
438
+ }
439
+
440
+ .striped
441
+ tbody
442
+ tr:not(.selected, :hover):nth-child(even)
443
+ td.actions-cell.sticky {
444
+ background: var(--_table-row-striped);
445
+ }
446
+
447
+ .striped
448
+ tbody
449
+ tr:not(.selected, :hover):nth-child(even)
450
+ td.actions-cell.sticky::before {
451
+ background: linear-gradient(
452
+ to right,
453
+ transparent,
454
+ var(--_table-row-striped)
455
+ );
456
+ }
457
+
458
+ /* Table Footer Row */
459
+
460
+ tfoot.tablefoot tr td,
461
+ tfoot.tablefoot tr th[scope='row'] {
462
+ padding-block: var(--table-cell-padding-y);
463
+ padding-inline: var(--table-cell-padding-x);
464
+ background: var(--_table-header-bg);
465
+ font-weight: normal;
466
+ border-top: var(--_table-border-width) solid var(--_table-border-color);
467
+ }
468
+
469
+ tfoot.tablefoot tr th[scope='row'] {
470
+ font-weight: var(--gds-sys-text-weight-book);
471
+ }
472
+
473
+ tfoot.tablefoot tr td:first-child,
474
+ tfoot.tablefoot tr th:first-child {
475
+ border-top-left-radius: var(--gds-sys-radius-s);
476
+ border-bottom-left-radius: var(--gds-sys-radius-s);
477
+ }
478
+
479
+ tfoot.tablefoot tr td:last-child,
480
+ tfoot.tablefoot tr th:last-child {
481
+ border-top-right-radius: var(--gds-sys-radius-s);
482
+ border-bottom-right-radius: var(--gds-sys-radius-s);
483
+ }
484
+
485
+ .tablefoot-label {
486
+ font-weight: var(--gds-sys-text-weight-book);
487
+ white-space: nowrap;
488
+ }
489
+
490
+ tfoot.tablefoot.sticky {
491
+ position: sticky;
492
+ bottom: 0;
493
+ z-index: 10;
494
+ will-change: transform;
495
+ }
496
+
497
+ /* When sticky tablefoot: move padding from .data to table, keep tfoot edge-to-edge */
498
+ .data:has(tfoot.tablefoot.sticky) {
499
+ padding: 0;
500
+ }
501
+
502
+ .data:has(tfoot.tablefoot.sticky) table {
503
+ padding-top: var(--table-data-padding-x);
504
+ padding-inline: var(--table-data-padding-x);
505
+ }
506
+
507
+ tfoot.tablefoot.sticky tr td,
508
+ tfoot.tablefoot.sticky tr th[scope='row'] {
509
+ border-radius: 0;
510
+ background: var(--_table-card-bg);
511
+ border-top: var(--_table-border-width) solid var(--_table-border-color);
512
+ }
513
+
363
514
  /* Align utilities */
364
515
  td {
365
516
  height: 100%;
@@ -400,6 +551,10 @@ const TableStyles = css`
400
551
  display: contents;
401
552
  }
402
553
 
554
+ .responsive table {
555
+ max-width: 100%;
556
+ }
557
+
403
558
  .responsive thead {
404
559
  position: sticky;
405
560
  top: var(--gds-sys-space-s);
@@ -449,11 +604,21 @@ const TableStyles = css`
449
604
 
450
605
  .responsive td .column-label {
451
606
  text-align: left;
452
- margin-right: auto;
607
+ flex: 1;
608
+ min-width: 0;
453
609
  }
454
610
 
455
611
  .responsive td .cell-content {
612
+ justify-content: flex-start;
613
+ flex: 1;
614
+ width: 100%;
615
+ gap: var(--gds-sys-space-s);
616
+ }
617
+
618
+ .responsive td .cell-wrapped-content {
456
619
  flex: 1;
620
+ justify-content: flex-end;
621
+ text-align: right;
457
622
  }
458
623
 
459
624
  .responsive tr:hover,
@@ -463,7 +628,6 @@ const TableStyles = css`
463
628
  }
464
629
 
465
630
  /* Medium screens: input and dropdown side by side */
466
- /* Medium screens: side by side layout */
467
631
  @media (max-width: 760px) and (min-width: 480px) {
468
632
  .header {
469
633
  display: grid;
@@ -661,6 +825,16 @@ const TableStyles = css`
661
825
  }
662
826
  }
663
827
 
828
+ /* Sticky table footer */
829
+ tfoot.tablefoot.sticky {
830
+ background-color: var(--_table-card-bg);
831
+ }
832
+
833
+ tfoot.tablefoot.sticky tr td,
834
+ tfoot.tablefoot.sticky tr th[scope='row'] {
835
+ background: var(--_table-card-bg);
836
+ }
837
+
664
838
  /* Horizontal scroll */
665
839
  @property --_start-fade {
666
840
  syntax: '<length>';
@@ -676,18 +850,20 @@ const TableStyles = css`
676
850
 
677
851
  @keyframes scroll-fade {
678
852
  0% {
679
- --_start-fade: 0;
853
+ --_start-fade: 0px;
854
+ --_end-fade: var(--gds-sys-space-4xl);
680
855
  }
681
- 10%,
682
- 100% {
856
+ 1% {
683
857
  --_start-fade: var(--gds-sys-space-4xl);
858
+ --_end-fade: var(--gds-sys-space-4xl);
684
859
  }
685
- 0%,
686
- 90% {
860
+ 99% {
861
+ --_start-fade: var(--gds-sys-space-4xl);
687
862
  --_end-fade: var(--gds-sys-space-4xl);
688
863
  }
689
864
  100% {
690
- --_end-fade: 0;
865
+ --_start-fade: var(--gds-sys-space-4xl);
866
+ --_end-fade: 0px;
691
867
  }
692
868
  }
693
869
 
@@ -699,9 +875,18 @@ const TableStyles = css`
699
875
  #ffff var(--_start-fade) calc(100% - var(--_end-fade)),
700
876
  #0000
701
877
  );
702
- animation: scroll-fade;
703
- animation-timeline: --scroll-fade;
704
- scroll-timeline: --scroll-fade x;
878
+ animation: scroll-fade both linear;
879
+ animation-timeline: scroll(self inline);
880
+ }
881
+
882
+ /* When sticky actions are present, remove the right fade.*/
883
+ .data:has(td.actions-cell.sticky) {
884
+ mask: linear-gradient(
885
+ to right,
886
+ #0000,
887
+ #ffff var(--_start-fade),
888
+ #ffff 100%
889
+ );
705
890
  }
706
891
  }
707
892
  }
@@ -1,6 +1,3 @@
1
- import type { GdsElement } from '../../gds-element';
2
- import type { GdsBadge, GdsButton, GdsContextMenu, GdsIcon, GdsImg, GdsLink } from '../../pure';
3
- import type { AccountFormats, DateTimeFormat, NumberFormats } from '../formatted-text/formatters';
4
1
  /**
5
2
  * ============================================================================
6
3
  * TABLE TYPES
@@ -15,17 +12,17 @@ export interface Column {
15
12
  justify?: 'start' | 'center' | 'space-between' | 'end';
16
13
  visible?: boolean;
17
14
  width?: string;
18
- cell?: {
19
- lead?: Cell | Cell[];
20
- value?: Cell | Cell[];
21
- trail?: Cell | Cell[];
22
- };
23
15
  }
24
16
  export interface Actions {
25
17
  label?: string;
26
18
  align?: 'start' | 'center' | 'stretch' | 'end';
27
19
  justify?: 'start' | 'center' | 'space-between' | 'end';
28
- cell: Cell | Cell[];
20
+ width?: string;
21
+ sticky?: boolean;
22
+ }
23
+ export interface Tfoot {
24
+ label?: string;
25
+ sticky?: boolean;
29
26
  }
30
27
  export interface Row {
31
28
  [key: string]: any;
@@ -49,28 +46,26 @@ export interface Response<T> {
49
46
  rows: T[];
50
47
  total: number;
51
48
  }
49
+ /**
50
+ * Internal density configuration for the table's built-in UI controls
51
+ * (search input, column settings dropdown). Does not affect user-provided
52
+ * slot content size your own components to match the chosen density.
53
+ */
52
54
  export declare const DENSITY_CONFIG: {
53
55
  readonly compact: {
54
- readonly button: "small";
55
56
  readonly input: "small";
56
57
  readonly dropdown: "small";
57
- readonly badge: "small";
58
58
  };
59
59
  readonly comfortable: {
60
- readonly button: "small";
61
60
  readonly input: "small";
62
61
  readonly dropdown: "small";
63
- readonly badge: "small";
64
62
  };
65
63
  readonly spacious: {
66
- readonly button: "medium";
67
64
  readonly input: "large";
68
65
  readonly dropdown: "medium";
69
- readonly badge: "default";
70
66
  };
71
67
  };
72
68
  export type Density = 'comfortable' | 'compact' | 'spacious';
73
- export type DensityConfig = (typeof DENSITY_CONFIG)[Density];
74
69
  export interface CacheEntry<T> {
75
70
  rows: T[];
76
71
  total: number;
@@ -79,6 +74,15 @@ export interface CacheEntry<T> {
79
74
  export interface Cache<T> {
80
75
  [key: string]: CacheEntry<T>;
81
76
  }
77
+ export type SlotValue = {
78
+ value?: unknown;
79
+ slots: string[];
80
+ key?: string | number;
81
+ };
82
+ export declare const isSlotValue: (value: unknown) => value is SlotValue;
83
+ export declare function Slot(config: SlotValue): SlotValue;
84
+ export declare function Slot(value?: unknown, slots?: string[], key?: string | number): SlotValue;
85
+ export declare function Slot(value?: unknown, key?: string | number, slots?: string[]): SlotValue;
82
86
  export type TableActions = Actions;
83
87
  export type TableColumn = Column;
84
88
  export type TableRow = Row;
@@ -86,70 +90,9 @@ export type TableState = State;
86
90
  export type TableRequest = Request;
87
91
  export type TableResponse<T> = Response<T>;
88
92
  export type TableDensity = Density;
89
- export type TableDensityConfig = DensityConfig;
93
+ export type TableTfoot = Tfoot;
94
+ /** @deprecated Use `TableTfoot` instead */
95
+ export type TableTotals = Tfoot;
90
96
  export type TableCache<T> = Cache<T>;
91
97
  export type TableCacheEntry<T> = CacheEntry<T>;
92
- /**
93
- * ============================================================================
94
- * CELL COMPONENT TYPES
95
- * ============================================================================
96
- */
97
- type CellProps<T> = {
98
- [K in keyof T]?: T[K] | ((row: any) => T[K]);
99
- };
100
- export interface Badge extends CellProps<Pick<GdsBadge, 'variant' | 'size'>> {
101
- type: 'badge';
102
- value: string | ((row: any) => string);
103
- }
104
- export interface Image extends CellProps<Omit<GdsImg, keyof GdsElement>> {
105
- type: 'image';
106
- src: string | ((row: any) => string);
107
- }
108
- export interface Icon extends CellProps<Omit<GdsIcon, keyof GdsElement>> {
109
- type: 'icon';
110
- template: string | ((row: any) => string);
111
- }
112
- export interface Button extends CellProps<Omit<GdsButton, keyof GdsElement>> {
113
- type: 'button';
114
- template?: string | ((row: any) => string);
115
- onClick: (row: any) => void;
116
- }
117
- export interface Link extends CellProps<Omit<GdsLink, keyof GdsElement>> {
118
- type: 'link';
119
- template?: string | ((row: any) => string);
120
- onClick?: (row: any) => void;
121
- }
122
- export interface ContextMenu extends CellProps<Omit<GdsContextMenu, keyof GdsElement>> {
123
- type: 'context-menu';
124
- items: Array<{
125
- label: string | ((row: any) => string);
126
- divider?: boolean;
127
- onClick: (row: any) => void;
128
- }>;
129
- }
130
- export interface FormattedNumber {
131
- type: 'formatted-number';
132
- value: number | string | ((row: any) => number | string);
133
- locale?: string;
134
- currency?: string;
135
- decimals?: number;
136
- format?: NumberFormats;
137
- }
138
- export interface FormattedAccount {
139
- type: 'formatted-account';
140
- value: string | ((row: any) => string);
141
- format?: AccountFormats;
142
- }
143
- export interface FormattedDate {
144
- type: 'formatted-date';
145
- value: string | Date | ((row: any) => string | Date);
146
- locale?: string;
147
- format?: DateTimeFormat;
148
- }
149
- export type Cell = Image | Icon | Button | Link | Badge | ContextMenu | FormattedNumber | FormattedAccount | FormattedDate;
150
- export interface CellConfig {
151
- lead?: Cell;
152
- value?: Cell;
153
- trail?: Cell;
154
- }
155
- export {};
98
+ export type TableSlotValue = SlotValue;
@@ -1,24 +1,54 @@
1
1
  import "../../chunks/chunk.QU3DSPNU.js";
2
2
  const DENSITY_CONFIG = {
3
3
  compact: {
4
- button: "small",
5
4
  input: "small",
6
- dropdown: "small",
7
- badge: "small"
5
+ dropdown: "small"
8
6
  },
9
7
  comfortable: {
10
- button: "small",
11
8
  input: "small",
12
- dropdown: "small",
13
- badge: "small"
9
+ dropdown: "small"
14
10
  },
15
11
  spacious: {
16
- button: "medium",
17
12
  input: "large",
18
- dropdown: "medium",
19
- badge: "default"
13
+ dropdown: "medium"
20
14
  }
21
15
  };
16
+ const isSlotValue = (value) => typeof value === "object" && value !== null && Array.isArray(value.slots);
17
+ const slotPrototype = {
18
+ toString() {
19
+ return String(this.value ?? "");
20
+ },
21
+ valueOf() {
22
+ return this.value;
23
+ },
24
+ [Symbol.toPrimitive](hint) {
25
+ if (hint === "number") return Number(this.value);
26
+ return String(this.value ?? "");
27
+ }
28
+ };
29
+ function Slot(valueOrConfig, slotsOrKey = ["value"], keyOrSlots) {
30
+ if (isSlotValue(valueOrConfig)) return valueOrConfig;
31
+ let slots = ["value"];
32
+ let key;
33
+ if (Array.isArray(slotsOrKey)) {
34
+ slots = slotsOrKey;
35
+ } else if (typeof slotsOrKey === "string" || typeof slotsOrKey === "number") {
36
+ key = slotsOrKey;
37
+ }
38
+ if (Array.isArray(keyOrSlots)) {
39
+ slots = keyOrSlots;
40
+ } else if (typeof keyOrSlots === "string" || typeof keyOrSlots === "number") {
41
+ key = keyOrSlots;
42
+ }
43
+ const slotValue = Object.assign(Object.create(slotPrototype), {
44
+ value: valueOrConfig,
45
+ slots,
46
+ ...typeof key !== "undefined" ? { key } : {}
47
+ });
48
+ return slotValue;
49
+ }
22
50
  export {
23
- DENSITY_CONFIG
51
+ DENSITY_CONFIG,
52
+ Slot,
53
+ isSlotValue
24
54
  };
@@ -1,2 +1,2 @@
1
- const styles = "/**\n * Calculate the luminance for a color.\n * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests\n */\n/**\n * Calculate the contrast ratio between two colors.\n * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests\n */\n/* stylelint-disable max-nesting-depth */\n/* stylelint-enable max-nesting-depth */\n/* stylelint-disable */\n/* stylelint-enable */\n/* stylelint-disable */\n/* Mixin for adding themes,\nThemes such as dark-mode, high-contrast mode etc.\nValues for light mode are used by default.\n*/\n/* mixin for generating css variables from map with optional prefix */\n/**\n * Do not edit directly, this file was auto-generated.\n */\n/**\n * Do not edit directly, this file was auto-generated.\n */\n:host {\n display: contents;\n --gds-sys-shape-corner-none: 0;\n --gds-sys-shape-corner-small: 0.125rem;\n --gds-sys-shape-corner-medium: 0.25rem;\n --gds-sys-shape-corner-round: 50%;\n --gds-comp-checkbox-container-height: 1rem;\n --gds-comp-checkbox-container-width: 1rem;\n --gds-comp-checkbox-container-color: var(--gds-sys-color-background-primary);\n --gds-comp-checkbox-container-color-disabled: var(--gds-sys-color-base-300);\n --gds-comp-checkbox-border-color: var(--gds-sys-color-base-900);\n --gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);\n --gds-comp-checkbox-hover-border-color: var(--gds-sys-color-base-600);\n --gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base-900);\n --gds-comp-checkbox-border-color-selected: var(--gds-sys-color-text-inverted);\n --gds-comp-checkbox-border-color-focus: var(--gds-sys-color-dark-blue-2);\n}\n\n:host([color-scheme=light]) {\n --gds-ref-color-white: #ffffff;\n --gds-ref-color-black: #000000;\n --gds-ref-pallet-base000: hsl(0 0% 100%);\n --gds-ref-pallet-base100: hsl(0, 0%, 97%);\n --gds-ref-pallet-base200: hsl(0, 0%, 91%);\n --gds-ref-pallet-base300: hsl(0, 0%, 87%);\n --gds-ref-pallet-base400: hsl(0, 0%, 81%);\n --gds-ref-pallet-base500: hsl(0, 0%, 68%);\n --gds-ref-pallet-base600: hsl(0, 0%, 53%);\n --gds-ref-pallet-base700: hsl(0, 0%, 29%);\n --gds-ref-pallet-base800: hsl(0, 0%, 20%);\n --gds-ref-pallet-base900: hsl(0, 0%, 10%);\n --gds-ref-pallet-base1000: hsl(0 0% 0%);\n --gds-sys-color-blue: #41b0ee;\n --gds-sys-color-blue-dark-1: #0092e1;\n --gds-sys-color-blue-dark-2: #007ac7;\n --gds-sys-color-surface: var(--gds-ref-pallet-base000);\n --gds-sys-color-base: var(--gds-ref-pallet-base800);\n --gds-sys-color-font: var(--gds-ref-pallet-base800);\n --gds-sys-color-base-container: var(--gds-ref-pallet-base500);\n --gds-sys-color-focus-outline: var(--gds-ref-pallet-base1000);\n --gds-sys-color-blue: #41b0ee;\n --gds-sys-color-dark-blue-1: #41b0ee;\n --gds-sys-color-dark-blue-2: #007ac7;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #45b400;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffc500;\n --gds-sys-color-dark-yellow-1: #ffb400;\n --gds-sys-color-dark-yellow-2: #f8a000;\n --gds-sys-color-text-primary: #333333;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #ffffff;\n --gds-sys-color-text-link: #0062bc;\n --gds-sys-color-text-error: #9f000a;\n --gds-sys-color-text-disabled: #adadad;\n --gds-sys-color-red: #f03529;\n --gds-sys-color-dark-red-1: #d81a1a;\n --gds-sys-color-dark-red-2: #bb000c;\n --gds-sys-color-purple: #673ab6;\n --gds-sys-color-dark-purple-1: #4f2c99;\n --gds-sys-color-dark-purple-2: #3f2587;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #ffffff;\n --gds-sys-color-background-secondary: #eeeeee;\n --gds-sys-color-base-100: #f8f8f8;\n --gds-sys-color-base-200: #e9e9e9;\n --gds-sys-color-base-300: #dedede;\n --gds-sys-color-base-400: #cecece;\n --gds-sys-color-base-500: #adadad;\n --gds-sys-color-base-600: #868686;\n --gds-sys-color-base-700: #494949;\n --gds-sys-color-base-800: #333333;\n --gds-sys-color-base-900: #1a1a1a;\n --gds-sys-color-hover-10: rgba(255, 255, 255, 0.1);\n --gds-sys-color-hover-20: rgba(255, 255, 255, 0.2);\n --heading-primary-color: rgb(0, 0, 0);\n --text-primary-color: rgb(51, 51, 51);\n --text-secondary-color: rgb(134, 134, 134);\n --text-disabled-color: var(--gds-sys-color-base-600);\n --text-primary-disabled-color: var(--gds-sys-color-base-600);\n --border-color: rgba(0, 0, 0, 0.17);\n --border-secondary-color: rgba(0, 0, 0, 0.1);\n --border-disabled-color: var(--gds-sys-color-base-500);\n --border-primary-disabled-color: var(--gds-sys-color-base-500);\n --border-color-invalid: rgb(159, 0, 10);\n --border-color-valid: rgb(55, 157, 0);\n --checkbox-checkmark-disabled-color: rgb(255, 255, 255);\n --form-control-primary-bg-disabled: var(--gds-sys-color-base-200);\n --link-color-dark: rgb(51, 51, 51);\n --link-color-dark-visited: rgb(73, 73, 73);\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-primary-background: rgb(0, 122, 199);\n --intent-primary-color: #fff;\n --intent-primary-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-secondary-background: rgb(222, 222, 222);\n --intent-secondary-color: black;\n --intent-secondary-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-info-background: rgb(0, 122, 199);\n --intent-info-color: #fff;\n --intent-info-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-success-background: rgb(48.4503158901, 133.9460147801, 2.3496939396);\n --intent-success-color: #fff;\n --intent-success-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-warning-background: rgb(255, 197, 0);\n --intent-warning-color: black;\n --intent-warning-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-danger-background: rgb(159, 0, 10);\n --intent-danger-color: #fff;\n --intent-danger-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-light-background: rgb(238, 238, 238);\n --intent-light-color: black;\n --intent-light-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-dark-background: rgb(51, 51, 51);\n --intent-dark-color: #fff;\n --intent-dark-fadable-color: 255, 255, 255;\n --grey-1100: rgb(26, 26, 26);\n --grey-1000: rgb(51, 51, 51);\n --grey-900: rgb(73, 73, 73);\n --grey-800: rgb(134, 134, 134);\n --grey-700: rgb(173, 173, 173);\n --grey-600: rgb(206, 206, 206);\n --grey-500: rgb(222, 222, 222);\n --grey-400: rgb(233, 233, 233);\n --grey-300: rgb(238, 238, 238);\n --grey-200: rgb(248, 248, 248);\n --grey-100: rgb(255, 255, 255);\n color: var(--text-primary-color);\n --gds-sys-outline-color: #333333;\n --gds-comp-chips-fr-color: #333333;\n --gds-comp-chips-bg-color: #ffffff;\n --gds-comp-chips-br-color: #333333;\n --gds-comp-chips-fr-color-hover: #ffffff;\n --gds-comp-chips-bg-color-hover: #494949;\n --gds-comp-chips-br-color-hover: #494949;\n --gds-comp-chips-bg-color-active: #333333;\n --gds-comp-chips-bg-color-action: #333333;\n /* generate css variables */\n --sg-z-index-datepicker: 995;\n --sg-z-index-dropdown-backdrop: 990;\n --sg-z-index-dropdown: 2000;\n --sg-z-index-sticky: 1020;\n --sg-z-index-fixed: 1030;\n --sg-z-index-modal-backdrop: 1040;\n --sg-z-index-modal: 1050;\n --sg-z-index-popover: 1060;\n --sg-z-index-tooltip: 1070;\n --sg-text-primary: #333333;\n --sg-text-secondary: #333333;\n --sg-form-control-bg: #fff;\n --sg-form-control-bg-disabled: #eeeeee;\n --sg-border-color: var(--gds-sys-color-base-600);\n --sg-border-width: 1px;\n --sg-border-width-50: 0.5px;\n --sg-border-radius: 0.25rem;\n --sg-hsl-contrast: 0deg, 0%, 0%;\n --sg-hsl-light: 0deg, 0%, 97.2549019608%;\n --sg-hsl-light-contrast: 0deg, 0%, 0%;\n --sg-hsl-dark: 0deg, 0%, 10.1960784314%;\n --sg-hsl-dark-contrast: 0deg, 0%, 100%;\n --sg-hsl-black: 0deg, 0%, 0%;\n --sg-hsl-white: 0deg, 0%, 100%;\n --sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;\n --sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;\n --sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;\n --sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;\n --sg-hsl-green-1: 97deg, 100%, 35.2941176471%;\n --sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;\n --sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;\n --sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;\n --sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;\n --sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;\n --sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;\n --sg-grey-100: #f8f8f8;\n --sg-grey-200: #e9e9e9;\n --sg-grey-300: #dedede;\n --sg-grey-400: #cecece;\n --sg-grey-500: #adadad;\n --sg-grey-600: #868686;\n --sg-grey-700: #494949;\n --sg-grey-800: #333333;\n --sg-grey-900: #1a1a1a;\n --sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;\n --sg-intent-neutral-hsl-contrast: 0deg, 0%, 0%;\n --sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;\n --sg-intent-info-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-intent-success-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;\n --sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;\n --sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;\n --sg-hsl-disabled-background: 0deg, 0%, 97.2549019608%;\n --sg-hsl-disabled-color: 0deg, 0%, 67.8431372549%;\n --sg-bg-level-0: #eeeeee;\n --sg-bg-level-1: #fff;\n --sg-bg-level-2: #fff;\n --sg-bg-level-3: #fff;\n --sg-table-header-background: #1a1a1a;\n --sg-table-header-color: #fff;\n --sg-table-cell-padding-x: 0.5rem;\n --sg-table-cell-padding-y: 0.6875rem;\n --sg-table-border-width: 1px;\n --sg-table-border-color: var(--gds-sys-color-base-600);\n --sg-table-sort-icon-color: var(--gds-sys-color-base-600);\n --sg-table-sort-icon-color-active: #fff;\n --sg-skeleton-loader-highlight-color: #dedede;\n --sg-skeleton-loader-background-color: #f8f8f8;\n --sg-modal-background: #fff;\n --sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);\n --sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-popover-background: #fff;\n --sg-popover-border-color: #007ac7;\n --sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-card-background: #fff;\n --sg-card-heading-color: #333333;\n --sg-card-color: #333333;\n --sg-card-border: solid 1px #fff;\n --sg-card-border-radius: 4px;\n --gds-sys-color-blue: #41b0ee;\n --gds-sys-color-dark-blue-1: #0092e1;\n --gds-sys-color-dark-blue-2: #007ac7;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #45b400;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffc500;\n --gds-sys-color-dark-yellow-1: #ffb400;\n --gds-sys-color-dark-yellow-2: #f8a000;\n --gds-sys-color-text-primary: #333333;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #ffffff;\n --gds-sys-color-text-link: #0062bc;\n --gds-sys-color-text-error: #9f000a;\n --gds-sys-color-text-disabled: #adadad;\n --gds-sys-color-red: #f03529;\n --gds-sys-color-dark-red-1: #d81a1a;\n --gds-sys-color-dark-red-2: #bb000c;\n --gds-sys-color-purple: #673ab6;\n --gds-sys-color-dark-purple-1: #4f2c99;\n --gds-sys-color-dark-purple-2: #3f2587;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #ffffff;\n --gds-sys-color-background-secondary: #eeeeee;\n --gds-sys-color-base-100: #f8f8f8;\n --gds-sys-color-base-200: #e9e9e9;\n --gds-sys-color-base-300: #dedede;\n --gds-sys-color-base-400: #cecece;\n --gds-sys-color-base-500: #adadad;\n --gds-sys-color-base-600: #868686;\n --gds-sys-color-base-700: #494949;\n --gds-sys-color-base-800: #333333;\n --gds-sys-color-base-900: #1a1a1a;\n --gds-sys-color-hover-10: rgba(255, 255, 255, 0.1);\n --gds-sys-color-hover-20: rgba(255, 255, 255, 0.2);\n}\n\n/* force dark mode */\n:host([color-scheme=dark]) {\n --heading-primary-color: rgb(255, 255, 255);\n --text-primary-color: rgba(255, 255, 255, 0.9);\n --text-secondary-color: rgba(255, 255, 255, 0.6);\n --text-disabled-color: rgba(255, 255, 255, 0.07);\n --text-primary-disabled-color: rgba(255, 255, 255, 0.07);\n --border-color: rgb(51, 51, 51);\n --border-secondary-color: rgb(51, 51, 51);\n --border-disabled-color: rgb(44, 44, 44);\n --border-primary-disabled-color: rgb(44, 44, 44);\n --border-color-invalid: rgb(255, 89, 79);\n --border-color-valid: rgb(48, 136, 0);\n --checkbox-checkmark-disabled-color: rgb(51, 51, 51);\n --link-color-dark: rgb(179, 179, 179);\n --link-color-dark-visited: rgb(171, 171, 171);\n --form-control-primary-bg-disabled: rgba(255, 255, 255, 0.02);\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-primary-background: rgb(44, 156, 217);\n --intent-primary-color: #000;\n --intent-primary-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-secondary-background: rgb(51, 51, 51);\n --intent-secondary-color: #fff;\n --intent-secondary-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-info-background: rgb(44, 156, 217);\n --intent-info-color: #000;\n --intent-info-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-success-background: rgb(48, 136, 0);\n --intent-success-color: #000;\n --intent-success-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-warning-background: rgb(255, 225, 130);\n --intent-warning-color: #000;\n --intent-warning-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-danger-background: rgb(255, 89, 79);\n --intent-danger-color: #000;\n --intent-danger-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-light-background: rgb(39, 39, 39);\n --intent-light-color: #fff;\n --intent-light-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-dark-background: rgb(171, 171, 171);\n --intent-dark-color: #000;\n --intent-dark-fadable-color: 0, 0, 0;\n --grey-100: rgb(18, 18, 18);\n --grey-200: rgb(34, 34, 34);\n --grey-300: rgb(39, 39, 39);\n --grey-400: rgb(44, 44, 44);\n --grey-500: rgb(51, 51, 51);\n --grey-600: rgb(60, 60, 60);\n --grey-700: rgb(67, 67, 67);\n --grey-800: rgb(73, 73, 73);\n --grey-900: rgb(117, 117, 117);\n --grey-1000: rgb(171, 171, 171);\n --grey-1100: rgb(179, 179, 179);\n color: var(--text-primary-color);\n --gds-sys-outline-color: hsla(0, 0%, 87%, 0.2);\n --gds-comp-chips-fr-color: #dedede;\n --gds-comp-chips-bg-color: #2c2c2c;\n --gds-comp-chips-br-color: #2c2c2c;\n --gds-comp-chips-fr-color-hover: #dedede;\n --gds-comp-chips-bg-color-hover: #2c2c2c;\n --gds-comp-chips-br-color-hover: hsla(0, 0%, 87%, 0.2);\n --gds-comp-chips-bg-color-active: #222222;\n --gds-comp-chips-bg-color-action: #2c2c2c;\n --gds-sys-color-focus-outline: white;\n --gds-sys-color-font: var(--gds-sys-color-base-300);\n /* generate css variables */\n --sg-z-index-datepicker: 995;\n --sg-z-index-dropdown-backdrop: 990;\n --sg-z-index-dropdown: 2000;\n --sg-z-index-sticky: 1020;\n --sg-z-index-fixed: 1030;\n --sg-z-index-modal-backdrop: 1040;\n --sg-z-index-modal: 1050;\n --sg-z-index-popover: 1060;\n --sg-z-index-tooltip: 1070;\n --sg-text-primary: #dedede;\n --sg-text-secondary: #ababab;\n --sg-form-control-bg: rgba(0, 0, 0, 0.1);\n --sg-form-control-bg-disabled: rgba(255, 255, 255, 0.02);\n --sg-border-color: #ababab;\n --sg-border-width: 1px;\n --sg-border-width-50: 0.5px;\n --sg-border-radius: 0.25rem;\n --sg-hsl-contrast: 0deg, 0%, 100%;\n --sg-hsl-light: 0deg, 0%, 87.0588235294%;\n --sg-hsl-light-contrast: 0deg, 0%, 0%;\n --sg-hsl-dark: 0deg, 0%, 7.0588235294%;\n --sg-hsl-dark-contrast: 0deg, 0%, 100%;\n --sg-hsl-black: 0deg, 0%, 0%;\n --sg-hsl-white: 0deg, 0%, 100%;\n --sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;\n --sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;\n --sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;\n --sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;\n --sg-hsl-green-1: 97deg, 100%, 35.2941176471%;\n --sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;\n --sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;\n --sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;\n --sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;\n --sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;\n --sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;\n --sg-grey-100: #dedede;\n --sg-grey-200: #ababab;\n --sg-grey-300: #757575;\n --sg-grey-400: #494949;\n --sg-grey-500: #333333;\n --sg-grey-600: #2c2c2c;\n --sg-grey-700: #272727;\n --sg-grey-800: #222222;\n --sg-grey-900: #121212;\n --sg-intent-neutral-hsl: 0deg, 0%, 20%;\n --sg-intent-neutral-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;\n --sg-intent-info-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-intent-success-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;\n --sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;\n --sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;\n --sg-hsl-disabled-background: 0deg, 0%, 20%;\n --sg-hsl-disabled-color: 0deg, 0%, 45.8823529412%;\n --sg-bg-level-0: #121212;\n --sg-bg-level-1: #222222;\n --sg-bg-level-2: #272727;\n --sg-bg-level-3: #2c2c2c;\n --sg-table-header-background: #121212;\n --sg-table-header-color: #fff;\n --sg-table-cell-padding-x: 0.5rem;\n --sg-table-cell-padding-y: 0.6875rem;\n --sg-table-border-width: 1px;\n --sg-table-border-color: #ababab;\n --sg-table-sort-icon-color: #ababab;\n --sg-table-sort-icon-color-active: #fff;\n --sg-skeleton-loader-highlight-color: #494949;\n --sg-skeleton-loader-background-color: #2c2c2c;\n --sg-modal-background: #272727;\n --sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);\n --sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-popover-background: #222222;\n --sg-popover-border-color: #007ac7;\n --sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-card-background: #222222;\n --sg-card-heading-color: #dedede;\n --sg-card-color: #dedede;\n --sg-card-border: solid 1px #222222;\n --sg-card-border-radius: 4px;\n --gds-sys-color-blue: #58b8ee;\n --gds-sys-color-dark-blue-1: #00adff;\n --gds-sys-color-dark-blue-2: #2c9cd9;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #75b44a;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffe182;\n --gds-sys-color-dark-yellow-1: #f0be47;\n --gds-sys-color-dark-yellow-2: #ebab39;\n --gds-sys-color-text-primary: #dedede;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #333333;\n --gds-sys-color-text-link: #2c9cd9;\n --gds-sys-color-text-error: #ff594f;\n --gds-sys-color-text-disabled: #464646;\n --gds-sys-color-red: #f7706d;\n --gds-sys-color-dark-red-1: #c82a29;\n --gds-sys-color-dark-red-2: #9e2120;\n --gds-sys-color-purple: #ad91dc;\n --gds-sys-color-dark-purple-1: #7e52cc;\n --gds-sys-color-dark-purple-2: #4a328f;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #222222;\n --gds-sys-color-background-secondary: #1a1a1a;\n --gds-sys-color-base-100: #121212;\n --gds-sys-color-base-200: #222222;\n --gds-sys-color-base-300: #272727;\n --gds-sys-color-base-400: #2c2c2c;\n --gds-sys-color-base-500: #333333;\n --gds-sys-color-base-600: #494949;\n --gds-sys-color-base-700: #757575;\n --gds-sys-color-base-800: #ababab;\n --gds-sys-color-base-900: #dedede;\n --gds-sys-color-hover-10: rgba(0, 0, 0, 0.1);\n --gds-sys-color-hover-20: rgba(0, 0, 0, 0.2);\n}\n\n/* use preferred color scheme */\n@media (prefers-color-scheme: dark) {\n :host,\n :host([color-scheme=auto]) {\n --heading-primary-color: rgb(255, 255, 255);\n --text-primary-color: rgba(255, 255, 255, 0.9);\n --text-secondary-color: rgba(255, 255, 255, 0.6);\n --text-disabled-color: rgba(255, 255, 255, 0.07);\n --text-primary-disabled-color: rgba(255, 255, 255, 0.07);\n --border-color: rgb(51, 51, 51);\n --border-secondary-color: rgb(51, 51, 51);\n --border-disabled-color: rgb(44, 44, 44);\n --border-primary-disabled-color: rgb(44, 44, 44);\n --border-color-invalid: rgb(255, 89, 79);\n --border-color-valid: rgb(48, 136, 0);\n --checkbox-checkmark-disabled-color: rgb(51, 51, 51);\n --link-color-dark: rgb(179, 179, 179);\n --link-color-dark-visited: rgb(171, 171, 171);\n --form-control-primary-bg-disabled: rgba(255, 255, 255, 0.02);\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-primary-background: rgb(44, 156, 217);\n --intent-primary-color: #000;\n --intent-primary-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-secondary-background: rgb(51, 51, 51);\n --intent-secondary-color: #fff;\n --intent-secondary-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-info-background: rgb(44, 156, 217);\n --intent-info-color: #000;\n --intent-info-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-success-background: rgb(48, 136, 0);\n --intent-success-color: #000;\n --intent-success-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-warning-background: rgb(255, 225, 130);\n --intent-warning-color: #000;\n --intent-warning-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-danger-background: rgb(255, 89, 79);\n --intent-danger-color: #000;\n --intent-danger-fadable-color: 0, 0, 0;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-light-background: rgb(39, 39, 39);\n --intent-light-color: #fff;\n --intent-light-fadable-color: 255, 255, 255;\n /* try and adjust colors to get desired color combination,\n in this case adjust background to go with white foreground */\n --intent-dark-background: rgb(171, 171, 171);\n --intent-dark-color: #000;\n --intent-dark-fadable-color: 0, 0, 0;\n --grey-100: rgb(18, 18, 18);\n --grey-200: rgb(34, 34, 34);\n --grey-300: rgb(39, 39, 39);\n --grey-400: rgb(44, 44, 44);\n --grey-500: rgb(51, 51, 51);\n --grey-600: rgb(60, 60, 60);\n --grey-700: rgb(67, 67, 67);\n --grey-800: rgb(73, 73, 73);\n --grey-900: rgb(117, 117, 117);\n --grey-1000: rgb(171, 171, 171);\n --grey-1100: rgb(179, 179, 179);\n color: var(--text-primary-color);\n --gds-sys-outline-color: hsla(0, 0%, 87%, 0.2);\n --gds-comp-chips-fr-color: #dedede;\n --gds-comp-chips-bg-color: #2c2c2c;\n --gds-comp-chips-br-color: #2c2c2c;\n --gds-comp-chips-fr-color-hover: #dedede;\n --gds-comp-chips-bg-color-hover: #2c2c2c;\n --gds-comp-chips-br-color-hover: hsla(0, 0%, 87%, 0.2);\n --gds-comp-chips-bg-color-active: #222222;\n --gds-comp-chips-bg-color-action: #2c2c2c;\n --gds-sys-color-focus-outline: white;\n --gds-sys-color-font: var(--gds-sys-color-base-300);\n /* generate css variables */\n --sg-z-index-datepicker: 995;\n --sg-z-index-dropdown-backdrop: 990;\n --sg-z-index-dropdown: 2000;\n --sg-z-index-sticky: 1020;\n --sg-z-index-fixed: 1030;\n --sg-z-index-modal-backdrop: 1040;\n --sg-z-index-modal: 1050;\n --sg-z-index-popover: 1060;\n --sg-z-index-tooltip: 1070;\n --sg-text-primary: #dedede;\n --sg-text-secondary: #ababab;\n --sg-form-control-bg: rgba(0, 0, 0, 0.1);\n --sg-form-control-bg-disabled: rgba(255, 255, 255, 0.02);\n --sg-border-color: #ababab;\n --sg-border-width: 1px;\n --sg-border-width-50: 0.5px;\n --sg-border-radius: 0.25rem;\n --sg-hsl-contrast: 0deg, 0%, 100%;\n --sg-hsl-light: 0deg, 0%, 87.0588235294%;\n --sg-hsl-light-contrast: 0deg, 0%, 0%;\n --sg-hsl-dark: 0deg, 0%, 7.0588235294%;\n --sg-hsl-dark-contrast: 0deg, 0%, 100%;\n --sg-hsl-black: 0deg, 0%, 0%;\n --sg-hsl-white: 0deg, 0%, 100%;\n --sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;\n --sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;\n --sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;\n --sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;\n --sg-hsl-green-1: 97deg, 100%, 35.2941176471%;\n --sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;\n --sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;\n --sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;\n --sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;\n --sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;\n --sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;\n --sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;\n --sg-grey-100: #dedede;\n --sg-grey-200: #ababab;\n --sg-grey-300: #757575;\n --sg-grey-400: #494949;\n --sg-grey-500: #333333;\n --sg-grey-600: #2c2c2c;\n --sg-grey-700: #272727;\n --sg-grey-800: #222222;\n --sg-grey-900: #121212;\n --sg-intent-neutral-hsl: 0deg, 0%, 20%;\n --sg-intent-neutral-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;\n --sg-intent-info-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;\n --sg-intent-success-hsl-contrast: 0deg, 0%, 100%;\n --sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;\n --sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;\n --sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;\n --sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;\n --sg-hsl-disabled-background: 0deg, 0%, 20%;\n --sg-hsl-disabled-color: 0deg, 0%, 45.8823529412%;\n --sg-bg-level-0: #121212;\n --sg-bg-level-1: #222222;\n --sg-bg-level-2: #272727;\n --sg-bg-level-3: #2c2c2c;\n --sg-table-header-background: #121212;\n --sg-table-header-color: #fff;\n --sg-table-cell-padding-x: 0.5rem;\n --sg-table-cell-padding-y: 0.6875rem;\n --sg-table-border-width: 1px;\n --sg-table-border-color: #ababab;\n --sg-table-sort-icon-color: #ababab;\n --sg-table-sort-icon-color-active: #fff;\n --sg-skeleton-loader-highlight-color: #494949;\n --sg-skeleton-loader-background-color: #2c2c2c;\n --sg-modal-background: #272727;\n --sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);\n --sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-popover-background: #222222;\n --sg-popover-border-color: #007ac7;\n --sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);\n --sg-card-background: #222222;\n --sg-card-heading-color: #dedede;\n --sg-card-color: #dedede;\n --sg-card-border: solid 1px #222222;\n --sg-card-border-radius: 4px;\n }\n}";
1
+ const styles = "/**\n * Do not edit directly\n * Generated on Thu, 06 Feb 2025 18:59:50 GMT\n */\n/**\n * Do not edit directly\n * Generated on Thu, 06 Feb 2025 18:59:50 GMT\n */\n:host {\n display: contents;\n --gds-sys-shape-corner-none: 0;\n --gds-sys-shape-corner-small: 0.125rem;\n --gds-sys-shape-corner-medium: 0.25rem;\n --gds-sys-shape-corner-round: 50%;\n}\n\n:host([color-scheme=light]) {\n --gds-sys-color-blue: #41b0ee;\n --gds-sys-color-dark-blue-1: #0092e1;\n --gds-sys-color-dark-blue-2: #007ac7;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #45b400;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffc500;\n --gds-sys-color-dark-yellow-1: #ffb400;\n --gds-sys-color-dark-yellow-2: #f8a000;\n --gds-sys-color-text-primary: #333333;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #ffffff;\n --gds-sys-color-text-link: #0062bc;\n --gds-sys-color-text-error: #9f000a;\n --gds-sys-color-text-disabled: #adadad;\n --gds-sys-color-red: #f03529;\n --gds-sys-color-dark-red-1: #d81a1a;\n --gds-sys-color-dark-red-2: #bb000c;\n --gds-sys-color-purple: #673ab6;\n --gds-sys-color-dark-purple-1: #4f2C99;\n --gds-sys-color-dark-purple-2: #3f2587;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #ffffff;\n --gds-sys-color-background-secondary: #eeeeee;\n --gds-sys-color-base-100: #f8f8f8;\n --gds-sys-color-base-200: #e9e9e9;\n --gds-sys-color-base-300: #dedede;\n --gds-sys-color-base-400: #cecece;\n --gds-sys-color-base-500: #adadad;\n --gds-sys-color-base-600: #868686;\n --gds-sys-color-base-700: #494949;\n --gds-sys-color-base-800: #333333;\n --gds-sys-color-base-900: #1a1a1a;\n --gds-sys-color-hover-10: rgba(255, 255, 255, 0.1);\n --gds-sys-color-hover-20: rgba(255, 255, 255, 0.2);\n}\n\n/* force dark mode */\n:host([color-scheme=dark]) {\n --gds-sys-color-blue: #58b8ee;\n --gds-sys-color-dark-blue-1: #58b8ee;\n --gds-sys-color-dark-blue-2: #2c9cd9;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #75b44a;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffe182;\n --gds-sys-color-dark-yellow-1: #f0be47;\n --gds-sys-color-dark-yellow-2: #ebab39;\n --gds-sys-color-text-primary: #dedede;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #333333;\n --gds-sys-color-text-link: #2c9cd9;\n --gds-sys-color-text-error: #ff594f;\n --gds-sys-color-text-disabled: #464646;\n --gds-sys-color-red: #f7706d;\n --gds-sys-color-dark-red-1: #c82a29;\n --gds-sys-color-dark-red-2: #9e2120;\n --gds-sys-color-purple: #ad91dc;\n --gds-sys-color-dark-purple-1: #7e52cc;\n --gds-sys-color-dark-purple-2: #4a328f;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #222222;\n --gds-sys-color-background-secondary: #1a1a1a;\n --gds-sys-color-base-100: #121212;\n --gds-sys-color-base-200: #222222;\n --gds-sys-color-base-300: #272727;\n --gds-sys-color-base-400: #2c2c2c;\n --gds-sys-color-base-500: #333333;\n --gds-sys-color-base-600: #494949;\n --gds-sys-color-base-700: #757575;\n --gds-sys-color-base-800: #ababab;\n --gds-sys-color-base-900: #dedede;\n --gds-sys-color-hover-10: rgba(0, 0, 0, 0.1);\n --gds-sys-color-hover-20: rgba(0, 0, 0, 0.2);\n}\n\n/* use preferred color scheme */\n@media (prefers-color-scheme: dark) {\n :host,\n :host([color-scheme=auto]) {\n --gds-sys-color-blue: #58b8ee;\n --gds-sys-color-dark-blue-1: #58b8ee;\n --gds-sys-color-dark-blue-2: #2c9cd9;\n --gds-sys-color-green: #60cd18;\n --gds-sys-color-dark-green-1: #75b44a;\n --gds-sys-color-dark-green-2: #308800;\n --gds-sys-color-yellow: #ffe182;\n --gds-sys-color-dark-yellow-1: #f0be47;\n --gds-sys-color-dark-yellow-2: #ebab39;\n --gds-sys-color-text-primary: #dedede;\n --gds-sys-color-text-secondary: #ababab;\n --gds-sys-color-text-white: #ffffff;\n --gds-sys-color-text-black: #333333;\n --gds-sys-color-text-inverted: #333333;\n --gds-sys-color-text-link: #2c9cd9;\n --gds-sys-color-text-error: #ff594f;\n --gds-sys-color-text-disabled: #464646;\n --gds-sys-color-red: #f7706d;\n --gds-sys-color-dark-red-1: #c82a29;\n --gds-sys-color-dark-red-2: #9e2120;\n --gds-sys-color-purple: #ad91dc;\n --gds-sys-color-dark-purple-1: #7e52cc;\n --gds-sys-color-dark-purple-2: #4a328f;\n --gds-sys-color-white: #ffffff;\n --gds-sys-color-black: #000000;\n --gds-sys-color-background-primary: #222222;\n --gds-sys-color-background-secondary: #1a1a1a;\n --gds-sys-color-base-100: #121212;\n --gds-sys-color-base-200: #222222;\n --gds-sys-color-base-300: #272727;\n --gds-sys-color-base-400: #2c2c2c;\n --gds-sys-color-base-500: #333333;\n --gds-sys-color-base-600: #494949;\n --gds-sys-color-base-700: #757575;\n --gds-sys-color-base-800: #ababab;\n --gds-sys-color-base-900: #dedede;\n --gds-sys-color-hover-10: rgba(0, 0, 0, 0.1);\n --gds-sys-color-hover-20: rgba(0, 0, 0, 0.2);\n }\n}";
2
2
  export default styles;