@gitlab/ui 52.1.0 → 52.2.1

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": "52.1.0",
3
+ "version": "52.2.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -113,7 +113,7 @@
113
113
  "babel-preset-vue": "^2.0.2",
114
114
  "bootstrap": "4.5.3",
115
115
  "bootstrap-vue-vue3": "npm:bootstrap-vue@2.23.1",
116
- "cypress": "^11.1.0",
116
+ "cypress": "^11.2.0",
117
117
  "emoji-regex": "^10.0.0",
118
118
  "eslint": "8.28.0",
119
119
  "eslint-import-resolver-jest": "3.0.2",
@@ -109,7 +109,7 @@ export default {
109
109
  >
110
110
  <span
111
111
  v-if="unit"
112
- class="gl-font-sm gl-mr-2 gl-transition-medium gl-opacity-10"
112
+ class="gl-font-sm gl-mx-2 gl-transition-medium gl-opacity-10"
113
113
  :class="{ 'gl-opacity-0!': hideUnits }"
114
114
  data-testid="unit"
115
115
  >{{ unit }}</span
@@ -8136,3 +8136,11 @@
8136
8136
  .gl-z-index-9999\! {
8137
8137
  z-index: 9999 !important
8138
8138
  }
8139
+
8140
+ .gl-isolate {
8141
+ isolation: isolate
8142
+ }
8143
+
8144
+ .gl-isolate\! {
8145
+ isolation: isolate !important
8146
+ }
@@ -27,3 +27,7 @@
27
27
  @mixin gl-z-index-9999 {
28
28
  z-index: 9999;
29
29
  }
30
+
31
+ @mixin gl-isolate {
32
+ isolation: isolate;
33
+ }