@vectoriox/iox-builder 1.4.40 → 1.4.41
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
|
@@ -1180,6 +1180,13 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1180
1180
|
selectOutlineStyle: Record<string, string>;
|
|
1181
1181
|
moreMenuVisible: boolean;
|
|
1182
1182
|
moreMenuStyle: Record<string, string>;
|
|
1183
|
+
badgeMenuVisible: boolean;
|
|
1184
|
+
badgeMenuType: 'style' | 'interaction' | null;
|
|
1185
|
+
badgeMenuPos: {
|
|
1186
|
+
x: number;
|
|
1187
|
+
y: number;
|
|
1188
|
+
};
|
|
1189
|
+
activeBadgeType: 'style' | 'interaction' | null;
|
|
1183
1190
|
private subs;
|
|
1184
1191
|
private resizeObserver?;
|
|
1185
1192
|
private containerResizeObserver?;
|
|
@@ -1211,6 +1218,10 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1211
1218
|
get hasInteractionPresetInClipboard(): boolean;
|
|
1212
1219
|
onEditPreset(event: MouseEvent): void;
|
|
1213
1220
|
onEditInteractionPreset(event: MouseEvent): void;
|
|
1221
|
+
onBadgeContextMenu(event: MouseEvent, type: 'style' | 'interaction'): void;
|
|
1222
|
+
onBadgeCopy(): void;
|
|
1223
|
+
onBadgeEdit(): void;
|
|
1224
|
+
closeBadgeMenu(): void;
|
|
1214
1225
|
get hasCopiedNode(): boolean;
|
|
1215
1226
|
onCopyNode(event: MouseEvent): void;
|
|
1216
1227
|
onPasteNode(event: MouseEvent): void;
|