@supernova-studio/model 0.54.7 → 0.54.8
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 +373 -5
- package/dist/index.d.ts +373 -5
- 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-v1.ts +7 -0
package/dist/index.mjs
CHANGED
|
@@ -1780,6 +1780,10 @@ var PageBlockTheme = z40.object({
|
|
|
1780
1780
|
themeIds: z40.array(z40.string()),
|
|
1781
1781
|
type: PageBlockThemeType
|
|
1782
1782
|
});
|
|
1783
|
+
var PageBlockSwatch = z40.object({
|
|
1784
|
+
id: z40.string(),
|
|
1785
|
+
selectedThemeIds: z40.string().array()
|
|
1786
|
+
});
|
|
1783
1787
|
var PageBlockUrlPreview = z40.object({
|
|
1784
1788
|
title: nullishToOptional(z40.string()),
|
|
1785
1789
|
description: nullishToOptional(z40.string()),
|
|
@@ -1951,6 +1955,7 @@ var PageBlockBaseV1 = z40.object({
|
|
|
1951
1955
|
columnId: nullishToOptional(z40.string()),
|
|
1952
1956
|
// Token spreadsheet
|
|
1953
1957
|
theme: nullishToOptional(PageBlockTheme),
|
|
1958
|
+
swatches: nullishToOptional(PageBlockSwatch.array()),
|
|
1954
1959
|
blacklistedElementProperties: nullishToOptional(z40.array(z40.string())),
|
|
1955
1960
|
// Arbitrary
|
|
1956
1961
|
userMetadata: nullishToOptional(z40.string())
|
|
@@ -5643,6 +5648,7 @@ export {
|
|
|
5643
5648
|
PageBlockRenderCodeProperties,
|
|
5644
5649
|
PageBlockResourceFrameNodeReference,
|
|
5645
5650
|
PageBlockShortcut,
|
|
5651
|
+
PageBlockSwatch,
|
|
5646
5652
|
PageBlockTableCellAlignment,
|
|
5647
5653
|
PageBlockTableColumn,
|
|
5648
5654
|
PageBlockTableProperties,
|