Properties of CronCore. These properties are shared across all cron components

Hierarchy

  • CronCoreProps

Properties

cols?: Record<string, number> = ...

Number of columns in the dropdown, e.g. the possible values of minute (0-59) will be displayed in a grid with 5 columns

Default Value

{
second: 5,
minute: 5,
hour: 4,
day: 4,
}
customLocale?: Localization = ...

The custom locale object, used to override values of the current Localization

disabled?: boolean = ...

Disable the cron editor

fields?: Field[] = ...

The segments of the cron expression, such as second, minute, hour, etc.

format?: CronFormat = ...

The format of the cron expression, either crontab or quartz

Default Value

crontab

locale?: string = ...

The locale of the component, such as en, de, etc.

Default Value

en

modelValue?: string = ...

The value of the cron expression

Default Value

crontab: * * * * *, quartz: * * * * * *

period?: string = ...

The id of a period to select

Default Value

last entry of CronCoreProps.periods

periods?: Period[] = ...

The periods to select, e.g. Every month, day, etc.

Generated using TypeDoc