@ecan-bi/datav 1.0.42 → 1.0.45

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.
@@ -36,6 +36,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
36
36
  [key: string]: any;
37
37
  } | import('../../_utils/props').RequestParams;
38
38
  };
39
+ href: {
40
+ type?: undefined;
41
+ default?: undefined;
42
+ } | {
43
+ type: any;
44
+ default: string | number | boolean | Events | {
45
+ [key: string]: any;
46
+ } | import('../../_utils/props').RequestParams;
47
+ };
48
+ target: {
49
+ type?: undefined;
50
+ default?: undefined;
51
+ } | {
52
+ type: any;
53
+ default: string | number | boolean | Events | {
54
+ [key: string]: any;
55
+ } | import('../../_utils/props').RequestParams;
56
+ };
39
57
  id: {
40
58
  type?: undefined;
41
59
  default?: undefined;
@@ -237,6 +255,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
237
255
  }, {
238
256
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
239
257
  click: () => void;
258
+ myText: import("vue").ComputedRef<string>;
259
+ myHref: import("vue").ComputedRef<string>;
240
260
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
241
261
  text: {
242
262
  type?: undefined;
@@ -274,6 +294,24 @@ declare const _sfc_main: import("vue").DefineComponent<{
274
294
  [key: string]: any;
275
295
  } | import('../../_utils/props').RequestParams;
276
296
  };
297
+ href: {
298
+ type?: undefined;
299
+ default?: undefined;
300
+ } | {
301
+ type: any;
302
+ default: string | number | boolean | Events | {
303
+ [key: string]: any;
304
+ } | import('../../_utils/props').RequestParams;
305
+ };
306
+ target: {
307
+ type?: undefined;
308
+ default?: undefined;
309
+ } | {
310
+ type: any;
311
+ default: string | number | boolean | Events | {
312
+ [key: string]: any;
313
+ } | import('../../_utils/props').RequestParams;
314
+ };
277
315
  id: {
278
316
  type?: undefined;
279
317
  default?: undefined;
@@ -1,4 +1,4 @@
1
- export declare const EcanButton: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const EcanButton: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
2
  text: {
3
3
  type?: undefined;
4
4
  default?: undefined;
@@ -35,6 +35,24 @@ export declare const EcanButton: import("../../_utils/withInstall").SFCWithInsta
35
35
  [key: string]: any;
36
36
  } | import("../../_utils/props").RequestParams;
37
37
  };
38
+ href: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | number | boolean | import("../../_utils/props").Events | {
44
+ [key: string]: any;
45
+ } | import("../../_utils/props").RequestParams;
46
+ };
47
+ target: {
48
+ type?: undefined;
49
+ default?: undefined;
50
+ } | {
51
+ type: any;
52
+ default: string | number | boolean | import("../../_utils/props").Events | {
53
+ [key: string]: any;
54
+ } | import("../../_utils/props").RequestParams;
55
+ };
38
56
  id: {
39
57
  type?: undefined;
40
58
  default?: undefined;
@@ -236,6 +254,8 @@ export declare const EcanButton: import("../../_utils/withInstall").SFCWithInsta
236
254
  }, {
237
255
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
238
256
  click: () => void;
257
+ myText: import("vue").ComputedRef<string>;
258
+ myHref: import("vue").ComputedRef<string>;
239
259
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
240
260
  text: {
241
261
  type?: undefined;
@@ -273,6 +293,24 @@ export declare const EcanButton: import("../../_utils/withInstall").SFCWithInsta
273
293
  [key: string]: any;
274
294
  } | import("../../_utils/props").RequestParams;
275
295
  };
