@vectoriox/iox-builder 1.4.16 → 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
|
@@ -172,10 +172,12 @@ declare enum TraitInputType {
|
|
|
172
172
|
DirectionalSize = "directionalSize",
|
|
173
173
|
SelectButton = "selectButton",
|
|
174
174
|
Scrub = "scrub",
|
|
175
|
+
Range = "range",
|
|
175
176
|
Icon = "icon",
|
|
176
177
|
Media = "media",
|
|
177
178
|
FontFamily = "fontFamily",
|
|
178
|
-
GridTemplate = "gridTemplate"
|
|
179
|
+
GridTemplate = "gridTemplate",
|
|
180
|
+
SectionLabel = "sectionLabel"
|
|
179
181
|
}
|
|
180
182
|
interface TraitOptionMap {
|
|
181
183
|
[key: string]: any;
|
|
@@ -600,6 +602,17 @@ declare class InteractionEngineService {
|
|
|
600
602
|
private runActions;
|
|
601
603
|
private resolveTarget;
|
|
602
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;
|
|
603
616
|
private reverseAction;
|
|
604
617
|
private buildAnimation;
|
|
605
618
|
static ɵfac: i0.ɵɵFactoryDeclaration<InteractionEngineService, never>;
|