Cache of components found by value type
Map of all registered components by component name
Signal listing all registered component infos
Signal listing all registered plugin infos
Map of all registered plugins by name
Static ReadonlyANY_Whenever a component can handle any type of reference to multiple entities
Static ReadonlyANY_Components can manage any set of object types
Static ReadonlyANY_The components can manage any composite javascript type. Default when no type has been defined and it's a user defined javascript object (not a data type)
Static ReadonlyANY_Components can manage any set of primitive types
Static ReadonlyANY_The component can manage any standard javascript primitives types. That's usually the default whenever we don't know any particular type string number bigint boolean undefined null symbol is not managed Date, while an object and not a primitive, is managed
Static ReadonlyANY_Whenever a component can handle any type of reference to a single entity or to multiple entities.
Finds action info for the given type and action name
The type to look up
The action name to find
The action info or undefined if not found
Finds component info for the given component class type
The component class type to search for
The component info or null if not found
Finds components that can handle the given value type
The value type to search for, or null/undefined to infer from the value
Optionalvalue: TThe optional value to infer the type from
An array of matching component infos
Finds workflow info by name
The workflow name to search for
The workflow info or undefined if not found
Gets component info for the given component class type, throwing if not found
The component class type to search for
The component info
Lists all action infos registered for the given type
The type to list actions for
An array of action name and info pairs
Finds all the workflow components that can handle the given workflow type
Registers action handlers grouped by type
The action handler information to register
Registers a component in the component registry
The component information to register
Registers a plugin with its components, actions, and workflows
The plugin information to register
Registers a workflow component
The workflow information to register
StaticregistryReturns the global singleton plugin registry
The global XtPluginRegistry instance
Maintain the list of plugins loaded, with their components and actions