@idmui/spot 0.4.2 → 0.4.4

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.
@@ -30,7 +30,8 @@ declare namespace _sfc_main {
30
30
  positionOffset: undefined;
31
31
  positionGmt: undefined;
32
32
  issuedDate: undefined;
33
- meteoData: {};
33
+ meteoData: undefined;
34
+ historyMeteoData: undefined;
34
35
  positionList: never[];
35
36
  position: undefined;
36
37
  activeIndex: undefined;
@@ -54,15 +55,19 @@ declare namespace _sfc_main {
54
55
  currentMonth: undefined;
55
56
  seasonalData: undefined;
56
57
  monthsOptions: never[];
58
+ dateRange: never[];
59
+ dateRangeZ: never[];
60
+ datePickerOptions: {};
61
+ selectDate: undefined;
57
62
  gateway: string;
58
63
  };
59
64
  namespace computed {
60
65
  function computeHourLT(): (time: any) => string;
61
66
  function computeHourZ(): (time: any) => string;
62
67
  function computeWeekLT(): (time: any) => string;
63
- function computeDDLT(): (time: any) => string;
64
68
  function computeMMMDDLT(): (time: any) => string;
65
69
  function computeMMMDDHHmmLT(): (time: any) => string;
70
+ function computeMMMDDyyyyLT(): (time: any) => string;
66
71
  function computeLat(): (lat: any, precision?: number) => any;
67
72
  function computeLng(): (lng: any, precision?: number) => any;
68
73
  function roundPrecision(): (num: any, precision?: number) => any;
@@ -81,15 +86,16 @@ declare namespace _sfc_main {
81
86
  function mounted(): void;
82
87
  namespace methods {
83
88
  function fetchSuggestPosition(name: any): Promise<false | undefined>;
84
- function handleSearch(): void;
89
+ function handleSearch(): Promise<void>;
85
90
  function fetchMyFollows(): Promise<void>;
86
91
  function handleFollow(): void;
87
92
  function handleFetchMeteo(): Promise<false | undefined>;
88
- function handleRender(): void;
93
+ function fetchHistoryMeteo(days: any): Promise<false | undefined>;
94
+ function handleRender(): Promise<void>;
89
95
  function initInfo(): void;
90
96
  function initWeatherEchart(): void;
91
- function handleMeteogramData7(): void;
92
- function handleMeteogramData14(): void;
97
+ function handleMeteogramData7(meteoData: any): void;
98
+ function handleMeteogramData14(meteoData: any, day: any, startTime: any): void;
93
99
  function initMeteogramEchart(): void;
94
100
  function handleFetchSeasonalData(): Promise<false | undefined>;
95
101
  function findMostFrequent(arr: any): string | undefined;
@@ -98,7 +104,9 @@ declare namespace _sfc_main {
98
104
  function initHoursTableData(): void;
99
105
  function handleClearHoursTable(): void;
100
106
  function initDaysTableData(): void;
101
- function initHourlyTableData(): void;
107
+ function initHourlyTableData(meteoData: any, day: any, startTime: any): void;
102
108
  function handleSelectMonth(item: any): void;
109
+ function handleDateRange(): Promise<void>;
110
+ function handlePickDate(val: any): void;
103
111
  }
104
112
  }