@gitlab/ui 54.1.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [54.1.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v54.1.0...v54.1.1) (2023-01-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlDisclosureDropdown:** Ensure default ID is unique ([3662f91](https://gitlab.com/gitlab-org/gitlab-ui/commit/3662f91cb59088d8d7eff5bf5c5756a41118b669))
7
+
1
8
  # [54.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v54.0.0...v54.1.0) (2023-01-25)
2
9
 
3
10
 
@@ -104,7 +104,7 @@ var script = {
104
104
  toggleId: {
105
105
  type: String,
106
106
  required: false,
107
- default: _uniqueId('dropdown-toggle-btn-')
107
+ default: () => _uniqueId('dropdown-toggle-btn-')
108
108
  },
109
109
  /**
110
110
  * Additional CSS classes to customize toggle appearance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "54.1.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