veo-sdk 0.5.29 → 0.5.30
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/dist/builder-W2DDGYSX.mjs +5 -0
- package/dist/{builder-HVJ6W5VT.mjs.map → builder-W2DDGYSX.mjs.map} +1 -1
- package/dist/builder.cjs +6 -0
- package/dist/builder.cjs.map +1 -1
- package/dist/builder.mjs +4 -4
- package/dist/{chunk-47RJ4SV7.mjs → chunk-H7TN3SQW.mjs} +3 -3
- package/dist/{chunk-47RJ4SV7.mjs.map → chunk-H7TN3SQW.mjs.map} +1 -1
- package/dist/{chunk-D7V7NVBJ.mjs → chunk-NQV7LGUC.mjs} +3 -3
- package/dist/{chunk-D7V7NVBJ.mjs.map → chunk-NQV7LGUC.mjs.map} +1 -1
- package/dist/{chunk-QQOV35FD.mjs → chunk-SFSYLCSV.mjs} +8 -2
- package/dist/chunk-SFSYLCSV.mjs.map +1 -0
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/veo-builder.js +5 -5
- package/dist/veo-builder.js.map +1 -1
- package/dist/veo-guides.js +1 -1
- package/dist/veo-guides.js.map +1 -1
- package/package.json +1 -1
- package/dist/builder-HVJ6W5VT.mjs +0 -5
- package/dist/chunk-QQOV35FD.mjs.map +0 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { VEO_BLOCK_MIME, attachBlockDropTarget, attachDesignManipulator, createBuilderSession, initBuilderMode, startElementPicker, stopElementPicker } from './chunk-H7TN3SQW.mjs';
|
|
2
|
+
import './chunk-SFSYLCSV.mjs';
|
|
3
|
+
import './chunk-PTG3BTJE.mjs';
|
|
4
|
+
//# sourceMappingURL=builder-W2DDGYSX.mjs.map
|
|
5
|
+
//# sourceMappingURL=builder-W2DDGYSX.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"builder-
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"builder-W2DDGYSX.mjs"}
|
package/dist/builder.cjs
CHANGED
|
@@ -2589,6 +2589,12 @@ var CompositeRenderer = class extends BaseRenderer {
|
|
|
2589
2589
|
badge.style.alignItems = "center";
|
|
2590
2590
|
this.buildContent(badge, step.badge?.blocks ?? [], doc, context, idx, [], host);
|
|
2591
2591
|
root.appendChild(badge);
|
|
2592
|
+
if (design.fullWidth === true) {
|
|
2593
|
+
card.style.width = "auto";
|
|
2594
|
+
card.style.maxWidth = "320px";
|
|
2595
|
+
} else if (!card.style.width && !card.style.maxWidth) {
|
|
2596
|
+
card.style.maxWidth = "320px";
|
|
2597
|
+
}
|
|
2592
2598
|
const wrapper = doc.createElement("div");
|
|
2593
2599
|
wrapper.className = "veo-composite-anchored";
|
|
2594
2600
|
wrapper.style.display = "none";
|