@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/datav",
3
- "version": "1.5.64",
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.53",
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",
@@ -457,6 +457,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
457
457
  widthScale: string;
458
458
  heightScale: string;
459
459
  };
460
+ allComponentList: any[];
460
461
  click: () => void;
461
462
  onTableChange: ({ type, data }: {
462
463
  type: any;
@@ -457,6 +457,7 @@ export declare const EcanPivotTable: import('../../utils/withInstall').SFCWithIn
457
457
  widthScale: string;
458
458
  heightScale: string;
459
459
  };
460
+ allComponentList: any[];
460
461
  click: () => void;
461
462
  onTableChange: ({ type, data }: {
462
463
  type: any;
@@ -81,6 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
81
81
  rule: any;
82
82
  value: any;
83
83
  }[]>;
84
+ allComponentList: any[];
84
85
  getContainer: () => Element;
85
86
  toggleFullScreen: () => void;
86
87
  onDetailCancel: () => void;
@@ -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
  }>;
@@ -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[];