@gitlab/ui 85.9.0 → 85.10.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 (48) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/components/base/datepicker/datepicker.js +1 -1
  3. package/dist/components/base/popover/popover.js +1 -1
  4. package/dist/components/base/search_box_by_click/search_box_by_click.js +1 -1
  5. package/dist/components/base/table/table.js +1 -1
  6. package/dist/components/base/token_selector/token_selector.js +1 -1
  7. package/dist/components/charts/single_stat/single_stat.js +1 -1
  8. package/dist/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.js +1 -1
  9. package/dist/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.js +1 -1
  10. package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +3 -3
  11. package/dist/components/experimental/duo/chat/duo_chat.js +2 -2
  12. package/dist/index.css +2 -2
  13. package/dist/index.css.map +1 -1
  14. package/dist/tokens/build/js/tokens.dark.js +35 -1
  15. package/dist/tokens/build/js/tokens.js +35 -1
  16. package/dist/tokens/css/tokens.css +34 -0
  17. package/dist/tokens/css/tokens.dark.css +34 -0
  18. package/dist/tokens/js/tokens.dark.js +34 -0
  19. package/dist/tokens/js/tokens.js +34 -0
  20. package/dist/tokens/json/tokens.dark.json +853 -0
  21. package/dist/tokens/json/tokens.json +853 -0
  22. package/dist/tokens/scss/_tokens.dark.scss +34 -0
  23. package/dist/tokens/scss/_tokens.scss +34 -0
  24. package/dist/tokens/scss/_tokens_custom_properties.scss +34 -0
  25. package/package.json +5 -4
  26. package/src/components/base/datepicker/datepicker.vue +1 -1
  27. package/src/components/base/form/form_fields/validators.js +1 -1
  28. package/src/components/base/popover/popover.vue +1 -1
  29. package/src/components/base/search_box_by_click/search_box_by_click.vue +1 -1
  30. package/src/components/base/skeleton_loader/skeleton_loader.scss +2 -2
  31. package/src/components/base/table/table.vue +1 -1
  32. package/src/components/base/token_selector/token_selector.vue +1 -1
  33. package/src/components/charts/single_stat/single_stat.vue +1 -1
  34. package/src/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.vue +1 -1
  35. package/src/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.vue +1 -1
  36. package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +3 -3
  37. package/src/components/experimental/duo/chat/duo_chat.vue +8 -8
  38. package/src/tokens/action.tokens.json +277 -0
  39. package/src/tokens/build/css/tokens.css +34 -0
  40. package/src/tokens/build/css/tokens.dark.css +34 -0
  41. package/src/tokens/build/js/tokens.dark.js +34 -0
  42. package/src/tokens/build/js/tokens.js +34 -0
  43. package/src/tokens/build/json/tokens.dark.json +853 -0
  44. package/src/tokens/build/json/tokens.json +853 -0
  45. package/src/tokens/build/scss/_tokens.dark.scss +34 -0
  46. package/src/tokens/build/scss/_tokens.scss +34 -0
  47. package/src/tokens/build/scss/_tokens_custom_properties.scss +34 -0
  48. package/src/tokens/contextual/skeleton-loader.tokens.json +24 -0
@@ -514,6 +514,8 @@ $gl-control-background-color-selected-hover: $gl-color-blue-200; // Used for che
514
514
  $gl-control-background-color-selected-default: $gl-color-blue-400; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
515
515
  $gl-control-background-color-disabled: $gl-color-neutral-950; // Used for disabled form control (checkbox, input, radio button, textarea) background.
516
516
  $gl-control-background-color-default: $gl-color-neutral-900; // Used for form control (input, radio button, checkbox, textarea) default background.
517
+ $gl-skeleton-loader-shimmer-color: $gl-color-neutral-700; // Used for the animated shimmer effect in a skeleton loader.
518
+ $gl-skeleton-loader-background-color: $gl-color-neutral-800; // Used for the skeleton loader background color.
517
519
  $gl-popover-background-color: $gl-color-neutral-900; // Used for the background color of popover.
518
520
  $gl-breadcrumb-separator-color: $gl-color-neutral-700; // Used for the breadcrumb level separator.
519
521
  $gl-banner-promo-background-color: $gl-color-neutral-900; // Used as background for the default banner type.
