veo-sdk 0.5.31 → 0.5.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.
@@ -0,0 +1,5 @@
1
+ export { VEO_BLOCK_MIME, attachBlockDropTarget, attachDesignManipulator, createBuilderSession, initBuilderMode, startElementPicker, stopElementPicker } from './chunk-AFU5ZG6Z.mjs';
2
+ import './chunk-X27GD7IT.mjs';
3
+ import './chunk-PTG3BTJE.mjs';
4
+ //# sourceMappingURL=builder-MNYSDJFT.mjs.map
5
+ //# sourceMappingURL=builder-MNYSDJFT.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"builder-3WIW4RPE.mjs"}
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"builder-MNYSDJFT.mjs"}
package/dist/builder.cjs CHANGED
@@ -633,6 +633,12 @@ function applyBlockStyle(el, style, kind) {
633
633
  if (kind !== "image" && typeof s.radius === "number" && Number.isFinite(s.radius)) {
634
634
  el.style.borderRadius = `${clampNum(s.radius, 0, 64)}px`;
635
635
  }
636
+ if (typeof s.height === "number" && Number.isFinite(s.height) && s.height > 0) {
637
+ el.style.height = `${clampNum(s.height, 1, 2e3)}px`;
638
+ }
639
+ if (kind !== "image" && typeof s.width === "number" && Number.isFinite(s.width) && s.width > 0) {
640
+ el.style.width = `${clampNum(s.width, 1, 2e3)}px`;
641
+ }
636
642
  for (const side of ["Top", "Right", "Bottom", "Left"]) {
637
643
  const p = s[`padding${side}`];
638
644
  if (typeof p === "number" && Number.isFinite(p)) {