@ecan-bi/datav 1.6.16 → 1.6.17

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.6.16",
3
+ "version": "1.6.17",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "dependencies": {
81
81
  "@ecan-bi/indicator-library": "^1.1.1",
82
- "@ecan-bi/tools": "^1.0.65",
82
+ "@ecan-bi/tools": "^1.0.67",
83
83
  "@microsoft/fetch-event-source": "2.0.1",
84
84
  "@types/big.js": "^6.1.6",
85
85
  "ant-design-vue": "^3.1.1",
@@ -95,6 +95,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
95
95
  type?: import("vue").PropType<number>;
96
96
  default?: number;
97
97
  };
98
+ border?: {
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
101
+ };
98
102
  id: {
99
103
  type?: import("vue").PropType<string>;
100
104
  default?: string;
@@ -244,7 +248,179 @@ declare const _sfc_main: import("vue").DefineComponent<{
244
248
  default?: string;
245
249
  };
246
250
  }, {
247
- style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
251
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes | {
252
+ border: string;
253
+ innerHTML?: string;
254
+ class?: any;
255
+ style?: import("vue").StyleValue;
256
+ accesskey?: string;
257
+ contenteditable?: "inherit" | (boolean | "false" | "true");
258
+ contextmenu?: string;
259
+ dir?: string;
260
+ draggable?: boolean | "false" | "true";
261
+ hidden?: boolean | "false" | "true";
262
+ id?: string;
263
+ lang?: string;
264
+ placeholder?: string;
265
+ spellcheck?: boolean | "false" | "true";
266
+ tabindex?: string | number;
267
+ title?: string;
268
+ translate?: "yes" | "no";
269
+ radiogroup?: string;
270
+ role?: string;
271
+ about?: string;
272
+ datatype?: string;
273
+ inlist?: any;
274
+ prefix?: string;
275
+ property?: string;
276
+ resource?: string;
277
+ typeof?: string;
278
+ vocab?: string;
279
+ autocapitalize?: string;
280
+ autocorrect?: string;
281
+ autocave?: string;
282
+ color?: string;
283
+ itemprop?: string;
284
+ itemscope?: boolean | "false" | "true";
285
+ itemtype?: string;
286
+ itemid?: string;
287
+ itemref?: string;
288
+ results?: string | number;
289
+ security?: string;
290
+ unselectable?: "on" | "off";
291
+ inputmode?: "text" | "none" | "url" | "search" | "tel" | "email" | "numeric" | "decimal";
292
+ is?: string;
293
+ 'aria-activedescendant'?: string;
294
+ 'aria-atomic'?: boolean | "false" | "true";
295
+ 'aria-autocomplete'?: "none" | "list" | "both" | "inline";
296
+ 'aria-busy'?: boolean | "false" | "true";
297
+ 'aria-checked'?: "mixed" | (boolean | "false" | "true");
298
+ 'aria-colcount'?: string | number;
299
+ 'aria-colindex'?: string | number;
300
+ 'aria-colspan'?: string | number;
301
+ 'aria-controls'?: string;
302
+ 'aria-current'?: "time" | "date" | "step" | "page" | (boolean | "false" | "true") | "location";
303
+ 'aria-describedby'?: string;
304
+ 'aria-details'?: string;
305
+ 'aria-disabled'?: boolean | "false" | "true";
306
+ 'aria-dropeffect'?: "link" | "none" | "move" | "copy" | "execute" | "popup";
307
+ 'aria-errormessage'?: string;
308
+ 'aria-expanded'?: boolean | "false" | "true";
309
+ 'aria-flowto'?: string;
310
+ 'aria-grabbed'?: boolean | "false" | "true";
311
+ 'aria-haspopup'?: "dialog" | "menu" | "listbox" | "grid" | (boolean | "false" | "true") | "tree";
312
+ 'aria-hidden'?: boolean | "false" | "true";
313
+ 'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling";
314
+ 'aria-keyshortcuts'?: string;
315
+ 'aria-label'?: string;
316
+ 'aria-labelledby'?: string;
317
+ 'aria-level'?: string | number;
318
+ 'aria-live'?: "off" | "assertive" | "polite";
319
+ 'aria-modal'?: boolean | "false" | "true";
320
+ 'aria-multiline'?: boolean | "false" | "true";
321
+ 'aria-multiselectable'?: boolean | "false" | "true";
322
+ 'aria-orientation'?: "vertical" | "horizontal";
323
+ 'aria-owns'?: string;
324
+ 'aria-placeholder'?: string;
325
+ 'aria-posinset'?: string | number;
326
+ 'aria-pressed'?: "mixed" | (boolean | "false" | "true");
327
+ 'aria-readonly'?: boolean | "false" | "true";
328
+ 'aria-relevant'?: "text" | "all" | "additions" | "additions text" | "removals";
329
+ 'aria-required'?: boolean | "false" | "true";
330
+ 'aria-roledescription'?: string;
331
+ 'aria-rowcount'?: string | number;
332
+ 'aria-rowindex'?: string | number;
333
+ 'aria-rowspan'?: string | number;
334
+ 'aria-selected'?: boolean | "false" | "true";
335
+ 'aria-setsize'?: string | number;
336
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
337
+ 'aria-valuemax'?: string | number;
338
+ 'aria-valuemin'?: string | number;
339
+ 'aria-valuenow'?: string | number;
340
+ 'aria-valuetext'?: string;
341
+ onCopy?: (payload: ClipboardEvent) => void;
342
+ onCut?: (payload: ClipboardEvent) => void;
343
+ onPaste?: (payload: ClipboardEvent) => void;
344
+ onCompositionend?: (payload: CompositionEvent) => void;
345
+ onCompositionstart?: (payload: CompositionEvent) => void;
346
+ onCompositionupdate?: (payload: CompositionEvent) => void;
347
+ onDrag?: (payload: DragEvent) => void;
348
+ onDragend?: (payload: DragEvent) => void;
349
+ onDragenter?: (payload: DragEvent) => void;
350
+ onDragexit?: (payload: DragEvent) => void;
351
+ onDragleave?: (payload: DragEvent) => void;
352
+ onDragover?: (payload: DragEvent) => void;
353
+ onDragstart?: (payload: DragEvent) => void;
354
+ onDrop?: (payload: DragEvent) => void;
355
+ onFocus?: (payload: FocusEvent) => void;
356
+ onFocusin?: (payload: FocusEvent) => void;
357
+ onFocusout?: (payload: FocusEvent) => void;
358
+ onBlur?: (payload: FocusEvent) => void;
359
+ onChange?: (payload: Event) => void;
360
+ onBeforeinput?: (payload: Event) => void;
361
+ onInput?: (payload: Event) => void;
362
+ onReset?: (payload: Event) => void;
363
+ onSubmit?: (payload: Event) => void;
364
+ onInvalid?: (payload: Event) => void;
365
+ onLoad?: (payload: Event) => void;
366
+ onError?: (payload: Event) => void;
367
+ onKeydown?: (payload: KeyboardEvent) => void;
368
+ onKeypress?: (payload: KeyboardEvent) => void;
369
+ onKeyup?: (payload: KeyboardEvent) => void;
370
+ onAuxclick?: (payload: MouseEvent) => void;
371
+ onClick?: (payload: MouseEvent) => void;
372
+ onContextmenu?: (payload: MouseEvent) => void;
373
+ onDblclick?: (payload: MouseEvent) => void;
374
+ onMousedown?: (payload: MouseEvent) => void;
375
+ onMouseenter?: (payload: MouseEvent) => void;
376
+ onMouseleave?: (payload: MouseEvent) => void;
377
+ onMousemove?: (payload: MouseEvent) => void;
378
+ onMouseout?: (payload: MouseEvent) => void;
379
+ onMouseover?: (payload: MouseEvent) => void;
380
+ onMouseup?: (payload: MouseEvent) => void;
381
+ onAbort?: (payload: Event) => void;
382
+ onCanplay?: (payload: Event) => void;
383
+ onCanplaythrough?: (payload: Event) => void;
384
+ onDurationchange?: (payload: Event) => void;
385
+ onEmptied?: (payload: Event) => void;
386
+ onEncrypted?: (payload: Event) => void;
387
+ onEnded?: (payload: Event) => void;
388
+ onLoadeddata?: (payload: Event) => void;
389
+ onLoadedmetadata?: (payload: Event) => void;
390
+ onLoadstart?: (payload: Event) => void;
391
+ onPause?: (payload: Event) => void;
392
+ onPlay?: (payload: Event) => void;
393
+ onPlaying?: (payload: Event) => void;
394
+ onProgress?: (payload: Event) => void;
395
+ onRatechange?: (payload: Event) => void;
396
+ onSeeked?: (payload: Event) => void;
397
+ onSeeking?: (payload: Event) => void;
398
+ onStalled?: (payload: Event) => void;
399
+ onSuspend?: (payload: Event) => void;
400
+ onTimeupdate?: (payload: Event) => void;
401
+ onVolumechange?: (payload: Event) => void;
402
+ onWaiting?: (payload: Event) => void;
403
+ onSelect?: (payload: Event) => void;
404
+ onScroll?: (payload: UIEvent) => void;
405
+ onTouchcancel?: (payload: TouchEvent) => void;
406
+ onTouchend?: (payload: TouchEvent) => void;
407
+ onTouchmove?: (payload: TouchEvent) => void;
408
+ onTouchstart?: (payload: TouchEvent) => void;
409
+ onPointerdown?: (payload: PointerEvent) => void;
410
+ onPointermove?: (payload: PointerEvent) => void;
411
+ onPointerup?: (payload: PointerEvent) => void;
412
+ onPointercancel?: (payload: PointerEvent) => void;
413
+ onPointerenter?: (payload: PointerEvent) => void;
414
+ onPointerleave?: (payload: PointerEvent) => void;
415
+ onPointerover?: (payload: PointerEvent) => void;
416
+ onPointerout?: (payload: PointerEvent) => void;
417
+ onWheel?: (payload: WheelEvent) => void;
418
+ onAnimationstart?: (payload: AnimationEvent) => void;
419
+ onAnimationend?: (payload: AnimationEvent) => void;
420
+ onAnimationiteration?: (payload: AnimationEvent) => void;
421
+ onTransitionend?: (payload: TransitionEvent) => void;
422
+ onTransitionstart?: (payload: TransitionEvent) => void;
423
+ }>;
248
424
  gradientStyle: import("vue").ComputedRef<{
249
425
  background: string;
250
426
  } | {
@@ -357,6 +533,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
357
533
  type?: import("vue").PropType<number>;
358
534
  default?: number;
359
535
  };
536
+ border?: {
537
+ type?: import("vue").PropType<string>;
538
+ default?: string;
539
+ };
360
540
  id: {
361
541
  type?: import("vue").PropType<string>;
362
542
  default?: string;
@@ -95,6 +95,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
95
95
  type?: import("vue").PropType<number>;
96
96
  default?: number;
97
97
  };
98
+ border?: {
99
+ type?: import("vue").PropType<string>;
100
+ default?: string;
101
+ };
98
102
  id: {
99
103
  type?: import("vue").PropType<string>;
100
104
  default?: string;
@@ -244,7 +248,179 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
244
248
  default?: string;
245
249
  };
246
250
  }, {
247
- style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
251
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes | {
252
+ border: string;
253
+ innerHTML?: string;
254
+ class?: any;
255
+ style?: import("vue").StyleValue;
256
+ accesskey?: string;
257
+ contenteditable?: "inherit" | (boolean | "false" | "true");
258
+ contextmenu?: string;
259
+ dir?: string;
260
+ draggable?: boolean | "false" | "true";
261
+ hidden?: boolean | "false" | "true";
262
+ id?: string;
263
+ lang?: string;
264
+ placeholder?: string;
265
+ spellcheck?: boolean | "false" | "true";
266
+ tabindex?: string | number;
267
+ title?: string;
268
+ translate?: "yes" | "no";
269
+ radiogroup?: string;
270
+ role?: string;
271
+ about?: string;
272
+ datatype?: string;
273
+ inlist?: any;
274
+ prefix?: string;
275
+ property?: string;
276
+ resource?: string;
277
+ typeof?: string;
278
+ vocab?: string;
279
+ autocapitalize?: string;
280
+ autocorrect?: string;
281
+ autocave?: string;
282
+ color?: string;
283
+ itemprop?: string;
284
+ itemscope?: boolean | "false" | "true";
285
+ itemtype?: string;
286
+ itemid?: string;
287
+ itemref?: string;
288
+ results?: string | number;
289
+ security?: string;
290
+ unselectable?: "on" | "off";
291
+ inputmode?: "text" | "none" | "url" | "search" | "tel" | "email" | "numeric" | "decimal";
292
+ is?: string;
293
+ 'aria-activedescendant'?: string;
294
+ 'aria-atomic'?: boolean | "false" | "true";
295
+ 'aria-autocomplete'?: "none" | "list" | "both" | "inline";
296
+ 'aria-busy'?: boolean | "false" | "true";
297
+ 'aria-checked'?: "mixed" | (boolean | "false" | "true");
298
+ 'aria-colcount'?: string | number;
299
+ 'aria-colindex'?: string | number;
300
+ 'aria-colspan'?: string | number;
301
+ 'aria-controls'?: string;
302
+ 'aria-current'?: "time" | "date" | "step" | "page" | (boolean | "false" | "true") | "location";
303
+ 'aria-describedby'?: string;
304
+ 'aria-details'?: string;
305
+ 'aria-disabled'?: boolean | "false" | "true";
306
+ 'aria-dropeffect'?: "link" | "none" | "move" | "copy" | "execute" | "popup";
307
+ 'aria-errormessage'?: string;
308
+ 'aria-expanded'?: boolean | "false" | "true";
309
+ 'aria-flowto'?: string;
310
+ 'aria-grabbed'?: boolean | "false" | "true";
311
+ 'aria-haspopup'?: "dialog" | "menu" | "listbox" | "grid" | (boolean | "false" | "true") | "tree";
312
+ 'aria-hidden'?: boolean | "false" | "true";
313
+ 'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling";
314
+ 'aria-keyshortcuts'?: string;
315
+ 'aria-label'?: string;
316
+ 'aria-labelledby'?: string;
317
+ 'aria-level'?: string | number;
318
+ 'aria-live'?: "off" | "assertive" | "polite";
319
+ 'aria-modal'?: boolean | "false" | "true";
320
+ 'aria-multiline'?: boolean | "false" | "true";
321
+ 'aria-multiselectable'?: boolean | "false" | "true";
322
+ 'aria-orientation'?: "vertical" | "horizontal";
323
+ 'aria-owns'?: string;
324
+ 'aria-placeholder'?: string;
325
+ 'aria-posinset'?: string | number;
326
+ 'aria-pressed'?: "mixed" | (boolean | "false" | "true");
327
+ 'aria-readonly'?: boolean | "false" | "true";
328
+ 'aria-relevant'?: "text" | "all" | "additions" | "additions text" | "removals";
329
+ 'aria-required'?: boolean | "false" | "true";
330
+ 'aria-roledescription'?: string;
331
+ 'aria-rowcount'?: string | number;
332
+ 'aria-rowindex'?: string | number;
333
+ 'aria-rowspan'?: string | number;
334
+ 'aria-selected'?: boolean | "false" | "true";
335
+ 'aria-setsize'?: string | number;
336
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
337
+ 'aria-valuemax'?: string | number;
338
+ 'aria-valuemin'?: string | number;
339
+ 'aria-valuenow'?: string | number;
340
+ 'aria-valuetext'?: string;
341
+ onCopy?: (payload: ClipboardEvent) => void;
342
+ onCut?: (payload: ClipboardEvent) => void;
343
+ onPaste?: (payload: ClipboardEvent) => void;
344
+ onCompositionend?: (payload: CompositionEvent) => void;
345
+ onCompositionstart?: (payload: CompositionEvent) => void;
346
+ onCompositionupdate?: (payload: CompositionEvent) => void;
347
+ onDrag?: (payload: DragEvent) => void;
348
+ onDragend?: (payload: DragEvent) => void;
349
+ onDragenter?: (payload: DragEvent) => void;
350
+ onDragexit?: (payload: DragEvent) => void;
351
+ onDragleave?: (payload: DragEvent) => void;
352
+ onDragover?: (payload: DragEvent) => void;
353
+ onDragstart?: (payload: DragEvent) => void;
354
+ onDrop?: (payload: DragEvent) => void;
355
+ onFocus?: (payload: FocusEvent) => void;
356
+ onFocusin?: (payload: FocusEvent) => void;
357
+ onFocusout?: (payload: FocusEvent) => void;
358
+ onBlur?: (payload: FocusEvent) => void;
359
+ onChange?: (payload: Event) => void;
360
+ onBeforeinput?: (payload: Event) => void;
361
+ onInput?: (payload: Event) => void;
362
+ onReset?: (payload: Event) => void;
363
+ onSubmit?: (payload: Event) => void;
364
+ onInvalid?: (payload: Event) => void;
365
+ onLoad?: (payload: Event) => void;
366
+ onError?: (payload: Event) => void;
367
+ onKeydown?: (payload: KeyboardEvent) => void;
368
+ onKeypress?: (payload: KeyboardEvent) => void;
369
+ onKeyup?: (payload: KeyboardEvent) => void;
370
+ onAuxclick?: (payload: MouseEvent) => void;
371
+ onClick?: (payload: MouseEvent) => void;
372
+ onContextmenu?: (payload: MouseEvent) => void;
373
+ onDblclick?: (payload: MouseEvent) => void;
374
+ onMousedown?: (payload: MouseEvent) => void;
375
+ onMouseenter?: (payload: MouseEvent) => void;
376
+ onMouseleave?: (payload: MouseEvent) => void;
377
+ onMousemove?: (payload: MouseEvent) => void;
378
+ onMouseout?: (payload: MouseEvent) => void;
379
+ onMouseover?: (payload: MouseEvent) => void;
380
+ onMouseup?: (payload: MouseEvent) => void;
381
+ onAbort?: (payload: Event) => void;
382
+ onCanplay?: (payload: Event) => void;
383
+ onCanplaythrough?: (payload: Event) => void;
384
+ onDurationchange?: (payload: Event) => void;
385
+ onEmptied?: (payload: Event) => void;
386
+ onEncrypted?: (payload: Event) => void;
387
+ onEnded?: (payload: Event) => void;
388
+ onLoadeddata?: (payload: Event) => void;
389
+ onLoadedmetadata?: (payload: Event) => void;
390
+ onLoadstart?: (payload: Event) => void;
391
+ onPause?: (payload: Event) => void;
392
+ onPlay?: (payload: Event) => void;
393
+ onPlaying?: (payload: Event) => void;
394
+ onProgress?: (payload: Event) => void;
395
+ onRatechange?: (payload: Event) => void;
396
+ onSeeked?: (payload: Event) => void;
397
+ onSeeking?: (payload: Event) => void;
398
+ onStalled?: (payload: Event) => void;
399
+ onSuspend?: (payload: Event) => void;
400
+ onTimeupdate?: (payload: Event) => void;
401
+ onVolumechange?: (payload: Event) => void;
402
+ onWaiting?: (payload: Event) => void;
403
+ onSelect?: (payload: Event) => void;
404
+ onScroll?: (payload: UIEvent) => void;
405
+ onTouchcancel?: (payload: TouchEvent) => void;
406
+ onTouchend?: (payload: TouchEvent) => void;
407
+ onTouchmove?: (payload: TouchEvent) => void;
408
+ onTouchstart?: (payload: TouchEvent) => void;
409
+ onPointerdown?: (payload: PointerEvent) => void;
410
+ onPointermove?: (payload: PointerEvent) => void;
411
+ onPointerup?: (payload: PointerEvent) => void;
412
+ onPointercancel?: (payload: PointerEvent) => void;
413
+ onPointerenter?: (payload: PointerEvent) => void;
414
+ onPointerleave?: (payload: PointerEvent) => void;
415
+ onPointerover?: (payload: PointerEvent) => void;
416
+ onPointerout?: (payload: PointerEvent) => void;
417
+ onWheel?: (payload: WheelEvent) => void;
418
+ onAnimationstart?: (payload: AnimationEvent) => void;
419
+ onAnimationend?: (payload: AnimationEvent) => void;
420
+ onAnimationiteration?: (payload: AnimationEvent) => void;
421
+ onTransitionend?: (payload: TransitionEvent) => void;
422
+ onTransitionstart?: (payload: TransitionEvent) => void;
423
+ }>;
248
424
  gradientStyle: import("vue").ComputedRef<{
249
425
  background: string;
250
426
  } | {
@@ -357,6 +533,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
357
533
  type?: import("vue").PropType<number>;
358
534
  default?: number;
359
535
  };
536
+ border?: {
537
+ type?: import("vue").PropType<string>;
538
+ default?: string;
539
+ };
360
540
  id: {
361
541
  type?: import("vue").PropType<string>;
362
542
  default?: string;
@@ -25,6 +25,7 @@ export interface BorderProps extends Props {
25
25
  isFixed: boolean;
26
26
  isFlowGrid: boolean;
27
27
  gridInterval: number;
28
+ border?: string;
28
29
  }
29
30
  export declare const borderProps: BorderProps;
30
31
  export declare const borderComponentProps: {
@@ -124,6 +125,10 @@ export declare const borderComponentProps: {
124
125
  type?: import("vue").PropType<number>;
125
126
  default?: number;
126
127
  };
128
+ border?: {
129
+ type?: import("vue").PropType<string>;
130
+ default?: string;
131
+ };
127
132
  id: {
128
133
  type?: import("vue").PropType<string>;
129
134
  default?: string;
@@ -2,6 +2,11 @@ declare const _sfc_main: {
2
2
  name: string;
3
3
  components: {
4
4
  ATreeSelect: any;
5
+ ADivider: any;
6
+ ACheckbox: any;
7
+ VNodes: (_: any, { attrs }: {
8
+ attrs: any;
9
+ }) => any;
5
10
  };
6
11
  props: {
7
12
  data: {
@@ -56,6 +61,14 @@ declare const _sfc_main: {
56
61
  [key: string]: any;
57
62
  };
58
63
  };
64
+ selectAllOption: {
65
+ type?: import("vue").PropType<boolean>;
66
+ default?: boolean;
67
+ };
68
+ hasAllCheck: {
69
+ type?: import("vue").PropType<boolean>;
70
+ default?: boolean;
71
+ };
59
72
  id: {
60
73
  type?: import("vue").PropType<string>;
61
74
  default?: string;
@@ -214,6 +227,17 @@ declare const _sfc_main: {
214
227
  myValue: import("vue").Ref<any>;
215
228
  loading: import("vue").Ref<boolean>;
216
229
  selectChange: () => void;
230
+ isMultiple: import("vue").ComputedRef<any>;
231
+ isCheckAll: import("vue").Ref<boolean>;
232
+ indeterminate: import("vue").Ref<boolean>;
233
+ hideCheckAll: import("vue").Ref<boolean>;
234
+ renderDropdown: ({ menuNode }: {
235
+ menuNode: any;
236
+ }) => any;
237
+ onOptionAll: (e: any) => void;
238
+ onSearch: (value: string) => void;
239
+ onSelect: () => void;
240
+ onDropdownVisibleChange: (open: boolean) => void;
217
241
  };
218
242
  };
219
243
  export default _sfc_main;
@@ -2,6 +2,11 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
2
2
  name: string;
3
3
  components: {
4
4
  ATreeSelect: any;
5
+ ADivider: any;
6
+ ACheckbox: any;
7
+ VNodes: (_: any, { attrs }: {
8
+ attrs: any;
9
+ }) => any;
5
10
  };
6
11
  props: {
7
12
  data: {
@@ -56,6 +61,14 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
56
61
  [key: string]: any;
57
62
  };
58
63
  };
64
+ selectAllOption: {
65
+ type?: import("vue").PropType<boolean>;
66
+ default?: boolean;
67
+ };
68
+ hasAllCheck: {
69
+ type?: import("vue").PropType<boolean>;
70
+ default?: boolean;
71
+ };
59
72
  id: {
60
73
  type?: import("vue").PropType<string>;
61
74
  default?: string;
@@ -214,6 +227,17 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
214
227
  myValue: import("vue").Ref<any>;
215
228
  loading: import("vue").Ref<boolean>;
216
229
  selectChange: () => void;
230
+ isMultiple: import("vue").ComputedRef<any>;
231
+ isCheckAll: import("vue").Ref<boolean>;
232
+ indeterminate: import("vue").Ref<boolean>;
233
+ hideCheckAll: import("vue").Ref<boolean>;
234
+ renderDropdown: ({ menuNode }: {
235
+ menuNode: any;
236
+ }) => any;
237
+ onOptionAll: (e: any) => void;
238
+ onSearch: (value: string) => void;
239
+ onSelect: () => void;
240
+ onDropdownVisibleChange: (open: boolean) => void;
217
241
  };
218
242
  }> & Record<string, any>;
219
243
  export default EcanTreeSelect;
@@ -27,6 +27,8 @@ export interface TreeSelectProps extends Props {
27
27
  graphicConfig: {
28
28
  [key: string]: any;
29
29
  };
30
+ selectAllOption: boolean;
31
+ hasAllCheck: boolean;
30
32
  }
31
33
  export declare const treeSelectProps: TreeSelectProps;
32
34
  export declare const treeSelectComponentProps: {
@@ -82,6 +84,14 @@ export declare const treeSelectComponentProps: {
82
84
  [key: string]: any;
83
85
  };
84
86
  };
87
+ selectAllOption: {
88
+ type?: import("vue").PropType<boolean>;
89
+ default?: boolean;
90
+ };
91
+ hasAllCheck: {
92
+ type?: import("vue").PropType<boolean>;
93
+ default?: boolean;
94
+ };
85
95
  id: {
86
96
  type?: import("vue").PropType<string>;
87
97
  default?: string;
@@ -99,6 +99,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
99
99
  type?: import("vue").PropType<boolean>;
100
100
  default?: boolean;
101
101
  };
102
+ groupMap: {
103
+ type?: import("vue").PropType<{
104
+ [key: string]: any[];
105
+ }>;
106
+ default?: {
107
+ [key: string]: any[];
108
+ };
109
+ };
102
110
  }, {
103
111
  style: import("vue").ComputedRef<any>;
104
112
  container: import("vue").Ref<any>;
@@ -206,6 +214,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
206
214
  type?: import("vue").PropType<boolean>;
207
215
  default?: boolean;
208
216
  };
217
+ groupMap: {
218
+ type?: import("vue").PropType<{
219
+ [key: string]: any[];
220
+ }>;
221
+ default?: {
222
+ [key: string]: any[];
223
+ };
224
+ };
209
225
  }>>, {
210
226
  pageId: string;
211
227
  customId: string;
@@ -99,6 +99,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
99
99
  type?: import("vue").PropType<boolean>;
100
100
  default?: boolean;
101
101
  };
102
+ groupMap: {
103
+ type?: import("vue").PropType<{
104
+ [key: string]: any[];
105
+ }>;
106
+ default?: {
107
+ [key: string]: any[];
108
+ };
109
+ };
102
110
  }, {
103
111
  style: import("vue").ComputedRef<any>;
104
112
  container: import("vue").Ref<any>;
@@ -206,6 +214,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
206
214
  type?: import("vue").PropType<boolean>;
207
215
  default?: boolean;
208
216
  };
217
+ groupMap: {
218
+ type?: import("vue").PropType<{
219
+ [key: string]: any[];
220
+ }>;
221
+ default?: {
222
+ [key: string]: any[];
223
+ };
224
+ };
209
225
  }>>, {
210
226
  pageId: string;
211
227
  customId: string;
@@ -24,6 +24,9 @@ export interface PageConfig {
24
24
  pivotTableFontSize: string;
25
25
  drillDetailUrl: string;
26
26
  hideLoading?: boolean;
27
+ groupMap: {
28
+ [key: string]: any[];
29
+ };
27
30
  }
28
31
  export declare const pageConfig: PageConfig;
29
32
  export declare const pageConfigComponentProps: {
@@ -115,4 +118,12 @@ export declare const pageConfigComponentProps: {
115
118
  type?: import("vue").PropType<boolean>;
116
119
  default?: boolean;
117
120
  };
121
+ groupMap: {
122
+ type?: import("vue").PropType<{
123
+ [key: string]: any[];
124
+ }>;
125
+ default?: {
126
+ [key: string]: any[];
127
+ };
128
+ };
118
129
  };
@@ -119,6 +119,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
119
119
  type?: import("vue").PropType<boolean>;
120
120
  default?: boolean;
121
121
  };
122
+ groupMap: {
123
+ type?: import("vue").PropType<{
124
+ [key: string]: any[];
125
+ }>;
126
+ default?: {
127
+ [key: string]: any[];
128
+ };
129
+ };
122
130
  }, {
123
131
  providerConfig: import("vue").Ref<HTMLElement>;
124
132
  configStyle: any;
@@ -254,6 +262,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
254
262
  type?: import("vue").PropType<boolean>;
255
263
  default?: boolean;
256
264
  };
265
+ groupMap: {
266
+ type?: import("vue").PropType<{
267
+ [key: string]: any[];
268
+ }>;
269
+ default?: {
270
+ [key: string]: any[];
271
+ };
272
+ };
257
273
  }>>, {
258
274
  pageId: string;
259
275
  customStyle: Record<string, any>;
@@ -108,6 +108,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
108
108
  dropDownMenuStyle: import("vue").Ref<{}>;
109
109
  dropDownMenuVisible: import("vue").Ref<boolean>;
110
110
  toBeSelectedDims: any;
111
+ unitMap: any;
111
112
  getContainer: () => Element;
112
113
  toggleFullScreen: () => void;
113
114
  onDetailCancel: () => void;