mftsccs-browser 2.1.75-beta → 2.1.76-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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Concept } from "../../app";
|
|
2
|
+
export declare function CreateData(json: any, ofConcept?: Concept | null, typeConcept?: string): Promise<any>;
|
|
3
|
+
export declare function removePrefix(key: string): string;
|
|
4
|
+
export declare function addPrefix(key: string): string;
|
|
5
|
+
export declare function addArrayPrefix(key: string): string;
|
|
6
|
+
export declare function removeArrayPrefix(key: string): string;
|
|
7
|
+
export declare function createTypeString(typeConceptString: string, key: string): string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare function BuildWidgetFromId(id: number
|
|
2
|
-
export declare function BuildWidgetFromIdForLatest(id: number
|
|
1
|
+
export declare function BuildWidgetFromId(id: number): Promise<any>;
|
|
2
|
+
export declare function BuildWidgetFromIdForLatest(id: number): Promise<any>;
|
|
3
3
|
export declare function GetWidgetForTree(data: any, id: number): any;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export { AccessTracker } from './AccessTracker/accessTracker';
|
|
|
123
123
|
export { CreateConnectionBetweenEntityLocal } from './Services/CreateConnection/CreateConnectionEntity';
|
|
124
124
|
export { BuildWidgetFromId } from './Widgets/WidgetBuild';
|
|
125
125
|
export { renderLatestWidget, renderPage, renderWidget, convertWidgetTreeToWidgetWithWrapper, getWidgetFromId, convertWidgetTreeToWidget, unwrapContainers, getWidgetBulkFromId } from './Widgets/RenderWidgetService';
|
|
126
|
+
export { CreateData } from './Services/automated/automated-concept-connection';
|
|
126
127
|
type listeners = {
|
|
127
128
|
listenerId: string | number;
|
|
128
129
|
callback: any;
|