@idmui/spot 0.4.6 → 0.4.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.
@@ -31,7 +31,6 @@ declare namespace _sfc_main {
31
31
  positionGmt: undefined;
32
32
  issuedDate: undefined;
33
33
  meteoData: undefined;
34
- historyMeteoData: undefined;
35
34
  positionList: never[];
36
35
  position: undefined;
37
36
  activeIndex: undefined;
@@ -89,23 +88,24 @@ declare namespace _sfc_main {
89
88
  function handleSearch(): Promise<void>;
90
89
  function fetchMyFollows(): Promise<void>;
91
90
  function handleFollow(): void;
92
- function handleFetchMeteo(): Promise<false | undefined>;
91
+ function fetchForecastMeteo(days: any): Promise<false | undefined>;
93
92
  function fetchHistoryMeteo(days: any): Promise<false | undefined>;
94
93
  function handleRender(): Promise<void>;
95
94
  function initInfo(): void;
95
+ function initDatePickerInfo(): void;
96
96
  function initWeatherEchart(): void;
97
97
  function handleMeteogramData7(meteoData: any): void;
98
98
  function handleMeteogramData14(meteoData: any, day: any, startTime: any): void;
99
99
  function initMeteogramEchart(): void;
100
- function handleFetchSeasonalData(): Promise<false | undefined>;
100
+ function fetchSeasonalData(): Promise<false | undefined>;
101
101
  function findMostFrequent(arr: any): string | undefined;
102
102
  function initSeasonalEchart(): void;
103
103
  function disposeEcharts(): void;
104
104
  function initHoursTableData(): void;
105
105
  function handleClearHoursTable(): void;
106
106
  function initDaysTableData(): void;
107
- function initHourlyTableData(meteoData: any, day: any, startTime: any): void;
108
- function handleSelectMonth(item: any): void;
107
+ function initHourlyTableData(meteoData: any, day: any, startTime: any, history: any): void;
108
+ function handleSelectMonth(item: any): Promise<void>;
109
109
  function handleDateRange(): Promise<void>;
110
110
  function handlePickDate(val: any): void;
111
111
  }