@gitlab/ui 107.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "107.3.0",
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": "node ./bin/build_tokens.mjs",
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
- throw new Error(
536
- 'Infinite scroll does not support groups. Please set the "infiniteScroll" prop to "false"'
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
  },
@@ -11,6 +11,7 @@
11
11
  @apply gl-flex;
12
12
  @apply gl-justify-center;
13
13
  @apply gl-border;
14
+ @apply gl-h-full;
14
15
  @include gl-action-neutral-colors;
15
16
  transition:
16
17
  box-shadow $gl-transition-duration-medium $gl-easing-out-cubic,
@@ -474,6 +474,10 @@ module.exports = {
474
474
  'inner-1-gray-100': 'inset 0 0 0 1px var(--gray-100, #dcdcde)',
475
475
  'inner-1-border-default':
476
476
  'inset 0 0 0 1px var(--gl-border-color-default, var(--gl-color-neutral-100, #dcdcde))',
477
+ 'inner-1-border-subtle':
478
+ 'inset 0 0 0 1px var(--gl-border-color-subtle, var(--gl-color-neutral-50, #ececef))',
479
+ 'inner-1-border-strong':
480
+ 'inset 0 0 0 1px var(--gl-border-color-strong, var(--gl-color-neutral-200, #bfbfc3))',
477
481
  'inner-1-gray-200': 'inset 0 0 0 1px var(--gray-200, #bfbfc3)',
478
482
  'inner-1-gray-400': 'inset 0 0 0 1px var(--gray-400, #89888d)',
479
483
  'inner-1-red-300': 'inset 0 0 0 1px var(--red-300, #f57f6c)',