@gitlab/ui 101.9.0 → 101.11.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/CHANGELOG.md +14 -0
  2. package/dist/components/charts/legend/legend.js +2 -1
  3. package/dist/index.css +1 -1
  4. package/dist/index.css.map +1 -1
  5. package/dist/tokens/build/js/tokens.dark.js +1 -1
  6. package/dist/tokens/build/js/tokens.js +1 -1
  7. package/dist/tokens/css/tokens.css +1 -1
  8. package/dist/tokens/css/tokens.dark.css +1 -1
  9. package/dist/tokens/js/tokens.dark.js +1 -1
  10. package/dist/tokens/js/tokens.js +1 -1
  11. package/dist/tokens/json/tokens.dark.json +3 -3
  12. package/dist/tokens/json/tokens.json +3 -3
  13. package/dist/tokens/scss/_tokens.dark.scss +1 -1
  14. package/dist/tokens/scss/_tokens.scss +1 -1
  15. package/dist/vendor/bootstrap-vue/src/components/link/link.js +89 -45
  16. package/package.json +1 -1
  17. package/src/components/charts/legend/legend.vue +2 -1
  18. package/src/tokens/build/css/tokens.css +1 -1
  19. package/src/tokens/build/css/tokens.dark.css +1 -1
  20. package/src/tokens/build/js/tokens.dark.js +1 -1
  21. package/src/tokens/build/js/tokens.js +1 -1
  22. package/src/tokens/build/json/tokens.dark.json +3 -3
  23. package/src/tokens/build/json/tokens.json +3 -3
  24. package/src/tokens/build/scss/_tokens.dark.scss +1 -1
  25. package/src/tokens/build/scss/_tokens.scss +1 -1
  26. package/src/tokens/contextual/filtered-search.tokens.json +2 -2
  27. package/src/vendor/bootstrap-vue/src/components/link/link.js +105 -62
  28. package/src/vendor/bootstrap-vue/src/directives/modal/index.d.ts +0 -8
  29. package/src/vendor/bootstrap-vue/src/directives/toggle/index.d.ts +0 -7
  30. package/src/vendor/bootstrap-vue/src/directives/tooltip/index.d.ts +0 -7
  31. package/src/vendor/bootstrap-vue/src/directives/visible/index.d.ts +0 -7
@@ -650,7 +650,7 @@ const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#3a383f';
650
650
  const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#3a383f';
651
651
  const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#4c4b51';
652
652
  const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#28272d';
653
- const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#4c4b51';
653
+ const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#3a383f';
654
654
  const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -650,7 +650,7 @@ const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#dcdcde';
650
650
  const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#dcdcde';
651
651
  const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#bfbfc3';
652
652
  const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#ececef';
653
- const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#bfbfc3';
653
+ const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#dcdcde';
654
654
  const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -675,7 +675,7 @@
675
675
  --gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-100); /* Used for the filtered search data background color in the default state. */
676
676
  --gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search data token background color in the hover state. */
677
677
  --gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-50); /* Used for the filtered search operator background color in the default state. */
678
- --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search operator token background color in the hover state. */
678
+ --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-100); /* Used for the filtered search operator token background color in the hover state. */
679
679
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
680
680
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
681
681
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
@@ -675,7 +675,7 @@
675
675
  --gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-800); /* Used for the filtered search data background color in the default state. */
676
676
  --gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search data token background color in the hover state. */
677
677
  --gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-900); /* Used for the filtered search operator background color in the default state. */
678
- --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search operator token background color in the hover state. */
678
+ --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-800); /* Used for the filtered search operator token background color in the hover state. */
679
679
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
680
680
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
681
681
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
@@ -650,7 +650,7 @@ export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#3a383f';
650
650
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#3a383f';
651
651
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#4c4b51';
652
652
  export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#28272d';
653
- export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#4c4b51';
653
+ export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#3a383f';
654
654
  export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -650,7 +650,7 @@ export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#dcdcde';
650
650
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#dcdcde';
651
651
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#bfbfc3';
652
652
  export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#ececef';
653
- export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#bfbfc3';
653
+ export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#dcdcde';
654
654
  export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -14363,15 +14363,15 @@
14363
14363
  ]
14364
14364
  },
