nextjs-cms 0.5.32 → 0.5.34
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/core/fields/photo.d.ts +6 -6
- package/dist/core/fields/richText.d.ts +9 -9
- package/dist/core/sections/category.d.ts +6 -6
- package/dist/core/sections/hasItems.d.ts +12 -12
- package/dist/core/sections/section.d.ts +3 -3
- package/dist/core/sections/simple.d.ts +4 -4
- package/package.json +1 -1
|
@@ -54,10 +54,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
54
54
|
* @hint 'jpg' is an alias for 'jpeg'
|
|
55
55
|
*/
|
|
56
56
|
fileType: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
57
|
-
webp: "webp";
|
|
58
|
-
jpg: "jpg";
|
|
59
57
|
jpeg: "jpeg";
|
|
58
|
+
jpg: "jpg";
|
|
60
59
|
png: "png";
|
|
60
|
+
webp: "webp";
|
|
61
61
|
}>>>;
|
|
62
62
|
/**
|
|
63
63
|
* Remove the extension from the file name
|
|
@@ -197,10 +197,10 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
197
197
|
* @hint 'jpg' is an alias for 'jpeg'
|
|
198
198
|
*/
|
|
199
199
|
fileType: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
200
|
-
webp: "webp";
|
|
201
|
-
jpg: "jpg";
|
|
202
200
|
jpeg: "jpeg";
|
|
201
|
+
jpg: "jpg";
|
|
203
202
|
png: "png";
|
|
203
|
+
webp: "webp";
|
|
204
204
|
}>>>;
|
|
205
205
|
/**
|
|
206
206
|
* Remove the extension from the file name
|
|
@@ -269,10 +269,10 @@ declare const photoFieldConfigSchema: z.ZodObject<{
|
|
|
269
269
|
* @hint 'jpg' is an alias for 'jpeg'
|
|
270
270
|
*/
|
|
271
271
|
fileType: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
272
|
-
webp: "webp";
|
|
273
|
-
jpg: "jpg";
|
|
274
272
|
jpeg: "jpeg";
|
|
273
|
+
jpg: "jpg";
|
|
275
274
|
png: "png";
|
|
275
|
+
webp: "webp";
|
|
276
276
|
}>>>;
|
|
277
277
|
/**
|
|
278
278
|
* Remove the extension from the file name
|
|
@@ -31,10 +31,10 @@ declare const allowImageUploadsSchema: z.ZodObject<{
|
|
|
31
31
|
*/
|
|
32
32
|
omitExtension: z.ZodOptional<z.ZodBoolean>;
|
|
33
33
|
format: z.ZodOptional<z.ZodEnum<{
|
|
34
|
-
webp: "webp";
|
|
35
|
-
jpg: "jpg";
|
|
36
34
|
jpeg: "jpeg";
|
|
35
|
+
jpg: "jpg";
|
|
37
36
|
png: "png";
|
|
37
|
+
webp: "webp";
|
|
38
38
|
}>>;
|
|
39
39
|
}, z.core.$strict>;
|
|
40
40
|
declare const configSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -72,10 +72,10 @@ declare const configSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
72
72
|
*/
|
|
73
73
|
omitExtension: z.ZodOptional<z.ZodBoolean>;
|
|
74
74
|
format: z.ZodOptional<z.ZodEnum<{
|
|
75
|
-
webp: "webp";
|
|
76
|
-
jpg: "jpg";
|
|
77
75
|
jpeg: "jpeg";
|
|
76
|
+
jpg: "jpg";
|
|
78
77
|
png: "png";
|
|
78
|
+
webp: "webp";
|
|
79
79
|
}>>;
|
|
80
80
|
}, z.core.$strict>>;
|
|
81
81
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -119,7 +119,7 @@ export declare class RichTextField extends Field<'rich_text', Config> {
|
|
|
119
119
|
} | undefined;
|
|
120
120
|
handleMethod?: "base64" | "tempSave" | undefined;
|
|
121
121
|
omitExtension?: boolean | undefined;
|
|
122
|
-
format?: "
|
|
122
|
+
format?: "jpeg" | "jpg" | "png" | "webp" | undefined;
|
|
123
123
|
};
|
|
124
124
|
sanitize: boolean;
|
|
125
125
|
type: "rich_text";
|
|
@@ -187,10 +187,10 @@ declare const optionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
187
187
|
*/
|
|
188
188
|
omitExtension: z.ZodOptional<z.ZodBoolean>;
|
|
189
189
|
format: z.ZodOptional<z.ZodEnum<{
|
|
190
|
-
webp: "webp";
|
|
191
|
-
jpg: "jpg";
|
|
192
190
|
jpeg: "jpeg";
|
|
191
|
+
jpg: "jpg";
|
|
193
192
|
png: "png";
|
|
193
|
+
webp: "webp";
|
|
194
194
|
}>>;
|
|
195
195
|
}, z.core.$strict>>;
|
|
196
196
|
name: z.ZodString;
|
|
@@ -249,10 +249,10 @@ declare const richTextFieldConfigSchema: z.ZodIntersection<z.ZodDiscriminatedUni
|
|
|
249
249
|
*/
|
|
250
250
|
omitExtension: z.ZodOptional<z.ZodBoolean>;
|
|
251
251
|
format: z.ZodOptional<z.ZodEnum<{
|
|
252
|
-
webp: "webp";
|
|
253
|
-
jpg: "jpg";
|
|
254
252
|
jpeg: "jpeg";
|
|
253
|
+
jpg: "jpg";
|
|
255
254
|
png: "png";
|
|
255
|
+
webp: "webp";
|
|
256
256
|
}>>;
|
|
257
257
|
}, z.core.$strict>>;
|
|
258
258
|
name: z.ZodString;
|
|
@@ -117,7 +117,9 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
117
117
|
*/
|
|
118
118
|
allowRecursiveDelete: z.ZodOptional<z.ZodBoolean>;
|
|
119
119
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
120
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
120
121
|
name: z.ZodString;
|
|
122
|
+
order: z.ZodNumber;
|
|
121
123
|
db: z.ZodObject<{
|
|
122
124
|
table: z.ZodString;
|
|
123
125
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -141,9 +143,6 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
141
143
|
name: z.ZodOptional<z.ZodString>;
|
|
142
144
|
}, z.core.$strict>>>;
|
|
143
145
|
}, z.core.$strict>;
|
|
144
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
145
|
-
order: z.ZodNumber;
|
|
146
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
147
146
|
icon: z.ZodOptional<z.ZodString>;
|
|
148
147
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
149
148
|
db: z.ZodObject<{
|
|
@@ -160,6 +159,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
160
159
|
quality: z.ZodNumber;
|
|
161
160
|
}, z.core.$strict>>;
|
|
162
161
|
}, z.core.$strict>>;
|
|
162
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
163
163
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
164
164
|
}, z.core.$strict>;
|
|
165
165
|
export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
@@ -214,7 +214,9 @@ export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
|
214
214
|
* @default false
|
|
215
215
|
*/
|
|
216
216
|
allowRecursiveDelete: z.ZodOptional<z.ZodBoolean>;
|
|
217
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
217
218
|
name: z.ZodString;
|
|
219
|
+
order: z.ZodNumber;
|
|
218
220
|
db: z.ZodObject<{
|
|
219
221
|
table: z.ZodString;
|
|
220
222
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -238,9 +240,6 @@ export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
|
238
240
|
name: z.ZodOptional<z.ZodString>;
|
|
239
241
|
}, z.core.$strict>>>;
|
|
240
242
|
}, z.core.$strict>;
|
|
241
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
242
|
-
order: z.ZodNumber;
|
|
243
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
244
243
|
icon: z.ZodOptional<z.ZodString>;
|
|
245
244
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
246
245
|
db: z.ZodObject<{
|
|
@@ -257,6 +256,7 @@ export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
|
257
256
|
quality: z.ZodNumber;
|
|
258
257
|
}, z.core.$strict>>;
|
|
259
258
|
}, z.core.$strict>>;
|
|
259
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
260
260
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
261
261
|
}, z.core.$strict>;
|
|
262
262
|
export type CategorySectionOptions = z.infer<typeof optionsSchema>;
|
|
@@ -131,7 +131,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
131
131
|
size: number;
|
|
132
132
|
unit: "kb" | "mb";
|
|
133
133
|
} | undefined;
|
|
134
|
-
fileType?: ("
|
|
134
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
135
135
|
removeExtension?: boolean | undefined;
|
|
136
136
|
label?: string | undefined;
|
|
137
137
|
required?: boolean | undefined;
|
|
@@ -160,7 +160,7 @@ declare const configSchema: z.ZodObject<{
|
|
|
160
160
|
size: number;
|
|
161
161
|
unit: "kb" | "mb";
|
|
162
162
|
} | undefined;
|
|
163
|
-
fileType?: ("
|
|
163
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
164
164
|
removeExtension?: boolean | undefined;
|
|
165
165
|
label?: string | undefined;
|
|
166
166
|
required?: boolean | undefined;
|
|
@@ -315,7 +315,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
315
315
|
size: number;
|
|
316
316
|
unit: "kb" | "mb";
|
|
317
317
|
} | undefined;
|
|
318
|
-
fileType?: ("
|
|
318
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
319
319
|
removeExtension?: boolean | undefined;
|
|
320
320
|
label?: string | undefined;
|
|
321
321
|
required?: boolean | undefined;
|
|
@@ -344,7 +344,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
344
344
|
size: number;
|
|
345
345
|
unit: "kb" | "mb";
|
|
346
346
|
} | undefined;
|
|
347
|
-
fileType?: ("
|
|
347
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
348
348
|
removeExtension?: boolean | undefined;
|
|
349
349
|
label?: string | undefined;
|
|
350
350
|
required?: boolean | undefined;
|
|
@@ -355,7 +355,9 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
355
355
|
}>>;
|
|
356
356
|
generateQR: z.ZodOptional<z.ZodBoolean>;
|
|
357
357
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
358
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
358
359
|
name: z.ZodString;
|
|
360
|
+
order: z.ZodNumber;
|
|
359
361
|
db: z.ZodObject<{
|
|
360
362
|
table: z.ZodString;
|
|
361
363
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -379,9 +381,6 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
379
381
|
name: z.ZodOptional<z.ZodString>;
|
|
380
382
|
}, z.core.$strict>>>;
|
|
381
383
|
}, z.core.$strict>;
|
|
382
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
383
|
-
order: z.ZodNumber;
|
|
384
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
385
384
|
icon: z.ZodOptional<z.ZodString>;
|
|
386
385
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
387
386
|
db: z.ZodObject<{
|
|
@@ -398,6 +397,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
398
397
|
quality: z.ZodNumber;
|
|
399
398
|
}, z.core.$strict>>;
|
|
400
399
|
}, z.core.$strict>>;
|
|
400
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
401
401
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
402
402
|
}, z.core.$strict>;
|
|
403
403
|
declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
@@ -530,7 +530,7 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
530
530
|
size: number;
|
|
531
531
|
unit: "kb" | "mb";
|
|
532
532
|
} | undefined;
|
|
533
|
-
fileType?: ("
|
|
533
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
534
534
|
removeExtension?: boolean | undefined;
|
|
535
535
|
label?: string | undefined;
|
|
536
536
|
required?: boolean | undefined;
|
|
@@ -559,7 +559,7 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
559
559
|
size: number;
|
|
560
560
|
unit: "kb" | "mb";
|
|
561
561
|
} | undefined;
|
|
562
|
-
fileType?: ("
|
|
562
|
+
fileType?: ("jpeg" | "jpg" | "png" | "webp")[] | undefined;
|
|
563
563
|
removeExtension?: boolean | undefined;
|
|
564
564
|
label?: string | undefined;
|
|
565
565
|
required?: boolean | undefined;
|
|
@@ -569,7 +569,9 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
569
569
|
adminGenerated?: boolean | "readonly" | undefined;
|
|
570
570
|
}>>;
|
|
571
571
|
generateQR: z.ZodOptional<z.ZodBoolean>;
|
|
572
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
572
573
|
name: z.ZodString;
|
|
574
|
+
order: z.ZodNumber;
|
|
573
575
|
db: z.ZodObject<{
|
|
574
576
|
table: z.ZodString;
|
|
575
577
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -593,9 +595,6 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
593
595
|
name: z.ZodOptional<z.ZodString>;
|
|
594
596
|
}, z.core.$strict>>>;
|
|
595
597
|
}, z.core.$strict>;
|
|
596
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
597
|
-
order: z.ZodNumber;
|
|
598
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
599
598
|
icon: z.ZodOptional<z.ZodString>;
|
|
600
599
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
601
600
|
db: z.ZodObject<{
|
|
@@ -612,6 +611,7 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
612
611
|
quality: z.ZodNumber;
|
|
613
612
|
}, z.core.$strict>>;
|
|
614
613
|
}, z.core.$strict>>;
|
|
614
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
615
615
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
616
616
|
}, z.core.$strict>;
|
|
617
617
|
export type HasItemsSectionOptions = z.infer<typeof optionsSchema>;
|
|
@@ -62,7 +62,9 @@ export declare const baseSectionOptionsSchema: z.ZodObject<{
|
|
|
62
62
|
*/
|
|
63
63
|
export declare const baseHelperFunctionOptionsSchema: z.ZodObject<{
|
|
64
64
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
65
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
65
66
|
name: z.ZodString;
|
|
67
|
+
order: z.ZodNumber;
|
|
66
68
|
db: z.ZodObject<{
|
|
67
69
|
table: z.ZodString;
|
|
68
70
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -86,9 +88,6 @@ export declare const baseHelperFunctionOptionsSchema: z.ZodObject<{
|
|
|
86
88
|
name: z.ZodOptional<z.ZodString>;
|
|
87
89
|
}, z.core.$strict>>>;
|
|
88
90
|
}, z.core.$strict>;
|
|
89
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<Variant, Variant>>>;
|
|
90
|
-
order: z.ZodNumber;
|
|
91
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
92
91
|
icon: z.ZodOptional<z.ZodString>;
|
|
93
92
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
94
93
|
db: z.ZodObject<{
|
|
@@ -105,6 +104,7 @@ export declare const baseHelperFunctionOptionsSchema: z.ZodObject<{
|
|
|
105
104
|
quality: z.ZodNumber;
|
|
106
105
|
}, z.core.$strict>>;
|
|
107
106
|
}, z.core.$strict>>;
|
|
107
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<Variant, Variant>>>;
|
|
108
108
|
hooks: z.ZodOptional<z.ZodCustom<Hooks, Hooks>>;
|
|
109
109
|
}, z.core.$strict>;
|
|
110
110
|
export declare function validateSectionConfig(config: BaseSectionOptions): void;
|
|
@@ -22,10 +22,9 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
22
22
|
table: z.ZodString;
|
|
23
23
|
}, z.core.$strict>;
|
|
24
24
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
25
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
25
26
|
name: z.ZodString;
|
|
26
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
27
27
|
order: z.ZodNumber;
|
|
28
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
29
28
|
icon: z.ZodOptional<z.ZodString>;
|
|
30
29
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
31
30
|
db: z.ZodObject<{
|
|
@@ -42,6 +41,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
42
41
|
quality: z.ZodNumber;
|
|
43
42
|
}, z.core.$strict>>;
|
|
44
43
|
}, z.core.$strict>>;
|
|
44
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
45
45
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
46
46
|
}, z.core.$strict>;
|
|
47
47
|
declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
@@ -53,10 +53,9 @@ declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
|
53
53
|
db: z.ZodObject<{
|
|
54
54
|
table: z.ZodString;
|
|
55
55
|
}, z.core.$strict>;
|
|
56
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
56
57
|
name: z.ZodString;
|
|
57
|
-
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
58
58
|
order: z.ZodNumber;
|
|
59
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
60
59
|
icon: z.ZodOptional<z.ZodString>;
|
|
61
60
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
62
61
|
db: z.ZodObject<{
|
|
@@ -73,6 +72,7 @@ declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
|
73
72
|
quality: z.ZodNumber;
|
|
74
73
|
}, z.core.$strict>>;
|
|
75
74
|
}, z.core.$strict>>;
|
|
75
|
+
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
76
76
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
77
77
|
}, z.core.$strict>;
|
|
78
78
|
export type SimpleSectionOptions = z.infer<typeof optionsSchema>;
|