@supernova-studio/model 0.12.0 → 0.13.0
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 +140 -26
- package/dist/index.d.ts +140 -26
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +4 -1
package/dist/index.mjs
CHANGED
|
@@ -884,7 +884,10 @@ var PageBlockImageAlignment = z33.enum(["Left", "Center", "Stretch"]);
|
|
|
884
884
|
var PageBlockTableCellAlignment = z33.enum(["Left", "Center", "Right"]);
|
|
885
885
|
var PageBlockPreviewContainerSize = z33.enum(["Centered", "NaturalHeight"]);
|
|
886
886
|
var PageBlockThemeDisplayMode = z33.enum(["Split", "Override"]);
|
|
887
|
-
var PageBlockColorV2 = z33.
|
|
887
|
+
var PageBlockColorV2 = z33.object({
|
|
888
|
+
value: z33.string(),
|
|
889
|
+
referencedTokenId: z33.string().optional()
|
|
890
|
+
});
|
|
888
891
|
var PageBlockAppearanceV2 = z33.object({
|
|
889
892
|
itemBackgroundColor: PageBlockColorV2.optional(),
|
|
890
893
|
numberOfColumns: z33.number().optional()
|