@gitlab/ui 105.1.1 → 105.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 (59) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/components/base/datepicker/datepicker.js +2 -2
  3. package/dist/components/base/paginated_list/paginated_list.js +1 -1
  4. package/dist/components/regions/dashboard_skeleton/dashboard_skeleton.js +2 -2
  5. package/dist/components/utilities/friendly_wrap/friendly_wrap.js +1 -1
  6. package/dist/index.css +1 -1
  7. package/dist/index.css.map +1 -1
  8. package/dist/tailwind.css +1 -1
  9. package/dist/tailwind.css.map +1 -1
  10. package/dist/tokens/build/js/tokens.dark.js +33 -1
  11. package/dist/tokens/build/js/tokens.js +33 -1
  12. package/dist/tokens/css/tokens.css +32 -0
  13. package/dist/tokens/css/tokens.dark.css +32 -0
  14. package/dist/tokens/js/tokens.dark.js +32 -0
  15. package/dist/tokens/js/tokens.js +32 -0
  16. package/dist/tokens/json/tokens.dark.json +887 -0
  17. package/dist/tokens/json/tokens.json +887 -0
  18. package/dist/tokens/scss/_tokens.dark.scss +32 -0
  19. package/dist/tokens/scss/_tokens.scss +32 -0
  20. package/dist/tokens/scss/_tokens_custom_properties.scss +32 -0
  21. package/dist/tokens/tokens_table.js +1 -1
  22. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +1 -1
  23. package/dist/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +1 -1
  24. package/dist/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +1 -1
  25. package/dist/vendor/bootstrap-vue/src/components/form-group/form-group.js +4 -4
  26. package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +1 -1
  27. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +2 -2
  28. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +1 -1
  29. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +1 -1
  30. package/package.json +2 -1
  31. package/src/components/base/datepicker/datepicker.vue +2 -2
  32. package/src/components/base/paginated_list/paginated_list.vue +1 -1
  33. package/src/components/regions/dashboard_skeleton/dashboard_skeleton.vue +12 -10
  34. package/src/components/utilities/friendly_wrap/friendly_wrap.vue +1 -1
  35. package/src/tokens/build/css/tokens.css +32 -0
  36. package/src/tokens/build/css/tokens.dark.css +32 -0
  37. package/src/tokens/build/js/tokens.dark.js +32 -0
  38. package/src/tokens/build/js/tokens.js +32 -0
  39. package/src/tokens/build/json/tokens.dark.json +887 -0
  40. package/src/tokens/build/json/tokens.json +887 -0
  41. package/src/tokens/build/scss/_tokens.dark.scss +32 -0
  42. package/src/tokens/build/scss/_tokens.scss +32 -0
  43. package/src/tokens/build/scss/_tokens_custom_properties.scss +32 -0
  44. package/src/tokens/contextual/illustration.tokens.json +366 -0
  45. package/src/tokens/tokens_table.vue +1 -1
  46. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +1 -1
  47. package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +1 -1
  48. package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.spec.js +10 -10
  49. package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +1 -1
  50. package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.spec.js +10 -10
  51. package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +4 -4
  52. package/src/vendor/bootstrap-vue/src/components/form-group/form-group.spec.js +3 -3
  53. package/src/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +1 -1
  54. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +2 -2
  55. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +1 -1
  56. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +1 -1
  57. package/src/vendor/bootstrap-vue/src/components/table/table-lite.spec.js +2 -2
  58. package/src/vendor/bootstrap-vue/src/components/table/table-simple.spec.js +2 -2
  59. package/src/vendor/bootstrap-vue/src/components/table/table.spec.js +2 -2
@@ -242,6 +242,38 @@ $gl-avatar-fallback-background-color-blue: #9dc7f13d; // Blue background for ava
242
242
  $gl-avatar-fallback-background-color-green: #91d4a83d; // Green background for avatar fallback with no particular meaning.
243
243
  $gl-avatar-fallback-background-color-orange: #e9be743d; // Orange background for avatar fallback with no particular meaning.
244
244
  $gl-avatar-fallback-background-color-neutral: #bfbfc33d; // Neutral background for avatar fallback with no particular meaning.
