@gitlab/ui 42.18.1 → 42.19.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.18.1",
3
+ "version": "42.19.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3040,6 +3040,14 @@
3040
3040
  display: table-cell !important;
3041
3041
  }
3042
3042
  }
3043
+
3044
+ .gl-display-contents {
3045
+ display: contents;
3046
+ }
3047
+
3048
+ .gl-display-contents\! {
3049
+ display: contents !important;
3050
+ }
3043
3051
  .gl-align-items-baseline {
3044
3052
  align-items: baseline;
3045
3053
  }
@@ -204,3 +204,7 @@
204
204
  @include gl-display-table-cell;
205
205
  }
206
206
  }
207
+
208
+ @mixin gl-display-contents {
209
+ display: contents;
210
+ }