@ecan-bi/datav 1.4.18 → 1.4.20
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/index.es.js +4571 -4529
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +21 -21
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +61 -0
- package/types/laboratory/pivotTable/index.d.ts +61 -0
- package/types/laboratory/pivotTable/props.d.ts +5 -0
- package/types/map/map/Map.vue.d.ts +1 -0
- package/types/map/map/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -39,6 +39,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
39
39
|
[key: string]: any;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
|
+
configMode: {
|
|
43
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
44
|
+
default?: "halfMode" | "fullMode";
|
|
45
|
+
};
|
|
42
46
|
id: {
|
|
43
47
|
type?: import("vue").PropType<string>;
|
|
44
48
|
default?: string;
|
|
@@ -197,6 +201,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
197
201
|
[key: string]: any;
|
|
198
202
|
};
|
|
199
203
|
};
|
|
204
|
+
configMode: {
|
|
205
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
206
|
+
default?: "halfMode" | "fullMode";
|
|
207
|
+
};
|
|
200
208
|
id: {
|
|
201
209
|
type?: import("vue").PropType<string>;
|
|
202
210
|
default?: string;
|
|
@@ -321,6 +329,55 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
321
329
|
pivotTableRef: import("vue").Ref<any>;
|
|
322
330
|
calculateList: import("vue").Ref<any[]>;
|
|
323
331
|
theme: string;
|
|
332
|
+
customProps: import("vue").ComputedRef<{
|
|
333
|
+
width: string;
|
|
334
|
+
height: string;
|
|
335
|
+
pageId: any;
|
|
336
|
+
data: {
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
}[];
|
|
339
|
+
events: import("../../utils/props").Events;
|
|
340
|
+
id: string;
|
|
341
|
+
dataType: "indicator" | "request" | "static";
|
|
342
|
+
keyName: string;
|
|
343
|
+
type: string;
|
|
344
|
+
graphicConfig: {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
};
|
|
347
|
+
isOpenRequestTimer: boolean;
|
|
348
|
+
requestInterval: number;
|
|
349
|
+
dimensionList: {
|
|
350
|
+
[key: string]: any;
|
|
351
|
+
}[];
|
|
352
|
+
name: string;
|
|
353
|
+
position: string;
|
|
354
|
+
top: string;
|
|
355
|
+
left: string;
|
|
356
|
+
rotate: string;
|
|
357
|
+
zIndex: number;
|
|
358
|
+
scale: number;
|
|
359
|
+
requestUrl: string;
|
|
360
|
+
requestMethod: import("../../utils/props").RequestMethod;
|
|
361
|
+
requestHeaders: string;
|
|
362
|
+
requestParams: import("../../utils/props").RequestParams;
|
|
363
|
+
requestParamsMode: "1" | "2";
|
|
364
|
+
customRequestParams: string;
|
|
365
|
+
dataSetParam: any;
|
|
366
|
+
requestType: any;
|
|
367
|
+
indicatorList: {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
}[];
|
|
370
|
+
isShow: boolean;
|
|
371
|
+
isRender: boolean;
|
|
372
|
+
isViewRedrawing: boolean;
|
|
373
|
+
requestSort: number;
|
|
374
|
+
componentDoc: null;
|
|
375
|
+
styleConfig: {
|
|
376
|
+
[key: string]: any;
|
|
377
|
+
};
|
|
378
|
+
configMode: "halfMode" | "fullMode";
|
|
379
|
+
}>;
|
|
380
|
+
indicatorUrl: import("vue").ComputedRef<any>;
|
|
324
381
|
click: () => void;
|
|
325
382
|
onTableChange: ({ type, data }: {
|
|
326
383
|
type: any;
|
|
@@ -367,6 +424,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
367
424
|
[key: string]: any;
|
|
368
425
|
};
|
|
369
426
|
};
|
|
427
|
+
configMode: {
|
|
428
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
429
|
+
default?: "halfMode" | "fullMode";
|
|
430
|
+
};
|
|
370
431
|
id: {
|
|
371
432
|
type?: import("vue").PropType<string>;
|
|
372
433
|
default?: string;
|
|
@@ -39,6 +39,10 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
39
39
|
[key: string]: any;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
|
+
configMode: {
|
|
43
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
44
|
+
default?: "halfMode" | "fullMode";
|
|
45
|
+
};
|
|
42
46
|
id: {
|
|
43
47
|
type?: import("vue").PropType<string>;
|
|
44
48
|
default?: string;
|
|
@@ -197,6 +201,10 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
197
201
|
[key: string]: any;
|
|
198
202
|
};
|
|
199
203
|
};
|
|
204
|
+
configMode: {
|
|
205
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
206
|
+
default?: "halfMode" | "fullMode";
|
|
207
|
+
};
|
|
200
208
|
id: {
|
|
201
209
|
type?: import("vue").PropType<string>;
|
|
202
210
|
default?: string;
|
|
@@ -321,6 +329,55 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
321
329
|
pivotTableRef: import("vue").Ref<any>;
|
|
322
330
|
calculateList: import("vue").Ref<any[]>;
|
|
323
331
|
theme: string;
|
|
332
|
+
customProps: import("vue").ComputedRef<{
|
|
333
|
+
width: string;
|
|
334
|
+
height: string;
|
|
335
|
+
pageId: any;
|
|
336
|
+
data: {
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
}[];
|
|
339
|
+
events: import("../../utils/props").Events;
|
|
340
|
+
id: string;
|
|
341
|
+
dataType: "indicator" | "request" | "static";
|
|
342
|
+
keyName: string;
|
|
343
|
+
type: string;
|
|
344
|
+
graphicConfig: {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
};
|
|
347
|
+
isOpenRequestTimer: boolean;
|
|
348
|
+
requestInterval: number;
|
|
349
|
+
dimensionList: {
|
|
350
|
+
[key: string]: any;
|
|
351
|
+
}[];
|
|
352
|
+
name: string;
|
|
353
|
+
position: string;
|
|
354
|
+
top: string;
|
|
355
|
+
left: string;
|
|
356
|
+
rotate: string;
|
|
357
|
+
zIndex: number;
|
|
358
|
+
scale: number;
|
|
359
|
+
requestUrl: string;
|
|
360
|
+
requestMethod: import("../../utils/props").RequestMethod;
|
|
361
|
+
requestHeaders: string;
|
|
362
|
+
requestParams: import("../../utils/props").RequestParams;
|
|
363
|
+
requestParamsMode: "1" | "2";
|
|
364
|
+
customRequestParams: string;
|
|
365
|
+
dataSetParam: any;
|
|
366
|
+
requestType: any;
|
|
367
|
+
indicatorList: {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
}[];
|
|
370
|
+
isShow: boolean;
|
|
371
|
+
isRender: boolean;
|
|
372
|
+
isViewRedrawing: boolean;
|
|
373
|
+
requestSort: number;
|
|
374
|
+
componentDoc: null;
|
|
375
|
+
styleConfig: {
|
|
376
|
+
[key: string]: any;
|
|
377
|
+
};
|
|
378
|
+
configMode: "halfMode" | "fullMode";
|
|
379
|
+
}>;
|
|
380
|
+
indicatorUrl: import("vue").ComputedRef<any>;
|
|
324
381
|
click: () => void;
|
|
325
382
|
onTableChange: ({ type, data }: {
|
|
326
383
|
type: any;
|
|
@@ -367,6 +424,10 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
|
|
|
367
424
|
[key: string]: any;
|
|
368
425
|
};
|
|
369
426
|
};
|
|
427
|
+
configMode: {
|
|
428
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
429
|
+
default?: "halfMode" | "fullMode";
|
|
430
|
+
};
|
|
370
431
|
id: {
|
|
371
432
|
type?: import("vue").PropType<string>;
|
|
372
433
|
default?: string;
|
|
@@ -15,6 +15,7 @@ export interface PivotTableProps extends Props {
|
|
|
15
15
|
styleConfig: {
|
|
16
16
|
[key: string]: any;
|
|
17
17
|
};
|
|
18
|
+
configMode: 'halfMode' | 'fullMode';
|
|
18
19
|
}
|
|
19
20
|
export declare const pivotTableProps: PivotTableProps;
|
|
20
21
|
export declare const pivotTableComponentProps: {
|
|
@@ -58,6 +59,10 @@ export declare const pivotTableComponentProps: {
|
|
|
58
59
|
[key: string]: any;
|
|
59
60
|
};
|
|
60
61
|
};
|
|
62
|
+
configMode: {
|
|
63
|
+
type?: import("vue").PropType<"halfMode" | "fullMode">;
|
|
64
|
+
default?: "halfMode" | "fullMode";
|
|
65
|
+
};
|
|
61
66
|
id: {
|
|
62
67
|
type?: import("vue").PropType<string>;
|
|
63
68
|
default?: string;
|
package/types/map/map/index.d.ts
CHANGED