245
+ $gl-illustration-stroke-color-default: #e3e3e8; // Default stroke color to define shape and provide essential detail.
246
+ $gl-illustration-stroke-width-default: 0.09375rem; // Default stroke width to define shape and provide essential detail.
247
+ $gl-illustration-fill-color-default: #423f4f; // Default fill color for an element where specific meaning or emphasis is not required.
248
+ $gl-illustration-status-fill-color-neutral: #6f6796; // Used as a fill to convey a concept which is neither positive or negative.
249
+ $gl-illustration-status-fill-color-success: #3b8581; // Used as a fill to convey a success or active concept, has a positive connotation.
250
+ $gl-illustration-status-fill-color-warning: #ab752f; // Used as a fill to convey a caution or warning concept, has a slightly negative connotation.
251
+ $gl-illustration-status-fill-color-danger: #aa563a; // Used as a fill to convey a critical or danger concept, has a negative connotation.
252
+ $gl-illustration-accent-stroke-color-orange: #e3865f; // Used for orange accent stroke detail on an object or attention-drawing element.
253
+ $gl-illustration-accent-stroke-color-teal: #6baea3; // Used for teal accent stroke detail on an object or attention-drawing element.
254
+ $gl-illustration-accent-stroke-color-strong: #aea5d6; // Used for dark accent stroke detail on an object or attention-drawing element.
255
+ $gl-illustration-accent-fill-color-subtle: #5c5371; // Used to add depth to a secondary element and supporting surface.
256
+ $gl-illustration-accent-fill-color-strong: #6f6796; // Used for an element requiring visual emphasis without competing with primary content or status indicators.
257
+ $gl-illustration-accent-fill-color-orange: #aa563a; // Used to add orange to a secondary element and supporting surface.
258
+ $gl-illustration-accent-fill-color-teal: #3b8581; // Used to add teal to a secondary element and supporting surface.
259
+ $gl-illustration-base-fill-color: #32303c; // Used for the consistent background shape present across all illustrations. Provides a unified foundation that visually grounds each illustration while maintaining system cohesion.
260
+ $gl-illustration-isometric-stroke-color-default: #e3e3e8; // Default stroke color to define shape and provide essential detail in isometric illustration.
261
+ $gl-illustration-isometric-stroke-width-default: 0.09375rem; // Default stroke width to define shape and provide essential detail in isometric illustration.
262
+ $gl-illustration-isometric-glyph-top-fill-color: #5a566c; // Used for the top face of isometric text and number elements.
263
+ $gl-illustration-isometric-glyph-front-fill-color: #423f4f; // Used for the front face of isometric text and number elements.
264
+ $gl-illustration-isometric-glyph-side-fill-color: #373441; // Used for the side face of isometric text and number elements.
265
+ $gl-illustration-isometric-glyph-shadow-fill-color: #292730; // Used for the shadow of isometric text and number elements.
266
+ $gl-illustration-isometric-object-top-fill-color: #aa563a; // Used for the top face of an isometric object or symbol.
267
+ $gl-illustration-isometric-object-front-fill-color: #a54623; // Used for the front face of an isometric object or symbol.
268
+ $gl-illustration-isometric-object-side-fill-color: #8f4424; // Used for the side face of an isometric object or symbol.
269
+ $gl-illustration-isometric-object-highlight-fill-color: #423f4f; // Used for the face of an isometric object or symbol that requires maximum distinction from other elements.
270
+ $gl-illustration-isometric-object-shadow-fill-color: #3d2b2a; // Used for the shadow of an isometric object or symbol.
271
+ $gl-illustration-isometric-accent-top-fill-color: #6d6972; // Used for the top face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
272
+ $gl-illustration-isometric-accent-front-fill-color: #49474d; // Used for the front face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
273
+ $gl-illustration-isometric-accent-side-fill-color: #212023; // Used for the side face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
274
+ $gl-illustration-isometric-base-top-fill-color: #32303c; // Used for the top surface of an isometric base platform.
275
+ $gl-illustration-isometric-base-front-fill-color: #2b2932; // Used for the front face of an isometric base platform.
276
+ $gl-illustration-isometric-base-side-fill-color: #23222b; // Used for the side face of an isometric base platform.
245
277
  $theme-indigo-10: #14143d !default;
