@gitlab/ui 114.1.1 → 114.2.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 (31) hide show
  1. package/dist/components/base/breadcrumb/breadcrumb.js +4 -16
  2. package/dist/index.css +2 -2
  3. package/dist/index.css.map +1 -1
  4. package/dist/tokens/build/js/tokens.dark.js +5 -1
  5. package/dist/tokens/build/js/tokens.js +5 -1
  6. package/dist/tokens/css/tokens.css +4 -0
  7. package/dist/tokens/css/tokens.dark.css +4 -0
  8. package/dist/tokens/figma/semantic.tokens.json +46 -0
  9. package/dist/tokens/js/tokens.dark.js +4 -0
  10. package/dist/tokens/js/tokens.js +4 -0
  11. package/dist/tokens/json/tokens.dark.json +106 -0
  12. package/dist/tokens/json/tokens.json +106 -0
  13. package/dist/tokens/scss/_tokens.dark.scss +4 -0
  14. package/dist/tokens/scss/_tokens.scss +4 -0
  15. package/dist/tokens/scss/_tokens_custom_properties.scss +4 -0
  16. package/package.json +1 -1
  17. package/src/components/base/breadcrumb/breadcrumb.md +17 -0
  18. package/src/components/base/breadcrumb/breadcrumb.scss +18 -2
  19. package/src/components/base/breadcrumb/breadcrumb.vue +4 -17
  20. package/src/components/base/table/table.scss +22 -23
  21. package/src/tokens/build/css/tokens.css +4 -0
  22. package/src/tokens/build/css/tokens.dark.css +4 -0
  23. package/src/tokens/build/figma/semantic.tokens.json +46 -0
  24. package/src/tokens/build/js/tokens.dark.js +4 -0
  25. package/src/tokens/build/js/tokens.js +4 -0
  26. package/src/tokens/build/json/tokens.dark.json +106 -0
  27. package/src/tokens/build/json/tokens.json +106 -0
  28. package/src/tokens/build/scss/_tokens.dark.scss +4 -0
  29. package/src/tokens/build/scss/_tokens.scss +4 -0
  30. package/src/tokens/build/scss/_tokens_custom_properties.scss +4 -0
  31. package/src/tokens/semantic/highlight.tokens.json +48 -0
@@ -829,6 +829,10 @@ $gl-feedback-danger-background-color: $gl-color-red-900; // Used for the backgro
829
829
  $gl-feedback-danger-text-color: $gl-color-red-200; // Used for the text of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
830
830
  $gl-feedback-danger-icon-color: $gl-color-red-300; // Used for the icon of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
831
831
  $gl-focus-ring-outer-color: $gl-color-blue-400; // Used for the outer color portion of the focus ring.
832
+ $gl-highlight-match-background-color: $gl-color-orange-200; // Used for temporary visual emphasis of backgrounds of matched search terms, filtered results, or autocomplete suggestions without implying any particular state or meaning.
833
+ $gl-highlight-match-text-color: $gl-color-neutral-950; // Used for text within temporarily highlighted matches to maintain readability while drawing attention without conveying status.
834
+ $gl-highlight-target-background-color: $gl-color-blue-950; // Used for temporary visual emphasis for backgrounds of referenced elements (for example URL anchors, hover states) or to show relationships between content without implying status or requiring action.
835
+ $gl-highlight-target-border-color: $gl-color-blue-700; // Used to provide additional visual emphasis for borders of temporarily targeted elements or when visualizing connections between related content, distinct from persistent states.
832
836
  $gl-icon-color-info: $gl-color-blue-200; // Used for an icon associated with information or help.
833
837
  $gl-shadow-color-default: $gl-color-alpha-dark-40; // Used for the default shadow color.
834
838
  $gl-status-neutral-background-color: $gl-color-neutral-800; // Used for the background of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.
@@ -829,6 +829,10 @@ $gl-feedback-danger-background-color: $gl-color-red-50; // Used for the backgrou
829
829
  $gl-feedback-danger-text-color: $gl-color-red-700; // Used for the text of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
