@supernova-studio/model 0.55.4 → 0.55.6
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/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +5 -0
package/package.json
CHANGED
|
@@ -192,6 +192,10 @@ export const PageBlockDefinitionComponentOptions = z.object({
|
|
|
192
192
|
allowPropertySelection: z.boolean().optional(),
|
|
193
193
|
});
|
|
194
194
|
|
|
195
|
+
export const PageBlockDefinitionFigmaComponentOptions = z.object({
|
|
196
|
+
renderLayoutAs: z.enum(["Grid", "PropsTable", "Canvas", "Playground"]),
|
|
197
|
+
});
|
|
198
|
+
|
|
195
199
|
export type PageBlockDefinitionUntypedPropertyOptions = z.infer<typeof PageBlockDefinitionUntypedPropertyOptions>;
|
|
196
200
|
export type PageBlockDefinitionRichTextOptions = z.infer<typeof PageBlockDefinitionRichTextOptions>;
|
|
197
201
|
export type PageBlockDefinitionMutiRichTextOptions = z.infer<typeof PageBlockDefinitionMutiRichTextOptions>;
|
|
@@ -202,6 +206,7 @@ export type PageBlockDefinitionImageOptions = z.infer<typeof PageBlockDefinition
|
|
|
202
206
|
export type PageBlockDefinitionBooleanOptions = z.infer<typeof PageBlockDefinitionBooleanOptions>;
|
|
203
207
|
export type PageBlockDefinitionNumberOptions = z.infer<typeof PageBlockDefinitionNumberOptions>;
|
|
204
208
|
export type PageBlockDefinitionComponentOptions = z.infer<typeof PageBlockDefinitionComponentOptions>;
|
|
209
|
+
export type PageBlockDefinitionFigmaComponentOptions = z.infer<typeof PageBlockDefinitionFigmaComponentOptions>;
|
|
205
210
|
|
|
206
211
|
//
|
|
207
212
|
// Definitions
|