@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "55.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.
|
|
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
|
-
*
|
|
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
|
package/src/scss/utilities.scss
CHANGED
|
@@ -219,11 +219,11 @@
|
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
.gl-bg-gray-500 {
|
|
222
|
-
background-color: $gray-
|
|
222
|
+
background-color: $gray-500
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
.gl-bg-gray-500\! {
|
|
226
|
-
background-color: $gray-
|
|
226
|
+
background-color: $gray-500 !important
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
.gl-bg-gray-600 {
|