@vectoriox/iox-builder 1.4.27 → 1.4.29

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.27",
3
+ "version": "1.4.29",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",
@@ -129,6 +129,8 @@ interface StylePreset {
129
129
  name: string;
130
130
  /** Flat CSS property map — same shape as IoxLayoutNode.styleProps. */
131
131
  styleProps: Record<string, any>;
132
+ /** Per-state style overrides stored alongside the preset (e.g. hover, active, focus). */
133
+ stateStyles?: Partial<Record<ElementState, Record<string, any>>>;
132
134
  }
133
135
  type ElementState = 'hover' | 'active' | 'focus' | 'first-child' | 'last-child' | 'nth-child(odd)' | 'nth-child(even)';
134
136
  /** Interaction pseudo-classes — compiled to .iox-node-{id}:state */
@@ -1168,6 +1170,7 @@ declare class BuilderContainerComponent implements OnInit, OnDestroy {
1168
1170
  };
1169
1171
  nodeId: string;
1170
1172
  dropListId: string;
1173
+ htmlTag: string;
1171
1174
  childClick: EventEmitter<any>;
1172
1175
  childMouseEnter: EventEmitter<any>;
1173
1176
  childMouseLeave: EventEmitter<void>;
@@ -1177,7 +1180,7 @@ declare class BuilderContainerComponent implements OnInit, OnDestroy {
1177
1180
  get listOrientation(): 'horizontal' | 'vertical';
1178
1181
  onDrop(event: IoxDropEvent): void;
1179
1182
  static ɵfac: i0.ɵɵFactoryDeclaration<BuilderContainerComponent, never>;
1180
- 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; }; }, { "childClick": "childClick"; "childMouseEnter": "childMouseEnter"; "childMouseLeave": "childMouseLeave"; }, never, never, false, 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>;
1181
1184
  }
1182
1185
 
1183
1186
  declare class BuilderLinkedContainerComponent implements OnInit, OnDestroy {