@vectoriox/iox-builder 1.4.21 → 1.4.22
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
|
@@ -587,6 +587,12 @@ declare class InteractionEngineService {
|
|
|
587
587
|
private attached;
|
|
588
588
|
/** Elements that have had pre-state applied (hidden by attach). */
|
|
589
589
|
private preStatedElements;
|
|
590
|
+
/**
|
|
591
|
+
* Pre-states queued for elements that weren't registered yet when the owner
|
|
592
|
+
* node's attach() ran. Keyed by target node ID. Consumed when the target
|
|
593
|
+
* element's own attach() fires.
|
|
594
|
+
*/
|
|
595
|
+
private pendingPreStates;
|
|
590
596
|
/** Action types that animate an element from hidden → visible. */
|
|
591
597
|
private readonly ENTRANCE_TYPES;
|
|
592
598
|
/** Action types that animate an element from visible → hidden. */
|