@gitlab/ui 72.0.0 → 72.1.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": "72.0.0",
3
+ "version": "72.1.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3938,6 +3938,14 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
3938
3938
  }
3939
3939
  }
3940
3940
 
3941
+ .gl-align-self-baseline {
3942
+ align-self: baseline;
3943
+ }
3944
+
3945
+ .gl-align-self-baseline\! {
3946
+ align-self: baseline !important;
3947
+ }
3948
+
3941
3949
  .gl-order-n1 {
3942
3950
  order: -1;
3943
3951
  }
@@ -5047,6 +5055,14 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
5047
5055
  height: $gl-spacing-scale-9 !important;
5048
5056
  }
5049
5057
 
5058
+ .gl-h-10 {
5059
+ height: $gl-spacing-scale-10;
5060
+ }
5061
+
5062
+ .gl-h-10\! {
5063
+ height: $gl-spacing-scale-10 !important;
5064
+ }
5065
+
5050
5066
  .gl-h-11 {
5051
5067
  height: $gl-spacing-scale-11;
5052
5068
  }
@@ -321,6 +321,10 @@
321
321
  }
322
322
  }
323
323
 
324
+ @mixin gl-align-self-baseline {
325
+ align-self: baseline;
326
+ }
327
+
324
328
  /**
325
329
  * Order utilities
326
330
  *
@@ -208,6 +208,10 @@
208
208
  height: $gl-spacing-scale-9;
209
209
  }
210
210
 
211
+ @mixin gl-h-10 {
212
+ height: $gl-spacing-scale-10;
213
+ }
214
+
211
215
  @mixin gl-h-11 {
212
216
  height: $gl-spacing-scale-11;
213
217
  }