@supernova-studio/model 0.54.6 → 0.54.7
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 +74 -44
- package/dist/index.d.ts +74 -44
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +8 -0
package/dist/index.mjs
CHANGED
|
@@ -2439,9 +2439,14 @@ var PageBlockItemStorybookValue = z44.object({
|
|
|
2439
2439
|
var PageBlockItemTextValue = z44.object({
|
|
2440
2440
|
value: z44.string()
|
|
2441
2441
|
});
|
|
2442
|
+
var PageBlockItemSwatch = z44.object({
|
|
2443
|
+
id: z44.string(),
|
|
2444
|
+
selectedThemeIds: z44.string().array()
|
|
2445
|
+
});
|
|
2442
2446
|
var PageBlockItemTokenValue = z44.object({
|
|
2443
2447
|
selectedPropertyIds: z44.array(z44.string()).optional(),
|
|
2444
2448
|
selectedThemeIds: z44.array(z44.string()).optional(),
|
|
2449
|
+
swatches: z44.array(PageBlockItemSwatch).optional(),
|
|
2445
2450
|
themeDisplayMode: PageBlockThemeDisplayMode.optional(),
|
|
2446
2451
|
value: z44.array(
|
|
2447
2452
|
z44.object({
|
|
@@ -5617,6 +5622,7 @@ export {
|
|
|
5617
5622
|
PageBlockItemSandboxValue,
|
|
5618
5623
|
PageBlockItemSingleSelectValue,
|
|
5619
5624
|
PageBlockItemStorybookValue,
|
|
5625
|
+
PageBlockItemSwatch,
|
|
5620
5626
|
PageBlockItemTableCell,
|
|
5621
5627
|
PageBlockItemTableImageNode,
|
|
5622
5628
|
PageBlockItemTableNode,
|