@gitlab/ui 54.2.3 → 54.3.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": "54.2.3",
3
+ "version": "54.3.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -87,7 +87,7 @@
87
87
  "@gitlab/eslint-plugin": "18.1.0",
88
88
  "@gitlab/fonts": "^1.2.0",
89
89
  "@gitlab/stylelint-config": "4.1.0",
90
- "@gitlab/svgs": "3.17.0",
90
+ "@gitlab/svgs": "3.18.0",
91
91
  "@rollup/plugin-commonjs": "^11.1.0",
92
92
  "@rollup/plugin-node-resolve": "^7.1.3",
93
93
  "@rollup/plugin-replace": "^2.3.2",
@@ -4963,6 +4963,14 @@
4963
4963
  min-height: 0 !important;
4964
4964
  }
4965
4965
 
4966
+ .gl-min-h-5 {
4967
+ min-height: $gl-spacing-scale-5;
4968
+ }
4969
+
4970
+ .gl-min-h-5\! {
4971
+ min-height: $gl-spacing-scale-5 !important;
4972
+ }
4973
+
4966
4974
  .gl-min-h-6 {
4967
4975
  min-height: $gl-spacing-scale-6;
4968
4976
  }
@@ -346,6 +346,10 @@
346
346
  min-height: 0;
347
347
  }
348
348
 
349
+ @mixin gl-min-h-5 {
350
+ min-height: $gl-spacing-scale-5;
351
+ }
352
+
349
353
  @mixin gl-min-h-6 {
350
354
  min-height: $gl-spacing-scale-6;
351
355
  }