@rsltda/components 1.0.19 → 1.0.21
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,11 +31,14 @@ export declare class RsMap extends HTMLElement {
|
|
|
31
31
|
private markerIconBaseUrl;
|
|
32
32
|
private defaultMarkerIconUrl;
|
|
33
33
|
private pointsCacheTtlMs;
|
|
34
|
+
private refreshIntervalMs;
|
|
35
|
+
private refreshIntervalId;
|
|
34
36
|
private static fontAwesomeAttached;
|
|
35
37
|
private panAnimationFrame;
|
|
36
38
|
private highlightTimeout;
|
|
37
39
|
private isSyncingInitialAttributes;
|
|
38
40
|
private refreshQueued;
|
|
41
|
+
private refreshQueuedForce;
|
|
39
42
|
private localPointsRequests;
|
|
40
43
|
static get observedAttributes(): string[];
|
|
41
44
|
constructor();
|
|
@@ -51,11 +54,15 @@ export declare class RsMap extends HTMLElement {
|
|
|
51
54
|
private setGoogleMapsKey;
|
|
52
55
|
private setPointsApiUrl;
|
|
53
56
|
private setCacheDays;
|
|
57
|
+
private applyRefreshInterval;
|
|
58
|
+
private parseRefreshInterval;
|
|
59
|
+
private clearRefreshTimer;
|
|
54
60
|
private setMarkerIconBase;
|
|
55
61
|
private setDefaultMarkerIcon;
|
|
56
62
|
private setMarca;
|
|
57
63
|
private setTipo;
|
|
58
64
|
private queueRefreshPoints;
|
|
65
|
+
forceRefresh(): void;
|
|
59
66
|
get marcaFilter(): string;
|
|
60
67
|
get tipoFilter(): string;
|
|
61
68
|
private updatePanelTitle;
|
|
@@ -107,6 +114,7 @@ export declare class RsMap extends HTMLElement {
|
|
|
107
114
|
private updateZoneButtonCounts;
|
|
108
115
|
private updateZoneVisibility;
|
|
109
116
|
private handleNearestClick;
|
|
117
|
+
private handleVisibilityChange;
|
|
110
118
|
private findNearestPoint;
|
|
111
119
|
private haversine;
|
|
112
120
|
private scrollToPointCard;
|
|
@@ -12,6 +12,7 @@ export declare class RsWhatsapp extends HTMLElement {
|
|
|
12
12
|
static get observedAttributes(): string[];
|
|
13
13
|
constructor();
|
|
14
14
|
connectedCallback(): void;
|
|
15
|
+
private cacheShadowElements;
|
|
15
16
|
disconnectedCallback(): void;
|
|
16
17
|
attributeChangedCallback(): void;
|
|
17
18
|
private syncAttributesToState;
|