@vectoriox/iox-builder 1.0.4 → 1.0.5

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.0.4",
3
+ "version": "1.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",
@@ -643,6 +643,8 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
643
643
  handleToolbarModeChange(mode: BuilderMode): void;
644
644
  handleToolbarDeviceChange(device: DeviceMode): void;
645
645
  handleToolbarZoomChange(value: number | 'fit'): void;
646
+ get globalElementsBefore(): ComponentNode[];
647
+ get globalElementsAfter(): ComponentNode[];
646
648
  /** Canvas width in CSS pixels (driven by ViewportService). */
647
649
  get viewportWidth(): number;
648
650
  /** Visual (scaled) canvas width — used to size the scroll container so the
@@ -1075,6 +1077,7 @@ declare class LayerTreeComponent implements OnInit, OnDestroy {
1075
1077
  private registry;
1076
1078
  private overlayService;
1077
1079
  layout: ComponentNode[];
1080
+ globalElements: ComponentNode[];
1078
1081
  nodeSelect: EventEmitter<ComponentNode>;
1079
1082
  nodeAction: EventEmitter<{
1080
1083
  action: NodeAction;
@@ -1082,6 +1085,7 @@ declare class LayerTreeComponent implements OnInit, OnDestroy {
1082
1085
  }>;
1083
1086
  nodeMove: EventEmitter<void>;
1084
1087
  flatTree: TreeNode[];
1088
+ flatGlobalTree: TreeNode[];
1085
1089
  selectedNodeId: string | null;
1086
1090
  hoveredNodeId: string | null;
1087
1091
  /** Cache: component type → icon class */
@@ -1089,6 +1093,7 @@ declare class LayerTreeComponent implements OnInit, OnDestroy {
1089
1093
  private selectSub?;
1090
1094
  /** Last-seen structural signature — used by ngDoCheck to skip no-op rebuilds. */
1091
1095
  private _layoutSig;
1096
+ private _globalSig;
1092
1097
  constructor(registry: ComponentRegistryService, overlayService: OverlayService);
1093
1098
  ngOnInit(): void;
1094
1099
  ngOnDestroy(): void;
@@ -1112,7 +1117,7 @@ declare class LayerTreeComponent implements OnInit, OnDestroy {
1112
1117
  private rebuild;
1113
1118
  private flattenTree;
1114
1119
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerTreeComponent, never>;
1115
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerTreeComponent, "app-layer-tree", never, { "layout": { "alias": "layout"; "required": false; }; }, { "nodeSelect": "nodeSelect"; "nodeAction": "nodeAction"; "nodeMove": "nodeMove"; }, never, never, false, never>;
1120
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerTreeComponent, "app-layer-tree", never, { "layout": { "alias": "layout"; "required": false; }; "globalElements": { "alias": "globalElements"; "required": false; }; }, { "nodeSelect": "nodeSelect"; "nodeAction": "nodeAction"; "nodeMove": "nodeMove"; }, never, never, false, never>;
1116
1121
  }
1117
1122
 
1118
1123
  declare class InteractionsPanelComponent implements OnInit, OnDestroy {