@idmwx/idmui-report 3.0.0 → 3.0.2

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.
@@ -25,6 +25,9 @@ declare namespace _sfc_main {
25
25
  intermediaryBankAbaNo: string;
26
26
  };
27
27
  };
28
+ reservations4Route: never[];
29
+ reservations4Point: never[];
30
+ maxColspans: number;
28
31
  };
29
32
  namespace props {
30
33
  namespace report {
@@ -33,6 +36,13 @@ declare namespace _sfc_main {
33
36
  export { _default as default };
34
37
  }
35
38
  }
39
+ namespace watch {
40
+ export namespace report_1 {
41
+ function handler(): void;
42
+ const immediate: boolean;
43
+ }
44
+ export { report_1 as report };
45
+ }
36
46
  namespace computed {
37
47
  function computeTime(): (time: any, format?: string) => string;
38
48
  }
@@ -1,5 +1,6 @@
1
1
  import { Plugin } from 'vue';
2
2
  import OrmQuoteReport from './src/orm/index.vue';
3
3
  import OrmQuoteReport4SEOA from './src/orm/index4seoa.vue';
4
+ import OrmQuoteReport4TongLi from './src/orm/index4tongli.vue';
4
5
  export declare const QuoteReportPlugin: Plugin;
5
- export { OrmQuoteReport, OrmQuoteReport4SEOA };
6
+ export { OrmQuoteReport, OrmQuoteReport4SEOA, OrmQuoteReport4TongLi };
@@ -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
+ }