@touchvue/plugin 1.0.0-beta.6 → 1.0.0-beta.7
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/components/echarts-bar/src/echarts-bar.d.ts +2 -2
- package/components/echarts-bar/src/echarts-bar.vue.d.ts +3 -3
- package/components/echarts-map/src/echarts-map.d.ts +20 -0
- package/components/echarts-map/src/echarts-map.vue.d.ts +45 -0
- package/index.cjs +3 -3
- package/index.mjs +91 -46
- package/package.json +1 -1
- package/style/style.css +1 -1
|
@@ -67,7 +67,7 @@ export interface EchartsBarProps {
|
|
|
67
67
|
tooltipTextColor?: string;
|
|
68
68
|
tooltipBgColor?: string;
|
|
69
69
|
tooltipBorderColor?: string;
|
|
70
|
-
|
|
70
|
+
showDefaultTooltip?: boolean;
|
|
71
71
|
}
|
|
72
72
|
export declare const echartsBarProps: {
|
|
73
73
|
data: {
|
|
@@ -203,7 +203,7 @@ export declare const echartsBarProps: {
|
|
|
203
203
|
type: StringConstructor;
|
|
204
204
|
default: string;
|
|
205
205
|
};
|
|
206
|
-
|
|
206
|
+
showDefaultTooltip: {
|
|
207
207
|
type: BooleanConstructor;
|
|
208
208
|
default: boolean;
|
|
209
209
|
};
|
|
@@ -135,7 +135,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
135
135
|
type: StringConstructor;
|
|
136
136
|
default: string;
|
|
137
137
|
};
|
|
138
|
-
|
|
138
|
+
showDefaultTooltip: {
|
|
139
139
|
type: BooleanConstructor;
|
|
140
140
|
default: boolean;
|
|
141
141
|
};
|
|
@@ -279,7 +279,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
279
279
|
type: StringConstructor;
|
|
280
280
|
default: string;
|
|
281
281
|
};
|
|
282
|
-
|
|
282
|
+
showDefaultTooltip: {
|
|
283
283
|
type: BooleanConstructor;
|
|
284
284
|
default: boolean;
|
|
285
285
|
};
|
|
@@ -320,6 +320,6 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
320
320
|
tooltipTextColor: string;
|
|
321
321
|
tooltipBgColor: string;
|
|
322
322
|
tooltipBorderColor: string;
|
|
323
|
-
|
|
323
|
+
showDefaultTooltip: boolean;
|
|
324
324
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
325
325
|
export default _default;
|
|
@@ -180,6 +180,26 @@ export declare const echartsMapProps: {
|
|
|
180
180
|
type: (NumberConstructor | StringConstructor)[];
|
|
181
181
|
default: number;
|
|
182
182
|
};
|
|
183
|
+
showLabelIcon: {
|
|
184
|
+
type: BooleanConstructor;
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
187
|
+
labelIcon: {
|
|
188
|
+
type: StringConstructor;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
labelIconType: {
|
|
192
|
+
type: PropType<"text" | "image">;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
labelIconSize: {
|
|
196
|
+
type: PropType<number | [number, number] | undefined>;
|
|
197
|
+
default: any;
|
|
198
|
+
};
|
|
199
|
+
position: {
|
|
200
|
+
type: StringConstructor;
|
|
201
|
+
default: string;
|
|
202
|
+
};
|
|
183
203
|
};
|
|
184
204
|
export declare const echartsMapEmits: {
|
|
185
205
|
'update:modelValue': (_val: string) => boolean;
|
|
@@ -166,6 +166,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
166
166
|
type: (NumberConstructor | StringConstructor)[];
|
|
167
167
|
default: number;
|
|
168
168
|
};
|
|
169
|
+
showLabelIcon: {
|
|
170
|
+
type: BooleanConstructor;
|
|
171
|
+
default: boolean;
|
|
172
|
+
};
|
|
173
|
+
labelIcon: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
labelIconType: {
|
|
178
|
+
type: PropType<"text" | "image">;
|
|
179
|
+
default: string;
|
|
180
|
+
};
|
|
181
|
+
labelIconSize: {
|
|
182
|
+
type: PropType<number | [number, number] | undefined>;
|
|
183
|
+
default: any;
|
|
184
|
+
};
|
|
185
|
+
position: {
|
|
186
|
+
type: StringConstructor;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
169
189
|
}>, {
|
|
170
190
|
back: () => void;
|
|
171
191
|
forward: (name: string, leaf: any) => void;
|
|
@@ -345,6 +365,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
345
365
|
type: (NumberConstructor | StringConstructor)[];
|
|
346
366
|
default: number;
|
|
347
367
|
};
|
|
368
|
+
showLabelIcon: {
|
|
369
|
+
type: BooleanConstructor;
|
|
370
|
+
default: boolean;
|
|
371
|
+
};
|
|
372
|
+
labelIcon: {
|
|
373
|
+
type: StringConstructor;
|
|
374
|
+
default: string;
|
|
375
|
+
};
|
|
376
|
+
labelIconType: {
|
|
377
|
+
type: PropType<"text" | "image">;
|
|
378
|
+
default: string;
|
|
379
|
+
};
|
|
380
|
+
labelIconSize: {
|
|
381
|
+
type: PropType<number | [number, number] | undefined>;
|
|
382
|
+
default: any;
|
|
383
|
+
};
|
|
384
|
+
position: {
|
|
385
|
+
type: StringConstructor;
|
|
386
|
+
default: string;
|
|
387
|
+
};
|
|
348
388
|
}>> & Readonly<{
|
|
349
389
|
onChange?: (_code: string, _area: {
|
|
350
390
|
name: string;
|
|
@@ -364,6 +404,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
364
404
|
shadow: string;
|
|
365
405
|
modelValue: string;
|
|
366
406
|
api: string;
|
|
407
|
+
position: string;
|
|
367
408
|
speed: string | number;
|
|
368
409
|
aspectRatio: string | number;
|
|
369
410
|
autoplay: boolean;
|
|
@@ -395,5 +436,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
395
436
|
showOutline: boolean;
|
|
396
437
|
outlineColor: string;
|
|
397
438
|
outlineWidth: string | number;
|
|
439
|
+
showLabelIcon: boolean;
|
|
440
|
+
labelIcon: string;
|
|
441
|
+
labelIconType: "image" | "text";
|
|
442
|
+
labelIconSize: number | [number, number];
|
|
398
443
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
399
444
|
export default _default;
|