@vectoriox/iox-builder 1.4.17 → 1.4.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.
package/package.json
CHANGED
|
@@ -602,6 +602,17 @@ declare class InteractionEngineService {
|
|
|
602
602
|
private runActions;
|
|
603
603
|
private resolveTarget;
|
|
604
604
|
private executeAction;
|
|
605
|
+
/**
|
|
606
|
+
* Freeze an element at the animation's starting frame immediately, before any
|
|
607
|
+
* trigger fires. Without this, entrance animations (fadeIn, moveUp, …) show the
|
|
608
|
+
* element at its natural visible state for the time between mount and trigger —
|
|
609
|
+
* causing a visible-then-disappear-then-animate flicker.
|
|
610
|
+
*
|
|
611
|
+
* Only call this for triggers that will eventually animate the element in
|
|
612
|
+
* (pageLoad, viewportEnter). Click/hover triggers must NOT pre-hide the element
|
|
613
|
+
* because the element should remain normally visible until interacted with.
|
|
614
|
+
*/
|
|
615
|
+
private applyPreState;
|
|
605
616
|
private reverseAction;
|
|
606
617
|
private buildAnimation;
|
|
607
618
|
static ɵfac: i0.ɵɵFactoryDeclaration<InteractionEngineService, never>;
|