@vectoriox/iox-builder 1.4.51 → 1.4.53
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
|
@@ -366,6 +366,7 @@ declare enum ToolbarAction {
|
|
|
366
366
|
RemoveGlobal = "remove-global",
|
|
367
367
|
EditPreset = "edit-preset",
|
|
368
368
|
DetachSymbol = "detach-symbol",
|
|
369
|
+
ResyncSymbol = "resync-symbol",
|
|
369
370
|
EditInteractionPreset = "edit-interaction-preset",
|
|
370
371
|
CopyPreset = "copy-preset",
|
|
371
372
|
PastePreset = "paste-preset",
|
|
@@ -801,6 +802,23 @@ declare class InteractionPresetRegistryService {
|
|
|
801
802
|
static ɵprov: i0.ɵɵInjectableDeclaration<InteractionPresetRegistryService>;
|
|
802
803
|
}
|
|
803
804
|
|
|
805
|
+
/**
|
|
806
|
+
* SymbolRegistryService — in-memory store for org-level symbols.
|
|
807
|
+
*
|
|
808
|
+
* Loaded once per page by PageUiComponent alongside the page layout.
|
|
809
|
+
* Scoped to PageUiComponent.providers[] via IoxBuilderModule — one registry per builder instance.
|
|
810
|
+
*/
|
|
811
|
+
declare class SymbolRegistryService {
|
|
812
|
+
private symbols;
|
|
813
|
+
setSymbols(symbols: IoxSymbol[]): void;
|
|
814
|
+
getSymbol(id: string): IoxSymbol | undefined;
|
|
815
|
+
getAll(): IoxSymbol[];
|
|
816
|
+
upsert(symbol: IoxSymbol): void;
|
|
817
|
+
remove(id: string): void;
|
|
818
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SymbolRegistryService, never>;
|
|
819
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SymbolRegistryService>;
|
|
820
|
+
}
|
|
821
|
+
|
|
804
822
|
declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy {
|
|
805
823
|
private registry;
|
|
806
824
|
private overlayService;
|
|
@@ -811,6 +829,7 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
|
|
|
811
829
|
private interactionEngine;
|
|
812
830
|
private interactionPresetRegistry;
|
|
813
831
|
private clipboard;
|
|
832
|
+
private symbolRegistry;
|
|
814
833
|
private cdr;
|
|
815
834
|
private appRef;
|
|
816
835
|
layout: ComponentNode[];
|
|
@@ -905,7 +924,7 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
|
|
|
905
924
|
get canvasMinHeight(): number;
|
|
906
925
|
private sub?;
|
|
907
926
|
private registrySub?;
|
|
908
|
-
constructor(registry: ComponentRegistryService, overlayService: OverlayService, panelEventService: PanelEventService, dragEngine: DragEngineService, dsRegistry: DataSourceRegistryService, viewportService: ViewportService, interactionEngine: InteractionEngineService, interactionPresetRegistry: InteractionPresetRegistryService, clipboard: BuilderClipboardService, cdr: ChangeDetectorRef, appRef: ApplicationRef);
|
|
927
|
+
constructor(registry: ComponentRegistryService, overlayService: OverlayService, panelEventService: PanelEventService, dragEngine: DragEngineService, dsRegistry: DataSourceRegistryService, viewportService: ViewportService, interactionEngine: InteractionEngineService, interactionPresetRegistry: InteractionPresetRegistryService, clipboard: BuilderClipboardService, symbolRegistry: SymbolRegistryService, cdr: ChangeDetectorRef, appRef: ApplicationRef);
|
|
909
928
|
ngOnInit(): void;
|
|
910
929
|
ngOnChanges(changes: SimpleChanges): void;
|
|
911
930
|
ngAfterViewInit(): void;
|
|
@@ -1150,23 +1169,6 @@ declare class PresetRegistryService {
|
|
|
1150
1169
|
static ɵprov: i0.ɵɵInjectableDeclaration<PresetRegistryService>;
|
|
1151
1170
|
}
|
|
1152
1171
|
|
|
1153
|
-
/**
|
|
1154
|
-
* SymbolRegistryService — in-memory store for org-level symbols.
|
|
1155
|
-
*
|
|
1156
|
-
* Loaded once per page by PageUiComponent alongside the page layout.
|
|
1157
|
-
* Scoped to PageUiComponent.providers[] via IoxBuilderModule — one registry per builder instance.
|
|
1158
|
-
*/
|
|
1159
|
-
declare class SymbolRegistryService {
|
|
1160
|
-
private symbols;
|
|
1161
|
-
setSymbols(symbols: IoxSymbol[]): void;
|
|
1162
|
-
getSymbol(id: string): IoxSymbol | undefined;
|
|
1163
|
-
getAll(): IoxSymbol[];
|
|
1164
|
-
upsert(symbol: IoxSymbol): void;
|
|
1165
|
-
remove(id: string): void;
|
|
1166
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SymbolRegistryService, never>;
|
|
1167
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SymbolRegistryService>;
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
1172
|
declare class OverlayComponent implements OnInit, OnDestroy {
|
|
1171
1173
|
private overlayService;
|
|
1172
1174
|
private viewportService;
|