@@ -534,6 +536,38 @@ $gl-background-color-disabled: $gl-color-neutral-900; // Used to identify a disa
534
536
  $gl-background-color-strong: $gl-color-neutral-800; // Used to make the background easily stand out from the default.
535
537
  $gl-background-color-subtle: $gl-color-neutral-900; // Used to slightly differentiate the background from the default.
536
538
  $gl-background-color-default: $gl-color-neutral-950; // Used for the default background color.
539
+ $gl-action-confirm-icon-color-strong: $gl-color-neutral-900; // Used for the icon on a solid, strong confirm (positive) action background.
540
+ $gl-action-confirm-icon-color-active: $gl-color-blue-50; // Used for the icon of a confirm (positive) action in the active state.
541
+ $gl-action-confirm-icon-color-focus: $gl-color-blue-200; // Used for the icon of a confirm (positive) action in the focus state.
542
+ $gl-action-confirm-icon-color-hover: $gl-color-blue-200; // Used for the icon of a confirm (positive) action in the hover state.
543
+ $gl-action-confirm-icon-color-default: $gl-color-blue-400; // Used for the icon of a confirm (positive) action in the default state.
544
+ $gl-action-confirm-text-color-strong: $gl-color-neutral-900; // Used for the text on a solid, strong confirm (positive) action background.
545
+ $gl-action-confirm-text-color-active: $gl-color-blue-50; // Used for the text of a confirm (positive) action in the active state.
546
+ $gl-action-confirm-text-color-focus: $gl-color-blue-200; // Used for the text of a confirm (positive) action in the focus state.
547
+ $gl-action-confirm-text-color-hover: $gl-color-blue-200; // Used for the text of a confirm (positive) action in the hover state.
548
+ $gl-action-confirm-text-color-default: $gl-color-blue-400; // Used for the text of a confirm (positive) action in the default state.
549
+ $gl-action-confirm-border-color-strong-selected: $gl-color-blue-300; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
550
+ $gl-action-confirm-border-color-strong-active: $gl-color-blue-50; // Used for the border of a solid, strong confirm (positive) action in the active state.
551
+ $gl-action-confirm-border-color-strong-focus: $gl-color-blue-100; // Used for the border of a solid, strong confirm (positive) action in the focus state.
552
+ $gl-action-confirm-border-color-strong-hover: $gl-color-blue-100; // Used for the border of a solid, strong confirm (positive) action in the hover state.
553
+ $gl-action-confirm-border-color-strong-default: $gl-color-blue-300; // Used for the border of a solid, strong confirm (positive) action in the default state.
554
+ $gl-action-confirm-border-color-active: $gl-color-blue-50; // Used for the border of an outlined confirm (positive) action in the active state.
555
+ $gl-action-confirm-border-color-focus: $gl-color-blue-200; // Used for the border of an outlined confirm (positive) action in the focus state.
556
+ $gl-action-confirm-border-color-hover: $gl-color-blue-200; // Used for the border of an outlined confirm (positive) action in the hover state.
557
+ $gl-action-confirm-border-color-default: $gl-color-blue-400; // Used for the border of an outlined confirm (positive) action in the default state.
558
+ $gl-action-confirm-background-color-strong-selected: $gl-color-blue-400; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
559
+ $gl-action-confirm-background-color-strong-active: $gl-color-blue-200; // Used for the background of a solid, strong confirm (positive) action in the active state.
560
+ $gl-action-confirm-background-color-strong-focus: $gl-color-blue-300; // Used for the background of a solid, strong confirm (positive) action in the focus state.
561
+ $gl-action-confirm-background-color-strong-hover: $gl-color-blue-300; // Used for the background of a solid, strong confirm (positive) action in the hover state.
562
+ $gl-action-confirm-background-color-strong-default: $gl-color-blue-400; // Used for the background of a solid, strong confirm (positive) action in the default state.
563
+ $gl-action-confirm-background-color-subtle-active: $gl-color-blue-800; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
564
+ $gl-action-confirm-background-color-subtle-focus: $gl-color-blue-900; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
565
+ $gl-action-confirm-background-color-subtle-hover: $gl-color-blue-900; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
566
+ $gl-action-confirm-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
567
+ $gl-action-confirm-background-color-active: $gl-color-blue-800; // Used for the background of an outlined confirm (positive) action in the active state.
568
+ $gl-action-confirm-background-color-focus: $gl-color-blue-900; // Used for the background of an outlined confirm (positive) action in the focus state.
569
+ $gl-action-confirm-background-color-hover: $gl-color-blue-900; // Used for the background of an outlined confirm (positive) action in the hover state.
570
+ $gl-action-confirm-background-color-default: $gl-color-neutral-900; // Used for the background of an outlined confirm (positive) action in the default state.
537
571
  $gl-action-neutral-icon-color-strong: $gl-color-neutral-900; // Used for the icon on a solid, strong neutral action background.
