@embeddable.com/sdk-react 2.2.10 → 2.2.11
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/lib/index.esm.js +2 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/validate/schema/componentMetaSchema.d.ts +12 -0
- package/package.json +1 -1
package/lib/index.esm.js
CHANGED
|
@@ -451,6 +451,7 @@ const componentMetaSchema = z
|
|
|
451
451
|
.object({
|
|
452
452
|
name: z.string(),
|
|
453
453
|
type: embeddableTypeSchema,
|
|
454
|
+
array: z.boolean().optional(),
|
|
454
455
|
label: z.string().optional(),
|
|
455
456
|
})
|
|
456
457
|
.array()
|
|
@@ -463,6 +464,7 @@ const componentMetaSchema = z
|
|
|
463
464
|
.object({
|
|
464
465
|
name: z.string(),
|
|
465
466
|
type: embeddableTypeSchema,
|
|
467
|
+
array: z.boolean().optional(),
|
|
466
468
|
defaultValue: z.any().optional(),
|
|
467
469
|
inputs: z.array(z.string()).optional(),
|
|
468
470
|
events: z
|