easter-egg-quest 1.0.24 → 1.0.26
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.
|
@@ -22,6 +22,8 @@ export declare class HiddenEntry {
|
|
|
22
22
|
private clickHandler;
|
|
23
23
|
private fallbackButton;
|
|
24
24
|
private _injectedElement;
|
|
25
|
+
private _replacedTextNode;
|
|
26
|
+
private _replacedTextContent;
|
|
25
27
|
private _destroyed;
|
|
26
28
|
private _hintVisibleElapsed;
|
|
27
29
|
private _hintVisibleStart;
|
|
@@ -48,6 +50,9 @@ export declare class HiddenEntry {
|
|
|
48
50
|
private _clearFallbackTimer;
|
|
49
51
|
private _getSearchRoot;
|
|
50
52
|
private _findTextCandidates;
|
|
53
|
+
private _shuffleCandidates;
|
|
54
|
+
private _canHostInjectedTrigger;
|
|
55
|
+
private _isTriggerClipped;
|
|
51
56
|
private _startBootstrapWatch;
|
|
52
57
|
private _stopBootstrapWatch;
|
|
53
58
|
/**
|
|
@@ -73,6 +78,13 @@ export declare class HiddenEntry {
|
|
|
73
78
|
* Returns true if inserted without layout shift.
|
|
74
79
|
*/
|
|
75
80
|
private _tryInsertBetweenWords;
|
|
81
|
+
private _shuffleNumbers;
|
|
82
|
+
private _replaceTextCandidate;
|
|
83
|
+
private _findReplacementTextTarget;
|
|
84
|
+
private _shuffleTextTargets;
|
|
85
|
+
private _normalizeComparableText;
|
|
86
|
+
private _restoreReplacedText;
|
|
87
|
+
private _applyTriggerTypography;
|
|
76
88
|
private _attachToElement;
|
|
77
89
|
private _startHintEscalation;
|
|
78
90
|
private _startVisibilityTimer;
|
package/package.json
CHANGED