Skip to content

Enums

For ease most options come in Enums to make selection simple and your IDE can type hint potential values. The package comes with a lot of Enums you can utilize but the main ones are below.

Alert Triggers

EnumValueDescription
BeforeLoadbefore_loadTriggers before a form is loaded, can only be triggered when form is locally loaded.
AfterLoadafter_loadTriggers after a form is loaded.
FailedLoadfailed_loadTriggers if a form fails to loaded.
BeforeProcessingbefore_processingTriggers before the api call for processing is made.
AfterProcessingafter_processingTriggers after the api call for processing is made.
FailedValidationfailed_validationTriggers when validation fails.
FailedProcessingfailed_processingTriggers if the api call for processing fails other than validation.
SuccessProcessingsuccess_processingTriggers if the api call for processing is successful.
CancelledcancelledTriggers when a form is cancelled.
FormResetform_resetTriggers when a form is reset.

Alert Types

EnumValueDescription
SuccesssuccessProvides generic vuetify success theme styling.
InfoinfoProvides generic vuetify info theme styling.
WarningwarningProvides generic vuetify warning theme styling.
ErrorerrorProvides generic vuetify error theme styling.

Button Types

EnumValueDescription
ProcessprocessProcess button for Input Forms.
ResetresetReset button for Input Forms.
CancelcancelCancel button for Input Forms.

Loader Events

EnumValueDescription
LoadingloadingForm is currently loading.
LoadedloadedForm has successfully loaded.
ResultsresultsForm has processing results.
ResetresetForm has been reset.
CancelledcancelledForm has been cancelled.
ProcessingprocessingForm is currently processing.
FailedfailedForm has failed to process.
SuccessfulsuccessfulForm has successfully processed.
UpdatedupdatedForm has field data updated.