@ecan-bi/datav 1.6.38 → 1.6.39

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.
Files changed (52) hide show
  1. package/dist/index.es.js +9074 -9195
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +48 -48
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/common/echarts/Echarts.d.ts +1 -1
  8. package/types/container/border/Border.vue.d.ts +1 -1
  9. package/types/container/border/index.d.ts +1 -1
  10. package/types/control/button/Button.vue.d.ts +4 -4
  11. package/types/control/button/index.d.ts +4 -4
  12. package/types/control/button/props.d.ts +2 -2
  13. package/types/graph/bar/Bar.vue.d.ts +8 -0
  14. package/types/graph/bar/index.d.ts +8 -0
  15. package/types/graph/bar/props.d.ts +5 -0
  16. package/types/graph/combo-graph/ComboGraph.vue.d.ts +8 -0
  17. package/types/graph/combo-graph/index.d.ts +8 -0
  18. package/types/graph/combo-graph/props.d.ts +5 -0
  19. package/types/graph/line/Line.vue.d.ts +8 -0
  20. package/types/graph/line/index.d.ts +8 -0
  21. package/types/graph/line/props.d.ts +6 -0
  22. package/types/graph/pie/Pie.vue.d.ts +8 -0
  23. package/types/graph/pie/index.d.ts +8 -0
  24. package/types/graph/pie/props.d.ts +5 -0
  25. package/types/graph/radar/Radar.vue.d.ts +8 -0
  26. package/types/graph/radar/index.d.ts +8 -0
  27. package/types/graph/radar/props.d.ts +6 -0
  28. package/types/hooks/index.d.ts +1 -0
  29. package/types/hooks/useDataSource.d.ts +10 -0
  30. package/types/laboratory/pivotTable/PivotTableContainer.vue.d.ts +5 -5
  31. package/types/laboratory/pivotTable/index.d.ts +5 -5
  32. package/types/setting/provider-config/ProviderConfig.vue.d.ts +1 -0
  33. package/types/setting/provider-config/drill-modal/DrillModal.vue.d.ts +2 -1
  34. package/types/setting/provider-config/drill-modal/LastDetail.vue.d.ts +9 -0
  35. package/types/setting/provider-config/index.d.ts +1 -0
  36. package/types/table/table/Table.vue.d.ts +16 -0
  37. package/types/table/table/index.d.ts +16 -0
  38. package/types/table/table/props.d.ts +10 -0
  39. package/types/text/counter/Counter.vue.d.ts +16 -0
  40. package/types/text/counter/index.d.ts +16 -0
  41. package/types/text/counter/props.d.ts +10 -0
  42. package/types/text/list/List.vue.d.ts +8 -0
  43. package/types/text/list/index.d.ts +8 -0
  44. package/types/text/list/props.d.ts +5 -0
  45. package/types/text/proportion/Proportion.vue.d.ts +8 -0
  46. package/types/text/proportion/index.d.ts +8 -0
  47. package/types/text/proportion/props.d.ts +5 -0
  48. package/types/text/rectangle/Rectangle.vue.d.ts +1 -0
  49. package/types/text/rectangle/index.d.ts +1 -0
  50. package/types/text/rectangle/props.d.ts +1 -1
  51. package/types/text/text/Text.vue.d.ts +1 -1
  52. package/types/text/text/index.d.ts +1 -1
@@ -9,6 +9,7 @@ export interface TableProps extends Props {
9
9
  bordered: boolean;
10
10
  size: 'default' | 'middle' | 'small' | '';
11
11
  isUseSeq: boolean;
12
+ seqIndex: number;
12
13
  columnsFixedNum: number;
13
14
  scrollX: number;
14
15
  paginationShow: boolean;
@@ -73,6 +74,7 @@ export interface TableProps extends Props {
73
74
  bodyRowHeight: string;
74
75
  headRowHeight: string;
75
76
  tableVersion: number;
77
+ associatId?: string;
76
78
  }
77
79
  export declare const tableProps: TableProps;
78
80
  export declare const tableComponentProps: {
@@ -104,6 +106,10 @@ export declare const tableComponentProps: {
104
106
  type?: import("vue").PropType<boolean>;
105
107
  default?: boolean;
106
108
  };
109
+ seqIndex: {
110
+ type?: import("vue").PropType<number>;
111
+ default?: number;
112
+ };
107
113
  columnsFixedNum: {
108
114
  type?: import("vue").PropType<number>;
109
115
  default?: number;
@@ -344,6 +350,10 @@ export declare const tableComponentProps: {
344
350
  type?: import("vue").PropType<number>;
345
351
  default?: number;
346
352
  };
353
+ associatId?: {
354
+ type?: import("vue").PropType<string>;
355
+ default?: string;
356
+ };
347
357
  id: {
348
358
  type?: import("vue").PropType<string>;
349
359
  default?: string;
@@ -47,6 +47,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
47
47
  [key: string]: any;
48
48
  };
49
49
  };
50
+ associatId?: {
51
+ type?: import("vue").PropType<string>;
52
+ default?: string;
53
+ };
54
+ text?: {
55
+ type?: import("vue").PropType<string>;
56
+ default?: string;
57
+ };
50
58
  id: {
51
59
  type?: import("vue").PropType<string>;
52
60
  default?: string;
@@ -261,6 +269,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
261
269
  [key: string]: any;
262
270
  };
263
271
  };
272
+ associatId?: {
273
+ type?: import("vue").PropType<string>;
274
+ default?: string;
275
+ };
276
+ text?: {
277
+ type?: import("vue").PropType<string>;
278
+ default?: string;
279
+ };
264
280
  id: {
265
281
  type?: import("vue").PropType<string>;
266
282
  default?: string;
@@ -47,6 +47,14 @@ export declare const EcanCounter: import("../../utils/withInstall").SFCWithInsta
47
47
  [key: string]: any;
48
48
  };
49
49
  };