246
278
  $theme-indigo-50: #222261 !default;
247
279
  $theme-indigo-100: #303083 !default;
@@ -242,6 +242,38 @@ $gl-avatar-fallback-background-color-blue: #9dc7f13d; // Blue background for ava
242
242
  $gl-avatar-fallback-background-color-green: #91d4a83d; // Green background for avatar fallback with no particular meaning.
243
243
  $gl-avatar-fallback-background-color-orange: #e9be743d; // Orange background for avatar fallback with no particular meaning.
244
244
  $gl-avatar-fallback-background-color-neutral: #bfbfc33d; // Neutral background for avatar fallback with no particular meaning.
245
+ $gl-illustration-stroke-color-default: #171321; // Default stroke color to define shape and provide essential detail.
246
+ $gl-illustration-stroke-width-default: 0.125rem; // Default stroke width to define shape and provide essential detail.
247
+ $gl-illustration-fill-color-default: #fff; // Default fill color for an element where specific meaning or emphasis is not required.
248
+ $gl-illustration-status-fill-color-neutral: #aea5d6; // Used as a fill to convey a concept which is neither positive or negative.
249
+ $gl-illustration-status-fill-color-success: #6fdac9; // Used as a fill to convey a success or active concept, has a positive connotation.
250
+ $gl-illustration-status-fill-color-warning: #fca326; // Used as a fill to convey a caution or warning concept, has a slightly negative connotation.
251
+ $gl-illustration-status-fill-color-danger: #ff9d73; // Used as a fill to convey a critical or danger concept, has a negative connotation.
252
+ $gl-illustration-accent-stroke-color-orange: #ff9d73; // Used for orange accent stroke detail on an object or attention-drawing element.
253
+ $gl-illustration-accent-stroke-color-teal: #6fdac9; // Used for teal accent stroke detail on an object or attention-drawing element.
254
+ $gl-illustration-accent-stroke-color-strong: #aea5d6; // Used for dark accent stroke detail on an object or attention-drawing element.
255
+ $gl-illustration-accent-fill-color-subtle: #d0c5e2; // Used to add depth to a secondary element and supporting surface.
256
+ $gl-illustration-accent-fill-color-strong: #aea5d6; // Used for an element requiring visual emphasis without competing with primary content or status indicators.
257
+ $gl-illustration-accent-fill-color-orange: #ff9d73; // Used to add orange to a secondary element and supporting surface.
258
+ $gl-illustration-accent-fill-color-teal: #6fdac9; // Used to add teal to a secondary element and supporting surface.
259
+ $gl-illustration-base-fill-color: #e7e4f2; // Used for the consistent background shape present across all illustrations. Provides a unified foundation that visually grounds each illustration while maintaining system cohesion.
260
+ $gl-illustration-isometric-stroke-color-default: #171321; // Default stroke color to define shape and provide essential detail in isometric illustration.
261
+ $gl-illustration-isometric-stroke-width-default: 0.125rem; // Default stroke width to define shape and provide essential detail in isometric illustration.
262
+ $gl-illustration-isometric-glyph-top-fill-color: #c5f4ec; // Used for the top face of isometric text and number elements.
263
+ $gl-illustration-isometric-glyph-front-fill-color: #fff; // Used for the front face of isometric text and number elements.
264
+ $gl-illustration-isometric-glyph-side-fill-color: #6fdac9; // Used for the side face of isometric text and number elements.
265
+ $gl-illustration-isometric-glyph-shadow-fill-color: #10b1b1; // Used for the shadow of isometric text and number elements.
266
+ $gl-illustration-isometric-object-top-fill-color: #ff9d73; // Used for the top face of an isometric object or symbol.
267
+ $gl-illustration-isometric-object-front-fill-color: #ffc2a8; // Used for the front face of an isometric object or symbol.
268
+ $gl-illustration-isometric-object-side-fill-color: #ff7b42; // Used for the side face of an isometric object or symbol.
269
+ $gl-illustration-isometric-object-highlight-fill-color: #fff; // Used for the face of an isometric object or symbol that requires maximum distinction from other elements.
270
+ $gl-illustration-isometric-object-shadow-fill-color: #e24329; // Used for the shadow of an isometric object or symbol.
271
+ $gl-illustration-isometric-accent-top-fill-color: #45424d; // Used for the top face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
272
+ $gl-illustration-isometric-accent-front-fill-color: #74717a; // Used for the front face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
273
+ $gl-illustration-isometric-accent-side-fill-color: #2b2838; // Used for the side face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.
274
+ $gl-illustration-isometric-base-top-fill-color: #e7e4f2; // Used for the top surface of an isometric base platform.
275
+ $gl-illustration-isometric-base-front-fill-color: #d5d0e8; // Used for the front face of an isometric base platform.
276
+ $gl-illustration-isometric-base-side-fill-color: #aea5d6; // Used for the side face of an isometric base platform.
245
277
  $theme-indigo-10: #f8f8ff !default;
