@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.
|
|
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.
|
|
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.
|
|
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",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -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
|
}
|