@vectoriox/iox-builder 1.4.37 → 1.4.38
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
|
@@ -367,7 +367,9 @@ declare enum ToolbarAction {
|
|
|
367
367
|
CopyPreset = "copy-preset",
|
|
368
368
|
PastePreset = "paste-preset",
|
|
369
369
|
CopyInteractionPreset = "copy-interaction-preset",
|
|
370
|
-
PasteInteractionPreset = "paste-interaction-preset"
|
|
370
|
+
PasteInteractionPreset = "paste-interaction-preset",
|
|
371
|
+
Copy = "copy",
|
|
372
|
+
Paste = "paste"
|
|
371
373
|
}
|
|
372
374
|
declare enum NodeAction {
|
|
373
375
|
Delete = "delete",
|
|
@@ -794,7 +796,11 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
|
|
|
794
796
|
pageStatus: string;
|
|
795
797
|
pageSettings: PageSettings | null;
|
|
796
798
|
globalElements: ComponentNode[];
|
|
799
|
+
canUndo: boolean;
|
|
800
|
+
canRedo: boolean;
|
|
797
801
|
save: EventEmitter<void>;
|
|
802
|
+
undo: EventEmitter<void>;
|
|
803
|
+
redo: EventEmitter<void>;
|
|
798
804
|
back: EventEmitter<void>;
|
|
799
805
|
preview: EventEmitter<void>;
|
|
800
806
|
publishToggle: EventEmitter<void>;
|
|
@@ -933,7 +939,7 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
|
|
|
933
939
|
private findParentNode;
|
|
934
940
|
private handlePanelEvents;
|
|
935
941
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuilderComponent, never>;
|
|
936
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BuilderComponent, "app-builder", never, { "layout": { "alias": "layout"; "required": false; }; "dataSources": { "alias": "dataSources"; "required": false; }; "orgId": { "alias": "orgId"; "required": false; }; "routeParams": { "alias": "routeParams"; "required": false; }; "pageName": { "alias": "pageName"; "required": false; }; "isSaving": { "alias": "isSaving"; "required": false; }; "pageStatus": { "alias": "pageStatus"; "required": false; }; "pageSettings": { "alias": "pageSettings"; "required": false; }; "globalElements": { "alias": "globalElements"; "required": false; }; }, { "save": "save"; "back": "back"; "preview": "preview"; "publishToggle": "publishToggle"; "pageSettingsChange": "pageSettingsChange"; "applyAnimationToAll": "applyAnimationToAll"; "saveBlock": "saveBlock"; "globalElementsChange": "globalElementsChange"; }, never, ["[builderComponents]", "[builderTokens]", "[builderPanel]"], false, never>;
|
|
942
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuilderComponent, "app-builder", never, { "layout": { "alias": "layout"; "required": false; }; "dataSources": { "alias": "dataSources"; "required": false; }; "orgId": { "alias": "orgId"; "required": false; }; "routeParams": { "alias": "routeParams"; "required": false; }; "pageName": { "alias": "pageName"; "required": false; }; "isSaving": { "alias": "isSaving"; "required": false; }; "pageStatus": { "alias": "pageStatus"; "required": false; }; "pageSettings": { "alias": "pageSettings"; "required": false; }; "globalElements": { "alias": "globalElements"; "required": false; }; "canUndo": { "alias": "canUndo"; "required": false; }; "canRedo": { "alias": "canRedo"; "required": false; }; }, { "save": "save"; "undo": "undo"; "redo": "redo"; "back": "back"; "preview": "preview"; "publishToggle": "publishToggle"; "pageSettingsChange": "pageSettingsChange"; "applyAnimationToAll": "applyAnimationToAll"; "saveBlock": "saveBlock"; "globalElementsChange": "globalElementsChange"; }, never, ["[builderComponents]", "[builderTokens]", "[builderPanel]"], false, never>;
|
|
937
943
|
}
|
|
938
944
|
|
|
939
945
|
/**
|
|
@@ -1205,6 +1211,9 @@ declare class OverlayComponent implements OnInit, OnDestroy {
|
|
|
1205
1211
|
get hasInteractionPresetInClipboard(): boolean;
|
|
1206
1212
|
onEditPreset(event: MouseEvent): void;
|
|
1207
1213
|
onEditInteractionPreset(event: MouseEvent): void;
|
|
1214
|
+
get hasCopiedNode(): boolean;
|
|
1215
|
+
onCopyNode(event: MouseEvent): void;
|
|
1216
|
+
onPasteNode(event: MouseEvent): void;
|
|
1208
1217
|
onCopyPreset(event: MouseEvent): void;
|
|
1209
1218
|
onPastePreset(event: MouseEvent): void;
|
|
1210
1219
|
onCopyInteractionPreset(event: MouseEvent): void;
|