50
+ associatId?: {
51
+ type?: import("vue").PropType<string>;
52
+ default?: string;
53
+ };
54
+ text?: {
55
+ type?: import("vue").PropType<string>;
56
+ default?: string;
57
+ };
50
58
  id: {
51
59
  type?: import("vue").PropType<string>;
52
60
  default?: string;
@@ -261,6 +269,14 @@ export declare const EcanCounter: import("../../utils/withInstall").SFCWithInsta
261
269
  [key: string]: any;
262
270
  };
263
271
  };
272
+ associatId?: {
273
+ type?: import("vue").PropType<string>;
274
+ default?: string;
275
+ };
276
+ text?: {
277
+ type?: import("vue").PropType<string>;
278
+ default?: string;
279
+ };
264
280
  id: {
265
281
  type?: import("vue").PropType<string>;
266
282
  default?: string;
@@ -13,6 +13,8 @@ export interface CounterProps extends Props {
13
13
  graphicConfig: {
14
14
  [key: string]: any;
15
15
  };
16
+ associatId?: string;
17
+ text?: string;
16
18
  }
17
19
  export declare const counterProps: CounterProps;
18
20
  export declare const counterComponentProps: {
@@ -64,6 +66,14 @@ export declare const counterComponentProps: {
64
66
  [key: string]: any;
65
67
  };
66
68
  };
69
+ associatId?: {
70
+ type?: import("vue").PropType<string>;
71
+ default?: string;
72
+ };
73
+ text?: {
74
+ type?: import("vue").PropType<string>;
75
+ default?: string;
76
+ };
67
77
  id: {
68
78
  type?: import("vue").PropType<string>;
69
79
  default?: string;
@@ -119,6 +119,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
119
119
  type?: import("vue").PropType<string>;
120
120
  default?: string;
121
121
  };
122
+ associatId?: {
123
+ type?: import("vue").PropType<string>;
124
+ default?: string;
125
+ };
122
126
  id: {
123
127
  type?: import("vue").PropType<string>;
124
128
  default?: string;
@@ -434,6 +438,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
434
438
  type?: import("vue").PropType<string>;
435
439
  default?: string;
436
440
  };
441
+ associatId?: {
442
+ type?: import("vue").PropType<string>;
443
+ default?: string;
444
+ };
437
445
  id: {
438
446
  type?: import("vue").PropType<string>;
439
447
  default?: string;
@@ -119,6 +119,10 @@ export declare const EcanList: import("../../utils/withInstall").SFCWithInstall<
119
119
  type?: import("vue").PropType<string>;
120
120
  default?: string;
121
121
  };
122
+ associatId?: {
123
+ type?: import("vue").PropType<string>;
124
+ default?: string;
125
+ };
122
126
  id: {
123
127
  type?: import("vue").PropType<string>;
124
128
  default?: string;
@@ -434,6 +438,10 @@ export declare const EcanList: import("../../utils/withInstall").SFCWithInstall<
434
438
  type?: import("vue").PropType<string>;
435
439
  default?: string;
436
440
  };
441
+ associatId?: {
442
+ type?: import("vue").PropType<string>;
443
+ default?: string;
444
+ };
437
445
  id: {
438
446
  type?: import("vue").PropType<string>;
439
447
  default?: string;
@@ -34,6 +34,7 @@ export interface ListProps extends Props {
34
34
  seqIconOffsetX: number;
35
35
  seqIconOffsetY: number;
36
36
  seqIndexFormatter: string;
37
+ associatId?: string;
37
38
  }
38
39
  export declare const listProps: ListProps;
39
40
  export declare const listComponentProps: {
@@ -157,6 +158,10 @@ export declare const listComponentProps: {
157
158
  type?: import("vue").PropType<string>;
158
159
  default?: string;
159
160
  };
161
+ associatId?: {
162
+ type?: import("vue").PropType<string>;
163
+ default?: string;
164
+ };
160
165
  id: {
161
166
  type?: import("vue").PropType<string>;
162
167
  default?: string;
@@ -91,6 +91,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
91
91
  type?: import("vue").PropType<"right" | "shadow">;
92
92
  default?: "right" | "shadow";
93
93
  };
94
+ associatId?: {
95
+ type?: import("vue").PropType<string>;
96
+ default?: string;
97
+ };
94
98
  id: {
95
99
  type?: import("vue").PropType<string>;
96
100
  default?: string;
@@ -341,6 +345,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
341
345
  type?: import("vue").PropType<"right" | "shadow">;
342
346
  default?: "right" | "shadow";
343
347
  };
348
+ associatId?: {
349
+ type?: import("vue").PropType<string>;
350
+ default?: string;
351
+ };
344
352
  id: {
345
353
  type?: import("vue").PropType<string>;
346
354
  default?: string;
@@ -91,6 +91,10 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
91
91
  type?: import("vue").PropType<"right" | "shadow">;
92
92
  default?: "right" | "shadow";
93
93
  };
94
+ associatId?: {
95
+ type?: import("vue").PropType<string>;
96
+ default?: string;
97
+ };
94
98
  id: {
95
99
  type?: import("vue").PropType<string>;
96
100
  default?: string;
@@ -341,6 +345,10 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
341
345
  type?: import("vue").PropType<"right" | "shadow">;
342
346
  default?: "right" | "shadow";
343
347
  };
348
+ associatId?: {
349
+ type?: import("vue").PropType<string>;
350
+ default?: string;
351
+ };
344
352
  id: {
345
353
  type?: import("vue").PropType<string>;
346
354
  default?: string;
@@ -25,6 +25,7 @@ export interface ProportionProps extends Props {
25
25
  [key: string]: any;
26
26
  };
27
27
  lineTextPosition: 'right' | 'shadow';
28
+ associatId?: string;
28
29
  }
29
30
  export declare const proportionProps: ProportionProps;
30
31
  export declare const proportionComponentProps: {
@@ -120,6 +121,10 @@ export declare const proportionComponentProps: {
120
121
  type?: import("vue").PropType<"right" | "shadow">;
121
122
  default?: "right" | "shadow";
122
123
  };
124
+ associatId?: {
125
+ type?: import("vue").PropType<string>;
126
+ default?: string;
127
+ };
123
128
  id: {
124
129
  type?: import("vue").PropType<string>;
125
130
  default?: string;
@@ -204,6 +204,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
204
204
  }>;
205
205
  theme: string;
206
206
  borderRadiusStyle: import("vue").ComputedRef<any>;
207
+ click: () => void;
207
208
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
208
209
  borderColor: {
209
210
  type?: import("vue").PropType<string>;
@@ -204,6 +204,7 @@ export declare const EcanRectangle: import("../../utils/withInstall").SFCWithIns
204
204
  }>;
205
205
  theme: string;
206
206
  borderRadiusStyle: import("vue").ComputedRef<any>;
207
+ click: () => void;
207
208
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
208
209
  borderColor: {
209
210
  type?: import("vue").PropType<string>;
@@ -207,4 +207,4 @@ export declare const rectangleComponentProps: {
207
207
  default?: string;
208
208
  };
209
209
  };
210
- export declare const rectangleEvents: any[];
210
+ export declare const rectangleEvents: string[];
@@ -419,7 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
419
419
  results?: string | number;
420
420
  security?: string;
421
421
  unselectable?: "on" | "off";
422
- inputmode?: "text" | "none" | "url" | "search" | "tel" | "email" | "numeric" | "decimal";
422
+ inputmode?: "url" | "text" | "none" | "search" | "tel" | "email" | "numeric" | "decimal";
423
423
  is?: string;
424
424
  'aria-activedescendant'?: string;
425
425
  'aria-atomic'?: boolean | "false" | "true";
@@ -419,7 +419,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
419
419
  results?: string | number;
420
420
  security?: string;
421
421
  unselectable?: "on" | "off";
422
- inputmode?: "text" | "none" | "url" | "search" | "tel" | "email" | "numeric" | "decimal";
422
+ inputmode?: "url" | "text" | "none" | "search" | "tel" | "email" | "numeric" | "decimal";
423
423
  is?: string;
424
424
  'aria-activedescendant'?: string;
425
425
  'aria-atomic'?: boolean | "false" | "true";