Table of Contents

Alert

await ui.alert("Message");

Confirm

var Res = await ui.confirm("Message");

Prompt

var Res = await ui.prompt("Message",Default_Value);

Select

var Res = await ui.select("Message",Keyvalue_Obj,Default_Key);

Dialog

// Com_Name is the name of component (with dashes, not low-dashes)
// and to be imported (Webpack import) in the file calling 
// this ui.dialog util.
var Res = await ui.dialog(Title,Com_Name,Data={});

Notification

ui.notif("Message",Colour);