@ecan-bi/datav 1.0.41 → 1.0.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 +906 -255
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +906 -252
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +149 -86
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +3 -1
- package/types/_utils/hooks/index.d.ts +2 -0
- package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/container/border/Border.vue.d.ts +183 -54
- package/types/container/border/index.d.ts +130 -1
- package/types/container/border/props.d.ts +115 -55
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +110 -0
- package/types/control/button/index.d.ts +111 -1
- package/types/control/button/props.d.ts +104 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/control/tabs/Tabs.vue.d.ts +42 -0
- package/types/control/tabs/index.d.ts +42 -0
- package/types/control/tabs/props.d.ts +24 -0
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/setting/index.d.ts +1 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
- package/types/setting/provider-config/index.d.ts +37 -7
- package/types/setting/provider-config/props.d.ts +21 -3
- package/types/setting/renderer/Renderer.vue.d.ts +22 -0
- package/types/setting/renderer/index.d.ts +23 -0
- package/types/setting/renderer/props.d.ts +17 -0
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
|
@@ -12,233 +12,233 @@ export declare const imageComponentProps: {
|
|
|
12
12
|
default?: undefined;
|
|
13
13
|
} | {
|
|
14
14
|
type: any;
|
|
15
|
-
default: string | number | boolean | import(
|
|
15
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
16
16
|
[key: string]: any;
|
|
17
|
-
} | import(
|
|
17
|
+
} | import('../../_utils/props').RequestParams;
|
|
18
18
|
};
|
|
19
19
|
linkUrl: {
|
|
20
20
|
type?: undefined;
|
|
21
21
|
default?: undefined;
|
|
22
22
|
} | {
|
|
23
23
|
type: any;
|
|
24
|
-
default: string | number | boolean | import(
|
|
24
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
25
25
|
[key: string]: any;
|
|
26
|
-
} | import(
|
|
26
|
+
} | import('../../_utils/props').RequestParams;
|
|
27
27
|
};
|
|
28
28
|
linkMethod: {
|
|
29
29
|
type?: undefined;
|
|
30
30
|
default?: undefined;
|
|
31
31
|
} | {
|
|
32
32
|
type: any;
|
|
33
|
-
default: string | number | boolean | import(
|
|
33
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
34
34
|
[key: string]: any;
|
|
35
|
-
} | import(
|
|
35
|
+
} | import('../../_utils/props').RequestParams;
|
|
36
36
|
};
|
|
37
37
|
linkPage: {
|
|
38
38
|
type?: undefined;
|
|
39
39
|
default?: undefined;
|
|
40
40
|
} | {
|
|
41
41
|
type: any;
|
|
42
|
-
default: string | number | boolean | import(
|
|
42
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
43
43
|
[key: string]: any;
|
|
44
|
-
} | import(
|
|
44
|
+
} | import('../../_utils/props').RequestParams;
|
|
45
45
|
};
|
|
46
46
|
id: {
|
|
47
47
|
type?: undefined;
|
|
48
48
|
default?: undefined;
|
|
49
49
|
} | {
|
|
50
50
|
type: any;
|
|
51
|
-
default: string | number | boolean | import(
|
|
51
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
52
52
|
[key: string]: any;
|
|
53
|
-
} | import(
|
|
53
|
+
} | import('../../_utils/props').RequestParams;
|
|
54
54
|
};
|
|
55
55
|
name: {
|
|
56
56
|
type?: undefined;
|
|
57
57
|
default?: undefined;
|
|
58
58
|
} | {
|
|
59
59
|
type: any;
|
|
60
|
-
default: string | number | boolean | import(
|
|
60
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
61
61
|
[key: string]: any;
|
|
62
|
-
} | import(
|
|
62
|
+
} | import('../../_utils/props').RequestParams;
|
|
63
63
|
};
|
|
64
64
|
keyName: {
|
|
65
65
|
type?: undefined;
|
|
66
66
|
default?: undefined;
|
|
67
67
|
} | {
|
|
68
68
|
type: any;
|
|
69
|
-
default: string | number | boolean | import(
|
|
69
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
70
70
|
[key: string]: any;
|
|
71
|
-
} | import(
|
|
71
|
+
} | import('../../_utils/props').RequestParams;
|
|
72
72
|
};
|
|
73
73
|
type: {
|
|
74
74
|
type?: undefined;
|
|
75
75
|
default?: undefined;
|
|
76
76
|
} | {
|
|
77
77
|
type: any;
|
|
78
|
-
default: string | number | boolean | import(
|
|
78
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
79
79
|
[key: string]: any;
|
|
80
|
-
} | import(
|
|
80
|
+
} | import('../../_utils/props').RequestParams;
|
|
81
81
|
};
|
|
82
82
|
width: {
|
|
83
83
|
type?: undefined;
|
|
84
84
|
default?: undefined;
|
|
85
85
|
} | {
|
|
86
86
|
type: any;
|
|
87
|
-
default: string | number | boolean | import(
|
|
87
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
88
88
|
[key: string]: any;
|
|
89
|
-
} | import(
|
|
89
|
+
} | import('../../_utils/props').RequestParams;
|
|
90
90
|
};
|
|
91
91
|
height: {
|
|
92
92
|
type?: undefined;
|
|
93
93
|
default?: undefined;
|
|
94
94
|
} | {
|
|
95
95
|
type: any;
|
|
96
|
-
default: string | number | boolean | import(
|
|
96
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
97
97
|
[key: string]: any;
|
|
98
|
-
} | import(
|
|
98
|
+
} | import('../../_utils/props').RequestParams;
|
|
99
99
|
};
|
|
100
100
|
position: {
|
|
101
101
|
type?: undefined;
|
|
102
102
|
default?: undefined;
|
|
103
103
|
} | {
|
|
104
104
|
type: any;
|
|
105
|
-
default: string | number | boolean | import(
|
|
105
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
106
106
|
[key: string]: any;
|
|
107
|
-
} | import(
|
|
107
|
+
} | import('../../_utils/props').RequestParams;
|
|
108
108
|
};
|
|
109
109
|
top: {
|
|
110
110
|
type?: undefined;
|
|
111
111
|
default?: undefined;
|
|
112
112
|
} | {
|
|
113
113
|
type: any;
|
|
114
|
-
default: string | number | boolean | import(
|
|
114
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
115
115
|
[key: string]: any;
|
|
116
|
-
} | import(
|
|
116
|
+
} | import('../../_utils/props').RequestParams;
|
|
117
117
|
};
|
|
118
118
|
left: {
|
|
119
119
|
type?: undefined;
|
|
120
120
|
default?: undefined;
|
|
121
121
|
} | {
|
|
122
122
|
type: any;
|
|
123
|
-
default: string | number | boolean | import(
|
|
123
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
124
124
|
[key: string]: any;
|
|
125
|
-
} | import(
|
|
125
|
+
} | import('../../_utils/props').RequestParams;
|
|
126
126
|
};
|
|
127
127
|
zIndex: {
|
|
128
128
|
type?: undefined;
|
|
129
129
|
default?: undefined;
|
|
130
130
|
} | {
|
|
131
131
|
type: any;
|
|
132
|
-
default: string | number | boolean | import(
|
|
132
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
133
133
|
[key: string]: any;
|
|
134
|
-
} | import(
|
|
134
|
+
} | import('../../_utils/props').RequestParams;
|
|
135
135
|
};
|
|
136
136
|
rotate: {
|
|
137
137
|
type?: undefined;
|
|
138
138
|
default?: undefined;
|
|
139
139
|
} | {
|
|
140
140
|
type: any;
|
|
141
|
-
default: string | number | boolean | import(
|
|
141
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
142
142
|
[key: string]: any;
|
|
143
|
-
} | import(
|
|
143
|
+
} | import('../../_utils/props').RequestParams;
|
|
144
144
|
};
|
|
145
145
|
isShow: {
|
|
146
146
|
type?: undefined;
|
|
147
147
|
default?: undefined;
|
|
148
148
|
} | {
|
|
149
149
|
type: any;
|
|
150
|
-
default: string | number | boolean | import(
|
|
150
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
151
151
|
[key: string]: any;
|
|
152
|
-
} | import(
|
|
152
|
+
} | import('../../_utils/props').RequestParams;
|
|
153
153
|
};
|
|
154
154
|
isRender: {
|
|
155
155
|
type?: undefined;
|
|
156
156
|
default?: undefined;
|
|
157
157
|
} | {
|
|
158
158
|
type: any;
|
|
159
|
-
default: string | number | boolean | import(
|
|
159
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
160
160
|
[key: string]: any;
|
|
161
|
-
} | import(
|
|
161
|
+
} | import('../../_utils/props').RequestParams;
|
|
162
162
|
};
|
|
163
163
|
events: {
|
|
164
164
|
type?: undefined;
|
|
165
165
|
default?: undefined;
|
|
166
166
|
} | {
|
|
167
167
|
type: any;
|
|
168
|
-
default: string | number | boolean | import(
|
|
168
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
169
169
|
[key: string]: any;
|
|
170
|
-
} | import(
|
|
170
|
+
} | import('../../_utils/props').RequestParams;
|
|
171
171
|
};
|
|
172
172
|
requestUrl: {
|
|
173
173
|
type?: undefined;
|
|
174
174
|
default?: undefined;
|
|
175
175
|
} | {
|
|
176
176
|
type: any;
|
|
177
|
-
default: string | number | boolean | import(
|
|
177
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
178
178
|
[key: string]: any;
|
|
179
|
-
} | import(
|
|
179
|
+
} | import('../../_utils/props').RequestParams;
|
|
180
180
|
};
|
|
181
181
|
requestMethod: {
|
|
182
182
|
type?: undefined;
|
|
183
183
|
default?: undefined;
|
|
184
184
|
} | {
|
|
185
185
|
type: any;
|
|
186
|
-
default: string | number | boolean | import(
|
|
186
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
187
187
|
[key: string]: any;
|
|
188
|
-
} | import(
|
|
188
|
+
} | import('../../_utils/props').RequestParams;
|
|
189
189
|
};
|
|
190
190
|
requestHeaders: {
|
|
191
191
|
type?: undefined;
|
|
192
192
|
default?: undefined;
|
|
193
193
|
} | {
|
|
194
194
|
type: any;
|
|
195
|
-
default: string | number | boolean | import(
|
|
195
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
196
196
|
[key: string]: any;
|
|
197
|
-
} | import(
|
|
197
|
+
} | import('../../_utils/props').RequestParams;
|
|
198
198
|
};
|
|
199
199
|
isOpenRequestTimer: {
|
|
200
200
|
type?: undefined;
|
|
201
201
|
default?: undefined;
|
|
202
202
|
} | {
|
|
203
203
|
type: any;
|
|
204
|
-
default: string | number | boolean | import(
|
|
204
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
205
205
|
[key: string]: any;
|
|
206
|
-
} | import(
|
|
206
|
+
} | import('../../_utils/props').RequestParams;
|
|
207
207
|
};
|
|
208
208
|
requestInterval: {
|
|
209
209
|
type?: undefined;
|
|
210
210
|
default?: undefined;
|
|
211
211
|
} | {
|
|
212
212
|
type: any;
|
|
213
|
-
default: string | number | boolean | import(
|
|
213
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
214
214
|
[key: string]: any;
|
|
215
|
-
} | import(
|
|
215
|
+
} | import('../../_utils/props').RequestParams;
|
|
216
216
|
};
|
|
217
217
|
requestParams: {
|
|
218
218
|
type?: undefined;
|
|
219
219
|
default?: undefined;
|
|
220
220
|
} | {
|
|
221
221
|
type: any;
|
|
222
|
-
default: string | number | boolean | import(
|
|
222
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
223
223
|
[key: string]: any;
|
|
224
|
-
} | import(
|
|
224
|
+
} | import('../../_utils/props').RequestParams;
|
|
225
225
|
};
|
|
226
226
|
requestSort: {
|
|
227
227
|
type?: undefined;
|
|
228
228
|
default?: undefined;
|
|
229
229
|
} | {
|
|
230
230
|
type: any;
|
|
231
|
-
default: string | number | boolean | import(
|
|
231
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
232
232
|
[key: string]: any;
|
|
233
|
-
} | import(
|
|
233
|
+
} | import('../../_utils/props').RequestParams;
|
|
234
234
|
};
|
|
235
235
|
dataType: {
|
|
236
236
|
type?: undefined;
|
|
237
237
|
default?: undefined;
|
|
238
238
|
} | {
|
|
239
239
|
type: any;
|
|
240
|
-
default: string | number | boolean | import(
|
|
240
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
241
241
|
[key: string]: any;
|
|
242
|
-
} | import(
|
|
242
|
+
} | import('../../_utils/props').RequestParams;
|
|
243
243
|
};
|
|
244
244
|
};
|
package/types/setting/index.d.ts
CHANGED
|
@@ -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(
|
|
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
|
+
};
|