@idmui/spot 0.2.1 → 0.2.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.
- package/dist/Spot/src/index.vue.d.ts +27 -11
- package/dist/index.js +2046 -849
- package/dist/index.umd.cjs +28 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -37,19 +37,27 @@ declare namespace _sfc_main {
|
|
|
37
37
|
meteoData: {};
|
|
38
38
|
positionList: never[];
|
|
39
39
|
position: undefined;
|
|
40
|
-
loading: boolean;
|
|
41
40
|
activeIndex: undefined;
|
|
42
|
-
|
|
41
|
+
hoursTableData: {};
|
|
43
42
|
pickedDate: undefined;
|
|
44
43
|
pickedWeek: string;
|
|
45
44
|
collectList: never[];
|
|
46
45
|
isCollected: boolean;
|
|
46
|
+
loading: {
|
|
47
|
+
weatherEchart: boolean;
|
|
48
|
+
meteogramEchart: boolean;
|
|
49
|
+
hoursTable: boolean;
|
|
50
|
+
daysTable: boolean;
|
|
51
|
+
};
|
|
52
|
+
menuIndex: number;
|
|
53
|
+
meteogramData: undefined;
|
|
54
|
+
daysTableData: never[];
|
|
47
55
|
};
|
|
48
56
|
namespace computed {
|
|
49
|
-
function
|
|
57
|
+
function computeHourLT(): (time: any) => string;
|
|
50
58
|
function computeHourZ(): (time: any) => string;
|
|
51
|
-
function
|
|
52
|
-
function
|
|
59
|
+
function computeWeekLT(): (time: any) => string;
|
|
60
|
+
function computeMMMDDLT(): (time: any) => string;
|
|
53
61
|
function computeLat(): (lat: any, precision?: number) => any;
|
|
54
62
|
function computeLng(): (lng: any, precision?: number) => any;
|
|
55
63
|
function roundPrecision(): (num: any, precision?: number) => any;
|
|
@@ -61,16 +69,24 @@ declare namespace _sfc_main {
|
|
|
61
69
|
const immediate: boolean;
|
|
62
70
|
}
|
|
63
71
|
export { point_1 as point };
|
|
72
|
+
export namespace menuIndex {
|
|
73
|
+
function handler(): void;
|
|
74
|
+
}
|
|
64
75
|
}
|
|
65
76
|
namespace methods {
|
|
66
|
-
function handleRender(): void;
|
|
67
|
-
function initInfo(): void;
|
|
68
|
-
function initTableData(): void;
|
|
69
|
-
function initEchart(): void;
|
|
70
|
-
function handleCollect(): void;
|
|
71
77
|
function fetchSuggestPosition(name: any): Promise<false | undefined>;
|
|
72
78
|
function handleSearch(): void;
|
|
79
|
+
function handleCollect(): void;
|
|
73
80
|
function handleFetchMeteo(): Promise<false | undefined>;
|
|
74
|
-
function
|
|
81
|
+
function handleRender(): void;
|
|
82
|
+
function initInfo(): void;
|
|
83
|
+
function initWeatherEchart(): void;
|
|
84
|
+
function handleMeteogramData7(): void;
|
|
85
|
+
function handleMeteogramData14(): void;
|
|
86
|
+
function initMeteogramEchart(): void;
|
|
87
|
+
function disposeEcharts(): void;
|
|
88
|
+
function initHoursTableData(): void;
|
|
89
|
+
function handleClearHoursTable(): void;
|
|
90
|
+
function initDaysTableData(): void;
|
|
75
91
|
}
|
|
76
92
|
}
|