Uses the provided options to create
An example of using generateModal to add an onClick to the provided tag which will open a modal centered in the screen.
import { ConfirmModalOptions, ModalPowers, FieldTag } from '@andi/powers'; function buildTagToGenerateModal(skillContext: ISkillContext) { const fieldTag: FieldTag = { text: "Example Field Tag", tagType: FieldTagTypes.Info, key: "uniqueTemplateKeyFieldTag", fields: ["someField"] }; const options: ConfirmModalOptions = { confirmButton: { text: "Confirm", actions: [] }, cancelButton: { text: "Cancel", actions: [] }, body: { header: "Important Information", text: "Look at the following items to see if they're applicable:", bulletedItems: ["Item 1", "Item 2"] }, displayOptions: { tagType: FieldTagTypes.Info, addBlurredBackground: true } } fieldTag.addModalOnClick(options, fieldTag); return fieldTag; }
Generated using TypeDoc
Uses the provided options to create
An example of using generateModal to add an onClick to the provided tag which will open a modal centered in the screen.
import { ConfirmModalOptions, ModalPowers, FieldTag } from '@andi/powers'; function buildTagToGenerateModal(skillContext: ISkillContext) { const fieldTag: FieldTag = { text: "Example Field Tag", tagType: FieldTagTypes.Info, key: "uniqueTemplateKeyFieldTag", fields: ["someField"] }; const options: ConfirmModalOptions = { confirmButton: { text: "Confirm", actions: [] }, cancelButton: { text: "Cancel", actions: [] }, body: { header: "Important Information", text: "Look at the following items to see if they're applicable:", bulletedItems: ["Item 1", "Item 2"] }, displayOptions: { tagType: FieldTagTypes.Info, addBlurredBackground: true } } fieldTag.addModalOnClick(options, fieldTag); return fieldTag; }