@idmwx/idmui-report 2.9.7 → 2.9.9
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/Quota/index.d.ts +2 -1
- package/dist/Quota/src/orm/index4seoa.vue.d.ts +70 -0
- package/dist/index.js +5146 -4533
- package/dist/index.umd.cjs +5 -5
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/Quota/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'vue';
|
|
2
2
|
import OrmQuoteReport from './src/orm/index.vue';
|
|
3
|
+
import OrmQuoteReport4SEOA from './src/orm/index4seoa.vue';
|
|
3
4
|
export declare const QuoteReportPlugin: Plugin;
|
|
4
|
-
export { OrmQuoteReport };
|
|
5
|
+
export { OrmQuoteReport, OrmQuoteReport4SEOA };
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare namespace _sfc_main {
|
|
3
|
+
const name: string;
|
|
4
|
+
const components: undefined;
|
|
5
|
+
namespace props {
|
|
6
|
+
namespace report {
|
|
7
|
+
export const type: ObjectConstructor;
|
|
8
|
+
function _default(): {};
|
|
9
|
+
export { _default as default };
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
function data(): {
|
|
13
|
+
mapboxToken: string;
|
|
14
|
+
mapboxStyle: string;
|
|
15
|
+
area: {
|
|
16
|
+
name: string;
|
|
17
|
+
rank: number;
|
|
18
|
+
width: string;
|
|
19
|
+
}[];
|
|
20
|
+
quota: (string | number)[][];
|
|
21
|
+
map: undefined;
|
|
22
|
+
source: string;
|
|
23
|
+
layer: string;
|
|
24
|
+
labelLayer: string;
|
|
25
|
+
geojson: {
|
|
26
|
+
type: string;
|
|
27
|
+
features: ({
|
|
28
|
+
type: string;
|
|
29
|
+
properties: {
|
|
30
|
+
rank: number;
|
|
31
|
+
name: string;
|
|
32
|
+
seg?: undefined;
|
|
33
|
+
};
|
|
34
|
+
geometry: {
|
|
35
|
+
type: string;
|
|
36
|
+
coordinates: number[][];
|
|
37
|
+
};
|
|
38
|
+
} | {
|
|
39
|
+
type: string;
|
|
40
|
+
properties: {
|
|
41
|
+
rank: number;
|
|
42
|
+
name: string;
|
|
43
|
+
seg: number;
|
|
44
|
+
};
|
|
45
|
+
geometry: {
|
|
46
|
+
type: string;
|
|
47
|
+
coordinates: number[][];
|
|
48
|
+
};
|
|
49
|
+
} | {
|
|
50
|
+
type: string;
|
|
51
|
+
properties: {
|
|
52
|
+
rank: number;
|
|
53
|
+
name: string;
|
|
54
|
+
seg?: undefined;
|
|
55
|
+
};
|
|
56
|
+
geometry: {
|
|
57
|
+
type: string;
|
|
58
|
+
coordinates: number[];
|
|
59
|
+
};
|
|
60
|
+
})[];
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
const computed: {};
|
|
64
|
+
const watch: {};
|
|
65
|
+
function mounted(): void;
|
|
66
|
+
namespace methods {
|
|
67
|
+
function initMap(): Promise<void>;
|
|
68
|
+
function handleDraw(): Promise<void>;
|
|
69
|
+
}
|
|
70
|
+
}
|