@supernova-studio/model 0.55.28 → 0.55.30
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 +269 -2
- package/dist/index.d.ts +269 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +2 -0
- package/src/dsm/elements/raw-element.ts +2 -2
- package/src/utils/common.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1931,7 +1931,9 @@ var PageBlockGuideline = _zod.z.object({
|
|
|
1931
1931
|
var PageBlockBaseV1 = _zod.z.object({
|
|
1932
1932
|
persistentId: _zod.z.string(),
|
|
1933
1933
|
type: PageBlockTypeV1,
|
|
1934
|
+
// V2 generic attributes
|
|
1934
1935
|
numberOfColumns: nullishToOptional(_zod.z.number()),
|
|
1936
|
+
itemBackgroundColor: nullishToOptional(ColorTokenInlineData),
|
|
1935
1937
|
// Element linking
|
|
1936
1938
|
designObjectId: nullishToOptional(_zod.z.string()),
|
|
1937
1939
|
designObjectIds: nullishToOptional(_zod.z.array(_zod.z.string())),
|