@vectoriox/iox-builder 1.4.43 → 1.4.45
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
|
@@ -682,6 +682,10 @@ declare class InteractionEngineService {
|
|
|
682
682
|
private attachInteraction;
|
|
683
683
|
private attachPageLoad;
|
|
684
684
|
private attachViewportEnter;
|
|
685
|
+
/** Returns true if any DOM ancestor of element is currently faded out via pre-state. */
|
|
686
|
+
private hasPreStatedAncestor;
|
|
687
|
+
/** Polls via RAF until no ancestor is in pre-state, then fires callback. */
|
|
688
|
+
private deferUntilVisible;
|
|
685
689
|
private attachClick;
|
|
686
690
|
private attachHover;
|
|
687
691
|
private runActions;
|
|
@@ -1220,6 +1224,7 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1220
1224
|
get interactions(): IoxInteraction[];
|
|
1221
1225
|
triggerLabel(trigger: string): string;
|
|
1222
1226
|
triggerIcon(trigger: string): string;
|
|
1227
|
+
actionLabel(ix: IoxInteraction): string;
|
|
1223
1228
|
get hasPresetInClipboard(): boolean;
|
|
1224
1229
|
get hasInteractionPresetInClipboard(): boolean;
|
|
1225
1230
|
onEditPreset(event: MouseEvent): void;
|