@ecan-bi/datav 1.1.40 → 1.1.42
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 +1307 -1297
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +176 -400
- package/types/container/tabs/index.d.ts +176 -400
- package/types/container/tabs/props.d.ts +88 -200
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
- package/types/utils/runCode.d.ts +2 -0
|
@@ -8,237 +8,111 @@ export interface ImageProps extends Props {
|
|
|
8
8
|
export declare const imageProps: ImageProps;
|
|
9
9
|
export declare const imageComponentProps: {
|
|
10
10
|
imgUrl: {
|
|
11
|
-
type?:
|
|
12
|
-
default?:
|
|
13
|
-
} | {
|
|
14
|
-
type: any;
|
|
15
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
16
|
-
[key: string]: any;
|
|
17
|
-
} | import('../../utils/props').RequestParams;
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
18
13
|
};
|
|
19
14
|
href: {
|
|
20
|
-
type?:
|
|
21
|
-
default?:
|
|
22
|
-
} | {
|
|
23
|
-
type: any;
|
|
24
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
25
|
-
[key: string]: any;
|
|
26
|
-
} | import('../../utils/props').RequestParams;
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
27
17
|
};
|
|
28
18
|
target: {
|
|
29
|
-
type?:
|
|
30
|
-
default?:
|
|
31
|
-
} | {
|
|
32
|
-
type: any;
|
|
33
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
34
|
-
[key: string]: any;
|
|
35
|
-
} | import('../../utils/props').RequestParams;
|
|
19
|
+
type?: import("vue").PropType<"self" | "blank" | "event">;
|
|
20
|
+
default?: "self" | "blank" | "event";
|
|
36
21
|
};
|
|
37
22
|
linkPage: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
43
|
-
[key: string]: any;
|
|
44
|
-
} | import('../../utils/props').RequestParams;
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
45
25
|
};
|
|
46
26
|
id: {
|
|
47
|
-
type?:
|
|
48
|
-
default?:
|
|
49
|
-
} | {
|
|
50
|
-
type: any;
|
|
51
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
52
|
-
[key: string]: any;
|
|
53
|
-
} | import('../../utils/props').RequestParams;
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
54
29
|
};
|
|
55
30
|
name: {
|
|
56
|
-
type?:
|
|
57
|
-
default?:
|
|
58
|
-
} | {
|
|
59
|
-
type: any;
|
|
60
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
61
|
-
[key: string]: any;
|
|
62
|
-
} | import('../../utils/props').RequestParams;
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
63
33
|
};
|
|
64
34
|
keyName: {
|
|
65
|
-
type?:
|
|
66
|
-
default?:
|
|
67
|
-
} | {
|
|
68
|
-
type: any;
|
|
69
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
70
|
-
[key: string]: any;
|
|
71
|
-
} | import('../../utils/props').RequestParams;
|
|
35
|
+
type?: import("vue").PropType<string>;
|
|
36
|
+
default?: string;
|
|
72
37
|
};
|
|
73
38
|
type: {
|
|
74
|
-
type?:
|
|
75
|
-
default?:
|
|
76
|
-
} | {
|
|
77
|
-
type: any;
|
|
78
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
79
|
-
[key: string]: any;
|
|
80
|
-
} | import('../../utils/props').RequestParams;
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
81
41
|
};
|
|
82
42
|
width: {
|
|
83
|
-
type?:
|
|
84
|
-
default?:
|
|
85
|
-
} | {
|
|
86
|
-
type: any;
|
|
87
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
88
|
-
[key: string]: any;
|
|
89
|
-
} | import('../../utils/props').RequestParams;
|
|
43
|
+
type?: import("vue").PropType<string>;
|
|
44
|
+
default?: string;
|
|
90
45
|
};
|
|
91
46
|
height: {
|
|
92
|
-
type?:
|
|
93
|
-
default?:
|
|
94
|
-
} | {
|
|
95
|
-
type: any;
|
|
96
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
97
|
-
[key: string]: any;
|
|
98
|
-
} | import('../../utils/props').RequestParams;
|
|
47
|
+
type?: import("vue").PropType<string>;
|
|
48
|
+
default?: string;
|
|
99
49
|
};
|
|
100
50
|
position: {
|
|
101
|
-
type?:
|
|
102
|
-
default?:
|
|
103
|
-
} | {
|
|
104
|
-
type: any;
|
|
105
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
106
|
-
[key: string]: any;
|
|
107
|
-
} | import('../../utils/props').RequestParams;
|
|
51
|
+
type?: import("vue").PropType<string>;
|
|
52
|
+
default?: string;
|
|
108
53
|
};
|
|
109
54
|
top: {
|
|
110
|
-
type?:
|
|
111
|
-
default?:
|
|
112
|
-
} | {
|
|
113
|
-
type: any;
|
|
114
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
115
|
-
[key: string]: any;
|
|
116
|
-
} | import('../../utils/props').RequestParams;
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
117
57
|
};
|
|
118
58
|
left: {
|
|
119
|
-
type?:
|
|
120
|
-
default?:
|
|
121
|
-
} | {
|
|
122
|
-
type: any;
|
|
123
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
124
|
-
[key: string]: any;
|
|
125
|
-
} | import('../../utils/props').RequestParams;
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
126
61
|
};
|
|
127
62
|
zIndex: {
|
|
128
|
-
type?:
|
|
129
|
-
default?:
|
|
130
|
-
} | {
|
|
131
|
-
type: any;
|
|
132
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
133
|
-
[key: string]: any;
|
|
134
|
-
} | import('../../utils/props').RequestParams;
|
|
63
|
+
type?: import("vue").PropType<number>;
|
|
64
|
+
default?: number;
|
|
135
65
|
};
|
|
136
66
|
rotate: {
|
|
137
|
-
type?:
|
|
138
|
-
default?:
|
|
139
|
-
} | {
|
|
140
|
-
type: any;
|
|
141
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
142
|
-
[key: string]: any;
|
|
143
|
-
} | import('../../utils/props').RequestParams;
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
144
69
|
};
|
|
145
70
|
isShow: {
|
|
146
|
-
type?:
|
|
147
|
-
default?:
|
|
148
|
-
} | {
|
|
149
|
-
type: any;
|
|
150
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
151
|
-
[key: string]: any;
|
|
152
|
-
} | import('../../utils/props').RequestParams;
|
|
71
|
+
type?: import("vue").PropType<boolean>;
|
|
72
|
+
default?: boolean;
|
|
153
73
|
};
|
|
154
74
|
isRender: {
|
|
155
|
-
type?:
|
|
156
|
-
default?:
|
|
157
|
-
} | {
|
|
158
|
-
type: any;
|
|
159
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
160
|
-
[key: string]: any;
|
|
161
|
-
} | import('../../utils/props').RequestParams;
|
|
75
|
+
type?: import("vue").PropType<boolean>;
|
|
76
|
+
default?: boolean;
|
|
162
77
|
};
|
|
163
78
|
events: {
|
|
164
|
-
type?:
|
|
165
|
-
default?:
|
|
166
|
-
} | {
|
|
167
|
-
type: any;
|
|
168
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
169
|
-
[key: string]: any;
|
|
170
|
-
} | import('../../utils/props').RequestParams;
|
|
79
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
80
|
+
default?: import('../../utils/props').Events;
|
|
171
81
|
};
|
|
172
82
|
requestUrl: {
|
|
173
|
-
type?:
|
|
174
|
-
default?:
|
|
175
|
-
} | {
|
|
176
|
-
type: any;
|
|
177
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
178
|
-
[key: string]: any;
|
|
179
|
-
} | import('../../utils/props').RequestParams;
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
180
85
|
};
|
|
181
86
|
requestMethod: {
|
|
182
|
-
type?:
|
|
183
|
-
default?:
|
|
184
|
-
} | {
|
|
185
|
-
type: any;
|
|
186
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
187
|
-
[key: string]: any;
|
|
188
|
-
} | import('../../utils/props').RequestParams;
|
|
87
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
88
|
+
default?: import('../../utils/props').RequestMethod;
|
|
189
89
|
};
|
|
190
90
|
requestHeaders: {
|
|
191
|
-
type?:
|
|
192
|
-
default?: undefined;
|
|
193
|
-
} | {
|
|
194
|
-
type: any;
|
|
195
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
91
|
+
type?: import("vue").PropType<{
|
|
196
92
|
[key: string]: any;
|
|
197
|
-
}
|
|
93
|
+
}>;
|
|
94
|
+
default?: {
|
|
95
|
+
[key: string]: any;
|
|
96
|
+
};
|
|
198
97
|
};
|
|
199
98
|
isOpenRequestTimer: {
|
|
200
|
-
type?:
|
|
201
|
-
default?:
|
|
202
|
-
} | {
|
|
203
|
-
type: any;
|
|
204
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
205
|
-
[key: string]: any;
|
|
206
|
-
} | import('../../utils/props').RequestParams;
|
|
99
|
+
type?: import("vue").PropType<boolean>;
|
|
100
|
+
default?: boolean;
|
|
207
101
|
};
|
|
208
102
|
requestInterval: {
|
|
209
|
-
type?:
|
|
210
|
-
default?:
|
|
211
|
-
} | {
|
|
212
|
-
type: any;
|
|
213
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
214
|
-
[key: string]: any;
|
|
215
|
-
} | import('../../utils/props').RequestParams;
|
|
103
|
+
type?: import("vue").PropType<number>;
|
|
104
|
+
default?: number;
|
|
216
105
|
};
|
|
217
106
|
requestParams: {
|
|
218
|
-
type?:
|
|
219
|
-
default?:
|
|
220
|
-
} | {
|
|
221
|
-
type: any;
|
|
222
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
223
|
-
[key: string]: any;
|
|
224
|
-
} | import('../../utils/props').RequestParams;
|
|
107
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
108
|
+
default?: import('../../utils/props').RequestParams;
|
|
225
109
|
};
|
|
226
110
|
requestSort: {
|
|
227
|
-
type?:
|
|
228
|
-
default?:
|
|
229
|
-
} | {
|
|
230
|
-
type: any;
|
|
231
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
232
|
-
[key: string]: any;
|
|
233
|
-
} | import('../../utils/props').RequestParams;
|
|
111
|
+
type?: import("vue").PropType<number>;
|
|
112
|
+
default?: number;
|
|
234
113
|
};
|
|
235
114
|
dataType: {
|
|
236
|
-
type?:
|
|
237
|
-
default?:
|
|
238
|
-
} | {
|
|
239
|
-
type: any;
|
|
240
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
241
|
-
[key: string]: any;
|
|
242
|
-
} | import('../../utils/props').RequestParams;
|
|
115
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
116
|
+
default?: "indicator" | "static" | "request";
|
|
243
117
|
};
|
|
244
118
|
};
|
|
@@ -1,52 +1,31 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
2
|
width: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: string;
|
|
3
|
+
type?: import("vue").PropType<string>;
|
|
4
|
+
default?: string;
|
|
8
5
|
};
|
|
9
6
|
height: {
|
|
10
|
-
type?:
|
|
11
|
-
default?:
|
|
12
|
-
} | {
|
|
13
|
-
type: any;
|
|
14
|
-
default: string;
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
15
9
|
};
|
|
16
10
|
backgroundColor: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: string;
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
22
13
|
};
|
|
23
14
|
backgroundImage: {
|
|
24
|
-
type?:
|
|
25
|
-
default?:
|
|
26
|
-
} | {
|
|
27
|
-
type: any;
|
|
28
|
-
default: string;
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
29
17
|
};
|
|
30
18
|
backgroundSize: {
|
|
31
|
-
type?:
|
|
32
|
-
default?:
|
|
33
|
-
} | {
|
|
34
|
-
type: any;
|
|
35
|
-
default: string;
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
36
21
|
};
|
|
37
22
|
contextRequestUrl: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: string;
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
43
25
|
};
|
|
44
26
|
mode: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: string;
|
|
27
|
+
type?: import("vue").PropType<"preview" | "normal">;
|
|
28
|
+
default?: "preview" | "normal";
|
|
50
29
|
};
|
|
51
30
|
}, {
|
|
52
31
|
style: import("vue").ComputedRef<{
|
|
@@ -60,53 +39,32 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
60
39
|
ready: import("vue").Ref<boolean>;
|
|
61
40
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
41
|
width: {
|
|
63
|
-
type?:
|
|
64
|
-
default?:
|
|
65
|
-
} | {
|
|
66
|
-
type: any;
|
|
67
|
-
default: string;
|
|
42
|
+
type?: import("vue").PropType<string>;
|
|
43
|
+
default?: string;
|
|
68
44
|
};
|
|
69
45
|
height: {
|
|
70
|
-
type?:
|
|
71
|
-
default?:
|
|
72
|
-
} | {
|
|
73
|
-
type: any;
|
|
74
|
-
default: string;
|
|
46
|
+
type?: import("vue").PropType<string>;
|
|
47
|
+
default?: string;
|
|
75
48
|
};
|
|
76
49
|
backgroundColor: {
|
|
77
|
-
type?:
|
|
78
|
-
default?:
|
|
79
|
-
} | {
|
|
80
|
-
type: any;
|
|
81
|
-
default: string;
|
|
50
|
+
type?: import("vue").PropType<string>;
|
|
51
|
+
default?: string;
|
|
82
52
|
};
|
|
83
53
|
backgroundImage: {
|
|
84
|
-
type?:
|
|
85
|
-
default?:
|
|
86
|
-
} | {
|
|
87
|
-
type: any;
|
|
88
|
-
default: string;
|
|
54
|
+
type?: import("vue").PropType<string>;
|
|
55
|
+
default?: string;
|
|
89
56
|
};
|
|
90
57
|
backgroundSize: {
|
|
91
|
-
type?:
|
|
92
|
-
default?:
|
|
93
|
-
} | {
|
|
94
|
-
type: any;
|
|
95
|
-
default: string;
|
|
58
|
+
type?: import("vue").PropType<string>;
|
|
59
|
+
default?: string;
|
|
96
60
|
};
|
|
97
61
|
contextRequestUrl: {
|
|
98
|
-
type?:
|
|
99
|
-
default?:
|
|
100
|
-
} | {
|
|
101
|
-
type: any;
|
|
102
|
-
default: string;
|
|
62
|
+
type?: import("vue").PropType<string>;
|
|
63
|
+
default?: string;
|
|
103
64
|
};
|
|
104
65
|
mode: {
|
|
105
|
-
type?:
|
|
106
|
-
default?:
|
|
107
|
-
} | {
|
|
108
|
-
type: any;
|
|
109
|
-
default: string;
|
|
66
|
+
type?: import("vue").PropType<"preview" | "normal">;
|
|
67
|
+
default?: "preview" | "normal";
|
|
110
68
|
};
|
|
111
69
|
}>>, {}>;
|
|
112
70
|
export default _sfc_main;
|
|
@@ -1,52 +1,31 @@
|
|
|
1
1
|
export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
2
2
|
width: {
|
|
3
|
-
type?:
|
|
4
|
-
default?:
|
|
5
|
-
} | {
|
|
6
|
-
type: any;
|
|
7
|
-
default: string;
|
|
3
|
+
type?: import("vue").PropType<string>;
|
|
4
|
+
default?: string;
|
|
8
5
|
};
|
|
9
6
|
height: {
|
|
10
|
-
type?:
|
|
11
|
-
default?:
|
|
12
|
-
} | {
|
|
13
|
-
type: any;
|
|
14
|
-
default: string;
|
|
7
|
+
type?: import("vue").PropType<string>;
|
|
8
|
+
default?: string;
|
|
15
9
|
};
|
|
16
10
|
backgroundColor: {
|
|
17
|
-
type?:
|
|
18
|
-
default?:
|
|
19
|
-
} | {
|
|
20
|
-
type: any;
|
|
21
|
-
default: string;
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
22
13
|
};
|
|
23
14
|
backgroundImage: {
|
|
24
|
-
type?:
|
|
25
|
-
default?:
|
|
26
|
-
} | {
|
|
27
|
-
type: any;
|
|
28
|
-
default: string;
|
|
15
|
+
type?: import("vue").PropType<string>;
|
|
16
|
+
default?: string;
|
|
29
17
|
};
|
|
30
18
|
backgroundSize: {
|
|
31
|
-
type?:
|
|
32
|
-
default?:
|
|
33
|
-
} | {
|
|
34
|
-
type: any;
|
|
35
|
-
default: string;
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
36
21
|
};
|
|
37
22
|
contextRequestUrl: {
|
|
38
|
-
type?:
|
|
39
|
-
default?:
|
|
40
|
-
} | {
|
|
41
|
-
type: any;
|
|
42
|
-
default: string;
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
43
25
|
};
|
|
44
26
|
mode: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: string;
|
|
27
|
+
type?: import("vue").PropType<"preview" | "normal">;
|
|
28
|
+
default?: "preview" | "normal";
|
|
50
29
|
};
|
|
51
30
|
}, {
|
|
52
31
|
style: import("vue").ComputedRef<{
|
|
@@ -60,53 +39,32 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
60
39
|
ready: import("vue").Ref<boolean>;
|
|
61
40
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
41
|
width: {
|
|
63
|
-
type?:
|
|
64
|
-
default?:
|
|
65
|
-
} | {
|
|
66
|
-
type: any;
|
|
67
|
-
default: string;
|
|
42
|
+
type?: import("vue").PropType<string>;
|
|
43
|
+
default?: string;
|
|
68
44
|
};
|
|
69
45
|
height: {
|
|
70
|
-
type?:
|
|
71
|
-
default?:
|
|
72
|
-
} | {
|
|
73
|
-
type: any;
|
|
74
|
-
default: string;
|
|
46
|
+
type?: import("vue").PropType<string>;
|
|
47
|
+
default?: string;
|
|
75
48
|
};
|
|
76
49
|
backgroundColor: {
|
|
77
|
-
type?:
|
|
78
|
-
default?:
|
|
79
|
-
} | {
|
|
80
|
-
type: any;
|
|
81
|
-
default: string;
|
|
50
|
+
type?: import("vue").PropType<string>;
|
|
51
|
+
default?: string;
|
|
82
52
|
};
|
|
83
53
|
backgroundImage: {
|
|
84
|
-
type?:
|
|
85
|
-
default?:
|
|
86
|
-
} | {
|
|
87
|
-
type: any;
|
|
88
|
-
default: string;
|
|
54
|
+
type?: import("vue").PropType<string>;
|
|
55
|
+
default?: string;
|
|
89
56
|
};
|
|
90
57
|
backgroundSize: {
|
|
91
|
-
type?:
|
|
92
|
-
default?:
|
|
93
|
-
} | {
|
|
94
|
-
type: any;
|
|
95
|
-
default: string;
|
|
58
|
+
type?: import("vue").PropType<string>;
|
|
59
|
+
default?: string;
|
|
96
60
|
};
|
|
97
61
|
contextRequestUrl: {
|
|
98
|
-
type?:
|
|
99
|
-
default?:
|
|
100
|
-
} | {
|
|
101
|
-
type: any;
|
|
102
|
-
default: string;
|
|
62
|
+
type?: import("vue").PropType<string>;
|
|
63
|
+
default?: string;
|
|
103
64
|
};
|
|
104
65
|
mode: {
|
|
105
|
-
type?:
|
|
106
|
-
default?:
|
|
107
|
-
} | {
|
|
108
|
-
type: any;
|
|
109
|
-
default: string;
|
|
66
|
+
type?: import("vue").PropType<"preview" | "normal">;
|
|
67
|
+
default?: "preview" | "normal";
|
|
110
68
|
};
|
|
111
69
|
}>>, {}>> & Record<string, any>;
|
|
112
70
|
export default EcanPageConfig;
|
|
@@ -10,52 +10,31 @@ export interface PageConfig {
|
|
|
10
10
|
export declare const pageConfig: PageConfig;
|
|
11
11
|
export declare const pageConfigComponentProps: {
|
|
12
12
|
width: {
|
|
13
|
-
type?:
|
|
14
|
-
default?:
|
|
15
|
-
} | {
|
|
16
|
-
type: any;
|
|
17
|
-
default: string;
|
|
13
|
+
type?: import("vue").PropType<string>;
|
|
14
|
+
default?: string;
|
|
18
15
|
};
|
|
19
16
|
height: {
|
|
20
|
-
type?:
|
|
21
|
-
default?:
|
|
22
|
-
} | {
|
|
23
|
-
type: any;
|
|
24
|
-
default: string;
|
|
17
|
+
type?: import("vue").PropType<string>;
|
|
18
|
+
default?: string;
|
|
25
19
|
};
|
|
26
20
|
backgroundColor: {
|
|
27
|
-
type?:
|
|
28
|
-
default?:
|
|
29
|
-
} | {
|
|
30
|
-
type: any;
|
|
31
|
-
default: string;
|
|
21
|
+
type?: import("vue").PropType<string>;
|
|
22
|
+
default?: string;
|
|
32
23
|
};
|
|
33
24
|
backgroundImage: {
|
|
34
|
-
type?:
|
|
35
|
-
default?:
|
|
36
|
-
} | {
|
|
37
|
-
type: any;
|
|
38
|
-
default: string;
|
|
25
|
+
type?: import("vue").PropType<string>;
|
|
26
|
+
default?: string;
|
|
39
27
|
};
|
|
40
28
|
backgroundSize: {
|
|
41
|
-
type?:
|
|
42
|
-
default?:
|
|
43
|
-
} | {
|
|
44
|
-
type: any;
|
|
45
|
-
default: string;
|
|
29
|
+
type?: import("vue").PropType<string>;
|
|
30
|
+
default?: string;
|
|
46
31
|
};
|
|
47
32
|
contextRequestUrl: {
|
|
48
|
-
type?:
|
|
49
|
-
default?:
|
|
50
|
-
} | {
|
|
51
|
-
type: any;
|
|
52
|
-
default: string;
|
|
33
|
+
type?: import("vue").PropType<string>;
|
|
34
|
+
default?: string;
|
|
53
35
|
};
|
|
54
36
|
mode: {
|
|
55
|
-
type?:
|
|
56
|
-
default?:
|
|
57
|
-
} | {
|
|
58
|
-
type: any;
|
|
59
|
-
default: string;
|
|
37
|
+
type?: import("vue").PropType<"preview" | "normal">;
|
|
38
|
+
default?: "preview" | "normal";
|
|
60
39
|
};
|
|
61
40
|
};
|