@cntrl-site/sdk 1.25.3 → 1.25.5
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.
|
@@ -227,6 +227,7 @@ exports.ItemSchema = zod_1.z.lazy(() => zod_1.z.discriminatedUnion('type', [
|
|
|
227
227
|
layoutParams: zod_1.z.record(zod_1.z.object({
|
|
228
228
|
opacity: zod_1.z.number().nonnegative(),
|
|
229
229
|
blur: zod_1.z.number(),
|
|
230
|
+
isDraggable: zod_1.z.boolean().optional(),
|
|
230
231
|
blendMode: zod_1.z.string().optional()
|
|
231
232
|
})),
|
|
232
233
|
state: zod_1.z.record(ItemState_schema_1.GroupStateParamsSchema)
|
|
@@ -244,6 +245,7 @@ exports.ItemSchema = zod_1.z.lazy(() => zod_1.z.discriminatedUnion('type', [
|
|
|
244
245
|
}).nullable()),
|
|
245
246
|
layoutParams: zod_1.z.record(zod_1.z.object({
|
|
246
247
|
opacity: zod_1.z.number().nonnegative(),
|
|
248
|
+
isDraggable: zod_1.z.boolean().optional(),
|
|
247
249
|
blendMode: zod_1.z.string().optional()
|
|
248
250
|
})),
|
|
249
251
|
state: zod_1.z.record(ItemState_schema_1.CompoundStateParamsSchema)
|