@ecan-bi/datav 1.5.81 → 1.5.83

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.81",
3
+ "version": "1.5.83",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -90,6 +90,7 @@
90
90
  "marked": "3.0.8",
91
91
  "mitt": "^3.0.0",
92
92
  "resize-detector": "^0.3.0",
93
+ "sortablejs": "1.10.2",
93
94
  "vant": "^4.9.5",
94
95
  "vue3-virtual-scroller": "^0.2.3"
95
96
  },
@@ -126,6 +126,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
126
126
  scaleValue: any;
127
127
  defaultPivotTableFontSize: import("vue").ComputedRef<number>;
128
128
  isMobile: import("vue").ComputedRef<boolean>;
129
+ isShowDrillModal: import("vue").Ref<boolean>;
130
+ onCloseModal: () => void;
129
131
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
130
132
  pageId: {
131
133
  type: StringConstructor;
@@ -0,0 +1,34 @@
1
+ export default _sfc_main;
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ theme: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ }, {
8
+ visible: import("vue").Ref<boolean>;
9
+ wrapClassName: import("vue").ComputedRef<string>;
10
+ detailBodyStyle: import("vue").ComputedRef<{
11
+ padding: string;
12
+ height?: undefined;
13
+ overflow?: undefined;
14
+ } | {
15
+ height: string;
16
+ overflow: string;
17
+ padding?: undefined;
18
+ }>;
19
+ isMobile: boolean;
20
+ urlJsonStr: import("vue").Ref<string>;
21
+ linkUrl: import("vue").Ref<string>;
22
+ isIndFullScreen: import("vue").Ref<boolean>;
23
+ modalTitle: import("vue").Ref<string>;
24
+ getContainer: () => Element;
25
+ onCancel: () => void;
26
+ toggleFullScreen: () => void;
27
+ }, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
+ theme: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }>>, {
33
+ theme: string;
34
+ }>;
@@ -27,6 +27,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
27
27
  type: StringConstructor;
28
28
  default: string;
29
29
  };
30
+ isShowMask: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
30
34
  }, {
31
35
  indDetailInfo: {
32
36
  keyName: string;
@@ -68,7 +72,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
68
72
  conditionInfo: import("vue").Ref<any[]>;
69
73
  indicatorUrl: import("vue").ComputedRef<any>;
70
74
  allDimensions: import("vue").Ref<any[]>;
71
- detailLoading: import("vue").Ref<boolean>;
75
+ requestLoading: import("vue").Ref<boolean>;
76
+ isLoadedTable: import("vue").Ref<boolean>;
72
77
  pivotTableRef: import("vue").Ref<any>;
73
78
  lastDetailRef: import("vue").Ref<any>;
74
79
  subDrillModalRef: import("vue").Ref<any>;
@@ -83,6 +88,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
83
88
  }[]>;
84
89
  allComponentList: any[];
85
90
  tableFontSize: import("vue").ComputedRef<string>;
91
+ tableScroll: import("vue").Ref<any>;
92
+ tableRef: import("vue").Ref<any>;
93
+ summaryList: import("vue").Ref<any[]>;
94
+ summaryHeight: number;
95
+ isShowDetailMpdal: import("vue").Ref<boolean>;
96
+ defaultValue: string;
86
97
  getContainer: () => Element;
87
98
  toggleFullScreen: () => void;
88
99
  onDetailCancel: () => void;
@@ -90,7 +101,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
90
101
  type: any;
91
102
  data: any;
92
103
  }) => void;
93
- handleTableChange: (page: any) => void;
104
+ handleTableChange: () => void;
105
+ onCloseDetailModal: () => void;
94
106
  onCloseModal: () => void;
95
107
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
96
108
  theme: {
@@ -121,6 +133,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
121
133
  type: StringConstructor;
122
134
  default: string;
123
135
  };
136
+ isShowMask: {
137
+ type: BooleanConstructor;
138
+ default: boolean;
139
+ };
124
140
  }>>, {
125
141
  pageMode: string;
126
142
  width: string;
@@ -129,5 +145,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
129
145
  drillingMode: string;
130
146
  pivotTableFontSize: number;
131
147
  drillDetailUrl: string;
148
+ isShowMask: boolean;
132
149
  }>;
133
150
  export default _sfc_main;
@@ -22,7 +22,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
22
22
  };
23
23
  }, {
24
24
  visible: import("vue").Ref<boolean>;
25
- loading: import("vue").Ref<boolean>;
25
+ requestLoading: import("vue").Ref<boolean>;
26
26
  pagination: import("vue").Ref<{
27
27
  current: number;
28
28
  pageSize: number;
@@ -49,6 +49,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
49
49
  drillDetailUrl: import("vue").Ref<string>;
50
50
  isIndFullScreen: import("vue").Ref<boolean>;
51
51
  tableFontSize: import("vue").ComputedRef<string>;
52
+ tableScroll: import("vue").Ref<any>;
53
+ tableRef: import("vue").Ref<any>;
54
+ customModalRef: import("vue").Ref<any>;
55
+ isLoadedTable: import("vue").Ref<boolean>;
56
+ isShowCustomModal: import("vue").Ref<boolean>;
57
+ defaultValue: string;
52
58
  handleTableChange: (page: any) => void;
53
59
  getContainer: () => Element;
54
60
  onDetailCancel: () => void;
@@ -126,6 +126,8 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
126
126
  scaleValue: any;
127
127
  defaultPivotTableFontSize: import("vue").ComputedRef<number>;
128
128
  isMobile: import("vue").ComputedRef<boolean>;
129
+ isShowDrillModal: import("vue").Ref<boolean>;
130
+ onCloseModal: () => void;
129
131
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
130
132
  pageId: {
131
133
  type: StringConstructor;
@@ -70,3 +70,6 @@ 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
72
  export declare function loopConditions(list: any[], field: string, flag: boolean): any[];
73
+ export declare function isThousandWithUnit(str: string): boolean;
74
+ export declare function isValidDateStr(str: string): boolean;
75
+ export declare function swapArrItem(arr: any[], i: number, j: number): any[];