@vectoriox/iox-builder 1.4.9 → 1.4.10

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.9",
3
+ "version": "1.4.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",
@@ -728,6 +728,12 @@ declare class BuilderComponent implements OnInit, AfterViewInit, OnChanges, OnDe
728
728
  get viewportWidth(): number;
729
729
  /** Canvas viewport height in CSS pixels (driven by ViewportService). */
730
730
  get viewportHeight(): number;
731
+ /** Visual (scaled) canvas height — used to cap .preview-scroll so the canvas
732
+ * frame shows exactly one device viewport, matching 100vh = device.height exactly. */
733
+ get viewportScaledHeight(): number;
734
+ /** CSS height for .preview-scroll: the lesser of the scaled viewport height
735
+ * and the available canvas area. Keeps the canvas frame viewport-sized. */
736
+ get previewScrollHeight(): string;
731
737
  /** Visual (scaled) canvas width — used to size the scroll container so the
732
738
  * scrollbar aligns with the right edge of the canvas, not the CMS shell. */
733
739
  get viewportScaledWidth(): number;