mftsccs-browser 2.1.71-beta → 2.1.72-beta
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.
|
@@ -2,6 +2,7 @@ import { BuilderStatefulWidget, WidgetTree } from "../app";
|
|
|
2
2
|
export declare function renderPage(pageId: number, attachNode: HTMLElement, props?: any): Promise<void>;
|
|
3
3
|
export declare function renderLatestWidget(widgetId: number, attachNode: HTMLElement, props?: any): Promise<void>;
|
|
4
4
|
export declare function renderWidget(widgetId: number, attachNode: HTMLElement, props?: any): Promise<void>;
|
|
5
|
+
export declare function materializeWidget(widgetId: number, bulkWidget: any, attachNode: HTMLElement, props?: any): Promise<void>;
|
|
5
6
|
export declare function getWidgetFromId(widgetId: number, visitedWidgets?: number[], token?: string): Promise<WidgetTree>;
|
|
6
7
|
/**
|
|
7
8
|
* This function builds a widget tree. This tree is built fully along with its children
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare function BuildWidgetFromId(id: number): Promise<any>;
|
|
1
|
+
export declare function BuildWidgetFromId(id: number, renderLatest?: boolean): Promise<any>;
|
|
2
2
|
export declare function GetWidgetForTree(data: any, id: number): any;
|