538
572
  $gl-action-neutral-icon-color-active: $gl-color-neutral-50; // Used for the icon of outlined and borderless neutral actions in the active state.
539
573
  $gl-action-neutral-icon-color-focus: $gl-color-neutral-200; // Used for the icon of outlined and borderless neutral actions in the focus state.
@@ -514,6 +514,8 @@ $gl-control-background-color-selected-hover: $gl-color-blue-700; // Used for che
514
514
  $gl-control-background-color-selected-default: $gl-color-blue-500; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
515
515
  $gl-control-background-color-disabled: $gl-color-neutral-10; // Used for disabled form control (checkbox, input, radio button, textarea) background.
516
516
  $gl-control-background-color-default: $gl-color-neutral-0; // Used for form control (input, radio button, checkbox, textarea) default background.
517
+ $gl-skeleton-loader-shimmer-color: $gl-color-neutral-50; // Used for the animated shimmer effect in a skeleton loader.
518
+ $gl-skeleton-loader-background-color: $gl-color-neutral-100; // Used for the skeleton loader background color.
517
519
  $gl-popover-background-color: $gl-color-neutral-0; // Used for the background color of popover.
518
520
  $gl-breadcrumb-separator-color: $gl-color-neutral-200; // Used for the breadcrumb level separator.
519
521
  $gl-banner-promo-background-color: $gl-color-neutral-10; // Used as background for the default banner type.
@@ -534,6 +536,38 @@ $gl-background-color-disabled: $gl-color-neutral-10; // Used to identify a disab
534
536
  $gl-background-color-strong: $gl-color-neutral-50; // Used to make the background easily stand out from the default.
535
537
  $gl-background-color-subtle: $gl-color-neutral-10; // Used to slightly differentiate the background from the default.
536
538
  $gl-background-color-default: $gl-color-neutral-0; // Used for the default background color.