296
+ href: {
297
+ type?: undefined;
298
+ default?: undefined;
299
+ } | {
300
+ type: any;
301
+ default: string | number | boolean | import("../../_utils/props").Events | {
302
+ [key: string]: any;
303
+ } | import("../../_utils/props").RequestParams;
304
+ };
305
+ target: {
306
+ type?: undefined;
307
+ default?: undefined;
308
+ } | {
309
+ type: any;
310
+ default: string | number | boolean | import("../../_utils/props").Events | {
311
+ [key: string]: any;
312
+ } | import("../../_utils/props").RequestParams;
313
+ };
276
314
  id: {
277
315
  type?: undefined;
278
316
  default?: undefined;
@@ -4,6 +4,8 @@ export interface ButtonProps extends Props {
4
4
  mode: 'primary' | 'dashed' | 'link' | 'text' | 'default';
5
5
  danger: boolean;
6
6
  shape: 'default' | 'circle' | 'round';
7
+ href: string;
8
+ target: '_self' | '_blank';
7
9
  }
8
10
  export declare const buttonProps: ButtonProps;
9
11
  export declare const buttonComponentProps: {
@@ -43,6 +45,24 @@ export declare const buttonComponentProps: {
43
45
  [key: string]: any;
44
46
  } | import('../../_utils/props').RequestParams;
45
47
  };
48
+ href: {
49
+ type?: undefined;
50
+ default?: undefined;
51
+ } | {
52
+ type: any;
53
+ default: string | number | boolean | import('../../_utils/props').Events | {
54
+ [key: string]: any;
55
+ } | import('../../_utils/props').RequestParams;
56
+ };
57
+ target: {
58
+ type?: undefined;
59
+ default?: undefined;
60
+ } | {
61
+ type: any;
62
+ default: string | number | boolean | import('../../_utils/props').Events | {
63
+ [key: string]: any;
64
+ } | import('../../_utils/props').RequestParams;
65
+ };
46
66
  id: {
47
67
  type?: undefined;
48
68
  default?: undefined;
@@ -62,6 +62,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
62
62
  type: any;
63
63
  default: any;
64
64
  };
65
+ tabHeight: {
66
+ type?: undefined;
67
+ default?: undefined;
68
+ } | {
69
+ type: any;
70
+ default: any;
71
+ };
72
+ activeKey: {
73
+ type?: undefined;
74
+ default?: undefined;
75
+ } | {
76
+ type: any;
77
+ default: any;
78
+ };
79
+ contains: {
80
+ type?: undefined;
81
+ default?: undefined;
82
+ } | {
83
+ type: any;
84
+ default: any;
85
+ };
65
86
  id: {
66
87
  type?: undefined;
67
88
  default?: undefined;
@@ -289,6 +310,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
289
310
  type: any;
290
311
  default: any;
291
312
  };
313
+ tabHeight: {
314
+ type?: undefined;
315
+ default?: undefined;
316
+ } | {
317
+ type: any;
318
+ default: any;
319
+ };
320
+ activeKey: {
321
+ type?: undefined;
322
+ default?: undefined;
323
+ } | {
324
+ type: any;
325
+ default: any;
326
+ };
327
+ contains: {
328
+ type?: undefined;
329
+ default?: undefined;
330
+ } | {
331
+ type: any;
332
+ default: any;
333
+ };
292
334
  id: {
293
335
  type?: undefined;
294
336
  default?: undefined;
@@ -62,6 +62,27 @@ export declare const EcanTabs: import("../../_utils/withInstall").SFCWithInstall
62
62
  type: any;
63
63
  default: any;
64
64
  };
65
+ tabHeight: {
66
+ type?: undefined;
67
+ default?: undefined;
68
+ } | {
69
+ type: any;
70
+ default: any;
71
+ };
72
+ activeKey: {
73
+ type?: undefined;
74
+ default?: undefined;
75
+ } | {
76
+ type: any;
77
+ default: any;
78
+ };
79
+ contains: {
80
+ type?: undefined;
81
+ default?: undefined;
82
+ } | {
83
+ type: any;
84
+ default: any;
85
+ };
65
86
  id: {
66
87
  type?: undefined;
67
88
  default?: undefined;
@@ -289,6 +310,27 @@ export declare const EcanTabs: import("../../_utils/withInstall").SFCWithInstall
289
310
  type: any;
290
311
  default: any;
291
312
  };
313
+ tabHeight: {
314
+ type?: undefined;
315
+ default?: undefined;
316
+ } | {
317
+ type: any;
318
+ default: any;
319
+ };
320
+ activeKey: {
321
+ type?: undefined;
322
+ default?: undefined;
323
+ } | {
324
+ type: any;
325
+ default: any;
326
+ };
327
+ contains: {
328
+ type?: undefined;
329
+ default?: undefined;
330
+ } | {
331
+ type: any;
332
+ default: any;
333
+ };
292
334
  id: {
293
335
  type?: undefined;
294
336
  default?: undefined;
@@ -11,6 +11,9 @@ export interface TabsProps extends Props {
11
11
  tabBarGutter: string;
12
12
  activeTabBackgroundImage: any;
13
13
  value: string;
14
+ tabHeight: string;
15
+ activeKey: number;
16
+ contains: string[];
14
17
  }
15
18
  export declare const tabsProps: TabsProps;
16
19
  export declare const tabsComponentProps: {
@@ -77,6 +80,27 @@ export declare const tabsComponentProps: {
77
80
  type: any;
78
81
  default: any;
79
82
  };
83
+ tabHeight: {
84
+ type?: undefined;
85
+ default?: undefined;
86
+ } | {
87
+ type: any;
88
+ default: any;
89
+ };
90
+ activeKey: {
91
+ type?: undefined;
92
+ default?: undefined;
93
+ } | {
94
+ type: any;
95
+ default: any;
96
+ };
97
+ contains: {
98
+ type?: undefined;
99
+ default?: undefined;
100
+ } | {
101
+ type: any;
102
+ default: any;
103
+ };
80
104
  id: {
81
105
  type?: undefined;
82
106
  default?: undefined;
@@ -1,2 +1,3 @@
1
1
  export * from './page-config';
2
2
  export * from './provider-config';
3
+ export * from './renderer';
@@ -4,21 +4,36 @@ declare const _sfc_main: import("vue").DefineComponent<{
4
4
  default?: undefined;
5
5
  } | {
6
6
  type: any;
7
- default: string;
7
+ default: string | {
8
+ [key: string]: any;
9
+ };
8
10
  };
9
11
  pageMode: {
10
12
  type?: undefined;
11
13
  default?: undefined;
12
14
  } | {
13
15
  type: any;
14
- default: string;
16
+ default: string | {
17
+ [key: string]: any;
18
+ };
15
19
  };
16
20
  theme: {
17
21
  type?: undefined;
18
22
  default?: undefined;
19
23
  } | {
20
24
  type: any;
21
- default: string;
25
+ default: string | {
26
+ [key: string]: any;
27
+ };
28
+ };
29
+ containerMap: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | {
35
+ [key: string]: any;
36
+ };
22
37
  };
23
38
  }, {
24
39
  providerConfig: import("vue").Ref<HTMLElement>;
@@ -28,21 +43,36 @@ declare const _sfc_main: import("vue").DefineComponent<{
28
43
  default?: undefined;
29
44
  } | {
30
45
  type: any;
31
- default: string;
46
+ default: string | {
47
+ [key: string]: any;
48
+ };
32
49
  };
33
50
  pageMode: {
34
51
  type?: undefined;
35
52
  default?: undefined;
36
53
  } | {
37
54
  type: any;
38
- default: string;
55
+ default: string | {
56
+ [key: string]: any;
57
+ };
39
58
  };
40
59
  theme: {
41
60
  type?: undefined;
42
61
  default?: undefined;
43
62
  } | {
44
63
  type: any;
45
- default: string;
64
+ default: string | {
65
+ [key: string]: any;
66
+ };
67
+ };
68
+ containerMap: {
69
+ type?: undefined;
70
+ default?: undefined;
71
+ } | {
72
+ type: any;
73
+ default: string | {
74
+ [key: string]: any;
75
+ };
46
76
  };
47
77
  }>>, {}>;
48
78
  export default _sfc_main;
@@ -1,24 +1,39 @@
1
- export declare const EcanProviderConfig: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1
+ export declare const EcanProviderConfig: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
2
  contextRequestUrl: {
3
3
  type?: undefined;
4
4
  default?: undefined;
5
5
  } | {
6
6
  type: any;
7
- default: string;
7
+ default: string | {
8
+ [key: string]: any;
9
+ };
8
10
  };
9
11
  pageMode: {
10
12
  type?: undefined;
11
13
  default?: undefined;
12
14
  } | {
13
15
  type: any;
14
- default: string;
16
+ default: string | {
17
+ [key: string]: any;
18
+ };
15
19
  };
16
20
  theme: {
17
21
  type?: undefined;
18
22
  default?: undefined;
19
23
  } | {
20
24
  type: any;
21
- default: string;
25
+ default: string | {
26
+ [key: string]: any;
27
+ };
28
+ };
29
+ containerMap: {
30
+ type?: undefined;
31
+ default?: undefined;
32
+ } | {
33
+ type: any;
34
+ default: string | {
35
+ [key: string]: any;
36
+ };
22
37
  };
23
38
  }, {
24
39
  providerConfig: import("vue").Ref<HTMLElement>;
@@ -28,21 +43,36 @@ export declare const EcanProviderConfig: import("../../_utils/withInstall").SFCW
28
43
  default?: undefined;
29
44
  } | {
30
45
  type: any;
31
- default: string;
46
+ default: string | {
47
+ [key: string]: any;
48
+ };
32
49
  };
33
50
  pageMode: {
34
51
  type?: undefined;
35
52
  default?: undefined;
36
53
  } | {
37
54
  type: any;
38
- default: string;
55
+ default: string | {
56
+ [key: string]: any;
57
+ };
39
58
  };
40
59
  theme: {
41
60
  type?: undefined;
42
61
  default?: undefined;
43
62
  } | {
44
63
  type: any;
45
- default: string;
64
+ default: string | {
65
+ [key: string]: any;
66
+ };
67
+ };
68
+ containerMap: {
69
+ type?: undefined;
70
+ default?: undefined;
71
+ } | {
72
+ type: any;
73
+ default: string | {
74
+ [key: string]: any;
75
+ };
46
76
  };
47
77
  }>>, {}>> & Record<string, any>;
