@gitlab/ui 40.4.0 → 40.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "40.4.0",
3
+ "version": "40.5.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -418,6 +418,14 @@
418
418
  background-color: $purple-50 !important
419
419
  }
420
420
 
421
+ .gl-bg-purple-800 {
422
+ background-color: $purple-800
423
+ }
424
+
425
+ .gl-bg-purple-800\! {
426
+ background-color: $purple-800 !important
427
+ }
428
+
421
429
  .gl-bg-red-50 {
422
430
  background-color: $red-50
423
431
  }
@@ -1197,6 +1205,14 @@
1197
1205
  border-color: $blue-700 !important;
1198
1206
  }
1199
1207
 
1208
+ .gl-border-purple-700 {
1209
+ border-color: $purple-700;
1210
+ }
1211
+
1212
+ .gl-border-purple-700\! {
1213
+ border-color: $purple-700 !important;
1214
+ }
1215
+
1200
1216
  .gl-border-gray-a-08 {
1201
1217
  border-color: $t-gray-a-08;
1202
1218
  }
@@ -2475,6 +2491,14 @@
2475
2491
  color: $purple-700 !important;
2476
2492
  }
2477
2493
 
2494
+ .gl-text-purple-800 {
2495
+ color: $purple-800;
2496
+ }
2497
+
2498
+ .gl-text-purple-800\! {
2499
+ color: $purple-800 !important;
2500
+ }
2501
+
2478
2502
  .gl-text-theme-indigo-200 {
2479
2503
  color: $theme-indigo-200;
2480
2504
  }
@@ -4723,6 +4747,14 @@
4723
4747
  min-height: $gl-spacing-scale-7 !important;
4724
4748
  }
4725
4749
 
4750
+ .gl-min-h-8 {
4751
+ min-height: $gl-spacing-scale-8;
4752
+ }
4753
+
4754
+ .gl-min-h-8\! {
4755
+ min-height: $gl-spacing-scale-8 !important;
4756
+ }
4757
+
4726
4758
  .gl-max-w-15 {
4727
4759
  max-width: $gl-spacing-scale-15;
4728
4760
  }
@@ -146,6 +146,10 @@
146
146
  background-color: $purple-50;
147
147
  }
148
148
 
149
+ @mixin gl-bg-purple-800 {
150
+ background-color: $purple-800;
151
+ }
152
+
149
153
  @mixin gl-bg-red-50 {
150
154
  background-color: $red-50;
151
155
  }
@@ -147,6 +147,10 @@
147
147
  border-color: $blue-700;
148
148
  }
149
149
 
150
+ @mixin gl-border-purple-700 {
151
+ border-color: $purple-700;
152
+ }
153
+
150
154
  @mixin gl-border-gray-a-08 {
151
155
  border-color: $t-gray-a-08;
152
156
  }
@@ -193,6 +193,10 @@
193
193
  color: $purple-700;
194
194
  }
195
195
 
196
+ @mixin gl-text-purple-800 {
197
+ color: $purple-800;
198
+ }
199
+
196
200
  @mixin gl-text-theme-indigo-200 {
197
201
  color: $theme-indigo-200;
198
202
  }
@@ -329,6 +329,10 @@
329
329
  min-height: $gl-spacing-scale-7;
330
330
  }
331
331
 
332
+ @mixin gl-min-h-8 {
333
+ min-height: $gl-spacing-scale-8;
334
+ }
335
+
332
336
  @mixin gl-max-w-15 {
333
337
  max-width: $gl-spacing-scale-15;
334
338
  }