539
+ $gl-action-confirm-icon-color-strong: $gl-color-neutral-0; // Used for the icon on a solid, strong confirm (positive) action background.
540
+ $gl-action-confirm-icon-color-active: $gl-color-blue-900; // Used for the icon of a confirm (positive) action in the active state.
541
+ $gl-action-confirm-icon-color-focus: $gl-color-blue-700; // Used for the icon of a confirm (positive) action in the focus state.
542
+ $gl-action-confirm-icon-color-hover: $gl-color-blue-700; // Used for the icon of a confirm (positive) action in the hover state.
543
+ $gl-action-confirm-icon-color-default: $gl-color-blue-500; // Used for the icon of a confirm (positive) action in the default state.
544
+ $gl-action-confirm-text-color-strong: $gl-color-neutral-0; // Used for the text on a solid, strong confirm (positive) action background.
545
+ $gl-action-confirm-text-color-active: $gl-color-blue-900; // Used for the text of a confirm (positive) action in the active state.
546
+ $gl-action-confirm-text-color-focus: $gl-color-blue-700; // Used for the text of a confirm (positive) action in the focus state.
547
+ $gl-action-confirm-text-color-hover: $gl-color-blue-700; // Used for the text of a confirm (positive) action in the hover state.
548
+ $gl-action-confirm-text-color-default: $gl-color-blue-500; // Used for the text of a confirm (positive) action in the default state.
549
+ $gl-action-confirm-border-color-strong-selected: $gl-color-blue-600; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
550
+ $gl-action-confirm-border-color-strong-active: $gl-color-blue-900; // Used for the border of a solid, strong confirm (positive) action in the active state.
551
+ $gl-action-confirm-border-color-strong-focus: $gl-color-blue-800; // Used for the border of a solid, strong confirm (positive) action in the focus state.
552
+ $gl-action-confirm-border-color-strong-hover: $gl-color-blue-800; // Used for the border of a solid, strong confirm (positive) action in the hover state.
553
+ $gl-action-confirm-border-color-strong-default: $gl-color-blue-600; // Used for the border of a solid, strong confirm (positive) action in the default state.
554
+ $gl-action-confirm-border-color-active: $gl-color-blue-900; // Used for the border of an outlined confirm (positive) action in the active state.
555
+ $gl-action-confirm-border-color-focus: $gl-color-blue-700; // Used for the border of an outlined confirm (positive) action in the focus state.
556
+ $gl-action-confirm-border-color-hover: $gl-color-blue-700; // Used for the border of an outlined confirm (positive) action in the hover state.
557
+ $gl-action-confirm-border-color-default: $gl-color-blue-500; // Used for the border of an outlined confirm (positive) action in the default state.
558
+ $gl-action-confirm-background-color-strong-selected: $gl-color-blue-500; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
559
+ $gl-action-confirm-background-color-strong-active: $gl-color-blue-700; // Used for the background of a solid, strong confirm (positive) action in the active state.
560
+ $gl-action-confirm-background-color-strong-focus: $gl-color-blue-600; // Used for the background of a solid, strong confirm (positive) action in the focus state.
561
+ $gl-action-confirm-background-color-strong-hover: $gl-color-blue-600; // Used for the background of a solid, strong confirm (positive) action in the hover state.
562
+ $gl-action-confirm-background-color-strong-default: $gl-color-blue-500; // Used for the background of a solid, strong confirm (positive) action in the default state.
563
+ $gl-action-confirm-background-color-subtle-active: $gl-color-blue-100; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
564
+ $gl-action-confirm-background-color-subtle-focus: $gl-color-blue-50; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
565
+ $gl-action-confirm-background-color-subtle-hover: $gl-color-blue-50; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
566
+ $gl-action-confirm-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
567
+ $gl-action-confirm-background-color-active: $gl-color-blue-100; // Used for the background of an outlined confirm (positive) action in the active state.
568
+ $gl-action-confirm-background-color-focus: $gl-color-blue-50; // Used for the background of an outlined confirm (positive) action in the focus state.
569
+ $gl-action-confirm-background-color-hover: $gl-color-blue-50; // Used for the background of an outlined confirm (positive) action in the hover state.
570
+ $gl-action-confirm-background-color-default: $gl-color-neutral-0; // Used for the background of an outlined confirm (positive) action in the default state.
537
571
  $gl-action-neutral-icon-color-strong: $gl-color-neutral-0; // Used for the icon on a solid, strong neutral action background.
538
572
  $gl-action-neutral-icon-color-active: $gl-color-neutral-900; // Used for the icon of outlined and borderless neutral actions in the active state.
539
573
  $gl-action-neutral-icon-color-focus: $gl-color-neutral-700; // Used for the icon of outlined and borderless neutral actions in the focus state.
@@ -38,6 +38,38 @@ $gl-action-neutral-icon-color-hover: var(--gl-action-neutral-icon-color-hover);
38
38
  $gl-action-neutral-icon-color-focus: var(--gl-action-neutral-icon-color-focus);
39
39
  $gl-action-neutral-icon-color-active: var(--gl-action-neutral-icon-color-active);
40
40
  $gl-action-neutral-icon-color-strong: var(--gl-action-neutral-icon-color-strong);