14365
14365
  "hover": {
14366
- "$value": "#4c4b51",
14366
+ "$value": "#3a383f",
14367
14367
  "$type": "color",
14368
14368
  "$description": "Used for the filtered search operator token background color in the hover state.",
14369
14369
  "filePath": "src/tokens/contextual/filtered-search.tokens.json",
14370
14370
  "isSource": true,
14371
14371
  "original": {
14372
14372
  "$value": {
14373
- "default": "{color.neutral.200}",
14374
- "dark": "{color.neutral.700}"
14373
+ "default": "{color.neutral.100}",
14374
+ "dark": "{color.neutral.800}"
14375
14375
  },
14376
14376
  "$type": "color",
14377
14377
  "$description": "Used for the filtered search operator token background color in the hover state."
@@ -14363,15 +14363,15 @@
14363
14363
  ]
14364
14364
  },
14365
14365
  "hover": {
14366
- "$value": "#bfbfc3",
14366
+ "$value": "#dcdcde",
14367
14367
  "$type": "color",
14368
14368
  "$description": "Used for the filtered search operator token background color in the hover state.",
14369
14369
  "filePath": "src/tokens/contextual/filtered-search.tokens.json",
14370
14370
  "isSource": true,
14371
14371
  "original": {
14372
14372
  "$value": {
14373
- "default": "{color.neutral.200}",
14374
- "dark": "{color.neutral.700}"
14373
+ "default": "{color.neutral.100}",
14374
+ "dark": "{color.neutral.800}"
14375
14375
  },
14376
14376
  "$type": "color",
14377
14377
  "$description": "Used for the filtered search operator token background color in the hover state."
@@ -673,7 +673,7 @@ $gl-filtered-search-token-type-background-color-hover: $gl-color-neutral-800; //
673
673
  $gl-filtered-search-token-data-background-color-default: $gl-color-neutral-800; // Used for the filtered search data background color in the default state.
674
674
  $gl-filtered-search-token-data-background-color-hover: $gl-color-neutral-700; // Used for the filtered search data token background color in the hover state.
675
675
  $gl-filtered-search-token-operator-background-color-default: $gl-color-neutral-900; // Used for the filtered search operator background color in the default state.
676
- $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-700; // Used for the filtered search operator token background color in the hover state.
676
+ $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-800; // Used for the filtered search operator token background color in the hover state.
677
677
  $gl-label-light-text-color: $gl-color-neutral-950; // Used for the label text color on a light background color.
678
678
  $gl-label-light-button-background-color-default: $gl-color-alpha-0; // Used for the label remove button background on a light background color in the default state.
679
679
  $gl-label-light-button-background-color-hover: $gl-color-neutral-950; // Used for the label remove button background on a light background color in the hover state.
@@ -673,7 +673,7 @@ $gl-filtered-search-token-type-background-color-hover: $gl-color-neutral-100; //
673
673
  $gl-filtered-search-token-data-background-color-default: $gl-color-neutral-100; // Used for the filtered search data background color in the default state.
674
674
  $gl-filtered-search-token-data-background-color-hover: $gl-color-neutral-200; // Used for the filtered search data token background color in the hover state.
675
675
  $gl-filtered-search-token-operator-background-color-default: $gl-color-neutral-50; // Used for the filtered search operator background color in the default state.
676
- $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-200; // Used for the filtered search operator token background color in the hover state.
676
+ $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-100; // Used for the filtered search operator token background color in the hover state.
677
677
  $gl-label-light-text-color: $gl-color-neutral-950; // Used for the label text color on a light background color.
678
678
  $gl-label-light-button-background-color-default: $gl-color-alpha-0; // Used for the label remove button background on a light background color in the default state.
679
679
  $gl-label-light-button-background-color-hover: $gl-color-neutral-950; // Used for the label remove button background on a light background color in the hover state.
@@ -1,13 +1,11 @@
1
1
  import { extend } from '../../vue';
2
2
  import { NAME_LINK } from '../../constants/components';
3
3
  import { EVENT_NAME_CLICK } from '../../constants/events';
4
- import { PROP_TYPE_STRING, PROP_TYPE_BOOLEAN, PROP_TYPE_ARRAY_STRING, PROP_TYPE_OBJECT_STRING } from '../../constants/props';
5
4
  import { concat } from '../../utils/array';
6
5
  import { isTag, attemptFocus, attemptBlur } from '../../utils/dom';
7
6
  import { getRootEventName, stopEvent } from '../../utils/events';
8
7
  import { isBoolean, isUndefined, isEvent, isFunction } from '../../utils/inspect';
9
- import { sortKeys, omit } from '../../utils/object';
10
- import { makeProp, makePropsConfigurable, pluckProps } from '../../utils/props';
8
+ import { pluckProps } from '../../utils/props';
11
9
  import { computeTag, isRouterLink, computeRel, computeHref } from '../../utils/router';
12
10
  import { attrsMixin } from '../../mixins/attrs';
13
11
  import { listenOnRootMixin } from '../../mixins/listen-on-root';
@@ -20,49 +18,92 @@ const ROOT_EVENT_NAME_CLICKED = getRootEventName(NAME_LINK, 'clicked');
20
18
 
21
19
  // --- Props ---
22
20
 
23
- // `<router-link>` specific props
24
- const routerLinkProps = {
25
- activeClass: makeProp(PROP_TYPE_STRING),
26
- append: makeProp(PROP_TYPE_BOOLEAN, false),
27
- event: makeProp(PROP_TYPE_ARRAY_STRING),
28
- exact: makeProp(PROP_TYPE_BOOLEAN, false),
29
- exactActiveClass: makeProp(PROP_TYPE_STRING),
30
- exactPath: makeProp(PROP_TYPE_BOOLEAN, false),
31
- exactPathActiveClass: makeProp(PROP_TYPE_STRING),
32
- replace: makeProp(PROP_TYPE_BOOLEAN, false),
33
- routerTag: makeProp(PROP_TYPE_STRING),
34
- to: makeProp(PROP_TYPE_OBJECT_STRING)
35
- };
36
-
37
- // `<nuxt-link>` specific props
38
- const nuxtLinkProps = {
39
- noPrefetch: makeProp(PROP_TYPE_BOOLEAN, false),
21
+ const props = {
22
+ active: {
23
+ type: Boolean,
24
+ default: false
25
+ },
26
+ disabled: {
27
+ type: Boolean,
28
+ default: false
29
+ },
30
+ href: {
31
+ type: String,
32
+ default: undefined
33
+ },
34
+ // Must be `null` if no value provided
35
+ rel: {
36
+ type: String,
37
+ default: null
38
+ },
39
+ // To support 3rd party router links based on `<router-link>` (i.e. `g-link` for Gridsome)
40
+ // Default is to auto choose between `<router-link>` and `<nuxt-link>`
41
+ // Gridsome doesn't provide a mechanism to auto detect and has caveats
42
+ // such as not supporting FQDN URLs or hash only URLs
43
+ routerComponentName: {
44
+ type: String,
45
+ default: undefined
46
+ },
47
+ target: {
48
+ type: String,
49
+ default: '_self'
50
+ },
51
+ activeClass: {
52
+ type: String,
53
+ default: undefined
54
+ },
55
+ append: {
56
+ type: Boolean,
57
+ default: false
58
+ },
59
+ event: {
60
+ type: [Array, String],
61
+ default: undefined
62
+ },
63
+ exact: {
64
+ type: Boolean,
65
+ default: false
66
+ },
67
+ exactActiveClass: {
68
+ type: String,
69
+ default: undefined
70
+ },
71
+ exactPath: {
72
+ type: Boolean,
73
+ default: false
74
+ },
75
+ exactPathActiveClass: {
76
+ type: String,
77
+ default: undefined
78
+ },
79
+ replace: {
80
+ type: Boolean,
81
+ default: false
82
+ },
83
+ routerTag: {
84
+ type: String,
85
+ default: undefined
86
+ },
87
+ to: {
88
+ type: [Object, String],
89
+ default: undefined
90
+ },
91
+ noPrefetch: {
92
+ type: Boolean,
93
+ default: false
94
+ },
40
95
  // Must be `null` to fall back to the value defined in the
41
96
  // `nuxt.config.js` configuration file for `router.prefetchLinks`
42
97
  // We convert `null` to `undefined`, so that Nuxt.js will use the
43
98
  // compiled default
44
99
  // Vue treats `undefined` as default of `false` for Boolean props,
45
100
  // so we must set it as `null` here to be a true tri-state prop
46
- prefetch: makeProp(PROP_TYPE_BOOLEAN, null)
101
+ prefetch: {
102
+ type: Boolean,
103
+ default: null
104
+ }
47
105
  };
48
106
 
49
- // All `<b-link>` props
50
- const props = makePropsConfigurable(sortKeys({
51
- ...nuxtLinkProps,
52
- ...routerLinkProps,
53
- active: makeProp(PROP_TYPE_BOOLEAN, false),
54
- disabled: makeProp(PROP_TYPE_BOOLEAN, false),
55
- href: makeProp(PROP_TYPE_STRING),
56
- // Must be `null` if no value provided
57
- rel: makeProp(PROP_TYPE_STRING, null),
58
- // To support 3rd party router links based on `<router-link>` (i.e. `g-link` for Gridsome)
59
- // Default is to auto choose between `<router-link>` and `<nuxt-link>`
60
- // Gridsome doesn't provide a mechanism to auto detect and has caveats
61
- // such as not supporting FQDN URLs or hash only URLs
62
- routerComponentName: makeProp(PROP_TYPE_STRING),
63
- target: makeProp(PROP_TYPE_STRING, '_self')
64
- }), NAME_LINK);
65
-
66
107
  // --- Main component ---
67
108
 
68
109
  // @vue/component
@@ -86,6 +127,9 @@ const BLink = /*#__PURE__*/extend({
86
127
  routerComponentName
87
128
  }, this);
88
129
  },
130
+ isNuxtLink() {
131
+ return this.computedTag === 'nuxt-link';
132
+ },
89
133
  isRouterLink() {
90
134
  return isRouterLink(this.computedTag);
91
135
  },
@@ -112,16 +156,16 @@ const BLink = /*#__PURE__*/extend({
112
156
  }, this.computedTag);
113
157
  },
114
158
  computedProps() {
159
+ if (!this.isRouterLink) return {};
115
160
  const {
116
161
  event,
117
162
  prefetch,
118
163
  routerTag
119
164
  } = this;
120
- return this.isRouterLink ? {
121
- ...pluckProps(omit({
122
- ...routerLinkProps,
123
- ...(this.computedTag === 'nuxt-link' ? nuxtLinkProps : {})
124
- }, ['event', 'prefetch', 'routerTag']), this),
165
+ const propsToPass = ['activeClass', 'append', 'exact', 'exactActiveClass', 'exactPath', 'exactPathActiveClass', 'replace', 'to'];
166
+ if (this.isNuxtLink) propsToPass.push('noPrefetch');
167
+ return {
168
+ ...pluckProps(propsToPass, this),
125
169
  // Only add these props, when actually defined
126
170
  ...(event ? {
127
171
  event
@@ -133,7 +177,7 @@ const BLink = /*#__PURE__*/extend({
133
177
  ...(routerTag ? {
134
178
  tag: routerTag
135
179
  } : {})
136
- } : {};
180
+ };
137
181
  },
138
182
  computedAttrs() {
139
183
  const {
@@ -236,4 +280,4 @@ const BLink = /*#__PURE__*/extend({
236
280
  }
237
281
  });
238
282
 
239
- export { BLink, nuxtLinkProps, props, routerLinkProps };
283
+ export { BLink, props };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "101.9.0",
3
+ "version": "101.11.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -197,7 +197,8 @@ export default {
197
197
  v-for="(series, key) in seriesInfo"
198
198
  :key="key"
199
199
  :class="{
200
- 'text-muted': disabledSeries[key],
200
+ 'gl-text-subtle': disabledSeries[key],
201
+ 'gl-text-strong': !disabledSeries[key],
201
202
  'gl-w-full': seriesNameIsLong(series.name),
202
203
  'hover:!gl-cursor-not-allowed':
203
204
  hasOneSeriesElement || isToggleDisabled(series.name, series.disabled),
@@ -675,7 +675,7 @@
675
675
  --gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-100); /* Used for the filtered search data background color in the default state. */
676
676
  --gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search data token background color in the hover state. */
677
677
  --gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-50); /* Used for the filtered search operator background color in the default state. */
678
- --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-200); /* Used for the filtered search operator token background color in the hover state. */
678
+ --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-100); /* Used for the filtered search operator token background color in the hover state. */
679
679
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
680
680
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
681
681
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
@@ -675,7 +675,7 @@
675
675
  --gl-filtered-search-token-data-background-color-default: var(--gl-color-neutral-800); /* Used for the filtered search data background color in the default state. */
676
676
  --gl-filtered-search-token-data-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search data token background color in the hover state. */
677
677
  --gl-filtered-search-token-operator-background-color-default: var(--gl-color-neutral-900); /* Used for the filtered search operator background color in the default state. */
678
- --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-700); /* Used for the filtered search operator token background color in the hover state. */
678
+ --gl-filtered-search-token-operator-background-color-hover: var(--gl-color-neutral-800); /* Used for the filtered search operator token background color in the hover state. */
679
679
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
680
680
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
681
681
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
@@ -650,7 +650,7 @@ export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#3a383f';
650
650
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#3a383f';
651
651
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#4c4b51';
652
652
  export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#28272d';
653
- export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#4c4b51';
653
+ export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#3a383f';
654
654
  export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -650,7 +650,7 @@ export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#dcdcde';
650
650
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#dcdcde';
651
651
  export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#bfbfc3';
652
652
  export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#ececef';
653
- export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#bfbfc3';
653
+ export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#dcdcde';
654
654
  export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d';
655
655
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent';
656
656
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d';
@@ -14363,15 +14363,15 @@
14363
14363
  ]
