@supernova-studio/model 0.58.20 → 0.58.22
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 +1354 -19
- package/dist/index.d.ts +1354 -19
- package/dist/index.js +33 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +32 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +23 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +8 -3
- package/src/utils/common.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -30139,6 +30139,7 @@ declare function areShallowObjectsEqual<T extends object>(lhs: T | undefined, rh
|
|
|
30139
30139
|
declare function isNotNullish<T>(value: T | null | undefined): value is T;
|
|
30140
30140
|
declare function isNullish<T>(value: T | null | undefined): value is null | undefined;
|
|
30141
30141
|
declare function chunkedArray<V>(array: V[], chunkSize: number): V[][];
|
|
30142
|
+
declare function recordToMap<V>(record: Record<string, V>): Map<string, V>;
|
|
30142
30143
|
type Pagination = {
|
|
30143
30144
|
skip?: number;
|
|
30144
30145
|
take?: number;
|
|
@@ -37254,6 +37255,7 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
37254
37255
|
value: string;
|
|
37255
37256
|
} | null | undefined>;
|
|
37256
37257
|
alignment: z.ZodEnum<["Center", "FrameHeight"]>;
|
|
37258
|
+
previewContainerHeight: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
37257
37259
|
layout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3", "C2", "C1", "C1_75"]>;
|
|
37258
37260
|
backgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
37259
37261
|
value: string;
|
|
@@ -37275,6 +37277,7 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
37275
37277
|
backgroundColor?: {
|
|
37276
37278
|
value: string;
|
|
37277
37279
|
} | undefined;
|
|
37280
|
+
previewContainerHeight?: number | undefined;
|
|
37278
37281
|
}, {
|
|
37279
37282
|
alignment: "Center" | "FrameHeight";
|
|
37280
37283
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
@@ -37285,6 +37288,7 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
37285
37288
|
backgroundColor?: {
|
|
37286
37289
|
value: string;
|
|
37287
37290
|
} | null | undefined;
|
|
37291
|
+
previewContainerHeight?: number | null | undefined;
|
|
37288
37292
|
}>;
|
|
37289
37293
|
declare const PageBlockRenderCodeProperties: z.ZodObject<{
|
|
37290
37294
|
showCode: z.ZodBoolean;
|
|
@@ -37410,6 +37414,26 @@ declare const PageBlockTableProperties: z.ZodObject<{
|
|
|
37410
37414
|
};
|
|
37411
37415
|
}[];
|
|
37412
37416
|
}>;
|
|
37417
|
+
declare const PageBlockTokenBlockConfig: z.ZodObject<{
|
|
37418
|
+
tokenNameFormat: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Name" | "GroupAndName" | "FullPath" | "CustomProperty", z.ZodTypeDef, "Name" | "GroupAndName" | "FullPath" | "CustomProperty">>>, NonNullable<"Name" | "GroupAndName" | "FullPath" | "CustomProperty"> | undefined, "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined>;
|
|
37419
|
+
tokenNameCustomPropertyId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
37420
|
+
}, "strip", z.ZodTypeAny, {
|
|
37421
|
+
tokenNameFormat?: NonNullable<"Name" | "GroupAndName" | "FullPath" | "CustomProperty"> | undefined;
|
|
37422
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
37423
|
+
}, {
|
|
37424
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
37425
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
37426
|
+
}>;
|
|
37427
|
+
declare const PageBlockAssetBlockConfig: z.ZodObject<{
|
|
37428
|
+
showSearch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
37429
|
+
showAssetDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
37430
|
+
}, "strip", z.ZodTypeAny, {
|
|
37431
|
+
showSearch?: boolean | undefined;
|
|
37432
|
+
showAssetDescription?: boolean | undefined;
|
|
37433
|
+
}, {
|
|
37434
|
+
showSearch?: boolean | null | undefined;
|
|
37435
|
+
showAssetDescription?: boolean | null | undefined;
|
|
37436
|
+
}>;
|
|
37413
37437
|
declare const PageBlockSelectedFigmaComponent: z.ZodObject<{
|
|
37414
37438
|
figmaComponentId: z.ZodString;
|
|
37415
37439
|
selectedComponentProperties: z.ZodArray<z.ZodString, "many">;
|
|
@@ -37701,6 +37725,8 @@ declare const PageBlockGuideline: z.ZodObject<{
|
|
|
37701
37725
|
imageAlt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
37702
37726
|
imageCaption: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
37703
37727
|
imageAlignment: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Center" | "Left" | "Stretch" | "Right", z.ZodTypeDef, "Center" | "Left" | "Stretch" | "Right">>>, NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined, "Center" | "Left" | "Stretch" | "Right" | null | undefined>;
|
|
37728
|
+
openLightbox: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
37729
|
+
isBordered: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
37704
37730
|
}, "strip", z.ZodTypeAny, {
|
|
37705
37731
|
type: string;
|
|
37706
37732
|
description?: string | undefined;
|
|
@@ -37733,6 +37759,8 @@ declare const PageBlockGuideline: z.ZodObject<{
|
|
|
37733
37759
|
imageAlt?: string | undefined;
|
|
37734
37760
|
imageCaption?: string | undefined;
|
|
37735
37761
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
37762
|
+
openLightbox?: boolean | undefined;
|
|
37763
|
+
isBordered?: boolean | undefined;
|
|
37736
37764
|
}, {
|
|
37737
37765
|
type: string;
|
|
37738
37766
|
description?: string | null | undefined;
|
|
@@ -37765,6 +37793,8 @@ declare const PageBlockGuideline: z.ZodObject<{
|
|
|
37765
37793
|
imageAlt?: string | null | undefined;
|
|
37766
37794
|
imageCaption?: string | null | undefined;
|
|
37767
37795
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
37796
|
+
openLightbox?: boolean | null | undefined;
|
|
37797
|
+
isBordered?: boolean | null | undefined;
|
|
37768
37798
|
}>;
|
|
37769
37799
|
type PageBlockGuideline = z.infer<typeof PageBlockGuideline>;
|
|
37770
37800
|
declare const PageBlockFrame: z.ZodObject<{
|
|
@@ -38515,6 +38545,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38515
38545
|
showPropertyList: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38516
38546
|
previewOrderIds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
38517
38547
|
previewContainerSize: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Centered" | "NaturalHeight", z.ZodTypeDef, "Centered" | "NaturalHeight">>>, NonNullable<"Centered" | "NaturalHeight"> | undefined, "Centered" | "NaturalHeight" | null | undefined>;
|
|
38548
|
+
previewContainerHeight: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
38518
38549
|
backgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38519
38550
|
value: string;
|
|
38520
38551
|
}, z.ZodTypeDef, {
|
|
@@ -38528,6 +38559,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38528
38559
|
backgroundColor?: {
|
|
38529
38560
|
value: string;
|
|
38530
38561
|
} | undefined;
|
|
38562
|
+
previewContainerHeight?: number | undefined;
|
|
38531
38563
|
showComponentName?: boolean | undefined;
|
|
38532
38564
|
showComponentDescription?: boolean | undefined;
|
|
38533
38565
|
showPropertyList?: boolean | undefined;
|
|
@@ -38537,6 +38569,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38537
38569
|
backgroundColor?: {
|
|
38538
38570
|
value: string;
|
|
38539
38571
|
} | null | undefined;
|
|
38572
|
+
previewContainerHeight?: number | null | undefined;
|
|
38540
38573
|
showComponentName?: boolean | null | undefined;
|
|
38541
38574
|
showComponentDescription?: boolean | null | undefined;
|
|
38542
38575
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -38544,6 +38577,8 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38544
38577
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
38545
38578
|
}>;
|
|
38546
38579
|
type PageBlockFigmaComponentBlockConfig = z.infer<typeof PageBlockFigmaComponentBlockConfig>;
|
|
38580
|
+
declare const PageBlockTokenNameFormat: z.ZodEnum<["Name", "GroupAndName", "FullPath", "CustomProperty"]>;
|
|
38581
|
+
type PageBlockTokenNameFormat = z.infer<typeof PageBlockTokenNameFormat>;
|
|
38547
38582
|
declare const PageBlockBaseV1: z.ZodObject<{
|
|
38548
38583
|
persistentId: z.ZodString;
|
|
38549
38584
|
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "ComponentAssetGroup", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline", "FigmaComponents", "FigmaComponentPropsTable"]>;
|
|
@@ -38741,6 +38776,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38741
38776
|
} | null | undefined>;
|
|
38742
38777
|
alignment: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Center" | "Left" | "Stretch" | "Right", z.ZodTypeDef, "Center" | "Left" | "Stretch" | "Right">>>, NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined, "Center" | "Left" | "Stretch" | "Right" | null | undefined>;
|
|
38743
38778
|
imageAlt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38779
|
+
openLightbox: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38780
|
+
isBordered: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38744
38781
|
shortcuts: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38745
38782
|
persistentId: string;
|
|
38746
38783
|
url?: string | undefined;
|
|
@@ -38946,6 +38983,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38946
38983
|
imageAlt?: string | undefined;
|
|
38947
38984
|
imageCaption?: string | undefined;
|
|
38948
38985
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
38986
|
+
openLightbox?: boolean | undefined;
|
|
38987
|
+
isBordered?: boolean | undefined;
|
|
38949
38988
|
}, z.ZodTypeDef, {
|
|
38950
38989
|
type: string;
|
|
38951
38990
|
description?: string | null | undefined;
|
|
@@ -38978,6 +39017,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38978
39017
|
imageAlt?: string | null | undefined;
|
|
38979
39018
|
imageCaption?: string | null | undefined;
|
|
38980
39019
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
39020
|
+
openLightbox?: boolean | null | undefined;
|
|
39021
|
+
isBordered?: boolean | null | undefined;
|
|
38981
39022
|
}>>>, {
|
|
38982
39023
|
type: string;
|
|
38983
39024
|
description?: string | undefined;
|
|
@@ -39010,6 +39051,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39010
39051
|
imageAlt?: string | undefined;
|
|
39011
39052
|
imageCaption?: string | undefined;
|
|
39012
39053
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
39054
|
+
openLightbox?: boolean | undefined;
|
|
39055
|
+
isBordered?: boolean | undefined;
|
|
39013
39056
|
} | undefined, {
|
|
39014
39057
|
type: string;
|
|
39015
39058
|
description?: string | null | undefined;
|
|
@@ -39042,6 +39085,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39042
39085
|
imageAlt?: string | null | undefined;
|
|
39043
39086
|
imageCaption?: string | null | undefined;
|
|
39044
39087
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
39088
|
+
openLightbox?: boolean | null | undefined;
|
|
39089
|
+
isBordered?: boolean | null | undefined;
|
|
39045
39090
|
} | null | undefined>;
|
|
39046
39091
|
customBlockKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39047
39092
|
customBlockProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -39068,6 +39113,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39068
39113
|
backgroundColor?: {
|
|
39069
39114
|
value: string;
|
|
39070
39115
|
} | undefined;
|
|
39116
|
+
previewContainerHeight?: number | undefined;
|
|
39071
39117
|
}, z.ZodTypeDef, {
|
|
39072
39118
|
alignment: "Center" | "FrameHeight";
|
|
39073
39119
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
@@ -39078,6 +39124,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39078
39124
|
backgroundColor?: {
|
|
39079
39125
|
value: string;
|
|
39080
39126
|
} | null | undefined;
|
|
39127
|
+
previewContainerHeight?: number | null | undefined;
|
|
39081
39128
|
}>>>, {
|
|
39082
39129
|
alignment: "Center" | "FrameHeight";
|
|
39083
39130
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
@@ -39088,6 +39135,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39088
39135
|
backgroundColor?: {
|
|
39089
39136
|
value: string;
|
|
39090
39137
|
} | undefined;
|
|
39138
|
+
previewContainerHeight?: number | undefined;
|
|
39091
39139
|
} | undefined, {
|
|
39092
39140
|
alignment: "Center" | "FrameHeight";
|
|
39093
39141
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
@@ -39098,6 +39146,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39098
39146
|
backgroundColor?: {
|
|
39099
39147
|
value: string;
|
|
39100
39148
|
} | null | undefined;
|
|
39149
|
+
previewContainerHeight?: number | null | undefined;
|
|
39101
39150
|
} | null | undefined>;
|
|
39102
39151
|
figmaFrames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
39103
39152
|
persistentId: string;
|
|
@@ -39333,10 +39382,37 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39333
39382
|
selectedThemeIds: string[];
|
|
39334
39383
|
}[] | null | undefined>;
|
|
39335
39384
|
blacklistedElementProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
39385
|
+
tokenBlockConfig: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
39386
|
+
tokenNameFormat?: NonNullable<"Name" | "GroupAndName" | "FullPath" | "CustomProperty"> | undefined;
|
|
39387
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
39388
|
+
}, z.ZodTypeDef, {
|
|
39389
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39390
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39391
|
+
}>>>, {
|
|
39392
|
+
tokenNameFormat?: NonNullable<"Name" | "GroupAndName" | "FullPath" | "CustomProperty"> | undefined;
|
|
39393
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
39394
|
+
} | undefined, {
|
|
39395
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39396
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39397
|
+
} | null | undefined>;
|
|
39398
|
+
assetBlockConfig: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
39399
|
+
showSearch?: boolean | undefined;
|
|
39400
|
+
showAssetDescription?: boolean | undefined;
|
|
39401
|
+
}, z.ZodTypeDef, {
|
|
39402
|
+
showSearch?: boolean | null | undefined;
|
|
39403
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39404
|
+
}>>>, {
|
|
39405
|
+
showSearch?: boolean | undefined;
|
|
39406
|
+
showAssetDescription?: boolean | undefined;
|
|
39407
|
+
} | undefined, {
|
|
39408
|
+
showSearch?: boolean | null | undefined;
|
|
39409
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39410
|
+
} | null | undefined>;
|
|
39336
39411
|
figmaComponentsBlockConfig: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
39337
39412
|
backgroundColor?: {
|
|
39338
39413
|
value: string;
|
|
39339
39414
|
} | undefined;
|
|
39415
|
+
previewContainerHeight?: number | undefined;
|
|
39340
39416
|
showComponentName?: boolean | undefined;
|
|
39341
39417
|
showComponentDescription?: boolean | undefined;
|
|
39342
39418
|
showPropertyList?: boolean | undefined;
|
|
@@ -39346,6 +39422,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39346
39422
|
backgroundColor?: {
|
|
39347
39423
|
value: string;
|
|
39348
39424
|
} | null | undefined;
|
|
39425
|
+
previewContainerHeight?: number | null | undefined;
|
|
39349
39426
|
showComponentName?: boolean | null | undefined;
|
|
39350
39427
|
showComponentDescription?: boolean | null | undefined;
|
|
39351
39428
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39355,6 +39432,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39355
39432
|
backgroundColor?: {
|
|
39356
39433
|
value: string;
|
|
39357
39434
|
} | undefined;
|
|
39435
|
+
previewContainerHeight?: number | undefined;
|
|
39358
39436
|
showComponentName?: boolean | undefined;
|
|
39359
39437
|
showComponentDescription?: boolean | undefined;
|
|
39360
39438
|
showPropertyList?: boolean | undefined;
|
|
@@ -39364,6 +39442,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39364
39442
|
backgroundColor?: {
|
|
39365
39443
|
value: string;
|
|
39366
39444
|
} | null | undefined;
|
|
39445
|
+
previewContainerHeight?: number | null | undefined;
|
|
39367
39446
|
showComponentName?: boolean | null | undefined;
|
|
39368
39447
|
showComponentDescription?: boolean | null | undefined;
|
|
39369
39448
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39456,6 +39535,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39456
39535
|
}[];
|
|
39457
39536
|
} | undefined;
|
|
39458
39537
|
imageAlt?: string | undefined;
|
|
39538
|
+
openLightbox?: boolean | undefined;
|
|
39539
|
+
isBordered?: boolean | undefined;
|
|
39459
39540
|
numberOfColumns?: number | undefined;
|
|
39460
39541
|
itemBackgroundColor?: {
|
|
39461
39542
|
value: string;
|
|
@@ -39545,6 +39626,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39545
39626
|
imageAlt?: string | undefined;
|
|
39546
39627
|
imageCaption?: string | undefined;
|
|
39547
39628
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
39629
|
+
openLightbox?: boolean | undefined;
|
|
39630
|
+
isBordered?: boolean | undefined;
|
|
39548
39631
|
} | undefined;
|
|
39549
39632
|
customBlockKey?: string | undefined;
|
|
39550
39633
|
customBlockProperties?: {
|
|
@@ -39562,6 +39645,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39562
39645
|
backgroundColor?: {
|
|
39563
39646
|
value: string;
|
|
39564
39647
|
} | undefined;
|
|
39648
|
+
previewContainerHeight?: number | undefined;
|
|
39565
39649
|
} | undefined;
|
|
39566
39650
|
figmaFrames?: {
|
|
39567
39651
|
persistentId: string;
|
|
@@ -39622,10 +39706,19 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39622
39706
|
selectedThemeIds: string[];
|
|
39623
39707
|
}[] | undefined;
|
|
39624
39708
|
blacklistedElementProperties?: string[] | undefined;
|
|
39709
|
+
tokenBlockConfig?: {
|
|
39710
|
+
tokenNameFormat?: NonNullable<"Name" | "GroupAndName" | "FullPath" | "CustomProperty"> | undefined;
|
|
39711
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
39712
|
+
} | undefined;
|
|
39713
|
+
assetBlockConfig?: {
|
|
39714
|
+
showSearch?: boolean | undefined;
|
|
39715
|
+
showAssetDescription?: boolean | undefined;
|
|
39716
|
+
} | undefined;
|
|
39625
39717
|
figmaComponentsBlockConfig?: {
|
|
39626
39718
|
backgroundColor?: {
|
|
39627
39719
|
value: string;
|
|
39628
39720
|
} | undefined;
|
|
39721
|
+
previewContainerHeight?: number | undefined;
|
|
39629
39722
|
showComponentName?: boolean | undefined;
|
|
39630
39723
|
showComponentDescription?: boolean | undefined;
|
|
39631
39724
|
showPropertyList?: boolean | undefined;
|
|
@@ -39700,6 +39793,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39700
39793
|
}[];
|
|
39701
39794
|
} | null | undefined;
|
|
39702
39795
|
imageAlt?: string | null | undefined;
|
|
39796
|
+
openLightbox?: boolean | null | undefined;
|
|
39797
|
+
isBordered?: boolean | null | undefined;
|
|
39703
39798
|
numberOfColumns?: number | null | undefined;
|
|
39704
39799
|
itemBackgroundColor?: {
|
|
39705
39800
|
value: string;
|
|
@@ -39789,6 +39884,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39789
39884
|
imageAlt?: string | null | undefined;
|
|
39790
39885
|
imageCaption?: string | null | undefined;
|
|
39791
39886
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
39887
|
+
openLightbox?: boolean | null | undefined;
|
|
39888
|
+
isBordered?: boolean | null | undefined;
|
|
39792
39889
|
} | null | undefined;
|
|
39793
39890
|
customBlockKey?: string | null | undefined;
|
|
39794
39891
|
customBlockProperties?: {
|
|
@@ -39806,6 +39903,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39806
39903
|
backgroundColor?: {
|
|
39807
39904
|
value: string;
|
|
39808
39905
|
} | null | undefined;
|
|
39906
|
+
previewContainerHeight?: number | null | undefined;
|
|
39809
39907
|
} | null | undefined;
|
|
39810
39908
|
figmaFrames?: {
|
|
39811
39909
|
persistentId: string;
|
|
@@ -39866,10 +39964,19 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39866
39964
|
selectedThemeIds: string[];
|
|
39867
39965
|
}[] | null | undefined;
|
|
39868
39966
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
39967
|
+
tokenBlockConfig?: {
|
|
39968
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
39969
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
39970
|
+
} | null | undefined;
|
|
39971
|
+
assetBlockConfig?: {
|
|
39972
|
+
showSearch?: boolean | null | undefined;
|
|
39973
|
+
showAssetDescription?: boolean | null | undefined;
|
|
39974
|
+
} | null | undefined;
|
|
39869
39975
|
figmaComponentsBlockConfig?: {
|
|
39870
39976
|
backgroundColor?: {
|
|
39871
39977
|
value: string;
|
|
39872
39978
|
} | null | undefined;
|
|
39979
|
+
previewContainerHeight?: number | null | undefined;
|
|
39873
39980
|
showComponentName?: boolean | null | undefined;
|
|
39874
39981
|
showComponentDescription?: boolean | null | undefined;
|
|
39875
39982
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -39909,8 +40016,6 @@ declare const PageBlockPreviewContainerSize: z.ZodEnum<["Centered", "NaturalHeig
|
|
|
39909
40016
|
type PageBlockPreviewContainerSize = z.infer<typeof PageBlockPreviewContainerSize>;
|
|
39910
40017
|
declare const PageBlockThemeDisplayMode: z.ZodEnum<["Split", "Override"]>;
|
|
39911
40018
|
type PageBlockThemeDisplayMode = z.infer<typeof PageBlockThemeDisplayMode>;
|
|
39912
|
-
declare const PageBlockTokenNameFormat: z.ZodEnum<["Name", "GroupAndName", "FullPath", "CustomProperty"]>;
|
|
39913
|
-
type PageBlockTokenNameFormat = z.infer<typeof PageBlockTokenNameFormat>;
|
|
39914
40019
|
declare const PageBlockTokenValueFormat: z.ZodEnum<["ResolvedValue", "ReferenceName", "NoValue"]>;
|
|
39915
40020
|
type PageBlockTokenValueFormat = z.infer<typeof PageBlockTokenValueFormat>;
|
|
39916
40021
|
declare const PageBlockImageResourceReference: z.ZodObject<{
|
|
@@ -40416,11 +40521,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
40416
40521
|
value: string;
|
|
40417
40522
|
referencedTokenId?: string | undefined;
|
|
40418
40523
|
} | undefined;
|
|
40524
|
+
previewContainerHeight?: number | undefined;
|
|
40419
40525
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40420
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40421
40526
|
showSearch?: boolean | undefined;
|
|
40422
40527
|
showAssetDescription?: boolean | undefined;
|
|
40423
|
-
|
|
40528
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40424
40529
|
}, {
|
|
40425
40530
|
value?: {
|
|
40426
40531
|
entityId: string;
|
|
@@ -40439,11 +40544,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
40439
40544
|
value: string;
|
|
40440
40545
|
referencedTokenId?: string | undefined;
|
|
40441
40546
|
} | undefined;
|
|
40547
|
+
previewContainerHeight?: number | undefined;
|
|
40442
40548
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40443
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40444
40549
|
showSearch?: boolean | undefined;
|
|
40445
40550
|
showAssetDescription?: boolean | undefined;
|
|
40446
|
-
|
|
40551
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40447
40552
|
}>;
|
|
40448
40553
|
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
40449
40554
|
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
@@ -40506,12 +40611,12 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
40506
40611
|
value: string;
|
|
40507
40612
|
referencedTokenId?: string | undefined;
|
|
40508
40613
|
} | undefined;
|
|
40614
|
+
previewContainerHeight?: number | undefined;
|
|
40509
40615
|
showComponentName?: boolean | undefined;
|
|
40510
40616
|
showComponentDescription?: boolean | undefined;
|
|
40511
40617
|
showPropertyList?: boolean | undefined;
|
|
40512
40618
|
previewOrderIds?: string[] | undefined;
|
|
40513
40619
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40514
|
-
previewContainerHeight?: number | undefined;
|
|
40515
40620
|
}, {
|
|
40516
40621
|
value?: {
|
|
40517
40622
|
entityId: string;
|
|
@@ -40524,12 +40629,12 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
40524
40629
|
value: string;
|
|
40525
40630
|
referencedTokenId?: string | undefined;
|
|
40526
40631
|
} | undefined;
|
|
40632
|
+
previewContainerHeight?: number | undefined;
|
|
40527
40633
|
showComponentName?: boolean | undefined;
|
|
40528
40634
|
showComponentDescription?: boolean | undefined;
|
|
40529
40635
|
showPropertyList?: boolean | undefined;
|
|
40530
40636
|
previewOrderIds?: string[] | undefined;
|
|
40531
40637
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40532
|
-
previewContainerHeight?: number | undefined;
|
|
40533
40638
|
}>;
|
|
40534
40639
|
type PageBlockItemFigmaComponentValue = z.infer<typeof PageBlockItemFigmaComponentValue>;
|
|
40535
40640
|
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
@@ -40740,9 +40845,9 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
40740
40845
|
value: string;
|
|
40741
40846
|
referencedTokenId?: string | undefined;
|
|
40742
40847
|
} | undefined;
|
|
40848
|
+
previewContainerHeight?: number | undefined;
|
|
40743
40849
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40744
40850
|
showSearch?: boolean | undefined;
|
|
40745
|
-
previewContainerHeight?: number | undefined;
|
|
40746
40851
|
showFrameDetails?: boolean | undefined;
|
|
40747
40852
|
}, {
|
|
40748
40853
|
value?: {
|
|
@@ -40760,9 +40865,9 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
40760
40865
|
value: string;
|
|
40761
40866
|
referencedTokenId?: string | undefined;
|
|
40762
40867
|
} | undefined;
|
|
40868
|
+
previewContainerHeight?: number | undefined;
|
|
40763
40869
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40764
40870
|
showSearch?: boolean | undefined;
|
|
40765
|
-
previewContainerHeight?: number | undefined;
|
|
40766
40871
|
showFrameDetails?: boolean | undefined;
|
|
40767
40872
|
}>;
|
|
40768
40873
|
type PageBlockItemFigmaNodeValue = z.infer<typeof PageBlockItemFigmaNodeValue>;
|
|
@@ -40828,10 +40933,10 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
40828
40933
|
} | undefined;
|
|
40829
40934
|
} | undefined;
|
|
40830
40935
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
40831
|
-
|
|
40936
|
+
openLightbox?: boolean | undefined;
|
|
40832
40937
|
isBordered?: boolean | undefined;
|
|
40938
|
+
caption?: string | undefined;
|
|
40833
40939
|
alt?: string | undefined;
|
|
40834
|
-
openLightbox?: boolean | undefined;
|
|
40835
40940
|
}, {
|
|
40836
40941
|
value?: {
|
|
40837
40942
|
type: "FigmaNode" | "Resource";
|
|
@@ -40845,10 +40950,10 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
40845
40950
|
} | undefined;
|
|
40846
40951
|
} | undefined;
|
|
40847
40952
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
40848
|
-
|
|
40953
|
+
openLightbox?: boolean | undefined;
|
|
40849
40954
|
isBordered?: boolean | undefined;
|
|
40955
|
+
caption?: string | undefined;
|
|
40850
40956
|
alt?: string | undefined;
|
|
40851
|
-
openLightbox?: boolean | undefined;
|
|
40852
40957
|
}>;
|
|
40853
40958
|
type PageBlockItemImageValue = z.infer<typeof PageBlockItemImageValue>;
|
|
40854
40959
|
declare const PageBlockItemMarkdownValue: z.ZodObject<{
|
|
@@ -41193,14 +41298,14 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
41193
41298
|
} | undefined;
|
|
41194
41299
|
}[];
|
|
41195
41300
|
selectedThemeIds?: string[] | undefined;
|
|
41301
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | undefined;
|
|
41302
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
41196
41303
|
swatches?: {
|
|
41197
41304
|
id: string;
|
|
41198
41305
|
selectedThemeIds: string[];
|
|
41199
41306
|
}[] | undefined;
|
|
41200
41307
|
selectedPropertyIds?: string[] | undefined;
|
|
41201
41308
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
41202
|
-
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | undefined;
|
|
41203
|
-
tokenNameCustomPropertyId?: string | undefined;
|
|
41204
41309
|
tokenValueFormat?: "ResolvedValue" | "ReferenceName" | "NoValue" | undefined;
|
|
41205
41310
|
}, {
|
|
41206
41311
|
value?: {
|
|
@@ -41211,14 +41316,14 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
41211
41316
|
} | undefined;
|
|
41212
41317
|
}[] | undefined;
|
|
41213
41318
|
selectedThemeIds?: string[] | undefined;
|
|
41319
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | undefined;
|
|
41320
|
+
tokenNameCustomPropertyId?: string | undefined;
|
|
41214
41321
|
swatches?: {
|
|
41215
41322
|
id: string;
|
|
41216
41323
|
selectedThemeIds: string[];
|
|
41217
41324
|
}[] | undefined;
|
|
41218
41325
|
selectedPropertyIds?: string[] | undefined;
|
|
41219
41326
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
41220
|
-
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | undefined;
|
|
41221
|
-
tokenNameCustomPropertyId?: string | undefined;
|
|
41222
41327
|
tokenValueFormat?: "ResolvedValue" | "ReferenceName" | "NoValue" | undefined;
|
|
41223
41328
|
}>;
|
|
41224
41329
|
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
@@ -42179,6 +42284,8 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
42179
42284
|
} | undefined;
|
|
42180
42285
|
}>>;
|
|
42181
42286
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42287
|
+
openLightbox: z.ZodOptional<z.ZodBoolean>;
|
|
42288
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
42182
42289
|
}, "strip", z.ZodTypeAny, {
|
|
42183
42290
|
id: string;
|
|
42184
42291
|
type: "Image";
|
|
@@ -42194,6 +42301,8 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
42194
42301
|
} | undefined;
|
|
42195
42302
|
} | undefined;
|
|
42196
42303
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42304
|
+
openLightbox?: boolean | undefined;
|
|
42305
|
+
isBordered?: boolean | undefined;
|
|
42197
42306
|
caption?: string | undefined;
|
|
42198
42307
|
alt?: string | undefined;
|
|
42199
42308
|
}, {
|
|
@@ -42211,6 +42320,8 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
42211
42320
|
} | undefined;
|
|
42212
42321
|
} | undefined;
|
|
42213
42322
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42323
|
+
openLightbox?: boolean | undefined;
|
|
42324
|
+
isBordered?: boolean | undefined;
|
|
42214
42325
|
caption?: string | undefined;
|
|
42215
42326
|
alt?: string | undefined;
|
|
42216
42327
|
}>;
|
|
@@ -42379,6 +42490,8 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
42379
42490
|
} | undefined;
|
|
42380
42491
|
}>>;
|
|
42381
42492
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42493
|
+
openLightbox: z.ZodOptional<z.ZodBoolean>;
|
|
42494
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
42382
42495
|
}, "strip", z.ZodTypeAny, {
|
|
42383
42496
|
id: string;
|
|
42384
42497
|
type: "Image";
|
|
@@ -42394,6 +42507,8 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
42394
42507
|
} | undefined;
|
|
42395
42508
|
} | undefined;
|
|
42396
42509
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42510
|
+
openLightbox?: boolean | undefined;
|
|
42511
|
+
isBordered?: boolean | undefined;
|
|
42397
42512
|
caption?: string | undefined;
|
|
42398
42513
|
alt?: string | undefined;
|
|
42399
42514
|
}, {
|
|
@@ -42411,6 +42526,8 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
42411
42526
|
} | undefined;
|
|
42412
42527
|
} | undefined;
|
|
42413
42528
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42529
|
+
openLightbox?: boolean | undefined;
|
|
42530
|
+
isBordered?: boolean | undefined;
|
|
42414
42531
|
caption?: string | undefined;
|
|
42415
42532
|
alt?: string | undefined;
|
|
42416
42533
|
}>]>;
|
|
@@ -42581,6 +42698,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
42581
42698
|
} | undefined;
|
|
42582
42699
|
}>>;
|
|
42583
42700
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42701
|
+
openLightbox: z.ZodOptional<z.ZodBoolean>;
|
|
42702
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
42584
42703
|
}, "strip", z.ZodTypeAny, {
|
|
42585
42704
|
id: string;
|
|
42586
42705
|
type: "Image";
|
|
@@ -42596,6 +42715,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
42596
42715
|
} | undefined;
|
|
42597
42716
|
} | undefined;
|
|
42598
42717
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42718
|
+
openLightbox?: boolean | undefined;
|
|
42719
|
+
isBordered?: boolean | undefined;
|
|
42599
42720
|
caption?: string | undefined;
|
|
42600
42721
|
alt?: string | undefined;
|
|
42601
42722
|
}, {
|
|
@@ -42613,6 +42734,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
42613
42734
|
} | undefined;
|
|
42614
42735
|
} | undefined;
|
|
42615
42736
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42737
|
+
openLightbox?: boolean | undefined;
|
|
42738
|
+
isBordered?: boolean | undefined;
|
|
42616
42739
|
caption?: string | undefined;
|
|
42617
42740
|
alt?: string | undefined;
|
|
42618
42741
|
}>]>, "many">;
|
|
@@ -42653,6 +42776,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
42653
42776
|
} | undefined;
|
|
42654
42777
|
} | undefined;
|
|
42655
42778
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42779
|
+
openLightbox?: boolean | undefined;
|
|
42780
|
+
isBordered?: boolean | undefined;
|
|
42656
42781
|
caption?: string | undefined;
|
|
42657
42782
|
alt?: string | undefined;
|
|
42658
42783
|
})[];
|
|
@@ -42692,6 +42817,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
42692
42817
|
} | undefined;
|
|
42693
42818
|
} | undefined;
|
|
42694
42819
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42820
|
+
openLightbox?: boolean | undefined;
|
|
42821
|
+
isBordered?: boolean | undefined;
|
|
42695
42822
|
caption?: string | undefined;
|
|
42696
42823
|
alt?: string | undefined;
|
|
42697
42824
|
})[];
|
|
@@ -42865,6 +42992,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
42865
42992
|
} | undefined;
|
|
42866
42993
|
}>>;
|
|
42867
42994
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42995
|
+
openLightbox: z.ZodOptional<z.ZodBoolean>;
|
|
42996
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
42868
42997
|
}, "strip", z.ZodTypeAny, {
|
|
42869
42998
|
id: string;
|
|
42870
42999
|
type: "Image";
|
|
@@ -42880,6 +43009,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
42880
43009
|
} | undefined;
|
|
42881
43010
|
} | undefined;
|
|
42882
43011
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43012
|
+
openLightbox?: boolean | undefined;
|
|
43013
|
+
isBordered?: boolean | undefined;
|
|
42883
43014
|
caption?: string | undefined;
|
|
42884
43015
|
alt?: string | undefined;
|
|
42885
43016
|
}, {
|
|
@@ -42897,6 +43028,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
42897
43028
|
} | undefined;
|
|
42898
43029
|
} | undefined;
|
|
42899
43030
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43031
|
+
openLightbox?: boolean | undefined;
|
|
43032
|
+
isBordered?: boolean | undefined;
|
|
42900
43033
|
caption?: string | undefined;
|
|
42901
43034
|
alt?: string | undefined;
|
|
42902
43035
|
}>]>, "many">;
|
|
@@ -42937,6 +43070,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
42937
43070
|
} | undefined;
|
|
42938
43071
|
} | undefined;
|
|
42939
43072
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43073
|
+
openLightbox?: boolean | undefined;
|
|
43074
|
+
isBordered?: boolean | undefined;
|
|
42940
43075
|
caption?: string | undefined;
|
|
42941
43076
|
alt?: string | undefined;
|
|
42942
43077
|
})[];
|
|
@@ -42976,6 +43111,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
42976
43111
|
} | undefined;
|
|
42977
43112
|
} | undefined;
|
|
42978
43113
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43114
|
+
openLightbox?: boolean | undefined;
|
|
43115
|
+
isBordered?: boolean | undefined;
|
|
42979
43116
|
caption?: string | undefined;
|
|
42980
43117
|
alt?: string | undefined;
|
|
42981
43118
|
})[];
|
|
@@ -43017,6 +43154,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
43017
43154
|
} | undefined;
|
|
43018
43155
|
} | undefined;
|
|
43019
43156
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43157
|
+
openLightbox?: boolean | undefined;
|
|
43158
|
+
isBordered?: boolean | undefined;
|
|
43020
43159
|
caption?: string | undefined;
|
|
43021
43160
|
alt?: string | undefined;
|
|
43022
43161
|
})[];
|
|
@@ -43058,6 +43197,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
43058
43197
|
} | undefined;
|
|
43059
43198
|
} | undefined;
|
|
43060
43199
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43200
|
+
openLightbox?: boolean | undefined;
|
|
43201
|
+
isBordered?: boolean | undefined;
|
|
43061
43202
|
caption?: string | undefined;
|
|
43062
43203
|
alt?: string | undefined;
|
|
43063
43204
|
})[];
|
|
@@ -43236,6 +43377,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43236
43377
|
} | undefined;
|
|
43237
43378
|
}>>;
|
|
43238
43379
|
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
43380
|
+
openLightbox: z.ZodOptional<z.ZodBoolean>;
|
|
43381
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
43239
43382
|
}, "strip", z.ZodTypeAny, {
|
|
43240
43383
|
id: string;
|
|
43241
43384
|
type: "Image";
|
|
@@ -43251,6 +43394,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43251
43394
|
} | undefined;
|
|
43252
43395
|
} | undefined;
|
|
43253
43396
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43397
|
+
openLightbox?: boolean | undefined;
|
|
43398
|
+
isBordered?: boolean | undefined;
|
|
43254
43399
|
caption?: string | undefined;
|
|
43255
43400
|
alt?: string | undefined;
|
|
43256
43401
|
}, {
|
|
@@ -43268,6 +43413,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43268
43413
|
} | undefined;
|
|
43269
43414
|
} | undefined;
|
|
43270
43415
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43416
|
+
openLightbox?: boolean | undefined;
|
|
43417
|
+
isBordered?: boolean | undefined;
|
|
43271
43418
|
caption?: string | undefined;
|
|
43272
43419
|
alt?: string | undefined;
|
|
43273
43420
|
}>]>, "many">;
|
|
@@ -43308,6 +43455,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43308
43455
|
} | undefined;
|
|
43309
43456
|
} | undefined;
|
|
43310
43457
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43458
|
+
openLightbox?: boolean | undefined;
|
|
43459
|
+
isBordered?: boolean | undefined;
|
|
43311
43460
|
caption?: string | undefined;
|
|
43312
43461
|
alt?: string | undefined;
|
|
43313
43462
|
})[];
|
|
@@ -43347,6 +43496,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43347
43496
|
} | undefined;
|
|
43348
43497
|
} | undefined;
|
|
43349
43498
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43499
|
+
openLightbox?: boolean | undefined;
|
|
43500
|
+
isBordered?: boolean | undefined;
|
|
43350
43501
|
caption?: string | undefined;
|
|
43351
43502
|
alt?: string | undefined;
|
|
43352
43503
|
})[];
|
|
@@ -43388,6 +43539,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43388
43539
|
} | undefined;
|
|
43389
43540
|
} | undefined;
|
|
43390
43541
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43542
|
+
openLightbox?: boolean | undefined;
|
|
43543
|
+
isBordered?: boolean | undefined;
|
|
43391
43544
|
caption?: string | undefined;
|
|
43392
43545
|
alt?: string | undefined;
|
|
43393
43546
|
})[];
|
|
@@ -43429,6 +43582,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43429
43582
|
} | undefined;
|
|
43430
43583
|
} | undefined;
|
|
43431
43584
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43585
|
+
openLightbox?: boolean | undefined;
|
|
43586
|
+
isBordered?: boolean | undefined;
|
|
43432
43587
|
caption?: string | undefined;
|
|
43433
43588
|
alt?: string | undefined;
|
|
43434
43589
|
})[];
|
|
@@ -43472,6 +43627,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43472
43627
|
} | undefined;
|
|
43473
43628
|
} | undefined;
|
|
43474
43629
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43630
|
+
openLightbox?: boolean | undefined;
|
|
43631
|
+
isBordered?: boolean | undefined;
|
|
43475
43632
|
caption?: string | undefined;
|
|
43476
43633
|
alt?: string | undefined;
|
|
43477
43634
|
})[];
|
|
@@ -43518,6 +43675,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
43518
43675
|
} | undefined;
|
|
43519
43676
|
} | undefined;
|
|
43520
43677
|
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
43678
|
+
openLightbox?: boolean | undefined;
|
|
43679
|
+
isBordered?: boolean | undefined;
|
|
43521
43680
|
caption?: string | undefined;
|
|
43522
43681
|
alt?: string | undefined;
|
|
43523
43682
|
})[];
|
|
@@ -43590,6 +43749,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43590
43749
|
}[];
|
|
43591
43750
|
} | null | undefined;
|
|
43592
43751
|
imageAlt?: string | null | undefined;
|
|
43752
|
+
openLightbox?: boolean | null | undefined;
|
|
43753
|
+
isBordered?: boolean | null | undefined;
|
|
43593
43754
|
numberOfColumns?: number | null | undefined;
|
|
43594
43755
|
itemBackgroundColor?: {
|
|
43595
43756
|
value: string;
|
|
@@ -43679,6 +43840,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43679
43840
|
imageAlt?: string | null | undefined;
|
|
43680
43841
|
imageCaption?: string | null | undefined;
|
|
43681
43842
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
43843
|
+
openLightbox?: boolean | null | undefined;
|
|
43844
|
+
isBordered?: boolean | null | undefined;
|
|
43682
43845
|
} | null | undefined;
|
|
43683
43846
|
customBlockKey?: string | null | undefined;
|
|
43684
43847
|
customBlockProperties?: {
|
|
@@ -43696,6 +43859,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43696
43859
|
backgroundColor?: {
|
|
43697
43860
|
value: string;
|
|
43698
43861
|
} | null | undefined;
|
|
43862
|
+
previewContainerHeight?: number | null | undefined;
|
|
43699
43863
|
} | null | undefined;
|
|
43700
43864
|
figmaFrames?: {
|
|
43701
43865
|
persistentId: string;
|
|
@@ -43756,10 +43920,19 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43756
43920
|
selectedThemeIds: string[];
|
|
43757
43921
|
}[] | null | undefined;
|
|
43758
43922
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
43923
|
+
tokenBlockConfig?: {
|
|
43924
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
43925
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
43926
|
+
} | null | undefined;
|
|
43927
|
+
assetBlockConfig?: {
|
|
43928
|
+
showSearch?: boolean | null | undefined;
|
|
43929
|
+
showAssetDescription?: boolean | null | undefined;
|
|
43930
|
+
} | null | undefined;
|
|
43759
43931
|
figmaComponentsBlockConfig?: {
|
|
43760
43932
|
backgroundColor?: {
|
|
43761
43933
|
value: string;
|
|
43762
43934
|
} | null | undefined;
|
|
43935
|
+
previewContainerHeight?: number | null | undefined;
|
|
43763
43936
|
showComponentName?: boolean | null | undefined;
|
|
43764
43937
|
showComponentDescription?: boolean | null | undefined;
|
|
43765
43938
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -43835,6 +44008,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43835
44008
|
}[];
|
|
43836
44009
|
} | null | undefined;
|
|
43837
44010
|
imageAlt?: string | null | undefined;
|
|
44011
|
+
openLightbox?: boolean | null | undefined;
|
|
44012
|
+
isBordered?: boolean | null | undefined;
|
|
43838
44013
|
numberOfColumns?: number | null | undefined;
|
|
43839
44014
|
itemBackgroundColor?: {
|
|
43840
44015
|
value: string;
|
|
@@ -43924,6 +44099,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43924
44099
|
imageAlt?: string | null | undefined;
|
|
43925
44100
|
imageCaption?: string | null | undefined;
|
|
43926
44101
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
44102
|
+
openLightbox?: boolean | null | undefined;
|
|
44103
|
+
isBordered?: boolean | null | undefined;
|
|
43927
44104
|
} | null | undefined;
|
|
43928
44105
|
customBlockKey?: string | null | undefined;
|
|
43929
44106
|
customBlockProperties?: {
|
|
@@ -43941,6 +44118,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43941
44118
|
backgroundColor?: {
|
|
43942
44119
|
value: string;
|
|
43943
44120
|
} | null | undefined;
|
|
44121
|
+
previewContainerHeight?: number | null | undefined;
|
|
43944
44122
|
} | null | undefined;
|
|
43945
44123
|
figmaFrames?: {
|
|
43946
44124
|
persistentId: string;
|
|
@@ -44001,10 +44179,19 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44001
44179
|
selectedThemeIds: string[];
|
|
44002
44180
|
}[] | null | undefined;
|
|
44003
44181
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
44182
|
+
tokenBlockConfig?: {
|
|
44183
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
44184
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
44185
|
+
} | null | undefined;
|
|
44186
|
+
assetBlockConfig?: {
|
|
44187
|
+
showSearch?: boolean | null | undefined;
|
|
44188
|
+
showAssetDescription?: boolean | null | undefined;
|
|
44189
|
+
} | null | undefined;
|
|
44004
44190
|
figmaComponentsBlockConfig?: {
|
|
44005
44191
|
backgroundColor?: {
|
|
44006
44192
|
value: string;
|
|
44007
44193
|
} | null | undefined;
|
|
44194
|
+
previewContainerHeight?: number | null | undefined;
|
|
44008
44195
|
showComponentName?: boolean | null | undefined;
|
|
44009
44196
|
showComponentDescription?: boolean | null | undefined;
|
|
44010
44197
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -44426,6 +44613,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44426
44613
|
}[];
|
|
44427
44614
|
} | null | undefined;
|
|
44428
44615
|
imageAlt?: string | null | undefined;
|
|
44616
|
+
openLightbox?: boolean | null | undefined;
|
|
44617
|
+
isBordered?: boolean | null | undefined;
|
|
44429
44618
|
numberOfColumns?: number | null | undefined;
|
|
44430
44619
|
itemBackgroundColor?: {
|
|
44431
44620
|
value: string;
|
|
@@ -44515,6 +44704,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44515
44704
|
imageAlt?: string | null | undefined;
|
|
44516
44705
|
imageCaption?: string | null | undefined;
|
|
44517
44706
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
44707
|
+
openLightbox?: boolean | null | undefined;
|
|
44708
|
+
isBordered?: boolean | null | undefined;
|
|
44518
44709
|
} | null | undefined;
|
|
44519
44710
|
customBlockKey?: string | null | undefined;
|
|
44520
44711
|
customBlockProperties?: {
|
|
@@ -44532,6 +44723,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44532
44723
|
backgroundColor?: {
|
|
44533
44724
|
value: string;
|
|
44534
44725
|
} | null | undefined;
|
|
44726
|
+
previewContainerHeight?: number | null | undefined;
|
|
44535
44727
|
} | null | undefined;
|
|
44536
44728
|
figmaFrames?: {
|
|
44537
44729
|
persistentId: string;
|
|
@@ -44592,10 +44784,19 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44592
44784
|
selectedThemeIds: string[];
|
|
44593
44785
|
}[] | null | undefined;
|
|
44594
44786
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
44787
|
+
tokenBlockConfig?: {
|
|
44788
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
44789
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
44790
|
+
} | null | undefined;
|
|
44791
|
+
assetBlockConfig?: {
|
|
44792
|
+
showSearch?: boolean | null | undefined;
|
|
44793
|
+
showAssetDescription?: boolean | null | undefined;
|
|
44794
|
+
} | null | undefined;
|
|
44595
44795
|
figmaComponentsBlockConfig?: {
|
|
44596
44796
|
backgroundColor?: {
|
|
44597
44797
|
value: string;
|
|
44598
44798
|
} | null | undefined;
|
|
44799
|
+
previewContainerHeight?: number | null | undefined;
|
|
44599
44800
|
showComponentName?: boolean | null | undefined;
|
|
44600
44801
|
showComponentDescription?: boolean | null | undefined;
|
|
44601
44802
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -44671,6 +44872,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44671
44872
|
}[];
|
|
44672
44873
|
} | null | undefined;
|
|
44673
44874
|
imageAlt?: string | null | undefined;
|
|
44875
|
+
openLightbox?: boolean | null | undefined;
|
|
44876
|
+
isBordered?: boolean | null | undefined;
|
|
44674
44877
|
numberOfColumns?: number | null | undefined;
|
|
44675
44878
|
itemBackgroundColor?: {
|
|
44676
44879
|
value: string;
|
|
@@ -44760,6 +44963,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44760
44963
|
imageAlt?: string | null | undefined;
|
|
44761
44964
|
imageCaption?: string | null | undefined;
|
|
44762
44965
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
44966
|
+
openLightbox?: boolean | null | undefined;
|
|
44967
|
+
isBordered?: boolean | null | undefined;
|
|
44763
44968
|
} | null | undefined;
|
|
44764
44969
|
customBlockKey?: string | null | undefined;
|
|
44765
44970
|
customBlockProperties?: {
|
|
@@ -44777,6 +44982,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44777
44982
|
backgroundColor?: {
|
|
44778
44983
|
value: string;
|
|
44779
44984
|
} | null | undefined;
|
|
44985
|
+
previewContainerHeight?: number | null | undefined;
|
|
44780
44986
|
} | null | undefined;
|
|
44781
44987
|
figmaFrames?: {
|
|
44782
44988
|
persistentId: string;
|
|
@@ -44837,10 +45043,19 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44837
45043
|
selectedThemeIds: string[];
|
|
44838
45044
|
}[] | null | undefined;
|
|
44839
45045
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
45046
|
+
tokenBlockConfig?: {
|
|
45047
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
45048
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
45049
|
+
} | null | undefined;
|
|
45050
|
+
assetBlockConfig?: {
|
|
45051
|
+
showSearch?: boolean | null | undefined;
|
|
45052
|
+
showAssetDescription?: boolean | null | undefined;
|
|
45053
|
+
} | null | undefined;
|
|
44840
45054
|
figmaComponentsBlockConfig?: {
|
|
44841
45055
|
backgroundColor?: {
|
|
44842
45056
|
value: string;
|
|
44843
45057
|
} | null | undefined;
|
|
45058
|
+
previewContainerHeight?: number | null | undefined;
|
|
44844
45059
|
showComponentName?: boolean | null | undefined;
|
|
44845
45060
|
showComponentDescription?: boolean | null | undefined;
|
|
44846
45061
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -51842,6 +52057,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51842
52057
|
}[];
|
|
51843
52058
|
} | null | undefined;
|
|
51844
52059
|
imageAlt?: string | null | undefined;
|
|
52060
|
+
openLightbox?: boolean | null | undefined;
|
|
52061
|
+
isBordered?: boolean | null | undefined;
|
|
51845
52062
|
numberOfColumns?: number | null | undefined;
|
|
51846
52063
|
itemBackgroundColor?: {
|
|
51847
52064
|
value: string;
|
|
@@ -51931,6 +52148,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51931
52148
|
imageAlt?: string | null | undefined;
|
|
51932
52149
|
imageCaption?: string | null | undefined;
|
|
51933
52150
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
52151
|
+
openLightbox?: boolean | null | undefined;
|
|
52152
|
+
isBordered?: boolean | null | undefined;
|
|
51934
52153
|
} | null | undefined;
|
|
51935
52154
|
customBlockKey?: string | null | undefined;
|
|
51936
52155
|
customBlockProperties?: {
|
|
@@ -51948,6 +52167,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51948
52167
|
backgroundColor?: {
|
|
51949
52168
|
value: string;
|
|
51950
52169
|
} | null | undefined;
|
|
52170
|
+
previewContainerHeight?: number | null | undefined;
|
|
51951
52171
|
} | null | undefined;
|
|
51952
52172
|
figmaFrames?: {
|
|
51953
52173
|
persistentId: string;
|
|
@@ -52008,10 +52228,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52008
52228
|
selectedThemeIds: string[];
|
|
52009
52229
|
}[] | null | undefined;
|
|
52010
52230
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
52231
|
+
tokenBlockConfig?: {
|
|
52232
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
52233
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
52234
|
+
} | null | undefined;
|
|
52235
|
+
assetBlockConfig?: {
|
|
52236
|
+
showSearch?: boolean | null | undefined;
|
|
52237
|
+
showAssetDescription?: boolean | null | undefined;
|
|
52238
|
+
} | null | undefined;
|
|
52011
52239
|
figmaComponentsBlockConfig?: {
|
|
52012
52240
|
backgroundColor?: {
|
|
52013
52241
|
value: string;
|
|
52014
52242
|
} | null | undefined;
|
|
52243
|
+
previewContainerHeight?: number | null | undefined;
|
|
52015
52244
|
showComponentName?: boolean | null | undefined;
|
|
52016
52245
|
showComponentDescription?: boolean | null | undefined;
|
|
52017
52246
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -52087,6 +52316,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52087
52316
|
}[];
|
|
52088
52317
|
} | null | undefined;
|
|
52089
52318
|
imageAlt?: string | null | undefined;
|
|
52319
|
+
openLightbox?: boolean | null | undefined;
|
|
52320
|
+
isBordered?: boolean | null | undefined;
|
|
52090
52321
|
numberOfColumns?: number | null | undefined;
|
|
52091
52322
|
itemBackgroundColor?: {
|
|
52092
52323
|
value: string;
|
|
@@ -52176,6 +52407,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52176
52407
|
imageAlt?: string | null | undefined;
|
|
52177
52408
|
imageCaption?: string | null | undefined;
|
|
52178
52409
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
52410
|
+
openLightbox?: boolean | null | undefined;
|
|
52411
|
+
isBordered?: boolean | null | undefined;
|
|
52179
52412
|
} | null | undefined;
|
|
52180
52413
|
customBlockKey?: string | null | undefined;
|
|
52181
52414
|
customBlockProperties?: {
|
|
@@ -52193,6 +52426,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52193
52426
|
backgroundColor?: {
|
|
52194
52427
|
value: string;
|
|
52195
52428
|
} | null | undefined;
|
|
52429
|
+
previewContainerHeight?: number | null | undefined;
|
|
52196
52430
|
} | null | undefined;
|
|
52197
52431
|
figmaFrames?: {
|
|
52198
52432
|
persistentId: string;
|
|
@@ -52253,10 +52487,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52253
52487
|
selectedThemeIds: string[];
|
|
52254
52488
|
}[] | null | undefined;
|
|
52255
52489
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
52490
|
+
tokenBlockConfig?: {
|
|
52491
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
52492
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
52493
|
+
} | null | undefined;
|
|
52494
|
+
assetBlockConfig?: {
|
|
52495
|
+
showSearch?: boolean | null | undefined;
|
|
52496
|
+
showAssetDescription?: boolean | null | undefined;
|
|
52497
|
+
} | null | undefined;
|
|
52256
52498
|
figmaComponentsBlockConfig?: {
|
|
52257
52499
|
backgroundColor?: {
|
|
52258
52500
|
value: string;
|
|
52259
52501
|
} | null | undefined;
|
|
52502
|
+
previewContainerHeight?: number | null | undefined;
|
|
52260
52503
|
showComponentName?: boolean | null | undefined;
|
|
52261
52504
|
showComponentDescription?: boolean | null | undefined;
|
|
52262
52505
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -52678,6 +52921,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52678
52921
|
}[];
|
|
52679
52922
|
} | null | undefined;
|
|
52680
52923
|
imageAlt?: string | null | undefined;
|
|
52924
|
+
openLightbox?: boolean | null | undefined;
|
|
52925
|
+
isBordered?: boolean | null | undefined;
|
|
52681
52926
|
numberOfColumns?: number | null | undefined;
|
|
52682
52927
|
itemBackgroundColor?: {
|
|
52683
52928
|
value: string;
|
|
@@ -52767,6 +53012,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52767
53012
|
imageAlt?: string | null | undefined;
|
|
52768
53013
|
imageCaption?: string | null | undefined;
|
|
52769
53014
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53015
|
+
openLightbox?: boolean | null | undefined;
|
|
53016
|
+
isBordered?: boolean | null | undefined;
|
|
52770
53017
|
} | null | undefined;
|
|
52771
53018
|
customBlockKey?: string | null | undefined;
|
|
52772
53019
|
customBlockProperties?: {
|
|
@@ -52784,6 +53031,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52784
53031
|
backgroundColor?: {
|
|
52785
53032
|
value: string;
|
|
52786
53033
|
} | null | undefined;
|
|
53034
|
+
previewContainerHeight?: number | null | undefined;
|
|
52787
53035
|
} | null | undefined;
|
|
52788
53036
|
figmaFrames?: {
|
|
52789
53037
|
persistentId: string;
|
|
@@ -52844,10 +53092,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52844
53092
|
selectedThemeIds: string[];
|
|
52845
53093
|
}[] | null | undefined;
|
|
52846
53094
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
53095
|
+
tokenBlockConfig?: {
|
|
53096
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
53097
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
53098
|
+
} | null | undefined;
|
|
53099
|
+
assetBlockConfig?: {
|
|
53100
|
+
showSearch?: boolean | null | undefined;
|
|
53101
|
+
showAssetDescription?: boolean | null | undefined;
|
|
53102
|
+
} | null | undefined;
|
|
52847
53103
|
figmaComponentsBlockConfig?: {
|
|
52848
53104
|
backgroundColor?: {
|
|
52849
53105
|
value: string;
|
|
52850
53106
|
} | null | undefined;
|
|
53107
|
+
previewContainerHeight?: number | null | undefined;
|
|
52851
53108
|
showComponentName?: boolean | null | undefined;
|
|
52852
53109
|
showComponentDescription?: boolean | null | undefined;
|
|
52853
53110
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -52923,6 +53180,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52923
53180
|
}[];
|
|
52924
53181
|
} | null | undefined;
|
|
52925
53182
|
imageAlt?: string | null | undefined;
|
|
53183
|
+
openLightbox?: boolean | null | undefined;
|
|
53184
|
+
isBordered?: boolean | null | undefined;
|
|
52926
53185
|
numberOfColumns?: number | null | undefined;
|
|
52927
53186
|
itemBackgroundColor?: {
|
|
52928
53187
|
value: string;
|
|
@@ -53012,6 +53271,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53012
53271
|
imageAlt?: string | null | undefined;
|
|
53013
53272
|
imageCaption?: string | null | undefined;
|
|
53014
53273
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53274
|
+
openLightbox?: boolean | null | undefined;
|
|
53275
|
+
isBordered?: boolean | null | undefined;
|
|
53015
53276
|
} | null | undefined;
|
|
53016
53277
|
customBlockKey?: string | null | undefined;
|
|
53017
53278
|
customBlockProperties?: {
|
|
@@ -53029,6 +53290,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53029
53290
|
backgroundColor?: {
|
|
53030
53291
|
value: string;
|
|
53031
53292
|
} | null | undefined;
|
|
53293
|
+
previewContainerHeight?: number | null | undefined;
|
|
53032
53294
|
} | null | undefined;
|
|
53033
53295
|
figmaFrames?: {
|
|
53034
53296
|
persistentId: string;
|
|
@@ -53089,10 +53351,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53089
53351
|
selectedThemeIds: string[];
|
|
53090
53352
|
}[] | null | undefined;
|
|
53091
53353
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
53354
|
+
tokenBlockConfig?: {
|
|
53355
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
53356
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
53357
|
+
} | null | undefined;
|
|
53358
|
+
assetBlockConfig?: {
|
|
53359
|
+
showSearch?: boolean | null | undefined;
|
|
53360
|
+
showAssetDescription?: boolean | null | undefined;
|
|
53361
|
+
} | null | undefined;
|
|
53092
53362
|
figmaComponentsBlockConfig?: {
|
|
53093
53363
|
backgroundColor?: {
|
|
53094
53364
|
value: string;
|
|
53095
53365
|
} | null | undefined;
|
|
53366
|
+
previewContainerHeight?: number | null | undefined;
|
|
53096
53367
|
showComponentName?: boolean | null | undefined;
|
|
53097
53368
|
showComponentDescription?: boolean | null | undefined;
|
|
53098
53369
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -53333,6 +53604,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53333
53604
|
}[];
|
|
53334
53605
|
} | null | undefined;
|
|
53335
53606
|
imageAlt?: string | null | undefined;
|
|
53607
|
+
openLightbox?: boolean | null | undefined;
|
|
53608
|
+
isBordered?: boolean | null | undefined;
|
|
53336
53609
|
numberOfColumns?: number | null | undefined;
|
|
53337
53610
|
itemBackgroundColor?: {
|
|
53338
53611
|
value: string;
|
|
@@ -53422,6 +53695,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53422
53695
|
imageAlt?: string | null | undefined;
|
|
53423
53696
|
imageCaption?: string | null | undefined;
|
|
53424
53697
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53698
|
+
openLightbox?: boolean | null | undefined;
|
|
53699
|
+
isBordered?: boolean | null | undefined;
|
|
53425
53700
|
} | null | undefined;
|
|
53426
53701
|
customBlockKey?: string | null | undefined;
|
|
53427
53702
|
customBlockProperties?: {
|
|
@@ -53439,6 +53714,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53439
53714
|
backgroundColor?: {
|
|
53440
53715
|
value: string;
|
|
53441
53716
|
} | null | undefined;
|
|
53717
|
+
previewContainerHeight?: number | null | undefined;
|
|
53442
53718
|
} | null | undefined;
|
|
53443
53719
|
figmaFrames?: {
|
|
53444
53720
|
persistentId: string;
|
|
@@ -53499,10 +53775,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53499
53775
|
selectedThemeIds: string[];
|
|
53500
53776
|
}[] | null | undefined;
|
|
53501
53777
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
53778
|
+
tokenBlockConfig?: {
|
|
53779
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
53780
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
53781
|
+
} | null | undefined;
|
|
53782
|
+
assetBlockConfig?: {
|
|
53783
|
+
showSearch?: boolean | null | undefined;
|
|
53784
|
+
showAssetDescription?: boolean | null | undefined;
|
|
53785
|
+
} | null | undefined;
|
|
53502
53786
|
figmaComponentsBlockConfig?: {
|
|
53503
53787
|
backgroundColor?: {
|
|
53504
53788
|
value: string;
|
|
53505
53789
|
} | null | undefined;
|
|
53790
|
+
previewContainerHeight?: number | null | undefined;
|
|
53506
53791
|
showComponentName?: boolean | null | undefined;
|
|
53507
53792
|
showComponentDescription?: boolean | null | undefined;
|
|
53508
53793
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -53578,6 +53863,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53578
53863
|
}[];
|
|
53579
53864
|
} | null | undefined;
|
|
53580
53865
|
imageAlt?: string | null | undefined;
|
|
53866
|
+
openLightbox?: boolean | null | undefined;
|
|
53867
|
+
isBordered?: boolean | null | undefined;
|
|
53581
53868
|
numberOfColumns?: number | null | undefined;
|
|
53582
53869
|
itemBackgroundColor?: {
|
|
53583
53870
|
value: string;
|
|
@@ -53667,6 +53954,8 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53667
53954
|
imageAlt?: string | null | undefined;
|
|
53668
53955
|
imageCaption?: string | null | undefined;
|
|
53669
53956
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53957
|
+
openLightbox?: boolean | null | undefined;
|
|
53958
|
+
isBordered?: boolean | null | undefined;
|
|
53670
53959
|
} | null | undefined;
|
|
53671
53960
|
customBlockKey?: string | null | undefined;
|
|
53672
53961
|
customBlockProperties?: {
|
|
@@ -53684,6 +53973,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53684
53973
|
backgroundColor?: {
|
|
53685
53974
|
value: string;
|
|
53686
53975
|
} | null | undefined;
|
|
53976
|
+
previewContainerHeight?: number | null | undefined;
|
|
53687
53977
|
} | null | undefined;
|
|
53688
53978
|
figmaFrames?: {
|
|
53689
53979
|
persistentId: string;
|
|
@@ -53744,10 +54034,19 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53744
54034
|
selectedThemeIds: string[];
|
|
53745
54035
|
}[] | null | undefined;
|
|
53746
54036
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
54037
|
+
tokenBlockConfig?: {
|
|
54038
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
54039
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
54040
|
+
} | null | undefined;
|
|
54041
|
+
assetBlockConfig?: {
|
|
54042
|
+
showSearch?: boolean | null | undefined;
|
|
54043
|
+
showAssetDescription?: boolean | null | undefined;
|
|
54044
|
+
} | null | undefined;
|
|
53747
54045
|
figmaComponentsBlockConfig?: {
|
|
53748
54046
|
backgroundColor?: {
|
|
53749
54047
|
value: string;
|
|
53750
54048
|
} | null | undefined;
|
|
54049
|
+
previewContainerHeight?: number | null | undefined;
|
|
53751
54050
|
showComponentName?: boolean | null | undefined;
|
|
53752
54051
|
showComponentDescription?: boolean | null | undefined;
|
|
53753
54052
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -54883,6 +55182,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54883
55182
|
}[];
|
|
54884
55183
|
} | null | undefined;
|
|
54885
55184
|
imageAlt?: string | null | undefined;
|
|
55185
|
+
openLightbox?: boolean | null | undefined;
|
|
55186
|
+
isBordered?: boolean | null | undefined;
|
|
54886
55187
|
numberOfColumns?: number | null | undefined;
|
|
54887
55188
|
itemBackgroundColor?: {
|
|
54888
55189
|
value: string;
|
|
@@ -54972,6 +55273,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54972
55273
|
imageAlt?: string | null | undefined;
|
|
54973
55274
|
imageCaption?: string | null | undefined;
|
|
54974
55275
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
55276
|
+
openLightbox?: boolean | null | undefined;
|
|
55277
|
+
isBordered?: boolean | null | undefined;
|
|
54975
55278
|
} | null | undefined;
|
|
54976
55279
|
customBlockKey?: string | null | undefined;
|
|
54977
55280
|
customBlockProperties?: {
|
|
@@ -54989,6 +55292,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54989
55292
|
backgroundColor?: {
|
|
54990
55293
|
value: string;
|
|
54991
55294
|
} | null | undefined;
|
|
55295
|
+
previewContainerHeight?: number | null | undefined;
|
|
54992
55296
|
} | null | undefined;
|
|
54993
55297
|
figmaFrames?: {
|
|
54994
55298
|
persistentId: string;
|
|
@@ -55049,10 +55353,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55049
55353
|
selectedThemeIds: string[];
|
|
55050
55354
|
}[] | null | undefined;
|
|
55051
55355
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
55356
|
+
tokenBlockConfig?: {
|
|
55357
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
55358
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
55359
|
+
} | null | undefined;
|
|
55360
|
+
assetBlockConfig?: {
|
|
55361
|
+
showSearch?: boolean | null | undefined;
|
|
55362
|
+
showAssetDescription?: boolean | null | undefined;
|
|
55363
|
+
} | null | undefined;
|
|
55052
55364
|
figmaComponentsBlockConfig?: {
|
|
55053
55365
|
backgroundColor?: {
|
|
55054
55366
|
value: string;
|
|
55055
55367
|
} | null | undefined;
|
|
55368
|
+
previewContainerHeight?: number | null | undefined;
|
|
55056
55369
|
showComponentName?: boolean | null | undefined;
|
|
55057
55370
|
showComponentDescription?: boolean | null | undefined;
|
|
55058
55371
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -55128,6 +55441,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55128
55441
|
}[];
|
|
55129
55442
|
} | null | undefined;
|
|
55130
55443
|
imageAlt?: string | null | undefined;
|
|
55444
|
+
openLightbox?: boolean | null | undefined;
|
|
55445
|
+
isBordered?: boolean | null | undefined;
|
|
55131
55446
|
numberOfColumns?: number | null | undefined;
|
|
55132
55447
|
itemBackgroundColor?: {
|
|
55133
55448
|
value: string;
|
|
@@ -55217,6 +55532,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55217
55532
|
imageAlt?: string | null | undefined;
|
|
55218
55533
|
imageCaption?: string | null | undefined;
|
|
55219
55534
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
55535
|
+
openLightbox?: boolean | null | undefined;
|
|
55536
|
+
isBordered?: boolean | null | undefined;
|
|
55220
55537
|
} | null | undefined;
|
|
55221
55538
|
customBlockKey?: string | null | undefined;
|
|
55222
55539
|
customBlockProperties?: {
|
|
@@ -55234,6 +55551,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55234
55551
|
backgroundColor?: {
|
|
55235
55552
|
value: string;
|
|
55236
55553
|
} | null | undefined;
|
|
55554
|
+
previewContainerHeight?: number | null | undefined;
|
|
55237
55555
|
} | null | undefined;
|
|
55238
55556
|
figmaFrames?: {
|
|
55239
55557
|
persistentId: string;
|
|
@@ -55294,10 +55612,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55294
55612
|
selectedThemeIds: string[];
|
|
55295
55613
|
}[] | null | undefined;
|
|
55296
55614
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
55615
|
+
tokenBlockConfig?: {
|
|
55616
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
55617
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
55618
|
+
} | null | undefined;
|
|
55619
|
+
assetBlockConfig?: {
|
|
55620
|
+
showSearch?: boolean | null | undefined;
|
|
55621
|
+
showAssetDescription?: boolean | null | undefined;
|
|
55622
|
+
} | null | undefined;
|
|
55297
55623
|
figmaComponentsBlockConfig?: {
|
|
55298
55624
|
backgroundColor?: {
|
|
55299
55625
|
value: string;
|
|
55300
55626
|
} | null | undefined;
|
|
55627
|
+
previewContainerHeight?: number | null | undefined;
|
|
55301
55628
|
showComponentName?: boolean | null | undefined;
|
|
55302
55629
|
showComponentDescription?: boolean | null | undefined;
|
|
55303
55630
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -55441,6 +55768,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55441
55768
|
}[];
|
|
55442
55769
|
} | null | undefined;
|
|
55443
55770
|
imageAlt?: string | null | undefined;
|
|
55771
|
+
openLightbox?: boolean | null | undefined;
|
|
55772
|
+
isBordered?: boolean | null | undefined;
|
|
55444
55773
|
numberOfColumns?: number | null | undefined;
|
|
55445
55774
|
itemBackgroundColor?: {
|
|
55446
55775
|
value: string;
|
|
@@ -55530,6 +55859,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55530
55859
|
imageAlt?: string | null | undefined;
|
|
55531
55860
|
imageCaption?: string | null | undefined;
|
|
55532
55861
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
55862
|
+
openLightbox?: boolean | null | undefined;
|
|
55863
|
+
isBordered?: boolean | null | undefined;
|
|
55533
55864
|
} | null | undefined;
|
|
55534
55865
|
customBlockKey?: string | null | undefined;
|
|
55535
55866
|
customBlockProperties?: {
|
|
@@ -55547,6 +55878,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55547
55878
|
backgroundColor?: {
|
|
55548
55879
|
value: string;
|
|
55549
55880
|
} | null | undefined;
|
|
55881
|
+
previewContainerHeight?: number | null | undefined;
|
|
55550
55882
|
} | null | undefined;
|
|
55551
55883
|
figmaFrames?: {
|
|
55552
55884
|
persistentId: string;
|
|
@@ -55607,10 +55939,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55607
55939
|
selectedThemeIds: string[];
|
|
55608
55940
|
}[] | null | undefined;
|
|
55609
55941
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
55942
|
+
tokenBlockConfig?: {
|
|
55943
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
55944
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
55945
|
+
} | null | undefined;
|
|
55946
|
+
assetBlockConfig?: {
|
|
55947
|
+
showSearch?: boolean | null | undefined;
|
|
55948
|
+
showAssetDescription?: boolean | null | undefined;
|
|
55949
|
+
} | null | undefined;
|
|
55610
55950
|
figmaComponentsBlockConfig?: {
|
|
55611
55951
|
backgroundColor?: {
|
|
55612
55952
|
value: string;
|
|
55613
55953
|
} | null | undefined;
|
|
55954
|
+
previewContainerHeight?: number | null | undefined;
|
|
55614
55955
|
showComponentName?: boolean | null | undefined;
|
|
55615
55956
|
showComponentDescription?: boolean | null | undefined;
|
|
55616
55957
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -55686,6 +56027,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55686
56027
|
}[];
|
|
55687
56028
|
} | null | undefined;
|
|
55688
56029
|
imageAlt?: string | null | undefined;
|
|
56030
|
+
openLightbox?: boolean | null | undefined;
|
|
56031
|
+
isBordered?: boolean | null | undefined;
|
|
55689
56032
|
numberOfColumns?: number | null | undefined;
|
|
55690
56033
|
itemBackgroundColor?: {
|
|
55691
56034
|
value: string;
|
|
@@ -55775,6 +56118,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55775
56118
|
imageAlt?: string | null | undefined;
|
|
55776
56119
|
imageCaption?: string | null | undefined;
|
|
55777
56120
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
56121
|
+
openLightbox?: boolean | null | undefined;
|
|
56122
|
+
isBordered?: boolean | null | undefined;
|
|
55778
56123
|
} | null | undefined;
|
|
55779
56124
|
customBlockKey?: string | null | undefined;
|
|
55780
56125
|
customBlockProperties?: {
|
|
@@ -55792,6 +56137,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55792
56137
|
backgroundColor?: {
|
|
55793
56138
|
value: string;
|
|
55794
56139
|
} | null | undefined;
|
|
56140
|
+
previewContainerHeight?: number | null | undefined;
|
|
55795
56141
|
} | null | undefined;
|
|
55796
56142
|
figmaFrames?: {
|
|
55797
56143
|
persistentId: string;
|
|
@@ -55852,10 +56198,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55852
56198
|
selectedThemeIds: string[];
|
|
55853
56199
|
}[] | null | undefined;
|
|
55854
56200
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
56201
|
+
tokenBlockConfig?: {
|
|
56202
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
56203
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
56204
|
+
} | null | undefined;
|
|
56205
|
+
assetBlockConfig?: {
|
|
56206
|
+
showSearch?: boolean | null | undefined;
|
|
56207
|
+
showAssetDescription?: boolean | null | undefined;
|
|
56208
|
+
} | null | undefined;
|
|
55855
56209
|
figmaComponentsBlockConfig?: {
|
|
55856
56210
|
backgroundColor?: {
|
|
55857
56211
|
value: string;
|
|
55858
56212
|
} | null | undefined;
|
|
56213
|
+
previewContainerHeight?: number | null | undefined;
|
|
55859
56214
|
showComponentName?: boolean | null | undefined;
|
|
55860
56215
|
showComponentDescription?: boolean | null | undefined;
|
|
55861
56216
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -56022,6 +56377,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56022
56377
|
}[];
|
|
56023
56378
|
} | null | undefined;
|
|
56024
56379
|
imageAlt?: string | null | undefined;
|
|
56380
|
+
openLightbox?: boolean | null | undefined;
|
|
56381
|
+
isBordered?: boolean | null | undefined;
|
|
56025
56382
|
numberOfColumns?: number | null | undefined;
|
|
56026
56383
|
itemBackgroundColor?: {
|
|
56027
56384
|
value: string;
|
|
@@ -56111,6 +56468,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56111
56468
|
imageAlt?: string | null | undefined;
|
|
56112
56469
|
imageCaption?: string | null | undefined;
|
|
56113
56470
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
56471
|
+
openLightbox?: boolean | null | undefined;
|
|
56472
|
+
isBordered?: boolean | null | undefined;
|
|
56114
56473
|
} | null | undefined;
|
|
56115
56474
|
customBlockKey?: string | null | undefined;
|
|
56116
56475
|
customBlockProperties?: {
|
|
@@ -56128,6 +56487,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56128
56487
|
backgroundColor?: {
|
|
56129
56488
|
value: string;
|
|
56130
56489
|
} | null | undefined;
|
|
56490
|
+
previewContainerHeight?: number | null | undefined;
|
|
56131
56491
|
} | null | undefined;
|
|
56132
56492
|
figmaFrames?: {
|
|
56133
56493
|
persistentId: string;
|
|
@@ -56188,10 +56548,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56188
56548
|
selectedThemeIds: string[];
|
|
56189
56549
|
}[] | null | undefined;
|
|
56190
56550
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
56551
|
+
tokenBlockConfig?: {
|
|
56552
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
56553
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
56554
|
+
} | null | undefined;
|
|
56555
|
+
assetBlockConfig?: {
|
|
56556
|
+
showSearch?: boolean | null | undefined;
|
|
56557
|
+
showAssetDescription?: boolean | null | undefined;
|
|
56558
|
+
} | null | undefined;
|
|
56191
56559
|
figmaComponentsBlockConfig?: {
|
|
56192
56560
|
backgroundColor?: {
|
|
56193
56561
|
value: string;
|
|
56194
56562
|
} | null | undefined;
|
|
56563
|
+
previewContainerHeight?: number | null | undefined;
|
|
56195
56564
|
showComponentName?: boolean | null | undefined;
|
|
56196
56565
|
showComponentDescription?: boolean | null | undefined;
|
|
56197
56566
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -56267,6 +56636,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56267
56636
|
}[];
|
|
56268
56637
|
} | null | undefined;
|
|
56269
56638
|
imageAlt?: string | null | undefined;
|
|
56639
|
+
openLightbox?: boolean | null | undefined;
|
|
56640
|
+
isBordered?: boolean | null | undefined;
|
|
56270
56641
|
numberOfColumns?: number | null | undefined;
|
|
56271
56642
|
itemBackgroundColor?: {
|
|
56272
56643
|
value: string;
|
|
@@ -56356,6 +56727,8 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56356
56727
|
imageAlt?: string | null | undefined;
|
|
56357
56728
|
imageCaption?: string | null | undefined;
|
|
56358
56729
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
56730
|
+
openLightbox?: boolean | null | undefined;
|
|
56731
|
+
isBordered?: boolean | null | undefined;
|
|
56359
56732
|
} | null | undefined;
|
|
56360
56733
|
customBlockKey?: string | null | undefined;
|
|
56361
56734
|
customBlockProperties?: {
|
|
@@ -56373,6 +56746,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56373
56746
|
backgroundColor?: {
|
|
56374
56747
|
value: string;
|
|
56375
56748
|
} | null | undefined;
|
|
56749
|
+
previewContainerHeight?: number | null | undefined;
|
|
56376
56750
|
} | null | undefined;
|
|
56377
56751
|
figmaFrames?: {
|
|
56378
56752
|
persistentId: string;
|
|
@@ -56433,10 +56807,19 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
56433
56807
|
selectedThemeIds: string[];
|
|
56434
56808
|
}[] | null | undefined;
|
|
56435
56809
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
56810
|
+
tokenBlockConfig?: {
|
|
56811
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
56812
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
56813
|
+
} | null | undefined;
|
|
56814
|
+
assetBlockConfig?: {
|
|
56815
|
+
showSearch?: boolean | null | undefined;
|
|
56816
|
+
showAssetDescription?: boolean | null | undefined;
|
|
56817
|
+
} | null | undefined;
|
|
56436
56818
|
figmaComponentsBlockConfig?: {
|
|
56437
56819
|
backgroundColor?: {
|
|
56438
56820
|
value: string;
|
|
56439
56821
|
} | null | undefined;
|
|
56822
|
+
previewContainerHeight?: number | null | undefined;
|
|
56440
56823
|
showComponentName?: boolean | null | undefined;
|
|
56441
56824
|
showComponentDescription?: boolean | null | undefined;
|
|
56442
56825
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -75265,6 +75648,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75265
75648
|
}[];
|
|
75266
75649
|
} | null | undefined;
|
|
75267
75650
|
imageAlt?: string | null | undefined;
|
|
75651
|
+
openLightbox?: boolean | null | undefined;
|
|
75652
|
+
isBordered?: boolean | null | undefined;
|
|
75268
75653
|
numberOfColumns?: number | null | undefined;
|
|
75269
75654
|
itemBackgroundColor?: {
|
|
75270
75655
|
value: string;
|
|
@@ -75354,6 +75739,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75354
75739
|
imageAlt?: string | null | undefined;
|
|
75355
75740
|
imageCaption?: string | null | undefined;
|
|
75356
75741
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
75742
|
+
openLightbox?: boolean | null | undefined;
|
|
75743
|
+
isBordered?: boolean | null | undefined;
|
|
75357
75744
|
} | null | undefined;
|
|
75358
75745
|
customBlockKey?: string | null | undefined;
|
|
75359
75746
|
customBlockProperties?: {
|
|
@@ -75371,6 +75758,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75371
75758
|
backgroundColor?: {
|
|
75372
75759
|
value: string;
|
|
75373
75760
|
} | null | undefined;
|
|
75761
|
+
previewContainerHeight?: number | null | undefined;
|
|
75374
75762
|
} | null | undefined;
|
|
75375
75763
|
figmaFrames?: {
|
|
75376
75764
|
persistentId: string;
|
|
@@ -75431,10 +75819,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75431
75819
|
selectedThemeIds: string[];
|
|
75432
75820
|
}[] | null | undefined;
|
|
75433
75821
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
75822
|
+
tokenBlockConfig?: {
|
|
75823
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
75824
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
75825
|
+
} | null | undefined;
|
|
75826
|
+
assetBlockConfig?: {
|
|
75827
|
+
showSearch?: boolean | null | undefined;
|
|
75828
|
+
showAssetDescription?: boolean | null | undefined;
|
|
75829
|
+
} | null | undefined;
|
|
75434
75830
|
figmaComponentsBlockConfig?: {
|
|
75435
75831
|
backgroundColor?: {
|
|
75436
75832
|
value: string;
|
|
75437
75833
|
} | null | undefined;
|
|
75834
|
+
previewContainerHeight?: number | null | undefined;
|
|
75438
75835
|
showComponentName?: boolean | null | undefined;
|
|
75439
75836
|
showComponentDescription?: boolean | null | undefined;
|
|
75440
75837
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -75510,6 +75907,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75510
75907
|
}[];
|
|
75511
75908
|
} | null | undefined;
|
|
75512
75909
|
imageAlt?: string | null | undefined;
|
|
75910
|
+
openLightbox?: boolean | null | undefined;
|
|
75911
|
+
isBordered?: boolean | null | undefined;
|
|
75513
75912
|
numberOfColumns?: number | null | undefined;
|
|
75514
75913
|
itemBackgroundColor?: {
|
|
75515
75914
|
value: string;
|
|
@@ -75599,6 +75998,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75599
75998
|
imageAlt?: string | null | undefined;
|
|
75600
75999
|
imageCaption?: string | null | undefined;
|
|
75601
76000
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
76001
|
+
openLightbox?: boolean | null | undefined;
|
|
76002
|
+
isBordered?: boolean | null | undefined;
|
|
75602
76003
|
} | null | undefined;
|
|
75603
76004
|
customBlockKey?: string | null | undefined;
|
|
75604
76005
|
customBlockProperties?: {
|
|
@@ -75616,6 +76017,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75616
76017
|
backgroundColor?: {
|
|
75617
76018
|
value: string;
|
|
75618
76019
|
} | null | undefined;
|
|
76020
|
+
previewContainerHeight?: number | null | undefined;
|
|
75619
76021
|
} | null | undefined;
|
|
75620
76022
|
figmaFrames?: {
|
|
75621
76023
|
persistentId: string;
|
|
@@ -75676,10 +76078,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75676
76078
|
selectedThemeIds: string[];
|
|
75677
76079
|
}[] | null | undefined;
|
|
75678
76080
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
76081
|
+
tokenBlockConfig?: {
|
|
76082
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
76083
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
76084
|
+
} | null | undefined;
|
|
76085
|
+
assetBlockConfig?: {
|
|
76086
|
+
showSearch?: boolean | null | undefined;
|
|
76087
|
+
showAssetDescription?: boolean | null | undefined;
|
|
76088
|
+
} | null | undefined;
|
|
75679
76089
|
figmaComponentsBlockConfig?: {
|
|
75680
76090
|
backgroundColor?: {
|
|
75681
76091
|
value: string;
|
|
75682
76092
|
} | null | undefined;
|
|
76093
|
+
previewContainerHeight?: number | null | undefined;
|
|
75683
76094
|
showComponentName?: boolean | null | undefined;
|
|
75684
76095
|
showComponentDescription?: boolean | null | undefined;
|
|
75685
76096
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -75823,6 +76234,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75823
76234
|
}[];
|
|
75824
76235
|
} | null | undefined;
|
|
75825
76236
|
imageAlt?: string | null | undefined;
|
|
76237
|
+
openLightbox?: boolean | null | undefined;
|
|
76238
|
+
isBordered?: boolean | null | undefined;
|
|
75826
76239
|
numberOfColumns?: number | null | undefined;
|
|
75827
76240
|
itemBackgroundColor?: {
|
|
75828
76241
|
value: string;
|
|
@@ -75912,6 +76325,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75912
76325
|
imageAlt?: string | null | undefined;
|
|
75913
76326
|
imageCaption?: string | null | undefined;
|
|
75914
76327
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
76328
|
+
openLightbox?: boolean | null | undefined;
|
|
76329
|
+
isBordered?: boolean | null | undefined;
|
|
75915
76330
|
} | null | undefined;
|
|
75916
76331
|
customBlockKey?: string | null | undefined;
|
|
75917
76332
|
customBlockProperties?: {
|
|
@@ -75929,6 +76344,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75929
76344
|
backgroundColor?: {
|
|
75930
76345
|
value: string;
|
|
75931
76346
|
} | null | undefined;
|
|
76347
|
+
previewContainerHeight?: number | null | undefined;
|
|
75932
76348
|
} | null | undefined;
|
|
75933
76349
|
figmaFrames?: {
|
|
75934
76350
|
persistentId: string;
|
|
@@ -75989,10 +76405,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75989
76405
|
selectedThemeIds: string[];
|
|
75990
76406
|
}[] | null | undefined;
|
|
75991
76407
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
76408
|
+
tokenBlockConfig?: {
|
|
76409
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
76410
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
76411
|
+
} | null | undefined;
|
|
76412
|
+
assetBlockConfig?: {
|
|
76413
|
+
showSearch?: boolean | null | undefined;
|
|
76414
|
+
showAssetDescription?: boolean | null | undefined;
|
|
76415
|
+
} | null | undefined;
|
|
75992
76416
|
figmaComponentsBlockConfig?: {
|
|
75993
76417
|
backgroundColor?: {
|
|
75994
76418
|
value: string;
|
|
75995
76419
|
} | null | undefined;
|
|
76420
|
+
previewContainerHeight?: number | null | undefined;
|
|
75996
76421
|
showComponentName?: boolean | null | undefined;
|
|
75997
76422
|
showComponentDescription?: boolean | null | undefined;
|
|
75998
76423
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -76068,6 +76493,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76068
76493
|
}[];
|
|
76069
76494
|
} | null | undefined;
|
|
76070
76495
|
imageAlt?: string | null | undefined;
|
|
76496
|
+
openLightbox?: boolean | null | undefined;
|
|
76497
|
+
isBordered?: boolean | null | undefined;
|
|
76071
76498
|
numberOfColumns?: number | null | undefined;
|
|
76072
76499
|
itemBackgroundColor?: {
|
|
76073
76500
|
value: string;
|
|
@@ -76157,6 +76584,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76157
76584
|
imageAlt?: string | null | undefined;
|
|
76158
76585
|
imageCaption?: string | null | undefined;
|
|
76159
76586
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
76587
|
+
openLightbox?: boolean | null | undefined;
|
|
76588
|
+
isBordered?: boolean | null | undefined;
|
|
76160
76589
|
} | null | undefined;
|
|
76161
76590
|
customBlockKey?: string | null | undefined;
|
|
76162
76591
|
customBlockProperties?: {
|
|
@@ -76174,6 +76603,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76174
76603
|
backgroundColor?: {
|
|
76175
76604
|
value: string;
|
|
76176
76605
|
} | null | undefined;
|
|
76606
|
+
previewContainerHeight?: number | null | undefined;
|
|
76177
76607
|
} | null | undefined;
|
|
76178
76608
|
figmaFrames?: {
|
|
76179
76609
|
persistentId: string;
|
|
@@ -76234,10 +76664,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76234
76664
|
selectedThemeIds: string[];
|
|
76235
76665
|
}[] | null | undefined;
|
|
76236
76666
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
76667
|
+
tokenBlockConfig?: {
|
|
76668
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
76669
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
76670
|
+
} | null | undefined;
|
|
76671
|
+
assetBlockConfig?: {
|
|
76672
|
+
showSearch?: boolean | null | undefined;
|
|
76673
|
+
showAssetDescription?: boolean | null | undefined;
|
|
76674
|
+
} | null | undefined;
|
|
76237
76675
|
figmaComponentsBlockConfig?: {
|
|
76238
76676
|
backgroundColor?: {
|
|
76239
76677
|
value: string;
|
|
76240
76678
|
} | null | undefined;
|
|
76679
|
+
previewContainerHeight?: number | null | undefined;
|
|
76241
76680
|
showComponentName?: boolean | null | undefined;
|
|
76242
76681
|
showComponentDescription?: boolean | null | undefined;
|
|
76243
76682
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -76404,6 +76843,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76404
76843
|
}[];
|
|
76405
76844
|
} | null | undefined;
|
|
76406
76845
|
imageAlt?: string | null | undefined;
|
|
76846
|
+
openLightbox?: boolean | null | undefined;
|
|
76847
|
+
isBordered?: boolean | null | undefined;
|
|
76407
76848
|
numberOfColumns?: number | null | undefined;
|
|
76408
76849
|
itemBackgroundColor?: {
|
|
76409
76850
|
value: string;
|
|
@@ -76493,6 +76934,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76493
76934
|
imageAlt?: string | null | undefined;
|
|
76494
76935
|
imageCaption?: string | null | undefined;
|
|
76495
76936
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
76937
|
+
openLightbox?: boolean | null | undefined;
|
|
76938
|
+
isBordered?: boolean | null | undefined;
|
|
76496
76939
|
} | null | undefined;
|
|
76497
76940
|
customBlockKey?: string | null | undefined;
|
|
76498
76941
|
customBlockProperties?: {
|
|
@@ -76510,6 +76953,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76510
76953
|
backgroundColor?: {
|
|
76511
76954
|
value: string;
|
|
76512
76955
|
} | null | undefined;
|
|
76956
|
+
previewContainerHeight?: number | null | undefined;
|
|
76513
76957
|
} | null | undefined;
|
|
76514
76958
|
figmaFrames?: {
|
|
76515
76959
|
persistentId: string;
|
|
@@ -76570,10 +77014,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76570
77014
|
selectedThemeIds: string[];
|
|
76571
77015
|
}[] | null | undefined;
|
|
76572
77016
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
77017
|
+
tokenBlockConfig?: {
|
|
77018
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
77019
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
77020
|
+
} | null | undefined;
|
|
77021
|
+
assetBlockConfig?: {
|
|
77022
|
+
showSearch?: boolean | null | undefined;
|
|
77023
|
+
showAssetDescription?: boolean | null | undefined;
|
|
77024
|
+
} | null | undefined;
|
|
76573
77025
|
figmaComponentsBlockConfig?: {
|
|
76574
77026
|
backgroundColor?: {
|
|
76575
77027
|
value: string;
|
|
76576
77028
|
} | null | undefined;
|
|
77029
|
+
previewContainerHeight?: number | null | undefined;
|
|
76577
77030
|
showComponentName?: boolean | null | undefined;
|
|
76578
77031
|
showComponentDescription?: boolean | null | undefined;
|
|
76579
77032
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -76649,6 +77102,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76649
77102
|
}[];
|
|
76650
77103
|
} | null | undefined;
|
|
76651
77104
|
imageAlt?: string | null | undefined;
|
|
77105
|
+
openLightbox?: boolean | null | undefined;
|
|
77106
|
+
isBordered?: boolean | null | undefined;
|
|
76652
77107
|
numberOfColumns?: number | null | undefined;
|
|
76653
77108
|
itemBackgroundColor?: {
|
|
76654
77109
|
value: string;
|
|
@@ -76738,6 +77193,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76738
77193
|
imageAlt?: string | null | undefined;
|
|
76739
77194
|
imageCaption?: string | null | undefined;
|
|
76740
77195
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
77196
|
+
openLightbox?: boolean | null | undefined;
|
|
77197
|
+
isBordered?: boolean | null | undefined;
|
|
76741
77198
|
} | null | undefined;
|
|
76742
77199
|
customBlockKey?: string | null | undefined;
|
|
76743
77200
|
customBlockProperties?: {
|
|
@@ -76755,6 +77212,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76755
77212
|
backgroundColor?: {
|
|
76756
77213
|
value: string;
|
|
76757
77214
|
} | null | undefined;
|
|
77215
|
+
previewContainerHeight?: number | null | undefined;
|
|
76758
77216
|
} | null | undefined;
|
|
76759
77217
|
figmaFrames?: {
|
|
76760
77218
|
persistentId: string;
|
|
@@ -76815,10 +77273,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76815
77273
|
selectedThemeIds: string[];
|
|
76816
77274
|
}[] | null | undefined;
|
|
76817
77275
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
77276
|
+
tokenBlockConfig?: {
|
|
77277
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
77278
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
77279
|
+
} | null | undefined;
|
|
77280
|
+
assetBlockConfig?: {
|
|
77281
|
+
showSearch?: boolean | null | undefined;
|
|
77282
|
+
showAssetDescription?: boolean | null | undefined;
|
|
77283
|
+
} | null | undefined;
|
|
76818
77284
|
figmaComponentsBlockConfig?: {
|
|
76819
77285
|
backgroundColor?: {
|
|
76820
77286
|
value: string;
|
|
76821
77287
|
} | null | undefined;
|
|
77288
|
+
previewContainerHeight?: number | null | undefined;
|
|
76822
77289
|
showComponentName?: boolean | null | undefined;
|
|
76823
77290
|
showComponentDescription?: boolean | null | undefined;
|
|
76824
77291
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -77014,6 +77481,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77014
77481
|
}[];
|
|
77015
77482
|
} | null | undefined;
|
|
77016
77483
|
imageAlt?: string | null | undefined;
|
|
77484
|
+
openLightbox?: boolean | null | undefined;
|
|
77485
|
+
isBordered?: boolean | null | undefined;
|
|
77017
77486
|
numberOfColumns?: number | null | undefined;
|
|
77018
77487
|
itemBackgroundColor?: {
|
|
77019
77488
|
value: string;
|
|
@@ -77103,6 +77572,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77103
77572
|
imageAlt?: string | null | undefined;
|
|
77104
77573
|
imageCaption?: string | null | undefined;
|
|
77105
77574
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
77575
|
+
openLightbox?: boolean | null | undefined;
|
|
77576
|
+
isBordered?: boolean | null | undefined;
|
|
77106
77577
|
} | null | undefined;
|
|
77107
77578
|
customBlockKey?: string | null | undefined;
|
|
77108
77579
|
customBlockProperties?: {
|
|
@@ -77120,6 +77591,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77120
77591
|
backgroundColor?: {
|
|
77121
77592
|
value: string;
|
|
77122
77593
|
} | null | undefined;
|
|
77594
|
+
previewContainerHeight?: number | null | undefined;
|
|
77123
77595
|
} | null | undefined;
|
|
77124
77596
|
figmaFrames?: {
|
|
77125
77597
|
persistentId: string;
|
|
@@ -77180,10 +77652,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77180
77652
|
selectedThemeIds: string[];
|
|
77181
77653
|
}[] | null | undefined;
|
|
77182
77654
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
77655
|
+
tokenBlockConfig?: {
|
|
77656
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
77657
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
77658
|
+
} | null | undefined;
|
|
77659
|
+
assetBlockConfig?: {
|
|
77660
|
+
showSearch?: boolean | null | undefined;
|
|
77661
|
+
showAssetDescription?: boolean | null | undefined;
|
|
77662
|
+
} | null | undefined;
|
|
77183
77663
|
figmaComponentsBlockConfig?: {
|
|
77184
77664
|
backgroundColor?: {
|
|
77185
77665
|
value: string;
|
|
77186
77666
|
} | null | undefined;
|
|
77667
|
+
previewContainerHeight?: number | null | undefined;
|
|
77187
77668
|
showComponentName?: boolean | null | undefined;
|
|
77188
77669
|
showComponentDescription?: boolean | null | undefined;
|
|
77189
77670
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -77259,6 +77740,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77259
77740
|
}[];
|
|
77260
77741
|
} | null | undefined;
|
|
77261
77742
|
imageAlt?: string | null | undefined;
|
|
77743
|
+
openLightbox?: boolean | null | undefined;
|
|
77744
|
+
isBordered?: boolean | null | undefined;
|
|
77262
77745
|
numberOfColumns?: number | null | undefined;
|
|
77263
77746
|
itemBackgroundColor?: {
|
|
77264
77747
|
value: string;
|
|
@@ -77348,6 +77831,8 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77348
77831
|
imageAlt?: string | null | undefined;
|
|
77349
77832
|
imageCaption?: string | null | undefined;
|
|
77350
77833
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
77834
|
+
openLightbox?: boolean | null | undefined;
|
|
77835
|
+
isBordered?: boolean | null | undefined;
|
|
77351
77836
|
} | null | undefined;
|
|
77352
77837
|
customBlockKey?: string | null | undefined;
|
|
77353
77838
|
customBlockProperties?: {
|
|
@@ -77365,6 +77850,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77365
77850
|
backgroundColor?: {
|
|
77366
77851
|
value: string;
|
|
77367
77852
|
} | null | undefined;
|
|
77853
|
+
previewContainerHeight?: number | null | undefined;
|
|
77368
77854
|
} | null | undefined;
|
|
77369
77855
|
figmaFrames?: {
|
|
77370
77856
|
persistentId: string;
|
|
@@ -77425,10 +77911,19 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
77425
77911
|
selectedThemeIds: string[];
|
|
77426
77912
|
}[] | null | undefined;
|
|
77427
77913
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
77914
|
+
tokenBlockConfig?: {
|
|
77915
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
77916
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
77917
|
+
} | null | undefined;
|
|
77918
|
+
assetBlockConfig?: {
|
|
77919
|
+
showSearch?: boolean | null | undefined;
|
|
77920
|
+
showAssetDescription?: boolean | null | undefined;
|
|
77921
|
+
} | null | undefined;
|
|
77428
77922
|
figmaComponentsBlockConfig?: {
|
|
77429
77923
|
backgroundColor?: {
|
|
77430
77924
|
value: string;
|
|
77431
77925
|
} | null | undefined;
|
|
77926
|
+
previewContainerHeight?: number | null | undefined;
|
|
77432
77927
|
showComponentName?: boolean | null | undefined;
|
|
77433
77928
|
showComponentDescription?: boolean | null | undefined;
|
|
77434
77929
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -148472,6 +148967,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148472
148967
|
}[];
|
|
148473
148968
|
} | null | undefined;
|
|
148474
148969
|
imageAlt?: string | null | undefined;
|
|
148970
|
+
openLightbox?: boolean | null | undefined;
|
|
148971
|
+
isBordered?: boolean | null | undefined;
|
|
148475
148972
|
numberOfColumns?: number | null | undefined;
|
|
148476
148973
|
itemBackgroundColor?: {
|
|
148477
148974
|
value: string;
|
|
@@ -148561,6 +149058,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148561
149058
|
imageAlt?: string | null | undefined;
|
|
148562
149059
|
imageCaption?: string | null | undefined;
|
|
148563
149060
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149061
|
+
openLightbox?: boolean | null | undefined;
|
|
149062
|
+
isBordered?: boolean | null | undefined;
|
|
148564
149063
|
} | null | undefined;
|
|
148565
149064
|
customBlockKey?: string | null | undefined;
|
|
148566
149065
|
customBlockProperties?: {
|
|
@@ -148578,6 +149077,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148578
149077
|
backgroundColor?: {
|
|
148579
149078
|
value: string;
|
|
148580
149079
|
} | null | undefined;
|
|
149080
|
+
previewContainerHeight?: number | null | undefined;
|
|
148581
149081
|
} | null | undefined;
|
|
148582
149082
|
figmaFrames?: {
|
|
148583
149083
|
persistentId: string;
|
|
@@ -148638,10 +149138,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148638
149138
|
selectedThemeIds: string[];
|
|
148639
149139
|
}[] | null | undefined;
|
|
148640
149140
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149141
|
+
tokenBlockConfig?: {
|
|
149142
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
149143
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
149144
|
+
} | null | undefined;
|
|
149145
|
+
assetBlockConfig?: {
|
|
149146
|
+
showSearch?: boolean | null | undefined;
|
|
149147
|
+
showAssetDescription?: boolean | null | undefined;
|
|
149148
|
+
} | null | undefined;
|
|
148641
149149
|
figmaComponentsBlockConfig?: {
|
|
148642
149150
|
backgroundColor?: {
|
|
148643
149151
|
value: string;
|
|
148644
149152
|
} | null | undefined;
|
|
149153
|
+
previewContainerHeight?: number | null | undefined;
|
|
148645
149154
|
showComponentName?: boolean | null | undefined;
|
|
148646
149155
|
showComponentDescription?: boolean | null | undefined;
|
|
148647
149156
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -148717,6 +149226,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148717
149226
|
}[];
|
|
148718
149227
|
} | null | undefined;
|
|
148719
149228
|
imageAlt?: string | null | undefined;
|
|
149229
|
+
openLightbox?: boolean | null | undefined;
|
|
149230
|
+
isBordered?: boolean | null | undefined;
|
|
148720
149231
|
numberOfColumns?: number | null | undefined;
|
|
148721
149232
|
itemBackgroundColor?: {
|
|
148722
149233
|
value: string;
|
|
@@ -148806,6 +149317,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148806
149317
|
imageAlt?: string | null | undefined;
|
|
148807
149318
|
imageCaption?: string | null | undefined;
|
|
148808
149319
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149320
|
+
openLightbox?: boolean | null | undefined;
|
|
149321
|
+
isBordered?: boolean | null | undefined;
|
|
148809
149322
|
} | null | undefined;
|
|
148810
149323
|
customBlockKey?: string | null | undefined;
|
|
148811
149324
|
customBlockProperties?: {
|
|
@@ -148823,6 +149336,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148823
149336
|
backgroundColor?: {
|
|
148824
149337
|
value: string;
|
|
148825
149338
|
} | null | undefined;
|
|
149339
|
+
previewContainerHeight?: number | null | undefined;
|
|
148826
149340
|
} | null | undefined;
|
|
148827
149341
|
figmaFrames?: {
|
|
148828
149342
|
persistentId: string;
|
|
@@ -148883,10 +149397,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148883
149397
|
selectedThemeIds: string[];
|
|
148884
149398
|
}[] | null | undefined;
|
|
148885
149399
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149400
|
+
tokenBlockConfig?: {
|
|
149401
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
149402
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
149403
|
+
} | null | undefined;
|
|
149404
|
+
assetBlockConfig?: {
|
|
149405
|
+
showSearch?: boolean | null | undefined;
|
|
149406
|
+
showAssetDescription?: boolean | null | undefined;
|
|
149407
|
+
} | null | undefined;
|
|
148886
149408
|
figmaComponentsBlockConfig?: {
|
|
148887
149409
|
backgroundColor?: {
|
|
148888
149410
|
value: string;
|
|
148889
149411
|
} | null | undefined;
|
|
149412
|
+
previewContainerHeight?: number | null | undefined;
|
|
148890
149413
|
showComponentName?: boolean | null | undefined;
|
|
148891
149414
|
showComponentDescription?: boolean | null | undefined;
|
|
148892
149415
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -149030,6 +149553,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149030
149553
|
}[];
|
|
149031
149554
|
} | null | undefined;
|
|
149032
149555
|
imageAlt?: string | null | undefined;
|
|
149556
|
+
openLightbox?: boolean | null | undefined;
|
|
149557
|
+
isBordered?: boolean | null | undefined;
|
|
149033
149558
|
numberOfColumns?: number | null | undefined;
|
|
149034
149559
|
itemBackgroundColor?: {
|
|
149035
149560
|
value: string;
|
|
@@ -149119,6 +149644,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149119
149644
|
imageAlt?: string | null | undefined;
|
|
149120
149645
|
imageCaption?: string | null | undefined;
|
|
149121
149646
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149647
|
+
openLightbox?: boolean | null | undefined;
|
|
149648
|
+
isBordered?: boolean | null | undefined;
|
|
149122
149649
|
} | null | undefined;
|
|
149123
149650
|
customBlockKey?: string | null | undefined;
|
|
149124
149651
|
customBlockProperties?: {
|
|
@@ -149136,6 +149663,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149136
149663
|
backgroundColor?: {
|
|
149137
149664
|
value: string;
|
|
149138
149665
|
} | null | undefined;
|
|
149666
|
+
previewContainerHeight?: number | null | undefined;
|
|
149139
149667
|
} | null | undefined;
|
|
149140
149668
|
figmaFrames?: {
|
|
149141
149669
|
persistentId: string;
|
|
@@ -149196,10 +149724,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149196
149724
|
selectedThemeIds: string[];
|
|
149197
149725
|
}[] | null | undefined;
|
|
149198
149726
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149727
|
+
tokenBlockConfig?: {
|
|
149728
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
149729
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
149730
|
+
} | null | undefined;
|
|
149731
|
+
assetBlockConfig?: {
|
|
149732
|
+
showSearch?: boolean | null | undefined;
|
|
149733
|
+
showAssetDescription?: boolean | null | undefined;
|
|
149734
|
+
} | null | undefined;
|
|
149199
149735
|
figmaComponentsBlockConfig?: {
|
|
149200
149736
|
backgroundColor?: {
|
|
149201
149737
|
value: string;
|
|
149202
149738
|
} | null | undefined;
|
|
149739
|
+
previewContainerHeight?: number | null | undefined;
|
|
149203
149740
|
showComponentName?: boolean | null | undefined;
|
|
149204
149741
|
showComponentDescription?: boolean | null | undefined;
|
|
149205
149742
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -149275,6 +149812,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149275
149812
|
}[];
|
|
149276
149813
|
} | null | undefined;
|
|
149277
149814
|
imageAlt?: string | null | undefined;
|
|
149815
|
+
openLightbox?: boolean | null | undefined;
|
|
149816
|
+
isBordered?: boolean | null | undefined;
|
|
149278
149817
|
numberOfColumns?: number | null | undefined;
|
|
149279
149818
|
itemBackgroundColor?: {
|
|
149280
149819
|
value: string;
|
|
@@ -149364,6 +149903,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149364
149903
|
imageAlt?: string | null | undefined;
|
|
149365
149904
|
imageCaption?: string | null | undefined;
|
|
149366
149905
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149906
|
+
openLightbox?: boolean | null | undefined;
|
|
149907
|
+
isBordered?: boolean | null | undefined;
|
|
149367
149908
|
} | null | undefined;
|
|
149368
149909
|
customBlockKey?: string | null | undefined;
|
|
149369
149910
|
customBlockProperties?: {
|
|
@@ -149381,6 +149922,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149381
149922
|
backgroundColor?: {
|
|
149382
149923
|
value: string;
|
|
149383
149924
|
} | null | undefined;
|
|
149925
|
+
previewContainerHeight?: number | null | undefined;
|
|
149384
149926
|
} | null | undefined;
|
|
149385
149927
|
figmaFrames?: {
|
|
149386
149928
|
persistentId: string;
|
|
@@ -149441,10 +149983,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149441
149983
|
selectedThemeIds: string[];
|
|
149442
149984
|
}[] | null | undefined;
|
|
149443
149985
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149986
|
+
tokenBlockConfig?: {
|
|
149987
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
149988
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
149989
|
+
} | null | undefined;
|
|
149990
|
+
assetBlockConfig?: {
|
|
149991
|
+
showSearch?: boolean | null | undefined;
|
|
149992
|
+
showAssetDescription?: boolean | null | undefined;
|
|
149993
|
+
} | null | undefined;
|
|
149444
149994
|
figmaComponentsBlockConfig?: {
|
|
149445
149995
|
backgroundColor?: {
|
|
149446
149996
|
value: string;
|
|
149447
149997
|
} | null | undefined;
|
|
149998
|
+
previewContainerHeight?: number | null | undefined;
|
|
149448
149999
|
showComponentName?: boolean | null | undefined;
|
|
149449
150000
|
showComponentDescription?: boolean | null | undefined;
|
|
149450
150001
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -149611,6 +150162,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149611
150162
|
}[];
|
|
149612
150163
|
} | null | undefined;
|
|
149613
150164
|
imageAlt?: string | null | undefined;
|
|
150165
|
+
openLightbox?: boolean | null | undefined;
|
|
150166
|
+
isBordered?: boolean | null | undefined;
|
|
149614
150167
|
numberOfColumns?: number | null | undefined;
|
|
149615
150168
|
itemBackgroundColor?: {
|
|
149616
150169
|
value: string;
|
|
@@ -149700,6 +150253,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149700
150253
|
imageAlt?: string | null | undefined;
|
|
149701
150254
|
imageCaption?: string | null | undefined;
|
|
149702
150255
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150256
|
+
openLightbox?: boolean | null | undefined;
|
|
150257
|
+
isBordered?: boolean | null | undefined;
|
|
149703
150258
|
} | null | undefined;
|
|
149704
150259
|
customBlockKey?: string | null | undefined;
|
|
149705
150260
|
customBlockProperties?: {
|
|
@@ -149717,6 +150272,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149717
150272
|
backgroundColor?: {
|
|
149718
150273
|
value: string;
|
|
149719
150274
|
} | null | undefined;
|
|
150275
|
+
previewContainerHeight?: number | null | undefined;
|
|
149720
150276
|
} | null | undefined;
|
|
149721
150277
|
figmaFrames?: {
|
|
149722
150278
|
persistentId: string;
|
|
@@ -149777,10 +150333,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149777
150333
|
selectedThemeIds: string[];
|
|
149778
150334
|
}[] | null | undefined;
|
|
149779
150335
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
150336
|
+
tokenBlockConfig?: {
|
|
150337
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
150338
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
150339
|
+
} | null | undefined;
|
|
150340
|
+
assetBlockConfig?: {
|
|
150341
|
+
showSearch?: boolean | null | undefined;
|
|
150342
|
+
showAssetDescription?: boolean | null | undefined;
|
|
150343
|
+
} | null | undefined;
|
|
149780
150344
|
figmaComponentsBlockConfig?: {
|
|
149781
150345
|
backgroundColor?: {
|
|
149782
150346
|
value: string;
|
|
149783
150347
|
} | null | undefined;
|
|
150348
|
+
previewContainerHeight?: number | null | undefined;
|
|
149784
150349
|
showComponentName?: boolean | null | undefined;
|
|
149785
150350
|
showComponentDescription?: boolean | null | undefined;
|
|
149786
150351
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -149856,6 +150421,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149856
150421
|
}[];
|
|
149857
150422
|
} | null | undefined;
|
|
149858
150423
|
imageAlt?: string | null | undefined;
|
|
150424
|
+
openLightbox?: boolean | null | undefined;
|
|
150425
|
+
isBordered?: boolean | null | undefined;
|
|
149859
150426
|
numberOfColumns?: number | null | undefined;
|
|
149860
150427
|
itemBackgroundColor?: {
|
|
149861
150428
|
value: string;
|
|
@@ -149945,6 +150512,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149945
150512
|
imageAlt?: string | null | undefined;
|
|
149946
150513
|
imageCaption?: string | null | undefined;
|
|
149947
150514
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150515
|
+
openLightbox?: boolean | null | undefined;
|
|
150516
|
+
isBordered?: boolean | null | undefined;
|
|
149948
150517
|
} | null | undefined;
|
|
149949
150518
|
customBlockKey?: string | null | undefined;
|
|
149950
150519
|
customBlockProperties?: {
|
|
@@ -149962,6 +150531,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149962
150531
|
backgroundColor?: {
|
|
149963
150532
|
value: string;
|
|
149964
150533
|
} | null | undefined;
|
|
150534
|
+
previewContainerHeight?: number | null | undefined;
|
|
149965
150535
|
} | null | undefined;
|
|
149966
150536
|
figmaFrames?: {
|
|
149967
150537
|
persistentId: string;
|
|
@@ -150022,10 +150592,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150022
150592
|
selectedThemeIds: string[];
|
|
150023
150593
|
}[] | null | undefined;
|
|
150024
150594
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
150595
|
+
tokenBlockConfig?: {
|
|
150596
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
150597
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
150598
|
+
} | null | undefined;
|
|
150599
|
+
assetBlockConfig?: {
|
|
150600
|
+
showSearch?: boolean | null | undefined;
|
|
150601
|
+
showAssetDescription?: boolean | null | undefined;
|
|
150602
|
+
} | null | undefined;
|
|
150025
150603
|
figmaComponentsBlockConfig?: {
|
|
150026
150604
|
backgroundColor?: {
|
|
150027
150605
|
value: string;
|
|
150028
150606
|
} | null | undefined;
|
|
150607
|
+
previewContainerHeight?: number | null | undefined;
|
|
150029
150608
|
showComponentName?: boolean | null | undefined;
|
|
150030
150609
|
showComponentDescription?: boolean | null | undefined;
|
|
150031
150610
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -150603,6 +151182,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150603
151182
|
}[];
|
|
150604
151183
|
} | null | undefined;
|
|
150605
151184
|
imageAlt?: string | null | undefined;
|
|
151185
|
+
openLightbox?: boolean | null | undefined;
|
|
151186
|
+
isBordered?: boolean | null | undefined;
|
|
150606
151187
|
numberOfColumns?: number | null | undefined;
|
|
150607
151188
|
itemBackgroundColor?: {
|
|
150608
151189
|
value: string;
|
|
@@ -150692,6 +151273,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150692
151273
|
imageAlt?: string | null | undefined;
|
|
150693
151274
|
imageCaption?: string | null | undefined;
|
|
150694
151275
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
151276
|
+
openLightbox?: boolean | null | undefined;
|
|
151277
|
+
isBordered?: boolean | null | undefined;
|
|
150695
151278
|
} | null | undefined;
|
|
150696
151279
|
customBlockKey?: string | null | undefined;
|
|
150697
151280
|
customBlockProperties?: {
|
|
@@ -150709,6 +151292,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150709
151292
|
backgroundColor?: {
|
|
150710
151293
|
value: string;
|
|
150711
151294
|
} | null | undefined;
|
|
151295
|
+
previewContainerHeight?: number | null | undefined;
|
|
150712
151296
|
} | null | undefined;
|
|
150713
151297
|
figmaFrames?: {
|
|
150714
151298
|
persistentId: string;
|
|
@@ -150769,10 +151353,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150769
151353
|
selectedThemeIds: string[];
|
|
150770
151354
|
}[] | null | undefined;
|
|
150771
151355
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151356
|
+
tokenBlockConfig?: {
|
|
151357
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
151358
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
151359
|
+
} | null | undefined;
|
|
151360
|
+
assetBlockConfig?: {
|
|
151361
|
+
showSearch?: boolean | null | undefined;
|
|
151362
|
+
showAssetDescription?: boolean | null | undefined;
|
|
151363
|
+
} | null | undefined;
|
|
150772
151364
|
figmaComponentsBlockConfig?: {
|
|
150773
151365
|
backgroundColor?: {
|
|
150774
151366
|
value: string;
|
|
150775
151367
|
} | null | undefined;
|
|
151368
|
+
previewContainerHeight?: number | null | undefined;
|
|
150776
151369
|
showComponentName?: boolean | null | undefined;
|
|
150777
151370
|
showComponentDescription?: boolean | null | undefined;
|
|
150778
151371
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -150848,6 +151441,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150848
151441
|
}[];
|
|
150849
151442
|
} | null | undefined;
|
|
150850
151443
|
imageAlt?: string | null | undefined;
|
|
151444
|
+
openLightbox?: boolean | null | undefined;
|
|
151445
|
+
isBordered?: boolean | null | undefined;
|
|
150851
151446
|
numberOfColumns?: number | null | undefined;
|
|
150852
151447
|
itemBackgroundColor?: {
|
|
150853
151448
|
value: string;
|
|
@@ -150937,6 +151532,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150937
151532
|
imageAlt?: string | null | undefined;
|
|
150938
151533
|
imageCaption?: string | null | undefined;
|
|
150939
151534
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
151535
|
+
openLightbox?: boolean | null | undefined;
|
|
151536
|
+
isBordered?: boolean | null | undefined;
|
|
150940
151537
|
} | null | undefined;
|
|
150941
151538
|
customBlockKey?: string | null | undefined;
|
|
150942
151539
|
customBlockProperties?: {
|
|
@@ -150954,6 +151551,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150954
151551
|
backgroundColor?: {
|
|
150955
151552
|
value: string;
|
|
150956
151553
|
} | null | undefined;
|
|
151554
|
+
previewContainerHeight?: number | null | undefined;
|
|
150957
151555
|
} | null | undefined;
|
|
150958
151556
|
figmaFrames?: {
|
|
150959
151557
|
persistentId: string;
|
|
@@ -151014,10 +151612,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151014
151612
|
selectedThemeIds: string[];
|
|
151015
151613
|
}[] | null | undefined;
|
|
151016
151614
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151615
|
+
tokenBlockConfig?: {
|
|
151616
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
151617
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
151618
|
+
} | null | undefined;
|
|
151619
|
+
assetBlockConfig?: {
|
|
151620
|
+
showSearch?: boolean | null | undefined;
|
|
151621
|
+
showAssetDescription?: boolean | null | undefined;
|
|
151622
|
+
} | null | undefined;
|
|
151017
151623
|
figmaComponentsBlockConfig?: {
|
|
151018
151624
|
backgroundColor?: {
|
|
151019
151625
|
value: string;
|
|
151020
151626
|
} | null | undefined;
|
|
151627
|
+
previewContainerHeight?: number | null | undefined;
|
|
151021
151628
|
showComponentName?: boolean | null | undefined;
|
|
151022
151629
|
showComponentDescription?: boolean | null | undefined;
|
|
151023
151630
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -151161,6 +151768,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151161
151768
|
}[];
|
|
151162
151769
|
} | null | undefined;
|
|
151163
151770
|
imageAlt?: string | null | undefined;
|
|
151771
|
+
openLightbox?: boolean | null | undefined;
|
|
151772
|
+
isBordered?: boolean | null | undefined;
|
|
151164
151773
|
numberOfColumns?: number | null | undefined;
|
|
151165
151774
|
itemBackgroundColor?: {
|
|
151166
151775
|
value: string;
|
|
@@ -151250,6 +151859,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151250
151859
|
imageAlt?: string | null | undefined;
|
|
151251
151860
|
imageCaption?: string | null | undefined;
|
|
151252
151861
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
151862
|
+
openLightbox?: boolean | null | undefined;
|
|
151863
|
+
isBordered?: boolean | null | undefined;
|
|
151253
151864
|
} | null | undefined;
|
|
151254
151865
|
customBlockKey?: string | null | undefined;
|
|
151255
151866
|
customBlockProperties?: {
|
|
@@ -151267,6 +151878,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151267
151878
|
backgroundColor?: {
|
|
151268
151879
|
value: string;
|
|
151269
151880
|
} | null | undefined;
|
|
151881
|
+
previewContainerHeight?: number | null | undefined;
|
|
151270
151882
|
} | null | undefined;
|
|
151271
151883
|
figmaFrames?: {
|
|
151272
151884
|
persistentId: string;
|
|
@@ -151327,10 +151939,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151327
151939
|
selectedThemeIds: string[];
|
|
151328
151940
|
}[] | null | undefined;
|
|
151329
151941
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151942
|
+
tokenBlockConfig?: {
|
|
151943
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
151944
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
151945
|
+
} | null | undefined;
|
|
151946
|
+
assetBlockConfig?: {
|
|
151947
|
+
showSearch?: boolean | null | undefined;
|
|
151948
|
+
showAssetDescription?: boolean | null | undefined;
|
|
151949
|
+
} | null | undefined;
|
|
151330
151950
|
figmaComponentsBlockConfig?: {
|
|
151331
151951
|
backgroundColor?: {
|
|
151332
151952
|
value: string;
|
|
151333
151953
|
} | null | undefined;
|
|
151954
|
+
previewContainerHeight?: number | null | undefined;
|
|
151334
151955
|
showComponentName?: boolean | null | undefined;
|
|
151335
151956
|
showComponentDescription?: boolean | null | undefined;
|
|
151336
151957
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -151406,6 +152027,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151406
152027
|
}[];
|
|
151407
152028
|
} | null | undefined;
|
|
151408
152029
|
imageAlt?: string | null | undefined;
|
|
152030
|
+
openLightbox?: boolean | null | undefined;
|
|
152031
|
+
isBordered?: boolean | null | undefined;
|
|
151409
152032
|
numberOfColumns?: number | null | undefined;
|
|
151410
152033
|
itemBackgroundColor?: {
|
|
151411
152034
|
value: string;
|
|
@@ -151495,6 +152118,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151495
152118
|
imageAlt?: string | null | undefined;
|
|
151496
152119
|
imageCaption?: string | null | undefined;
|
|
151497
152120
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152121
|
+
openLightbox?: boolean | null | undefined;
|
|
152122
|
+
isBordered?: boolean | null | undefined;
|
|
151498
152123
|
} | null | undefined;
|
|
151499
152124
|
customBlockKey?: string | null | undefined;
|
|
151500
152125
|
customBlockProperties?: {
|
|
@@ -151512,6 +152137,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151512
152137
|
backgroundColor?: {
|
|
151513
152138
|
value: string;
|
|
151514
152139
|
} | null | undefined;
|
|
152140
|
+
previewContainerHeight?: number | null | undefined;
|
|
151515
152141
|
} | null | undefined;
|
|
151516
152142
|
figmaFrames?: {
|
|
151517
152143
|
persistentId: string;
|
|
@@ -151572,10 +152198,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151572
152198
|
selectedThemeIds: string[];
|
|
151573
152199
|
}[] | null | undefined;
|
|
151574
152200
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152201
|
+
tokenBlockConfig?: {
|
|
152202
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
152203
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
152204
|
+
} | null | undefined;
|
|
152205
|
+
assetBlockConfig?: {
|
|
152206
|
+
showSearch?: boolean | null | undefined;
|
|
152207
|
+
showAssetDescription?: boolean | null | undefined;
|
|
152208
|
+
} | null | undefined;
|
|
151575
152209
|
figmaComponentsBlockConfig?: {
|
|
151576
152210
|
backgroundColor?: {
|
|
151577
152211
|
value: string;
|
|
151578
152212
|
} | null | undefined;
|
|
152213
|
+
previewContainerHeight?: number | null | undefined;
|
|
151579
152214
|
showComponentName?: boolean | null | undefined;
|
|
151580
152215
|
showComponentDescription?: boolean | null | undefined;
|
|
151581
152216
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -151742,6 +152377,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151742
152377
|
}[];
|
|
151743
152378
|
} | null | undefined;
|
|
151744
152379
|
imageAlt?: string | null | undefined;
|
|
152380
|
+
openLightbox?: boolean | null | undefined;
|
|
152381
|
+
isBordered?: boolean | null | undefined;
|
|
151745
152382
|
numberOfColumns?: number | null | undefined;
|
|
151746
152383
|
itemBackgroundColor?: {
|
|
151747
152384
|
value: string;
|
|
@@ -151831,6 +152468,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151831
152468
|
imageAlt?: string | null | undefined;
|
|
151832
152469
|
imageCaption?: string | null | undefined;
|
|
151833
152470
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152471
|
+
openLightbox?: boolean | null | undefined;
|
|
152472
|
+
isBordered?: boolean | null | undefined;
|
|
151834
152473
|
} | null | undefined;
|
|
151835
152474
|
customBlockKey?: string | null | undefined;
|
|
151836
152475
|
customBlockProperties?: {
|
|
@@ -151848,6 +152487,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151848
152487
|
backgroundColor?: {
|
|
151849
152488
|
value: string;
|
|
151850
152489
|
} | null | undefined;
|
|
152490
|
+
previewContainerHeight?: number | null | undefined;
|
|
151851
152491
|
} | null | undefined;
|
|
151852
152492
|
figmaFrames?: {
|
|
151853
152493
|
persistentId: string;
|
|
@@ -151908,10 +152548,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151908
152548
|
selectedThemeIds: string[];
|
|
151909
152549
|
}[] | null | undefined;
|
|
151910
152550
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152551
|
+
tokenBlockConfig?: {
|
|
152552
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
152553
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
152554
|
+
} | null | undefined;
|
|
152555
|
+
assetBlockConfig?: {
|
|
152556
|
+
showSearch?: boolean | null | undefined;
|
|
152557
|
+
showAssetDescription?: boolean | null | undefined;
|
|
152558
|
+
} | null | undefined;
|
|
151911
152559
|
figmaComponentsBlockConfig?: {
|
|
151912
152560
|
backgroundColor?: {
|
|
151913
152561
|
value: string;
|
|
151914
152562
|
} | null | undefined;
|
|
152563
|
+
previewContainerHeight?: number | null | undefined;
|
|
151915
152564
|
showComponentName?: boolean | null | undefined;
|
|
151916
152565
|
showComponentDescription?: boolean | null | undefined;
|
|
151917
152566
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -151987,6 +152636,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151987
152636
|
}[];
|
|
151988
152637
|
} | null | undefined;
|
|
151989
152638
|
imageAlt?: string | null | undefined;
|
|
152639
|
+
openLightbox?: boolean | null | undefined;
|
|
152640
|
+
isBordered?: boolean | null | undefined;
|
|
151990
152641
|
numberOfColumns?: number | null | undefined;
|
|
151991
152642
|
itemBackgroundColor?: {
|
|
151992
152643
|
value: string;
|
|
@@ -152076,6 +152727,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152076
152727
|
imageAlt?: string | null | undefined;
|
|
152077
152728
|
imageCaption?: string | null | undefined;
|
|
152078
152729
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152730
|
+
openLightbox?: boolean | null | undefined;
|
|
152731
|
+
isBordered?: boolean | null | undefined;
|
|
152079
152732
|
} | null | undefined;
|
|
152080
152733
|
customBlockKey?: string | null | undefined;
|
|
152081
152734
|
customBlockProperties?: {
|
|
@@ -152093,6 +152746,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152093
152746
|
backgroundColor?: {
|
|
152094
152747
|
value: string;
|
|
152095
152748
|
} | null | undefined;
|
|
152749
|
+
previewContainerHeight?: number | null | undefined;
|
|
152096
152750
|
} | null | undefined;
|
|
152097
152751
|
figmaFrames?: {
|
|
152098
152752
|
persistentId: string;
|
|
@@ -152153,10 +152807,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152153
152807
|
selectedThemeIds: string[];
|
|
152154
152808
|
}[] | null | undefined;
|
|
152155
152809
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152810
|
+
tokenBlockConfig?: {
|
|
152811
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
152812
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
152813
|
+
} | null | undefined;
|
|
152814
|
+
assetBlockConfig?: {
|
|
152815
|
+
showSearch?: boolean | null | undefined;
|
|
152816
|
+
showAssetDescription?: boolean | null | undefined;
|
|
152817
|
+
} | null | undefined;
|
|
152156
152818
|
figmaComponentsBlockConfig?: {
|
|
152157
152819
|
backgroundColor?: {
|
|
152158
152820
|
value: string;
|
|
152159
152821
|
} | null | undefined;
|
|
152822
|
+
previewContainerHeight?: number | null | undefined;
|
|
152160
152823
|
showComponentName?: boolean | null | undefined;
|
|
152161
152824
|
showComponentDescription?: boolean | null | undefined;
|
|
152162
152825
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -152352,6 +153015,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152352
153015
|
}[];
|
|
152353
153016
|
} | null | undefined;
|
|
152354
153017
|
imageAlt?: string | null | undefined;
|
|
153018
|
+
openLightbox?: boolean | null | undefined;
|
|
153019
|
+
isBordered?: boolean | null | undefined;
|
|
152355
153020
|
numberOfColumns?: number | null | undefined;
|
|
152356
153021
|
itemBackgroundColor?: {
|
|
152357
153022
|
value: string;
|
|
@@ -152441,6 +153106,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152441
153106
|
imageAlt?: string | null | undefined;
|
|
152442
153107
|
imageCaption?: string | null | undefined;
|
|
152443
153108
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
153109
|
+
openLightbox?: boolean | null | undefined;
|
|
153110
|
+
isBordered?: boolean | null | undefined;
|
|
152444
153111
|
} | null | undefined;
|
|
152445
153112
|
customBlockKey?: string | null | undefined;
|
|
152446
153113
|
customBlockProperties?: {
|
|
@@ -152458,6 +153125,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152458
153125
|
backgroundColor?: {
|
|
152459
153126
|
value: string;
|
|
152460
153127
|
} | null | undefined;
|
|
153128
|
+
previewContainerHeight?: number | null | undefined;
|
|
152461
153129
|
} | null | undefined;
|
|
152462
153130
|
figmaFrames?: {
|
|
152463
153131
|
persistentId: string;
|
|
@@ -152518,10 +153186,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152518
153186
|
selectedThemeIds: string[];
|
|
152519
153187
|
}[] | null | undefined;
|
|
152520
153188
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
153189
|
+
tokenBlockConfig?: {
|
|
153190
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
153191
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
153192
|
+
} | null | undefined;
|
|
153193
|
+
assetBlockConfig?: {
|
|
153194
|
+
showSearch?: boolean | null | undefined;
|
|
153195
|
+
showAssetDescription?: boolean | null | undefined;
|
|
153196
|
+
} | null | undefined;
|
|
152521
153197
|
figmaComponentsBlockConfig?: {
|
|
152522
153198
|
backgroundColor?: {
|
|
152523
153199
|
value: string;
|
|
152524
153200
|
} | null | undefined;
|
|
153201
|
+
previewContainerHeight?: number | null | undefined;
|
|
152525
153202
|
showComponentName?: boolean | null | undefined;
|
|
152526
153203
|
showComponentDescription?: boolean | null | undefined;
|
|
152527
153204
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -152597,6 +153274,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152597
153274
|
}[];
|
|
152598
153275
|
} | null | undefined;
|
|
152599
153276
|
imageAlt?: string | null | undefined;
|
|
153277
|
+
openLightbox?: boolean | null | undefined;
|
|
153278
|
+
isBordered?: boolean | null | undefined;
|
|
152600
153279
|
numberOfColumns?: number | null | undefined;
|
|
152601
153280
|
itemBackgroundColor?: {
|
|
152602
153281
|
value: string;
|
|
@@ -152686,6 +153365,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152686
153365
|
imageAlt?: string | null | undefined;
|
|
152687
153366
|
imageCaption?: string | null | undefined;
|
|
152688
153367
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
153368
|
+
openLightbox?: boolean | null | undefined;
|
|
153369
|
+
isBordered?: boolean | null | undefined;
|
|
152689
153370
|
} | null | undefined;
|
|
152690
153371
|
customBlockKey?: string | null | undefined;
|
|
152691
153372
|
customBlockProperties?: {
|
|
@@ -152703,6 +153384,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152703
153384
|
backgroundColor?: {
|
|
152704
153385
|
value: string;
|
|
152705
153386
|
} | null | undefined;
|
|
153387
|
+
previewContainerHeight?: number | null | undefined;
|
|
152706
153388
|
} | null | undefined;
|
|
152707
153389
|
figmaFrames?: {
|
|
152708
153390
|
persistentId: string;
|
|
@@ -152763,10 +153445,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152763
153445
|
selectedThemeIds: string[];
|
|
152764
153446
|
}[] | null | undefined;
|
|
152765
153447
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
153448
|
+
tokenBlockConfig?: {
|
|
153449
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
153450
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
153451
|
+
} | null | undefined;
|
|
153452
|
+
assetBlockConfig?: {
|
|
153453
|
+
showSearch?: boolean | null | undefined;
|
|
153454
|
+
showAssetDescription?: boolean | null | undefined;
|
|
153455
|
+
} | null | undefined;
|
|
152766
153456
|
figmaComponentsBlockConfig?: {
|
|
152767
153457
|
backgroundColor?: {
|
|
152768
153458
|
value: string;
|
|
152769
153459
|
} | null | undefined;
|
|
153460
|
+
previewContainerHeight?: number | null | undefined;
|
|
152770
153461
|
showComponentName?: boolean | null | undefined;
|
|
152771
153462
|
showComponentDescription?: boolean | null | undefined;
|
|
152772
153463
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -153705,6 +154396,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153705
154396
|
}[];
|
|
153706
154397
|
} | null | undefined;
|
|
153707
154398
|
imageAlt?: string | null | undefined;
|
|
154399
|
+
openLightbox?: boolean | null | undefined;
|
|
154400
|
+
isBordered?: boolean | null | undefined;
|
|
153708
154401
|
numberOfColumns?: number | null | undefined;
|
|
153709
154402
|
itemBackgroundColor?: {
|
|
153710
154403
|
value: string;
|
|
@@ -153794,6 +154487,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153794
154487
|
imageAlt?: string | null | undefined;
|
|
153795
154488
|
imageCaption?: string | null | undefined;
|
|
153796
154489
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
154490
|
+
openLightbox?: boolean | null | undefined;
|
|
154491
|
+
isBordered?: boolean | null | undefined;
|
|
153797
154492
|
} | null | undefined;
|
|
153798
154493
|
customBlockKey?: string | null | undefined;
|
|
153799
154494
|
customBlockProperties?: {
|
|
@@ -153811,6 +154506,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153811
154506
|
backgroundColor?: {
|
|
153812
154507
|
value: string;
|
|
153813
154508
|
} | null | undefined;
|
|
154509
|
+
previewContainerHeight?: number | null | undefined;
|
|
153814
154510
|
} | null | undefined;
|
|
153815
154511
|
figmaFrames?: {
|
|
153816
154512
|
persistentId: string;
|
|
@@ -153871,10 +154567,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153871
154567
|
selectedThemeIds: string[];
|
|
153872
154568
|
}[] | null | undefined;
|
|
153873
154569
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
154570
|
+
tokenBlockConfig?: {
|
|
154571
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
154572
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
154573
|
+
} | null | undefined;
|
|
154574
|
+
assetBlockConfig?: {
|
|
154575
|
+
showSearch?: boolean | null | undefined;
|
|
154576
|
+
showAssetDescription?: boolean | null | undefined;
|
|
154577
|
+
} | null | undefined;
|
|
153874
154578
|
figmaComponentsBlockConfig?: {
|
|
153875
154579
|
backgroundColor?: {
|
|
153876
154580
|
value: string;
|
|
153877
154581
|
} | null | undefined;
|
|
154582
|
+
previewContainerHeight?: number | null | undefined;
|
|
153878
154583
|
showComponentName?: boolean | null | undefined;
|
|
153879
154584
|
showComponentDescription?: boolean | null | undefined;
|
|
153880
154585
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -153950,6 +154655,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153950
154655
|
}[];
|
|
153951
154656
|
} | null | undefined;
|
|
153952
154657
|
imageAlt?: string | null | undefined;
|
|
154658
|
+
openLightbox?: boolean | null | undefined;
|
|
154659
|
+
isBordered?: boolean | null | undefined;
|
|
153953
154660
|
numberOfColumns?: number | null | undefined;
|
|
153954
154661
|
itemBackgroundColor?: {
|
|
153955
154662
|
value: string;
|
|
@@ -154039,6 +154746,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154039
154746
|
imageAlt?: string | null | undefined;
|
|
154040
154747
|
imageCaption?: string | null | undefined;
|
|
154041
154748
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
154749
|
+
openLightbox?: boolean | null | undefined;
|
|
154750
|
+
isBordered?: boolean | null | undefined;
|
|
154042
154751
|
} | null | undefined;
|
|
154043
154752
|
customBlockKey?: string | null | undefined;
|
|
154044
154753
|
customBlockProperties?: {
|
|
@@ -154056,6 +154765,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154056
154765
|
backgroundColor?: {
|
|
154057
154766
|
value: string;
|
|
154058
154767
|
} | null | undefined;
|
|
154768
|
+
previewContainerHeight?: number | null | undefined;
|
|
154059
154769
|
} | null | undefined;
|
|
154060
154770
|
figmaFrames?: {
|
|
154061
154771
|
persistentId: string;
|
|
@@ -154116,10 +154826,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154116
154826
|
selectedThemeIds: string[];
|
|
154117
154827
|
}[] | null | undefined;
|
|
154118
154828
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
154829
|
+
tokenBlockConfig?: {
|
|
154830
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
154831
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
154832
|
+
} | null | undefined;
|
|
154833
|
+
assetBlockConfig?: {
|
|
154834
|
+
showSearch?: boolean | null | undefined;
|
|
154835
|
+
showAssetDescription?: boolean | null | undefined;
|
|
154836
|
+
} | null | undefined;
|
|
154119
154837
|
figmaComponentsBlockConfig?: {
|
|
154120
154838
|
backgroundColor?: {
|
|
154121
154839
|
value: string;
|
|
154122
154840
|
} | null | undefined;
|
|
154841
|
+
previewContainerHeight?: number | null | undefined;
|
|
154123
154842
|
showComponentName?: boolean | null | undefined;
|
|
154124
154843
|
showComponentDescription?: boolean | null | undefined;
|
|
154125
154844
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -154252,6 +154971,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154252
154971
|
}[];
|
|
154253
154972
|
} | null | undefined;
|
|
154254
154973
|
imageAlt?: string | null | undefined;
|
|
154974
|
+
openLightbox?: boolean | null | undefined;
|
|
154975
|
+
isBordered?: boolean | null | undefined;
|
|
154255
154976
|
numberOfColumns?: number | null | undefined;
|
|
154256
154977
|
itemBackgroundColor?: {
|
|
154257
154978
|
value: string;
|
|
@@ -154341,6 +155062,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154341
155062
|
imageAlt?: string | null | undefined;
|
|
154342
155063
|
imageCaption?: string | null | undefined;
|
|
154343
155064
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
155065
|
+
openLightbox?: boolean | null | undefined;
|
|
155066
|
+
isBordered?: boolean | null | undefined;
|
|
154344
155067
|
} | null | undefined;
|
|
154345
155068
|
customBlockKey?: string | null | undefined;
|
|
154346
155069
|
customBlockProperties?: {
|
|
@@ -154358,6 +155081,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154358
155081
|
backgroundColor?: {
|
|
154359
155082
|
value: string;
|
|
154360
155083
|
} | null | undefined;
|
|
155084
|
+
previewContainerHeight?: number | null | undefined;
|
|
154361
155085
|
} | null | undefined;
|
|
154362
155086
|
figmaFrames?: {
|
|
154363
155087
|
persistentId: string;
|
|
@@ -154418,10 +155142,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154418
155142
|
selectedThemeIds: string[];
|
|
154419
155143
|
}[] | null | undefined;
|
|
154420
155144
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
155145
|
+
tokenBlockConfig?: {
|
|
155146
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
155147
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
155148
|
+
} | null | undefined;
|
|
155149
|
+
assetBlockConfig?: {
|
|
155150
|
+
showSearch?: boolean | null | undefined;
|
|
155151
|
+
showAssetDescription?: boolean | null | undefined;
|
|
155152
|
+
} | null | undefined;
|
|
154421
155153
|
figmaComponentsBlockConfig?: {
|
|
154422
155154
|
backgroundColor?: {
|
|
154423
155155
|
value: string;
|
|
154424
155156
|
} | null | undefined;
|
|
155157
|
+
previewContainerHeight?: number | null | undefined;
|
|
154425
155158
|
showComponentName?: boolean | null | undefined;
|
|
154426
155159
|
showComponentDescription?: boolean | null | undefined;
|
|
154427
155160
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -154497,6 +155230,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154497
155230
|
}[];
|
|
154498
155231
|
} | null | undefined;
|
|
154499
155232
|
imageAlt?: string | null | undefined;
|
|
155233
|
+
openLightbox?: boolean | null | undefined;
|
|
155234
|
+
isBordered?: boolean | null | undefined;
|
|
154500
155235
|
numberOfColumns?: number | null | undefined;
|
|
154501
155236
|
itemBackgroundColor?: {
|
|
154502
155237
|
value: string;
|
|
@@ -154586,6 +155321,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154586
155321
|
imageAlt?: string | null | undefined;
|
|
154587
155322
|
imageCaption?: string | null | undefined;
|
|
154588
155323
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
155324
|
+
openLightbox?: boolean | null | undefined;
|
|
155325
|
+
isBordered?: boolean | null | undefined;
|
|
154589
155326
|
} | null | undefined;
|
|
154590
155327
|
customBlockKey?: string | null | undefined;
|
|
154591
155328
|
customBlockProperties?: {
|
|
@@ -154603,6 +155340,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154603
155340
|
backgroundColor?: {
|
|
154604
155341
|
value: string;
|
|
154605
155342
|
} | null | undefined;
|
|
155343
|
+
previewContainerHeight?: number | null | undefined;
|
|
154606
155344
|
} | null | undefined;
|
|
154607
155345
|
figmaFrames?: {
|
|
154608
155346
|
persistentId: string;
|
|
@@ -154663,10 +155401,19 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
154663
155401
|
selectedThemeIds: string[];
|
|
154664
155402
|
}[] | null | undefined;
|
|
154665
155403
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
155404
|
+
tokenBlockConfig?: {
|
|
155405
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
155406
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
155407
|
+
} | null | undefined;
|
|
155408
|
+
assetBlockConfig?: {
|
|
155409
|
+
showSearch?: boolean | null | undefined;
|
|
155410
|
+
showAssetDescription?: boolean | null | undefined;
|
|
155411
|
+
} | null | undefined;
|
|
154666
155412
|
figmaComponentsBlockConfig?: {
|
|
154667
155413
|
backgroundColor?: {
|
|
154668
155414
|
value: string;
|
|
154669
155415
|
} | null | undefined;
|
|
155416
|
+
previewContainerHeight?: number | null | undefined;
|
|
154670
155417
|
showComponentName?: boolean | null | undefined;
|
|
154671
155418
|
showComponentDescription?: boolean | null | undefined;
|
|
154672
155419
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -154994,6 +155741,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
154994
155741
|
}[];
|
|
154995
155742
|
} | null | undefined;
|
|
154996
155743
|
imageAlt?: string | null | undefined;
|
|
155744
|
+
openLightbox?: boolean | null | undefined;
|
|
155745
|
+
isBordered?: boolean | null | undefined;
|
|
154997
155746
|
numberOfColumns?: number | null | undefined;
|
|
154998
155747
|
itemBackgroundColor?: {
|
|
154999
155748
|
value: string;
|
|
@@ -155083,6 +155832,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155083
155832
|
imageAlt?: string | null | undefined;
|
|
155084
155833
|
imageCaption?: string | null | undefined;
|
|
155085
155834
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
155835
|
+
openLightbox?: boolean | null | undefined;
|
|
155836
|
+
isBordered?: boolean | null | undefined;
|
|
155086
155837
|
} | null | undefined;
|
|
155087
155838
|
customBlockKey?: string | null | undefined;
|
|
155088
155839
|
customBlockProperties?: {
|
|
@@ -155100,6 +155851,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155100
155851
|
backgroundColor?: {
|
|
155101
155852
|
value: string;
|
|
155102
155853
|
} | null | undefined;
|
|
155854
|
+
previewContainerHeight?: number | null | undefined;
|
|
155103
155855
|
} | null | undefined;
|
|
155104
155856
|
figmaFrames?: {
|
|
155105
155857
|
persistentId: string;
|
|
@@ -155160,10 +155912,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155160
155912
|
selectedThemeIds: string[];
|
|
155161
155913
|
}[] | null | undefined;
|
|
155162
155914
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
155915
|
+
tokenBlockConfig?: {
|
|
155916
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
155917
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
155918
|
+
} | null | undefined;
|
|
155919
|
+
assetBlockConfig?: {
|
|
155920
|
+
showSearch?: boolean | null | undefined;
|
|
155921
|
+
showAssetDescription?: boolean | null | undefined;
|
|
155922
|
+
} | null | undefined;
|
|
155163
155923
|
figmaComponentsBlockConfig?: {
|
|
155164
155924
|
backgroundColor?: {
|
|
155165
155925
|
value: string;
|
|
155166
155926
|
} | null | undefined;
|
|
155927
|
+
previewContainerHeight?: number | null | undefined;
|
|
155167
155928
|
showComponentName?: boolean | null | undefined;
|
|
155168
155929
|
showComponentDescription?: boolean | null | undefined;
|
|
155169
155930
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -155239,6 +156000,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155239
156000
|
}[];
|
|
155240
156001
|
} | null | undefined;
|
|
155241
156002
|
imageAlt?: string | null | undefined;
|
|
156003
|
+
openLightbox?: boolean | null | undefined;
|
|
156004
|
+
isBordered?: boolean | null | undefined;
|
|
155242
156005
|
numberOfColumns?: number | null | undefined;
|
|
155243
156006
|
itemBackgroundColor?: {
|
|
155244
156007
|
value: string;
|
|
@@ -155328,6 +156091,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155328
156091
|
imageAlt?: string | null | undefined;
|
|
155329
156092
|
imageCaption?: string | null | undefined;
|
|
155330
156093
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156094
|
+
openLightbox?: boolean | null | undefined;
|
|
156095
|
+
isBordered?: boolean | null | undefined;
|
|
155331
156096
|
} | null | undefined;
|
|
155332
156097
|
customBlockKey?: string | null | undefined;
|
|
155333
156098
|
customBlockProperties?: {
|
|
@@ -155345,6 +156110,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155345
156110
|
backgroundColor?: {
|
|
155346
156111
|
value: string;
|
|
155347
156112
|
} | null | undefined;
|
|
156113
|
+
previewContainerHeight?: number | null | undefined;
|
|
155348
156114
|
} | null | undefined;
|
|
155349
156115
|
figmaFrames?: {
|
|
155350
156116
|
persistentId: string;
|
|
@@ -155405,10 +156171,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155405
156171
|
selectedThemeIds: string[];
|
|
155406
156172
|
}[] | null | undefined;
|
|
155407
156173
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156174
|
+
tokenBlockConfig?: {
|
|
156175
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
156176
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
156177
|
+
} | null | undefined;
|
|
156178
|
+
assetBlockConfig?: {
|
|
156179
|
+
showSearch?: boolean | null | undefined;
|
|
156180
|
+
showAssetDescription?: boolean | null | undefined;
|
|
156181
|
+
} | null | undefined;
|
|
155408
156182
|
figmaComponentsBlockConfig?: {
|
|
155409
156183
|
backgroundColor?: {
|
|
155410
156184
|
value: string;
|
|
155411
156185
|
} | null | undefined;
|
|
156186
|
+
previewContainerHeight?: number | null | undefined;
|
|
155412
156187
|
showComponentName?: boolean | null | undefined;
|
|
155413
156188
|
showComponentDescription?: boolean | null | undefined;
|
|
155414
156189
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -155552,6 +156327,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155552
156327
|
}[];
|
|
155553
156328
|
} | null | undefined;
|
|
155554
156329
|
imageAlt?: string | null | undefined;
|
|
156330
|
+
openLightbox?: boolean | null | undefined;
|
|
156331
|
+
isBordered?: boolean | null | undefined;
|
|
155555
156332
|
numberOfColumns?: number | null | undefined;
|
|
155556
156333
|
itemBackgroundColor?: {
|
|
155557
156334
|
value: string;
|
|
@@ -155641,6 +156418,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155641
156418
|
imageAlt?: string | null | undefined;
|
|
155642
156419
|
imageCaption?: string | null | undefined;
|
|
155643
156420
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156421
|
+
openLightbox?: boolean | null | undefined;
|
|
156422
|
+
isBordered?: boolean | null | undefined;
|
|
155644
156423
|
} | null | undefined;
|
|
155645
156424
|
customBlockKey?: string | null | undefined;
|
|
155646
156425
|
customBlockProperties?: {
|
|
@@ -155658,6 +156437,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155658
156437
|
backgroundColor?: {
|
|
155659
156438
|
value: string;
|
|
155660
156439
|
} | null | undefined;
|
|
156440
|
+
previewContainerHeight?: number | null | undefined;
|
|
155661
156441
|
} | null | undefined;
|
|
155662
156442
|
figmaFrames?: {
|
|
155663
156443
|
persistentId: string;
|
|
@@ -155718,10 +156498,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155718
156498
|
selectedThemeIds: string[];
|
|
155719
156499
|
}[] | null | undefined;
|
|
155720
156500
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156501
|
+
tokenBlockConfig?: {
|
|
156502
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
156503
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
156504
|
+
} | null | undefined;
|
|
156505
|
+
assetBlockConfig?: {
|
|
156506
|
+
showSearch?: boolean | null | undefined;
|
|
156507
|
+
showAssetDescription?: boolean | null | undefined;
|
|
156508
|
+
} | null | undefined;
|
|
155721
156509
|
figmaComponentsBlockConfig?: {
|
|
155722
156510
|
backgroundColor?: {
|
|
155723
156511
|
value: string;
|
|
155724
156512
|
} | null | undefined;
|
|
156513
|
+
previewContainerHeight?: number | null | undefined;
|
|
155725
156514
|
showComponentName?: boolean | null | undefined;
|
|
155726
156515
|
showComponentDescription?: boolean | null | undefined;
|
|
155727
156516
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -155797,6 +156586,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155797
156586
|
}[];
|
|
155798
156587
|
} | null | undefined;
|
|
155799
156588
|
imageAlt?: string | null | undefined;
|
|
156589
|
+
openLightbox?: boolean | null | undefined;
|
|
156590
|
+
isBordered?: boolean | null | undefined;
|
|
155800
156591
|
numberOfColumns?: number | null | undefined;
|
|
155801
156592
|
itemBackgroundColor?: {
|
|
155802
156593
|
value: string;
|
|
@@ -155886,6 +156677,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155886
156677
|
imageAlt?: string | null | undefined;
|
|
155887
156678
|
imageCaption?: string | null | undefined;
|
|
155888
156679
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156680
|
+
openLightbox?: boolean | null | undefined;
|
|
156681
|
+
isBordered?: boolean | null | undefined;
|
|
155889
156682
|
} | null | undefined;
|
|
155890
156683
|
customBlockKey?: string | null | undefined;
|
|
155891
156684
|
customBlockProperties?: {
|
|
@@ -155903,6 +156696,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155903
156696
|
backgroundColor?: {
|
|
155904
156697
|
value: string;
|
|
155905
156698
|
} | null | undefined;
|
|
156699
|
+
previewContainerHeight?: number | null | undefined;
|
|
155906
156700
|
} | null | undefined;
|
|
155907
156701
|
figmaFrames?: {
|
|
155908
156702
|
persistentId: string;
|
|
@@ -155963,10 +156757,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155963
156757
|
selectedThemeIds: string[];
|
|
155964
156758
|
}[] | null | undefined;
|
|
155965
156759
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156760
|
+
tokenBlockConfig?: {
|
|
156761
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
156762
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
156763
|
+
} | null | undefined;
|
|
156764
|
+
assetBlockConfig?: {
|
|
156765
|
+
showSearch?: boolean | null | undefined;
|
|
156766
|
+
showAssetDescription?: boolean | null | undefined;
|
|
156767
|
+
} | null | undefined;
|
|
155966
156768
|
figmaComponentsBlockConfig?: {
|
|
155967
156769
|
backgroundColor?: {
|
|
155968
156770
|
value: string;
|
|
155969
156771
|
} | null | undefined;
|
|
156772
|
+
previewContainerHeight?: number | null | undefined;
|
|
155970
156773
|
showComponentName?: boolean | null | undefined;
|
|
155971
156774
|
showComponentDescription?: boolean | null | undefined;
|
|
155972
156775
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -156133,6 +156936,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156133
156936
|
}[];
|
|
156134
156937
|
} | null | undefined;
|
|
156135
156938
|
imageAlt?: string | null | undefined;
|
|
156939
|
+
openLightbox?: boolean | null | undefined;
|
|
156940
|
+
isBordered?: boolean | null | undefined;
|
|
156136
156941
|
numberOfColumns?: number | null | undefined;
|
|
156137
156942
|
itemBackgroundColor?: {
|
|
156138
156943
|
value: string;
|
|
@@ -156222,6 +157027,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156222
157027
|
imageAlt?: string | null | undefined;
|
|
156223
157028
|
imageCaption?: string | null | undefined;
|
|
156224
157029
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
157030
|
+
openLightbox?: boolean | null | undefined;
|
|
157031
|
+
isBordered?: boolean | null | undefined;
|
|
156225
157032
|
} | null | undefined;
|
|
156226
157033
|
customBlockKey?: string | null | undefined;
|
|
156227
157034
|
customBlockProperties?: {
|
|
@@ -156239,6 +157046,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156239
157046
|
backgroundColor?: {
|
|
156240
157047
|
value: string;
|
|
156241
157048
|
} | null | undefined;
|
|
157049
|
+
previewContainerHeight?: number | null | undefined;
|
|
156242
157050
|
} | null | undefined;
|
|
156243
157051
|
figmaFrames?: {
|
|
156244
157052
|
persistentId: string;
|
|
@@ -156299,10 +157107,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156299
157107
|
selectedThemeIds: string[];
|
|
156300
157108
|
}[] | null | undefined;
|
|
156301
157109
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
157110
|
+
tokenBlockConfig?: {
|
|
157111
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
157112
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
157113
|
+
} | null | undefined;
|
|
157114
|
+
assetBlockConfig?: {
|
|
157115
|
+
showSearch?: boolean | null | undefined;
|
|
157116
|
+
showAssetDescription?: boolean | null | undefined;
|
|
157117
|
+
} | null | undefined;
|
|
156302
157118
|
figmaComponentsBlockConfig?: {
|
|
156303
157119
|
backgroundColor?: {
|
|
156304
157120
|
value: string;
|
|
156305
157121
|
} | null | undefined;
|
|
157122
|
+
previewContainerHeight?: number | null | undefined;
|
|
156306
157123
|
showComponentName?: boolean | null | undefined;
|
|
156307
157124
|
showComponentDescription?: boolean | null | undefined;
|
|
156308
157125
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -156378,6 +157195,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156378
157195
|
}[];
|
|
156379
157196
|
} | null | undefined;
|
|
156380
157197
|
imageAlt?: string | null | undefined;
|
|
157198
|
+
openLightbox?: boolean | null | undefined;
|
|
157199
|
+
isBordered?: boolean | null | undefined;
|
|
156381
157200
|
numberOfColumns?: number | null | undefined;
|
|
156382
157201
|
itemBackgroundColor?: {
|
|
156383
157202
|
value: string;
|
|
@@ -156467,6 +157286,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156467
157286
|
imageAlt?: string | null | undefined;
|
|
156468
157287
|
imageCaption?: string | null | undefined;
|
|
156469
157288
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
157289
|
+
openLightbox?: boolean | null | undefined;
|
|
157290
|
+
isBordered?: boolean | null | undefined;
|
|
156470
157291
|
} | null | undefined;
|
|
156471
157292
|
customBlockKey?: string | null | undefined;
|
|
156472
157293
|
customBlockProperties?: {
|
|
@@ -156484,6 +157305,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156484
157305
|
backgroundColor?: {
|
|
156485
157306
|
value: string;
|
|
156486
157307
|
} | null | undefined;
|
|
157308
|
+
previewContainerHeight?: number | null | undefined;
|
|
156487
157309
|
} | null | undefined;
|
|
156488
157310
|
figmaFrames?: {
|
|
156489
157311
|
persistentId: string;
|
|
@@ -156544,10 +157366,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156544
157366
|
selectedThemeIds: string[];
|
|
156545
157367
|
}[] | null | undefined;
|
|
156546
157368
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
157369
|
+
tokenBlockConfig?: {
|
|
157370
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
157371
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
157372
|
+
} | null | undefined;
|
|
157373
|
+
assetBlockConfig?: {
|
|
157374
|
+
showSearch?: boolean | null | undefined;
|
|
157375
|
+
showAssetDescription?: boolean | null | undefined;
|
|
157376
|
+
} | null | undefined;
|
|
156547
157377
|
figmaComponentsBlockConfig?: {
|
|
156548
157378
|
backgroundColor?: {
|
|
156549
157379
|
value: string;
|
|
156550
157380
|
} | null | undefined;
|
|
157381
|
+
previewContainerHeight?: number | null | undefined;
|
|
156551
157382
|
showComponentName?: boolean | null | undefined;
|
|
156552
157383
|
showComponentDescription?: boolean | null | undefined;
|
|
156553
157384
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -157127,6 +157958,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157127
157958
|
}[];
|
|
157128
157959
|
} | null | undefined;
|
|
157129
157960
|
imageAlt?: string | null | undefined;
|
|
157961
|
+
openLightbox?: boolean | null | undefined;
|
|
157962
|
+
isBordered?: boolean | null | undefined;
|
|
157130
157963
|
numberOfColumns?: number | null | undefined;
|
|
157131
157964
|
itemBackgroundColor?: {
|
|
157132
157965
|
value: string;
|
|
@@ -157216,6 +158049,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157216
158049
|
imageAlt?: string | null | undefined;
|
|
157217
158050
|
imageCaption?: string | null | undefined;
|
|
157218
158051
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
158052
|
+
openLightbox?: boolean | null | undefined;
|
|
158053
|
+
isBordered?: boolean | null | undefined;
|
|
157219
158054
|
} | null | undefined;
|
|
157220
158055
|
customBlockKey?: string | null | undefined;
|
|
157221
158056
|
customBlockProperties?: {
|
|
@@ -157233,6 +158068,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157233
158068
|
backgroundColor?: {
|
|
157234
158069
|
value: string;
|
|
157235
158070
|
} | null | undefined;
|
|
158071
|
+
previewContainerHeight?: number | null | undefined;
|
|
157236
158072
|
} | null | undefined;
|
|
157237
158073
|
figmaFrames?: {
|
|
157238
158074
|
persistentId: string;
|
|
@@ -157293,10 +158129,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157293
158129
|
selectedThemeIds: string[];
|
|
157294
158130
|
}[] | null | undefined;
|
|
157295
158131
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158132
|
+
tokenBlockConfig?: {
|
|
158133
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
158134
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
158135
|
+
} | null | undefined;
|
|
158136
|
+
assetBlockConfig?: {
|
|
158137
|
+
showSearch?: boolean | null | undefined;
|
|
158138
|
+
showAssetDescription?: boolean | null | undefined;
|
|
158139
|
+
} | null | undefined;
|
|
157296
158140
|
figmaComponentsBlockConfig?: {
|
|
157297
158141
|
backgroundColor?: {
|
|
157298
158142
|
value: string;
|
|
157299
158143
|
} | null | undefined;
|
|
158144
|
+
previewContainerHeight?: number | null | undefined;
|
|
157300
158145
|
showComponentName?: boolean | null | undefined;
|
|
157301
158146
|
showComponentDescription?: boolean | null | undefined;
|
|
157302
158147
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -157372,6 +158217,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157372
158217
|
}[];
|
|
157373
158218
|
} | null | undefined;
|
|
157374
158219
|
imageAlt?: string | null | undefined;
|
|
158220
|
+
openLightbox?: boolean | null | undefined;
|
|
158221
|
+
isBordered?: boolean | null | undefined;
|
|
157375
158222
|
numberOfColumns?: number | null | undefined;
|
|
157376
158223
|
itemBackgroundColor?: {
|
|
157377
158224
|
value: string;
|
|
@@ -157461,6 +158308,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157461
158308
|
imageAlt?: string | null | undefined;
|
|
157462
158309
|
imageCaption?: string | null | undefined;
|
|
157463
158310
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
158311
|
+
openLightbox?: boolean | null | undefined;
|
|
158312
|
+
isBordered?: boolean | null | undefined;
|
|
157464
158313
|
} | null | undefined;
|
|
157465
158314
|
customBlockKey?: string | null | undefined;
|
|
157466
158315
|
customBlockProperties?: {
|
|
@@ -157478,6 +158327,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157478
158327
|
backgroundColor?: {
|
|
157479
158328
|
value: string;
|
|
157480
158329
|
} | null | undefined;
|
|
158330
|
+
previewContainerHeight?: number | null | undefined;
|
|
157481
158331
|
} | null | undefined;
|
|
157482
158332
|
figmaFrames?: {
|
|
157483
158333
|
persistentId: string;
|
|
@@ -157538,10 +158388,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157538
158388
|
selectedThemeIds: string[];
|
|
157539
158389
|
}[] | null | undefined;
|
|
157540
158390
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158391
|
+
tokenBlockConfig?: {
|
|
158392
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
158393
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
158394
|
+
} | null | undefined;
|
|
158395
|
+
assetBlockConfig?: {
|
|
158396
|
+
showSearch?: boolean | null | undefined;
|
|
158397
|
+
showAssetDescription?: boolean | null | undefined;
|
|
158398
|
+
} | null | undefined;
|
|
157541
158399
|
figmaComponentsBlockConfig?: {
|
|
157542
158400
|
backgroundColor?: {
|
|
157543
158401
|
value: string;
|
|
157544
158402
|
} | null | undefined;
|
|
158403
|
+
previewContainerHeight?: number | null | undefined;
|
|
157545
158404
|
showComponentName?: boolean | null | undefined;
|
|
157546
158405
|
showComponentDescription?: boolean | null | undefined;
|
|
157547
158406
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -157685,6 +158544,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157685
158544
|
}[];
|
|
157686
158545
|
} | null | undefined;
|
|
157687
158546
|
imageAlt?: string | null | undefined;
|
|
158547
|
+
openLightbox?: boolean | null | undefined;
|
|
158548
|
+
isBordered?: boolean | null | undefined;
|
|
157688
158549
|
numberOfColumns?: number | null | undefined;
|
|
157689
158550
|
itemBackgroundColor?: {
|
|
157690
158551
|
value: string;
|
|
@@ -157774,6 +158635,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157774
158635
|
imageAlt?: string | null | undefined;
|
|
157775
158636
|
imageCaption?: string | null | undefined;
|
|
157776
158637
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
158638
|
+
openLightbox?: boolean | null | undefined;
|
|
158639
|
+
isBordered?: boolean | null | undefined;
|
|
157777
158640
|
} | null | undefined;
|
|
157778
158641
|
customBlockKey?: string | null | undefined;
|
|
157779
158642
|
customBlockProperties?: {
|
|
@@ -157791,6 +158654,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157791
158654
|
backgroundColor?: {
|
|
157792
158655
|
value: string;
|
|
157793
158656
|
} | null | undefined;
|
|
158657
|
+
previewContainerHeight?: number | null | undefined;
|
|
157794
158658
|
} | null | undefined;
|
|
157795
158659
|
figmaFrames?: {
|
|
157796
158660
|
persistentId: string;
|
|
@@ -157851,10 +158715,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157851
158715
|
selectedThemeIds: string[];
|
|
157852
158716
|
}[] | null | undefined;
|
|
157853
158717
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158718
|
+
tokenBlockConfig?: {
|
|
158719
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
158720
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
158721
|
+
} | null | undefined;
|
|
158722
|
+
assetBlockConfig?: {
|
|
158723
|
+
showSearch?: boolean | null | undefined;
|
|
158724
|
+
showAssetDescription?: boolean | null | undefined;
|
|
158725
|
+
} | null | undefined;
|
|
157854
158726
|
figmaComponentsBlockConfig?: {
|
|
157855
158727
|
backgroundColor?: {
|
|
157856
158728
|
value: string;
|
|
157857
158729
|
} | null | undefined;
|
|
158730
|
+
previewContainerHeight?: number | null | undefined;
|
|
157858
158731
|
showComponentName?: boolean | null | undefined;
|
|
157859
158732
|
showComponentDescription?: boolean | null | undefined;
|
|
157860
158733
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -157930,6 +158803,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157930
158803
|
}[];
|
|
157931
158804
|
} | null | undefined;
|
|
157932
158805
|
imageAlt?: string | null | undefined;
|
|
158806
|
+
openLightbox?: boolean | null | undefined;
|
|
158807
|
+
isBordered?: boolean | null | undefined;
|
|
157933
158808
|
numberOfColumns?: number | null | undefined;
|
|
157934
158809
|
itemBackgroundColor?: {
|
|
157935
158810
|
value: string;
|
|
@@ -158019,6 +158894,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158019
158894
|
imageAlt?: string | null | undefined;
|
|
158020
158895
|
imageCaption?: string | null | undefined;
|
|
158021
158896
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
158897
|
+
openLightbox?: boolean | null | undefined;
|
|
158898
|
+
isBordered?: boolean | null | undefined;
|
|
158022
158899
|
} | null | undefined;
|
|
158023
158900
|
customBlockKey?: string | null | undefined;
|
|
158024
158901
|
customBlockProperties?: {
|
|
@@ -158036,6 +158913,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158036
158913
|
backgroundColor?: {
|
|
158037
158914
|
value: string;
|
|
158038
158915
|
} | null | undefined;
|
|
158916
|
+
previewContainerHeight?: number | null | undefined;
|
|
158039
158917
|
} | null | undefined;
|
|
158040
158918
|
figmaFrames?: {
|
|
158041
158919
|
persistentId: string;
|
|
@@ -158096,10 +158974,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158096
158974
|
selectedThemeIds: string[];
|
|
158097
158975
|
}[] | null | undefined;
|
|
158098
158976
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158977
|
+
tokenBlockConfig?: {
|
|
158978
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
158979
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
158980
|
+
} | null | undefined;
|
|
158981
|
+
assetBlockConfig?: {
|
|
158982
|
+
showSearch?: boolean | null | undefined;
|
|
158983
|
+
showAssetDescription?: boolean | null | undefined;
|
|
158984
|
+
} | null | undefined;
|
|
158099
158985
|
figmaComponentsBlockConfig?: {
|
|
158100
158986
|
backgroundColor?: {
|
|
158101
158987
|
value: string;
|
|
158102
158988
|
} | null | undefined;
|
|
158989
|
+
previewContainerHeight?: number | null | undefined;
|
|
158103
158990
|
showComponentName?: boolean | null | undefined;
|
|
158104
158991
|
showComponentDescription?: boolean | null | undefined;
|
|
158105
158992
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -158266,6 +159153,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158266
159153
|
}[];
|
|
158267
159154
|
} | null | undefined;
|
|
158268
159155
|
imageAlt?: string | null | undefined;
|
|
159156
|
+
openLightbox?: boolean | null | undefined;
|
|
159157
|
+
isBordered?: boolean | null | undefined;
|
|
158269
159158
|
numberOfColumns?: number | null | undefined;
|
|
158270
159159
|
itemBackgroundColor?: {
|
|
158271
159160
|
value: string;
|
|
@@ -158355,6 +159244,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158355
159244
|
imageAlt?: string | null | undefined;
|
|
158356
159245
|
imageCaption?: string | null | undefined;
|
|
158357
159246
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
159247
|
+
openLightbox?: boolean | null | undefined;
|
|
159248
|
+
isBordered?: boolean | null | undefined;
|
|
158358
159249
|
} | null | undefined;
|
|
158359
159250
|
customBlockKey?: string | null | undefined;
|
|
158360
159251
|
customBlockProperties?: {
|
|
@@ -158372,6 +159263,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158372
159263
|
backgroundColor?: {
|
|
158373
159264
|
value: string;
|
|
158374
159265
|
} | null | undefined;
|
|
159266
|
+
previewContainerHeight?: number | null | undefined;
|
|
158375
159267
|
} | null | undefined;
|
|
158376
159268
|
figmaFrames?: {
|
|
158377
159269
|
persistentId: string;
|
|
@@ -158432,10 +159324,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158432
159324
|
selectedThemeIds: string[];
|
|
158433
159325
|
}[] | null | undefined;
|
|
158434
159326
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
159327
|
+
tokenBlockConfig?: {
|
|
159328
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
159329
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
159330
|
+
} | null | undefined;
|
|
159331
|
+
assetBlockConfig?: {
|
|
159332
|
+
showSearch?: boolean | null | undefined;
|
|
159333
|
+
showAssetDescription?: boolean | null | undefined;
|
|
159334
|
+
} | null | undefined;
|
|
158435
159335
|
figmaComponentsBlockConfig?: {
|
|
158436
159336
|
backgroundColor?: {
|
|
158437
159337
|
value: string;
|
|
158438
159338
|
} | null | undefined;
|
|
159339
|
+
previewContainerHeight?: number | null | undefined;
|
|
158439
159340
|
showComponentName?: boolean | null | undefined;
|
|
158440
159341
|
showComponentDescription?: boolean | null | undefined;
|
|
158441
159342
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -158511,6 +159412,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158511
159412
|
}[];
|
|
158512
159413
|
} | null | undefined;
|
|
158513
159414
|
imageAlt?: string | null | undefined;
|
|
159415
|
+
openLightbox?: boolean | null | undefined;
|
|
159416
|
+
isBordered?: boolean | null | undefined;
|
|
158514
159417
|
numberOfColumns?: number | null | undefined;
|
|
158515
159418
|
itemBackgroundColor?: {
|
|
158516
159419
|
value: string;
|
|
@@ -158600,6 +159503,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158600
159503
|
imageAlt?: string | null | undefined;
|
|
158601
159504
|
imageCaption?: string | null | undefined;
|
|
158602
159505
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
159506
|
+
openLightbox?: boolean | null | undefined;
|
|
159507
|
+
isBordered?: boolean | null | undefined;
|
|
158603
159508
|
} | null | undefined;
|
|
158604
159509
|
customBlockKey?: string | null | undefined;
|
|
158605
159510
|
customBlockProperties?: {
|
|
@@ -158617,6 +159522,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158617
159522
|
backgroundColor?: {
|
|
158618
159523
|
value: string;
|
|
158619
159524
|
} | null | undefined;
|
|
159525
|
+
previewContainerHeight?: number | null | undefined;
|
|
158620
159526
|
} | null | undefined;
|
|
158621
159527
|
figmaFrames?: {
|
|
158622
159528
|
persistentId: string;
|
|
@@ -158677,10 +159583,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158677
159583
|
selectedThemeIds: string[];
|
|
158678
159584
|
}[] | null | undefined;
|
|
158679
159585
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
159586
|
+
tokenBlockConfig?: {
|
|
159587
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
159588
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
159589
|
+
} | null | undefined;
|
|
159590
|
+
assetBlockConfig?: {
|
|
159591
|
+
showSearch?: boolean | null | undefined;
|
|
159592
|
+
showAssetDescription?: boolean | null | undefined;
|
|
159593
|
+
} | null | undefined;
|
|
158680
159594
|
figmaComponentsBlockConfig?: {
|
|
158681
159595
|
backgroundColor?: {
|
|
158682
159596
|
value: string;
|
|
158683
159597
|
} | null | undefined;
|
|
159598
|
+
previewContainerHeight?: number | null | undefined;
|
|
158684
159599
|
showComponentName?: boolean | null | undefined;
|
|
158685
159600
|
showComponentDescription?: boolean | null | undefined;
|
|
158686
159601
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -158876,6 +159791,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158876
159791
|
}[];
|
|
158877
159792
|
} | null | undefined;
|
|
158878
159793
|
imageAlt?: string | null | undefined;
|
|
159794
|
+
openLightbox?: boolean | null | undefined;
|
|
159795
|
+
isBordered?: boolean | null | undefined;
|
|
158879
159796
|
numberOfColumns?: number | null | undefined;
|
|
158880
159797
|
itemBackgroundColor?: {
|
|
158881
159798
|
value: string;
|
|
@@ -158965,6 +159882,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158965
159882
|
imageAlt?: string | null | undefined;
|
|
158966
159883
|
imageCaption?: string | null | undefined;
|
|
158967
159884
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
159885
|
+
openLightbox?: boolean | null | undefined;
|
|
159886
|
+
isBordered?: boolean | null | undefined;
|
|
158968
159887
|
} | null | undefined;
|
|
158969
159888
|
customBlockKey?: string | null | undefined;
|
|
158970
159889
|
customBlockProperties?: {
|
|
@@ -158982,6 +159901,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158982
159901
|
backgroundColor?: {
|
|
158983
159902
|
value: string;
|
|
158984
159903
|
} | null | undefined;
|
|
159904
|
+
previewContainerHeight?: number | null | undefined;
|
|
158985
159905
|
} | null | undefined;
|
|
158986
159906
|
figmaFrames?: {
|
|
158987
159907
|
persistentId: string;
|
|
@@ -159042,10 +159962,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159042
159962
|
selectedThemeIds: string[];
|
|
159043
159963
|
}[] | null | undefined;
|
|
159044
159964
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
159965
|
+
tokenBlockConfig?: {
|
|
159966
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
159967
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
159968
|
+
} | null | undefined;
|
|
159969
|
+
assetBlockConfig?: {
|
|
159970
|
+
showSearch?: boolean | null | undefined;
|
|
159971
|
+
showAssetDescription?: boolean | null | undefined;
|
|
159972
|
+
} | null | undefined;
|
|
159045
159973
|
figmaComponentsBlockConfig?: {
|
|
159046
159974
|
backgroundColor?: {
|
|
159047
159975
|
value: string;
|
|
159048
159976
|
} | null | undefined;
|
|
159977
|
+
previewContainerHeight?: number | null | undefined;
|
|
159049
159978
|
showComponentName?: boolean | null | undefined;
|
|
159050
159979
|
showComponentDescription?: boolean | null | undefined;
|
|
159051
159980
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -159121,6 +160050,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159121
160050
|
}[];
|
|
159122
160051
|
} | null | undefined;
|
|
159123
160052
|
imageAlt?: string | null | undefined;
|
|
160053
|
+
openLightbox?: boolean | null | undefined;
|
|
160054
|
+
isBordered?: boolean | null | undefined;
|
|
159124
160055
|
numberOfColumns?: number | null | undefined;
|
|
159125
160056
|
itemBackgroundColor?: {
|
|
159126
160057
|
value: string;
|
|
@@ -159210,6 +160141,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159210
160141
|
imageAlt?: string | null | undefined;
|
|
159211
160142
|
imageCaption?: string | null | undefined;
|
|
159212
160143
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
160144
|
+
openLightbox?: boolean | null | undefined;
|
|
160145
|
+
isBordered?: boolean | null | undefined;
|
|
159213
160146
|
} | null | undefined;
|
|
159214
160147
|
customBlockKey?: string | null | undefined;
|
|
159215
160148
|
customBlockProperties?: {
|
|
@@ -159227,6 +160160,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159227
160160
|
backgroundColor?: {
|
|
159228
160161
|
value: string;
|
|
159229
160162
|
} | null | undefined;
|
|
160163
|
+
previewContainerHeight?: number | null | undefined;
|
|
159230
160164
|
} | null | undefined;
|
|
159231
160165
|
figmaFrames?: {
|
|
159232
160166
|
persistentId: string;
|
|
@@ -159287,10 +160221,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159287
160221
|
selectedThemeIds: string[];
|
|
159288
160222
|
}[] | null | undefined;
|
|
159289
160223
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
160224
|
+
tokenBlockConfig?: {
|
|
160225
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
160226
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
160227
|
+
} | null | undefined;
|
|
160228
|
+
assetBlockConfig?: {
|
|
160229
|
+
showSearch?: boolean | null | undefined;
|
|
160230
|
+
showAssetDescription?: boolean | null | undefined;
|
|
160231
|
+
} | null | undefined;
|
|
159290
160232
|
figmaComponentsBlockConfig?: {
|
|
159291
160233
|
backgroundColor?: {
|
|
159292
160234
|
value: string;
|
|
159293
160235
|
} | null | undefined;
|
|
160236
|
+
previewContainerHeight?: number | null | undefined;
|
|
159294
160237
|
showComponentName?: boolean | null | undefined;
|
|
159295
160238
|
showComponentDescription?: boolean | null | undefined;
|
|
159296
160239
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -160217,6 +161160,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160217
161160
|
}[];
|
|
160218
161161
|
} | null | undefined;
|
|
160219
161162
|
imageAlt?: string | null | undefined;
|
|
161163
|
+
openLightbox?: boolean | null | undefined;
|
|
161164
|
+
isBordered?: boolean | null | undefined;
|
|
160220
161165
|
numberOfColumns?: number | null | undefined;
|
|
160221
161166
|
itemBackgroundColor?: {
|
|
160222
161167
|
value: string;
|
|
@@ -160306,6 +161251,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160306
161251
|
imageAlt?: string | null | undefined;
|
|
160307
161252
|
imageCaption?: string | null | undefined;
|
|
160308
161253
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
161254
|
+
openLightbox?: boolean | null | undefined;
|
|
161255
|
+
isBordered?: boolean | null | undefined;
|
|
160309
161256
|
} | null | undefined;
|
|
160310
161257
|
customBlockKey?: string | null | undefined;
|
|
160311
161258
|
customBlockProperties?: {
|
|
@@ -160323,6 +161270,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160323
161270
|
backgroundColor?: {
|
|
160324
161271
|
value: string;
|
|
160325
161272
|
} | null | undefined;
|
|
161273
|
+
previewContainerHeight?: number | null | undefined;
|
|
160326
161274
|
} | null | undefined;
|
|
160327
161275
|
figmaFrames?: {
|
|
160328
161276
|
persistentId: string;
|
|
@@ -160383,10 +161331,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160383
161331
|
selectedThemeIds: string[];
|
|
160384
161332
|
}[] | null | undefined;
|
|
160385
161333
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
161334
|
+
tokenBlockConfig?: {
|
|
161335
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
161336
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
161337
|
+
} | null | undefined;
|
|
161338
|
+
assetBlockConfig?: {
|
|
161339
|
+
showSearch?: boolean | null | undefined;
|
|
161340
|
+
showAssetDescription?: boolean | null | undefined;
|
|
161341
|
+
} | null | undefined;
|
|
160386
161342
|
figmaComponentsBlockConfig?: {
|
|
160387
161343
|
backgroundColor?: {
|
|
160388
161344
|
value: string;
|
|
160389
161345
|
} | null | undefined;
|
|
161346
|
+
previewContainerHeight?: number | null | undefined;
|
|
160390
161347
|
showComponentName?: boolean | null | undefined;
|
|
160391
161348
|
showComponentDescription?: boolean | null | undefined;
|
|
160392
161349
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -160462,6 +161419,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160462
161419
|
}[];
|
|
160463
161420
|
} | null | undefined;
|
|
160464
161421
|
imageAlt?: string | null | undefined;
|
|
161422
|
+
openLightbox?: boolean | null | undefined;
|
|
161423
|
+
isBordered?: boolean | null | undefined;
|
|
160465
161424
|
numberOfColumns?: number | null | undefined;
|
|
160466
161425
|
itemBackgroundColor?: {
|
|
160467
161426
|
value: string;
|
|
@@ -160551,6 +161510,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160551
161510
|
imageAlt?: string | null | undefined;
|
|
160552
161511
|
imageCaption?: string | null | undefined;
|
|
160553
161512
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
161513
|
+
openLightbox?: boolean | null | undefined;
|
|
161514
|
+
isBordered?: boolean | null | undefined;
|
|
160554
161515
|
} | null | undefined;
|
|
160555
161516
|
customBlockKey?: string | null | undefined;
|
|
160556
161517
|
customBlockProperties?: {
|
|
@@ -160568,6 +161529,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160568
161529
|
backgroundColor?: {
|
|
160569
161530
|
value: string;
|
|
160570
161531
|
} | null | undefined;
|
|
161532
|
+
previewContainerHeight?: number | null | undefined;
|
|
160571
161533
|
} | null | undefined;
|
|
160572
161534
|
figmaFrames?: {
|
|
160573
161535
|
persistentId: string;
|
|
@@ -160628,10 +161590,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160628
161590
|
selectedThemeIds: string[];
|
|
160629
161591
|
}[] | null | undefined;
|
|
160630
161592
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
161593
|
+
tokenBlockConfig?: {
|
|
161594
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
161595
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
161596
|
+
} | null | undefined;
|
|
161597
|
+
assetBlockConfig?: {
|
|
161598
|
+
showSearch?: boolean | null | undefined;
|
|
161599
|
+
showAssetDescription?: boolean | null | undefined;
|
|
161600
|
+
} | null | undefined;
|
|
160631
161601
|
figmaComponentsBlockConfig?: {
|
|
160632
161602
|
backgroundColor?: {
|
|
160633
161603
|
value: string;
|
|
160634
161604
|
} | null | undefined;
|
|
161605
|
+
previewContainerHeight?: number | null | undefined;
|
|
160635
161606
|
showComponentName?: boolean | null | undefined;
|
|
160636
161607
|
showComponentDescription?: boolean | null | undefined;
|
|
160637
161608
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -160764,6 +161735,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160764
161735
|
}[];
|
|
160765
161736
|
} | null | undefined;
|
|
160766
161737
|
imageAlt?: string | null | undefined;
|
|
161738
|
+
openLightbox?: boolean | null | undefined;
|
|
161739
|
+
isBordered?: boolean | null | undefined;
|
|
160767
161740
|
numberOfColumns?: number | null | undefined;
|
|
160768
161741
|
itemBackgroundColor?: {
|
|
160769
161742
|
value: string;
|
|
@@ -160853,6 +161826,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160853
161826
|
imageAlt?: string | null | undefined;
|
|
160854
161827
|
imageCaption?: string | null | undefined;
|
|
160855
161828
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
161829
|
+
openLightbox?: boolean | null | undefined;
|
|
161830
|
+
isBordered?: boolean | null | undefined;
|
|
160856
161831
|
} | null | undefined;
|
|
160857
161832
|
customBlockKey?: string | null | undefined;
|
|
160858
161833
|
customBlockProperties?: {
|
|
@@ -160870,6 +161845,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160870
161845
|
backgroundColor?: {
|
|
160871
161846
|
value: string;
|
|
160872
161847
|
} | null | undefined;
|
|
161848
|
+
previewContainerHeight?: number | null | undefined;
|
|
160873
161849
|
} | null | undefined;
|
|
160874
161850
|
figmaFrames?: {
|
|
160875
161851
|
persistentId: string;
|
|
@@ -160930,10 +161906,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
160930
161906
|
selectedThemeIds: string[];
|
|
160931
161907
|
}[] | null | undefined;
|
|
160932
161908
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
161909
|
+
tokenBlockConfig?: {
|
|
161910
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
161911
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
161912
|
+
} | null | undefined;
|
|
161913
|
+
assetBlockConfig?: {
|
|
161914
|
+
showSearch?: boolean | null | undefined;
|
|
161915
|
+
showAssetDescription?: boolean | null | undefined;
|
|
161916
|
+
} | null | undefined;
|
|
160933
161917
|
figmaComponentsBlockConfig?: {
|
|
160934
161918
|
backgroundColor?: {
|
|
160935
161919
|
value: string;
|
|
160936
161920
|
} | null | undefined;
|
|
161921
|
+
previewContainerHeight?: number | null | undefined;
|
|
160937
161922
|
showComponentName?: boolean | null | undefined;
|
|
160938
161923
|
showComponentDescription?: boolean | null | undefined;
|
|
160939
161924
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -161009,6 +161994,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
161009
161994
|
}[];
|
|
161010
161995
|
} | null | undefined;
|
|
161011
161996
|
imageAlt?: string | null | undefined;
|
|
161997
|
+
openLightbox?: boolean | null | undefined;
|
|
161998
|
+
isBordered?: boolean | null | undefined;
|
|
161012
161999
|
numberOfColumns?: number | null | undefined;
|
|
161013
162000
|
itemBackgroundColor?: {
|
|
161014
162001
|
value: string;
|
|
@@ -161098,6 +162085,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
161098
162085
|
imageAlt?: string | null | undefined;
|
|
161099
162086
|
imageCaption?: string | null | undefined;
|
|
161100
162087
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
162088
|
+
openLightbox?: boolean | null | undefined;
|
|
162089
|
+
isBordered?: boolean | null | undefined;
|
|
161101
162090
|
} | null | undefined;
|
|
161102
162091
|
customBlockKey?: string | null | undefined;
|
|
161103
162092
|
customBlockProperties?: {
|
|
@@ -161115,6 +162104,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
161115
162104
|
backgroundColor?: {
|
|
161116
162105
|
value: string;
|
|
161117
162106
|
} | null | undefined;
|
|
162107
|
+
previewContainerHeight?: number | null | undefined;
|
|
161118
162108
|
} | null | undefined;
|
|
161119
162109
|
figmaFrames?: {
|
|
161120
162110
|
persistentId: string;
|
|
@@ -161175,10 +162165,19 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
161175
162165
|
selectedThemeIds: string[];
|
|
161176
162166
|
}[] | null | undefined;
|
|
161177
162167
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
162168
|
+
tokenBlockConfig?: {
|
|
162169
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
162170
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
162171
|
+
} | null | undefined;
|
|
162172
|
+
assetBlockConfig?: {
|
|
162173
|
+
showSearch?: boolean | null | undefined;
|
|
162174
|
+
showAssetDescription?: boolean | null | undefined;
|
|
162175
|
+
} | null | undefined;
|
|
161178
162176
|
figmaComponentsBlockConfig?: {
|
|
161179
162177
|
backgroundColor?: {
|
|
161180
162178
|
value: string;
|
|
161181
162179
|
} | null | undefined;
|
|
162180
|
+
previewContainerHeight?: number | null | undefined;
|
|
161182
162181
|
showComponentName?: boolean | null | undefined;
|
|
161183
162182
|
showComponentDescription?: boolean | null | undefined;
|
|
161184
162183
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -162689,6 +163688,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162689
163688
|
}[];
|
|
162690
163689
|
} | null | undefined;
|
|
162691
163690
|
imageAlt?: string | null | undefined;
|
|
163691
|
+
openLightbox?: boolean | null | undefined;
|
|
163692
|
+
isBordered?: boolean | null | undefined;
|
|
162692
163693
|
numberOfColumns?: number | null | undefined;
|
|
162693
163694
|
itemBackgroundColor?: {
|
|
162694
163695
|
value: string;
|
|
@@ -162778,6 +163779,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162778
163779
|
imageAlt?: string | null | undefined;
|
|
162779
163780
|
imageCaption?: string | null | undefined;
|
|
162780
163781
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
163782
|
+
openLightbox?: boolean | null | undefined;
|
|
163783
|
+
isBordered?: boolean | null | undefined;
|
|
162781
163784
|
} | null | undefined;
|
|
162782
163785
|
customBlockKey?: string | null | undefined;
|
|
162783
163786
|
customBlockProperties?: {
|
|
@@ -162795,6 +163798,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162795
163798
|
backgroundColor?: {
|
|
162796
163799
|
value: string;
|
|
162797
163800
|
} | null | undefined;
|
|
163801
|
+
previewContainerHeight?: number | null | undefined;
|
|
162798
163802
|
} | null | undefined;
|
|
162799
163803
|
figmaFrames?: {
|
|
162800
163804
|
persistentId: string;
|
|
@@ -162855,10 +163859,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162855
163859
|
selectedThemeIds: string[];
|
|
162856
163860
|
}[] | null | undefined;
|
|
162857
163861
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
163862
|
+
tokenBlockConfig?: {
|
|
163863
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
163864
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
163865
|
+
} | null | undefined;
|
|
163866
|
+
assetBlockConfig?: {
|
|
163867
|
+
showSearch?: boolean | null | undefined;
|
|
163868
|
+
showAssetDescription?: boolean | null | undefined;
|
|
163869
|
+
} | null | undefined;
|
|
162858
163870
|
figmaComponentsBlockConfig?: {
|
|
162859
163871
|
backgroundColor?: {
|
|
162860
163872
|
value: string;
|
|
162861
163873
|
} | null | undefined;
|
|
163874
|
+
previewContainerHeight?: number | null | undefined;
|
|
162862
163875
|
showComponentName?: boolean | null | undefined;
|
|
162863
163876
|
showComponentDescription?: boolean | null | undefined;
|
|
162864
163877
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -162934,6 +163947,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162934
163947
|
}[];
|
|
162935
163948
|
} | null | undefined;
|
|
162936
163949
|
imageAlt?: string | null | undefined;
|
|
163950
|
+
openLightbox?: boolean | null | undefined;
|
|
163951
|
+
isBordered?: boolean | null | undefined;
|
|
162937
163952
|
numberOfColumns?: number | null | undefined;
|
|
162938
163953
|
itemBackgroundColor?: {
|
|
162939
163954
|
value: string;
|
|
@@ -163023,6 +164038,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163023
164038
|
imageAlt?: string | null | undefined;
|
|
163024
164039
|
imageCaption?: string | null | undefined;
|
|
163025
164040
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
164041
|
+
openLightbox?: boolean | null | undefined;
|
|
164042
|
+
isBordered?: boolean | null | undefined;
|
|
163026
164043
|
} | null | undefined;
|
|
163027
164044
|
customBlockKey?: string | null | undefined;
|
|
163028
164045
|
customBlockProperties?: {
|
|
@@ -163040,6 +164057,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163040
164057
|
backgroundColor?: {
|
|
163041
164058
|
value: string;
|
|
163042
164059
|
} | null | undefined;
|
|
164060
|
+
previewContainerHeight?: number | null | undefined;
|
|
163043
164061
|
} | null | undefined;
|
|
163044
164062
|
figmaFrames?: {
|
|
163045
164063
|
persistentId: string;
|
|
@@ -163100,10 +164118,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163100
164118
|
selectedThemeIds: string[];
|
|
163101
164119
|
}[] | null | undefined;
|
|
163102
164120
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
164121
|
+
tokenBlockConfig?: {
|
|
164122
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
164123
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
164124
|
+
} | null | undefined;
|
|
164125
|
+
assetBlockConfig?: {
|
|
164126
|
+
showSearch?: boolean | null | undefined;
|
|
164127
|
+
showAssetDescription?: boolean | null | undefined;
|
|
164128
|
+
} | null | undefined;
|
|
163103
164129
|
figmaComponentsBlockConfig?: {
|
|
163104
164130
|
backgroundColor?: {
|
|
163105
164131
|
value: string;
|
|
163106
164132
|
} | null | undefined;
|
|
164133
|
+
previewContainerHeight?: number | null | undefined;
|
|
163107
164134
|
showComponentName?: boolean | null | undefined;
|
|
163108
164135
|
showComponentDescription?: boolean | null | undefined;
|
|
163109
164136
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -163247,6 +164274,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163247
164274
|
}[];
|
|
163248
164275
|
} | null | undefined;
|
|
163249
164276
|
imageAlt?: string | null | undefined;
|
|
164277
|
+
openLightbox?: boolean | null | undefined;
|
|
164278
|
+
isBordered?: boolean | null | undefined;
|
|
163250
164279
|
numberOfColumns?: number | null | undefined;
|
|
163251
164280
|
itemBackgroundColor?: {
|
|
163252
164281
|
value: string;
|
|
@@ -163336,6 +164365,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163336
164365
|
imageAlt?: string | null | undefined;
|
|
163337
164366
|
imageCaption?: string | null | undefined;
|
|
163338
164367
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
164368
|
+
openLightbox?: boolean | null | undefined;
|
|
164369
|
+
isBordered?: boolean | null | undefined;
|
|
163339
164370
|
} | null | undefined;
|
|
163340
164371
|
customBlockKey?: string | null | undefined;
|
|
163341
164372
|
customBlockProperties?: {
|
|
@@ -163353,6 +164384,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163353
164384
|
backgroundColor?: {
|
|
163354
164385
|
value: string;
|
|
163355
164386
|
} | null | undefined;
|
|
164387
|
+
previewContainerHeight?: number | null | undefined;
|
|
163356
164388
|
} | null | undefined;
|
|
163357
164389
|
figmaFrames?: {
|
|
163358
164390
|
persistentId: string;
|
|
@@ -163413,10 +164445,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163413
164445
|
selectedThemeIds: string[];
|
|
163414
164446
|
}[] | null | undefined;
|
|
163415
164447
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
164448
|
+
tokenBlockConfig?: {
|
|
164449
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
164450
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
164451
|
+
} | null | undefined;
|
|
164452
|
+
assetBlockConfig?: {
|
|
164453
|
+
showSearch?: boolean | null | undefined;
|
|
164454
|
+
showAssetDescription?: boolean | null | undefined;
|
|
164455
|
+
} | null | undefined;
|
|
163416
164456
|
figmaComponentsBlockConfig?: {
|
|
163417
164457
|
backgroundColor?: {
|
|
163418
164458
|
value: string;
|
|
163419
164459
|
} | null | undefined;
|
|
164460
|
+
previewContainerHeight?: number | null | undefined;
|
|
163420
164461
|
showComponentName?: boolean | null | undefined;
|
|
163421
164462
|
showComponentDescription?: boolean | null | undefined;
|
|
163422
164463
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -163492,6 +164533,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163492
164533
|
}[];
|
|
163493
164534
|
} | null | undefined;
|
|
163494
164535
|
imageAlt?: string | null | undefined;
|
|
164536
|
+
openLightbox?: boolean | null | undefined;
|
|
164537
|
+
isBordered?: boolean | null | undefined;
|
|
163495
164538
|
numberOfColumns?: number | null | undefined;
|
|
163496
164539
|
itemBackgroundColor?: {
|
|
163497
164540
|
value: string;
|
|
@@ -163581,6 +164624,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163581
164624
|
imageAlt?: string | null | undefined;
|
|
163582
164625
|
imageCaption?: string | null | undefined;
|
|
163583
164626
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
164627
|
+
openLightbox?: boolean | null | undefined;
|
|
164628
|
+
isBordered?: boolean | null | undefined;
|
|
163584
164629
|
} | null | undefined;
|
|
163585
164630
|
customBlockKey?: string | null | undefined;
|
|
163586
164631
|
customBlockProperties?: {
|
|
@@ -163598,6 +164643,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163598
164643
|
backgroundColor?: {
|
|
163599
164644
|
value: string;
|
|
163600
164645
|
} | null | undefined;
|
|
164646
|
+
previewContainerHeight?: number | null | undefined;
|
|
163601
164647
|
} | null | undefined;
|
|
163602
164648
|
figmaFrames?: {
|
|
163603
164649
|
persistentId: string;
|
|
@@ -163658,10 +164704,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163658
164704
|
selectedThemeIds: string[];
|
|
163659
164705
|
}[] | null | undefined;
|
|
163660
164706
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
164707
|
+
tokenBlockConfig?: {
|
|
164708
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
164709
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
164710
|
+
} | null | undefined;
|
|
164711
|
+
assetBlockConfig?: {
|
|
164712
|
+
showSearch?: boolean | null | undefined;
|
|
164713
|
+
showAssetDescription?: boolean | null | undefined;
|
|
164714
|
+
} | null | undefined;
|
|
163661
164715
|
figmaComponentsBlockConfig?: {
|
|
163662
164716
|
backgroundColor?: {
|
|
163663
164717
|
value: string;
|
|
163664
164718
|
} | null | undefined;
|
|
164719
|
+
previewContainerHeight?: number | null | undefined;
|
|
163665
164720
|
showComponentName?: boolean | null | undefined;
|
|
163666
164721
|
showComponentDescription?: boolean | null | undefined;
|
|
163667
164722
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -163828,6 +164883,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163828
164883
|
}[];
|
|
163829
164884
|
} | null | undefined;
|
|
163830
164885
|
imageAlt?: string | null | undefined;
|
|
164886
|
+
openLightbox?: boolean | null | undefined;
|
|
164887
|
+
isBordered?: boolean | null | undefined;
|
|
163831
164888
|
numberOfColumns?: number | null | undefined;
|
|
163832
164889
|
itemBackgroundColor?: {
|
|
163833
164890
|
value: string;
|
|
@@ -163917,6 +164974,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163917
164974
|
imageAlt?: string | null | undefined;
|
|
163918
164975
|
imageCaption?: string | null | undefined;
|
|
163919
164976
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
164977
|
+
openLightbox?: boolean | null | undefined;
|
|
164978
|
+
isBordered?: boolean | null | undefined;
|
|
163920
164979
|
} | null | undefined;
|
|
163921
164980
|
customBlockKey?: string | null | undefined;
|
|
163922
164981
|
customBlockProperties?: {
|
|
@@ -163934,6 +164993,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163934
164993
|
backgroundColor?: {
|
|
163935
164994
|
value: string;
|
|
163936
164995
|
} | null | undefined;
|
|
164996
|
+
previewContainerHeight?: number | null | undefined;
|
|
163937
164997
|
} | null | undefined;
|
|
163938
164998
|
figmaFrames?: {
|
|
163939
164999
|
persistentId: string;
|
|
@@ -163994,10 +165054,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163994
165054
|
selectedThemeIds: string[];
|
|
163995
165055
|
}[] | null | undefined;
|
|
163996
165056
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
165057
|
+
tokenBlockConfig?: {
|
|
165058
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
165059
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
165060
|
+
} | null | undefined;
|
|
165061
|
+
assetBlockConfig?: {
|
|
165062
|
+
showSearch?: boolean | null | undefined;
|
|
165063
|
+
showAssetDescription?: boolean | null | undefined;
|
|
165064
|
+
} | null | undefined;
|
|
163997
165065
|
figmaComponentsBlockConfig?: {
|
|
163998
165066
|
backgroundColor?: {
|
|
163999
165067
|
value: string;
|
|
164000
165068
|
} | null | undefined;
|
|
165069
|
+
previewContainerHeight?: number | null | undefined;
|
|
164001
165070
|
showComponentName?: boolean | null | undefined;
|
|
164002
165071
|
showComponentDescription?: boolean | null | undefined;
|
|
164003
165072
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -164073,6 +165142,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164073
165142
|
}[];
|
|
164074
165143
|
} | null | undefined;
|
|
164075
165144
|
imageAlt?: string | null | undefined;
|
|
165145
|
+
openLightbox?: boolean | null | undefined;
|
|
165146
|
+
isBordered?: boolean | null | undefined;
|
|
164076
165147
|
numberOfColumns?: number | null | undefined;
|
|
164077
165148
|
itemBackgroundColor?: {
|
|
164078
165149
|
value: string;
|
|
@@ -164162,6 +165233,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164162
165233
|
imageAlt?: string | null | undefined;
|
|
164163
165234
|
imageCaption?: string | null | undefined;
|
|
164164
165235
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
165236
|
+
openLightbox?: boolean | null | undefined;
|
|
165237
|
+
isBordered?: boolean | null | undefined;
|
|
164165
165238
|
} | null | undefined;
|
|
164166
165239
|
customBlockKey?: string | null | undefined;
|
|
164167
165240
|
customBlockProperties?: {
|
|
@@ -164179,6 +165252,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164179
165252
|
backgroundColor?: {
|
|
164180
165253
|
value: string;
|
|
164181
165254
|
} | null | undefined;
|
|
165255
|
+
previewContainerHeight?: number | null | undefined;
|
|
164182
165256
|
} | null | undefined;
|
|
164183
165257
|
figmaFrames?: {
|
|
164184
165258
|
persistentId: string;
|
|
@@ -164239,10 +165313,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164239
165313
|
selectedThemeIds: string[];
|
|
164240
165314
|
}[] | null | undefined;
|
|
164241
165315
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
165316
|
+
tokenBlockConfig?: {
|
|
165317
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
165318
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
165319
|
+
} | null | undefined;
|
|
165320
|
+
assetBlockConfig?: {
|
|
165321
|
+
showSearch?: boolean | null | undefined;
|
|
165322
|
+
showAssetDescription?: boolean | null | undefined;
|
|
165323
|
+
} | null | undefined;
|
|
164242
165324
|
figmaComponentsBlockConfig?: {
|
|
164243
165325
|
backgroundColor?: {
|
|
164244
165326
|
value: string;
|
|
164245
165327
|
} | null | undefined;
|
|
165328
|
+
previewContainerHeight?: number | null | undefined;
|
|
164246
165329
|
showComponentName?: boolean | null | undefined;
|
|
164247
165330
|
showComponentDescription?: boolean | null | undefined;
|
|
164248
165331
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -164803,6 +165886,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164803
165886
|
}[];
|
|
164804
165887
|
} | null | undefined;
|
|
164805
165888
|
imageAlt?: string | null | undefined;
|
|
165889
|
+
openLightbox?: boolean | null | undefined;
|
|
165890
|
+
isBordered?: boolean | null | undefined;
|
|
164806
165891
|
numberOfColumns?: number | null | undefined;
|
|
164807
165892
|
itemBackgroundColor?: {
|
|
164808
165893
|
value: string;
|
|
@@ -164892,6 +165977,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164892
165977
|
imageAlt?: string | null | undefined;
|
|
164893
165978
|
imageCaption?: string | null | undefined;
|
|
164894
165979
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
165980
|
+
openLightbox?: boolean | null | undefined;
|
|
165981
|
+
isBordered?: boolean | null | undefined;
|
|
164895
165982
|
} | null | undefined;
|
|
164896
165983
|
customBlockKey?: string | null | undefined;
|
|
164897
165984
|
customBlockProperties?: {
|
|
@@ -164909,6 +165996,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164909
165996
|
backgroundColor?: {
|
|
164910
165997
|
value: string;
|
|
164911
165998
|
} | null | undefined;
|
|
165999
|
+
previewContainerHeight?: number | null | undefined;
|
|
164912
166000
|
} | null | undefined;
|
|
164913
166001
|
figmaFrames?: {
|
|
164914
166002
|
persistentId: string;
|
|
@@ -164969,10 +166057,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
164969
166057
|
selectedThemeIds: string[];
|
|
164970
166058
|
}[] | null | undefined;
|
|
164971
166059
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
166060
|
+
tokenBlockConfig?: {
|
|
166061
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
166062
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
166063
|
+
} | null | undefined;
|
|
166064
|
+
assetBlockConfig?: {
|
|
166065
|
+
showSearch?: boolean | null | undefined;
|
|
166066
|
+
showAssetDescription?: boolean | null | undefined;
|
|
166067
|
+
} | null | undefined;
|
|
164972
166068
|
figmaComponentsBlockConfig?: {
|
|
164973
166069
|
backgroundColor?: {
|
|
164974
166070
|
value: string;
|
|
164975
166071
|
} | null | undefined;
|
|
166072
|
+
previewContainerHeight?: number | null | undefined;
|
|
164976
166073
|
showComponentName?: boolean | null | undefined;
|
|
164977
166074
|
showComponentDescription?: boolean | null | undefined;
|
|
164978
166075
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -165048,6 +166145,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
165048
166145
|
}[];
|
|
165049
166146
|
} | null | undefined;
|
|
165050
166147
|
imageAlt?: string | null | undefined;
|
|
166148
|
+
openLightbox?: boolean | null | undefined;
|
|
166149
|
+
isBordered?: boolean | null | undefined;
|
|
165051
166150
|
numberOfColumns?: number | null | undefined;
|
|
165052
166151
|
itemBackgroundColor?: {
|
|
165053
166152
|
value: string;
|
|
@@ -165137,6 +166236,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
165137
166236
|
imageAlt?: string | null | undefined;
|
|
165138
166237
|
imageCaption?: string | null | undefined;
|
|
165139
166238
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
166239
|
+
openLightbox?: boolean | null | undefined;
|
|
166240
|
+
isBordered?: boolean | null | undefined;
|
|
165140
166241
|
} | null | undefined;
|
|
165141
166242
|
customBlockKey?: string | null | undefined;
|
|
165142
166243
|
customBlockProperties?: {
|
|
@@ -165154,6 +166255,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
165154
166255
|
backgroundColor?: {
|
|
165155
166256
|
value: string;
|
|
165156
166257
|
} | null | undefined;
|
|
166258
|
+
previewContainerHeight?: number | null | undefined;
|
|
165157
166259
|
} | null | undefined;
|
|
165158
166260
|
figmaFrames?: {
|
|
165159
166261
|
persistentId: string;
|
|
@@ -165214,10 +166316,19 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
165214
166316
|
selectedThemeIds: string[];
|
|
165215
166317
|
}[] | null | undefined;
|
|
165216
166318
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
166319
|
+
tokenBlockConfig?: {
|
|
166320
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
166321
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
166322
|
+
} | null | undefined;
|
|
166323
|
+
assetBlockConfig?: {
|
|
166324
|
+
showSearch?: boolean | null | undefined;
|
|
166325
|
+
showAssetDescription?: boolean | null | undefined;
|
|
166326
|
+
} | null | undefined;
|
|
165217
166327
|
figmaComponentsBlockConfig?: {
|
|
165218
166328
|
backgroundColor?: {
|
|
165219
166329
|
value: string;
|
|
165220
166330
|
} | null | undefined;
|
|
166331
|
+
previewContainerHeight?: number | null | undefined;
|
|
165221
166332
|
showComponentName?: boolean | null | undefined;
|
|
165222
166333
|
showComponentDescription?: boolean | null | undefined;
|
|
165223
166334
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -165514,6 +166625,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165514
166625
|
}[];
|
|
165515
166626
|
} | null | undefined;
|
|
165516
166627
|
imageAlt?: string | null | undefined;
|
|
166628
|
+
openLightbox?: boolean | null | undefined;
|
|
166629
|
+
isBordered?: boolean | null | undefined;
|
|
165517
166630
|
numberOfColumns?: number | null | undefined;
|
|
165518
166631
|
itemBackgroundColor?: {
|
|
165519
166632
|
value: string;
|
|
@@ -165603,6 +166716,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165603
166716
|
imageAlt?: string | null | undefined;
|
|
165604
166717
|
imageCaption?: string | null | undefined;
|
|
165605
166718
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
166719
|
+
openLightbox?: boolean | null | undefined;
|
|
166720
|
+
isBordered?: boolean | null | undefined;
|
|
165606
166721
|
} | null | undefined;
|
|
165607
166722
|
customBlockKey?: string | null | undefined;
|
|
165608
166723
|
customBlockProperties?: {
|
|
@@ -165620,6 +166735,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165620
166735
|
backgroundColor?: {
|
|
165621
166736
|
value: string;
|
|
165622
166737
|
} | null | undefined;
|
|
166738
|
+
previewContainerHeight?: number | null | undefined;
|
|
165623
166739
|
} | null | undefined;
|
|
165624
166740
|
figmaFrames?: {
|
|
165625
166741
|
persistentId: string;
|
|
@@ -165680,10 +166796,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165680
166796
|
selectedThemeIds: string[];
|
|
165681
166797
|
}[] | null | undefined;
|
|
165682
166798
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
166799
|
+
tokenBlockConfig?: {
|
|
166800
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
166801
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
166802
|
+
} | null | undefined;
|
|
166803
|
+
assetBlockConfig?: {
|
|
166804
|
+
showSearch?: boolean | null | undefined;
|
|
166805
|
+
showAssetDescription?: boolean | null | undefined;
|
|
166806
|
+
} | null | undefined;
|
|
165683
166807
|
figmaComponentsBlockConfig?: {
|
|
165684
166808
|
backgroundColor?: {
|
|
165685
166809
|
value: string;
|
|
165686
166810
|
} | null | undefined;
|
|
166811
|
+
previewContainerHeight?: number | null | undefined;
|
|
165687
166812
|
showComponentName?: boolean | null | undefined;
|
|
165688
166813
|
showComponentDescription?: boolean | null | undefined;
|
|
165689
166814
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -165759,6 +166884,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165759
166884
|
}[];
|
|
165760
166885
|
} | null | undefined;
|
|
165761
166886
|
imageAlt?: string | null | undefined;
|
|
166887
|
+
openLightbox?: boolean | null | undefined;
|
|
166888
|
+
isBordered?: boolean | null | undefined;
|
|
165762
166889
|
numberOfColumns?: number | null | undefined;
|
|
165763
166890
|
itemBackgroundColor?: {
|
|
165764
166891
|
value: string;
|
|
@@ -165848,6 +166975,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165848
166975
|
imageAlt?: string | null | undefined;
|
|
165849
166976
|
imageCaption?: string | null | undefined;
|
|
165850
166977
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
166978
|
+
openLightbox?: boolean | null | undefined;
|
|
166979
|
+
isBordered?: boolean | null | undefined;
|
|
165851
166980
|
} | null | undefined;
|
|
165852
166981
|
customBlockKey?: string | null | undefined;
|
|
165853
166982
|
customBlockProperties?: {
|
|
@@ -165865,6 +166994,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165865
166994
|
backgroundColor?: {
|
|
165866
166995
|
value: string;
|
|
165867
166996
|
} | null | undefined;
|
|
166997
|
+
previewContainerHeight?: number | null | undefined;
|
|
165868
166998
|
} | null | undefined;
|
|
165869
166999
|
figmaFrames?: {
|
|
165870
167000
|
persistentId: string;
|
|
@@ -165925,10 +167055,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165925
167055
|
selectedThemeIds: string[];
|
|
165926
167056
|
}[] | null | undefined;
|
|
165927
167057
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
167058
|
+
tokenBlockConfig?: {
|
|
167059
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
167060
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
167061
|
+
} | null | undefined;
|
|
167062
|
+
assetBlockConfig?: {
|
|
167063
|
+
showSearch?: boolean | null | undefined;
|
|
167064
|
+
showAssetDescription?: boolean | null | undefined;
|
|
167065
|
+
} | null | undefined;
|
|
165928
167066
|
figmaComponentsBlockConfig?: {
|
|
165929
167067
|
backgroundColor?: {
|
|
165930
167068
|
value: string;
|
|
165931
167069
|
} | null | undefined;
|
|
167070
|
+
previewContainerHeight?: number | null | undefined;
|
|
165932
167071
|
showComponentName?: boolean | null | undefined;
|
|
165933
167072
|
showComponentDescription?: boolean | null | undefined;
|
|
165934
167073
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -166072,6 +167211,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166072
167211
|
}[];
|
|
166073
167212
|
} | null | undefined;
|
|
166074
167213
|
imageAlt?: string | null | undefined;
|
|
167214
|
+
openLightbox?: boolean | null | undefined;
|
|
167215
|
+
isBordered?: boolean | null | undefined;
|
|
166075
167216
|
numberOfColumns?: number | null | undefined;
|
|
166076
167217
|
itemBackgroundColor?: {
|
|
166077
167218
|
value: string;
|
|
@@ -166161,6 +167302,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166161
167302
|
imageAlt?: string | null | undefined;
|
|
166162
167303
|
imageCaption?: string | null | undefined;
|
|
166163
167304
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
167305
|
+
openLightbox?: boolean | null | undefined;
|
|
167306
|
+
isBordered?: boolean | null | undefined;
|
|
166164
167307
|
} | null | undefined;
|
|
166165
167308
|
customBlockKey?: string | null | undefined;
|
|
166166
167309
|
customBlockProperties?: {
|
|
@@ -166178,6 +167321,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166178
167321
|
backgroundColor?: {
|
|
166179
167322
|
value: string;
|
|
166180
167323
|
} | null | undefined;
|
|
167324
|
+
previewContainerHeight?: number | null | undefined;
|
|
166181
167325
|
} | null | undefined;
|
|
166182
167326
|
figmaFrames?: {
|
|
166183
167327
|
persistentId: string;
|
|
@@ -166238,10 +167382,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166238
167382
|
selectedThemeIds: string[];
|
|
166239
167383
|
}[] | null | undefined;
|
|
166240
167384
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
167385
|
+
tokenBlockConfig?: {
|
|
167386
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
167387
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
167388
|
+
} | null | undefined;
|
|
167389
|
+
assetBlockConfig?: {
|
|
167390
|
+
showSearch?: boolean | null | undefined;
|
|
167391
|
+
showAssetDescription?: boolean | null | undefined;
|
|
167392
|
+
} | null | undefined;
|
|
166241
167393
|
figmaComponentsBlockConfig?: {
|
|
166242
167394
|
backgroundColor?: {
|
|
166243
167395
|
value: string;
|
|
166244
167396
|
} | null | undefined;
|
|
167397
|
+
previewContainerHeight?: number | null | undefined;
|
|
166245
167398
|
showComponentName?: boolean | null | undefined;
|
|
166246
167399
|
showComponentDescription?: boolean | null | undefined;
|
|
166247
167400
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -166317,6 +167470,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166317
167470
|
}[];
|
|
166318
167471
|
} | null | undefined;
|
|
166319
167472
|
imageAlt?: string | null | undefined;
|
|
167473
|
+
openLightbox?: boolean | null | undefined;
|
|
167474
|
+
isBordered?: boolean | null | undefined;
|
|
166320
167475
|
numberOfColumns?: number | null | undefined;
|
|
166321
167476
|
itemBackgroundColor?: {
|
|
166322
167477
|
value: string;
|
|
@@ -166406,6 +167561,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166406
167561
|
imageAlt?: string | null | undefined;
|
|
166407
167562
|
imageCaption?: string | null | undefined;
|
|
166408
167563
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
167564
|
+
openLightbox?: boolean | null | undefined;
|
|
167565
|
+
isBordered?: boolean | null | undefined;
|
|
166409
167566
|
} | null | undefined;
|
|
166410
167567
|
customBlockKey?: string | null | undefined;
|
|
166411
167568
|
customBlockProperties?: {
|
|
@@ -166423,6 +167580,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166423
167580
|
backgroundColor?: {
|
|
166424
167581
|
value: string;
|
|
166425
167582
|
} | null | undefined;
|
|
167583
|
+
previewContainerHeight?: number | null | undefined;
|
|
166426
167584
|
} | null | undefined;
|
|
166427
167585
|
figmaFrames?: {
|
|
166428
167586
|
persistentId: string;
|
|
@@ -166483,10 +167641,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166483
167641
|
selectedThemeIds: string[];
|
|
166484
167642
|
}[] | null | undefined;
|
|
166485
167643
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
167644
|
+
tokenBlockConfig?: {
|
|
167645
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
167646
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
167647
|
+
} | null | undefined;
|
|
167648
|
+
assetBlockConfig?: {
|
|
167649
|
+
showSearch?: boolean | null | undefined;
|
|
167650
|
+
showAssetDescription?: boolean | null | undefined;
|
|
167651
|
+
} | null | undefined;
|
|
166486
167652
|
figmaComponentsBlockConfig?: {
|
|
166487
167653
|
backgroundColor?: {
|
|
166488
167654
|
value: string;
|
|
166489
167655
|
} | null | undefined;
|
|
167656
|
+
previewContainerHeight?: number | null | undefined;
|
|
166490
167657
|
showComponentName?: boolean | null | undefined;
|
|
166491
167658
|
showComponentDescription?: boolean | null | undefined;
|
|
166492
167659
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -166653,6 +167820,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166653
167820
|
}[];
|
|
166654
167821
|
} | null | undefined;
|
|
166655
167822
|
imageAlt?: string | null | undefined;
|
|
167823
|
+
openLightbox?: boolean | null | undefined;
|
|
167824
|
+
isBordered?: boolean | null | undefined;
|
|
166656
167825
|
numberOfColumns?: number | null | undefined;
|
|
166657
167826
|
itemBackgroundColor?: {
|
|
166658
167827
|
value: string;
|
|
@@ -166742,6 +167911,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166742
167911
|
imageAlt?: string | null | undefined;
|
|
166743
167912
|
imageCaption?: string | null | undefined;
|
|
166744
167913
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
167914
|
+
openLightbox?: boolean | null | undefined;
|
|
167915
|
+
isBordered?: boolean | null | undefined;
|
|
166745
167916
|
} | null | undefined;
|
|
166746
167917
|
customBlockKey?: string | null | undefined;
|
|
166747
167918
|
customBlockProperties?: {
|
|
@@ -166759,6 +167930,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166759
167930
|
backgroundColor?: {
|
|
166760
167931
|
value: string;
|
|
166761
167932
|
} | null | undefined;
|
|
167933
|
+
previewContainerHeight?: number | null | undefined;
|
|
166762
167934
|
} | null | undefined;
|
|
166763
167935
|
figmaFrames?: {
|
|
166764
167936
|
persistentId: string;
|
|
@@ -166819,10 +167991,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166819
167991
|
selectedThemeIds: string[];
|
|
166820
167992
|
}[] | null | undefined;
|
|
166821
167993
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
167994
|
+
tokenBlockConfig?: {
|
|
167995
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
167996
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
167997
|
+
} | null | undefined;
|
|
167998
|
+
assetBlockConfig?: {
|
|
167999
|
+
showSearch?: boolean | null | undefined;
|
|
168000
|
+
showAssetDescription?: boolean | null | undefined;
|
|
168001
|
+
} | null | undefined;
|
|
166822
168002
|
figmaComponentsBlockConfig?: {
|
|
166823
168003
|
backgroundColor?: {
|
|
166824
168004
|
value: string;
|
|
166825
168005
|
} | null | undefined;
|
|
168006
|
+
previewContainerHeight?: number | null | undefined;
|
|
166826
168007
|
showComponentName?: boolean | null | undefined;
|
|
166827
168008
|
showComponentDescription?: boolean | null | undefined;
|
|
166828
168009
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -166898,6 +168079,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166898
168079
|
}[];
|
|
166899
168080
|
} | null | undefined;
|
|
166900
168081
|
imageAlt?: string | null | undefined;
|
|
168082
|
+
openLightbox?: boolean | null | undefined;
|
|
168083
|
+
isBordered?: boolean | null | undefined;
|
|
166901
168084
|
numberOfColumns?: number | null | undefined;
|
|
166902
168085
|
itemBackgroundColor?: {
|
|
166903
168086
|
value: string;
|
|
@@ -166987,6 +168170,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
166987
168170
|
imageAlt?: string | null | undefined;
|
|
166988
168171
|
imageCaption?: string | null | undefined;
|
|
166989
168172
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
168173
|
+
openLightbox?: boolean | null | undefined;
|
|
168174
|
+
isBordered?: boolean | null | undefined;
|
|
166990
168175
|
} | null | undefined;
|
|
166991
168176
|
customBlockKey?: string | null | undefined;
|
|
166992
168177
|
customBlockProperties?: {
|
|
@@ -167004,6 +168189,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
167004
168189
|
backgroundColor?: {
|
|
167005
168190
|
value: string;
|
|
167006
168191
|
} | null | undefined;
|
|
168192
|
+
previewContainerHeight?: number | null | undefined;
|
|
167007
168193
|
} | null | undefined;
|
|
167008
168194
|
figmaFrames?: {
|
|
167009
168195
|
persistentId: string;
|
|
@@ -167064,10 +168250,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
167064
168250
|
selectedThemeIds: string[];
|
|
167065
168251
|
}[] | null | undefined;
|
|
167066
168252
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
168253
|
+
tokenBlockConfig?: {
|
|
168254
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
168255
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
168256
|
+
} | null | undefined;
|
|
168257
|
+
assetBlockConfig?: {
|
|
168258
|
+
showSearch?: boolean | null | undefined;
|
|
168259
|
+
showAssetDescription?: boolean | null | undefined;
|
|
168260
|
+
} | null | undefined;
|
|
167067
168261
|
figmaComponentsBlockConfig?: {
|
|
167068
168262
|
backgroundColor?: {
|
|
167069
168263
|
value: string;
|
|
167070
168264
|
} | null | undefined;
|
|
168265
|
+
previewContainerHeight?: number | null | undefined;
|
|
167071
168266
|
showComponentName?: boolean | null | undefined;
|
|
167072
168267
|
showComponentDescription?: boolean | null | undefined;
|
|
167073
168268
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -168942,6 +170137,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
168942
170137
|
}[];
|
|
168943
170138
|
} | null | undefined;
|
|
168944
170139
|
imageAlt?: string | null | undefined;
|
|
170140
|
+
openLightbox?: boolean | null | undefined;
|
|
170141
|
+
isBordered?: boolean | null | undefined;
|
|
168945
170142
|
numberOfColumns?: number | null | undefined;
|
|
168946
170143
|
itemBackgroundColor?: {
|
|
168947
170144
|
value: string;
|
|
@@ -169031,6 +170228,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169031
170228
|
imageAlt?: string | null | undefined;
|
|
169032
170229
|
imageCaption?: string | null | undefined;
|
|
169033
170230
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
170231
|
+
openLightbox?: boolean | null | undefined;
|
|
170232
|
+
isBordered?: boolean | null | undefined;
|
|
169034
170233
|
} | null | undefined;
|
|
169035
170234
|
customBlockKey?: string | null | undefined;
|
|
169036
170235
|
customBlockProperties?: {
|
|
@@ -169048,6 +170247,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169048
170247
|
backgroundColor?: {
|
|
169049
170248
|
value: string;
|
|
169050
170249
|
} | null | undefined;
|
|
170250
|
+
previewContainerHeight?: number | null | undefined;
|
|
169051
170251
|
} | null | undefined;
|
|
169052
170252
|
figmaFrames?: {
|
|
169053
170253
|
persistentId: string;
|
|
@@ -169108,10 +170308,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169108
170308
|
selectedThemeIds: string[];
|
|
169109
170309
|
}[] | null | undefined;
|
|
169110
170310
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
170311
|
+
tokenBlockConfig?: {
|
|
170312
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
170313
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
170314
|
+
} | null | undefined;
|
|
170315
|
+
assetBlockConfig?: {
|
|
170316
|
+
showSearch?: boolean | null | undefined;
|
|
170317
|
+
showAssetDescription?: boolean | null | undefined;
|
|
170318
|
+
} | null | undefined;
|
|
169111
170319
|
figmaComponentsBlockConfig?: {
|
|
169112
170320
|
backgroundColor?: {
|
|
169113
170321
|
value: string;
|
|
169114
170322
|
} | null | undefined;
|
|
170323
|
+
previewContainerHeight?: number | null | undefined;
|
|
169115
170324
|
showComponentName?: boolean | null | undefined;
|
|
169116
170325
|
showComponentDescription?: boolean | null | undefined;
|
|
169117
170326
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -169187,6 +170396,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169187
170396
|
}[];
|
|
169188
170397
|
} | null | undefined;
|
|
169189
170398
|
imageAlt?: string | null | undefined;
|
|
170399
|
+
openLightbox?: boolean | null | undefined;
|
|
170400
|
+
isBordered?: boolean | null | undefined;
|
|
169190
170401
|
numberOfColumns?: number | null | undefined;
|
|
169191
170402
|
itemBackgroundColor?: {
|
|
169192
170403
|
value: string;
|
|
@@ -169276,6 +170487,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169276
170487
|
imageAlt?: string | null | undefined;
|
|
169277
170488
|
imageCaption?: string | null | undefined;
|
|
169278
170489
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
170490
|
+
openLightbox?: boolean | null | undefined;
|
|
170491
|
+
isBordered?: boolean | null | undefined;
|
|
169279
170492
|
} | null | undefined;
|
|
169280
170493
|
customBlockKey?: string | null | undefined;
|
|
169281
170494
|
customBlockProperties?: {
|
|
@@ -169293,6 +170506,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169293
170506
|
backgroundColor?: {
|
|
169294
170507
|
value: string;
|
|
169295
170508
|
} | null | undefined;
|
|
170509
|
+
previewContainerHeight?: number | null | undefined;
|
|
169296
170510
|
} | null | undefined;
|
|
169297
170511
|
figmaFrames?: {
|
|
169298
170512
|
persistentId: string;
|
|
@@ -169353,10 +170567,19 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
169353
170567
|
selectedThemeIds: string[];
|
|
169354
170568
|
}[] | null | undefined;
|
|
169355
170569
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
170570
|
+
tokenBlockConfig?: {
|
|
170571
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
170572
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
170573
|
+
} | null | undefined;
|
|
170574
|
+
assetBlockConfig?: {
|
|
170575
|
+
showSearch?: boolean | null | undefined;
|
|
170576
|
+
showAssetDescription?: boolean | null | undefined;
|
|
170577
|
+
} | null | undefined;
|
|
169356
170578
|
figmaComponentsBlockConfig?: {
|
|
169357
170579
|
backgroundColor?: {
|
|
169358
170580
|
value: string;
|
|
169359
170581
|
} | null | undefined;
|
|
170582
|
+
previewContainerHeight?: number | null | undefined;
|
|
169360
170583
|
showComponentName?: boolean | null | undefined;
|
|
169361
170584
|
showComponentDescription?: boolean | null | undefined;
|
|
169362
170585
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -169815,6 +171038,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169815
171038
|
}[];
|
|
169816
171039
|
} | null | undefined;
|
|
169817
171040
|
imageAlt?: string | null | undefined;
|
|
171041
|
+
openLightbox?: boolean | null | undefined;
|
|
171042
|
+
isBordered?: boolean | null | undefined;
|
|
169818
171043
|
numberOfColumns?: number | null | undefined;
|
|
169819
171044
|
itemBackgroundColor?: {
|
|
169820
171045
|
value: string;
|
|
@@ -169904,6 +171129,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169904
171129
|
imageAlt?: string | null | undefined;
|
|
169905
171130
|
imageCaption?: string | null | undefined;
|
|
169906
171131
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
171132
|
+
openLightbox?: boolean | null | undefined;
|
|
171133
|
+
isBordered?: boolean | null | undefined;
|
|
169907
171134
|
} | null | undefined;
|
|
169908
171135
|
customBlockKey?: string | null | undefined;
|
|
169909
171136
|
customBlockProperties?: {
|
|
@@ -169921,6 +171148,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169921
171148
|
backgroundColor?: {
|
|
169922
171149
|
value: string;
|
|
169923
171150
|
} | null | undefined;
|
|
171151
|
+
previewContainerHeight?: number | null | undefined;
|
|
169924
171152
|
} | null | undefined;
|
|
169925
171153
|
figmaFrames?: {
|
|
169926
171154
|
persistentId: string;
|
|
@@ -169981,10 +171209,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169981
171209
|
selectedThemeIds: string[];
|
|
169982
171210
|
}[] | null | undefined;
|
|
169983
171211
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
171212
|
+
tokenBlockConfig?: {
|
|
171213
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
171214
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
171215
|
+
} | null | undefined;
|
|
171216
|
+
assetBlockConfig?: {
|
|
171217
|
+
showSearch?: boolean | null | undefined;
|
|
171218
|
+
showAssetDescription?: boolean | null | undefined;
|
|
171219
|
+
} | null | undefined;
|
|
169984
171220
|
figmaComponentsBlockConfig?: {
|
|
169985
171221
|
backgroundColor?: {
|
|
169986
171222
|
value: string;
|
|
169987
171223
|
} | null | undefined;
|
|
171224
|
+
previewContainerHeight?: number | null | undefined;
|
|
169988
171225
|
showComponentName?: boolean | null | undefined;
|
|
169989
171226
|
showComponentDescription?: boolean | null | undefined;
|
|
169990
171227
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -170060,6 +171297,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170060
171297
|
}[];
|
|
170061
171298
|
} | null | undefined;
|
|
170062
171299
|
imageAlt?: string | null | undefined;
|
|
171300
|
+
openLightbox?: boolean | null | undefined;
|
|
171301
|
+
isBordered?: boolean | null | undefined;
|
|
170063
171302
|
numberOfColumns?: number | null | undefined;
|
|
170064
171303
|
itemBackgroundColor?: {
|
|
170065
171304
|
value: string;
|
|
@@ -170149,6 +171388,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170149
171388
|
imageAlt?: string | null | undefined;
|
|
170150
171389
|
imageCaption?: string | null | undefined;
|
|
170151
171390
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
171391
|
+
openLightbox?: boolean | null | undefined;
|
|
171392
|
+
isBordered?: boolean | null | undefined;
|
|
170152
171393
|
} | null | undefined;
|
|
170153
171394
|
customBlockKey?: string | null | undefined;
|
|
170154
171395
|
customBlockProperties?: {
|
|
@@ -170166,6 +171407,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170166
171407
|
backgroundColor?: {
|
|
170167
171408
|
value: string;
|
|
170168
171409
|
} | null | undefined;
|
|
171410
|
+
previewContainerHeight?: number | null | undefined;
|
|
170169
171411
|
} | null | undefined;
|
|
170170
171412
|
figmaFrames?: {
|
|
170171
171413
|
persistentId: string;
|
|
@@ -170226,10 +171468,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170226
171468
|
selectedThemeIds: string[];
|
|
170227
171469
|
}[] | null | undefined;
|
|
170228
171470
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
171471
|
+
tokenBlockConfig?: {
|
|
171472
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
171473
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
171474
|
+
} | null | undefined;
|
|
171475
|
+
assetBlockConfig?: {
|
|
171476
|
+
showSearch?: boolean | null | undefined;
|
|
171477
|
+
showAssetDescription?: boolean | null | undefined;
|
|
171478
|
+
} | null | undefined;
|
|
170229
171479
|
figmaComponentsBlockConfig?: {
|
|
170230
171480
|
backgroundColor?: {
|
|
170231
171481
|
value: string;
|
|
170232
171482
|
} | null | undefined;
|
|
171483
|
+
previewContainerHeight?: number | null | undefined;
|
|
170233
171484
|
showComponentName?: boolean | null | undefined;
|
|
170234
171485
|
showComponentDescription?: boolean | null | undefined;
|
|
170235
171486
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -170373,6 +171624,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170373
171624
|
}[];
|
|
170374
171625
|
} | null | undefined;
|
|
170375
171626
|
imageAlt?: string | null | undefined;
|
|
171627
|
+
openLightbox?: boolean | null | undefined;
|
|
171628
|
+
isBordered?: boolean | null | undefined;
|
|
170376
171629
|
numberOfColumns?: number | null | undefined;
|
|
170377
171630
|
itemBackgroundColor?: {
|
|
170378
171631
|
value: string;
|
|
@@ -170462,6 +171715,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170462
171715
|
imageAlt?: string | null | undefined;
|
|
170463
171716
|
imageCaption?: string | null | undefined;
|
|
170464
171717
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
171718
|
+
openLightbox?: boolean | null | undefined;
|
|
171719
|
+
isBordered?: boolean | null | undefined;
|
|
170465
171720
|
} | null | undefined;
|
|
170466
171721
|
customBlockKey?: string | null | undefined;
|
|
170467
171722
|
customBlockProperties?: {
|
|
@@ -170479,6 +171734,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170479
171734
|
backgroundColor?: {
|
|
170480
171735
|
value: string;
|
|
170481
171736
|
} | null | undefined;
|
|
171737
|
+
previewContainerHeight?: number | null | undefined;
|
|
170482
171738
|
} | null | undefined;
|
|
170483
171739
|
figmaFrames?: {
|
|
170484
171740
|
persistentId: string;
|
|
@@ -170539,10 +171795,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170539
171795
|
selectedThemeIds: string[];
|
|
170540
171796
|
}[] | null | undefined;
|
|
170541
171797
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
171798
|
+
tokenBlockConfig?: {
|
|
171799
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
171800
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
171801
|
+
} | null | undefined;
|
|
171802
|
+
assetBlockConfig?: {
|
|
171803
|
+
showSearch?: boolean | null | undefined;
|
|
171804
|
+
showAssetDescription?: boolean | null | undefined;
|
|
171805
|
+
} | null | undefined;
|
|
170542
171806
|
figmaComponentsBlockConfig?: {
|
|
170543
171807
|
backgroundColor?: {
|
|
170544
171808
|
value: string;
|
|
170545
171809
|
} | null | undefined;
|
|
171810
|
+
previewContainerHeight?: number | null | undefined;
|
|
170546
171811
|
showComponentName?: boolean | null | undefined;
|
|
170547
171812
|
showComponentDescription?: boolean | null | undefined;
|
|
170548
171813
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -170618,6 +171883,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170618
171883
|
}[];
|
|
170619
171884
|
} | null | undefined;
|
|
170620
171885
|
imageAlt?: string | null | undefined;
|
|
171886
|
+
openLightbox?: boolean | null | undefined;
|
|
171887
|
+
isBordered?: boolean | null | undefined;
|
|
170621
171888
|
numberOfColumns?: number | null | undefined;
|
|
170622
171889
|
itemBackgroundColor?: {
|
|
170623
171890
|
value: string;
|
|
@@ -170707,6 +171974,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170707
171974
|
imageAlt?: string | null | undefined;
|
|
170708
171975
|
imageCaption?: string | null | undefined;
|
|
170709
171976
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
171977
|
+
openLightbox?: boolean | null | undefined;
|
|
171978
|
+
isBordered?: boolean | null | undefined;
|
|
170710
171979
|
} | null | undefined;
|
|
170711
171980
|
customBlockKey?: string | null | undefined;
|
|
170712
171981
|
customBlockProperties?: {
|
|
@@ -170724,6 +171993,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170724
171993
|
backgroundColor?: {
|
|
170725
171994
|
value: string;
|
|
170726
171995
|
} | null | undefined;
|
|
171996
|
+
previewContainerHeight?: number | null | undefined;
|
|
170727
171997
|
} | null | undefined;
|
|
170728
171998
|
figmaFrames?: {
|
|
170729
171999
|
persistentId: string;
|
|
@@ -170784,10 +172054,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170784
172054
|
selectedThemeIds: string[];
|
|
170785
172055
|
}[] | null | undefined;
|
|
170786
172056
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
172057
|
+
tokenBlockConfig?: {
|
|
172058
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
172059
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
172060
|
+
} | null | undefined;
|
|
172061
|
+
assetBlockConfig?: {
|
|
172062
|
+
showSearch?: boolean | null | undefined;
|
|
172063
|
+
showAssetDescription?: boolean | null | undefined;
|
|
172064
|
+
} | null | undefined;
|
|
170787
172065
|
figmaComponentsBlockConfig?: {
|
|
170788
172066
|
backgroundColor?: {
|
|
170789
172067
|
value: string;
|
|
170790
172068
|
} | null | undefined;
|
|
172069
|
+
previewContainerHeight?: number | null | undefined;
|
|
170791
172070
|
showComponentName?: boolean | null | undefined;
|
|
170792
172071
|
showComponentDescription?: boolean | null | undefined;
|
|
170793
172072
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -170954,6 +172233,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
170954
172233
|
}[];
|
|
170955
172234
|
} | null | undefined;
|
|
170956
172235
|
imageAlt?: string | null | undefined;
|
|
172236
|
+
openLightbox?: boolean | null | undefined;
|
|
172237
|
+
isBordered?: boolean | null | undefined;
|
|
170957
172238
|
numberOfColumns?: number | null | undefined;
|
|
170958
172239
|
itemBackgroundColor?: {
|
|
170959
172240
|
value: string;
|
|
@@ -171043,6 +172324,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171043
172324
|
imageAlt?: string | null | undefined;
|
|
171044
172325
|
imageCaption?: string | null | undefined;
|
|
171045
172326
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
172327
|
+
openLightbox?: boolean | null | undefined;
|
|
172328
|
+
isBordered?: boolean | null | undefined;
|
|
171046
172329
|
} | null | undefined;
|
|
171047
172330
|
customBlockKey?: string | null | undefined;
|
|
171048
172331
|
customBlockProperties?: {
|
|
@@ -171060,6 +172343,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171060
172343
|
backgroundColor?: {
|
|
171061
172344
|
value: string;
|
|
171062
172345
|
} | null | undefined;
|
|
172346
|
+
previewContainerHeight?: number | null | undefined;
|
|
171063
172347
|
} | null | undefined;
|
|
171064
172348
|
figmaFrames?: {
|
|
171065
172349
|
persistentId: string;
|
|
@@ -171120,10 +172404,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171120
172404
|
selectedThemeIds: string[];
|
|
171121
172405
|
}[] | null | undefined;
|
|
171122
172406
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
172407
|
+
tokenBlockConfig?: {
|
|
172408
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
172409
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
172410
|
+
} | null | undefined;
|
|
172411
|
+
assetBlockConfig?: {
|
|
172412
|
+
showSearch?: boolean | null | undefined;
|
|
172413
|
+
showAssetDescription?: boolean | null | undefined;
|
|
172414
|
+
} | null | undefined;
|
|
171123
172415
|
figmaComponentsBlockConfig?: {
|
|
171124
172416
|
backgroundColor?: {
|
|
171125
172417
|
value: string;
|
|
171126
172418
|
} | null | undefined;
|
|
172419
|
+
previewContainerHeight?: number | null | undefined;
|
|
171127
172420
|
showComponentName?: boolean | null | undefined;
|
|
171128
172421
|
showComponentDescription?: boolean | null | undefined;
|
|
171129
172422
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -171199,6 +172492,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171199
172492
|
}[];
|
|
171200
172493
|
} | null | undefined;
|
|
171201
172494
|
imageAlt?: string | null | undefined;
|
|
172495
|
+
openLightbox?: boolean | null | undefined;
|
|
172496
|
+
isBordered?: boolean | null | undefined;
|
|
171202
172497
|
numberOfColumns?: number | null | undefined;
|
|
171203
172498
|
itemBackgroundColor?: {
|
|
171204
172499
|
value: string;
|
|
@@ -171288,6 +172583,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171288
172583
|
imageAlt?: string | null | undefined;
|
|
171289
172584
|
imageCaption?: string | null | undefined;
|
|
171290
172585
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
172586
|
+
openLightbox?: boolean | null | undefined;
|
|
172587
|
+
isBordered?: boolean | null | undefined;
|
|
171291
172588
|
} | null | undefined;
|
|
171292
172589
|
customBlockKey?: string | null | undefined;
|
|
171293
172590
|
customBlockProperties?: {
|
|
@@ -171305,6 +172602,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171305
172602
|
backgroundColor?: {
|
|
171306
172603
|
value: string;
|
|
171307
172604
|
} | null | undefined;
|
|
172605
|
+
previewContainerHeight?: number | null | undefined;
|
|
171308
172606
|
} | null | undefined;
|
|
171309
172607
|
figmaFrames?: {
|
|
171310
172608
|
persistentId: string;
|
|
@@ -171365,10 +172663,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171365
172663
|
selectedThemeIds: string[];
|
|
171366
172664
|
}[] | null | undefined;
|
|
171367
172665
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
172666
|
+
tokenBlockConfig?: {
|
|
172667
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
172668
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
172669
|
+
} | null | undefined;
|
|
172670
|
+
assetBlockConfig?: {
|
|
172671
|
+
showSearch?: boolean | null | undefined;
|
|
172672
|
+
showAssetDescription?: boolean | null | undefined;
|
|
172673
|
+
} | null | undefined;
|
|
171368
172674
|
figmaComponentsBlockConfig?: {
|
|
171369
172675
|
backgroundColor?: {
|
|
171370
172676
|
value: string;
|
|
171371
172677
|
} | null | undefined;
|
|
172678
|
+
previewContainerHeight?: number | null | undefined;
|
|
171372
172679
|
showComponentName?: boolean | null | undefined;
|
|
171373
172680
|
showComponentDescription?: boolean | null | undefined;
|
|
171374
172681
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -172923,6 +174230,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
172923
174230
|
}[];
|
|
172924
174231
|
} | null | undefined;
|
|
172925
174232
|
imageAlt?: string | null | undefined;
|
|
174233
|
+
openLightbox?: boolean | null | undefined;
|
|
174234
|
+
isBordered?: boolean | null | undefined;
|
|
172926
174235
|
numberOfColumns?: number | null | undefined;
|
|
172927
174236
|
itemBackgroundColor?: {
|
|
172928
174237
|
value: string;
|
|
@@ -173012,6 +174321,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173012
174321
|
imageAlt?: string | null | undefined;
|
|
173013
174322
|
imageCaption?: string | null | undefined;
|
|
173014
174323
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
174324
|
+
openLightbox?: boolean | null | undefined;
|
|
174325
|
+
isBordered?: boolean | null | undefined;
|
|
173015
174326
|
} | null | undefined;
|
|
173016
174327
|
customBlockKey?: string | null | undefined;
|
|
173017
174328
|
customBlockProperties?: {
|
|
@@ -173029,6 +174340,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173029
174340
|
backgroundColor?: {
|
|
173030
174341
|
value: string;
|
|
173031
174342
|
} | null | undefined;
|
|
174343
|
+
previewContainerHeight?: number | null | undefined;
|
|
173032
174344
|
} | null | undefined;
|
|
173033
174345
|
figmaFrames?: {
|
|
173034
174346
|
persistentId: string;
|
|
@@ -173089,10 +174401,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173089
174401
|
selectedThemeIds: string[];
|
|
173090
174402
|
}[] | null | undefined;
|
|
173091
174403
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
174404
|
+
tokenBlockConfig?: {
|
|
174405
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
174406
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
174407
|
+
} | null | undefined;
|
|
174408
|
+
assetBlockConfig?: {
|
|
174409
|
+
showSearch?: boolean | null | undefined;
|
|
174410
|
+
showAssetDescription?: boolean | null | undefined;
|
|
174411
|
+
} | null | undefined;
|
|
173092
174412
|
figmaComponentsBlockConfig?: {
|
|
173093
174413
|
backgroundColor?: {
|
|
173094
174414
|
value: string;
|
|
173095
174415
|
} | null | undefined;
|
|
174416
|
+
previewContainerHeight?: number | null | undefined;
|
|
173096
174417
|
showComponentName?: boolean | null | undefined;
|
|
173097
174418
|
showComponentDescription?: boolean | null | undefined;
|
|
173098
174419
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -173168,6 +174489,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173168
174489
|
}[];
|
|
173169
174490
|
} | null | undefined;
|
|
173170
174491
|
imageAlt?: string | null | undefined;
|
|
174492
|
+
openLightbox?: boolean | null | undefined;
|
|
174493
|
+
isBordered?: boolean | null | undefined;
|
|
173171
174494
|
numberOfColumns?: number | null | undefined;
|
|
173172
174495
|
itemBackgroundColor?: {
|
|
173173
174496
|
value: string;
|
|
@@ -173257,6 +174580,8 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173257
174580
|
imageAlt?: string | null | undefined;
|
|
173258
174581
|
imageCaption?: string | null | undefined;
|
|
173259
174582
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
174583
|
+
openLightbox?: boolean | null | undefined;
|
|
174584
|
+
isBordered?: boolean | null | undefined;
|
|
173260
174585
|
} | null | undefined;
|
|
173261
174586
|
customBlockKey?: string | null | undefined;
|
|
173262
174587
|
customBlockProperties?: {
|
|
@@ -173274,6 +174599,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173274
174599
|
backgroundColor?: {
|
|
173275
174600
|
value: string;
|
|
173276
174601
|
} | null | undefined;
|
|
174602
|
+
previewContainerHeight?: number | null | undefined;
|
|
173277
174603
|
} | null | undefined;
|
|
173278
174604
|
figmaFrames?: {
|
|
173279
174605
|
persistentId: string;
|
|
@@ -173334,10 +174660,19 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
173334
174660
|
selectedThemeIds: string[];
|
|
173335
174661
|
}[] | null | undefined;
|
|
173336
174662
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
174663
|
+
tokenBlockConfig?: {
|
|
174664
|
+
tokenNameFormat?: "Name" | "GroupAndName" | "FullPath" | "CustomProperty" | null | undefined;
|
|
174665
|
+
tokenNameCustomPropertyId?: string | null | undefined;
|
|
174666
|
+
} | null | undefined;
|
|
174667
|
+
assetBlockConfig?: {
|
|
174668
|
+
showSearch?: boolean | null | undefined;
|
|
174669
|
+
showAssetDescription?: boolean | null | undefined;
|
|
174670
|
+
} | null | undefined;
|
|
173337
174671
|
figmaComponentsBlockConfig?: {
|
|
173338
174672
|
backgroundColor?: {
|
|
173339
174673
|
value: string;
|
|
173340
174674
|
} | null | undefined;
|
|
174675
|
+
previewContainerHeight?: number | null | undefined;
|
|
173341
174676
|
showComponentName?: boolean | null | undefined;
|
|
173342
174677
|
showComponentDescription?: boolean | null | undefined;
|
|
173343
174678
|
showPropertyList?: boolean | null | undefined;
|
|
@@ -175511,4 +176846,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
175511
176846
|
token: PersonalAccessToken;
|
|
175512
176847
|
};
|
|
175513
176848
|
|
|
175514
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
176849
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|