@rebuy/rebuy 2.7.0 → 2.7.1
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/index.js +4 -1
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +2 -2
- package/dist/schema/widgetData.d.ts +8 -8
- package/dist/schema/widgets/checkout-and-beyond/layout.d.ts +4 -4
- package/dist/schema/widgets/checkout-and-beyond/layout.d.ts.map +1 -1
- package/dist/schema/widgets/checkout-and-beyond/offers.d.ts +4 -4
- package/dist/schema/widgets/checkout-and-beyond/root.d.ts +4 -4
- package/dist/schema/widgets/contentBlock.d.ts +4 -4
- package/dist/schema/widgets/rebuyButton.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1805,7 +1805,10 @@ var CABLayoutSection = import_v422.z.object({
|
|
|
1805
1805
|
border: import_v422.z.lazy(() => CABBorder),
|
|
1806
1806
|
buttonField: import_v422.z.enum(buttonFields).optional(),
|
|
1807
1807
|
direction: import_v422.z.enum(directions).default(Direction.rows),
|
|
1808
|
-
grid: import_v422.z.object({
|
|
1808
|
+
grid: import_v422.z.object({
|
|
1809
|
+
columns: import_v422.z.union([import_v422.z.array(GridItem), import_v422.z.undefined()]).default(() => ["auto"]),
|
|
1810
|
+
rows: import_v422.z.union([import_v422.z.array(GridItem), import_v422.z.undefined()]).default(() => ["auto"])
|
|
1811
|
+
}).default({ columns: ["auto"], rows: ["auto"] }).optional(),
|
|
1809
1812
|
name: import_v422.z.string().optional(),
|
|
1810
1813
|
padding: import_v422.z.enum(spacings).default(Spacing.none),
|
|
1811
1814
|
sectionId: import_v422.z.uuid().default(() => (0, import_uuid12.v7)()),
|