@vectoriox/iox-builder 1.4.18 → 1.4.19

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectoriox/iox-builder",
3
- "version": "1.4.18",
3
+ "version": "1.4.19",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",
@@ -1344,10 +1344,16 @@ declare class InteractionsPanelComponent implements OnInit, OnDestroy {
1344
1344
  }[];
1345
1345
  easingOptions: string[];
1346
1346
  interactions: IoxInteraction[];
1347
+ /** All canvas nodes available as animation targets. */
1348
+ nodeOptions: {
1349
+ label: string;
1350
+ value: string;
1351
+ }[];
1347
1352
  /** State for the "add interaction" form */
1348
1353
  isAdding: boolean;
1349
1354
  newTrigger: InteractionTrigger;
1350
1355
  newActionType: InteractionActionType;
1356
+ newTarget: string;
1351
1357
  newDuration: number;
1352
1358
  newDelay: number;
1353
1359
  newEasing: string;
@@ -1357,6 +1363,7 @@ declare class InteractionsPanelComponent implements OnInit, OnDestroy {
1357
1363
  private selectSub?;
1358
1364
  constructor(overlayService: OverlayService);
1359
1365
  ngOnInit(): void;
1366
+ refreshNodeOptions(): void;
1360
1367
  ngOnDestroy(): void;
1361
1368
  getTriggerLabel(trigger: InteractionTrigger): string;
1362
1369
  getTriggerIcon(trigger: InteractionTrigger): string;