@dosgato/templating 1.1.11 → 1.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/uitemplate.d.ts +8 -0
- package/package.json +1 -1
package/dist/uitemplate.d.ts
CHANGED
|
@@ -350,6 +350,14 @@ export interface UIConfig {
|
|
|
350
350
|
hide?: boolean;
|
|
351
351
|
};
|
|
352
352
|
tracing?: TracingInterface;
|
|
353
|
+
/** Links that appear in the profile menu in the upper right corner of the editing environment. A logout
|
|
354
|
+
* menu is automatically added.
|
|
355
|
+
*/
|
|
356
|
+
profileMenuLinks?: {
|
|
357
|
+
label: string;
|
|
358
|
+
url: string;
|
|
359
|
+
icon?: IconOrSVG;
|
|
360
|
+
}[];
|
|
353
361
|
/** Non-Awaited async call for logging interface interactions if defined.
|
|
354
362
|
* Useful for defining how to log form submissions, interaction clicks, page edits, or state
|
|
355
363
|
* changes of different interfaces. Can be directed to separate endpoint for APM logging as
|