easter-egg-quest 1.0.16 → 1.0.18
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,25 @@ export declare class HiddenEntry {
|
|
|
31
31
|
private _intersectionObserver;
|
|
32
32
|
private _mutationDebounce;
|
|
33
33
|
private _navigationHandler;
|
|
34
|
+
private _bootstrapObserver;
|
|
35
|
+
private _retryTimer;
|
|
36
|
+
private _fallbackTimer;
|
|
37
|
+
private _retryCount;
|
|
38
|
+
private _historyPatched;
|
|
34
39
|
constructor(config: ResolvedConfig, script: NarrativeScript, onFound: () => void);
|
|
35
40
|
start(): void;
|
|
36
41
|
cleanup(): void;
|
|
37
42
|
private _possessElement;
|
|
38
43
|
private _injectIntoExisting;
|
|
44
|
+
private _attemptInjection;
|
|
45
|
+
private _scheduleNextRetry;
|
|
46
|
+
private _scheduleFallback;
|
|
47
|
+
private _clearRetryTimer;
|
|
48
|
+
private _clearFallbackTimer;
|
|
49
|
+
private _getSearchRoot;
|
|
50
|
+
private _findTextCandidates;
|
|
51
|
+
private _startBootstrapWatch;
|
|
52
|
+
private _stopBootstrapWatch;
|
|
39
53
|
/**
|
|
40
54
|
* Watch for the injected trigger element being removed from the DOM
|
|
41
55
|
* (SPA re-render, route change, virtual scroll) or scrolled out of view.
|
|
@@ -32,6 +32,8 @@ export declare class ResultsRenderer {
|
|
|
32
32
|
/** Festive Fabergé egg — seeded enamel bands + golden dividers + gem dots. */
|
|
33
33
|
private _paintFestiveEgg;
|
|
34
34
|
private _copyShareImage;
|
|
35
|
+
private _copyShareText;
|
|
36
|
+
private _buildShareText;
|
|
35
37
|
private _downloadBlob;
|
|
36
38
|
private _renderCard;
|
|
37
39
|
private _roundRect;
|
package/package.json
CHANGED