@gitlab/ui 107.4.0 → 107.5.0
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/listbox/listbox.js +2 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +2 -2
- package/src/components/base/new_dropdowns/listbox/listbox.vue +3 -2
- package/src/components/base/tabs/tabs/tabs.scss +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "107.
|
|
3
|
+
"version": "107.5.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"prebuild": "run-s build-tokens build-migration-script",
|
|
34
34
|
"prepare": "run-s build-tokens",
|
|
35
35
|
"copy-fonts": "make copy-fonts",
|
|
36
|
-
"build-tokens": "
|
|
36
|
+
"build-tokens": "make tokens",
|
|
37
37
|
"build-migration-script": "esbuild --bundle --platform=node --target=esnext --outfile=bin/migrate_custom_utils_to_tw.bundled.mjs --format=esm --banner:js=\"import { createRequire as __gl__createRequire } from 'node:module'; const require = __gl__createRequire(import.meta.url);\" bin/migrate_custom_utils_to_tw.mjs",
|
|
38
38
|
"clean": "rm -r dist storybook",
|
|
39
39
|
"cy:a11y": "cypress run --browser chrome --env grepTags=@a11y",
|
|
@@ -532,8 +532,9 @@ export default {
|
|
|
532
532
|
immediate: true,
|
|
533
533
|
handler(newValue) {
|
|
534
534
|
if (newValue && this.items.some((item) => !isOption(item))) {
|
|
535
|
-
|
|
536
|
-
|
|
535
|
+
// eslint-disable-next-line no-console
|
|
536
|
+
console.warn(
|
|
537
|
+
'When using grouped options infinite scroll can only be used on the last group.'
|
|
537
538
|
);
|
|
538
539
|
}
|
|
539
540
|
},
|