@gitlab/ui 54.0.0 → 54.1.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/CHANGELOG.md +14 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +3 -3
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.vue +1 -1
- package/src/scss/utilities.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": "54.
|
|
3
|
+
"version": "54.1.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -115,10 +115,10 @@
|
|
|
115
115
|
"bootstrap-vue-vue3": "npm:bootstrap-vue@2.23.1",
|
|
116
116
|
"cypress": "^11.2.0",
|
|
117
117
|
"emoji-regex": "^10.0.0",
|
|
118
|
-
"eslint": "8.
|
|
118
|
+
"eslint": "8.32.0",
|
|
119
119
|
"eslint-import-resolver-jest": "3.0.2",
|
|
120
120
|
"eslint-plugin-cypress": "2.12.1",
|
|
121
|
-
"eslint-plugin-storybook": "0.6.
|
|
121
|
+
"eslint-plugin-storybook": "0.6.10",
|
|
122
122
|
"file-loader": "^4.2.0",
|
|
123
123
|
"glob": "^7.2.0",
|
|
124
124
|
"identity-obj-proxy": "^3.0.0",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -6374,6 +6374,12 @@
|
|
|
6374
6374
|
margin-top: #{$gl-spacing-scale-3} !important;
|
|
6375
6375
|
}
|
|
6376
6376
|
}
|
|
6377
|
+
.gl-gap-2 {
|
|
6378
|
+
gap: $gl-spacing-scale-2;
|
|
6379
|
+
}
|
|
6380
|
+
.gl-gap-2\! {
|
|
6381
|
+
gap: $gl-spacing-scale-2 !important;
|
|
6382
|
+
}
|
|
6377
6383
|
.gl-gap-3 {
|
|
6378
6384
|
gap: $gl-spacing-scale-3;
|
|
6379
6385
|
}
|