@embeddable.com/sdk-react 2.2.6 → 2.2.7
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.
|
@@ -2,6 +2,7 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const componentMetaSchema: z.ZodObject<{
|
|
3
3
|
name: z.ZodString;
|
|
4
4
|
label: z.ZodString;
|
|
5
|
+
classNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5
6
|
inputs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6
7
|
name: z.ZodString;
|
|
7
8
|
label: z.ZodString;
|
|
@@ -240,6 +241,7 @@ export declare const componentMetaSchema: z.ZodObject<{
|
|
|
240
241
|
}, "strict", z.ZodTypeAny, {
|
|
241
242
|
label: string;
|
|
242
243
|
name: string;
|
|
244
|
+
classNames?: string[] | undefined;
|
|
243
245
|
inputs?: {
|
|
244
246
|
type: ("string" | "number" | "boolean" | {
|
|
245
247
|
typeConfig: {
|
|
@@ -301,6 +303,7 @@ export declare const componentMetaSchema: z.ZodObject<{
|
|
|
301
303
|
}, {
|
|
302
304
|
label: string;
|
|
303
305
|
name: string;
|
|
306
|
+
classNames?: string[] | undefined;
|
|
304
307
|
inputs?: {
|
|
305
308
|
type: ("string" | "number" | "boolean" | {
|
|
306
309
|
typeConfig: {
|