easter-egg-quest 1.0.11 → 1.0.13
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.
|
@@ -23,6 +23,10 @@ export declare class HiddenEntry {
|
|
|
23
23
|
private fallbackButton;
|
|
24
24
|
private _injectedElement;
|
|
25
25
|
private _destroyed;
|
|
26
|
+
private _hintVisibleElapsed;
|
|
27
|
+
private _hintVisibleStart;
|
|
28
|
+
private _hintCheckInterval;
|
|
29
|
+
private _hintVisibilityHandler;
|
|
26
30
|
constructor(config: ResolvedConfig, script: NarrativeScript, onFound: () => void);
|
|
27
31
|
start(): void;
|
|
28
32
|
cleanup(): void;
|
|
@@ -36,8 +40,9 @@ export declare class HiddenEntry {
|
|
|
36
40
|
private _tryInsertBetweenWords;
|
|
37
41
|
private _attachToElement;
|
|
38
42
|
private _startHintEscalation;
|
|
39
|
-
|
|
40
|
-
private
|
|
43
|
+
private _startVisibilityTimer;
|
|
44
|
+
private _showFirstHintWithConfirm;
|
|
45
|
+
private _stopHintTimer;
|
|
41
46
|
private _showHint;
|
|
42
47
|
private _createHintContainer;
|
|
43
48
|
private _injectShimmerStyles;
|
|
@@ -15,7 +15,7 @@ export declare class ResultsRenderer {
|
|
|
15
15
|
constructor(config: ResolvedConfig);
|
|
16
16
|
show(score: FinalScore, onFinish: () => void): void;
|
|
17
17
|
destroy(): void;
|
|
18
|
-
private
|
|
18
|
+
private _buildContentDOM;
|
|
19
19
|
private _makeRand;
|
|
20
20
|
/** Draw a type-accurate egg on canvas. eggIdx: 0=silver, 1=gold, 2=festive. */
|
|
21
21
|
private _drawTypedEgg2D;
|
|
@@ -36,6 +36,5 @@ export declare class ResultsRenderer {
|
|
|
36
36
|
private _renderCard;
|
|
37
37
|
private _roundRect;
|
|
38
38
|
private _flashButton;
|
|
39
|
-
private _escapeHtml;
|
|
40
39
|
private _getStyles;
|
|
41
40
|
}
|
package/package.json
CHANGED