246
278
  $theme-indigo-50: #f1f1ff !default;
247
279
  $theme-indigo-100: #dbdbf8 !default;
@@ -651,6 +651,38 @@ $gl-filtered-search-token-data-background-color-default: var(--gl-filtered-searc
651
651
  $gl-filtered-search-token-data-background-color-hover: var(--gl-filtered-search-token-data-background-color-hover);
652
652
  $gl-filtered-search-token-operator-background-color-default: var(--gl-filtered-search-token-operator-background-color-default);
653
653
  $gl-filtered-search-token-operator-background-color-hover: var(--gl-filtered-search-token-operator-background-color-hover);
654
+ $gl-illustration-stroke-color-default: var(--gl-illustration-stroke-color-default);
655
+ $gl-illustration-stroke-width-default: var(--gl-illustration-stroke-width-default);
656
+ $gl-illustration-fill-color-default: var(--gl-illustration-fill-color-default);
657
+ $gl-illustration-status-fill-color-neutral: var(--gl-illustration-status-fill-color-neutral);
658
+ $gl-illustration-status-fill-color-success: var(--gl-illustration-status-fill-color-success);
659
+ $gl-illustration-status-fill-color-warning: var(--gl-illustration-status-fill-color-warning);
660
+ $gl-illustration-status-fill-color-danger: var(--gl-illustration-status-fill-color-danger);
661
+ $gl-illustration-accent-stroke-color-orange: var(--gl-illustration-accent-stroke-color-orange);
662
+ $gl-illustration-accent-stroke-color-teal: var(--gl-illustration-accent-stroke-color-teal);
663
+ $gl-illustration-accent-stroke-color-strong: var(--gl-illustration-accent-stroke-color-strong);
664
+ $gl-illustration-accent-fill-color-subtle: var(--gl-illustration-accent-fill-color-subtle);
665
+ $gl-illustration-accent-fill-color-strong: var(--gl-illustration-accent-fill-color-strong);
666
+ $gl-illustration-accent-fill-color-orange: var(--gl-illustration-accent-fill-color-orange);
667
+ $gl-illustration-accent-fill-color-teal: var(--gl-illustration-accent-fill-color-teal);
668
+ $gl-illustration-base-fill-color: var(--gl-illustration-base-fill-color);
669
+ $gl-illustration-isometric-stroke-color-default: var(--gl-illustration-isometric-stroke-color-default);
670
+ $gl-illustration-isometric-stroke-width-default: var(--gl-illustration-isometric-stroke-width-default);
671
+ $gl-illustration-isometric-glyph-top-fill-color: var(--gl-illustration-isometric-glyph-top-fill-color);
672
+ $gl-illustration-isometric-glyph-front-fill-color: var(--gl-illustration-isometric-glyph-front-fill-color);
673
+ $gl-illustration-isometric-glyph-side-fill-color: var(--gl-illustration-isometric-glyph-side-fill-color);
674
+ $gl-illustration-isometric-glyph-shadow-fill-color: var(--gl-illustration-isometric-glyph-shadow-fill-color);
675
+ $gl-illustration-isometric-object-top-fill-color: var(--gl-illustration-isometric-object-top-fill-color);
676
+ $gl-illustration-isometric-object-front-fill-color: var(--gl-illustration-isometric-object-front-fill-color);
677
+ $gl-illustration-isometric-object-side-fill-color: var(--gl-illustration-isometric-object-side-fill-color);
678
+ $gl-illustration-isometric-object-highlight-fill-color: var(--gl-illustration-isometric-object-highlight-fill-color);
679
+ $gl-illustration-isometric-object-shadow-fill-color: var(--gl-illustration-isometric-object-shadow-fill-color);
680
+ $gl-illustration-isometric-accent-top-fill-color: var(--gl-illustration-isometric-accent-top-fill-color);
681
+ $gl-illustration-isometric-accent-front-fill-color: var(--gl-illustration-isometric-accent-front-fill-color);
682
+ $gl-illustration-isometric-accent-side-fill-color: var(--gl-illustration-isometric-accent-side-fill-color);
683
+ $gl-illustration-isometric-base-top-fill-color: var(--gl-illustration-isometric-base-top-fill-color);
684
+ $gl-illustration-isometric-base-front-fill-color: var(--gl-illustration-isometric-base-front-fill-color);
685
+ $gl-illustration-isometric-base-side-fill-color: var(--gl-illustration-isometric-base-side-fill-color);
654
686
  $gl-label-light-text-color: var(--gl-label-light-text-color);
655
687
  $gl-label-light-button-background-color-default: var(--gl-label-light-button-background-color-default);
656
688
  $gl-label-light-button-background-color-hover: var(--gl-label-light-button-background-color-hover);
@@ -0,0 +1,366 @@
1
+ {
2
+ "illustration": {
3
+ "stroke": {
4
+ "color": {
5
+ "default": {
6
+ "$value": {
7
+ "default": "#171321",
8
+ "dark": "#e3e3e8"
9
+ },
10
+ "$type": "color",
11
+ "$description": "Default stroke color to define shape and provide essential detail."
12
+ }
13
+ },
14
+ "width" : {
15
+ "default": {
16
+ "$value": {
17
+ "default": "2px",
18
+ "dark": "1.5px"
19
+ },
20
+ "$type": "dimension",
21
+ "$description": "Default stroke width to define shape and provide essential detail."
22
+ }
23
+ }
24
+ },
25
+ "fill": {
26
+ "color": {
27
+ "default": {
28
+ "$value": {
29
+ "default": "#fff",
30
+ "dark": "#423f4f"
31
+ },
32
+ "$type": "color",
33
+ "$description": "Default fill color for an element where specific meaning or emphasis is not required."
34
+ }
35
+ }
36
+ },
37
+ "status": {
38
+ "fill": {
39
+ "color": {
40
+ "neutral": {
41
+ "$value": {
42
+ "default": "#aea5d6",
43
+ "dark": "#6f6796"
44
+ },
45
+ "$type": "color",
46
+ "$description": "Used as a fill to convey a concept which is neither positive or negative."
47
+ },
48
+ "success": {
49
+ "$value": {
50
+ "default": "#6fdac9",
51
+ "dark": "#3b8581"
52
+ },
53
+ "$type": "color",
54
+ "$description": "Used as a fill to convey a success or active concept, has a positive connotation."
55
+ },
56
+ "warning": {
57
+ "$value": {
58
+ "default": "#fca326",
59
+ "dark": "#ab752f"
60
+ },
61
+ "$type": "color",
62
+ "$description": "Used as a fill to convey a caution or warning concept, has a slightly negative connotation."
63
+ },
64
+ "danger": {
65
+ "$value": {
66
+ "default": "#ff9d73",
67
+ "dark": "#aa563a"
68
+ },
69
+ "$type": "color",
70
+ "$description": "Used as a fill to convey a critical or danger concept, has a negative connotation."
71
+ }
72
+ }
73
+ }
74
+ },
75
+ "accent": {
76
+ "stroke": {
77
+ "color": {
78
+ "orange": {
79
+ "$value": {
80
+ "default": "#ff9d73",
81
+ "dark": "#e3865f"
82
+ },
83
+ "$type": "color",
84
+ "$description": "Used for orange accent stroke detail on an object or attention-drawing element."
85
+ },
86
+ "teal": {
87
+ "$value": {
88
+ "default": "#6fdac9",
89
+ "dark": "#6baea3"
90
+ },
91
+ "$type": "color",
92
+ "$description": "Used for teal accent stroke detail on an object or attention-drawing element."
93
+ },
94
+ "strong": {
95
+ "$value": {
96
+ "default": "#aea5d6",
97
+ "dark": "#aea5d6"
98
+ },
99
+ "$type": "color",
100
+ "$description": "Used for dark accent stroke detail on an object or attention-drawing element."
101
+ }
102
+ }
103
+ },
104
+ "fill": {
105
+ "color": {
106
+ "subtle": {
107
+ "$value": {
108
+ "default": "#d0c5e2",
109
+ "dark": "#5c5371"
110
+ },
111
+ "$type": "color",
112
+ "$description": "Used to add depth to a secondary element and supporting surface."
113
+ },
114
+ "strong": {
115
+ "$value": {
116
+ "default": "#aea5d6",
117
+ "dark": "#6f6796"
118
+ },
119
+ "$type": "color",
120
+ "$description": "Used for an element requiring visual emphasis without competing with primary content or status indicators."
121
+ },
122
+ "orange": {
123
+ "$value": {
124
+ "default": "#ff9d73",
125
+ "dark": "#aa563a"
126
+ },
127
+ "$type": "color",
128
+ "$description": "Used to add orange to a secondary element and supporting surface."
129
+ },
130
+ "teal": {
131
+ "$value": {
132
+ "default": "#6fdac9",
133
+ "dark": "#3b8581"
134
+ },
135
+ "$type": "color",
136
+ "$description": "Used to add teal to a secondary element and supporting surface."
137
+ }
138
+ }
139
+ }
140
+ },
141
+ "base": {
142
+ "fill": {
143
+ "color": {
144
+ "$value": {
145
+ "default": "#e7e4f2",
146
+ "dark": "#32303c"
147
+ },
148
+ "$type": "color",
149
+ "$description": "Used for the consistent background shape present across all illustrations. Provides a unified foundation that visually grounds each illustration while maintaining system cohesion."
150
+ }
151
+ }
152
+ },
153
+ "isometric": {
154
+ "stroke": {
155
+ "color": {
156
+ "default": {
157
+ "$value": {
158
+ "default": "#171321",
159
+ "dark": "#e3e3e8"
160
+ },
161
+ "$type": "color",
162
+ "$description": "Default stroke color to define shape and provide essential detail in isometric illustration."
163
+ }
164
+ },
165
+ "width": {
166
+ "default": {
167
+ "$value": {
168
+ "default": "2px",
169
+ "dark": "1.5px"
170
+ },
171
+ "$type": "dimension",
172
+ "$description": "Default stroke width to define shape and provide essential detail in isometric illustration."
173
+ }
174
+ }
175
+ },
176
+ "glyph": {
177
+ "top": {
178
+ "fill": {
179
+ "color": {
180
+ "$value": {
181
+ "default": "#c5f4ec",
182
+ "dark": "#5a566c"
183
+ },
184
+ "$type": "color",
185
+ "$description": "Used for the top face of isometric text and number elements."
186
+ }
187
+ }
188
+ },
189
+ "front": {
190
+ "fill": {
191
+ "color": {
192
+ "$value": {
193
+ "default": "#fff",
194
+ "dark": "#423f4f"
195
+ },
196
+ "$type": "color",
197
+ "$description": "Used for the front face of isometric text and number elements."
198
+ }
199
+ }
200
+ },
201
+ "side": {
202
+ "fill": {
203
+ "color": {
204
+ "$value": {
205
+ "default": "#6fdac9",
206
+ "dark": "#373441"
207
+ },
208
+ "$type": "color",
209
+ "$description": "Used for the side face of isometric text and number elements."
210
+ }
211
+ }
212
+ },
213
+ "shadow": {
214
+ "fill": {
215
+ "color": {
216
+ "$value": {
217
+ "default": "#10b1b1",
218
+ "dark": "#292730"
219
+ },
220
+ "$type": "color",
221
+ "$description": "Used for the shadow of isometric text and number elements."
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "object": {
227
+ "top": {
228
+ "fill": {
229
+ "color": {
230
+ "$value": {
231
+ "default": "#ff9d73",
232
+ "dark": "#aa563a"
233
+ },
234
+ "$type": "color",
235
+ "$description": "Used for the top face of an isometric object or symbol."
236
+ }
237
+ }
238
+ },
239
+ "front": {
240
+ "fill": {
241
+ "color": {
242
+ "$value": {
243
+ "default": "#ffc2a8",
244
+ "dark": "#a54623"
245
+ },
246
+ "$type": "color",
247
+ "$description": "Used for the front face of an isometric object or symbol."
248
+ }
249
+ }
250
+ },
251
+ "side": {
252
+ "fill": {
253
+ "color": {
254
+ "$value": {
255
+ "default": "#ff7b42",
256
+ "dark": "#8f4424"
257
+ },
258
+ "$type": "color",
259
+ "$description": "Used for the side face of an isometric object or symbol."
260
+ }
261
+ }
262
+ },
263
+ "highlight": {
264
+ "fill": {
265
+ "color": {
266
+ "$value": {
267
+ "default": "#fff",
268
+ "dark": "#423f4f"
269
+ },
270
+ "$type": "color",
271
+ "$description": "Used for the face of an isometric object or symbol that requires maximum distinction from other elements."
272
+ }
273
+ }
274
+ },
275
+ "shadow": {
276
+ "fill": {
277
+ "color": {
278
+ "$value": {
279
+ "default": "#e24329",
280
+ "dark": "#3d2b2a"
281
+ },
282
+ "$type": "color",
283
+ "$description": "Used for the shadow of an isometric object or symbol."
284
+ }
285
+ }
286
+ }
287
+ },
288
+ "accent": {
289
+ "top": {
290
+ "fill": {
291
+ "color": {
292
+ "$value": {
293
+ "default": "#45424d",
294
+ "dark": "#6d6972"
295
+ },
296
+ "$type": "color",
297
+ "$description": "Used for the top face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
298
+ }
299
+ }
300
+ },
301
+ "front": {
302
+ "fill": {
303
+ "color": {
304
+ "$value": {
305
+ "default": "#74717a",
306
+ "dark": "#49474d"
307
+ },
308
+ "$type": "color",
309
+ "$description": "Used for the front face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
310
+ }
311
+ }
312
+ },
313
+ "side": {
314
+ "fill": {
315
+ "color": {
316
+ "$value": {
317
+ "default": "#2b2838",
318
+ "dark": "#212023"
319
+ },
320
+ "$type": "color",
321
+ "$description": "Used for the side face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
322
+ }
323
+ }
324
+ }
325
+ },
326
+ "base": {
327
+ "top": {
328
+ "fill": {
329
+ "color": {
330
+ "$value": {
331
+ "default": "#e7e4f2",
332
+ "dark": "#32303c"
333
+ },
334
+ "$type": "color",
335
+ "$description": "Used for the top surface of an isometric base platform."
336
+ }
337
+ }
338
+ },
339
+ "front": {
340
+ "fill": {
341
+ "color": {
342
+ "$value": {
343
+ "default": "#d5d0e8",
344
+ "dark": "#2b2932"
345
+ },
346
+ "$type": "color",
347
+ "$description": "Used for the front face of an isometric base platform."
348
+ }
349
+ }
350
+ },
351
+ "side": {
352
+ "fill": {
353
+ "color": {
354
+ "$value": {
355
+ "default": "#aea5d6",
356
+ "dark": "#23222b"
357
+ },
358
+ "$type": "color",
359
+ "$description": "Used for the side face of an isometric base platform."
360
+ }
361
+ }
362
+ }
363
+ }
364
+ }
365
+ }
366
+ }
@@ -114,7 +114,7 @@ export default {
114
114
  value: token.$value,
115
115
  valueLabel: this.getValueLabel(token),
116
116
  deprecated: token.deprecated,
117
- description: token.comment,
117
+ description: token.$description,
118
118
  };
119
119
  },
120
120
  transformTokensToTableRows(tokens) {
@@ -70,7 +70,7 @@ export const BDropdown = /*#__PURE__*/ extend({
70
70
  // It needs also to be applied when `block` is disabled to allow multiple
71
71
  // dropdowns to be aligned one line
72
72
  'btn-group': split || !block,
73
- // When `block` is enabled and we are in `split` mode the 'd-flex' class
73
+ // When `block` is enabled and we are in `split` mode the 'gl-flex' class
74
74
  // needs to be applied to allow the buttons to stretch to full width
75
75
  'gl-flex': block && split
76
76
  }
@@ -34,7 +34,7 @@ export const BFormInvalidFeedback = /*#__PURE__*/ extend({
34
34
  props.tag,
35
35
  mergeData(data, {
36
36
  class: {
37
- 'd-block': show,
37
+ '!gl-block': show,
38
38
  'invalid-feedback': !tooltip,
39
39
  'invalid-tooltip': tooltip
40
40
  },
@@ -18,10 +18,10 @@ describe('form-invalid-feedback', () => {
18
18
  wrapper.destroy()
19
19
  })
20
20
 
21
- it('default should not have class d-block', async () => {
21
+ it('default should not have class !gl-block', async () => {
22
22
  const wrapper = mount(BFormInvalidFeedback)
23
23
 
24
- expect(wrapper.classes()).not.toContain('d-block')
24
+ expect(wrapper.classes()).not.toContain('!gl-block')
25
25
 
26
26
  wrapper.destroy()
27
27
  })
@@ -70,7 +70,7 @@ describe('form-invalid-feedback', () => {
70
70
  wrapper.destroy()
71
71
  })
72
72
 
73
- it('should contain class d-block when force-show is set', async () => {
73
+ it('should contain class !gl-block when force-show is set', async () => {
74
74
  const wrapper = mount(BFormInvalidFeedback, {
75
75
  context: {
76
76
  props: {
@@ -79,12 +79,12 @@ describe('form-invalid-feedback', () => {
79
79
  }
80
80
  })
81
81
 
82
- expect(wrapper.classes()).toContain('d-block')
82
+ expect(wrapper.classes()).toContain('!gl-block')
83
83
 
84
84
  wrapper.destroy()
85
85
  })
86
86
 
87
- it('should contain class d-block when state is false', async () => {
87
+ it('should contain class !gl-block when state is false', async () => {
88
88
  const wrapper = mount(BFormInvalidFeedback, {
89
89
  context: {
90
90
  props: {
@@ -93,12 +93,12 @@ describe('form-invalid-feedback', () => {
93
93
  }
94
94
  })
95
95
 
96
- expect(wrapper.classes()).toContain('d-block')
96
+ expect(wrapper.classes()).toContain('!gl-block')
97
97
 
98
98
  wrapper.destroy()
99
99
  })
100
100
 
101
- it('should not contain class d-block when state is true', async () => {
101
+ it('should not contain class !gl-block when state is true', async () => {
102
102
  const wrapper = mount(BFormInvalidFeedback, {
103
103
  context: {
104
104
  props: {
@@ -107,12 +107,12 @@ describe('form-invalid-feedback', () => {
107
107
  }
108
108
  })
109
109
 
110
- expect(wrapper.classes()).not.toContain('d-block')
110
+ expect(wrapper.classes()).not.toContain('!gl-block')
111
111
 
112
112
  wrapper.destroy()
113
113
  })
114
114
 
115
- it('should contain class d-block when force-show is true and state is true', async () => {
115
+ it('should contain class !gl-block when force-show is true and state is true', async () => {
116
116
  const wrapper = mount(BFormInvalidFeedback, {
117
117
  context: {
118
118
  props: {
@@ -122,7 +122,7 @@ describe('form-invalid-feedback', () => {
122
122
  }
123
123
  })
124
124
 
125
- expect(wrapper.classes()).toContain('d-block')
125
+ expect(wrapper.classes()).toContain('!gl-block')
126
126
 
127
127
  wrapper.destroy()
128
128
  })
@@ -34,7 +34,7 @@ export const BFormValidFeedback = /*#__PURE__*/ extend({
34
34
  props.tag,
35
35
  mergeData(data, {
36
36
  class: {
37
- 'd-block': show,
37
+ '!gl-block': show,
38
38
  'valid-feedback': !tooltip,
39
39
  'valid-tooltip': tooltip
40
40
  },