@vectoriox/iox-builder 1.4.20 → 1.4.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.
package/package.json
CHANGED
|
@@ -585,6 +585,12 @@ declare class DataSourceRegistryService {
|
|
|
585
585
|
declare class InteractionEngineService {
|
|
586
586
|
private overlayService;
|
|
587
587
|
private attached;
|
|
588
|
+
/** Elements that have had pre-state applied (hidden by attach). */
|
|
589
|
+
private preStatedElements;
|
|
590
|
+
/** Action types that animate an element from hidden → visible. */
|
|
591
|
+
private readonly ENTRANCE_TYPES;
|
|
592
|
+
/** Action types that animate an element from visible → hidden. */
|
|
593
|
+
private readonly EXIT_TYPES;
|
|
588
594
|
constructor(overlayService: OverlayService);
|
|
589
595
|
/** Wire all interactions for a node to its rendered DOM element. */
|
|
590
596
|
attach(node: ComponentNode): void;
|
|
@@ -608,15 +614,15 @@ declare class InteractionEngineService {
|
|
|
608
614
|
private executeAction;
|
|
609
615
|
/**
|
|
610
616
|
* Freeze an element at the animation's starting frame immediately, before any
|
|
611
|
-
* trigger fires.
|
|
612
|
-
*
|
|
613
|
-
* causing a visible-then-disappear-then-animate flicker.
|
|
617
|
+
* trigger fires. Called for ALL entrance-type actions regardless of trigger so
|
|
618
|
+
* that a click-triggered fadeIn on a menu overlay also starts it hidden.
|
|
614
619
|
*
|
|
615
|
-
*
|
|
616
|
-
*
|
|
617
|
-
*
|
|
620
|
+
* Also sets pointer-events:none so the invisible element does not block clicks
|
|
621
|
+
* on other content beneath it. Pointer events are restored in executeAction()
|
|
622
|
+
* once the entrance animation finishes.
|
|
618
623
|
*/
|
|
619
624
|
private applyPreState;
|
|
625
|
+
private clearInlineAnimationStyles;
|
|
620
626
|
private reverseAction;
|
|
621
627
|
private buildAnimation;
|
|
622
628
|
static ɵfac: i0.ɵɵFactoryDeclaration<InteractionEngineService, never>;
|