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);
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.
Example