@gitlab/ui 55.0.0 → 55.0.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": "55.0.0",
3
+ "version": "55.0.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -87,7 +87,7 @@
87
87
  "@gitlab/eslint-plugin": "18.1.0",
88
88
  "@gitlab/fonts": "^1.2.0",
89
89
  "@gitlab/stylelint-config": "4.1.0",
90
- "@gitlab/svgs": "3.18.0",
90
+ "@gitlab/svgs": "3.19.0",
91
91
  "@rollup/plugin-commonjs": "^11.1.0",
92
92
  "@rollup/plugin-node-resolve": "^7.1.3",
93
93
  "@rollup/plugin-replace": "^2.3.2",
@@ -36,7 +36,7 @@ const generateProps = ({
36
36
  loading = defaultValue('loading'),
37
37
  noCaret = defaultValue('noCaret'),
38
38
  placement = defaultValue('placement'),
39
- toggleId = defaultValue('toggleId'),
39
+ toggleId = defaultValue('toggleId')(),
40
40
  toggleText,
41
41
  textSrOnly = defaultValue('textSrOnly'),
42
42
  icon = '',
@@ -111,12 +111,12 @@ export default {
111
111
  },
112
112
  /**
113
113
  * Custom toggle id.
114
- * Fot instance, it can be referenced by tooltip or popover
114
+ * For instance, it can be referenced by tooltip or popover
115
115
  */
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
@@ -219,11 +219,11 @@
219
219
  }
220
220
 
221
221
  .gl-bg-gray-500 {
222
- background-color: $gray-600
222
+ background-color: $gray-500
223
223
  }
224
224
 
225
225
  .gl-bg-gray-500\! {
226
- background-color: $gray-600 !important
226
+ background-color: $gray-500 !important
227
227
  }
228
228
 
229
229
  .gl-bg-gray-600 {
@@ -51,7 +51,7 @@
51
51
  }
52
52
 
53
53
  @mixin gl-bg-gray-500 {
54
- background-color: $gray-600;
54
+ background-color: $gray-500;
55
55
  }
56
56
 
57
57
  @mixin gl-bg-gray-600 {