@supernova-studio/client 0.47.71 → 0.47.72
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 +2501 -2424
- package/dist/index.d.ts +2501 -2424
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1274,13 +1274,13 @@ var DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleTyp
|
|
|
1274
1274
|
var DocumentationItemHeaderV1 = z41.object({
|
|
1275
1275
|
description: z41.string(),
|
|
1276
1276
|
alignment: DocumentationItemHeaderAlignmentSchema,
|
|
1277
|
-
foregroundColor:
|
|
1278
|
-
backgroundColor:
|
|
1279
|
-
backgroundImageAsset:
|
|
1277
|
+
foregroundColor: ColorTokenData.nullish(),
|
|
1278
|
+
backgroundColor: ColorTokenData.nullish(),
|
|
1279
|
+
backgroundImageAsset: PageBlockAsset.nullish(),
|
|
1280
1280
|
backgroundImageScaleType: DocumentationItemHeaderImageScaleTypeSchema,
|
|
1281
1281
|
showBackgroundOverlay: z41.boolean(),
|
|
1282
1282
|
showCoverText: z41.boolean(),
|
|
1283
|
-
minHeight:
|
|
1283
|
+
minHeight: z41.number().nullish()
|
|
1284
1284
|
});
|
|
1285
1285
|
var defaultDocumentationItemHeaderV1 = {
|
|
1286
1286
|
alignment: DocumentationItemHeaderAlignment.Left,
|
|
@@ -1302,13 +1302,13 @@ var DocumentationPageDataV1 = z43.object({
|
|
|
1302
1302
|
var DocumentationItemHeaderV2 = z44.object({
|
|
1303
1303
|
description: z44.string(),
|
|
1304
1304
|
alignment: DocumentationItemHeaderAlignmentSchema,
|
|
1305
|
-
foregroundColor:
|
|
1306
|
-
backgroundColor:
|
|
1307
|
-
backgroundImageAsset:
|
|
1305
|
+
foregroundColor: PageBlockColorV2.nullish(),
|
|
1306
|
+
backgroundColor: PageBlockColorV2.nullish(),
|
|
1307
|
+
backgroundImageAsset: PageBlockImageReference.nullish(),
|
|
1308
1308
|
backgroundImageScaleType: DocumentationItemHeaderImageScaleTypeSchema,
|
|
1309
1309
|
showBackgroundOverlay: z44.boolean(),
|
|
1310
1310
|
showCoverText: z44.boolean(),
|
|
1311
|
-
minHeight:
|
|
1311
|
+
minHeight: z44.number().nullish()
|
|
1312
1312
|
});
|
|
1313
1313
|
var defaultDocumentationItemHeaderV2 = {
|
|
1314
1314
|
alignment: DocumentationItemHeaderAlignment.Left,
|