Enumeration: ComponentType
index.ComponentType
Enum for all inbuilt component types.
See
CUSTOM to create table columns with a custom svelte component
Enumeration Members #
BOOLEAN #
• BOOLEAN = “boolean”
General boolean type with support for unusual boolean-like values, for example string values representing a boolean
See
BooleanComponentTypeProperties
Defined in #
dataComponent/ComponentType.ts:38
CUSTOM #
• CUSTOM = “custom”
Custom type to render a table column with a custom svelte component
See
Defined in #
dataComponent/ComponentType.ts:56
DATE #
• DATE = “date”
Date type supporting the normal JavaScript Date as well as luxon DateTime
See
Defined in #
dataComponent/ComponentType.ts:50
ENUM #
• ENUM = “enum”
Enum type to display enum values fancier, translate them and have default/unknown value names.
See
Defined in #
dataComponent/ComponentType.ts:44
GENERIC #
• GENERIC = “generic”
Internal component type used when generating the component properties for default values
See
GenericComponentTypeProperties
Defined in #
dataComponent/ComponentType.ts:20
NUMBER #
• NUMBER = “number”
General number type
See
Defined in #
dataComponent/ComponentType.ts:26
STRING #
• STRING = “string”
General string type
See