@supernova-studio/model 1.9.2 → 1.9.4
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 +2630 -31
- package/dist/index.d.ts +2630 -31
- package/dist/index.js +263 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2670 -2417
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ declare const ContentLoaderPayload: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
173
173
|
}>]>;
|
|
174
174
|
type ContentLoaderPayload = z.infer<typeof ContentLoaderPayload>;
|
|
175
175
|
|
|
176
|
-
type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "MissingIntegrationAccess" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError"
|
|
176
|
+
type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "MissingIntegrationAccess" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError";
|
|
177
177
|
declare class SupernovaException extends Error {
|
|
178
178
|
readonly type: SupernovaExceptionType;
|
|
179
179
|
static wrongFormat(message?: string): SupernovaException;
|
|
@@ -197,9 +197,6 @@ declare class SupernovaException extends Error {
|
|
|
197
197
|
static missingCredentials(message?: string): SupernovaException;
|
|
198
198
|
static thirdPartyError(message?: string): SupernovaException;
|
|
199
199
|
static badRequest(message?: string): SupernovaException;
|
|
200
|
-
static codeMismatch(message?: string): SupernovaException;
|
|
201
|
-
static passwordMismatch(message?: string): SupernovaException;
|
|
202
|
-
static passwordSameAsUsername(message?: string): SupernovaException;
|
|
203
200
|
constructor(type: SupernovaExceptionType, message?: string);
|
|
204
201
|
}
|
|
205
202
|
|
|
@@ -309,6 +306,48 @@ declare const PluginOAuthRequestSchema: z.ZodObject<{
|
|
|
309
306
|
}>;
|
|
310
307
|
type PluginOAuthRequest = z.infer<typeof PluginOAuthRequestSchema>;
|
|
311
308
|
|
|
309
|
+
declare const AuthV2Request: z.ZodObject<{
|
|
310
|
+
code: z.ZodOptional<z.ZodString>;
|
|
311
|
+
state: z.ZodString;
|
|
312
|
+
codeChallenge: z.ZodString;
|
|
313
|
+
codeChallengeMethod: z.ZodString;
|
|
314
|
+
redirectUri: z.ZodString;
|
|
315
|
+
sessionId: z.ZodString;
|
|
316
|
+
}, "strip", z.ZodTypeAny, {
|
|
317
|
+
state: string;
|
|
318
|
+
codeChallenge: string;
|
|
319
|
+
codeChallengeMethod: string;
|
|
320
|
+
redirectUri: string;
|
|
321
|
+
sessionId: string;
|
|
322
|
+
code?: string | undefined;
|
|
323
|
+
}, {
|
|
324
|
+
state: string;
|
|
325
|
+
codeChallenge: string;
|
|
326
|
+
codeChallengeMethod: string;
|
|
327
|
+
redirectUri: string;
|
|
328
|
+
sessionId: string;
|
|
329
|
+
code?: string | undefined;
|
|
330
|
+
}>;
|
|
331
|
+
type AuthV2Request = z.infer<typeof AuthV2Request>;
|
|
332
|
+
|
|
333
|
+
declare const AuthV2Session: z.ZodObject<{
|
|
334
|
+
id: z.ZodString;
|
|
335
|
+
refreshToken: z.ZodString;
|
|
336
|
+
expiresAt: z.ZodDate;
|
|
337
|
+
createdAt: z.ZodDate;
|
|
338
|
+
}, "strip", z.ZodTypeAny, {
|
|
339
|
+
id: string;
|
|
340
|
+
createdAt: Date;
|
|
341
|
+
refreshToken: string;
|
|
342
|
+
expiresAt: Date;
|
|
343
|
+
}, {
|
|
344
|
+
id: string;
|
|
345
|
+
createdAt: Date;
|
|
346
|
+
refreshToken: string;
|
|
347
|
+
expiresAt: Date;
|
|
348
|
+
}>;
|
|
349
|
+
type AuthV2Session = z.infer<typeof AuthV2Session>;
|
|
350
|
+
|
|
312
351
|
declare const CardSchema: z.ZodObject<{
|
|
313
352
|
cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
314
353
|
last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -20460,9 +20499,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20460
20499
|
avatar?: string | undefined;
|
|
20461
20500
|
} | undefined;
|
|
20462
20501
|
username?: string | undefined;
|
|
20502
|
+
refreshToken?: string | undefined;
|
|
20463
20503
|
expiresAt?: Date | undefined;
|
|
20464
20504
|
customUrl?: string | undefined;
|
|
20465
|
-
refreshToken?: string | undefined;
|
|
20466
20505
|
tokenName?: string | undefined;
|
|
20467
20506
|
refreshedAt?: Date | undefined;
|
|
20468
20507
|
appInstallationId?: string | undefined;
|
|
@@ -20490,9 +20529,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20490
20529
|
avatar?: string | undefined;
|
|
20491
20530
|
} | undefined;
|
|
20492
20531
|
username?: string | undefined;
|
|
20532
|
+
refreshToken?: string | undefined;
|
|
20493
20533
|
expiresAt?: Date | undefined;
|
|
20494
20534
|
customUrl?: string | undefined;
|
|
20495
|
-
refreshToken?: string | undefined;
|
|
20496
20535
|
tokenName?: string | undefined;
|
|
20497
20536
|
refreshedAt?: Date | undefined;
|
|
20498
20537
|
appInstallationId?: string | undefined;
|
|
@@ -20526,9 +20565,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20526
20565
|
avatar?: string | undefined;
|
|
20527
20566
|
} | undefined;
|
|
20528
20567
|
username?: string | undefined;
|
|
20568
|
+
refreshToken?: string | undefined;
|
|
20529
20569
|
expiresAt?: Date | undefined;
|
|
20530
20570
|
customUrl?: string | undefined;
|
|
20531
|
-
refreshToken?: string | undefined;
|
|
20532
20571
|
tokenName?: string | undefined;
|
|
20533
20572
|
refreshedAt?: Date | undefined;
|
|
20534
20573
|
appInstallationId?: string | undefined;
|
|
@@ -20562,9 +20601,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
20562
20601
|
avatar?: string | undefined;
|
|
20563
20602
|
} | undefined;
|
|
20564
20603
|
username?: string | undefined;
|
|
20604
|
+
refreshToken?: string | undefined;
|
|
20565
20605
|
expiresAt?: Date | undefined;
|
|
20566
20606
|
customUrl?: string | undefined;
|
|
20567
|
-
refreshToken?: string | undefined;
|
|
20568
20607
|
tokenName?: string | undefined;
|
|
20569
20608
|
refreshedAt?: Date | undefined;
|
|
20570
20609
|
appInstallationId?: string | undefined;
|
|
@@ -21565,9 +21604,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
21565
21604
|
avatar?: string | undefined;
|
|
21566
21605
|
} | undefined;
|
|
21567
21606
|
username?: string | undefined;
|
|
21607
|
+
refreshToken?: string | undefined;
|
|
21568
21608
|
expiresAt?: Date | undefined;
|
|
21569
21609
|
customUrl?: string | undefined;
|
|
21570
|
-
refreshToken?: string | undefined;
|
|
21571
21610
|
tokenName?: string | undefined;
|
|
21572
21611
|
refreshedAt?: Date | undefined;
|
|
21573
21612
|
appInstallationId?: string | undefined;
|
|
@@ -22568,9 +22607,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
22568
22607
|
avatar?: string | undefined;
|
|
22569
22608
|
} | undefined;
|
|
22570
22609
|
username?: string | undefined;
|
|
22610
|
+
refreshToken?: string | undefined;
|
|
22571
22611
|
expiresAt?: Date | undefined;
|
|
22572
22612
|
customUrl?: string | undefined;
|
|
22573
|
-
refreshToken?: string | undefined;
|
|
22574
22613
|
tokenName?: string | undefined;
|
|
22575
22614
|
refreshedAt?: Date | undefined;
|
|
22576
22615
|
appInstallationId?: string | undefined;
|
|
@@ -23566,9 +23605,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
23566
23605
|
avatar?: string | undefined;
|
|
23567
23606
|
} | undefined;
|
|
23568
23607
|
username?: string | undefined;
|
|
23608
|
+
refreshToken?: string | undefined;
|
|
23569
23609
|
expiresAt?: Date | undefined;
|
|
23570
23610
|
customUrl?: string | undefined;
|
|
23571
|
-
refreshToken?: string | undefined;
|
|
23572
23611
|
tokenName?: string | undefined;
|
|
23573
23612
|
refreshedAt?: Date | undefined;
|
|
23574
23613
|
appInstallationId?: string | undefined;
|
|
@@ -24601,9 +24640,9 @@ declare const UserDump: z.ZodObject<{
|
|
|
24601
24640
|
avatar?: string | undefined;
|
|
24602
24641
|
} | undefined;
|
|
24603
24642
|
username?: string | undefined;
|
|
24643
|
+
refreshToken?: string | undefined;
|
|
24604
24644
|
expiresAt?: Date | undefined;
|
|
24605
24645
|
customUrl?: string | undefined;
|
|
24606
|
-
refreshToken?: string | undefined;
|
|
24607
24646
|
tokenName?: string | undefined;
|
|
24608
24647
|
refreshedAt?: Date | undefined;
|
|
24609
24648
|
appInstallationId?: string | undefined;
|
|
@@ -32901,9 +32940,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32901
32940
|
avatar?: string | undefined;
|
|
32902
32941
|
} | undefined;
|
|
32903
32942
|
username?: string | undefined;
|
|
32943
|
+
refreshToken?: string | undefined;
|
|
32904
32944
|
expiresAt?: Date | undefined;
|
|
32905
32945
|
customUrl?: string | undefined;
|
|
32906
|
-
refreshToken?: string | undefined;
|
|
32907
32946
|
tokenName?: string | undefined;
|
|
32908
32947
|
refreshedAt?: Date | undefined;
|
|
32909
32948
|
appInstallationId?: string | undefined;
|
|
@@ -32931,9 +32970,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32931
32970
|
avatar?: string | undefined;
|
|
32932
32971
|
} | undefined;
|
|
32933
32972
|
username?: string | undefined;
|
|
32973
|
+
refreshToken?: string | undefined;
|
|
32934
32974
|
expiresAt?: Date | undefined;
|
|
32935
32975
|
customUrl?: string | undefined;
|
|
32936
|
-
refreshToken?: string | undefined;
|
|
32937
32976
|
tokenName?: string | undefined;
|
|
32938
32977
|
refreshedAt?: Date | undefined;
|
|
32939
32978
|
appInstallationId?: string | undefined;
|
|
@@ -32967,9 +33006,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32967
33006
|
avatar?: string | undefined;
|
|
32968
33007
|
} | undefined;
|
|
32969
33008
|
username?: string | undefined;
|
|
33009
|
+
refreshToken?: string | undefined;
|
|
32970
33010
|
expiresAt?: Date | undefined;
|
|
32971
33011
|
customUrl?: string | undefined;
|
|
32972
|
-
refreshToken?: string | undefined;
|
|
32973
33012
|
tokenName?: string | undefined;
|
|
32974
33013
|
refreshedAt?: Date | undefined;
|
|
32975
33014
|
appInstallationId?: string | undefined;
|
|
@@ -33003,9 +33042,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33003
33042
|
avatar?: string | undefined;
|
|
33004
33043
|
} | undefined;
|
|
33005
33044
|
username?: string | undefined;
|
|
33045
|
+
refreshToken?: string | undefined;
|
|
33006
33046
|
expiresAt?: Date | undefined;
|
|
33007
33047
|
customUrl?: string | undefined;
|
|
33008
|
-
refreshToken?: string | undefined;
|
|
33009
33048
|
tokenName?: string | undefined;
|
|
33010
33049
|
refreshedAt?: Date | undefined;
|
|
33011
33050
|
appInstallationId?: string | undefined;
|
|
@@ -34006,9 +34045,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34006
34045
|
avatar?: string | undefined;
|
|
34007
34046
|
} | undefined;
|
|
34008
34047
|
username?: string | undefined;
|
|
34048
|
+
refreshToken?: string | undefined;
|
|
34009
34049
|
expiresAt?: Date | undefined;
|
|
34010
34050
|
customUrl?: string | undefined;
|
|
34011
|
-
refreshToken?: string | undefined;
|
|
34012
34051
|
tokenName?: string | undefined;
|
|
34013
34052
|
refreshedAt?: Date | undefined;
|
|
34014
34053
|
appInstallationId?: string | undefined;
|
|
@@ -35009,9 +35048,9 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35009
35048
|
avatar?: string | undefined;
|
|
35010
35049
|
} | undefined;
|
|
35011
35050
|
username?: string | undefined;
|
|
35051
|
+
refreshToken?: string | undefined;
|
|
35012
35052
|
expiresAt?: Date | undefined;
|
|
35013
35053
|
customUrl?: string | undefined;
|
|
35014
|
-
refreshToken?: string | undefined;
|
|
35015
35054
|
tokenName?: string | undefined;
|
|
35016
35055
|
refreshedAt?: Date | undefined;
|
|
35017
35056
|
appInstallationId?: string | undefined;
|
|
@@ -35502,13 +35541,13 @@ declare const AssetDynamoRecord: z.ZodObject<{
|
|
|
35502
35541
|
}, "strip", z.ZodTypeAny, {
|
|
35503
35542
|
path: string;
|
|
35504
35543
|
id: string;
|
|
35505
|
-
designSystemId: string;
|
|
35506
35544
|
expiresAt: number;
|
|
35545
|
+
designSystemId: string;
|
|
35507
35546
|
}, {
|
|
35508
35547
|
path: string;
|
|
35509
35548
|
id: string;
|
|
35510
|
-
designSystemId: string;
|
|
35511
35549
|
expiresAt: number;
|
|
35550
|
+
designSystemId: string;
|
|
35512
35551
|
}>;
|
|
35513
35552
|
type AssetDynamoRecord = z.infer<typeof AssetDynamoRecord>;
|
|
35514
35553
|
|
|
@@ -85317,6 +85356,2566 @@ declare class PageBlockDefinitionsMap {
|
|
|
85317
85356
|
private propertyKey;
|
|
85318
85357
|
}
|
|
85319
85358
|
|
|
85359
|
+
declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
85360
|
+
display: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>;
|
|
85361
|
+
position: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>;
|
|
85362
|
+
top: z.ZodOptional<z.ZodString>;
|
|
85363
|
+
right: z.ZodOptional<z.ZodString>;
|
|
85364
|
+
bottom: z.ZodOptional<z.ZodString>;
|
|
85365
|
+
left: z.ZodOptional<z.ZodString>;
|
|
85366
|
+
width: z.ZodOptional<z.ZodString>;
|
|
85367
|
+
height: z.ZodOptional<z.ZodString>;
|
|
85368
|
+
minWidth: z.ZodOptional<z.ZodString>;
|
|
85369
|
+
minHeight: z.ZodOptional<z.ZodString>;
|
|
85370
|
+
maxWidth: z.ZodOptional<z.ZodString>;
|
|
85371
|
+
maxHeight: z.ZodOptional<z.ZodString>;
|
|
85372
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
85373
|
+
overflow: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>;
|
|
85374
|
+
overflowX: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>;
|
|
85375
|
+
overflowY: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>;
|
|
85376
|
+
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
85377
|
+
flexDirection: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>;
|
|
85378
|
+
justifyContent: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>;
|
|
85379
|
+
alignItems: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>;
|
|
85380
|
+
alignSelf: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>;
|
|
85381
|
+
flexGrow: z.ZodOptional<z.ZodNumber>;
|
|
85382
|
+
flexShrink: z.ZodOptional<z.ZodNumber>;
|
|
85383
|
+
flexBasis: z.ZodOptional<z.ZodString>;
|
|
85384
|
+
flexWrap: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>;
|
|
85385
|
+
gap: z.ZodOptional<z.ZodString>;
|
|
85386
|
+
rowGap: z.ZodOptional<z.ZodString>;
|
|
85387
|
+
columnGap: z.ZodOptional<z.ZodString>;
|
|
85388
|
+
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
85389
|
+
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
85390
|
+
gridColumn: z.ZodOptional<z.ZodString>;
|
|
85391
|
+
gridRow: z.ZodOptional<z.ZodString>;
|
|
85392
|
+
gridAutoFlow: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>;
|
|
85393
|
+
alignContent: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>;
|
|
85394
|
+
padding: z.ZodOptional<z.ZodString>;
|
|
85395
|
+
paddingTop: z.ZodOptional<z.ZodString>;
|
|
85396
|
+
paddingRight: z.ZodOptional<z.ZodString>;
|
|
85397
|
+
paddingBottom: z.ZodOptional<z.ZodString>;
|
|
85398
|
+
paddingLeft: z.ZodOptional<z.ZodString>;
|
|
85399
|
+
margin: z.ZodOptional<z.ZodString>;
|
|
85400
|
+
marginTop: z.ZodOptional<z.ZodString>;
|
|
85401
|
+
marginRight: z.ZodOptional<z.ZodString>;
|
|
85402
|
+
marginBottom: z.ZodOptional<z.ZodString>;
|
|
85403
|
+
marginLeft: z.ZodOptional<z.ZodString>;
|
|
85404
|
+
border: z.ZodOptional<z.ZodString>;
|
|
85405
|
+
borderWidth: z.ZodOptional<z.ZodString>;
|
|
85406
|
+
borderStyle: z.ZodOptional<z.ZodString>;
|
|
85407
|
+
borderColor: z.ZodOptional<z.ZodString>;
|
|
85408
|
+
borderTop: z.ZodOptional<z.ZodString>;
|
|
85409
|
+
borderRight: z.ZodOptional<z.ZodString>;
|
|
85410
|
+
borderBottom: z.ZodOptional<z.ZodString>;
|
|
85411
|
+
borderLeft: z.ZodOptional<z.ZodString>;
|
|
85412
|
+
borderRadius: z.ZodOptional<z.ZodString>;
|
|
85413
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodString>;
|
|
85414
|
+
borderTopRightRadius: z.ZodOptional<z.ZodString>;
|
|
85415
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodString>;
|
|
85416
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodString>;
|
|
85417
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
85418
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
|
85419
|
+
backgroundSize: z.ZodOptional<z.ZodString>;
|
|
85420
|
+
backgroundPosition: z.ZodOptional<z.ZodString>;
|
|
85421
|
+
backgroundRepeat: z.ZodOptional<z.ZodString>;
|
|
85422
|
+
backgroundClip: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>;
|
|
85423
|
+
backgroundOrigin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>;
|
|
85424
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
85425
|
+
boxShadow: z.ZodOptional<z.ZodString>;
|
|
85426
|
+
filter: z.ZodOptional<z.ZodString>;
|
|
85427
|
+
backdropFilter: z.ZodOptional<z.ZodString>;
|
|
85428
|
+
mixBlendMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>;
|
|
85429
|
+
transform: z.ZodOptional<z.ZodString>;
|
|
85430
|
+
transformOrigin: z.ZodOptional<z.ZodString>;
|
|
85431
|
+
clipPath: z.ZodOptional<z.ZodString>;
|
|
85432
|
+
color: z.ZodOptional<z.ZodString>;
|
|
85433
|
+
fontFamily: z.ZodOptional<z.ZodString>;
|
|
85434
|
+
fontSize: z.ZodOptional<z.ZodString>;
|
|
85435
|
+
fontWeight: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
85436
|
+
fontStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>;
|
|
85437
|
+
fontStretch: z.ZodOptional<z.ZodString>;
|
|
85438
|
+
fontVariantCaps: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>;
|
|
85439
|
+
lineHeight: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
85440
|
+
letterSpacing: z.ZodOptional<z.ZodString>;
|
|
85441
|
+
textAlign: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>;
|
|
85442
|
+
textDecorationLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>;
|
|
85443
|
+
textDecorationColor: z.ZodOptional<z.ZodString>;
|
|
85444
|
+
textDecorationStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>;
|
|
85445
|
+
textDecorationThickness: z.ZodOptional<z.ZodString>;
|
|
85446
|
+
textTransform: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>;
|
|
85447
|
+
whiteSpace: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>;
|
|
85448
|
+
wordBreak: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>;
|
|
85449
|
+
textOverflow: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>;
|
|
85450
|
+
WebkitLineClamp: z.ZodOptional<z.ZodNumber>;
|
|
85451
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodLiteral<"vertical">>;
|
|
85452
|
+
fontFeatureSettings: z.ZodOptional<z.ZodString>;
|
|
85453
|
+
fill: z.ZodOptional<z.ZodString>;
|
|
85454
|
+
stroke: z.ZodOptional<z.ZodString>;
|
|
85455
|
+
strokeWidth: z.ZodOptional<z.ZodString>;
|
|
85456
|
+
strokeLinecap: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>;
|
|
85457
|
+
strokeLinejoin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>;
|
|
85458
|
+
strokeDasharray: z.ZodOptional<z.ZodString>;
|
|
85459
|
+
strokeDashoffset: z.ZodOptional<z.ZodString>;
|
|
85460
|
+
transition: z.ZodOptional<z.ZodString>;
|
|
85461
|
+
animation: z.ZodOptional<z.ZodString>;
|
|
85462
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
85463
|
+
userSelect: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>;
|
|
85464
|
+
pointerEvents: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>;
|
|
85465
|
+
visibility: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>;
|
|
85466
|
+
}, "strip", z.ZodTypeAny, {
|
|
85467
|
+
filter?: string | undefined;
|
|
85468
|
+
fill?: string | undefined;
|
|
85469
|
+
top?: string | undefined;
|
|
85470
|
+
color?: string | undefined;
|
|
85471
|
+
width?: string | undefined;
|
|
85472
|
+
height?: string | undefined;
|
|
85473
|
+
opacity?: number | undefined;
|
|
85474
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85475
|
+
backgroundColor?: string | undefined;
|
|
85476
|
+
gap?: string | undefined;
|
|
85477
|
+
aspectRatio?: string | undefined;
|
|
85478
|
+
minHeight?: string | undefined;
|
|
85479
|
+
bottom?: string | undefined;
|
|
85480
|
+
left?: string | undefined;
|
|
85481
|
+
right?: string | undefined;
|
|
85482
|
+
padding?: string | undefined;
|
|
85483
|
+
fontSize?: string | undefined;
|
|
85484
|
+
fontFamily?: string | undefined;
|
|
85485
|
+
fontWeight?: string | number | undefined;
|
|
85486
|
+
letterSpacing?: string | undefined;
|
|
85487
|
+
lineHeight?: string | number | undefined;
|
|
85488
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85489
|
+
minWidth?: string | undefined;
|
|
85490
|
+
maxWidth?: string | undefined;
|
|
85491
|
+
maxHeight?: string | undefined;
|
|
85492
|
+
zIndex?: number | undefined;
|
|
85493
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85494
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85495
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85496
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85497
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85498
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85499
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85500
|
+
flexGrow?: number | undefined;
|
|
85501
|
+
flexShrink?: number | undefined;
|
|
85502
|
+
flexBasis?: string | undefined;
|
|
85503
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85504
|
+
rowGap?: string | undefined;
|
|
85505
|
+
columnGap?: string | undefined;
|
|
85506
|
+
gridTemplateColumns?: string | undefined;
|
|
85507
|
+
gridTemplateRows?: string | undefined;
|
|
85508
|
+
gridColumn?: string | undefined;
|
|
85509
|
+
gridRow?: string | undefined;
|
|
85510
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85511
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85512
|
+
paddingTop?: string | undefined;
|
|
85513
|
+
paddingRight?: string | undefined;
|
|
85514
|
+
paddingBottom?: string | undefined;
|
|
85515
|
+
paddingLeft?: string | undefined;
|
|
85516
|
+
margin?: string | undefined;
|
|
85517
|
+
marginTop?: string | undefined;
|
|
85518
|
+
marginRight?: string | undefined;
|
|
85519
|
+
marginBottom?: string | undefined;
|
|
85520
|
+
marginLeft?: string | undefined;
|
|
85521
|
+
border?: string | undefined;
|
|
85522
|
+
borderWidth?: string | undefined;
|
|
85523
|
+
borderStyle?: string | undefined;
|
|
85524
|
+
borderColor?: string | undefined;
|
|
85525
|
+
borderTop?: string | undefined;
|
|
85526
|
+
borderRight?: string | undefined;
|
|
85527
|
+
borderBottom?: string | undefined;
|
|
85528
|
+
borderLeft?: string | undefined;
|
|
85529
|
+
borderRadius?: string | undefined;
|
|
85530
|
+
borderTopLeftRadius?: string | undefined;
|
|
85531
|
+
borderTopRightRadius?: string | undefined;
|
|
85532
|
+
borderBottomRightRadius?: string | undefined;
|
|
85533
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85534
|
+
backgroundImage?: string | undefined;
|
|
85535
|
+
backgroundSize?: string | undefined;
|
|
85536
|
+
backgroundPosition?: string | undefined;
|
|
85537
|
+
backgroundRepeat?: string | undefined;
|
|
85538
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85539
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85540
|
+
boxShadow?: string | undefined;
|
|
85541
|
+
backdropFilter?: string | undefined;
|
|
85542
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85543
|
+
transform?: string | undefined;
|
|
85544
|
+
transformOrigin?: string | undefined;
|
|
85545
|
+
clipPath?: string | undefined;
|
|
85546
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85547
|
+
fontStretch?: string | undefined;
|
|
85548
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85549
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85550
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85551
|
+
textDecorationColor?: string | undefined;
|
|
85552
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85553
|
+
textDecorationThickness?: string | undefined;
|
|
85554
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85555
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85556
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85557
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85558
|
+
WebkitLineClamp?: number | undefined;
|
|
85559
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85560
|
+
fontFeatureSettings?: string | undefined;
|
|
85561
|
+
stroke?: string | undefined;
|
|
85562
|
+
strokeWidth?: string | undefined;
|
|
85563
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85564
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85565
|
+
strokeDasharray?: string | undefined;
|
|
85566
|
+
strokeDashoffset?: string | undefined;
|
|
85567
|
+
transition?: string | undefined;
|
|
85568
|
+
animation?: string | undefined;
|
|
85569
|
+
cursor?: string | undefined;
|
|
85570
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85571
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85572
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85573
|
+
}, {
|
|
85574
|
+
filter?: string | undefined;
|
|
85575
|
+
fill?: string | undefined;
|
|
85576
|
+
top?: string | undefined;
|
|
85577
|
+
color?: string | undefined;
|
|
85578
|
+
width?: string | undefined;
|
|
85579
|
+
height?: string | undefined;
|
|
85580
|
+
opacity?: number | undefined;
|
|
85581
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85582
|
+
backgroundColor?: string | undefined;
|
|
85583
|
+
gap?: string | undefined;
|
|
85584
|
+
aspectRatio?: string | undefined;
|
|
85585
|
+
minHeight?: string | undefined;
|
|
85586
|
+
bottom?: string | undefined;
|
|
85587
|
+
left?: string | undefined;
|
|
85588
|
+
right?: string | undefined;
|
|
85589
|
+
padding?: string | undefined;
|
|
85590
|
+
fontSize?: string | undefined;
|
|
85591
|
+
fontFamily?: string | undefined;
|
|
85592
|
+
fontWeight?: string | number | undefined;
|
|
85593
|
+
letterSpacing?: string | undefined;
|
|
85594
|
+
lineHeight?: string | number | undefined;
|
|
85595
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85596
|
+
minWidth?: string | undefined;
|
|
85597
|
+
maxWidth?: string | undefined;
|
|
85598
|
+
maxHeight?: string | undefined;
|
|
85599
|
+
zIndex?: number | undefined;
|
|
85600
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85601
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85602
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85603
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85604
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85605
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85606
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85607
|
+
flexGrow?: number | undefined;
|
|
85608
|
+
flexShrink?: number | undefined;
|
|
85609
|
+
flexBasis?: string | undefined;
|
|
85610
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85611
|
+
rowGap?: string | undefined;
|
|
85612
|
+
columnGap?: string | undefined;
|
|
85613
|
+
gridTemplateColumns?: string | undefined;
|
|
85614
|
+
gridTemplateRows?: string | undefined;
|
|
85615
|
+
gridColumn?: string | undefined;
|
|
85616
|
+
gridRow?: string | undefined;
|
|
85617
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85618
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85619
|
+
paddingTop?: string | undefined;
|
|
85620
|
+
paddingRight?: string | undefined;
|
|
85621
|
+
paddingBottom?: string | undefined;
|
|
85622
|
+
paddingLeft?: string | undefined;
|
|
85623
|
+
margin?: string | undefined;
|
|
85624
|
+
marginTop?: string | undefined;
|
|
85625
|
+
marginRight?: string | undefined;
|
|
85626
|
+
marginBottom?: string | undefined;
|
|
85627
|
+
marginLeft?: string | undefined;
|
|
85628
|
+
border?: string | undefined;
|
|
85629
|
+
borderWidth?: string | undefined;
|
|
85630
|
+
borderStyle?: string | undefined;
|
|
85631
|
+
borderColor?: string | undefined;
|
|
85632
|
+
borderTop?: string | undefined;
|
|
85633
|
+
borderRight?: string | undefined;
|
|
85634
|
+
borderBottom?: string | undefined;
|
|
85635
|
+
borderLeft?: string | undefined;
|
|
85636
|
+
borderRadius?: string | undefined;
|
|
85637
|
+
borderTopLeftRadius?: string | undefined;
|
|
85638
|
+
borderTopRightRadius?: string | undefined;
|
|
85639
|
+
borderBottomRightRadius?: string | undefined;
|
|
85640
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85641
|
+
backgroundImage?: string | undefined;
|
|
85642
|
+
backgroundSize?: string | undefined;
|
|
85643
|
+
backgroundPosition?: string | undefined;
|
|
85644
|
+
backgroundRepeat?: string | undefined;
|
|
85645
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85646
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85647
|
+
boxShadow?: string | undefined;
|
|
85648
|
+
backdropFilter?: string | undefined;
|
|
85649
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85650
|
+
transform?: string | undefined;
|
|
85651
|
+
transformOrigin?: string | undefined;
|
|
85652
|
+
clipPath?: string | undefined;
|
|
85653
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85654
|
+
fontStretch?: string | undefined;
|
|
85655
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85656
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85657
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85658
|
+
textDecorationColor?: string | undefined;
|
|
85659
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85660
|
+
textDecorationThickness?: string | undefined;
|
|
85661
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85662
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85663
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85664
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85665
|
+
WebkitLineClamp?: number | undefined;
|
|
85666
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85667
|
+
fontFeatureSettings?: string | undefined;
|
|
85668
|
+
stroke?: string | undefined;
|
|
85669
|
+
strokeWidth?: string | undefined;
|
|
85670
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85671
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85672
|
+
strokeDasharray?: string | undefined;
|
|
85673
|
+
strokeDashoffset?: string | undefined;
|
|
85674
|
+
transition?: string | undefined;
|
|
85675
|
+
animation?: string | undefined;
|
|
85676
|
+
cursor?: string | undefined;
|
|
85677
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85678
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85679
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85680
|
+
}>;
|
|
85681
|
+
type ProcessedStyles = z.infer<typeof FigmaExporterProcessedStylesSchema>;
|
|
85682
|
+
declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
85683
|
+
id: z.ZodString;
|
|
85684
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
85685
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
85686
|
+
styles: z.ZodObject<{
|
|
85687
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
85688
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
85689
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85690
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85691
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85692
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85693
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85694
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85695
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85696
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85697
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85698
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85699
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
85700
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
85701
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
85702
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
85703
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85704
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
85705
|
+
justifyContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>>;
|
|
85706
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
85707
|
+
alignSelf: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
85708
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
85709
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
85710
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85711
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
85712
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85713
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85714
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85715
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85716
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85717
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85718
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85719
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
85720
|
+
alignContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>>;
|
|
85721
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85722
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85723
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85724
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85725
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85726
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85727
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85728
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85729
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85730
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85731
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85732
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85733
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85734
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85735
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85736
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85737
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85738
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85739
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85740
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85741
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85742
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85743
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85744
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85745
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85746
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85747
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85748
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85749
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
85750
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
85751
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
85752
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85753
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85754
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85755
|
+
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
85756
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85757
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85758
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85759
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85760
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85761
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85762
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
85763
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
85764
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85765
|
+
fontVariantCaps: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>>;
|
|
85766
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
85767
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85768
|
+
textAlign: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>>;
|
|
85769
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
85770
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85771
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
85772
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85773
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
85774
|
+
whiteSpace: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>>;
|
|
85775
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
85776
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
85777
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
85778
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
85779
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85780
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85781
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85782
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85783
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
85784
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
85785
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85786
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85787
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85788
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85789
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85790
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
85791
|
+
pointerEvents: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>>;
|
|
85792
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
85793
|
+
}, "strip", z.ZodTypeAny, {
|
|
85794
|
+
filter?: string | undefined;
|
|
85795
|
+
fill?: string | undefined;
|
|
85796
|
+
top?: string | undefined;
|
|
85797
|
+
color?: string | undefined;
|
|
85798
|
+
width?: string | undefined;
|
|
85799
|
+
height?: string | undefined;
|
|
85800
|
+
opacity?: number | undefined;
|
|
85801
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85802
|
+
backgroundColor?: string | undefined;
|
|
85803
|
+
gap?: string | undefined;
|
|
85804
|
+
aspectRatio?: string | undefined;
|
|
85805
|
+
minHeight?: string | undefined;
|
|
85806
|
+
bottom?: string | undefined;
|
|
85807
|
+
left?: string | undefined;
|
|
85808
|
+
right?: string | undefined;
|
|
85809
|
+
padding?: string | undefined;
|
|
85810
|
+
fontSize?: string | undefined;
|
|
85811
|
+
fontFamily?: string | undefined;
|
|
85812
|
+
fontWeight?: string | number | undefined;
|
|
85813
|
+
letterSpacing?: string | undefined;
|
|
85814
|
+
lineHeight?: string | number | undefined;
|
|
85815
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85816
|
+
minWidth?: string | undefined;
|
|
85817
|
+
maxWidth?: string | undefined;
|
|
85818
|
+
maxHeight?: string | undefined;
|
|
85819
|
+
zIndex?: number | undefined;
|
|
85820
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85821
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85822
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85823
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85824
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85825
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85826
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85827
|
+
flexGrow?: number | undefined;
|
|
85828
|
+
flexShrink?: number | undefined;
|
|
85829
|
+
flexBasis?: string | undefined;
|
|
85830
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85831
|
+
rowGap?: string | undefined;
|
|
85832
|
+
columnGap?: string | undefined;
|
|
85833
|
+
gridTemplateColumns?: string | undefined;
|
|
85834
|
+
gridTemplateRows?: string | undefined;
|
|
85835
|
+
gridColumn?: string | undefined;
|
|
85836
|
+
gridRow?: string | undefined;
|
|
85837
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85838
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85839
|
+
paddingTop?: string | undefined;
|
|
85840
|
+
paddingRight?: string | undefined;
|
|
85841
|
+
paddingBottom?: string | undefined;
|
|
85842
|
+
paddingLeft?: string | undefined;
|
|
85843
|
+
margin?: string | undefined;
|
|
85844
|
+
marginTop?: string | undefined;
|
|
85845
|
+
marginRight?: string | undefined;
|
|
85846
|
+
marginBottom?: string | undefined;
|
|
85847
|
+
marginLeft?: string | undefined;
|
|
85848
|
+
border?: string | undefined;
|
|
85849
|
+
borderWidth?: string | undefined;
|
|
85850
|
+
borderStyle?: string | undefined;
|
|
85851
|
+
borderColor?: string | undefined;
|
|
85852
|
+
borderTop?: string | undefined;
|
|
85853
|
+
borderRight?: string | undefined;
|
|
85854
|
+
borderBottom?: string | undefined;
|
|
85855
|
+
borderLeft?: string | undefined;
|
|
85856
|
+
borderRadius?: string | undefined;
|
|
85857
|
+
borderTopLeftRadius?: string | undefined;
|
|
85858
|
+
borderTopRightRadius?: string | undefined;
|
|
85859
|
+
borderBottomRightRadius?: string | undefined;
|
|
85860
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85861
|
+
backgroundImage?: string | undefined;
|
|
85862
|
+
backgroundSize?: string | undefined;
|
|
85863
|
+
backgroundPosition?: string | undefined;
|
|
85864
|
+
backgroundRepeat?: string | undefined;
|
|
85865
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85866
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85867
|
+
boxShadow?: string | undefined;
|
|
85868
|
+
backdropFilter?: string | undefined;
|
|
85869
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85870
|
+
transform?: string | undefined;
|
|
85871
|
+
transformOrigin?: string | undefined;
|
|
85872
|
+
clipPath?: string | undefined;
|
|
85873
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85874
|
+
fontStretch?: string | undefined;
|
|
85875
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85876
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85877
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85878
|
+
textDecorationColor?: string | undefined;
|
|
85879
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85880
|
+
textDecorationThickness?: string | undefined;
|
|
85881
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85882
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85883
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85884
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85885
|
+
WebkitLineClamp?: number | undefined;
|
|
85886
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85887
|
+
fontFeatureSettings?: string | undefined;
|
|
85888
|
+
stroke?: string | undefined;
|
|
85889
|
+
strokeWidth?: string | undefined;
|
|
85890
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85891
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85892
|
+
strokeDasharray?: string | undefined;
|
|
85893
|
+
strokeDashoffset?: string | undefined;
|
|
85894
|
+
transition?: string | undefined;
|
|
85895
|
+
animation?: string | undefined;
|
|
85896
|
+
cursor?: string | undefined;
|
|
85897
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
85898
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
85899
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
85900
|
+
}, {
|
|
85901
|
+
filter?: string | undefined;
|
|
85902
|
+
fill?: string | undefined;
|
|
85903
|
+
top?: string | undefined;
|
|
85904
|
+
color?: string | undefined;
|
|
85905
|
+
width?: string | undefined;
|
|
85906
|
+
height?: string | undefined;
|
|
85907
|
+
opacity?: number | undefined;
|
|
85908
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
85909
|
+
backgroundColor?: string | undefined;
|
|
85910
|
+
gap?: string | undefined;
|
|
85911
|
+
aspectRatio?: string | undefined;
|
|
85912
|
+
minHeight?: string | undefined;
|
|
85913
|
+
bottom?: string | undefined;
|
|
85914
|
+
left?: string | undefined;
|
|
85915
|
+
right?: string | undefined;
|
|
85916
|
+
padding?: string | undefined;
|
|
85917
|
+
fontSize?: string | undefined;
|
|
85918
|
+
fontFamily?: string | undefined;
|
|
85919
|
+
fontWeight?: string | number | undefined;
|
|
85920
|
+
letterSpacing?: string | undefined;
|
|
85921
|
+
lineHeight?: string | number | undefined;
|
|
85922
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
85923
|
+
minWidth?: string | undefined;
|
|
85924
|
+
maxWidth?: string | undefined;
|
|
85925
|
+
maxHeight?: string | undefined;
|
|
85926
|
+
zIndex?: number | undefined;
|
|
85927
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85928
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85929
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
85930
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
85931
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
85932
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85933
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
85934
|
+
flexGrow?: number | undefined;
|
|
85935
|
+
flexShrink?: number | undefined;
|
|
85936
|
+
flexBasis?: string | undefined;
|
|
85937
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
85938
|
+
rowGap?: string | undefined;
|
|
85939
|
+
columnGap?: string | undefined;
|
|
85940
|
+
gridTemplateColumns?: string | undefined;
|
|
85941
|
+
gridTemplateRows?: string | undefined;
|
|
85942
|
+
gridColumn?: string | undefined;
|
|
85943
|
+
gridRow?: string | undefined;
|
|
85944
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
85945
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
85946
|
+
paddingTop?: string | undefined;
|
|
85947
|
+
paddingRight?: string | undefined;
|
|
85948
|
+
paddingBottom?: string | undefined;
|
|
85949
|
+
paddingLeft?: string | undefined;
|
|
85950
|
+
margin?: string | undefined;
|
|
85951
|
+
marginTop?: string | undefined;
|
|
85952
|
+
marginRight?: string | undefined;
|
|
85953
|
+
marginBottom?: string | undefined;
|
|
85954
|
+
marginLeft?: string | undefined;
|
|
85955
|
+
border?: string | undefined;
|
|
85956
|
+
borderWidth?: string | undefined;
|
|
85957
|
+
borderStyle?: string | undefined;
|
|
85958
|
+
borderColor?: string | undefined;
|
|
85959
|
+
borderTop?: string | undefined;
|
|
85960
|
+
borderRight?: string | undefined;
|
|
85961
|
+
borderBottom?: string | undefined;
|
|
85962
|
+
borderLeft?: string | undefined;
|
|
85963
|
+
borderRadius?: string | undefined;
|
|
85964
|
+
borderTopLeftRadius?: string | undefined;
|
|
85965
|
+
borderTopRightRadius?: string | undefined;
|
|
85966
|
+
borderBottomRightRadius?: string | undefined;
|
|
85967
|
+
borderBottomLeftRadius?: string | undefined;
|
|
85968
|
+
backgroundImage?: string | undefined;
|
|
85969
|
+
backgroundSize?: string | undefined;
|
|
85970
|
+
backgroundPosition?: string | undefined;
|
|
85971
|
+
backgroundRepeat?: string | undefined;
|
|
85972
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
85973
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
85974
|
+
boxShadow?: string | undefined;
|
|
85975
|
+
backdropFilter?: string | undefined;
|
|
85976
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85977
|
+
transform?: string | undefined;
|
|
85978
|
+
transformOrigin?: string | undefined;
|
|
85979
|
+
clipPath?: string | undefined;
|
|
85980
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85981
|
+
fontStretch?: string | undefined;
|
|
85982
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
85983
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
85984
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
85985
|
+
textDecorationColor?: string | undefined;
|
|
85986
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
85987
|
+
textDecorationThickness?: string | undefined;
|
|
85988
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
85989
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
85990
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
85991
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
85992
|
+
WebkitLineClamp?: number | undefined;
|
|
85993
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
85994
|
+
fontFeatureSettings?: string | undefined;
|
|
85995
|
+
stroke?: string | undefined;
|
|
85996
|
+
strokeWidth?: string | undefined;
|
|
85997
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
85998
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
85999
|
+
strokeDasharray?: string | undefined;
|
|
86000
|
+
strokeDashoffset?: string | undefined;
|
|
86001
|
+
transition?: string | undefined;
|
|
86002
|
+
animation?: string | undefined;
|
|
86003
|
+
cursor?: string | undefined;
|
|
86004
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86005
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86006
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86007
|
+
}>;
|
|
86008
|
+
}, {
|
|
86009
|
+
type: z.ZodLiteral<"FRAME">;
|
|
86010
|
+
}>, "strip", z.ZodTypeAny, {
|
|
86011
|
+
type: "FRAME";
|
|
86012
|
+
id: string;
|
|
86013
|
+
styles: {
|
|
86014
|
+
filter?: string | undefined;
|
|
86015
|
+
fill?: string | undefined;
|
|
86016
|
+
top?: string | undefined;
|
|
86017
|
+
color?: string | undefined;
|
|
86018
|
+
width?: string | undefined;
|
|
86019
|
+
height?: string | undefined;
|
|
86020
|
+
opacity?: number | undefined;
|
|
86021
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86022
|
+
backgroundColor?: string | undefined;
|
|
86023
|
+
gap?: string | undefined;
|
|
86024
|
+
aspectRatio?: string | undefined;
|
|
86025
|
+
minHeight?: string | undefined;
|
|
86026
|
+
bottom?: string | undefined;
|
|
86027
|
+
left?: string | undefined;
|
|
86028
|
+
right?: string | undefined;
|
|
86029
|
+
padding?: string | undefined;
|
|
86030
|
+
fontSize?: string | undefined;
|
|
86031
|
+
fontFamily?: string | undefined;
|
|
86032
|
+
fontWeight?: string | number | undefined;
|
|
86033
|
+
letterSpacing?: string | undefined;
|
|
86034
|
+
lineHeight?: string | number | undefined;
|
|
86035
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86036
|
+
minWidth?: string | undefined;
|
|
86037
|
+
maxWidth?: string | undefined;
|
|
86038
|
+
maxHeight?: string | undefined;
|
|
86039
|
+
zIndex?: number | undefined;
|
|
86040
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86041
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86042
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86043
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86044
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86045
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86046
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86047
|
+
flexGrow?: number | undefined;
|
|
86048
|
+
flexShrink?: number | undefined;
|
|
86049
|
+
flexBasis?: string | undefined;
|
|
86050
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86051
|
+
rowGap?: string | undefined;
|
|
86052
|
+
columnGap?: string | undefined;
|
|
86053
|
+
gridTemplateColumns?: string | undefined;
|
|
86054
|
+
gridTemplateRows?: string | undefined;
|
|
86055
|
+
gridColumn?: string | undefined;
|
|
86056
|
+
gridRow?: string | undefined;
|
|
86057
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86058
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86059
|
+
paddingTop?: string | undefined;
|
|
86060
|
+
paddingRight?: string | undefined;
|
|
86061
|
+
paddingBottom?: string | undefined;
|
|
86062
|
+
paddingLeft?: string | undefined;
|
|
86063
|
+
margin?: string | undefined;
|
|
86064
|
+
marginTop?: string | undefined;
|
|
86065
|
+
marginRight?: string | undefined;
|
|
86066
|
+
marginBottom?: string | undefined;
|
|
86067
|
+
marginLeft?: string | undefined;
|
|
86068
|
+
border?: string | undefined;
|
|
86069
|
+
borderWidth?: string | undefined;
|
|
86070
|
+
borderStyle?: string | undefined;
|
|
86071
|
+
borderColor?: string | undefined;
|
|
86072
|
+
borderTop?: string | undefined;
|
|
86073
|
+
borderRight?: string | undefined;
|
|
86074
|
+
borderBottom?: string | undefined;
|
|
86075
|
+
borderLeft?: string | undefined;
|
|
86076
|
+
borderRadius?: string | undefined;
|
|
86077
|
+
borderTopLeftRadius?: string | undefined;
|
|
86078
|
+
borderTopRightRadius?: string | undefined;
|
|
86079
|
+
borderBottomRightRadius?: string | undefined;
|
|
86080
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86081
|
+
backgroundImage?: string | undefined;
|
|
86082
|
+
backgroundSize?: string | undefined;
|
|
86083
|
+
backgroundPosition?: string | undefined;
|
|
86084
|
+
backgroundRepeat?: string | undefined;
|
|
86085
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86086
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86087
|
+
boxShadow?: string | undefined;
|
|
86088
|
+
backdropFilter?: string | undefined;
|
|
86089
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86090
|
+
transform?: string | undefined;
|
|
86091
|
+
transformOrigin?: string | undefined;
|
|
86092
|
+
clipPath?: string | undefined;
|
|
86093
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86094
|
+
fontStretch?: string | undefined;
|
|
86095
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86096
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86097
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86098
|
+
textDecorationColor?: string | undefined;
|
|
86099
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86100
|
+
textDecorationThickness?: string | undefined;
|
|
86101
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86102
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86103
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86104
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86105
|
+
WebkitLineClamp?: number | undefined;
|
|
86106
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86107
|
+
fontFeatureSettings?: string | undefined;
|
|
86108
|
+
stroke?: string | undefined;
|
|
86109
|
+
strokeWidth?: string | undefined;
|
|
86110
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86111
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86112
|
+
strokeDasharray?: string | undefined;
|
|
86113
|
+
strokeDashoffset?: string | undefined;
|
|
86114
|
+
transition?: string | undefined;
|
|
86115
|
+
animation?: string | undefined;
|
|
86116
|
+
cursor?: string | undefined;
|
|
86117
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86118
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86119
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86120
|
+
};
|
|
86121
|
+
parentId: string | null;
|
|
86122
|
+
}, {
|
|
86123
|
+
type: "FRAME";
|
|
86124
|
+
id: string;
|
|
86125
|
+
styles: {
|
|
86126
|
+
filter?: string | undefined;
|
|
86127
|
+
fill?: string | undefined;
|
|
86128
|
+
top?: string | undefined;
|
|
86129
|
+
color?: string | undefined;
|
|
86130
|
+
width?: string | undefined;
|
|
86131
|
+
height?: string | undefined;
|
|
86132
|
+
opacity?: number | undefined;
|
|
86133
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86134
|
+
backgroundColor?: string | undefined;
|
|
86135
|
+
gap?: string | undefined;
|
|
86136
|
+
aspectRatio?: string | undefined;
|
|
86137
|
+
minHeight?: string | undefined;
|
|
86138
|
+
bottom?: string | undefined;
|
|
86139
|
+
left?: string | undefined;
|
|
86140
|
+
right?: string | undefined;
|
|
86141
|
+
padding?: string | undefined;
|
|
86142
|
+
fontSize?: string | undefined;
|
|
86143
|
+
fontFamily?: string | undefined;
|
|
86144
|
+
fontWeight?: string | number | undefined;
|
|
86145
|
+
letterSpacing?: string | undefined;
|
|
86146
|
+
lineHeight?: string | number | undefined;
|
|
86147
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86148
|
+
minWidth?: string | undefined;
|
|
86149
|
+
maxWidth?: string | undefined;
|
|
86150
|
+
maxHeight?: string | undefined;
|
|
86151
|
+
zIndex?: number | undefined;
|
|
86152
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86153
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86154
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86155
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86156
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86157
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86158
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86159
|
+
flexGrow?: number | undefined;
|
|
86160
|
+
flexShrink?: number | undefined;
|
|
86161
|
+
flexBasis?: string | undefined;
|
|
86162
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86163
|
+
rowGap?: string | undefined;
|
|
86164
|
+
columnGap?: string | undefined;
|
|
86165
|
+
gridTemplateColumns?: string | undefined;
|
|
86166
|
+
gridTemplateRows?: string | undefined;
|
|
86167
|
+
gridColumn?: string | undefined;
|
|
86168
|
+
gridRow?: string | undefined;
|
|
86169
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86170
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86171
|
+
paddingTop?: string | undefined;
|
|
86172
|
+
paddingRight?: string | undefined;
|
|
86173
|
+
paddingBottom?: string | undefined;
|
|
86174
|
+
paddingLeft?: string | undefined;
|
|
86175
|
+
margin?: string | undefined;
|
|
86176
|
+
marginTop?: string | undefined;
|
|
86177
|
+
marginRight?: string | undefined;
|
|
86178
|
+
marginBottom?: string | undefined;
|
|
86179
|
+
marginLeft?: string | undefined;
|
|
86180
|
+
border?: string | undefined;
|
|
86181
|
+
borderWidth?: string | undefined;
|
|
86182
|
+
borderStyle?: string | undefined;
|
|
86183
|
+
borderColor?: string | undefined;
|
|
86184
|
+
borderTop?: string | undefined;
|
|
86185
|
+
borderRight?: string | undefined;
|
|
86186
|
+
borderBottom?: string | undefined;
|
|
86187
|
+
borderLeft?: string | undefined;
|
|
86188
|
+
borderRadius?: string | undefined;
|
|
86189
|
+
borderTopLeftRadius?: string | undefined;
|
|
86190
|
+
borderTopRightRadius?: string | undefined;
|
|
86191
|
+
borderBottomRightRadius?: string | undefined;
|
|
86192
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86193
|
+
backgroundImage?: string | undefined;
|
|
86194
|
+
backgroundSize?: string | undefined;
|
|
86195
|
+
backgroundPosition?: string | undefined;
|
|
86196
|
+
backgroundRepeat?: string | undefined;
|
|
86197
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86198
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86199
|
+
boxShadow?: string | undefined;
|
|
86200
|
+
backdropFilter?: string | undefined;
|
|
86201
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86202
|
+
transform?: string | undefined;
|
|
86203
|
+
transformOrigin?: string | undefined;
|
|
86204
|
+
clipPath?: string | undefined;
|
|
86205
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86206
|
+
fontStretch?: string | undefined;
|
|
86207
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86208
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86209
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86210
|
+
textDecorationColor?: string | undefined;
|
|
86211
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86212
|
+
textDecorationThickness?: string | undefined;
|
|
86213
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86214
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86215
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86216
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86217
|
+
WebkitLineClamp?: number | undefined;
|
|
86218
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86219
|
+
fontFeatureSettings?: string | undefined;
|
|
86220
|
+
stroke?: string | undefined;
|
|
86221
|
+
strokeWidth?: string | undefined;
|
|
86222
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86223
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86224
|
+
strokeDasharray?: string | undefined;
|
|
86225
|
+
strokeDashoffset?: string | undefined;
|
|
86226
|
+
transition?: string | undefined;
|
|
86227
|
+
animation?: string | undefined;
|
|
86228
|
+
cursor?: string | undefined;
|
|
86229
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86230
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86231
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86232
|
+
};
|
|
86233
|
+
parentId: string | null;
|
|
86234
|
+
}>;
|
|
86235
|
+
declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
86236
|
+
id: z.ZodString;
|
|
86237
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
86238
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
86239
|
+
styles: z.ZodObject<{
|
|
86240
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
86241
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
86242
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86243
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86244
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86245
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86246
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86247
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86248
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86249
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86250
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86251
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86252
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86253
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86254
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86255
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86256
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86257
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
86258
|
+
justifyContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>>;
|
|
86259
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
86260
|
+
alignSelf: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
86261
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86262
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86263
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86264
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
86265
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86266
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86267
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86268
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86269
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86270
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86271
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86272
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
86273
|
+
alignContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>>;
|
|
86274
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86275
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86276
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86277
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86278
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86279
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86280
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86281
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86282
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86283
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86284
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86285
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86286
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86287
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86288
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86289
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86290
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86291
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86292
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86293
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86294
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86295
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86296
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86297
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86298
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86299
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86300
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86301
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86302
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
86303
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
86304
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86305
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86306
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86307
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86308
|
+
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86309
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86310
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86311
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86312
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86313
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86314
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86315
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
86316
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
86317
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86318
|
+
fontVariantCaps: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>>;
|
|
86319
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
86320
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86321
|
+
textAlign: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>>;
|
|
86322
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
86323
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86324
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
86325
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86326
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
86327
|
+
whiteSpace: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>>;
|
|
86328
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
86329
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
86330
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86331
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
86332
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86333
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86334
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86335
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86336
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
86337
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
86338
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86339
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86340
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86341
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86342
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86343
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
86344
|
+
pointerEvents: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>>;
|
|
86345
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
86346
|
+
}, "strip", z.ZodTypeAny, {
|
|
86347
|
+
filter?: string | undefined;
|
|
86348
|
+
fill?: string | undefined;
|
|
86349
|
+
top?: string | undefined;
|
|
86350
|
+
color?: string | undefined;
|
|
86351
|
+
width?: string | undefined;
|
|
86352
|
+
height?: string | undefined;
|
|
86353
|
+
opacity?: number | undefined;
|
|
86354
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86355
|
+
backgroundColor?: string | undefined;
|
|
86356
|
+
gap?: string | undefined;
|
|
86357
|
+
aspectRatio?: string | undefined;
|
|
86358
|
+
minHeight?: string | undefined;
|
|
86359
|
+
bottom?: string | undefined;
|
|
86360
|
+
left?: string | undefined;
|
|
86361
|
+
right?: string | undefined;
|
|
86362
|
+
padding?: string | undefined;
|
|
86363
|
+
fontSize?: string | undefined;
|
|
86364
|
+
fontFamily?: string | undefined;
|
|
86365
|
+
fontWeight?: string | number | undefined;
|
|
86366
|
+
letterSpacing?: string | undefined;
|
|
86367
|
+
lineHeight?: string | number | undefined;
|
|
86368
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86369
|
+
minWidth?: string | undefined;
|
|
86370
|
+
maxWidth?: string | undefined;
|
|
86371
|
+
maxHeight?: string | undefined;
|
|
86372
|
+
zIndex?: number | undefined;
|
|
86373
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86374
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86375
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86376
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86377
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86378
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86379
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86380
|
+
flexGrow?: number | undefined;
|
|
86381
|
+
flexShrink?: number | undefined;
|
|
86382
|
+
flexBasis?: string | undefined;
|
|
86383
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86384
|
+
rowGap?: string | undefined;
|
|
86385
|
+
columnGap?: string | undefined;
|
|
86386
|
+
gridTemplateColumns?: string | undefined;
|
|
86387
|
+
gridTemplateRows?: string | undefined;
|
|
86388
|
+
gridColumn?: string | undefined;
|
|
86389
|
+
gridRow?: string | undefined;
|
|
86390
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86391
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86392
|
+
paddingTop?: string | undefined;
|
|
86393
|
+
paddingRight?: string | undefined;
|
|
86394
|
+
paddingBottom?: string | undefined;
|
|
86395
|
+
paddingLeft?: string | undefined;
|
|
86396
|
+
margin?: string | undefined;
|
|
86397
|
+
marginTop?: string | undefined;
|
|
86398
|
+
marginRight?: string | undefined;
|
|
86399
|
+
marginBottom?: string | undefined;
|
|
86400
|
+
marginLeft?: string | undefined;
|
|
86401
|
+
border?: string | undefined;
|
|
86402
|
+
borderWidth?: string | undefined;
|
|
86403
|
+
borderStyle?: string | undefined;
|
|
86404
|
+
borderColor?: string | undefined;
|
|
86405
|
+
borderTop?: string | undefined;
|
|
86406
|
+
borderRight?: string | undefined;
|
|
86407
|
+
borderBottom?: string | undefined;
|
|
86408
|
+
borderLeft?: string | undefined;
|
|
86409
|
+
borderRadius?: string | undefined;
|
|
86410
|
+
borderTopLeftRadius?: string | undefined;
|
|
86411
|
+
borderTopRightRadius?: string | undefined;
|
|
86412
|
+
borderBottomRightRadius?: string | undefined;
|
|
86413
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86414
|
+
backgroundImage?: string | undefined;
|
|
86415
|
+
backgroundSize?: string | undefined;
|
|
86416
|
+
backgroundPosition?: string | undefined;
|
|
86417
|
+
backgroundRepeat?: string | undefined;
|
|
86418
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86419
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86420
|
+
boxShadow?: string | undefined;
|
|
86421
|
+
backdropFilter?: string | undefined;
|
|
86422
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86423
|
+
transform?: string | undefined;
|
|
86424
|
+
transformOrigin?: string | undefined;
|
|
86425
|
+
clipPath?: string | undefined;
|
|
86426
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86427
|
+
fontStretch?: string | undefined;
|
|
86428
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86429
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86430
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86431
|
+
textDecorationColor?: string | undefined;
|
|
86432
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86433
|
+
textDecorationThickness?: string | undefined;
|
|
86434
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86435
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86436
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86437
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86438
|
+
WebkitLineClamp?: number | undefined;
|
|
86439
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86440
|
+
fontFeatureSettings?: string | undefined;
|
|
86441
|
+
stroke?: string | undefined;
|
|
86442
|
+
strokeWidth?: string | undefined;
|
|
86443
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86444
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86445
|
+
strokeDasharray?: string | undefined;
|
|
86446
|
+
strokeDashoffset?: string | undefined;
|
|
86447
|
+
transition?: string | undefined;
|
|
86448
|
+
animation?: string | undefined;
|
|
86449
|
+
cursor?: string | undefined;
|
|
86450
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86451
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86452
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86453
|
+
}, {
|
|
86454
|
+
filter?: string | undefined;
|
|
86455
|
+
fill?: string | undefined;
|
|
86456
|
+
top?: string | undefined;
|
|
86457
|
+
color?: string | undefined;
|
|
86458
|
+
width?: string | undefined;
|
|
86459
|
+
height?: string | undefined;
|
|
86460
|
+
opacity?: number | undefined;
|
|
86461
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86462
|
+
backgroundColor?: string | undefined;
|
|
86463
|
+
gap?: string | undefined;
|
|
86464
|
+
aspectRatio?: string | undefined;
|
|
86465
|
+
minHeight?: string | undefined;
|
|
86466
|
+
bottom?: string | undefined;
|
|
86467
|
+
left?: string | undefined;
|
|
86468
|
+
right?: string | undefined;
|
|
86469
|
+
padding?: string | undefined;
|
|
86470
|
+
fontSize?: string | undefined;
|
|
86471
|
+
fontFamily?: string | undefined;
|
|
86472
|
+
fontWeight?: string | number | undefined;
|
|
86473
|
+
letterSpacing?: string | undefined;
|
|
86474
|
+
lineHeight?: string | number | undefined;
|
|
86475
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86476
|
+
minWidth?: string | undefined;
|
|
86477
|
+
maxWidth?: string | undefined;
|
|
86478
|
+
maxHeight?: string | undefined;
|
|
86479
|
+
zIndex?: number | undefined;
|
|
86480
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86481
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86482
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86483
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86484
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86485
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86486
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86487
|
+
flexGrow?: number | undefined;
|
|
86488
|
+
flexShrink?: number | undefined;
|
|
86489
|
+
flexBasis?: string | undefined;
|
|
86490
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86491
|
+
rowGap?: string | undefined;
|
|
86492
|
+
columnGap?: string | undefined;
|
|
86493
|
+
gridTemplateColumns?: string | undefined;
|
|
86494
|
+
gridTemplateRows?: string | undefined;
|
|
86495
|
+
gridColumn?: string | undefined;
|
|
86496
|
+
gridRow?: string | undefined;
|
|
86497
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86498
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86499
|
+
paddingTop?: string | undefined;
|
|
86500
|
+
paddingRight?: string | undefined;
|
|
86501
|
+
paddingBottom?: string | undefined;
|
|
86502
|
+
paddingLeft?: string | undefined;
|
|
86503
|
+
margin?: string | undefined;
|
|
86504
|
+
marginTop?: string | undefined;
|
|
86505
|
+
marginRight?: string | undefined;
|
|
86506
|
+
marginBottom?: string | undefined;
|
|
86507
|
+
marginLeft?: string | undefined;
|
|
86508
|
+
border?: string | undefined;
|
|
86509
|
+
borderWidth?: string | undefined;
|
|
86510
|
+
borderStyle?: string | undefined;
|
|
86511
|
+
borderColor?: string | undefined;
|
|
86512
|
+
borderTop?: string | undefined;
|
|
86513
|
+
borderRight?: string | undefined;
|
|
86514
|
+
borderBottom?: string | undefined;
|
|
86515
|
+
borderLeft?: string | undefined;
|
|
86516
|
+
borderRadius?: string | undefined;
|
|
86517
|
+
borderTopLeftRadius?: string | undefined;
|
|
86518
|
+
borderTopRightRadius?: string | undefined;
|
|
86519
|
+
borderBottomRightRadius?: string | undefined;
|
|
86520
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86521
|
+
backgroundImage?: string | undefined;
|
|
86522
|
+
backgroundSize?: string | undefined;
|
|
86523
|
+
backgroundPosition?: string | undefined;
|
|
86524
|
+
backgroundRepeat?: string | undefined;
|
|
86525
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86526
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86527
|
+
boxShadow?: string | undefined;
|
|
86528
|
+
backdropFilter?: string | undefined;
|
|
86529
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86530
|
+
transform?: string | undefined;
|
|
86531
|
+
transformOrigin?: string | undefined;
|
|
86532
|
+
clipPath?: string | undefined;
|
|
86533
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86534
|
+
fontStretch?: string | undefined;
|
|
86535
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86536
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86537
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86538
|
+
textDecorationColor?: string | undefined;
|
|
86539
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86540
|
+
textDecorationThickness?: string | undefined;
|
|
86541
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86542
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86543
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86544
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86545
|
+
WebkitLineClamp?: number | undefined;
|
|
86546
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86547
|
+
fontFeatureSettings?: string | undefined;
|
|
86548
|
+
stroke?: string | undefined;
|
|
86549
|
+
strokeWidth?: string | undefined;
|
|
86550
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86551
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86552
|
+
strokeDasharray?: string | undefined;
|
|
86553
|
+
strokeDashoffset?: string | undefined;
|
|
86554
|
+
transition?: string | undefined;
|
|
86555
|
+
animation?: string | undefined;
|
|
86556
|
+
cursor?: string | undefined;
|
|
86557
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86558
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86559
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86560
|
+
}>;
|
|
86561
|
+
}, {
|
|
86562
|
+
type: z.ZodLiteral<"TEXT">;
|
|
86563
|
+
characters: z.ZodString;
|
|
86564
|
+
}>, "strip", z.ZodTypeAny, {
|
|
86565
|
+
type: "TEXT";
|
|
86566
|
+
id: string;
|
|
86567
|
+
styles: {
|
|
86568
|
+
filter?: string | undefined;
|
|
86569
|
+
fill?: string | undefined;
|
|
86570
|
+
top?: string | undefined;
|
|
86571
|
+
color?: string | undefined;
|
|
86572
|
+
width?: string | undefined;
|
|
86573
|
+
height?: string | undefined;
|
|
86574
|
+
opacity?: number | undefined;
|
|
86575
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86576
|
+
backgroundColor?: string | undefined;
|
|
86577
|
+
gap?: string | undefined;
|
|
86578
|
+
aspectRatio?: string | undefined;
|
|
86579
|
+
minHeight?: string | undefined;
|
|
86580
|
+
bottom?: string | undefined;
|
|
86581
|
+
left?: string | undefined;
|
|
86582
|
+
right?: string | undefined;
|
|
86583
|
+
padding?: string | undefined;
|
|
86584
|
+
fontSize?: string | undefined;
|
|
86585
|
+
fontFamily?: string | undefined;
|
|
86586
|
+
fontWeight?: string | number | undefined;
|
|
86587
|
+
letterSpacing?: string | undefined;
|
|
86588
|
+
lineHeight?: string | number | undefined;
|
|
86589
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86590
|
+
minWidth?: string | undefined;
|
|
86591
|
+
maxWidth?: string | undefined;
|
|
86592
|
+
maxHeight?: string | undefined;
|
|
86593
|
+
zIndex?: number | undefined;
|
|
86594
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86595
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86596
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86597
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86598
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86599
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86600
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86601
|
+
flexGrow?: number | undefined;
|
|
86602
|
+
flexShrink?: number | undefined;
|
|
86603
|
+
flexBasis?: string | undefined;
|
|
86604
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86605
|
+
rowGap?: string | undefined;
|
|
86606
|
+
columnGap?: string | undefined;
|
|
86607
|
+
gridTemplateColumns?: string | undefined;
|
|
86608
|
+
gridTemplateRows?: string | undefined;
|
|
86609
|
+
gridColumn?: string | undefined;
|
|
86610
|
+
gridRow?: string | undefined;
|
|
86611
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86612
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86613
|
+
paddingTop?: string | undefined;
|
|
86614
|
+
paddingRight?: string | undefined;
|
|
86615
|
+
paddingBottom?: string | undefined;
|
|
86616
|
+
paddingLeft?: string | undefined;
|
|
86617
|
+
margin?: string | undefined;
|
|
86618
|
+
marginTop?: string | undefined;
|
|
86619
|
+
marginRight?: string | undefined;
|
|
86620
|
+
marginBottom?: string | undefined;
|
|
86621
|
+
marginLeft?: string | undefined;
|
|
86622
|
+
border?: string | undefined;
|
|
86623
|
+
borderWidth?: string | undefined;
|
|
86624
|
+
borderStyle?: string | undefined;
|
|
86625
|
+
borderColor?: string | undefined;
|
|
86626
|
+
borderTop?: string | undefined;
|
|
86627
|
+
borderRight?: string | undefined;
|
|
86628
|
+
borderBottom?: string | undefined;
|
|
86629
|
+
borderLeft?: string | undefined;
|
|
86630
|
+
borderRadius?: string | undefined;
|
|
86631
|
+
borderTopLeftRadius?: string | undefined;
|
|
86632
|
+
borderTopRightRadius?: string | undefined;
|
|
86633
|
+
borderBottomRightRadius?: string | undefined;
|
|
86634
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86635
|
+
backgroundImage?: string | undefined;
|
|
86636
|
+
backgroundSize?: string | undefined;
|
|
86637
|
+
backgroundPosition?: string | undefined;
|
|
86638
|
+
backgroundRepeat?: string | undefined;
|
|
86639
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86640
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86641
|
+
boxShadow?: string | undefined;
|
|
86642
|
+
backdropFilter?: string | undefined;
|
|
86643
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86644
|
+
transform?: string | undefined;
|
|
86645
|
+
transformOrigin?: string | undefined;
|
|
86646
|
+
clipPath?: string | undefined;
|
|
86647
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86648
|
+
fontStretch?: string | undefined;
|
|
86649
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86650
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86651
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86652
|
+
textDecorationColor?: string | undefined;
|
|
86653
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86654
|
+
textDecorationThickness?: string | undefined;
|
|
86655
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86656
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86657
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86658
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86659
|
+
WebkitLineClamp?: number | undefined;
|
|
86660
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86661
|
+
fontFeatureSettings?: string | undefined;
|
|
86662
|
+
stroke?: string | undefined;
|
|
86663
|
+
strokeWidth?: string | undefined;
|
|
86664
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86665
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86666
|
+
strokeDasharray?: string | undefined;
|
|
86667
|
+
strokeDashoffset?: string | undefined;
|
|
86668
|
+
transition?: string | undefined;
|
|
86669
|
+
animation?: string | undefined;
|
|
86670
|
+
cursor?: string | undefined;
|
|
86671
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86672
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86673
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86674
|
+
};
|
|
86675
|
+
parentId: string | null;
|
|
86676
|
+
characters: string;
|
|
86677
|
+
}, {
|
|
86678
|
+
type: "TEXT";
|
|
86679
|
+
id: string;
|
|
86680
|
+
styles: {
|
|
86681
|
+
filter?: string | undefined;
|
|
86682
|
+
fill?: string | undefined;
|
|
86683
|
+
top?: string | undefined;
|
|
86684
|
+
color?: string | undefined;
|
|
86685
|
+
width?: string | undefined;
|
|
86686
|
+
height?: string | undefined;
|
|
86687
|
+
opacity?: number | undefined;
|
|
86688
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86689
|
+
backgroundColor?: string | undefined;
|
|
86690
|
+
gap?: string | undefined;
|
|
86691
|
+
aspectRatio?: string | undefined;
|
|
86692
|
+
minHeight?: string | undefined;
|
|
86693
|
+
bottom?: string | undefined;
|
|
86694
|
+
left?: string | undefined;
|
|
86695
|
+
right?: string | undefined;
|
|
86696
|
+
padding?: string | undefined;
|
|
86697
|
+
fontSize?: string | undefined;
|
|
86698
|
+
fontFamily?: string | undefined;
|
|
86699
|
+
fontWeight?: string | number | undefined;
|
|
86700
|
+
letterSpacing?: string | undefined;
|
|
86701
|
+
lineHeight?: string | number | undefined;
|
|
86702
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86703
|
+
minWidth?: string | undefined;
|
|
86704
|
+
maxWidth?: string | undefined;
|
|
86705
|
+
maxHeight?: string | undefined;
|
|
86706
|
+
zIndex?: number | undefined;
|
|
86707
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86708
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86709
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86710
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86711
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86712
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86713
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86714
|
+
flexGrow?: number | undefined;
|
|
86715
|
+
flexShrink?: number | undefined;
|
|
86716
|
+
flexBasis?: string | undefined;
|
|
86717
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86718
|
+
rowGap?: string | undefined;
|
|
86719
|
+
columnGap?: string | undefined;
|
|
86720
|
+
gridTemplateColumns?: string | undefined;
|
|
86721
|
+
gridTemplateRows?: string | undefined;
|
|
86722
|
+
gridColumn?: string | undefined;
|
|
86723
|
+
gridRow?: string | undefined;
|
|
86724
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86725
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86726
|
+
paddingTop?: string | undefined;
|
|
86727
|
+
paddingRight?: string | undefined;
|
|
86728
|
+
paddingBottom?: string | undefined;
|
|
86729
|
+
paddingLeft?: string | undefined;
|
|
86730
|
+
margin?: string | undefined;
|
|
86731
|
+
marginTop?: string | undefined;
|
|
86732
|
+
marginRight?: string | undefined;
|
|
86733
|
+
marginBottom?: string | undefined;
|
|
86734
|
+
marginLeft?: string | undefined;
|
|
86735
|
+
border?: string | undefined;
|
|
86736
|
+
borderWidth?: string | undefined;
|
|
86737
|
+
borderStyle?: string | undefined;
|
|
86738
|
+
borderColor?: string | undefined;
|
|
86739
|
+
borderTop?: string | undefined;
|
|
86740
|
+
borderRight?: string | undefined;
|
|
86741
|
+
borderBottom?: string | undefined;
|
|
86742
|
+
borderLeft?: string | undefined;
|
|
86743
|
+
borderRadius?: string | undefined;
|
|
86744
|
+
borderTopLeftRadius?: string | undefined;
|
|
86745
|
+
borderTopRightRadius?: string | undefined;
|
|
86746
|
+
borderBottomRightRadius?: string | undefined;
|
|
86747
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86748
|
+
backgroundImage?: string | undefined;
|
|
86749
|
+
backgroundSize?: string | undefined;
|
|
86750
|
+
backgroundPosition?: string | undefined;
|
|
86751
|
+
backgroundRepeat?: string | undefined;
|
|
86752
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86753
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86754
|
+
boxShadow?: string | undefined;
|
|
86755
|
+
backdropFilter?: string | undefined;
|
|
86756
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86757
|
+
transform?: string | undefined;
|
|
86758
|
+
transformOrigin?: string | undefined;
|
|
86759
|
+
clipPath?: string | undefined;
|
|
86760
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86761
|
+
fontStretch?: string | undefined;
|
|
86762
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86763
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86764
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86765
|
+
textDecorationColor?: string | undefined;
|
|
86766
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86767
|
+
textDecorationThickness?: string | undefined;
|
|
86768
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86769
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86770
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86771
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86772
|
+
WebkitLineClamp?: number | undefined;
|
|
86773
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86774
|
+
fontFeatureSettings?: string | undefined;
|
|
86775
|
+
stroke?: string | undefined;
|
|
86776
|
+
strokeWidth?: string | undefined;
|
|
86777
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
86778
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
86779
|
+
strokeDasharray?: string | undefined;
|
|
86780
|
+
strokeDashoffset?: string | undefined;
|
|
86781
|
+
transition?: string | undefined;
|
|
86782
|
+
animation?: string | undefined;
|
|
86783
|
+
cursor?: string | undefined;
|
|
86784
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
86785
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
86786
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
86787
|
+
};
|
|
86788
|
+
parentId: string | null;
|
|
86789
|
+
characters: string;
|
|
86790
|
+
}>;
|
|
86791
|
+
declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
86792
|
+
id: z.ZodString;
|
|
86793
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
86794
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
86795
|
+
styles: z.ZodObject<{
|
|
86796
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
86797
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
86798
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86799
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86800
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86801
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86802
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86803
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86804
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86805
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86806
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86807
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86808
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86809
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86810
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86811
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
86812
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86813
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
86814
|
+
justifyContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>>;
|
|
86815
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
86816
|
+
alignSelf: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
86817
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86818
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86819
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86820
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
86821
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86822
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86823
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86824
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86825
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86826
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86827
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86828
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
86829
|
+
alignContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>>;
|
|
86830
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86831
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86832
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86833
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86834
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86835
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86836
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86837
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86838
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86839
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86840
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86841
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86842
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86843
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86844
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86845
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86846
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86847
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86848
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86849
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86850
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86851
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86852
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86853
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86854
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86855
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86856
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86857
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86858
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
86859
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
86860
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86861
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86862
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86863
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86864
|
+
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86865
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86866
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86867
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86868
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86869
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86870
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86871
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
86872
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
86873
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86874
|
+
fontVariantCaps: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>>;
|
|
86875
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
86876
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86877
|
+
textAlign: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>>;
|
|
86878
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
86879
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86880
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
86881
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86882
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
86883
|
+
whiteSpace: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>>;
|
|
86884
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
86885
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
86886
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
86887
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
86888
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86889
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86890
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86891
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86892
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
86893
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
86894
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86895
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86896
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86897
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86898
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86899
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
86900
|
+
pointerEvents: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>>;
|
|
86901
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
86902
|
+
}, "strip", z.ZodTypeAny, {
|
|
86903
|
+
filter?: string | undefined;
|
|
86904
|
+
fill?: string | undefined;
|
|
86905
|
+
top?: string | undefined;
|
|
86906
|
+
color?: string | undefined;
|
|
86907
|
+
width?: string | undefined;
|
|
86908
|
+
height?: string | undefined;
|
|
86909
|
+
opacity?: number | undefined;
|
|
86910
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
86911
|
+
backgroundColor?: string | undefined;
|
|
86912
|
+
gap?: string | undefined;
|
|
86913
|
+
aspectRatio?: string | undefined;
|
|
86914
|
+
minHeight?: string | undefined;
|
|
86915
|
+
bottom?: string | undefined;
|
|
86916
|
+
left?: string | undefined;
|
|
86917
|
+
right?: string | undefined;
|
|
86918
|
+
padding?: string | undefined;
|
|
86919
|
+
fontSize?: string | undefined;
|
|
86920
|
+
fontFamily?: string | undefined;
|
|
86921
|
+
fontWeight?: string | number | undefined;
|
|
86922
|
+
letterSpacing?: string | undefined;
|
|
86923
|
+
lineHeight?: string | number | undefined;
|
|
86924
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
86925
|
+
minWidth?: string | undefined;
|
|
86926
|
+
maxWidth?: string | undefined;
|
|
86927
|
+
maxHeight?: string | undefined;
|
|
86928
|
+
zIndex?: number | undefined;
|
|
86929
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86930
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86931
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
86932
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
86933
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
86934
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86935
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
86936
|
+
flexGrow?: number | undefined;
|
|
86937
|
+
flexShrink?: number | undefined;
|
|
86938
|
+
flexBasis?: string | undefined;
|
|
86939
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
86940
|
+
rowGap?: string | undefined;
|
|
86941
|
+
columnGap?: string | undefined;
|
|
86942
|
+
gridTemplateColumns?: string | undefined;
|
|
86943
|
+
gridTemplateRows?: string | undefined;
|
|
86944
|
+
gridColumn?: string | undefined;
|
|
86945
|
+
gridRow?: string | undefined;
|
|
86946
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
86947
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
86948
|
+
paddingTop?: string | undefined;
|
|
86949
|
+
paddingRight?: string | undefined;
|
|
86950
|
+
paddingBottom?: string | undefined;
|
|
86951
|
+
paddingLeft?: string | undefined;
|
|
86952
|
+
margin?: string | undefined;
|
|
86953
|
+
marginTop?: string | undefined;
|
|
86954
|
+
marginRight?: string | undefined;
|
|
86955
|
+
marginBottom?: string | undefined;
|
|
86956
|
+
marginLeft?: string | undefined;
|
|
86957
|
+
border?: string | undefined;
|
|
86958
|
+
borderWidth?: string | undefined;
|
|
86959
|
+
borderStyle?: string | undefined;
|
|
86960
|
+
borderColor?: string | undefined;
|
|
86961
|
+
borderTop?: string | undefined;
|
|
86962
|
+
borderRight?: string | undefined;
|
|
86963
|
+
borderBottom?: string | undefined;
|
|
86964
|
+
borderLeft?: string | undefined;
|
|
86965
|
+
borderRadius?: string | undefined;
|
|
86966
|
+
borderTopLeftRadius?: string | undefined;
|
|
86967
|
+
borderTopRightRadius?: string | undefined;
|
|
86968
|
+
borderBottomRightRadius?: string | undefined;
|
|
86969
|
+
borderBottomLeftRadius?: string | undefined;
|
|
86970
|
+
backgroundImage?: string | undefined;
|
|
86971
|
+
backgroundSize?: string | undefined;
|
|
86972
|
+
backgroundPosition?: string | undefined;
|
|
86973
|
+
backgroundRepeat?: string | undefined;
|
|
86974
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
86975
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
86976
|
+
boxShadow?: string | undefined;
|
|
86977
|
+
backdropFilter?: string | undefined;
|
|
86978
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86979
|
+
transform?: string | undefined;
|
|
86980
|
+
transformOrigin?: string | undefined;
|
|
86981
|
+
clipPath?: string | undefined;
|
|
86982
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86983
|
+
fontStretch?: string | undefined;
|
|
86984
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
86985
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
86986
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
86987
|
+
textDecorationColor?: string | undefined;
|
|
86988
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
86989
|
+
textDecorationThickness?: string | undefined;
|
|
86990
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
86991
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
86992
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
86993
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
86994
|
+
WebkitLineClamp?: number | undefined;
|
|
86995
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
86996
|
+
fontFeatureSettings?: string | undefined;
|
|
86997
|
+
stroke?: string | undefined;
|
|
86998
|
+
strokeWidth?: string | undefined;
|
|
86999
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87000
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87001
|
+
strokeDasharray?: string | undefined;
|
|
87002
|
+
strokeDashoffset?: string | undefined;
|
|
87003
|
+
transition?: string | undefined;
|
|
87004
|
+
animation?: string | undefined;
|
|
87005
|
+
cursor?: string | undefined;
|
|
87006
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87007
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87008
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87009
|
+
}, {
|
|
87010
|
+
filter?: string | undefined;
|
|
87011
|
+
fill?: string | undefined;
|
|
87012
|
+
top?: string | undefined;
|
|
87013
|
+
color?: string | undefined;
|
|
87014
|
+
width?: string | undefined;
|
|
87015
|
+
height?: string | undefined;
|
|
87016
|
+
opacity?: number | undefined;
|
|
87017
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87018
|
+
backgroundColor?: string | undefined;
|
|
87019
|
+
gap?: string | undefined;
|
|
87020
|
+
aspectRatio?: string | undefined;
|
|
87021
|
+
minHeight?: string | undefined;
|
|
87022
|
+
bottom?: string | undefined;
|
|
87023
|
+
left?: string | undefined;
|
|
87024
|
+
right?: string | undefined;
|
|
87025
|
+
padding?: string | undefined;
|
|
87026
|
+
fontSize?: string | undefined;
|
|
87027
|
+
fontFamily?: string | undefined;
|
|
87028
|
+
fontWeight?: string | number | undefined;
|
|
87029
|
+
letterSpacing?: string | undefined;
|
|
87030
|
+
lineHeight?: string | number | undefined;
|
|
87031
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87032
|
+
minWidth?: string | undefined;
|
|
87033
|
+
maxWidth?: string | undefined;
|
|
87034
|
+
maxHeight?: string | undefined;
|
|
87035
|
+
zIndex?: number | undefined;
|
|
87036
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87037
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87038
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87039
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87040
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87041
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87042
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87043
|
+
flexGrow?: number | undefined;
|
|
87044
|
+
flexShrink?: number | undefined;
|
|
87045
|
+
flexBasis?: string | undefined;
|
|
87046
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87047
|
+
rowGap?: string | undefined;
|
|
87048
|
+
columnGap?: string | undefined;
|
|
87049
|
+
gridTemplateColumns?: string | undefined;
|
|
87050
|
+
gridTemplateRows?: string | undefined;
|
|
87051
|
+
gridColumn?: string | undefined;
|
|
87052
|
+
gridRow?: string | undefined;
|
|
87053
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87054
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87055
|
+
paddingTop?: string | undefined;
|
|
87056
|
+
paddingRight?: string | undefined;
|
|
87057
|
+
paddingBottom?: string | undefined;
|
|
87058
|
+
paddingLeft?: string | undefined;
|
|
87059
|
+
margin?: string | undefined;
|
|
87060
|
+
marginTop?: string | undefined;
|
|
87061
|
+
marginRight?: string | undefined;
|
|
87062
|
+
marginBottom?: string | undefined;
|
|
87063
|
+
marginLeft?: string | undefined;
|
|
87064
|
+
border?: string | undefined;
|
|
87065
|
+
borderWidth?: string | undefined;
|
|
87066
|
+
borderStyle?: string | undefined;
|
|
87067
|
+
borderColor?: string | undefined;
|
|
87068
|
+
borderTop?: string | undefined;
|
|
87069
|
+
borderRight?: string | undefined;
|
|
87070
|
+
borderBottom?: string | undefined;
|
|
87071
|
+
borderLeft?: string | undefined;
|
|
87072
|
+
borderRadius?: string | undefined;
|
|
87073
|
+
borderTopLeftRadius?: string | undefined;
|
|
87074
|
+
borderTopRightRadius?: string | undefined;
|
|
87075
|
+
borderBottomRightRadius?: string | undefined;
|
|
87076
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87077
|
+
backgroundImage?: string | undefined;
|
|
87078
|
+
backgroundSize?: string | undefined;
|
|
87079
|
+
backgroundPosition?: string | undefined;
|
|
87080
|
+
backgroundRepeat?: string | undefined;
|
|
87081
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87082
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87083
|
+
boxShadow?: string | undefined;
|
|
87084
|
+
backdropFilter?: string | undefined;
|
|
87085
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87086
|
+
transform?: string | undefined;
|
|
87087
|
+
transformOrigin?: string | undefined;
|
|
87088
|
+
clipPath?: string | undefined;
|
|
87089
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87090
|
+
fontStretch?: string | undefined;
|
|
87091
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87092
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87093
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87094
|
+
textDecorationColor?: string | undefined;
|
|
87095
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87096
|
+
textDecorationThickness?: string | undefined;
|
|
87097
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87098
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87099
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87100
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87101
|
+
WebkitLineClamp?: number | undefined;
|
|
87102
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87103
|
+
fontFeatureSettings?: string | undefined;
|
|
87104
|
+
stroke?: string | undefined;
|
|
87105
|
+
strokeWidth?: string | undefined;
|
|
87106
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87107
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87108
|
+
strokeDasharray?: string | undefined;
|
|
87109
|
+
strokeDashoffset?: string | undefined;
|
|
87110
|
+
transition?: string | undefined;
|
|
87111
|
+
animation?: string | undefined;
|
|
87112
|
+
cursor?: string | undefined;
|
|
87113
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87114
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87115
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87116
|
+
}>;
|
|
87117
|
+
}, {
|
|
87118
|
+
type: z.ZodLiteral<"SVG">;
|
|
87119
|
+
svgString: z.ZodString;
|
|
87120
|
+
}>, "strip", z.ZodTypeAny, {
|
|
87121
|
+
type: "SVG";
|
|
87122
|
+
id: string;
|
|
87123
|
+
styles: {
|
|
87124
|
+
filter?: string | undefined;
|
|
87125
|
+
fill?: string | undefined;
|
|
87126
|
+
top?: string | undefined;
|
|
87127
|
+
color?: string | undefined;
|
|
87128
|
+
width?: string | undefined;
|
|
87129
|
+
height?: string | undefined;
|
|
87130
|
+
opacity?: number | undefined;
|
|
87131
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87132
|
+
backgroundColor?: string | undefined;
|
|
87133
|
+
gap?: string | undefined;
|
|
87134
|
+
aspectRatio?: string | undefined;
|
|
87135
|
+
minHeight?: string | undefined;
|
|
87136
|
+
bottom?: string | undefined;
|
|
87137
|
+
left?: string | undefined;
|
|
87138
|
+
right?: string | undefined;
|
|
87139
|
+
padding?: string | undefined;
|
|
87140
|
+
fontSize?: string | undefined;
|
|
87141
|
+
fontFamily?: string | undefined;
|
|
87142
|
+
fontWeight?: string | number | undefined;
|
|
87143
|
+
letterSpacing?: string | undefined;
|
|
87144
|
+
lineHeight?: string | number | undefined;
|
|
87145
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87146
|
+
minWidth?: string | undefined;
|
|
87147
|
+
maxWidth?: string | undefined;
|
|
87148
|
+
maxHeight?: string | undefined;
|
|
87149
|
+
zIndex?: number | undefined;
|
|
87150
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87151
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87152
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87153
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87154
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87155
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87156
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87157
|
+
flexGrow?: number | undefined;
|
|
87158
|
+
flexShrink?: number | undefined;
|
|
87159
|
+
flexBasis?: string | undefined;
|
|
87160
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87161
|
+
rowGap?: string | undefined;
|
|
87162
|
+
columnGap?: string | undefined;
|
|
87163
|
+
gridTemplateColumns?: string | undefined;
|
|
87164
|
+
gridTemplateRows?: string | undefined;
|
|
87165
|
+
gridColumn?: string | undefined;
|
|
87166
|
+
gridRow?: string | undefined;
|
|
87167
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87168
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87169
|
+
paddingTop?: string | undefined;
|
|
87170
|
+
paddingRight?: string | undefined;
|
|
87171
|
+
paddingBottom?: string | undefined;
|
|
87172
|
+
paddingLeft?: string | undefined;
|
|
87173
|
+
margin?: string | undefined;
|
|
87174
|
+
marginTop?: string | undefined;
|
|
87175
|
+
marginRight?: string | undefined;
|
|
87176
|
+
marginBottom?: string | undefined;
|
|
87177
|
+
marginLeft?: string | undefined;
|
|
87178
|
+
border?: string | undefined;
|
|
87179
|
+
borderWidth?: string | undefined;
|
|
87180
|
+
borderStyle?: string | undefined;
|
|
87181
|
+
borderColor?: string | undefined;
|
|
87182
|
+
borderTop?: string | undefined;
|
|
87183
|
+
borderRight?: string | undefined;
|
|
87184
|
+
borderBottom?: string | undefined;
|
|
87185
|
+
borderLeft?: string | undefined;
|
|
87186
|
+
borderRadius?: string | undefined;
|
|
87187
|
+
borderTopLeftRadius?: string | undefined;
|
|
87188
|
+
borderTopRightRadius?: string | undefined;
|
|
87189
|
+
borderBottomRightRadius?: string | undefined;
|
|
87190
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87191
|
+
backgroundImage?: string | undefined;
|
|
87192
|
+
backgroundSize?: string | undefined;
|
|
87193
|
+
backgroundPosition?: string | undefined;
|
|
87194
|
+
backgroundRepeat?: string | undefined;
|
|
87195
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87196
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87197
|
+
boxShadow?: string | undefined;
|
|
87198
|
+
backdropFilter?: string | undefined;
|
|
87199
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87200
|
+
transform?: string | undefined;
|
|
87201
|
+
transformOrigin?: string | undefined;
|
|
87202
|
+
clipPath?: string | undefined;
|
|
87203
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87204
|
+
fontStretch?: string | undefined;
|
|
87205
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87206
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87207
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87208
|
+
textDecorationColor?: string | undefined;
|
|
87209
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87210
|
+
textDecorationThickness?: string | undefined;
|
|
87211
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87212
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87213
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87214
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87215
|
+
WebkitLineClamp?: number | undefined;
|
|
87216
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87217
|
+
fontFeatureSettings?: string | undefined;
|
|
87218
|
+
stroke?: string | undefined;
|
|
87219
|
+
strokeWidth?: string | undefined;
|
|
87220
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87221
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87222
|
+
strokeDasharray?: string | undefined;
|
|
87223
|
+
strokeDashoffset?: string | undefined;
|
|
87224
|
+
transition?: string | undefined;
|
|
87225
|
+
animation?: string | undefined;
|
|
87226
|
+
cursor?: string | undefined;
|
|
87227
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87228
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87229
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87230
|
+
};
|
|
87231
|
+
parentId: string | null;
|
|
87232
|
+
svgString: string;
|
|
87233
|
+
}, {
|
|
87234
|
+
type: "SVG";
|
|
87235
|
+
id: string;
|
|
87236
|
+
styles: {
|
|
87237
|
+
filter?: string | undefined;
|
|
87238
|
+
fill?: string | undefined;
|
|
87239
|
+
top?: string | undefined;
|
|
87240
|
+
color?: string | undefined;
|
|
87241
|
+
width?: string | undefined;
|
|
87242
|
+
height?: string | undefined;
|
|
87243
|
+
opacity?: number | undefined;
|
|
87244
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87245
|
+
backgroundColor?: string | undefined;
|
|
87246
|
+
gap?: string | undefined;
|
|
87247
|
+
aspectRatio?: string | undefined;
|
|
87248
|
+
minHeight?: string | undefined;
|
|
87249
|
+
bottom?: string | undefined;
|
|
87250
|
+
left?: string | undefined;
|
|
87251
|
+
right?: string | undefined;
|
|
87252
|
+
padding?: string | undefined;
|
|
87253
|
+
fontSize?: string | undefined;
|
|
87254
|
+
fontFamily?: string | undefined;
|
|
87255
|
+
fontWeight?: string | number | undefined;
|
|
87256
|
+
letterSpacing?: string | undefined;
|
|
87257
|
+
lineHeight?: string | number | undefined;
|
|
87258
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87259
|
+
minWidth?: string | undefined;
|
|
87260
|
+
maxWidth?: string | undefined;
|
|
87261
|
+
maxHeight?: string | undefined;
|
|
87262
|
+
zIndex?: number | undefined;
|
|
87263
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87264
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87265
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87266
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87267
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87268
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87269
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87270
|
+
flexGrow?: number | undefined;
|
|
87271
|
+
flexShrink?: number | undefined;
|
|
87272
|
+
flexBasis?: string | undefined;
|
|
87273
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87274
|
+
rowGap?: string | undefined;
|
|
87275
|
+
columnGap?: string | undefined;
|
|
87276
|
+
gridTemplateColumns?: string | undefined;
|
|
87277
|
+
gridTemplateRows?: string | undefined;
|
|
87278
|
+
gridColumn?: string | undefined;
|
|
87279
|
+
gridRow?: string | undefined;
|
|
87280
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87281
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87282
|
+
paddingTop?: string | undefined;
|
|
87283
|
+
paddingRight?: string | undefined;
|
|
87284
|
+
paddingBottom?: string | undefined;
|
|
87285
|
+
paddingLeft?: string | undefined;
|
|
87286
|
+
margin?: string | undefined;
|
|
87287
|
+
marginTop?: string | undefined;
|
|
87288
|
+
marginRight?: string | undefined;
|
|
87289
|
+
marginBottom?: string | undefined;
|
|
87290
|
+
marginLeft?: string | undefined;
|
|
87291
|
+
border?: string | undefined;
|
|
87292
|
+
borderWidth?: string | undefined;
|
|
87293
|
+
borderStyle?: string | undefined;
|
|
87294
|
+
borderColor?: string | undefined;
|
|
87295
|
+
borderTop?: string | undefined;
|
|
87296
|
+
borderRight?: string | undefined;
|
|
87297
|
+
borderBottom?: string | undefined;
|
|
87298
|
+
borderLeft?: string | undefined;
|
|
87299
|
+
borderRadius?: string | undefined;
|
|
87300
|
+
borderTopLeftRadius?: string | undefined;
|
|
87301
|
+
borderTopRightRadius?: string | undefined;
|
|
87302
|
+
borderBottomRightRadius?: string | undefined;
|
|
87303
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87304
|
+
backgroundImage?: string | undefined;
|
|
87305
|
+
backgroundSize?: string | undefined;
|
|
87306
|
+
backgroundPosition?: string | undefined;
|
|
87307
|
+
backgroundRepeat?: string | undefined;
|
|
87308
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87309
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87310
|
+
boxShadow?: string | undefined;
|
|
87311
|
+
backdropFilter?: string | undefined;
|
|
87312
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87313
|
+
transform?: string | undefined;
|
|
87314
|
+
transformOrigin?: string | undefined;
|
|
87315
|
+
clipPath?: string | undefined;
|
|
87316
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87317
|
+
fontStretch?: string | undefined;
|
|
87318
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87319
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87320
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87321
|
+
textDecorationColor?: string | undefined;
|
|
87322
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87323
|
+
textDecorationThickness?: string | undefined;
|
|
87324
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87325
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87326
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87327
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87328
|
+
WebkitLineClamp?: number | undefined;
|
|
87329
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87330
|
+
fontFeatureSettings?: string | undefined;
|
|
87331
|
+
stroke?: string | undefined;
|
|
87332
|
+
strokeWidth?: string | undefined;
|
|
87333
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87334
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87335
|
+
strokeDasharray?: string | undefined;
|
|
87336
|
+
strokeDashoffset?: string | undefined;
|
|
87337
|
+
transition?: string | undefined;
|
|
87338
|
+
animation?: string | undefined;
|
|
87339
|
+
cursor?: string | undefined;
|
|
87340
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87341
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87342
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87343
|
+
};
|
|
87344
|
+
parentId: string | null;
|
|
87345
|
+
svgString: string;
|
|
87346
|
+
}>;
|
|
87347
|
+
type FrameNode = z.infer<typeof frameNodeObjectSchema> & {
|
|
87348
|
+
children: AnyDesignNode[];
|
|
87349
|
+
};
|
|
87350
|
+
type TextNode = z.infer<typeof textNodeObjectSchema>;
|
|
87351
|
+
type SvgNode = z.infer<typeof svgNodeObjectSchema> & {
|
|
87352
|
+
children: AnyDesignNode[];
|
|
87353
|
+
};
|
|
87354
|
+
type AnyDesignNode = FrameNode | TextNode | SvgNode;
|
|
87355
|
+
declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode, z.ZodTypeDef, FrameNode>, z.ZodObject<z.objectUtil.extendShape<{
|
|
87356
|
+
id: z.ZodString;
|
|
87357
|
+
type: z.ZodUnion<[z.ZodLiteral<"FRAME">, z.ZodLiteral<"TEXT">, z.ZodLiteral<"SVG">]>;
|
|
87358
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
87359
|
+
styles: z.ZodObject<{
|
|
87360
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline-block">, z.ZodLiteral<"inline">, z.ZodLiteral<"flex">, z.ZodLiteral<"grid">, z.ZodLiteral<"none">]>>>;
|
|
87361
|
+
position: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"absolute">, z.ZodLiteral<"relative">, z.ZodLiteral<"fixed">, z.ZodLiteral<"static">, z.ZodLiteral<"sticky">]>>>;
|
|
87362
|
+
top: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87363
|
+
right: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87364
|
+
bottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87365
|
+
left: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87366
|
+
width: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87367
|
+
height: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87368
|
+
minWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87369
|
+
minHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87370
|
+
maxWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87371
|
+
maxHeight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87372
|
+
zIndex: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87373
|
+
overflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87374
|
+
overflowX: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87375
|
+
overflowY: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"scroll">, z.ZodLiteral<"auto">, z.ZodLiteral<"clip">]>>>;
|
|
87376
|
+
aspectRatio: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87377
|
+
flexDirection: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"row-reverse">, z.ZodLiteral<"column">, z.ZodLiteral<"column-reverse">]>>>;
|
|
87378
|
+
justifyContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"space-evenly">]>>>;
|
|
87379
|
+
alignItems: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
87380
|
+
alignSelf: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"stretch">, z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"baseline">]>>>;
|
|
87381
|
+
flexGrow: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87382
|
+
flexShrink: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87383
|
+
flexBasis: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87384
|
+
flexWrap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"nowrap">, z.ZodLiteral<"wrap">, z.ZodLiteral<"wrap-reverse">]>>>;
|
|
87385
|
+
gap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87386
|
+
rowGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87387
|
+
columnGap: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87388
|
+
gridTemplateColumns: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87389
|
+
gridTemplateRows: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87390
|
+
gridColumn: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87391
|
+
gridRow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87392
|
+
gridAutoFlow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"row">, z.ZodLiteral<"column">, z.ZodLiteral<"dense">, z.ZodLiteral<"row dense">, z.ZodLiteral<"column dense">]>>>;
|
|
87393
|
+
alignContent: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"flex-end">, z.ZodLiteral<"center">, z.ZodLiteral<"space-between">, z.ZodLiteral<"space-around">, z.ZodLiteral<"stretch">]>>>;
|
|
87394
|
+
padding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87395
|
+
paddingTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87396
|
+
paddingRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87397
|
+
paddingBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87398
|
+
paddingLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87399
|
+
margin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87400
|
+
marginTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87401
|
+
marginRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87402
|
+
marginBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87403
|
+
marginLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87404
|
+
border: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87405
|
+
borderWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87406
|
+
borderStyle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87407
|
+
borderColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87408
|
+
borderTop: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87409
|
+
borderRight: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87410
|
+
borderBottom: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87411
|
+
borderLeft: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87412
|
+
borderRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87413
|
+
borderTopLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87414
|
+
borderTopRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87415
|
+
borderBottomRightRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87416
|
+
borderBottomLeftRadius: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87417
|
+
backgroundColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87418
|
+
backgroundImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87419
|
+
backgroundSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87420
|
+
backgroundPosition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87421
|
+
backgroundRepeat: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87422
|
+
backgroundClip: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">, z.ZodLiteral<"text">]>>>;
|
|
87423
|
+
backgroundOrigin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"border-box">, z.ZodLiteral<"padding-box">, z.ZodLiteral<"content-box">]>>>;
|
|
87424
|
+
opacity: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87425
|
+
boxShadow: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87426
|
+
filter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87427
|
+
backdropFilter: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87428
|
+
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87429
|
+
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87430
|
+
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87431
|
+
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87432
|
+
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87433
|
+
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87434
|
+
fontSize: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87435
|
+
fontWeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87436
|
+
fontStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"italic">, z.ZodLiteral<"oblique">]>>>;
|
|
87437
|
+
fontStretch: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87438
|
+
fontVariantCaps: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"small-caps">, z.ZodLiteral<"all-small-caps">, z.ZodLiteral<"petite-caps">, z.ZodLiteral<"all-petite-caps">, z.ZodLiteral<"unicase">, z.ZodLiteral<"titling-caps">]>>>;
|
|
87439
|
+
lineHeight: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
87440
|
+
letterSpacing: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87441
|
+
textAlign: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">, z.ZodLiteral<"justify">, z.ZodLiteral<"start">, z.ZodLiteral<"end">]>>>;
|
|
87442
|
+
textDecorationLine: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"underline">, z.ZodLiteral<"overline">, z.ZodLiteral<"line-through">]>>>;
|
|
87443
|
+
textDecorationColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87444
|
+
textDecorationStyle: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"solid">, z.ZodLiteral<"double">, z.ZodLiteral<"dotted">, z.ZodLiteral<"dashed">, z.ZodLiteral<"wavy">]>>>;
|
|
87445
|
+
textDecorationThickness: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87446
|
+
textTransform: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"uppercase">, z.ZodLiteral<"lowercase">, z.ZodLiteral<"capitalize">, z.ZodLiteral<"full-width">]>>>;
|
|
87447
|
+
whiteSpace: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"nowrap">, z.ZodLiteral<"pre">, z.ZodLiteral<"pre-wrap">, z.ZodLiteral<"pre-line">, z.ZodLiteral<"break-spaces">]>>>;
|
|
87448
|
+
wordBreak: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"break-all">, z.ZodLiteral<"keep-all">, z.ZodLiteral<"break-word">]>>>;
|
|
87449
|
+
textOverflow: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"clip">, z.ZodLiteral<"ellipsis">]>>>;
|
|
87450
|
+
WebkitLineClamp: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
87451
|
+
WebkitBoxOrient: z.ZodOptional<z.ZodOptional<z.ZodLiteral<"vertical">>>;
|
|
87452
|
+
fontFeatureSettings: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87453
|
+
fill: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87454
|
+
stroke: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87455
|
+
strokeWidth: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87456
|
+
strokeLinecap: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"butt">, z.ZodLiteral<"round">, z.ZodLiteral<"square">]>>>;
|
|
87457
|
+
strokeLinejoin: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"miter">, z.ZodLiteral<"round">, z.ZodLiteral<"bevel">]>>>;
|
|
87458
|
+
strokeDasharray: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87459
|
+
strokeDashoffset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87460
|
+
transition: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87461
|
+
animation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87462
|
+
cursor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87463
|
+
userSelect: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"text">, z.ZodLiteral<"all">]>>>;
|
|
87464
|
+
pointerEvents: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"visiblePainted">, z.ZodLiteral<"visibleFill">, z.ZodLiteral<"visibleStroke">, z.ZodLiteral<"visible">, z.ZodLiteral<"painted">, z.ZodLiteral<"fill">, z.ZodLiteral<"stroke">, z.ZodLiteral<"all">, z.ZodLiteral<"inherit">]>>>;
|
|
87465
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"visible">, z.ZodLiteral<"hidden">, z.ZodLiteral<"collapse">]>>>;
|
|
87466
|
+
}, "strip", z.ZodTypeAny, {
|
|
87467
|
+
filter?: string | undefined;
|
|
87468
|
+
fill?: string | undefined;
|
|
87469
|
+
top?: string | undefined;
|
|
87470
|
+
color?: string | undefined;
|
|
87471
|
+
width?: string | undefined;
|
|
87472
|
+
height?: string | undefined;
|
|
87473
|
+
opacity?: number | undefined;
|
|
87474
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87475
|
+
backgroundColor?: string | undefined;
|
|
87476
|
+
gap?: string | undefined;
|
|
87477
|
+
aspectRatio?: string | undefined;
|
|
87478
|
+
minHeight?: string | undefined;
|
|
87479
|
+
bottom?: string | undefined;
|
|
87480
|
+
left?: string | undefined;
|
|
87481
|
+
right?: string | undefined;
|
|
87482
|
+
padding?: string | undefined;
|
|
87483
|
+
fontSize?: string | undefined;
|
|
87484
|
+
fontFamily?: string | undefined;
|
|
87485
|
+
fontWeight?: string | number | undefined;
|
|
87486
|
+
letterSpacing?: string | undefined;
|
|
87487
|
+
lineHeight?: string | number | undefined;
|
|
87488
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87489
|
+
minWidth?: string | undefined;
|
|
87490
|
+
maxWidth?: string | undefined;
|
|
87491
|
+
maxHeight?: string | undefined;
|
|
87492
|
+
zIndex?: number | undefined;
|
|
87493
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87494
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87495
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87496
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87497
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87498
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87499
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87500
|
+
flexGrow?: number | undefined;
|
|
87501
|
+
flexShrink?: number | undefined;
|
|
87502
|
+
flexBasis?: string | undefined;
|
|
87503
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87504
|
+
rowGap?: string | undefined;
|
|
87505
|
+
columnGap?: string | undefined;
|
|
87506
|
+
gridTemplateColumns?: string | undefined;
|
|
87507
|
+
gridTemplateRows?: string | undefined;
|
|
87508
|
+
gridColumn?: string | undefined;
|
|
87509
|
+
gridRow?: string | undefined;
|
|
87510
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87511
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87512
|
+
paddingTop?: string | undefined;
|
|
87513
|
+
paddingRight?: string | undefined;
|
|
87514
|
+
paddingBottom?: string | undefined;
|
|
87515
|
+
paddingLeft?: string | undefined;
|
|
87516
|
+
margin?: string | undefined;
|
|
87517
|
+
marginTop?: string | undefined;
|
|
87518
|
+
marginRight?: string | undefined;
|
|
87519
|
+
marginBottom?: string | undefined;
|
|
87520
|
+
marginLeft?: string | undefined;
|
|
87521
|
+
border?: string | undefined;
|
|
87522
|
+
borderWidth?: string | undefined;
|
|
87523
|
+
borderStyle?: string | undefined;
|
|
87524
|
+
borderColor?: string | undefined;
|
|
87525
|
+
borderTop?: string | undefined;
|
|
87526
|
+
borderRight?: string | undefined;
|
|
87527
|
+
borderBottom?: string | undefined;
|
|
87528
|
+
borderLeft?: string | undefined;
|
|
87529
|
+
borderRadius?: string | undefined;
|
|
87530
|
+
borderTopLeftRadius?: string | undefined;
|
|
87531
|
+
borderTopRightRadius?: string | undefined;
|
|
87532
|
+
borderBottomRightRadius?: string | undefined;
|
|
87533
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87534
|
+
backgroundImage?: string | undefined;
|
|
87535
|
+
backgroundSize?: string | undefined;
|
|
87536
|
+
backgroundPosition?: string | undefined;
|
|
87537
|
+
backgroundRepeat?: string | undefined;
|
|
87538
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87539
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87540
|
+
boxShadow?: string | undefined;
|
|
87541
|
+
backdropFilter?: string | undefined;
|
|
87542
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87543
|
+
transform?: string | undefined;
|
|
87544
|
+
transformOrigin?: string | undefined;
|
|
87545
|
+
clipPath?: string | undefined;
|
|
87546
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87547
|
+
fontStretch?: string | undefined;
|
|
87548
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87549
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87550
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87551
|
+
textDecorationColor?: string | undefined;
|
|
87552
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87553
|
+
textDecorationThickness?: string | undefined;
|
|
87554
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87555
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87556
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87557
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87558
|
+
WebkitLineClamp?: number | undefined;
|
|
87559
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87560
|
+
fontFeatureSettings?: string | undefined;
|
|
87561
|
+
stroke?: string | undefined;
|
|
87562
|
+
strokeWidth?: string | undefined;
|
|
87563
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87564
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87565
|
+
strokeDasharray?: string | undefined;
|
|
87566
|
+
strokeDashoffset?: string | undefined;
|
|
87567
|
+
transition?: string | undefined;
|
|
87568
|
+
animation?: string | undefined;
|
|
87569
|
+
cursor?: string | undefined;
|
|
87570
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87571
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87572
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87573
|
+
}, {
|
|
87574
|
+
filter?: string | undefined;
|
|
87575
|
+
fill?: string | undefined;
|
|
87576
|
+
top?: string | undefined;
|
|
87577
|
+
color?: string | undefined;
|
|
87578
|
+
width?: string | undefined;
|
|
87579
|
+
height?: string | undefined;
|
|
87580
|
+
opacity?: number | undefined;
|
|
87581
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87582
|
+
backgroundColor?: string | undefined;
|
|
87583
|
+
gap?: string | undefined;
|
|
87584
|
+
aspectRatio?: string | undefined;
|
|
87585
|
+
minHeight?: string | undefined;
|
|
87586
|
+
bottom?: string | undefined;
|
|
87587
|
+
left?: string | undefined;
|
|
87588
|
+
right?: string | undefined;
|
|
87589
|
+
padding?: string | undefined;
|
|
87590
|
+
fontSize?: string | undefined;
|
|
87591
|
+
fontFamily?: string | undefined;
|
|
87592
|
+
fontWeight?: string | number | undefined;
|
|
87593
|
+
letterSpacing?: string | undefined;
|
|
87594
|
+
lineHeight?: string | number | undefined;
|
|
87595
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87596
|
+
minWidth?: string | undefined;
|
|
87597
|
+
maxWidth?: string | undefined;
|
|
87598
|
+
maxHeight?: string | undefined;
|
|
87599
|
+
zIndex?: number | undefined;
|
|
87600
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87601
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87602
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87603
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87604
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87605
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87606
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87607
|
+
flexGrow?: number | undefined;
|
|
87608
|
+
flexShrink?: number | undefined;
|
|
87609
|
+
flexBasis?: string | undefined;
|
|
87610
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87611
|
+
rowGap?: string | undefined;
|
|
87612
|
+
columnGap?: string | undefined;
|
|
87613
|
+
gridTemplateColumns?: string | undefined;
|
|
87614
|
+
gridTemplateRows?: string | undefined;
|
|
87615
|
+
gridColumn?: string | undefined;
|
|
87616
|
+
gridRow?: string | undefined;
|
|
87617
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87618
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87619
|
+
paddingTop?: string | undefined;
|
|
87620
|
+
paddingRight?: string | undefined;
|
|
87621
|
+
paddingBottom?: string | undefined;
|
|
87622
|
+
paddingLeft?: string | undefined;
|
|
87623
|
+
margin?: string | undefined;
|
|
87624
|
+
marginTop?: string | undefined;
|
|
87625
|
+
marginRight?: string | undefined;
|
|
87626
|
+
marginBottom?: string | undefined;
|
|
87627
|
+
marginLeft?: string | undefined;
|
|
87628
|
+
border?: string | undefined;
|
|
87629
|
+
borderWidth?: string | undefined;
|
|
87630
|
+
borderStyle?: string | undefined;
|
|
87631
|
+
borderColor?: string | undefined;
|
|
87632
|
+
borderTop?: string | undefined;
|
|
87633
|
+
borderRight?: string | undefined;
|
|
87634
|
+
borderBottom?: string | undefined;
|
|
87635
|
+
borderLeft?: string | undefined;
|
|
87636
|
+
borderRadius?: string | undefined;
|
|
87637
|
+
borderTopLeftRadius?: string | undefined;
|
|
87638
|
+
borderTopRightRadius?: string | undefined;
|
|
87639
|
+
borderBottomRightRadius?: string | undefined;
|
|
87640
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87641
|
+
backgroundImage?: string | undefined;
|
|
87642
|
+
backgroundSize?: string | undefined;
|
|
87643
|
+
backgroundPosition?: string | undefined;
|
|
87644
|
+
backgroundRepeat?: string | undefined;
|
|
87645
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87646
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87647
|
+
boxShadow?: string | undefined;
|
|
87648
|
+
backdropFilter?: string | undefined;
|
|
87649
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87650
|
+
transform?: string | undefined;
|
|
87651
|
+
transformOrigin?: string | undefined;
|
|
87652
|
+
clipPath?: string | undefined;
|
|
87653
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87654
|
+
fontStretch?: string | undefined;
|
|
87655
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87656
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87657
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87658
|
+
textDecorationColor?: string | undefined;
|
|
87659
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87660
|
+
textDecorationThickness?: string | undefined;
|
|
87661
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87662
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87663
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87664
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87665
|
+
WebkitLineClamp?: number | undefined;
|
|
87666
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87667
|
+
fontFeatureSettings?: string | undefined;
|
|
87668
|
+
stroke?: string | undefined;
|
|
87669
|
+
strokeWidth?: string | undefined;
|
|
87670
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87671
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87672
|
+
strokeDasharray?: string | undefined;
|
|
87673
|
+
strokeDashoffset?: string | undefined;
|
|
87674
|
+
transition?: string | undefined;
|
|
87675
|
+
animation?: string | undefined;
|
|
87676
|
+
cursor?: string | undefined;
|
|
87677
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87678
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87679
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87680
|
+
}>;
|
|
87681
|
+
}, {
|
|
87682
|
+
type: z.ZodLiteral<"TEXT">;
|
|
87683
|
+
characters: z.ZodString;
|
|
87684
|
+
}>, "strip", z.ZodTypeAny, {
|
|
87685
|
+
type: "TEXT";
|
|
87686
|
+
id: string;
|
|
87687
|
+
styles: {
|
|
87688
|
+
filter?: string | undefined;
|
|
87689
|
+
fill?: string | undefined;
|
|
87690
|
+
top?: string | undefined;
|
|
87691
|
+
color?: string | undefined;
|
|
87692
|
+
width?: string | undefined;
|
|
87693
|
+
height?: string | undefined;
|
|
87694
|
+
opacity?: number | undefined;
|
|
87695
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87696
|
+
backgroundColor?: string | undefined;
|
|
87697
|
+
gap?: string | undefined;
|
|
87698
|
+
aspectRatio?: string | undefined;
|
|
87699
|
+
minHeight?: string | undefined;
|
|
87700
|
+
bottom?: string | undefined;
|
|
87701
|
+
left?: string | undefined;
|
|
87702
|
+
right?: string | undefined;
|
|
87703
|
+
padding?: string | undefined;
|
|
87704
|
+
fontSize?: string | undefined;
|
|
87705
|
+
fontFamily?: string | undefined;
|
|
87706
|
+
fontWeight?: string | number | undefined;
|
|
87707
|
+
letterSpacing?: string | undefined;
|
|
87708
|
+
lineHeight?: string | number | undefined;
|
|
87709
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87710
|
+
minWidth?: string | undefined;
|
|
87711
|
+
maxWidth?: string | undefined;
|
|
87712
|
+
maxHeight?: string | undefined;
|
|
87713
|
+
zIndex?: number | undefined;
|
|
87714
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87715
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87716
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87717
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87718
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87719
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87720
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87721
|
+
flexGrow?: number | undefined;
|
|
87722
|
+
flexShrink?: number | undefined;
|
|
87723
|
+
flexBasis?: string | undefined;
|
|
87724
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87725
|
+
rowGap?: string | undefined;
|
|
87726
|
+
columnGap?: string | undefined;
|
|
87727
|
+
gridTemplateColumns?: string | undefined;
|
|
87728
|
+
gridTemplateRows?: string | undefined;
|
|
87729
|
+
gridColumn?: string | undefined;
|
|
87730
|
+
gridRow?: string | undefined;
|
|
87731
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87732
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87733
|
+
paddingTop?: string | undefined;
|
|
87734
|
+
paddingRight?: string | undefined;
|
|
87735
|
+
paddingBottom?: string | undefined;
|
|
87736
|
+
paddingLeft?: string | undefined;
|
|
87737
|
+
margin?: string | undefined;
|
|
87738
|
+
marginTop?: string | undefined;
|
|
87739
|
+
marginRight?: string | undefined;
|
|
87740
|
+
marginBottom?: string | undefined;
|
|
87741
|
+
marginLeft?: string | undefined;
|
|
87742
|
+
border?: string | undefined;
|
|
87743
|
+
borderWidth?: string | undefined;
|
|
87744
|
+
borderStyle?: string | undefined;
|
|
87745
|
+
borderColor?: string | undefined;
|
|
87746
|
+
borderTop?: string | undefined;
|
|
87747
|
+
borderRight?: string | undefined;
|
|
87748
|
+
borderBottom?: string | undefined;
|
|
87749
|
+
borderLeft?: string | undefined;
|
|
87750
|
+
borderRadius?: string | undefined;
|
|
87751
|
+
borderTopLeftRadius?: string | undefined;
|
|
87752
|
+
borderTopRightRadius?: string | undefined;
|
|
87753
|
+
borderBottomRightRadius?: string | undefined;
|
|
87754
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87755
|
+
backgroundImage?: string | undefined;
|
|
87756
|
+
backgroundSize?: string | undefined;
|
|
87757
|
+
backgroundPosition?: string | undefined;
|
|
87758
|
+
backgroundRepeat?: string | undefined;
|
|
87759
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87760
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87761
|
+
boxShadow?: string | undefined;
|
|
87762
|
+
backdropFilter?: string | undefined;
|
|
87763
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87764
|
+
transform?: string | undefined;
|
|
87765
|
+
transformOrigin?: string | undefined;
|
|
87766
|
+
clipPath?: string | undefined;
|
|
87767
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87768
|
+
fontStretch?: string | undefined;
|
|
87769
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87770
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87771
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87772
|
+
textDecorationColor?: string | undefined;
|
|
87773
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87774
|
+
textDecorationThickness?: string | undefined;
|
|
87775
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87776
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87777
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87778
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87779
|
+
WebkitLineClamp?: number | undefined;
|
|
87780
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87781
|
+
fontFeatureSettings?: string | undefined;
|
|
87782
|
+
stroke?: string | undefined;
|
|
87783
|
+
strokeWidth?: string | undefined;
|
|
87784
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87785
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87786
|
+
strokeDasharray?: string | undefined;
|
|
87787
|
+
strokeDashoffset?: string | undefined;
|
|
87788
|
+
transition?: string | undefined;
|
|
87789
|
+
animation?: string | undefined;
|
|
87790
|
+
cursor?: string | undefined;
|
|
87791
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87792
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87793
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87794
|
+
};
|
|
87795
|
+
parentId: string | null;
|
|
87796
|
+
characters: string;
|
|
87797
|
+
}, {
|
|
87798
|
+
type: "TEXT";
|
|
87799
|
+
id: string;
|
|
87800
|
+
styles: {
|
|
87801
|
+
filter?: string | undefined;
|
|
87802
|
+
fill?: string | undefined;
|
|
87803
|
+
top?: string | undefined;
|
|
87804
|
+
color?: string | undefined;
|
|
87805
|
+
width?: string | undefined;
|
|
87806
|
+
height?: string | undefined;
|
|
87807
|
+
opacity?: number | undefined;
|
|
87808
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
87809
|
+
backgroundColor?: string | undefined;
|
|
87810
|
+
gap?: string | undefined;
|
|
87811
|
+
aspectRatio?: string | undefined;
|
|
87812
|
+
minHeight?: string | undefined;
|
|
87813
|
+
bottom?: string | undefined;
|
|
87814
|
+
left?: string | undefined;
|
|
87815
|
+
right?: string | undefined;
|
|
87816
|
+
padding?: string | undefined;
|
|
87817
|
+
fontSize?: string | undefined;
|
|
87818
|
+
fontFamily?: string | undefined;
|
|
87819
|
+
fontWeight?: string | number | undefined;
|
|
87820
|
+
letterSpacing?: string | undefined;
|
|
87821
|
+
lineHeight?: string | number | undefined;
|
|
87822
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
87823
|
+
minWidth?: string | undefined;
|
|
87824
|
+
maxWidth?: string | undefined;
|
|
87825
|
+
maxHeight?: string | undefined;
|
|
87826
|
+
zIndex?: number | undefined;
|
|
87827
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87828
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87829
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
87830
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
87831
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
87832
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87833
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
87834
|
+
flexGrow?: number | undefined;
|
|
87835
|
+
flexShrink?: number | undefined;
|
|
87836
|
+
flexBasis?: string | undefined;
|
|
87837
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
87838
|
+
rowGap?: string | undefined;
|
|
87839
|
+
columnGap?: string | undefined;
|
|
87840
|
+
gridTemplateColumns?: string | undefined;
|
|
87841
|
+
gridTemplateRows?: string | undefined;
|
|
87842
|
+
gridColumn?: string | undefined;
|
|
87843
|
+
gridRow?: string | undefined;
|
|
87844
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
87845
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
87846
|
+
paddingTop?: string | undefined;
|
|
87847
|
+
paddingRight?: string | undefined;
|
|
87848
|
+
paddingBottom?: string | undefined;
|
|
87849
|
+
paddingLeft?: string | undefined;
|
|
87850
|
+
margin?: string | undefined;
|
|
87851
|
+
marginTop?: string | undefined;
|
|
87852
|
+
marginRight?: string | undefined;
|
|
87853
|
+
marginBottom?: string | undefined;
|
|
87854
|
+
marginLeft?: string | undefined;
|
|
87855
|
+
border?: string | undefined;
|
|
87856
|
+
borderWidth?: string | undefined;
|
|
87857
|
+
borderStyle?: string | undefined;
|
|
87858
|
+
borderColor?: string | undefined;
|
|
87859
|
+
borderTop?: string | undefined;
|
|
87860
|
+
borderRight?: string | undefined;
|
|
87861
|
+
borderBottom?: string | undefined;
|
|
87862
|
+
borderLeft?: string | undefined;
|
|
87863
|
+
borderRadius?: string | undefined;
|
|
87864
|
+
borderTopLeftRadius?: string | undefined;
|
|
87865
|
+
borderTopRightRadius?: string | undefined;
|
|
87866
|
+
borderBottomRightRadius?: string | undefined;
|
|
87867
|
+
borderBottomLeftRadius?: string | undefined;
|
|
87868
|
+
backgroundImage?: string | undefined;
|
|
87869
|
+
backgroundSize?: string | undefined;
|
|
87870
|
+
backgroundPosition?: string | undefined;
|
|
87871
|
+
backgroundRepeat?: string | undefined;
|
|
87872
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
87873
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
87874
|
+
boxShadow?: string | undefined;
|
|
87875
|
+
backdropFilter?: string | undefined;
|
|
87876
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87877
|
+
transform?: string | undefined;
|
|
87878
|
+
transformOrigin?: string | undefined;
|
|
87879
|
+
clipPath?: string | undefined;
|
|
87880
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87881
|
+
fontStretch?: string | undefined;
|
|
87882
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
87883
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
87884
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
87885
|
+
textDecorationColor?: string | undefined;
|
|
87886
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
87887
|
+
textDecorationThickness?: string | undefined;
|
|
87888
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
87889
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
87890
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
87891
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
87892
|
+
WebkitLineClamp?: number | undefined;
|
|
87893
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
87894
|
+
fontFeatureSettings?: string | undefined;
|
|
87895
|
+
stroke?: string | undefined;
|
|
87896
|
+
strokeWidth?: string | undefined;
|
|
87897
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
87898
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
87899
|
+
strokeDasharray?: string | undefined;
|
|
87900
|
+
strokeDashoffset?: string | undefined;
|
|
87901
|
+
transition?: string | undefined;
|
|
87902
|
+
animation?: string | undefined;
|
|
87903
|
+
cursor?: string | undefined;
|
|
87904
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
87905
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
87906
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
87907
|
+
};
|
|
87908
|
+
parentId: string | null;
|
|
87909
|
+
characters: string;
|
|
87910
|
+
}>, z.ZodType<SvgNode, z.ZodTypeDef, SvgNode>]>;
|
|
87911
|
+
type FigmaExporter = {
|
|
87912
|
+
AnyDesignNode: AnyDesignNode;
|
|
87913
|
+
FrameNode: FrameNode;
|
|
87914
|
+
TextNode: TextNode;
|
|
87915
|
+
SvgNode: SvgNode;
|
|
87916
|
+
ProcessedStyles: ProcessedStyles;
|
|
87917
|
+
};
|
|
87918
|
+
|
|
85320
87919
|
declare const FigmaNodeRendererPayload: z.ZodObject<{
|
|
85321
87920
|
designSystemId: z.ZodString;
|
|
85322
87921
|
versionId: z.ZodString;
|
|
@@ -157778,9 +160377,9 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
157778
160377
|
avatar?: string | undefined;
|
|
157779
160378
|
} | undefined;
|
|
157780
160379
|
username?: string | undefined;
|
|
160380
|
+
refreshToken?: string | undefined;
|
|
157781
160381
|
expiresAt?: Date | undefined;
|
|
157782
160382
|
customUrl?: string | undefined;
|
|
157783
|
-
refreshToken?: string | undefined;
|
|
157784
160383
|
tokenName?: string | undefined;
|
|
157785
160384
|
refreshedAt?: Date | undefined;
|
|
157786
160385
|
appInstallationId?: string | undefined;
|
|
@@ -157808,9 +160407,9 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
157808
160407
|
avatar?: string | undefined;
|
|
157809
160408
|
} | undefined;
|
|
157810
160409
|
username?: string | undefined;
|
|
160410
|
+
refreshToken?: string | undefined;
|
|
157811
160411
|
expiresAt?: Date | undefined;
|
|
157812
160412
|
customUrl?: string | undefined;
|
|
157813
|
-
refreshToken?: string | undefined;
|
|
157814
160413
|
tokenName?: string | undefined;
|
|
157815
160414
|
refreshedAt?: Date | undefined;
|
|
157816
160415
|
appInstallationId?: string | undefined;
|
|
@@ -157908,9 +160507,9 @@ declare const Integration: z.ZodObject<{
|
|
|
157908
160507
|
avatar?: string | undefined;
|
|
157909
160508
|
} | undefined;
|
|
157910
160509
|
username?: string | undefined;
|
|
160510
|
+
refreshToken?: string | undefined;
|
|
157911
160511
|
expiresAt?: Date | undefined;
|
|
157912
160512
|
customUrl?: string | undefined;
|
|
157913
|
-
refreshToken?: string | undefined;
|
|
157914
160513
|
tokenName?: string | undefined;
|
|
157915
160514
|
refreshedAt?: Date | undefined;
|
|
157916
160515
|
appInstallationId?: string | undefined;
|
|
@@ -157938,9 +160537,9 @@ declare const Integration: z.ZodObject<{
|
|
|
157938
160537
|
avatar?: string | undefined;
|
|
157939
160538
|
} | undefined;
|
|
157940
160539
|
username?: string | undefined;
|
|
160540
|
+
refreshToken?: string | undefined;
|
|
157941
160541
|
expiresAt?: Date | undefined;
|
|
157942
160542
|
customUrl?: string | undefined;
|
|
157943
|
-
refreshToken?: string | undefined;
|
|
157944
160543
|
tokenName?: string | undefined;
|
|
157945
160544
|
refreshedAt?: Date | undefined;
|
|
157946
160545
|
appInstallationId?: string | undefined;
|
|
@@ -157974,9 +160573,9 @@ declare const Integration: z.ZodObject<{
|
|
|
157974
160573
|
avatar?: string | undefined;
|
|
157975
160574
|
} | undefined;
|
|
157976
160575
|
username?: string | undefined;
|
|
160576
|
+
refreshToken?: string | undefined;
|
|
157977
160577
|
expiresAt?: Date | undefined;
|
|
157978
160578
|
customUrl?: string | undefined;
|
|
157979
|
-
refreshToken?: string | undefined;
|
|
157980
160579
|
tokenName?: string | undefined;
|
|
157981
160580
|
refreshedAt?: Date | undefined;
|
|
157982
160581
|
appInstallationId?: string | undefined;
|
|
@@ -158010,9 +160609,9 @@ declare const Integration: z.ZodObject<{
|
|
|
158010
160609
|
avatar?: string | undefined;
|
|
158011
160610
|
} | undefined;
|
|
158012
160611
|
username?: string | undefined;
|
|
160612
|
+
refreshToken?: string | undefined;
|
|
158013
160613
|
expiresAt?: Date | undefined;
|
|
158014
160614
|
customUrl?: string | undefined;
|
|
158015
|
-
refreshToken?: string | undefined;
|
|
158016
160615
|
tokenName?: string | undefined;
|
|
158017
160616
|
refreshedAt?: Date | undefined;
|
|
158018
160617
|
appInstallationId?: string | undefined;
|
|
@@ -158127,20 +160726,20 @@ declare const IntegrationTokenSchemaOld: z.ZodObject<{
|
|
|
158127
160726
|
externalUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
158128
160727
|
}, "strip", z.ZodTypeAny, {
|
|
158129
160728
|
id: string;
|
|
160729
|
+
refreshToken: string;
|
|
158130
160730
|
expiresAt: Date;
|
|
158131
160731
|
scope: string;
|
|
158132
160732
|
accessToken: string;
|
|
158133
160733
|
userId: string;
|
|
158134
|
-
refreshToken: string;
|
|
158135
160734
|
provider: OAuthProviderNames;
|
|
158136
160735
|
externalUserId?: string | null | undefined;
|
|
158137
160736
|
}, {
|
|
158138
160737
|
id: string;
|
|
160738
|
+
refreshToken: string;
|
|
158139
160739
|
expiresAt: Date;
|
|
158140
160740
|
scope: string;
|
|
158141
160741
|
accessToken: string;
|
|
158142
160742
|
userId: string;
|
|
158143
|
-
refreshToken: string;
|
|
158144
160743
|
provider: OAuthProviderNames;
|
|
158145
160744
|
externalUserId?: string | null | undefined;
|
|
158146
160745
|
}>;
|
|
@@ -186379,8 +188978,8 @@ declare const PersonalAccessToken: z.ZodObject<{
|
|
|
186379
188978
|
id: string;
|
|
186380
188979
|
name: string;
|
|
186381
188980
|
createdAt: Date;
|
|
186382
|
-
userId: string;
|
|
186383
188981
|
hidden: boolean;
|
|
188982
|
+
userId: string;
|
|
186384
188983
|
token: string;
|
|
186385
188984
|
designSystemId?: string | undefined;
|
|
186386
188985
|
scope?: string | undefined;
|
|
@@ -186391,8 +188990,8 @@ declare const PersonalAccessToken: z.ZodObject<{
|
|
|
186391
188990
|
id: string;
|
|
186392
188991
|
name: string;
|
|
186393
188992
|
createdAt: Date;
|
|
186394
|
-
userId: string;
|
|
186395
188993
|
hidden: boolean;
|
|
188994
|
+
userId: string;
|
|
186396
188995
|
token: string;
|
|
186397
188996
|
designSystemId?: string | undefined;
|
|
186398
188997
|
scope?: string | undefined;
|
|
@@ -187274,4 +189873,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
187274
189873
|
token: PersonalAccessToken;
|
|
187275
189874
|
};
|
|
187276
189875
|
|
|
187277
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, 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 CreateDocumentationPageDependencies, 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 CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, 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, DocumentationPageDependencies, 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, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, 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, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, 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, Registry, RegistryType, 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, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateDocumentationPageDependencies, 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 UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, 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, UserTheme, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, 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, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
189876
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, 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, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, 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 CreateDocumentationPageDependencies, 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 CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, 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, DocumentationPageDependencies, 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, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, 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, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, 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, Registry, RegistryType, 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, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateDocumentationPageDependencies, 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 UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, 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, UserTheme, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, 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, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|