@gitlab/ui 72.4.0 → 72.5.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/CHANGELOG.md +12 -0
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +2 -2
- package/src/scss/utilities.scss +18 -0
- package/src/scss/utility-mixins/sizing.scss +6 -0
- package/src/scss/utility-mixins/spacing.scss +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "72.
|
|
3
|
+
"version": "72.5.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"translations:collect": "make translations.json"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@floating-ui/dom": "1.
|
|
67
|
+
"@floating-ui/dom": "1.4.3",
|
|
68
68
|
"bootstrap-vue": "2.23.1",
|
|
69
69
|
"echarts": "^5.3.2",
|
|
70
70
|
"iframe-resizer": "^4.3.2",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -5233,6 +5233,18 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
5233
5233
|
}
|
|
5234
5234
|
}
|
|
5235
5235
|
|
|
5236
|
+
.gl-md-h-9 {
|
|
5237
|
+
@include gl-media-breakpoint-up(md) {
|
|
5238
|
+
height: $gl-spacing-scale-9;
|
|
5239
|
+
}
|
|
5240
|
+
}
|
|
5241
|
+
|
|
5242
|
+
.gl-md-h-9\! {
|
|
5243
|
+
@include gl-media-breakpoint-up(md) {
|
|
5244
|
+
height: $gl-spacing-scale-9 !important;
|
|
5245
|
+
}
|
|
5246
|
+
}
|
|
5247
|
+
|
|
5236
5248
|
.gl-md-w-15 {
|
|
5237
5249
|
@include gl-media-breakpoint-up(md) {
|
|
5238
5250
|
width: $gl-spacing-scale-15;
|
|
@@ -6072,6 +6084,12 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
6072
6084
|
.gl-pl-11-5\! {
|
|
6073
6085
|
padding-left: $gl-spacing-scale-11-5 !important;
|
|
6074
6086
|
}
|
|
6087
|
+
.gl-pl-12 {
|
|
6088
|
+
padding-left: $gl-spacing-scale-12;
|
|
6089
|
+
}
|
|
6090
|
+
.gl-pl-12\! {
|
|
6091
|
+
padding-left: $gl-spacing-scale-12 !important;
|
|
6092
|
+
}
|
|
6075
6093
|
.gl-pt-0 {
|
|
6076
6094
|
padding-top: 0;
|
|
6077
6095
|
}
|