@ecan-bi/datav 1.6.42 → 1.6.44
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 +9944 -9734
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +61 -61
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -7
- package/types/common/echarts/Echarts.d.ts +239 -3
- package/types/container/flow-layout/FlowLayout.vue.d.ts +350 -0
- package/types/container/flow-layout/index.d.ts +351 -0
- package/types/container/flow-layout/props.d.ts +185 -0
- package/types/container/index.d.ts +1 -0
- package/types/control/date-picker/DatePicker.vue.d.ts +5 -5
- package/types/control/date-picker/index.d.ts +5 -5
- package/types/control/range-picker/RangePicker.vue.d.ts +4 -2
- package/types/control/range-picker/index.d.ts +4 -2
- package/types/control/select/Select.vue.d.ts +2 -0
- package/types/control/select/index.d.ts +2 -0
- package/types/control/tree-select/TreeSelect.vue.d.ts +3 -4
- package/types/control/tree-select/index.d.ts +3 -4
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +1 -1
- package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +11 -2
- package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +2 -2
- package/types/setting/provider-config/index.d.ts +1 -1
- package/types/text/text/Text.vue.d.ts +1 -0
- package/types/text/text/index.d.ts +1 -0
- package/types/utils/util.d.ts +1 -0
|
@@ -228,10 +228,7 @@ declare const _sfc_main: {
|
|
|
228
228
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
229
229
|
treeData: any;
|
|
230
230
|
treeRenderKey: import("vue").Ref<number>;
|
|
231
|
-
dropdownStyle:
|
|
232
|
-
width: string;
|
|
233
|
-
maxWidth: string;
|
|
234
|
-
};
|
|
231
|
+
dropdownStyle: any;
|
|
235
232
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
236
233
|
myValue: import("vue").Ref<any>;
|
|
237
234
|
loading: import("vue").Ref<boolean>;
|
|
@@ -241,6 +238,8 @@ declare const _sfc_main: {
|
|
|
241
238
|
indeterminate: import("vue").Ref<boolean>;
|
|
242
239
|
hideCheckAll: import("vue").Ref<boolean>;
|
|
243
240
|
treeSelectOpen: import("vue").Ref<boolean>;
|
|
241
|
+
treeSelectWrapRef: import("vue").Ref<any>;
|
|
242
|
+
getPopupContainer: () => HTMLElement;
|
|
244
243
|
getTagLabelText: (label: any, ellipsis?: boolean) => string;
|
|
245
244
|
openDropdown: () => void;
|
|
246
245
|
renderDropdown: ({ menuNode }: {
|
|
@@ -228,10 +228,7 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
228
228
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
229
229
|
treeData: any;
|
|
230
230
|
treeRenderKey: import("vue").Ref<number>;
|
|
231
|
-
dropdownStyle:
|
|
232
|
-
width: string;
|
|
233
|
-
maxWidth: string;
|
|
234
|
-
};
|
|
231
|
+
dropdownStyle: any;
|
|
235
232
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
236
233
|
myValue: import("vue").Ref<any>;
|
|
237
234
|
loading: import("vue").Ref<boolean>;
|
|
@@ -241,6 +238,8 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
241
238
|
indeterminate: import("vue").Ref<boolean>;
|
|
242
239
|
hideCheckAll: import("vue").Ref<boolean>;
|
|
243
240
|
treeSelectOpen: import("vue").Ref<boolean>;
|
|
241
|
+
treeSelectWrapRef: import("vue").Ref<any>;
|
|
242
|
+
getPopupContainer: () => HTMLElement;
|
|
244
243
|
getTagLabelText: (label: any, ellipsis?: boolean) => string;
|
|
245
244
|
openDropdown: () => void;
|
|
246
245
|
renderDropdown: ({ menuNode }: {
|
|
@@ -282,8 +282,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
282
282
|
};
|
|
283
283
|
}>>, {
|
|
284
284
|
pageId: string;
|
|
285
|
-
customStyle: Record<string, any>;
|
|
286
285
|
fixedHeight: string;
|
|
286
|
+
customStyle: Record<string, any>;
|
|
287
287
|
customId: string;
|
|
288
288
|
isOutDrill: boolean;
|
|
289
289
|
}>;
|
|
@@ -113,6 +113,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
113
113
|
dropDownMenuVisible: import("vue").Ref<boolean>;
|
|
114
114
|
toBeSelectedDims: any;
|
|
115
115
|
unitMap: any;
|
|
116
|
+
pageSizeOptions: {
|
|
117
|
+
label: string;
|
|
118
|
+
value: number;
|
|
119
|
+
}[];
|
|
120
|
+
pageSizeSelectRef: import("vue").Ref<any>;
|
|
121
|
+
pageSizeDropdownStyle: import("vue").Ref<{}>;
|
|
116
122
|
getContainer: () => Element;
|
|
117
123
|
toggleFullScreen: () => void;
|
|
118
124
|
onDetailCancel: () => void;
|
|
@@ -120,8 +126,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
120
126
|
type: any;
|
|
121
127
|
data: any;
|
|
122
128
|
}) => void;
|
|
123
|
-
handlePageChange: (current: number
|
|
124
|
-
handleTableChange: (_page: any, _filters: any, sorter: any) => void
|
|
129
|
+
handlePageChange: (current: number) => Promise<void>;
|
|
130
|
+
handleTableChange: (_page: any, _filters: any, sorter: any) => Promise<void>;
|
|
125
131
|
onCloseDetailModal: () => void;
|
|
126
132
|
onCloseModal: () => void;
|
|
127
133
|
onZoomModal: () => void;
|
|
@@ -130,6 +136,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
136
|
formatCellPercent: (text: any, column: any) => string;
|
|
131
137
|
handleExport: () => Promise<void>;
|
|
132
138
|
drillByDimension: (event: any, typeGuid: string) => void;
|
|
139
|
+
getPageSizeSelectContainer: () => Element;
|
|
140
|
+
pageSizeDropdownVisibleChange: (open: any) => void;
|
|
141
|
+
onPageSizeChange: (pageSize: number) => void;
|
|
133
142
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
134
143
|
theme: {
|
|
135
144
|
type: StringConstructor;
|
|
@@ -67,8 +67,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
67
67
|
downloading: import("vue").Ref<boolean>;
|
|
68
68
|
summaryList: import("vue").Ref<any[]>;
|
|
69
69
|
summaryHeight: import("vue").Ref<number>;
|
|
70
|
-
handleTableChange: (_page: any, _filters: any, sorter: any) => void
|
|
71
|
-
handlePageChange: (current: any, pageSize: any) => void
|
|
70
|
+
handleTableChange: (_page: any, _filters: any, sorter: any) => Promise<void>;
|
|
71
|
+
handlePageChange: (current: any, pageSize: any) => Promise<void>;
|
|
72
72
|
getContainer: () => Element;
|
|
73
73
|
onDetailCancel: () => void;
|
|
74
74
|
toggleFullScreen: () => void;
|
|
@@ -282,8 +282,8 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
282
282
|
};
|
|
283
283
|
}>>, {
|
|
284
284
|
pageId: string;
|
|
285
|
-
customStyle: Record<string, any>;
|
|
286
285
|
fixedHeight: string;
|
|
286
|
+
customStyle: Record<string, any>;
|
|
287
287
|
customId: string;
|
|
288
288
|
isOutDrill: boolean;
|
|
289
289
|
}>> & Record<string, any>;
|
|
@@ -552,6 +552,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
552
552
|
onTransitionend?: (payload: TransitionEvent) => void;
|
|
553
553
|
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
554
554
|
}>;
|
|
555
|
+
clickHandler: (e: MouseEvent) => void;
|
|
555
556
|
myText: import("vue").ComputedRef<string>;
|
|
556
557
|
loading: import("vue").Ref<boolean>;
|
|
557
558
|
click: () => void;
|
|
@@ -552,6 +552,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
552
552
|
onTransitionend?: (payload: TransitionEvent) => void;
|
|
553
553
|
onTransitionstart?: (payload: TransitionEvent) => void;
|
|
554
554
|
}>;
|
|
555
|
+
clickHandler: (e: MouseEvent) => void;
|
|
555
556
|
myText: import("vue").ComputedRef<string>;
|
|
556
557
|
loading: import("vue").Ref<boolean>;
|
|
557
558
|
click: () => void;
|
package/types/utils/util.d.ts
CHANGED
|
@@ -73,3 +73,4 @@ export declare function loopConditions(list: any[], field: string, flag: boolean
|
|
|
73
73
|
export declare function isThousandWithUnit(str: string): boolean;
|
|
74
74
|
export declare function isValidDateStr(str: string): boolean;
|
|
75
75
|
export declare function swapArrItem(arr: any[], i: number, j: number): any[];
|
|
76
|
+
export declare function estimateWidth(text: string, fontSize: string): number;
|