@devtable/dashboard 14.11.2 → 14.13.0
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/dashboard-editor/model/queries/queries.d.ts +4 -2
- package/dist/dashboard.es.js +441 -434
- package/dist/dashboard.umd.js +4 -4
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +4 -2
- package/dist/stats.html +1 -1
- package/dist/utils/download.d.ts +2 -2
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -3518,13 +3518,15 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3518
3518
|
post_process: string;
|
|
3519
3519
|
run_by: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
3520
3520
|
}[];
|
|
3521
|
+
readonly root: any;
|
|
3522
|
+
readonly dashboardName: any;
|
|
3521
3523
|
readonly contentModel: (object & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyComplexType>) | import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyStateTreeNode>;
|
|
3522
3524
|
readonly visibleQueryIDSet: Set<string>;
|
|
3523
3525
|
isQueryInUse(queryID: string): boolean;
|
|
3524
3526
|
} & {
|
|
3525
3527
|
downloadAllData(): void;
|
|
3526
|
-
downloadDataByQueryIDs(ids: string[]): void;
|
|
3527
|
-
downloadDataByQueryID(id: string): void;
|
|
3528
|
+
downloadDataByQueryIDs(filename: string, ids: string[]): void;
|
|
3529
|
+
downloadDataByQueryID(filename: string | null, id: string): void;
|
|
3528
3530
|
refetchDataByQueryID(queryID: string): void | Promise<void>;
|
|
3529
3531
|
getSchema(ids: string[]): {
|
|
3530
3532
|
definition: {
|