@devtable/dashboard 14.11.1 → 14.12.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 +1102 -1097
- 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
|
@@ -3174,13 +3174,15 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3174
3174
|
post_process: string;
|
|
3175
3175
|
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]>>;
|
|
3176
3176
|
}[];
|
|
3177
|
+
readonly root: any;
|
|
3178
|
+
readonly dashboardName: any;
|
|
3177
3179
|
readonly contentModel: (object & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyComplexType>) | import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyStateTreeNode>;
|
|
3178
3180
|
readonly visibleQueryIDSet: Set<string>;
|
|
3179
3181
|
isQueryInUse(queryID: string): boolean;
|
|
3180
3182
|
} & {
|
|
3181
3183
|
downloadAllData(): void;
|
|
3182
|
-
downloadDataByQueryIDs(ids: string[]): void;
|
|
3183
|
-
downloadDataByQueryID(id: string): void;
|
|
3184
|
+
downloadDataByQueryIDs(filename: string, ids: string[]): void;
|
|
3185
|
+
downloadDataByQueryID(filename: string | null, id: string): void;
|
|
3184
3186
|
refetchDataByQueryID(queryID: string): void | Promise<void>;
|
|
3185
3187
|
getSchema(ids: string[]): {
|
|
3186
3188
|
definition: {
|