@gitlab/ui 86.8.0 → 86.9.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.
@@ -11571,6 +11571,59 @@
11571
11571
  }
11572
11572
  }
11573
11573
  },
11574
+ "table": {
11575
+ "row": {
11576
+ "background": {
11577
+ "color": {
11578
+ "hover": {
11579
+ "value": "#fbfafd",
11580
+ "$type": "color",
11581
+ "comment": "Used for the background of a table row in hover state.",
11582
+ "filePath": "src/tokens/contextual/table.tokens.json",
11583
+ "isSource": true,
11584
+ "original": {
11585
+ "value": "{background.color.subtle}",
11586
+ "$type": "color",
11587
+ "comment": "Used for the background of a table row in hover state."
11588
+ },
11589
+ "name": "TABLE_ROW_BACKGROUND_COLOR_HOVER",
11590
+ "attributes": {},
11591
+ "path": [
11592
+ "table",
11593
+ "row",
11594
+ "background",
11595
+ "color",
11596
+ "hover"
11597
+ ]
11598
+ }
11599
+ }
11600
+ }
11601
+ },
11602
+ "sorting": {
11603
+ "icon": {
11604
+ "color": {
11605
+ "value": "#1f1e24",
11606
+ "$type": "color",
11607
+ "comment": "Used for the color of the sorting icons in the column headers.",
11608
+ "filePath": "src/tokens/contextual/table.tokens.json",
11609
+ "isSource": true,
11610
+ "original": {
11611
+ "value": "{text.color.heading}",
11612
+ "$type": "color",
11613
+ "comment": "Used for the color of the sorting icons in the column headers."
11614
+ },
11615
+ "name": "TABLE_SORTING_ICON_COLOR",
11616
+ "attributes": {},
11617
+ "path": [
11618
+ "table",
11619
+ "sorting",
11620
+ "icon",
11621
+ "color"
11622
+ ]
11623
+ }
11624
+ }
11625
+ }
11626
+ },
11574
11627
  "control": {
11575
11628
  "background": {
11576
11629
  "color": {
@@ -670,3 +670,5 @@ $gl-action-text-color-disabled: $gl-color-neutral-400; // Used for the text of a
670
670
  $gl-action-border-color-disabled: $gl-color-neutral-800; // Used for the border of a disabled action.
671
671
  $gl-action-background-color-disabled: $gl-color-neutral-900; // Used for the background of a disabled action.
672
672
  $gl-focus-ring-inner-color: $gl-background-color-default; // Used for the inner neutral portion of the focus ring.
673
+ $gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
674
+ $gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
@@ -670,3 +670,5 @@ $gl-action-text-color-disabled: $gl-color-neutral-500; // Used for the text of a
670
670
  $gl-action-border-color-disabled: $gl-color-neutral-100; // Used for the border of a disabled action.
671
671
  $gl-action-background-color-disabled: $gl-color-neutral-50; // Used for the background of a disabled action.
672
672
  $gl-focus-ring-inner-color: $gl-background-color-default; // Used for the inner neutral portion of the focus ring.
673
+ $gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
674
+ $gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
@@ -529,6 +529,8 @@ $gl-spinner-track-color-default: var(--gl-spinner-track-color-default);
529
529
  $gl-spinner-track-color-light: var(--gl-spinner-track-color-light);
530
530
  $gl-spinner-segment-color-default: var(--gl-spinner-segment-color-default);
531
531
  $gl-spinner-segment-color-light: var(--gl-spinner-segment-color-light);
532
+ $gl-table-row-background-color-hover: var(--gl-table-row-background-color-hover);
533
+ $gl-table-sorting-icon-color: var(--gl-table-sorting-icon-color);
532
534
  $gl-control-background-color-default: var(--gl-control-background-color-default);
533
535
  $gl-control-background-color-disabled: var(--gl-control-background-color-disabled);
534
536
  $gl-control-background-color-selected-default: var(--gl-control-background-color-selected-default);
@@ -0,0 +1,24 @@
1
+ {
2
+ "table": {
3
+ "row": {
4
+ "background": {
5
+ "color": {
6
+ "hover": {
7
+ "$value": "{background.color.subtle}",
8
+ "$type": "color",
9
+ "$description": "Used for the background of a table row in hover state."
10
+ }
11
+ }
12
+ }
13
+ },
14
+ "sorting": {
15
+ "icon": {
16
+ "color": {
17
+ "$value": "{text.color.heading}",
18
+ "$type": "color",
19
+ "$description": "Used for the color of the sorting icons in the column headers."
20
+ }
21
+ }
22
+ }
23
+ }
24
+ }