41
+ $gl-action-confirm-background-color-default: var(--gl-action-confirm-background-color-default);
42
+ $gl-action-confirm-background-color-hover: var(--gl-action-confirm-background-color-hover);
43
+ $gl-action-confirm-background-color-focus: var(--gl-action-confirm-background-color-focus);
44
+ $gl-action-confirm-background-color-active: var(--gl-action-confirm-background-color-active);
45
+ $gl-action-confirm-background-color-subtle-default: var(--gl-action-confirm-background-color-subtle-default);
46
+ $gl-action-confirm-background-color-subtle-hover: var(--gl-action-confirm-background-color-subtle-hover);
47
+ $gl-action-confirm-background-color-subtle-focus: var(--gl-action-confirm-background-color-subtle-focus);
48
+ $gl-action-confirm-background-color-subtle-active: var(--gl-action-confirm-background-color-subtle-active);
49
+ $gl-action-confirm-background-color-strong-default: var(--gl-action-confirm-background-color-strong-default);
50
+ $gl-action-confirm-background-color-strong-hover: var(--gl-action-confirm-background-color-strong-hover);
51
+ $gl-action-confirm-background-color-strong-focus: var(--gl-action-confirm-background-color-strong-focus);
52
+ $gl-action-confirm-background-color-strong-active: var(--gl-action-confirm-background-color-strong-active);
53
+ $gl-action-confirm-background-color-strong-selected: var(--gl-action-confirm-background-color-strong-selected);
54
+ $gl-action-confirm-border-color-default: var(--gl-action-confirm-border-color-default);
55
+ $gl-action-confirm-border-color-hover: var(--gl-action-confirm-border-color-hover);
56
+ $gl-action-confirm-border-color-focus: var(--gl-action-confirm-border-color-focus);
57
+ $gl-action-confirm-border-color-active: var(--gl-action-confirm-border-color-active);
58
+ $gl-action-confirm-border-color-strong-default: var(--gl-action-confirm-border-color-strong-default);
59
+ $gl-action-confirm-border-color-strong-hover: var(--gl-action-confirm-border-color-strong-hover);
60
+ $gl-action-confirm-border-color-strong-focus: var(--gl-action-confirm-border-color-strong-focus);
61
+ $gl-action-confirm-border-color-strong-active: var(--gl-action-confirm-border-color-strong-active);
62
+ $gl-action-confirm-border-color-strong-selected: var(--gl-action-confirm-border-color-strong-selected);
63
+ $gl-action-confirm-text-color-default: var(--gl-action-confirm-text-color-default);
64
+ $gl-action-confirm-text-color-hover: var(--gl-action-confirm-text-color-hover);
65
+ $gl-action-confirm-text-color-focus: var(--gl-action-confirm-text-color-focus);
66
+ $gl-action-confirm-text-color-active: var(--gl-action-confirm-text-color-active);
67
+ $gl-action-confirm-text-color-strong: var(--gl-action-confirm-text-color-strong);
68
+ $gl-action-confirm-icon-color-default: var(--gl-action-confirm-icon-color-default);
69
+ $gl-action-confirm-icon-color-hover: var(--gl-action-confirm-icon-color-hover);
70
+ $gl-action-confirm-icon-color-focus: var(--gl-action-confirm-icon-color-focus);
71
+ $gl-action-confirm-icon-color-active: var(--gl-action-confirm-icon-color-active);
72
+ $gl-action-confirm-icon-color-strong: var(--gl-action-confirm-icon-color-strong);
41
73
  $gl-background-color-default: var(--gl-background-color-default);
42
74
  $gl-background-color-subtle: var(--gl-background-color-subtle);
43
75
  $gl-background-color-strong: var(--gl-background-color-strong);
@@ -433,6 +465,8 @@ $gl-banner-intro-border-color: var(--gl-banner-intro-border-color);
433
465
  $gl-banner-promo-background-color: var(--gl-banner-promo-background-color);
434
466
  $gl-breadcrumb-separator-color: var(--gl-breadcrumb-separator-color);
435
467
  $gl-popover-background-color: var(--gl-popover-background-color);
468
+ $gl-skeleton-loader-background-color: var(--gl-skeleton-loader-background-color);
469
+ $gl-skeleton-loader-shimmer-color: var(--gl-skeleton-loader-shimmer-color);
436
470
  $gl-control-background-color-default: var(--gl-control-background-color-default);
437
471
  $gl-control-background-color-disabled: var(--gl-control-background-color-disabled);
438
472
  $gl-control-background-color-selected-default: var(--gl-control-background-color-selected-default);
@@ -0,0 +1,24 @@
1
+ {
2
+ "skeleton-loader": {
3
+ "background": {
4
+ "color": {
5
+ "$value": {
6
+ "default": "{color.neutral.100}",
7
+ "dark": "{color.neutral.800}"
8
+ },
9
+ "$type": "color",
10
+ "$description": "Used for the skeleton loader background color."
11
+ }
12
+ },
13
+ "shimmer": {
14
+ "color": {
15
+ "$value": {
16
+ "default": "{color.neutral.50}",
17
+ "dark": "{color.neutral.700}"
18
+ },
19
+ "$type": "color",
20
+ "$description": "Used for the animated shimmer effect in a skeleton loader."
21
+ }
22
+ }
23
+ }
24
+ }