@cellaware/utils 9.4.3 → 9.4.5
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DataContext } from "./client.js";
|
|
2
|
-
import {
|
|
2
|
+
import { ColumnFormat } from "./datagrid.js";
|
|
3
3
|
import { Tag } from "./tag.js";
|
|
4
4
|
export declare const BI_STUDIO_VISIBILITY_PRIVATE = "private";
|
|
5
5
|
export declare const BI_STUDIO_VISIBILITY_PUBLIC = "public";
|
|
@@ -19,14 +19,14 @@ export interface BICanvas {
|
|
|
19
19
|
customerLevel?: boolean;
|
|
20
20
|
}
|
|
21
21
|
export declare function initBICanvas(): BICanvas;
|
|
22
|
-
export interface
|
|
22
|
+
export interface BICanvasCustomWidget {
|
|
23
23
|
widgetId: string;
|
|
24
|
+
columnFormats: ColumnFormat[];
|
|
24
25
|
}
|
|
25
26
|
export interface BICanvasState {
|
|
26
27
|
pages: any[];
|
|
27
28
|
selectedPageId: string;
|
|
28
|
-
|
|
29
|
-
datagridStates: BICanvasCustomWidgetDatagridState[];
|
|
29
|
+
customWidgets: BICanvasCustomWidget[];
|
|
30
30
|
}
|
|
31
31
|
export declare function initBICanvasState(): BICanvasState;
|
|
32
32
|
export interface BiCanvasUsage {
|