@supernova-studio/model 0.55.26 → 0.55.27

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.mjs CHANGED
@@ -606,13 +606,19 @@ var FigmaComponentPropertyBase = z32.object({
606
606
  id: z32.string(),
607
607
  name: z32.string()
608
608
  });
609
+ var FigmaComponentInstancePreview = z32.object({
610
+ componentName: z32.string(),
611
+ componentSetName: z32.string().optional(),
612
+ isRemote: z32.boolean()
613
+ });
609
614
  var FigmaComponentBooleanProperty = FigmaComponentPropertyBase.extend({
610
615
  type: z32.literal(FigmaComponentPropertyType.enum.Boolean),
611
616
  defaultValue: z32.boolean()
612
617
  });
613
618
  var FigmaComponentInstanceSwapProperty = FigmaComponentPropertyBase.extend({
614
619
  type: z32.literal(FigmaComponentPropertyType.enum.InstanceSwap),
615
- defaultValue: z32.string()
620
+ defaultValue: z32.string(),
621
+ defaultValuePreview: FigmaComponentInstancePreview.optional()
616
622
  });
617
623
  var FigmaComponentVariantProperty = FigmaComponentPropertyBase.extend({
618
624
  type: z32.literal(FigmaComponentPropertyType.enum.Variant),
@@ -5505,6 +5511,7 @@ export {
5505
5511
  FigmaComponentBooleanProperty,
5506
5512
  FigmaComponentImportModel,
5507
5513
  FigmaComponentImportModelInput,
5514
+ FigmaComponentInstancePreview,
5508
5515
  FigmaComponentInstanceSwapProperty,
5509
5516
  FigmaComponentOrigin,
5510
5517
  FigmaComponentOriginPart,