@ecan-bi/datav 1.0.25 → 1.0.28

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.
@@ -4,4 +4,5 @@ export declare const GLOBAL_MODEL = "GLOBAL_MODEL";
4
4
  export declare const REQUEST_MODEL = "REQUEST_MODEL";
5
5
  export declare const UPLOAD_PATH: any;
6
6
  export declare const BASE_URL: any;
7
- export declare const TEST_TOKEN = "f24951816ac99e204fe62e1181a6d21556d4471474b60366a6b465b7e00c9d49055c1ed753d8f07065d31bce7405a045888d7a52062b002327eec99fe7957af91eabc9d955afe397b3a2fbe012251f1753c38874b8a3ceb79cc327688f545788bf45a23f69daf21546108e08b3b6022e0a88c25d0f0ffb2ed054315bdd4a2f9a9b3d3060857d6158dea42be67488d82149fa37f5fcc491ca75cd399201131c1b";
7
+ export declare const INDICATOR_URL = "http://59.56.182.79:9192/api/";
8
+ export declare const TEST_TOKEN = "f24951816ac99e204fe62e1181a6d21556d4471474b60366a6b465b7e00c9d49055c1ed753d8f07065d31bce7405a045888d7a52062b002327eec99fe7957af91eabc9d955afe397efee80093e972dc3948b45f8f22df4089cc327688f545788bf45a23f69daf21546108e08b3b6022eeeed185c689b739f631ce5ba9f4293880288adf52c57dae6330ae110028afab1bf29e82bd37b5a9f79a790133c596f14";
@@ -8,3 +8,4 @@ export * from './useTransformChartDataByAttrKey';
8
8
  export * from './useImagePath';
9
9
  export * from './usePageUrl';
10
10
  export * from './useVariablesInText';
11
+ export * from './useRequestDiagramData';
@@ -0,0 +1,6 @@
1
+ /**
2
+ * 请求图表数据接口
3
+ * @returns {{requestDiagram: () => Promise<AxiosResponse<any>>}}
4
+ */
5
+ export declare const useRequestDiagramData: (props: any) => () => Promise<import("axios").AxiosResponse<any, any>>;
6
+ export default useRequestDiagramData;
@@ -4,6 +4,9 @@ export interface ModalProps {
4
4
  type: string;
5
5
  width: string;
6
6
  height: string;
7
+ title: string;
8
+ titleFontSize: string;
9
+ titleColor: string;
7
10
  backgroundColor: string;
8
11
  backgroundImage: string;
9
12
  backgroundSize: string;
@@ -55,6 +58,33 @@ export declare const modalComponentProps: {
55
58
  [key: string]: any;
56
59
  }[];
57
60
  };
61
+ title: {
62
+ type?: undefined;
63
+ default?: undefined;
64
+ } | {
65
+ type: any;
66
+ default: string | boolean | {
67
+ [key: string]: any;
68
+ }[];
69
+ };
70
+ titleFontSize: {
71
+ type?: undefined;
72
+ default?: undefined;
73
+ } | {
74
+ type: any;
75
+ default: string | boolean | {
76
+ [key: string]: any;
77
+ }[];
78
+ };
79
+ titleColor: {
80
+ type?: undefined;
81
+ default?: undefined;
82
+ } | {
83
+ type: any;
84
+ default: string | boolean | {
85
+ [key: string]: any;
86
+ }[];
87
+ };
58
88
  backgroundColor: {
59
89
  type?: undefined;
60
90
  default?: undefined;