48
78
  export default EcanProviderConfig;
@@ -2,6 +2,9 @@ export interface ProviderConfig {
2
2
  contextRequestUrl: string;
3
3
  pageMode: 'normal' | 'preview' | 'design';
4
4
  theme: 'light' | 'darkBlue';
5
+ containerMap: {
6
+ [key: string]: any;
7
+ };
5
8
  }
6
9
  export declare const providerConfig: ProviderConfig;
7
10
  export declare const providerConfigComponentProps: {
@@ -10,20 +13,35 @@ export declare const providerConfigComponentProps: {
10
13
  default?: undefined;
11
14
  } | {
12
15
  type: any;
13
- default: string;
16
+ default: string | {
17
+ [key: string]: any;
18
+ };
14
19
  };
15
20
  pageMode: {
16
21
  type?: undefined;
17
22
  default?: undefined;
18
23
  } | {
19
24
  type: any;
20
- default: string;
25
+ default: string | {
26
+ [key: string]: any;
27
+ };
21
28
  };
22
29
  theme: {
23
30
  type?: undefined;
24
31
  default?: undefined;
25
32
  } | {
26
33
  type: any;
27
- default: string;
34
+ default: string | {
35
+ [key: string]: any;
36
+ };
37
+ };
38
+ containerMap: {
39
+ type?: undefined;
40
+ default?: undefined;
41
+ } | {
42
+ type: any;
43
+ default: string | {
44
+ [key: string]: any;
45
+ };
28
46
  };
29
47
  };