14364
14364
  },
14365
14365
  "hover": {
14366
- "$value": "#4c4b51",
14366
+ "$value": "#3a383f",
14367
14367
  "$type": "color",
14368
14368
  "$description": "Used for the filtered search operator token background color in the hover state.",
14369
14369
  "filePath": "src/tokens/contextual/filtered-search.tokens.json",
14370
14370
  "isSource": true,
14371
14371
  "original": {
14372
14372
  "$value": {
14373
- "default": "{color.neutral.200}",
14374
- "dark": "{color.neutral.700}"
14373
+ "default": "{color.neutral.100}",
14374
+ "dark": "{color.neutral.800}"
14375
14375
  },
14376
14376
  "$type": "color",
14377
14377
  "$description": "Used for the filtered search operator token background color in the hover state."
@@ -14363,15 +14363,15 @@
14363
14363
  ]
14364
14364
  },
14365
14365
  "hover": {
14366
- "$value": "#bfbfc3",
14366
+ "$value": "#dcdcde",
14367
14367
  "$type": "color",
14368
14368
  "$description": "Used for the filtered search operator token background color in the hover state.",
14369
14369
  "filePath": "src/tokens/contextual/filtered-search.tokens.json",
14370
14370
  "isSource": true,
14371
14371
  "original": {
14372
14372
  "$value": {
14373
- "default": "{color.neutral.200}",
14374
- "dark": "{color.neutral.700}"
14373
+ "default": "{color.neutral.100}",
14374
+ "dark": "{color.neutral.800}"
14375
14375
  },
14376
14376
  "$type": "color",
14377
14377
  "$description": "Used for the filtered search operator token background color in the hover state."
@@ -673,7 +673,7 @@ $gl-filtered-search-token-type-background-color-hover: $gl-color-neutral-800; //
673
673
  $gl-filtered-search-token-data-background-color-default: $gl-color-neutral-800; // Used for the filtered search data background color in the default state.
674
674
  $gl-filtered-search-token-data-background-color-hover: $gl-color-neutral-700; // Used for the filtered search data token background color in the hover state.
675
675
  $gl-filtered-search-token-operator-background-color-default: $gl-color-neutral-900; // Used for the filtered search operator background color in the default state.
676
- $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-700; // Used for the filtered search operator token background color in the hover state.
676
+ $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-800; // Used for the filtered search operator token background color in the hover state.
677
677
  $gl-label-light-text-color: $gl-color-neutral-950; // Used for the label text color on a light background color.
678
678
  $gl-label-light-button-background-color-default: $gl-color-alpha-0; // Used for the label remove button background on a light background color in the default state.
679
679
  $gl-label-light-button-background-color-hover: $gl-color-neutral-950; // Used for the label remove button background on a light background color in the hover state.
@@ -673,7 +673,7 @@ $gl-filtered-search-token-type-background-color-hover: $gl-color-neutral-100; //
673
673
  $gl-filtered-search-token-data-background-color-default: $gl-color-neutral-100; // Used for the filtered search data background color in the default state.
674
674
  $gl-filtered-search-token-data-background-color-hover: $gl-color-neutral-200; // Used for the filtered search data token background color in the hover state.
675
675
  $gl-filtered-search-token-operator-background-color-default: $gl-color-neutral-50; // Used for the filtered search operator background color in the default state.
676
- $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-200; // Used for the filtered search operator token background color in the hover state.
676
+ $gl-filtered-search-token-operator-background-color-hover: $gl-color-neutral-100; // Used for the filtered search operator token background color in the hover state.
677
677
  $gl-label-light-text-color: $gl-color-neutral-950; // Used for the label text color on a light background color.
678
678
  $gl-label-light-button-background-color-default: $gl-color-alpha-0; // Used for the label remove button background on a light background color in the default state.
679
679
  $gl-label-light-button-background-color-hover: $gl-color-neutral-950; // Used for the label remove button background on a light background color in the hover state.
@@ -58,8 +58,8 @@
58
58
  },
59
59
  "hover": {
60
60
  "$value": {
61
- "default": "{color.neutral.200}",
62
- "dark": "{color.neutral.700}"
61
+ "default": "{color.neutral.100}",
62
+ "dark": "{color.neutral.800}"
63
63
  },
64
64
  "$type": "color",
65
65
  "$description": "Used for the filtered search operator token background color in the hover state."