@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "54.0.0",
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.31.0",
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.8",
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",
@@ -116,7 +116,7 @@ export default {
116
116
  toggleId: {
117
117
  type: String,
118
118
  required: false,
119
- default: uniqueId('dropdown-toggle-btn-'),
119
+ default: () => uniqueId('dropdown-toggle-btn-'),
120
120
  },
121
121
  /**
122
122
  * Additional CSS classes to customize toggle appearance
@@ -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
  }
@@ -819,6 +819,10 @@
819
819
  }
820
820
  }
821
821
 
822
+ @mixin gl-gap-2 {
823
+ gap: $gl-spacing-scale-2;
824
+ }
825
+
822
826
  @mixin gl-gap-3 {
823
827
  gap: $gl-spacing-scale-3;
824
828
  }