@supernova-studio/client 0.52.15 → 0.52.17
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 +261 -1
- package/dist/index.d.ts +261 -1
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/components/figma-component.ts +5 -0
- package/src/yjs/docs-editor/mock.ts +5 -5
package/dist/index.mjs
CHANGED
|
@@ -5637,6 +5637,9 @@ var DTOFigmaComponent = z201.object({
|
|
|
5637
5637
|
parentComponentPersistentId: z201.string().optional(),
|
|
5638
5638
|
componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional()
|
|
5639
5639
|
});
|
|
5640
|
+
var DTOFigmaComponentListResponse = z201.object({
|
|
5641
|
+
components: DTOFigmaComponent.array()
|
|
5642
|
+
});
|
|
5640
5643
|
|
|
5641
5644
|
// src/api/dto/elements/documentation/group-action.ts
|
|
5642
5645
|
import { z as z203 } from "zod";
|
|
@@ -10437,7 +10440,7 @@ var blocks = [
|
|
|
10437
10440
|
{
|
|
10438
10441
|
id: "io.supernova.block.do-dont-guidelines",
|
|
10439
10442
|
name: "Guidelines",
|
|
10440
|
-
description: "Do/Don
|
|
10443
|
+
description: "Do/Don't rules and best practices.",
|
|
10441
10444
|
category: "Guidelines",
|
|
10442
10445
|
icon: "https://cdn-assets.supernova.io/blocks/icons/guidelines.svg",
|
|
10443
10446
|
searchKeywords: ["dont", "caution", "rules"],
|
|
@@ -10477,16 +10480,16 @@ var blocks = [
|
|
|
10477
10480
|
icon: "Alert"
|
|
10478
10481
|
}
|
|
10479
10482
|
],
|
|
10480
|
-
singleSelectStyle: "
|
|
10483
|
+
singleSelectStyle: "ToggleButton"
|
|
10481
10484
|
}
|
|
10482
10485
|
},
|
|
10483
10486
|
{
|
|
10484
10487
|
id: "block.do-dont-guidelines.property.description",
|
|
10485
10488
|
name: "Description",
|
|
10486
|
-
type: "
|
|
10489
|
+
type: "RichTextEditor",
|
|
10487
10490
|
options: {
|
|
10488
|
-
|
|
10489
|
-
|
|
10491
|
+
allowedInlineStyles: ["Bold", "Italic", "Strikethrough", "UL", "OL", "Link", "InlineCode"],
|
|
10492
|
+
allowMultiline: true,
|
|
10490
10493
|
placeholder: "Add description"
|
|
10491
10494
|
}
|
|
10492
10495
|
}
|
|
@@ -11406,6 +11409,7 @@ export {
|
|
|
11406
11409
|
DTOExporterType,
|
|
11407
11410
|
DTOExporterUpdateInput,
|
|
11408
11411
|
DTOFigmaComponent,
|
|
11412
|
+
DTOFigmaComponentListResponse,
|
|
11409
11413
|
DTOFigmaNode,
|
|
11410
11414
|
DTOFigmaNodeData,
|
|
11411
11415
|
DTOFigmaNodeOrigin,
|