@idmui/spot 0.5.6 → 0.5.8
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 +19 -14
- package/dist/index.js +1360 -1011
- package/dist/index.umd.cjs +36 -36
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -23,9 +23,26 @@ declare namespace _sfc_main {
|
|
|
23
23
|
}
|
|
24
24
|
const emits: string[];
|
|
25
25
|
function data(): {
|
|
26
|
+
loading: {
|
|
27
|
+
weatherEchart: boolean;
|
|
28
|
+
meteogramEchart: boolean;
|
|
29
|
+
hoursTable: boolean;
|
|
30
|
+
daysTable: boolean;
|
|
31
|
+
hourlyTable: boolean;
|
|
32
|
+
seasonalEchart: boolean;
|
|
33
|
+
};
|
|
34
|
+
menuIndex: number;
|
|
26
35
|
placeholder: string;
|
|
27
36
|
searchName: undefined;
|
|
28
37
|
rawSearchIcon: import("vue").Raw<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
38
|
+
forecastModel: string;
|
|
39
|
+
modelList: string[];
|
|
40
|
+
followList: undefined;
|
|
41
|
+
followItem: undefined;
|
|
42
|
+
followDialogTitle: string;
|
|
43
|
+
showFollowDialog: boolean;
|
|
44
|
+
followRemark: string;
|
|
45
|
+
showDownloadDialog: boolean;
|
|
29
46
|
etime: undefined;
|
|
30
47
|
positionOffset: undefined;
|
|
31
48
|
positionGmt: undefined;
|
|
@@ -37,20 +54,6 @@ declare namespace _sfc_main {
|
|
|
37
54
|
hoursTableData: {};
|
|
38
55
|
pickedDate: undefined;
|
|
39
56
|
pickedWeek: string;
|
|
40
|
-
followList: undefined;
|
|
41
|
-
followItem: undefined;
|
|
42
|
-
followDialogTitle: string;
|
|
43
|
-
showFollowDialog: boolean;
|
|
44
|
-
followRemark: string;
|
|
45
|
-
loading: {
|
|
46
|
-
weatherEchart: boolean;
|
|
47
|
-
meteogramEchart: boolean;
|
|
48
|
-
hoursTable: boolean;
|
|
49
|
-
daysTable: boolean;
|
|
50
|
-
hourlyTable: boolean;
|
|
51
|
-
seasonalEchart: boolean;
|
|
52
|
-
};
|
|
53
|
-
menuIndex: number;
|
|
54
57
|
meteogramData: undefined;
|
|
55
58
|
daysTableData: never[];
|
|
56
59
|
hourlyTableData: never[];
|
|
@@ -90,9 +93,11 @@ declare namespace _sfc_main {
|
|
|
90
93
|
function handleSearchFocus(): void;
|
|
91
94
|
function fetchSuggestPosition(name: any): Promise<false | undefined>;
|
|
92
95
|
function handleSearch(item: any): Promise<void>;
|
|
96
|
+
function handleModelChange(): void;
|
|
93
97
|
function handleFollowDialogOpen(): void;
|
|
94
98
|
function fetchMyFollows(): Promise<void>;
|
|
95
99
|
function handleClickFollow(): void;
|
|
100
|
+
function handleDownload(): void;
|
|
96
101
|
function fetchForecastMeteo(days: any): Promise<false | undefined>;
|
|
97
102
|
function fetchHistoryMeteo(days: any): Promise<false | undefined>;
|
|
98
103
|
function handleRender(): Promise<void>;
|