@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.
@@ -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, pageSize: number) => void;
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;
@@ -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;