@vectoriox/iox-builder 1.4.30 → 1.4.32

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.4.30",
3
+ "version": "1.4.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",
@@ -27,6 +27,7 @@ declare enum StyleCategory {
27
27
  Position = "Position",
28
28
  Background = "Background",
29
29
  Effects = "Effects",
30
+ List = "List",
30
31
  Dimensions = "Dimensions"
31
32
  }
32
33
  interface IoxBinding {
@@ -272,6 +273,9 @@ declare const UNITS_FIXED: string[];
272
273
  declare const UNITS_DEG: string[];
273
274
  declare function resolveTraitControllerType(type: TraitInputType): string;
274
275
  declare function resolveTraitOptions(trait: ComponentTrait): any;
276
+ declare class ListGroupStyleConfig extends GroupStyleConfig {
277
+ constructor();
278
+ }
275
279
  /**
276
280
  * Returns a fresh set of all 8 style-group configs in canonical display order.
277
281
  * Every call produces new TraitConfig instances so different component nodes
@@ -503,6 +507,8 @@ declare class DragEngineService {
503
507
  readonly ids$: BehaviorSubject<string[]>;
504
508
  readonly isDragging$: BehaviorSubject<boolean>;
505
509
  readonly deepTarget$: BehaviorSubject<string | null>;
510
+ /** Emits the dropped/inserted ComponentNode after every successful drop. */
511
+ readonly dropComplete$: Subject<ComponentNode>;
506
512
  private _isDragging;
507
513
  private _payload;
508
514
  private _sourceEl;
@@ -827,6 +833,7 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
827
833
  private autoFitViewport;
828
834
  selectPanel(panel: string): void;
829
835
  handleClick(event: any): void;
836
+ private _selectAfterDrop;
830
837
  handleMouseEnter(event: any): void;
831
838
  handleMouseLeave(): void;
832
839
  handleCanvasClick(): void;
@@ -1171,6 +1178,8 @@ declare class BuilderContainerComponent implements OnInit, OnDestroy {
1171
1178
  nodeId: string;
1172
1179
  dropListId: string;
1173
1180
  htmlTag: string;
1181
+ start: number;
1182
+ reversed: boolean;
1174
1183
  childClick: EventEmitter<any>;
1175
1184
  childMouseEnter: EventEmitter<any>;
1176
1185
  childMouseLeave: EventEmitter<void>;
@@ -1180,7 +1189,7 @@ declare class BuilderContainerComponent implements OnInit, OnDestroy {
1180
1189
  get listOrientation(): 'horizontal' | 'vertical';
1181
1190
  onDrop(event: IoxDropEvent): void;
1182
1191
  static ɵfac: i0.ɵɵFactoryDeclaration<BuilderContainerComponent, never>;
1183
- static ɵcmp: i0.ɵɵComponentDeclaration<BuilderContainerComponent, "app-builder-container", never, { "children": { "alias": "children"; "required": false; }; "style": { "alias": "style"; "required": false; }; "nodeId": { "alias": "nodeId"; "required": false; }; "dropListId": { "alias": "dropListId"; "required": false; }; "htmlTag": { "alias": "htmlTag"; "required": false; }; }, { "childClick": "childClick"; "childMouseEnter": "childMouseEnter"; "childMouseLeave": "childMouseLeave"; }, never, never, false, never>;
1192
+ static ɵcmp: i0.ɵɵComponentDeclaration<BuilderContainerComponent, "app-builder-container", never, { "children": { "alias": "children"; "required": false; }; "style": { "alias": "style"; "required": false; }; "nodeId": { "alias": "nodeId"; "required": false; }; "dropListId": { "alias": "dropListId"; "required": false; }; "htmlTag": { "alias": "htmlTag"; "required": false; }; "start": { "alias": "start"; "required": false; }; "reversed": { "alias": "reversed"; "required": false; }; }, { "childClick": "childClick"; "childMouseEnter": "childMouseEnter"; "childMouseLeave": "childMouseLeave"; }, never, never, false, never>;
1184
1193
  }
1185
1194
 
1186
1195
  declare class BuilderLinkedContainerComponent implements OnInit, OnDestroy {
@@ -1492,6 +1501,15 @@ declare class BuilderLinkedContainerConfig extends ComponentConfig {
1492
1501
  constructor();
1493
1502
  }
1494
1503
 
1504
+ declare class BuilderListComponentConfig extends ComponentConfig {
1505
+ constructor();
1506
+ private makeListItem;
1507
+ }
1508
+
1509
+ declare class BuilderListItemComponentConfig extends ComponentConfig {
1510
+ constructor();
1511
+ }
1512
+
1495
1513
  declare class RepeaterComponentConfig extends ComponentConfig {
1496
1514
  constructor();
1497
1515
  }
@@ -1508,5 +1526,5 @@ declare class TextBlockComponentConfig extends ComponentConfig {
1508
1526
  constructor();
1509
1527
  }
1510
1528
 
1511
- export { ACTION_TYPE_OPTIONS, BuilderButtonBlockComponent, BuilderButtonComponentConfig, BuilderComponent, BuilderContainerComponent, BuilderContainerComponentConfig, BuilderDividerComponentConfig, BuilderHeadingComponentConfig, BuilderIconComponentConfig, BuilderImageComponentConfig, BuilderLinkComponentConfig, BuilderLinkedContainerComponent, BuilderLinkedContainerConfig, BuilderMode, BuilderRepeaterComponent, BuilderSpacerComponentConfig, ButtonBlockComponentConfig, CardComponentConfig, ComponentConfig, ComponentRegistryService, DEVICE_OPTIONS, DataSourceRegistryService, DeviceMode, DragEngineService, EASING_OPTIONS, GroupStyleConfig, INTERACTION_STATES, INVERSE_ACTION, IOX_CONTENT_SERVICE, IOX_FONT_MANAGER, InteractionEngineService, InteractionsPanelComponent, IoxBuilderModule, IoxDraggableDirective, IoxDropzoneDirective, LayerTreeComponent, NodeAction, OverlayComponent, OverlayService, PanelChildComponent, PanelComponent, PanelEventService, PanelEventTypes, PanelTypes, PresetRegistryService, ROUTE_ANIMATION_OPTIONS, RenderDirective, RepeaterComponentConfig, SCREEN_WIDTH_OPTIONS, STRUCTURAL_STATES, SUPPORTED_STATES, SectionComponent, SectionComponentConfig, StyleCategory, StyleRegistryService, TraitConfig as StyleTraitConfig, TRIGGER_OPTIONS, TextBlockComponentConfig, ToolbarAction, ToolbarComponent, TraitConfig, TraitInputType, UNITS_ALL, UNITS_DEG, UNITS_FIXED, UNITS_NO_VW, VIRTUAL_TRAIT_KEYS, ViewportService, ZOOM_OPTIONS, buildFullStyleTraits, buildPresetStyleTraits, composeVirtualTraits, defaultPageSettings, generateNodeId, resolveTraitControllerType, resolveTraitOptions };
1529
+ export { ACTION_TYPE_OPTIONS, BuilderButtonBlockComponent, BuilderButtonComponentConfig, BuilderComponent, BuilderContainerComponent, BuilderContainerComponentConfig, BuilderDividerComponentConfig, BuilderHeadingComponentConfig, BuilderIconComponentConfig, BuilderImageComponentConfig, BuilderLinkComponentConfig, BuilderLinkedContainerComponent, BuilderLinkedContainerConfig, BuilderListComponentConfig, BuilderListItemComponentConfig, BuilderMode, BuilderRepeaterComponent, BuilderSpacerComponentConfig, ButtonBlockComponentConfig, CardComponentConfig, ComponentConfig, ComponentRegistryService, DEVICE_OPTIONS, DataSourceRegistryService, DeviceMode, DragEngineService, EASING_OPTIONS, GroupStyleConfig, INTERACTION_STATES, INVERSE_ACTION, IOX_CONTENT_SERVICE, IOX_FONT_MANAGER, InteractionEngineService, InteractionsPanelComponent, IoxBuilderModule, IoxDraggableDirective, IoxDropzoneDirective, LayerTreeComponent, ListGroupStyleConfig, NodeAction, OverlayComponent, OverlayService, PanelChildComponent, PanelComponent, PanelEventService, PanelEventTypes, PanelTypes, PresetRegistryService, ROUTE_ANIMATION_OPTIONS, RenderDirective, RepeaterComponentConfig, SCREEN_WIDTH_OPTIONS, STRUCTURAL_STATES, SUPPORTED_STATES, SectionComponent, SectionComponentConfig, StyleCategory, StyleRegistryService, TraitConfig as StyleTraitConfig, TRIGGER_OPTIONS, TextBlockComponentConfig, ToolbarAction, ToolbarComponent, TraitConfig, TraitInputType, UNITS_ALL, UNITS_DEG, UNITS_FIXED, UNITS_NO_VW, VIRTUAL_TRAIT_KEYS, ViewportService, ZOOM_OPTIONS, buildFullStyleTraits, buildPresetStyleTraits, composeVirtualTraits, defaultPageSettings, generateNodeId, resolveTraitControllerType, resolveTraitOptions };
1512
1530
  export type { ComponentNode, ComponentTrait, DeviceOption, DragPayload, DsFilterByQueryParam, DsFilterByRouteParam, ElementState, InteractionAction, InteractionActionType, InteractionTrigger, IoxBinding, IoxContentService, IoxDataSource, IoxDropEvent, IoxFontManager, IoxInteraction, NodeRef, OverlayBoxModel, OverlayBoxSpacing, OverlayEntry, PageRouteAnimationSettings, PageScrollSettings, PageSettings, PageStyleSettings, PanelEvent, QuadSizeSegment, RouteAnimationPreset, ScreenWidthOption, StylePreset, StyleTrait, StyleTraitGroup, TraitOptionMap, TraitSelectOption, TraitShowCondition, ViewportState, ZoomOption };