Add Warning Message for Fillet Engine Limitations in CommandBar (#4076)

This commit is contained in:
max
2024-10-08 16:27:58 +02:00
committed by GitHub
parent 24cd1b2ea5
commit 3c5bf70269
4 changed files with 12 additions and 2 deletions

View File

@ -113,6 +113,7 @@ export type CommandArgumentConfig<
commandBarContext: { argumentsToSubmit: Record<string, unknown> }, // Should be the commandbarMachine's context, but it creates a circular dependency
machineContext?: C
) => boolean)
warningMessage?: string
skip?: boolean
/** For showing a summary display of the current value, such as in
* the command bar's header
@ -189,6 +190,7 @@ export type CommandArgument<
) => boolean)
skip?: boolean
machineActor?: Actor<T>
warningMessage?: string
/** For showing a summary display of the current value, such as in
* the command bar's header
*/