@vectoriox/iox-builder 1.4.42 → 1.4.44
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
|
@@ -1165,8 +1165,10 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1165
1165
|
private presetRegistry;
|
|
1166
1166
|
private symbolRegistry;
|
|
1167
1167
|
private interactionPresetRegistry;
|
|
1168
|
+
private interactionEngine;
|
|
1168
1169
|
private clipboard;
|
|
1169
1170
|
private styleRegistry;
|
|
1171
|
+
private panelEventService;
|
|
1170
1172
|
private cdr;
|
|
1171
1173
|
toolbarAction: EventEmitter<{
|
|
1172
1174
|
action: ToolbarAction;
|
|
@@ -1187,6 +1189,7 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1187
1189
|
x: number;
|
|
1188
1190
|
y: number;
|
|
1189
1191
|
};
|
|
1192
|
+
badgeInteraction: IoxInteraction | null;
|
|
1190
1193
|
activeBadgeType: 'style' | 'interaction' | null;
|
|
1191
1194
|
private subs;
|
|
1192
1195
|
private resizeObserver?;
|
|
@@ -1196,7 +1199,7 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1196
1199
|
private _scrollRaf;
|
|
1197
1200
|
private boundScrollUpdate;
|
|
1198
1201
|
private activeScrollContainer;
|
|
1199
|
-
constructor(overlayService: OverlayService, viewportService: ViewportService, presetRegistry: PresetRegistryService, symbolRegistry: SymbolRegistryService, interactionPresetRegistry: InteractionPresetRegistryService, clipboard: BuilderClipboardService, styleRegistry: StyleRegistryService, cdr: ChangeDetectorRef);
|
|
1202
|
+
constructor(overlayService: OverlayService, viewportService: ViewportService, presetRegistry: PresetRegistryService, symbolRegistry: SymbolRegistryService, interactionPresetRegistry: InteractionPresetRegistryService, interactionEngine: InteractionEngineService, clipboard: BuilderClipboardService, styleRegistry: StyleRegistryService, panelEventService: PanelEventService, cdr: ChangeDetectorRef);
|
|
1200
1203
|
ngOnInit(): void;
|
|
1201
1204
|
ngOnDestroy(): void;
|
|
1202
1205
|
onSelectParent(event: MouseEvent): void;
|
|
@@ -1214,14 +1217,18 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1214
1217
|
get selectedPresetName(): string | null;
|
|
1215
1218
|
get isLinkedSymbol(): boolean;
|
|
1216
1219
|
get linkedSymbolName(): string | null;
|
|
1217
|
-
get
|
|
1220
|
+
get interactions(): IoxInteraction[];
|
|
1221
|
+
triggerLabel(trigger: string): string;
|
|
1222
|
+
triggerIcon(trigger: string): string;
|
|
1223
|
+
actionLabel(ix: IoxInteraction): string;
|
|
1218
1224
|
get hasPresetInClipboard(): boolean;
|
|
1219
1225
|
get hasInteractionPresetInClipboard(): boolean;
|
|
1220
1226
|
onEditPreset(event: MouseEvent): void;
|
|
1221
1227
|
onEditInteractionPreset(event: MouseEvent): void;
|
|
1222
|
-
onBadgeContextMenu(event: MouseEvent, type: 'style' | 'interaction'): void;
|
|
1228
|
+
onBadgeContextMenu(event: MouseEvent, type: 'style' | 'interaction', ix?: IoxInteraction): void;
|
|
1223
1229
|
onBadgeCopy(): void;
|
|
1224
1230
|
onBadgeEdit(): void;
|
|
1231
|
+
onBadgeRemoveInteraction(): void;
|
|
1225
1232
|
closeBadgeMenu(): void;
|
|
1226
1233
|
get hasCopiedNode(): boolean;
|
|
1227
1234
|
onCopyNode(event: MouseEvent): void;
|