@cntrl-site/sdk 1.25.1-2 → 1.25.2

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.
@@ -219,7 +219,8 @@ exports.ItemSchema = zod_1.z.lazy(() => zod_1.z.discriminatedUnion('type', [
219
219
  }).nullable()),
220
220
  layoutParams: zod_1.z.record(zod_1.z.object({
221
221
  opacity: zod_1.z.number().nonnegative(),
222
- blur: zod_1.z.number()
222
+ blur: zod_1.z.number(),
223
+ isDraggable: zod_1.z.boolean().optional()
223
224
  })),
224
225
  state: zod_1.z.record(ItemState_schema_1.GroupStateParamsSchema)
225
226
  }),
@@ -235,7 +236,8 @@ exports.ItemSchema = zod_1.z.lazy(() => zod_1.z.discriminatedUnion('type', [
235
236
  to: zod_1.z.number().optional()
236
237
  }).nullable()),
237
238
  layoutParams: zod_1.z.record(zod_1.z.object({
238
- opacity: zod_1.z.number().nonnegative()
239
+ opacity: zod_1.z.number().nonnegative(),
240
+ isDraggable: zod_1.z.boolean().optional()
239
241
  })),
240
242
  state: zod_1.z.record(ItemState_schema_1.CompoundStateParamsSchema)
241
243
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/sdk",
3
- "version": "1.25.1-2",
3
+ "version": "1.25.2",
4
4
  "description": "Generic SDK for use in public websites.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",