Hierarchy

  • ModalPowers

Index

Methods

Static addModalOnClick

  • Uses the provided options to create

    example

    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;
    }

    Parameters

    Returns Tag

Static validateOptions

Generated using TypeDoc