@gitlab/ui 42.23.1 → 42.25.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.23.1",
3
+ "version": "42.25.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -57,7 +57,7 @@
57
57
  "dependencies": {
58
58
  "@popperjs/core": "^2.11.2",
59
59
  "bootstrap-vue": "2.20.1",
60
- "dompurify": "^2.3.9",
60
+ "dompurify": "^2.3.10",
61
61
  "echarts": "^5.3.2",
62
62
  "iframe-resizer": "^4.3.2",
63
63
  "lodash": "^4.17.20",
@@ -106,7 +106,7 @@
106
106
  "bootstrap": "4.5.3",
107
107
  "cypress": "^6.6.0",
108
108
  "emoji-regex": "^10.0.0",
109
- "eslint": "8.19.0",
109
+ "eslint": "8.20.0",
110
110
  "eslint-import-resolver-jest": "3.0.2",
111
111
  "eslint-plugin-cypress": "2.12.1",
112
112
  "eslint-plugin-storybook": "0.6.1",
@@ -4795,6 +4795,14 @@
4795
4795
  min-width: fit-content !important;
4796
4796
  }
4797
4797
 
4798
+ .gl-min-h-0 {
4799
+ min-height: 0;
4800
+ }
4801
+
4802
+ .gl-min-h-0\! {
4803
+ min-height: 0 !important;
4804
+ }
4805
+
4798
4806
  .gl-min-h-6 {
4799
4807
  min-height: $gl-spacing-scale-6;
4800
4808
  }
@@ -7491,6 +7499,12 @@
7491
7499
  .gl-text-transform-none\! {
7492
7500
  text-transform: none !important;
7493
7501
  }
7502
+ .gl-text-transform-capitalize {
7503
+ text-transform: capitalize;
7504
+ }
7505
+ .gl-text-transform-capitalize\! {
7506
+ text-transform: capitalize !important;
7507
+ }
7494
7508
  .gl-text-overflow-ellipsis {
7495
7509
  text-overflow: ellipsis;
7496
7510
  }
@@ -333,6 +333,10 @@
333
333
  min-width: fit-content;
334
334
  }
335
335
 
336
+ @mixin gl-min-h-0 {
337
+ min-height: 0;
338
+ }
339
+
336
340
  @mixin gl-min-h-6 {
337
341
  min-height: $gl-spacing-scale-6;
338
342
  }
@@ -50,6 +50,10 @@
50
50
  text-transform: none;
51
51
  }
52
52
 
53
+ @mixin gl-text-transform-capitalize {
54
+ text-transform: capitalize;
55
+ }
56
+
53
57
  /**
54
58
  * Text overflow utilities
55
59
  *