@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/CHANGELOG.md +7 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +2 -2
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +2 -2
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.stories.js +1 -1
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.vue +2 -2
- package/src/scss/utilities.scss +2 -2
- package/src/scss/utility-mixins/background.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [55.0.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v55.0.0...v55.0.1) (2023-02-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlDisclosureDropdown:** Ensure default ID is unique ([06326e8](https://gitlab.com/gitlab-org/gitlab-ui/commit/06326e89003bb5c9f13e8b0511bee306fac6ffc7))
|
|
7
|
+
|
|
1
8
|
# [55.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v54.4.1...v55.0.0) (2023-02-06)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -99,12 +99,12 @@ var script = {
|
|
|
99
99
|
},
|
|
100
100
|
/**
|
|
101
101
|
* Custom toggle id.
|
|
102
|
-
*
|
|
102
|
+
* For instance, it can be referenced by tooltip or popover
|
|
103
103
|
*/
|
|
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
|