@gitlab/ui 107.4.0 → 107.6.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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [107.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v107.5.0...v107.6.0) (2025-01-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **Banner:** Update border tokens ([0faf4bb](https://gitlab.com/gitlab-org/gitlab-ui/commit/0faf4bbbf668af1e8607a2e578c490d9719c12ff))
7
+
8
+ # [107.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v107.4.0...v107.5.0) (2025-01-21)
9
+
10
+
11
+ ### Features
12
+
13
+ * **GlListbox:** Allow infinite scroll with grouped listbox items ([4d2703f](https://gitlab.com/gitlab-org/gitlab-ui/commit/4d2703f7e17e2be2bb3cdeeb31c028755751c5d1))
14
+
1
15
  # [107.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v107.3.0...v107.4.0) (2025-01-21)
2
16
 
3
17
 
@@ -502,7 +502,8 @@ var script = {
502
502
  immediate: true,
503
503
  handler(newValue) {
504
504
  if (newValue && this.items.some(item => !isOption(item))) {
505
- throw new Error('Infinite scroll does not support groups. Please set the "infiniteScroll" prop to "false"');
505
+ // eslint-disable-next-line no-console
506
+ console.warn('When using grouped options infinite scroll can only be used on the last group.');
506
507
  }
507
508
  }
508
509
  }