830
830
  $gl-feedback-danger-icon-color: $gl-color-red-600; // Used for the icon of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
831
831
  $gl-focus-ring-outer-color: $gl-color-blue-500; // Used for the outer color portion of the focus ring.
832
+ $gl-highlight-match-background-color: $gl-color-orange-500; // Used for temporary visual emphasis of backgrounds of matched search terms, filtered results, or autocomplete suggestions without implying any particular state or meaning.
833
+ $gl-highlight-match-text-color: $gl-color-neutral-0; // Used for text within temporarily highlighted matches to maintain readability while drawing attention without conveying status.
834
+ $gl-highlight-target-background-color: $gl-color-blue-50; // Used for temporary visual emphasis for backgrounds of referenced elements (for example URL anchors, hover states) or to show relationships between content without implying status or requiring action.
835
+ $gl-highlight-target-border-color: $gl-color-blue-200; // Used to provide additional visual emphasis for borders of temporarily targeted elements or when visualizing connections between related content, distinct from persistent states.
832
836
  $gl-icon-color-info: $gl-color-blue-700; // Used for an icon associated with information or help.
833
837
  $gl-shadow-color-default: $gl-color-alpha-dark-16; // Used for the default shadow color.
834
838
  $gl-status-neutral-background-color: $gl-color-neutral-100; // Used for the background of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.
@@ -1005,6 +1005,10 @@ $gl-feedback-danger-text-color: var(--gl-feedback-danger-text-color);
1005
1005
  $gl-feedback-danger-icon-color: var(--gl-feedback-danger-icon-color);
1006
1006
  $gl-focus-ring-outer-color: var(--gl-focus-ring-outer-color);
1007
1007
  $gl-focus-ring-inner-color: var(--gl-focus-ring-inner-color);
1008
+ $gl-highlight-match-background-color: var(--gl-highlight-match-background-color);
1009
+ $gl-highlight-match-text-color: var(--gl-highlight-match-text-color);
1010
+ $gl-highlight-target-background-color: var(--gl-highlight-target-background-color);
1011
+ $gl-highlight-target-border-color: var(--gl-highlight-target-border-color);
1008
1012
  $gl-icon-color-default: var(--gl-icon-color-default);
1009
1013
  $gl-icon-color-subtle: var(--gl-icon-color-subtle);
1010
1014
  $gl-icon-color-strong: var(--gl-icon-color-strong);
@@ -0,0 +1,48 @@
1
+ {
2
+ "highlight": {
3
+ "match": {
4
+ "background": {
5
+ "color": {
6
+ "$value": {
7
+ "default": "{color.orange.500}",
8
+ "dark": "{color.orange.200}"
9
+ },
10
+ "$type": "color",
11
+ "$description": "Used for temporary visual emphasis of backgrounds of matched search terms, filtered results, or autocomplete suggestions without implying any particular state or meaning."
12
+ }
13
+ },
14
+ "text": {
15
+ "color": {
16
+ "$value": {
17
+ "default": "{color.neutral.0}",
18
+ "dark": "{color.neutral.950}"
19
+ },
20
+ "$type": "color",
21
+ "$description": "Used for text within temporarily highlighted matches to maintain readability while drawing attention without conveying status."
22
+ }
23
+ }
24
+ },
25
+ "target": {
26
+ "background": {
27
+ "color": {
28
+ "$value": {
29
+ "default": "{color.blue.50}",
30
+ "dark": "{color.blue.950}"
31
+ },
32
+ "$type": "color",
33
+ "$description": "Used for temporary visual emphasis for backgrounds of referenced elements (for example URL anchors, hover states) or to show relationships between content without implying status or requiring action."
34
+ }
35
+ },
36
+ "border": {
37
+ "color": {
38
+ "$value": {
39
+ "default": "{color.blue.200}",
40
+ "dark": "{color.blue.700}"
41
+ },
42
+ "$type": "color",
43
+ "$description": "Used to provide additional visual emphasis for borders of temporarily targeted elements or when visualizing connections between related content, distinct from persistent states."
44
+ }
45
+ }
46
+ }
47
+ }
48
+ }