Merge branch 'master' into BUDI-9016/design-errors-popup

This commit is contained in:
Adria Navarro 2025-02-04 11:12:24 +01:00 committed by GitHub
commit e12f217137
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "3.4.0",
"version": "3.4.1",
"npmClient": "yarn",
"concurrency": 20,
"command": {

View File

@ -34,12 +34,12 @@
export let getOptionValue = (option: O, _index?: number) =>
option as unknown as V
export let getOptionIcon = (option: O, _index?: number) =>
option as unknown as O
export let useOptionIconImage = false
option?.icon ?? undefined
export let getOptionColour = (option: O, _index?: number) =>
option as unknown as O
option?.colour ?? undefined
export let getOptionSubtitle = (option: O, _index?: number) =>
option as unknown as O
option?.subtitle ?? undefined
export let useOptionIconImage = false
export let open: boolean = false
export let readonly: boolean = false
export let quiet: boolean = false

View File

@ -17,11 +17,11 @@
export let getOptionValue = (option: O, _index?: number) =>
option as unknown as V
export let getOptionIcon = (option: O, _index?: number) =>
option as unknown as string
option?.icon ?? undefined
export let getOptionColour = (option: O, _index?: number) =>
option as unknown as string
option?.colour ?? undefined
export let getOptionSubtitle = (option: O, _index?: number) =>
option as unknown as string
option?.subtitle ?? undefined
export let compare = (option: O, value: V) => option === value
export let useOptionIconImage = false
export let isOptionEnabled = (option: O, _index?: number) =>