@ecan-bi/datav 1.5.64 → 1.5.66
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 +6793 -6631
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +32 -32
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +1 -0
- package/types/laboratory/pivotTable/index.d.ts +1 -0
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +1 -0
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +9 -0
- package/types/utils/util.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.66",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"prepublishOnly": "npm run build"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@ecan-bi/tools": "^1.0.
|
|
33
|
+
"@ecan-bi/tools": "^1.0.56",
|
|
34
34
|
"@sucrase/jest-plugin": "^2.2.0",
|
|
35
35
|
"@types/echarts": "^4.9.15",
|
|
36
36
|
"@types/jest": "^26.0.23",
|
|
@@ -16,6 +16,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
type: NumberConstructor;
|
|
17
17
|
default: number;
|
|
18
18
|
};
|
|
19
|
+
allDimensions: {
|
|
20
|
+
type: ArrayConstructor;
|
|
21
|
+
default: () => any[];
|
|
22
|
+
};
|
|
19
23
|
}, {
|
|
20
24
|
visible: import("vue").Ref<boolean>;
|
|
21
25
|
loading: import("vue").Ref<boolean>;
|
|
@@ -65,9 +69,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
65
69
|
type: NumberConstructor;
|
|
66
70
|
default: number;
|
|
67
71
|
};
|
|
72
|
+
allDimensions: {
|
|
73
|
+
type: ArrayConstructor;
|
|
74
|
+
default: () => any[];
|
|
75
|
+
};
|
|
68
76
|
}>>, {
|
|
69
77
|
fontSize: number;
|
|
70
78
|
theme: string;
|
|
71
79
|
scaleValue: Record<string, any>;
|
|
72
80
|
theDateInfo: Record<string, any>;
|
|
81
|
+
allDimensions: unknown[];
|
|
73
82
|
}>;
|
package/types/utils/util.d.ts
CHANGED
|
@@ -69,3 +69,4 @@ export declare function getFormatWh(target: any, pageTarget: any): number;
|
|
|
69
69
|
export declare const hasChinese: (str: string) => boolean;
|
|
70
70
|
export declare const dragModalAction: (e: any, target: string) => void;
|
|
71
71
|
export declare const getPageId: () => any;
|
|
72
|
+
export declare function loopConditions(list: any[], field: string, flag: boolean): any[];
|