@supernova-studio/client 0.57.0 → 0.57.2

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
@@ -1788,6 +1788,7 @@ var PageBlockFigmaComponentBlockConfig = z40.object({
1788
1788
  showComponentName: nullishToOptional(z40.boolean()),
1789
1789
  showComponentDescription: nullishToOptional(z40.boolean()),
1790
1790
  showPropertyList: nullishToOptional(z40.boolean()),
1791
+ previewOrderIds: nullishToOptional(z40.array(z40.string())),
1791
1792
  previewContainerSize: nullishToOptional(z40.enum(["Centered", "NaturalHeight"])),
1792
1793
  backgroundColor: nullishToOptional(ColorTokenInlineData)
1793
1794
  });
@@ -2147,7 +2148,8 @@ var PageBlockDefinitionComponentOptions = z43.object({
2147
2148
  allowPropertySelection: z43.boolean().optional()
2148
2149
  });
2149
2150
  var PageBlockDefinitionFigmaComponentOptions = z43.object({
2150
- renderLayoutAs: z43.enum(["Grid", "PropsTable", "Canvas", "Playground"])
2151
+ renderLayoutAs: z43.enum(["Grid", "PropsTable", "Canvas", "Playground"]),
2152
+ invertPropertySelection: z43.boolean().optional()
2151
2153
  });
2152
2154
  var PageBlockDefinitionProperty = z43.object({
2153
2155
  id: z43.string(),
@@ -2249,6 +2251,7 @@ var PageBlockItemFigmaComponentValue = z44.object({
2249
2251
  showComponentName: z44.boolean().optional(),
2250
2252
  showComponentDescription: z44.boolean().optional(),
2251
2253
  showPropertyList: z44.boolean().optional(),
2254
+ previewOrderIds: z44.array(z44.string()).optional(),
2252
2255
  previewContainerSize: PageBlockPreviewContainerSize.optional(),
2253
2256
  backgroundColor: PageBlockColorV2.optional(),
2254
2257
  value: z44.array(
@@ -11360,7 +11363,8 @@ var blocks = [
11360
11363
  name: "Figma component",
11361
11364
  type: "FigmaComponent",
11362
11365
  options: {
11363
- renderLayoutAs: "PropsTable"
11366
+ renderLayoutAs: "PropsTable",
11367
+ invertPropertySelection: true
11364
11368
  }
11365
11369
  }
11366
11370
  ],