Lime Web Components API Documentation - v6.24.0
    Preparing search index...

    Type Alias DialogProperties

    DialogProperties: Record<string, any>

    Properties to pass to a dialog component

    An object mapping property names to values. These will be set as properties on the dialog's web component instance when the dialog is created or updated.

    const properties: DialogProperties = {
    userId: 123,
    mode: 'edit',
    allowDelete: true,
    fields: ['name', 'email', 'phone']
    };
    dialogRenderer.create('user-form-dialog', properties);