@@ -0,0 +1,22 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ componentList: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: {
8
+ [key: string]: any;
9
+ }[];
10
+ };
11
+ }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
+ componentList: {
13
+ type?: undefined;
14
+ default?: undefined;
15
+ } | {
16
+ type: any;
17
+ default: {
18
+ [key: string]: any;
19
+ }[];
20
+ };
21
+ }>>, {}>;
22
+ export default _sfc_main;
@@ -0,0 +1,23 @@
1
+ export declare const EcanRenderer: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
2
+ componentList: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: {
8
+ [key: string]: any;
9
+ }[];
10
+ };
11
+ }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
+ componentList: {
13
+ type?: undefined;
14
+ default?: undefined;
15
+ } | {
16
+ type: any;
17
+ default: {
18
+ [key: string]: any;
19
+ }[];
20
+ };
21
+ }>>, {}>> & Record<string, any>;
22
+ export default EcanRenderer;
23
+ export * from './props';
@@ -0,0 +1,17 @@
1
+ export interface Renderer {
2
+ componentList: {
3
+ [key: string]: any;
4
+ }[];
5
+ }
6
+ export declare const renderer: Renderer;
7
+ export declare const rendererComponentProps: {
8
+ componentList: {
9
+ type?: undefined;
10
+ default?: undefined;
11
+ } | {
12
+ type: any;
13
+ default: {
14
+ [key: string]: any;
15
+ }[];
16
+ };
17
+ };