@gitlab/ui 42.15.0 → 42.16.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": "42.15.0",
3
+ "version": "42.16.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -6178,6 +6178,12 @@
6178
6178
  .gl-gap-3\! {
6179
6179
  gap: $gl-spacing-scale-3 !important;
6180
6180
  }
6181
+ .gl-gap-5 {
6182
+ gap: $gl-spacing-scale-5;
6183
+ }
6184
+ .gl-gap-5\! {
6185
+ gap: $gl-spacing-scale-5 !important;
6186
+ }
6181
6187
  .gl-gap-6 {
6182
6188
  gap: $gl-spacing-scale-6;
6183
6189
  }
@@ -817,6 +817,10 @@
817
817
  gap: $gl-spacing-scale-3;
818
818
  }
819
819
 
820
+ @mixin gl-gap-5 {
821
+ gap: $gl-spacing-scale-5;
822
+ }
823
+
820
824
  @mixin gl-gap-6 {
821
825
  gap: $gl-spacing-scale-6;
822
826
  }