@devtable/dashboard 9.19.2 → 9.19.3
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.es.js +1031 -1034
- package/dist/dashboard.umd.js +31 -31
- package/dist/main/use-panel-full-screen.d.ts +4 -280
- package/dist/model/panels/index.d.ts +56 -1022
- package/dist/model/panels/panel.d.ts +2 -8
- package/dist/model/queries/index.d.ts +134 -0
- package/dist/panel/viz/index.d.ts +0 -2
- package/dist/plugins/plugin-context.d.ts +4 -280
- package/dist/plugins/viz-components/scatter-chart/viz-scatter-chart.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -575,140 +575,8 @@ export declare function usePanelFullScreen(view: ViewModelInstance, panelID: str
|
|
|
575
575
|
};
|
|
576
576
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
577
577
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
name: string;
|
|
581
|
-
type: import("../model/queries/types").DataSourceType;
|
|
582
|
-
key: string;
|
|
583
|
-
sql: string;
|
|
584
|
-
pre_process: string;
|
|
585
|
-
post_process: string;
|
|
586
|
-
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]>>;
|
|
587
|
-
react_to: 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]>>;
|
|
588
|
-
state: "error" | "loading" | "idle";
|
|
589
|
-
data: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>, [undefined]>>;
|
|
590
|
-
error: any;
|
|
591
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
592
|
-
readonly valid: boolean;
|
|
593
|
-
readonly json: {
|
|
594
|
-
id: string;
|
|
595
|
-
key: string;
|
|
596
|
-
sql: string;
|
|
597
|
-
name: string;
|
|
598
|
-
type: import("../model/queries/types").DataSourceType;
|
|
599
|
-
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]>>;
|
|
600
|
-
react_to: 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]>>;
|
|
601
|
-
pre_process: string;
|
|
602
|
-
post_process: string;
|
|
603
|
-
};
|
|
604
|
-
readonly conditionOptions: {
|
|
605
|
-
label: string;
|
|
606
|
-
value: string;
|
|
607
|
-
group: string;
|
|
608
|
-
}[];
|
|
609
|
-
readonly unmetRunByConditions: string[];
|
|
610
|
-
} & {
|
|
611
|
-
readonly reQueryKey: string;
|
|
612
|
-
readonly runByConditionsMet: boolean;
|
|
613
|
-
readonly conditionNames: {
|
|
614
|
-
context: string[];
|
|
615
|
-
filters: any[];
|
|
616
|
-
};
|
|
617
|
-
} & {
|
|
618
|
-
setName(name: string): void;
|
|
619
|
-
setKey(key: string): void;
|
|
620
|
-
setType(type: import("../model/queries/types").DataSourceType): void;
|
|
621
|
-
setSQL(sql: string): void;
|
|
622
|
-
setRunBy(v: string[]): void;
|
|
623
|
-
setReactTo(v: string[]): void;
|
|
624
|
-
setPreProcess(v: string): void;
|
|
625
|
-
setPostProcess(v: string): void;
|
|
626
|
-
} & {
|
|
627
|
-
readonly formattedSQL: any;
|
|
628
|
-
readonly typedAsSQL: boolean;
|
|
629
|
-
readonly typedAsHTTP: boolean;
|
|
630
|
-
readonly datasource: any;
|
|
631
|
-
readonly httpConfigString: string;
|
|
632
|
-
} & {
|
|
633
|
-
readonly stateMessage: string;
|
|
634
|
-
} & {
|
|
635
|
-
controller: AbortController;
|
|
636
|
-
} & {
|
|
637
|
-
runSQL: () => Promise<void>;
|
|
638
|
-
runHTTP: () => Promise<void>;
|
|
639
|
-
} & {
|
|
640
|
-
fetchData: () => Promise<void>;
|
|
641
|
-
beforeDestroy(): void;
|
|
642
|
-
} & {
|
|
643
|
-
afterCreate(): void;
|
|
644
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
645
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
646
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
647
|
-
type: import("mobx-state-tree").ISimpleType<import("../model/queries/types").DataSourceType>;
|
|
648
|
-
key: import("mobx-state-tree").ISimpleType<string>;
|
|
649
|
-
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
650
|
-
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
651
|
-
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
652
|
-
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
653
|
-
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
654
|
-
} & {
|
|
655
|
-
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<"error" | "loading" | "idle">, [undefined]>;
|
|
656
|
-
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>, [undefined]>;
|
|
657
|
-
error: import("mobx-state-tree").IType<any, any, any>;
|
|
658
|
-
}, {
|
|
659
|
-
readonly valid: boolean;
|
|
660
|
-
readonly json: {
|
|
661
|
-
id: string;
|
|
662
|
-
key: string;
|
|
663
|
-
sql: string;
|
|
664
|
-
name: string;
|
|
665
|
-
type: import("../model/queries/types").DataSourceType;
|
|
666
|
-
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]>>;
|
|
667
|
-
react_to: 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]>>;
|
|
668
|
-
pre_process: string;
|
|
669
|
-
post_process: string;
|
|
670
|
-
};
|
|
671
|
-
readonly conditionOptions: {
|
|
672
|
-
label: string;
|
|
673
|
-
value: string;
|
|
674
|
-
group: string;
|
|
675
|
-
}[];
|
|
676
|
-
readonly unmetRunByConditions: string[];
|
|
677
|
-
} & {
|
|
678
|
-
readonly reQueryKey: string;
|
|
679
|
-
readonly runByConditionsMet: boolean;
|
|
680
|
-
readonly conditionNames: {
|
|
681
|
-
context: string[];
|
|
682
|
-
filters: any[];
|
|
683
|
-
};
|
|
684
|
-
} & {
|
|
685
|
-
setName(name: string): void;
|
|
686
|
-
setKey(key: string): void;
|
|
687
|
-
setType(type: import("../model/queries/types").DataSourceType): void;
|
|
688
|
-
setSQL(sql: string): void;
|
|
689
|
-
setRunBy(v: string[]): void;
|
|
690
|
-
setReactTo(v: string[]): void;
|
|
691
|
-
setPreProcess(v: string): void;
|
|
692
|
-
setPostProcess(v: string): void;
|
|
693
|
-
} & {
|
|
694
|
-
readonly formattedSQL: any;
|
|
695
|
-
readonly typedAsSQL: boolean;
|
|
696
|
-
readonly typedAsHTTP: boolean;
|
|
697
|
-
readonly datasource: any;
|
|
698
|
-
readonly httpConfigString: string;
|
|
699
|
-
} & {
|
|
700
|
-
readonly stateMessage: string;
|
|
701
|
-
} & {
|
|
702
|
-
controller: AbortController;
|
|
703
|
-
} & {
|
|
704
|
-
runSQL: () => Promise<void>;
|
|
705
|
-
runHTTP: () => Promise<void>;
|
|
706
|
-
} & {
|
|
707
|
-
fetchData: () => Promise<void>;
|
|
708
|
-
beforeDestroy(): void;
|
|
709
|
-
} & {
|
|
710
|
-
afterCreate(): void;
|
|
711
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
578
|
+
readonly contentModel: any;
|
|
579
|
+
} & {
|
|
712
580
|
readonly queryIDSet: Set<string>;
|
|
713
581
|
readonly queries: ({
|
|
714
582
|
id: string;
|
|
@@ -845,12 +713,6 @@ export declare function usePanelFullScreen(view: ViewModelInstance, panelID: str
|
|
|
845
713
|
afterCreate(): void;
|
|
846
714
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
847
715
|
readonly data: TPanelData;
|
|
848
|
-
readonly dataStuff: {
|
|
849
|
-
data: ((string[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>) | (number[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>))[];
|
|
850
|
-
len: number;
|
|
851
|
-
state: "error" | "loading" | "idle";
|
|
852
|
-
error: any;
|
|
853
|
-
}[];
|
|
854
716
|
readonly dataLoading: boolean;
|
|
855
717
|
readonly queryStateMessages: string[];
|
|
856
718
|
readonly queryErrors: any[];
|
|
@@ -1981,140 +1843,8 @@ export declare function usePanelFullScreen(view: ViewModelInstance, panelID: str
|
|
|
1981
1843
|
};
|
|
1982
1844
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
1983
1845
|
}, {
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
name: string;
|
|
1987
|
-
type: import("../model/queries/types").DataSourceType;
|
|
1988
|
-
key: string;
|
|
1989
|
-
sql: string;
|
|
1990
|
-
pre_process: string;
|
|
1991
|
-
post_process: string;
|
|
1992
|
-
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]>>;
|
|
1993
|
-
react_to: 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]>>;
|
|
1994
|
-
state: "error" | "loading" | "idle";
|
|
1995
|
-
data: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>, [undefined]>>;
|
|
1996
|
-
error: any;
|
|
1997
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1998
|
-
readonly valid: boolean;
|
|
1999
|
-
readonly json: {
|
|
2000
|
-
id: string;
|
|
2001
|
-
key: string;
|
|
2002
|
-
sql: string;
|
|
2003
|
-
name: string;
|
|
2004
|
-
type: import("../model/queries/types").DataSourceType;
|
|
2005
|
-
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]>>;
|
|
2006
|
-
react_to: 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]>>;
|
|
2007
|
-
pre_process: string;
|
|
2008
|
-
post_process: string;
|
|
2009
|
-
};
|
|
2010
|
-
readonly conditionOptions: {
|
|
2011
|
-
label: string;
|
|
2012
|
-
value: string;
|
|
2013
|
-
group: string;
|
|
2014
|
-
}[];
|
|
2015
|
-
readonly unmetRunByConditions: string[];
|
|
2016
|
-
} & {
|
|
2017
|
-
readonly reQueryKey: string;
|
|
2018
|
-
readonly runByConditionsMet: boolean;
|
|
2019
|
-
readonly conditionNames: {
|
|
2020
|
-
context: string[];
|
|
2021
|
-
filters: any[];
|
|
2022
|
-
};
|
|
2023
|
-
} & {
|
|
2024
|
-
setName(name: string): void;
|
|
2025
|
-
setKey(key: string): void;
|
|
2026
|
-
setType(type: import("../model/queries/types").DataSourceType): void;
|
|
2027
|
-
setSQL(sql: string): void;
|
|
2028
|
-
setRunBy(v: string[]): void;
|
|
2029
|
-
setReactTo(v: string[]): void;
|
|
2030
|
-
setPreProcess(v: string): void;
|
|
2031
|
-
setPostProcess(v: string): void;
|
|
2032
|
-
} & {
|
|
2033
|
-
readonly formattedSQL: any;
|
|
2034
|
-
readonly typedAsSQL: boolean;
|
|
2035
|
-
readonly typedAsHTTP: boolean;
|
|
2036
|
-
readonly datasource: any;
|
|
2037
|
-
readonly httpConfigString: string;
|
|
2038
|
-
} & {
|
|
2039
|
-
readonly stateMessage: string;
|
|
2040
|
-
} & {
|
|
2041
|
-
controller: AbortController;
|
|
2042
|
-
} & {
|
|
2043
|
-
runSQL: () => Promise<void>;
|
|
2044
|
-
runHTTP: () => Promise<void>;
|
|
2045
|
-
} & {
|
|
2046
|
-
fetchData: () => Promise<void>;
|
|
2047
|
-
beforeDestroy(): void;
|
|
2048
|
-
} & {
|
|
2049
|
-
afterCreate(): void;
|
|
2050
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2051
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2052
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2053
|
-
type: import("mobx-state-tree").ISimpleType<import("../model/queries/types").DataSourceType>;
|
|
2054
|
-
key: import("mobx-state-tree").ISimpleType<string>;
|
|
2055
|
-
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
2056
|
-
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2057
|
-
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2058
|
-
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2059
|
-
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2060
|
-
} & {
|
|
2061
|
-
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<"error" | "loading" | "idle">, [undefined]>;
|
|
2062
|
-
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>, [undefined]>;
|
|
2063
|
-
error: import("mobx-state-tree").IType<any, any, any>;
|
|
2064
|
-
}, {
|
|
2065
|
-
readonly valid: boolean;
|
|
2066
|
-
readonly json: {
|
|
2067
|
-
id: string;
|
|
2068
|
-
key: string;
|
|
2069
|
-
sql: string;
|
|
2070
|
-
name: string;
|
|
2071
|
-
type: import("../model/queries/types").DataSourceType;
|
|
2072
|
-
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]>>;
|
|
2073
|
-
react_to: 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]>>;
|
|
2074
|
-
pre_process: string;
|
|
2075
|
-
post_process: string;
|
|
2076
|
-
};
|
|
2077
|
-
readonly conditionOptions: {
|
|
2078
|
-
label: string;
|
|
2079
|
-
value: string;
|
|
2080
|
-
group: string;
|
|
2081
|
-
}[];
|
|
2082
|
-
readonly unmetRunByConditions: string[];
|
|
2083
|
-
} & {
|
|
2084
|
-
readonly reQueryKey: string;
|
|
2085
|
-
readonly runByConditionsMet: boolean;
|
|
2086
|
-
readonly conditionNames: {
|
|
2087
|
-
context: string[];
|
|
2088
|
-
filters: any[];
|
|
2089
|
-
};
|
|
2090
|
-
} & {
|
|
2091
|
-
setName(name: string): void;
|
|
2092
|
-
setKey(key: string): void;
|
|
2093
|
-
setType(type: import("../model/queries/types").DataSourceType): void;
|
|
2094
|
-
setSQL(sql: string): void;
|
|
2095
|
-
setRunBy(v: string[]): void;
|
|
2096
|
-
setReactTo(v: string[]): void;
|
|
2097
|
-
setPreProcess(v: string): void;
|
|
2098
|
-
setPostProcess(v: string): void;
|
|
2099
|
-
} & {
|
|
2100
|
-
readonly formattedSQL: any;
|
|
2101
|
-
readonly typedAsSQL: boolean;
|
|
2102
|
-
readonly typedAsHTTP: boolean;
|
|
2103
|
-
readonly datasource: any;
|
|
2104
|
-
readonly httpConfigString: string;
|
|
2105
|
-
} & {
|
|
2106
|
-
readonly stateMessage: string;
|
|
2107
|
-
} & {
|
|
2108
|
-
controller: AbortController;
|
|
2109
|
-
} & {
|
|
2110
|
-
runSQL: () => Promise<void>;
|
|
2111
|
-
runHTTP: () => Promise<void>;
|
|
2112
|
-
} & {
|
|
2113
|
-
fetchData: () => Promise<void>;
|
|
2114
|
-
beforeDestroy(): void;
|
|
2115
|
-
} & {
|
|
2116
|
-
afterCreate(): void;
|
|
2117
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
1846
|
+
readonly contentModel: any;
|
|
1847
|
+
} & {
|
|
2118
1848
|
readonly queryIDSet: Set<string>;
|
|
2119
1849
|
readonly queries: ({
|
|
2120
1850
|
id: string;
|
|
@@ -2251,12 +1981,6 @@ export declare function usePanelFullScreen(view: ViewModelInstance, panelID: str
|
|
|
2251
1981
|
afterCreate(): void;
|
|
2252
1982
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
2253
1983
|
readonly data: TPanelData;
|
|
2254
|
-
readonly dataStuff: {
|
|
2255
|
-
data: ((string[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>) | (number[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<string[] | number[], string[] | number[], string[] | number[]>>))[];
|
|
2256
|
-
len: number;
|
|
2257
|
-
state: "error" | "loading" | "idle";
|
|
2258
|
-
error: any;
|
|
2259
|
-
}[];
|
|
2260
1984
|
readonly dataLoading: boolean;
|
|
2261
1985
|
readonly queryStateMessages: string[];
|
|
2262
1986
|
readonly queryErrors: any[];
|