@smart-tools/t3-code-pixso-mcp-assistant 1.0.1 → 1.0.2
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/{PixsoAssistantService-BWdD4LmW.d.mts → PixsoAssistantService-CECSOLYb.d.mts} +69 -66
- package/dist/PixsoAssistantService-x1jLli4a.mjs +109 -0
- package/dist/contracts/index.d.mts +1656 -56
- package/dist/contracts/index.mjs +1 -1
- package/dist/galleryState-DvtxfQ-P.mjs +1 -0
- package/dist/panel-DDqwWCE7.mjs +1 -0
- package/dist/resolvedNodes-CqxO3XOM.d.mts +42 -0
- package/dist/scan-B_SM6uoL.d.mts +2791 -0
- package/dist/server/index.d.mts +4 -3
- package/dist/server/index.mjs +1 -1
- package/dist/server/testing.d.mts +3 -2
- package/dist/server/testing.mjs +1 -1
- package/dist/web/index.d.mts +16 -3
- package/dist/web/index.mjs +7 -10
- package/package.json +7 -9
- package/dist/PixsoAssistantService-DE6ZFSfz.mjs +0 -113
- package/dist/constants-C3TxS7N-.mjs +0 -1
- package/dist/errors-CzFjWbus.d.mts +0 -10
- package/dist/localization-C6n18NsP.d.mts +0 -3
- package/dist/panel-DWzV5ian.mjs +0 -1
- package/dist/renderPreview-BNqmGtPz.mjs +0 -1
- package/dist/scan-CjlRisOD.d.mts +0 -906
- package/dist/synthetic/index.d.mts +0 -31
- package/dist/synthetic/index.mjs +0 -1
|
@@ -0,0 +1,2791 @@
|
|
|
1
|
+
import * as Schema from "effect/Schema";
|
|
2
|
+
|
|
3
|
+
declare const PixsoNodeType: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
4
|
+
type PixsoNodeType = typeof PixsoNodeType.Type;
|
|
5
|
+
declare const PixsoFont: Schema.Struct<{
|
|
6
|
+
readonly family: Schema.optional<Schema.String>;
|
|
7
|
+
readonly style: Schema.optional<Schema.String>;
|
|
8
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
9
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
10
|
+
}>;
|
|
11
|
+
type PixsoFont = typeof PixsoFont.Type;
|
|
12
|
+
declare const PixsoMatrix2x3: Schema.Struct<{
|
|
13
|
+
readonly m00: Schema.Number;
|
|
14
|
+
readonly m01: Schema.Number;
|
|
15
|
+
readonly m02: Schema.Number;
|
|
16
|
+
readonly m10: Schema.Number;
|
|
17
|
+
readonly m11: Schema.Number;
|
|
18
|
+
readonly m12: Schema.Number;
|
|
19
|
+
}>;
|
|
20
|
+
type PixsoMatrix2x3 = typeof PixsoMatrix2x3.Type;
|
|
21
|
+
declare const PixsoPaintGradient: Schema.Struct<{
|
|
22
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
23
|
+
readonly position: Schema.Number;
|
|
24
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
25
|
+
readonly alpha: Schema.Number;
|
|
26
|
+
}>>;
|
|
27
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
28
|
+
readonly x: Schema.Number;
|
|
29
|
+
readonly y: Schema.Number;
|
|
30
|
+
}>>;
|
|
31
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
32
|
+
readonly x: Schema.Number;
|
|
33
|
+
readonly y: Schema.Number;
|
|
34
|
+
}>>;
|
|
35
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
36
|
+
readonly x: Schema.Number;
|
|
37
|
+
readonly y: Schema.Number;
|
|
38
|
+
}>>;
|
|
39
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
40
|
+
readonly m00: Schema.Number;
|
|
41
|
+
readonly m01: Schema.Number;
|
|
42
|
+
readonly m02: Schema.Number;
|
|
43
|
+
readonly m10: Schema.Number;
|
|
44
|
+
readonly m11: Schema.Number;
|
|
45
|
+
readonly m12: Schema.Number;
|
|
46
|
+
}>>;
|
|
47
|
+
}>;
|
|
48
|
+
type PixsoPaintGradient = typeof PixsoPaintGradient.Type;
|
|
49
|
+
declare const PixsoImagePaint: Schema.Struct<{
|
|
50
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
51
|
+
readonly name: Schema.optional<Schema.String>;
|
|
52
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
53
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
54
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
55
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
56
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
57
|
+
}>;
|
|
58
|
+
type PixsoImagePaint = typeof PixsoImagePaint.Type;
|
|
59
|
+
declare const PixsoPaint: Schema.Struct<{
|
|
60
|
+
readonly kind: Schema.String;
|
|
61
|
+
readonly visible: Schema.Boolean;
|
|
62
|
+
readonly opacity: Schema.Number;
|
|
63
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
64
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
65
|
+
readonly alpha: Schema.Number;
|
|
66
|
+
readonly css: Schema.optional<Schema.String>;
|
|
67
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
68
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
69
|
+
readonly position: Schema.Number;
|
|
70
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
71
|
+
readonly alpha: Schema.Number;
|
|
72
|
+
}>>;
|
|
73
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
74
|
+
readonly x: Schema.Number;
|
|
75
|
+
readonly y: Schema.Number;
|
|
76
|
+
}>>;
|
|
77
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
78
|
+
readonly x: Schema.Number;
|
|
79
|
+
readonly y: Schema.Number;
|
|
80
|
+
}>>;
|
|
81
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
82
|
+
readonly x: Schema.Number;
|
|
83
|
+
readonly y: Schema.Number;
|
|
84
|
+
}>>;
|
|
85
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
86
|
+
readonly m00: Schema.Number;
|
|
87
|
+
readonly m01: Schema.Number;
|
|
88
|
+
readonly m02: Schema.Number;
|
|
89
|
+
readonly m10: Schema.Number;
|
|
90
|
+
readonly m11: Schema.Number;
|
|
91
|
+
readonly m12: Schema.Number;
|
|
92
|
+
}>>;
|
|
93
|
+
}>>;
|
|
94
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
95
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
96
|
+
readonly name: Schema.optional<Schema.String>;
|
|
97
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
98
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
99
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
100
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
101
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
102
|
+
}>>;
|
|
103
|
+
}>;
|
|
104
|
+
type PixsoPaint = typeof PixsoPaint.Type;
|
|
105
|
+
declare const PixsoSizing: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
106
|
+
type PixsoSizing = typeof PixsoSizing.Type;
|
|
107
|
+
declare const PixsoNodeLayout: Schema.Struct<{
|
|
108
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
109
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
110
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
111
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
112
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
113
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
114
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
115
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
116
|
+
readonly top: Schema.Number;
|
|
117
|
+
readonly right: Schema.Number;
|
|
118
|
+
readonly bottom: Schema.Number;
|
|
119
|
+
readonly left: Schema.Number;
|
|
120
|
+
}>>;
|
|
121
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
122
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
123
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
124
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
125
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
126
|
+
}>>;
|
|
127
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
128
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
129
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
130
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
131
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
132
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
133
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
134
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
135
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
136
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
137
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
138
|
+
}>>;
|
|
139
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
140
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
141
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
142
|
+
}>>;
|
|
143
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
144
|
+
readonly summary: Schema.String;
|
|
145
|
+
}>;
|
|
146
|
+
type PixsoNodeLayout = typeof PixsoNodeLayout.Type;
|
|
147
|
+
declare const PixsoEffect: Schema.Struct<{
|
|
148
|
+
readonly kind: Schema.String;
|
|
149
|
+
readonly color: Schema.optional<Schema.String>;
|
|
150
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
151
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
152
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
153
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
154
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
155
|
+
readonly x: Schema.Number;
|
|
156
|
+
readonly y: Schema.Number;
|
|
157
|
+
}>>;
|
|
158
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
159
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
160
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
161
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
162
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
163
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
164
|
+
}>;
|
|
165
|
+
type PixsoEffect = typeof PixsoEffect.Type;
|
|
166
|
+
declare const PixsoNodeStroke: Schema.Struct<{
|
|
167
|
+
readonly color: Schema.String;
|
|
168
|
+
readonly weight: Schema.Number;
|
|
169
|
+
readonly align: Schema.optional<Schema.Literals<readonly ["inside", "center", "outside"]>>;
|
|
170
|
+
readonly dashed: Schema.optional<Schema.Boolean>;
|
|
171
|
+
}>;
|
|
172
|
+
type PixsoNodeStroke = typeof PixsoNodeStroke.Type;
|
|
173
|
+
declare const PixsoTextMeta: Schema.Struct<{
|
|
174
|
+
readonly upperCase: Schema.Boolean;
|
|
175
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
176
|
+
readonly value: Schema.Number;
|
|
177
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
178
|
+
}>>;
|
|
179
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
180
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
181
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
182
|
+
readonly value: Schema.Number;
|
|
183
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
184
|
+
}>>;
|
|
185
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
186
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
187
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
188
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
189
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
190
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
191
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
192
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
193
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
194
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
195
|
+
}>;
|
|
196
|
+
type PixsoTextMeta = typeof PixsoTextMeta.Type;
|
|
197
|
+
declare const PixsoGradient: Schema.Struct<{
|
|
198
|
+
readonly kind: Schema.Literal<"linear">;
|
|
199
|
+
readonly angle: Schema.Number;
|
|
200
|
+
readonly x1: Schema.Number;
|
|
201
|
+
readonly y1: Schema.Number;
|
|
202
|
+
readonly x2: Schema.Number;
|
|
203
|
+
readonly y2: Schema.Number;
|
|
204
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
205
|
+
readonly position: Schema.Number;
|
|
206
|
+
readonly color: Schema.String;
|
|
207
|
+
readonly alpha: Schema.Number;
|
|
208
|
+
}>>;
|
|
209
|
+
}>;
|
|
210
|
+
type PixsoGradient = typeof PixsoGradient.Type;
|
|
211
|
+
declare const PixsoRadii: Schema.Struct<{
|
|
212
|
+
readonly topLeft: Schema.Number;
|
|
213
|
+
readonly topRight: Schema.Number;
|
|
214
|
+
readonly bottomRight: Schema.Number;
|
|
215
|
+
readonly bottomLeft: Schema.Number;
|
|
216
|
+
}>;
|
|
217
|
+
type PixsoRadii = typeof PixsoRadii.Type;
|
|
218
|
+
declare const PixsoBorders: Schema.Struct<{
|
|
219
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
220
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
221
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
222
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
223
|
+
readonly color: Schema.optional<Schema.String>;
|
|
224
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
225
|
+
}>;
|
|
226
|
+
type PixsoBorders = typeof PixsoBorders.Type;
|
|
227
|
+
declare const PixsoMargin: Schema.Struct<{
|
|
228
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
229
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
230
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
231
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
232
|
+
}>;
|
|
233
|
+
type PixsoMargin = typeof PixsoMargin.Type;
|
|
234
|
+
declare const PixsoConstraints: Schema.Struct<{
|
|
235
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
236
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
237
|
+
}>;
|
|
238
|
+
type PixsoConstraints = typeof PixsoConstraints.Type;
|
|
239
|
+
declare const PixsoChildLayout: Schema.Struct<{
|
|
240
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
241
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
242
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
243
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
244
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
245
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
246
|
+
}>;
|
|
247
|
+
type PixsoChildLayout = typeof PixsoChildLayout.Type;
|
|
248
|
+
declare const PixsoNameSource: Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>;
|
|
249
|
+
type PixsoNameSource = typeof PixsoNameSource.Type;
|
|
250
|
+
declare const PixsoComponentRef: Schema.Struct<{
|
|
251
|
+
readonly key: Schema.optional<Schema.String>;
|
|
252
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
253
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
254
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
255
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
256
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
257
|
+
readonly version: Schema.optional<Schema.String>;
|
|
258
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
259
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
260
|
+
readonly description: Schema.optional<Schema.String>;
|
|
261
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
262
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
263
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
264
|
+
readonly page: Schema.optional<Schema.String>;
|
|
265
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
266
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
267
|
+
}>;
|
|
268
|
+
type PixsoComponentRef = typeof PixsoComponentRef.Type;
|
|
269
|
+
declare const PixsoComponentPropDef: Schema.Struct<{
|
|
270
|
+
readonly propKey: Schema.String;
|
|
271
|
+
readonly name: Schema.optional<Schema.String>;
|
|
272
|
+
readonly kind: Schema.String;
|
|
273
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
274
|
+
}>;
|
|
275
|
+
type PixsoComponentPropDef = typeof PixsoComponentPropDef.Type;
|
|
276
|
+
declare const PixsoComponentPropValue: Schema.Struct<{
|
|
277
|
+
readonly propKey: Schema.String;
|
|
278
|
+
readonly name: Schema.optional<Schema.String>;
|
|
279
|
+
readonly kind: Schema.String;
|
|
280
|
+
readonly value: Schema.optional<Schema.String>;
|
|
281
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
282
|
+
}>;
|
|
283
|
+
type PixsoComponentPropValue = typeof PixsoComponentPropValue.Type;
|
|
284
|
+
declare const PixsoTokenRef: Schema.Struct<{
|
|
285
|
+
readonly id: Schema.String;
|
|
286
|
+
readonly resolved: Schema.Boolean;
|
|
287
|
+
readonly name: Schema.optional<Schema.String>;
|
|
288
|
+
}>;
|
|
289
|
+
type PixsoTokenRef = typeof PixsoTokenRef.Type;
|
|
290
|
+
declare const PixsoTokens: Schema.Struct<{
|
|
291
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
292
|
+
readonly id: Schema.String;
|
|
293
|
+
readonly resolved: Schema.Boolean;
|
|
294
|
+
readonly name: Schema.optional<Schema.String>;
|
|
295
|
+
}>>;
|
|
296
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
297
|
+
readonly id: Schema.String;
|
|
298
|
+
readonly resolved: Schema.Boolean;
|
|
299
|
+
readonly name: Schema.optional<Schema.String>;
|
|
300
|
+
}>>;
|
|
301
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
302
|
+
readonly id: Schema.String;
|
|
303
|
+
readonly resolved: Schema.Boolean;
|
|
304
|
+
readonly name: Schema.optional<Schema.String>;
|
|
305
|
+
}>>;
|
|
306
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
307
|
+
readonly id: Schema.String;
|
|
308
|
+
readonly resolved: Schema.Boolean;
|
|
309
|
+
readonly name: Schema.optional<Schema.String>;
|
|
310
|
+
}>>;
|
|
311
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
312
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
313
|
+
}>>;
|
|
314
|
+
}>;
|
|
315
|
+
type PixsoTokens = typeof PixsoTokens.Type;
|
|
316
|
+
declare const PixsoOverlay: Schema.Struct<{
|
|
317
|
+
readonly positionType: Schema.optional<Schema.String>;
|
|
318
|
+
readonly interaction: Schema.optional<Schema.String>;
|
|
319
|
+
readonly background: Schema.optional<Schema.Struct<{
|
|
320
|
+
readonly type: Schema.optional<Schema.String>;
|
|
321
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
322
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
323
|
+
}>>;
|
|
324
|
+
}>;
|
|
325
|
+
type PixsoOverlay = typeof PixsoOverlay.Type;
|
|
326
|
+
declare const PixsoInset: Schema.Struct<{
|
|
327
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
328
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
329
|
+
}>;
|
|
330
|
+
type PixsoInset = typeof PixsoInset.Type;
|
|
331
|
+
declare const PixsoFlip: Schema.Struct<{
|
|
332
|
+
readonly horizontal: Schema.optional<Schema.Boolean>;
|
|
333
|
+
readonly vertical: Schema.optional<Schema.Boolean>;
|
|
334
|
+
}>;
|
|
335
|
+
type PixsoFlip = typeof PixsoFlip.Type;
|
|
336
|
+
declare const PixsoLink: Schema.Struct<{
|
|
337
|
+
readonly url: Schema.String;
|
|
338
|
+
}>;
|
|
339
|
+
type PixsoLink = typeof PixsoLink.Type;
|
|
340
|
+
declare const PixsoPlaceholder: Schema.Struct<{
|
|
341
|
+
readonly reason: Schema.Literal<"vector-geometry-absent">;
|
|
342
|
+
readonly width: Schema.Number;
|
|
343
|
+
readonly height: Schema.Number;
|
|
344
|
+
}>;
|
|
345
|
+
type PixsoPlaceholder = typeof PixsoPlaceholder.Type;
|
|
346
|
+
interface PixsoTextRun {
|
|
347
|
+
readonly id: string;
|
|
348
|
+
readonly textRaw: string;
|
|
349
|
+
readonly text: string;
|
|
350
|
+
readonly font?: PixsoFont | undefined;
|
|
351
|
+
readonly hex?: string | undefined;
|
|
352
|
+
readonly alpha?: number | undefined;
|
|
353
|
+
readonly textMeta?: PixsoTextMeta | undefined;
|
|
354
|
+
}
|
|
355
|
+
declare const PixsoTextRun: Schema.Struct<{
|
|
356
|
+
readonly id: Schema.String;
|
|
357
|
+
readonly textRaw: Schema.String;
|
|
358
|
+
readonly text: Schema.String;
|
|
359
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
360
|
+
readonly family: Schema.optional<Schema.String>;
|
|
361
|
+
readonly style: Schema.optional<Schema.String>;
|
|
362
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
363
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
364
|
+
}>>;
|
|
365
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
366
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
367
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
368
|
+
readonly upperCase: Schema.Boolean;
|
|
369
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
370
|
+
readonly value: Schema.Number;
|
|
371
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
372
|
+
}>>;
|
|
373
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
374
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
375
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
376
|
+
readonly value: Schema.Number;
|
|
377
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
378
|
+
}>>;
|
|
379
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
380
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
381
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
382
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
383
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
384
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
385
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
386
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
387
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
388
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
389
|
+
}>>;
|
|
390
|
+
}>;
|
|
391
|
+
declare const PixsoInstanceOverride: Schema.Struct<{
|
|
392
|
+
readonly pathString: Schema.optional<Schema.String>;
|
|
393
|
+
readonly path: Schema.$Array<Schema.String>;
|
|
394
|
+
readonly targetId: Schema.String;
|
|
395
|
+
readonly rawType: Schema.optional<Schema.String>;
|
|
396
|
+
readonly declaredLeft: Schema.optional<Schema.Number>;
|
|
397
|
+
readonly declaredTop: Schema.optional<Schema.Number>;
|
|
398
|
+
readonly textRaw: Schema.optional<Schema.String>;
|
|
399
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
400
|
+
readonly mask: Schema.optional<Schema.Boolean>;
|
|
401
|
+
readonly opacity: Schema.optional<Schema.Number>;
|
|
402
|
+
readonly cornerSmoothing: Schema.optional<Schema.Number>;
|
|
403
|
+
readonly fills: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
404
|
+
readonly kind: Schema.String;
|
|
405
|
+
readonly visible: Schema.Boolean;
|
|
406
|
+
readonly opacity: Schema.Number;
|
|
407
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
408
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
409
|
+
readonly alpha: Schema.Number;
|
|
410
|
+
readonly css: Schema.optional<Schema.String>;
|
|
411
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
412
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
413
|
+
readonly position: Schema.Number;
|
|
414
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
415
|
+
readonly alpha: Schema.Number;
|
|
416
|
+
}>>;
|
|
417
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
418
|
+
readonly x: Schema.Number;
|
|
419
|
+
readonly y: Schema.Number;
|
|
420
|
+
}>>;
|
|
421
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
422
|
+
readonly x: Schema.Number;
|
|
423
|
+
readonly y: Schema.Number;
|
|
424
|
+
}>>;
|
|
425
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
426
|
+
readonly x: Schema.Number;
|
|
427
|
+
readonly y: Schema.Number;
|
|
428
|
+
}>>;
|
|
429
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
430
|
+
readonly m00: Schema.Number;
|
|
431
|
+
readonly m01: Schema.Number;
|
|
432
|
+
readonly m02: Schema.Number;
|
|
433
|
+
readonly m10: Schema.Number;
|
|
434
|
+
readonly m11: Schema.Number;
|
|
435
|
+
readonly m12: Schema.Number;
|
|
436
|
+
}>>;
|
|
437
|
+
}>>;
|
|
438
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
439
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
440
|
+
readonly name: Schema.optional<Schema.String>;
|
|
441
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
442
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
443
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
444
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
445
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
446
|
+
}>>;
|
|
447
|
+
}>>>;
|
|
448
|
+
readonly strokes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
449
|
+
readonly kind: Schema.String;
|
|
450
|
+
readonly visible: Schema.Boolean;
|
|
451
|
+
readonly opacity: Schema.Number;
|
|
452
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
453
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
454
|
+
readonly alpha: Schema.Number;
|
|
455
|
+
readonly css: Schema.optional<Schema.String>;
|
|
456
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
457
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
458
|
+
readonly position: Schema.Number;
|
|
459
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
460
|
+
readonly alpha: Schema.Number;
|
|
461
|
+
}>>;
|
|
462
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
463
|
+
readonly x: Schema.Number;
|
|
464
|
+
readonly y: Schema.Number;
|
|
465
|
+
}>>;
|
|
466
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
467
|
+
readonly x: Schema.Number;
|
|
468
|
+
readonly y: Schema.Number;
|
|
469
|
+
}>>;
|
|
470
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
471
|
+
readonly x: Schema.Number;
|
|
472
|
+
readonly y: Schema.Number;
|
|
473
|
+
}>>;
|
|
474
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
475
|
+
readonly m00: Schema.Number;
|
|
476
|
+
readonly m01: Schema.Number;
|
|
477
|
+
readonly m02: Schema.Number;
|
|
478
|
+
readonly m10: Schema.Number;
|
|
479
|
+
readonly m11: Schema.Number;
|
|
480
|
+
readonly m12: Schema.Number;
|
|
481
|
+
}>>;
|
|
482
|
+
}>>;
|
|
483
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
484
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
485
|
+
readonly name: Schema.optional<Schema.String>;
|
|
486
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
487
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
488
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
489
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
490
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
491
|
+
}>>;
|
|
492
|
+
}>>>;
|
|
493
|
+
readonly effects: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
494
|
+
readonly kind: Schema.String;
|
|
495
|
+
readonly color: Schema.optional<Schema.String>;
|
|
496
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
497
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
498
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
499
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
500
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
501
|
+
readonly x: Schema.Number;
|
|
502
|
+
readonly y: Schema.Number;
|
|
503
|
+
}>>;
|
|
504
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
505
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
506
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
507
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
508
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
509
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
510
|
+
}>>>;
|
|
511
|
+
readonly strokeWeight: Schema.optional<Schema.Number>;
|
|
512
|
+
readonly strokeAlign: Schema.optional<Schema.String>;
|
|
513
|
+
readonly strokeJoin: Schema.optional<Schema.String>;
|
|
514
|
+
readonly strokeCap: Schema.optional<Schema.String>;
|
|
515
|
+
readonly dashCap: Schema.optional<Schema.String>;
|
|
516
|
+
readonly strokeMiterLimit: Schema.optional<Schema.Number>;
|
|
517
|
+
readonly strokeDash: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
518
|
+
readonly maskDisabled: Schema.optional<Schema.Boolean>;
|
|
519
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
520
|
+
readonly upperCase: Schema.Boolean;
|
|
521
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
522
|
+
readonly value: Schema.Number;
|
|
523
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
524
|
+
}>>;
|
|
525
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
526
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
527
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
528
|
+
readonly value: Schema.Number;
|
|
529
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
530
|
+
}>>;
|
|
531
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
532
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
533
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
534
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
535
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
536
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
537
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
538
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
539
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
540
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
541
|
+
}>>;
|
|
542
|
+
readonly layout: Schema.optional<Schema.Struct<{
|
|
543
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
544
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
545
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
546
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
547
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
548
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
549
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
550
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
551
|
+
readonly top: Schema.Number;
|
|
552
|
+
readonly right: Schema.Number;
|
|
553
|
+
readonly bottom: Schema.Number;
|
|
554
|
+
readonly left: Schema.Number;
|
|
555
|
+
}>>;
|
|
556
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
557
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
558
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
559
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
560
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
561
|
+
}>>;
|
|
562
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
563
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
564
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
565
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
566
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
567
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
568
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
569
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
570
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
571
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
572
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
573
|
+
}>>;
|
|
574
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
575
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
576
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
577
|
+
}>>;
|
|
578
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
579
|
+
readonly summary: Schema.String;
|
|
580
|
+
}>>;
|
|
581
|
+
readonly childLayout: Schema.optional<Schema.Struct<{
|
|
582
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
583
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
584
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
585
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
586
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
587
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
588
|
+
}>>;
|
|
589
|
+
readonly componentPropValues: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
590
|
+
readonly propKey: Schema.String;
|
|
591
|
+
readonly name: Schema.optional<Schema.String>;
|
|
592
|
+
readonly kind: Schema.String;
|
|
593
|
+
readonly value: Schema.optional<Schema.String>;
|
|
594
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
595
|
+
}>>>;
|
|
596
|
+
readonly component: Schema.optional<Schema.Struct<{
|
|
597
|
+
readonly key: Schema.optional<Schema.String>;
|
|
598
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
599
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
600
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
601
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
602
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
603
|
+
readonly version: Schema.optional<Schema.String>;
|
|
604
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
605
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
606
|
+
readonly description: Schema.optional<Schema.String>;
|
|
607
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
608
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
609
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
610
|
+
readonly page: Schema.optional<Schema.String>;
|
|
611
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
612
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
613
|
+
}>>;
|
|
614
|
+
readonly tokens: Schema.optional<Schema.Struct<{
|
|
615
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
616
|
+
readonly id: Schema.String;
|
|
617
|
+
readonly resolved: Schema.Boolean;
|
|
618
|
+
readonly name: Schema.optional<Schema.String>;
|
|
619
|
+
}>>;
|
|
620
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
621
|
+
readonly id: Schema.String;
|
|
622
|
+
readonly resolved: Schema.Boolean;
|
|
623
|
+
readonly name: Schema.optional<Schema.String>;
|
|
624
|
+
}>>;
|
|
625
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
626
|
+
readonly id: Schema.String;
|
|
627
|
+
readonly resolved: Schema.Boolean;
|
|
628
|
+
readonly name: Schema.optional<Schema.String>;
|
|
629
|
+
}>>;
|
|
630
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
631
|
+
readonly id: Schema.String;
|
|
632
|
+
readonly resolved: Schema.Boolean;
|
|
633
|
+
readonly name: Schema.optional<Schema.String>;
|
|
634
|
+
}>>;
|
|
635
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
636
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
637
|
+
}>>;
|
|
638
|
+
}>>;
|
|
639
|
+
readonly constraints: Schema.optional<Schema.Struct<{
|
|
640
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
641
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
642
|
+
}>>;
|
|
643
|
+
readonly borders: Schema.optional<Schema.Struct<{
|
|
644
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
645
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
646
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
647
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
648
|
+
readonly color: Schema.optional<Schema.String>;
|
|
649
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
650
|
+
}>>;
|
|
651
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
652
|
+
readonly variations: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
653
|
+
}>>;
|
|
654
|
+
readonly export: Schema.optional<Schema.Struct<{
|
|
655
|
+
readonly quality: Schema.optional<Schema.String>;
|
|
656
|
+
readonly keepNameGroup: Schema.optional<Schema.Boolean>;
|
|
657
|
+
readonly nameByVariantProp: Schema.optional<Schema.Boolean>;
|
|
658
|
+
}>>;
|
|
659
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
660
|
+
readonly name: Schema.optional<Schema.String>;
|
|
661
|
+
readonly width: Schema.optional<Schema.Number>;
|
|
662
|
+
readonly height: Schema.optional<Schema.Number>;
|
|
663
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
664
|
+
readonly fill: Schema.optional<Schema.String>;
|
|
665
|
+
readonly changed: Schema.$Array<Schema.String>;
|
|
666
|
+
}>;
|
|
667
|
+
type PixsoInstanceOverride = typeof PixsoInstanceOverride.Type;
|
|
668
|
+
declare const PixsoUnresolvedOverride: Schema.Struct<{
|
|
669
|
+
readonly pathString: Schema.String;
|
|
670
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
671
|
+
readonly reason: Schema.Literals<readonly ["no-component-id", "component-id-not-in-master", "master-unresolved"]>;
|
|
672
|
+
}>;
|
|
673
|
+
type PixsoUnresolvedOverride = typeof PixsoUnresolvedOverride.Type;
|
|
674
|
+
declare const PixsoExpansion: Schema.Struct<{
|
|
675
|
+
readonly masterId: Schema.optional<Schema.String>;
|
|
676
|
+
readonly resolved: Schema.Boolean;
|
|
677
|
+
readonly nodeCount: Schema.Number;
|
|
678
|
+
readonly appliedOverrides: Schema.Number;
|
|
679
|
+
readonly unresolvedOverrides: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
680
|
+
readonly pathString: Schema.String;
|
|
681
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
682
|
+
readonly reason: Schema.Literals<readonly ["no-component-id", "component-id-not-in-master", "master-unresolved"]>;
|
|
683
|
+
}>>>;
|
|
684
|
+
readonly stoppedBy: Schema.optional<Schema.Literals<readonly ["cycle", "depth", "budget"]>>;
|
|
685
|
+
}>;
|
|
686
|
+
type PixsoExpansion = typeof PixsoExpansion.Type;
|
|
687
|
+
interface PixsoNode {
|
|
688
|
+
readonly id: string;
|
|
689
|
+
readonly name: string;
|
|
690
|
+
readonly type: PixsoNodeType;
|
|
691
|
+
readonly x: number;
|
|
692
|
+
readonly y: number;
|
|
693
|
+
readonly width: number;
|
|
694
|
+
readonly height: number;
|
|
695
|
+
readonly radius?: number | undefined;
|
|
696
|
+
readonly opacity?: number | undefined;
|
|
697
|
+
readonly fill?: string | undefined;
|
|
698
|
+
readonly text?: string | undefined;
|
|
699
|
+
readonly textColor?: string | undefined;
|
|
700
|
+
readonly font?: PixsoFont | undefined;
|
|
701
|
+
readonly stroke?: PixsoNodeStroke | undefined;
|
|
702
|
+
readonly layout?: PixsoNodeLayout | undefined;
|
|
703
|
+
readonly textMeta?: PixsoTextMeta | undefined;
|
|
704
|
+
readonly mask?: boolean | undefined;
|
|
705
|
+
readonly sticky?: boolean | undefined;
|
|
706
|
+
readonly blendMode?: string | undefined;
|
|
707
|
+
readonly effects?: ReadonlyArray<PixsoEffect> | undefined;
|
|
708
|
+
readonly rotation?: number | undefined;
|
|
709
|
+
readonly radii?: PixsoRadii | undefined;
|
|
710
|
+
readonly gradient?: PixsoGradient | undefined;
|
|
711
|
+
readonly borders?: PixsoBorders | undefined;
|
|
712
|
+
readonly constraints?: PixsoConstraints | undefined;
|
|
713
|
+
readonly scrollDirection?: string | undefined;
|
|
714
|
+
readonly descriptionRich?: string | undefined;
|
|
715
|
+
readonly margin?: PixsoMargin | undefined;
|
|
716
|
+
readonly overrides?: ReadonlyArray<PixsoInstanceOverride> | undefined;
|
|
717
|
+
readonly overriddenSnapshots?: ReadonlyArray<PixsoNode> | undefined;
|
|
718
|
+
readonly sourceId?: string | undefined;
|
|
719
|
+
readonly origin?: "selection" | "component-master" | "expanded-instance" | undefined;
|
|
720
|
+
readonly expansion?: PixsoExpansion | undefined;
|
|
721
|
+
readonly rawType?: string | undefined;
|
|
722
|
+
readonly visible?: boolean | undefined;
|
|
723
|
+
readonly parentId?: string | undefined;
|
|
724
|
+
readonly ancestorIds?: ReadonlyArray<string> | undefined;
|
|
725
|
+
readonly order?: string | undefined;
|
|
726
|
+
readonly zIndex?: number | undefined;
|
|
727
|
+
readonly declaredLeft?: number | undefined;
|
|
728
|
+
readonly declaredTop?: number | undefined;
|
|
729
|
+
readonly declaredWidth?: number | undefined;
|
|
730
|
+
readonly declaredHeight?: number | undefined;
|
|
731
|
+
readonly absoluteX?: number | undefined;
|
|
732
|
+
readonly absoluteY?: number | undefined;
|
|
733
|
+
readonly inset?: PixsoInset | undefined;
|
|
734
|
+
readonly flip?: PixsoFlip | undefined;
|
|
735
|
+
readonly fromComponent?: boolean | undefined;
|
|
736
|
+
readonly maskDisabled?: boolean | undefined;
|
|
737
|
+
readonly cornerSmoothing?: number | undefined;
|
|
738
|
+
readonly cornersIndependent?: boolean | undefined;
|
|
739
|
+
readonly effectiveOpacity?: number | undefined;
|
|
740
|
+
readonly fills?: ReadonlyArray<PixsoPaint> | undefined;
|
|
741
|
+
readonly strokes?: ReadonlyArray<PixsoPaint> | undefined;
|
|
742
|
+
readonly strokeWeight?: number | undefined;
|
|
743
|
+
readonly strokeAlign?: string | undefined;
|
|
744
|
+
readonly strokeJoin?: string | undefined;
|
|
745
|
+
readonly strokeCap?: string | undefined;
|
|
746
|
+
readonly dashCap?: string | undefined;
|
|
747
|
+
readonly miterLimit?: number | undefined;
|
|
748
|
+
readonly strokeVisible?: boolean | undefined;
|
|
749
|
+
readonly strokeDash?: ReadonlyArray<number> | undefined;
|
|
750
|
+
readonly childLayout?: PixsoChildLayout | undefined;
|
|
751
|
+
readonly textRaw?: string | undefined;
|
|
752
|
+
readonly textRuns?: ReadonlyArray<PixsoTextRun> | undefined;
|
|
753
|
+
readonly component?: PixsoComponentRef | undefined;
|
|
754
|
+
readonly rawNormName?: string | undefined;
|
|
755
|
+
readonly componentProps?: ReadonlyArray<PixsoComponentPropDef> | undefined;
|
|
756
|
+
readonly componentPropValues?: ReadonlyArray<PixsoComponentPropValue> | undefined;
|
|
757
|
+
readonly propBindings?: {
|
|
758
|
+
readonly text?: PixsoComponentPropDef | undefined;
|
|
759
|
+
readonly visible?: PixsoComponentPropDef | undefined;
|
|
760
|
+
readonly instance?: PixsoComponentPropDef | undefined;
|
|
761
|
+
} | undefined;
|
|
762
|
+
readonly resolution?: {
|
|
763
|
+
readonly offset?: "flow" | "center" | "reflow" | undefined;
|
|
764
|
+
readonly visibility?: "assigned" | "default" | "unresolved" | undefined;
|
|
765
|
+
readonly textWidth?: "rescaled" | "stated" | "measured" | "hugged" | undefined;
|
|
766
|
+
} | undefined;
|
|
767
|
+
readonly tokens?: PixsoTokens | undefined;
|
|
768
|
+
readonly overlay?: PixsoOverlay | undefined;
|
|
769
|
+
readonly links?: ReadonlyArray<PixsoLink> | undefined;
|
|
770
|
+
readonly scrollBehavior?: string | undefined;
|
|
771
|
+
readonly placeholder?: PixsoPlaceholder | undefined;
|
|
772
|
+
readonly children?: ReadonlyArray<PixsoNode> | undefined;
|
|
773
|
+
}
|
|
774
|
+
declare const PixsoNode: Schema.Struct<{
|
|
775
|
+
readonly id: Schema.String;
|
|
776
|
+
readonly name: Schema.String;
|
|
777
|
+
readonly type: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
778
|
+
readonly x: Schema.Number;
|
|
779
|
+
readonly y: Schema.Number;
|
|
780
|
+
readonly width: Schema.Number;
|
|
781
|
+
readonly height: Schema.Number;
|
|
782
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
783
|
+
readonly opacity: Schema.optional<Schema.Number>;
|
|
784
|
+
readonly fill: Schema.optional<Schema.String>;
|
|
785
|
+
readonly text: Schema.optional<Schema.String>;
|
|
786
|
+
readonly textColor: Schema.optional<Schema.String>;
|
|
787
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
788
|
+
readonly family: Schema.optional<Schema.String>;
|
|
789
|
+
readonly style: Schema.optional<Schema.String>;
|
|
790
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
791
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
792
|
+
}>>;
|
|
793
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
794
|
+
readonly color: Schema.String;
|
|
795
|
+
readonly weight: Schema.Number;
|
|
796
|
+
readonly align: Schema.optional<Schema.Literals<readonly ["inside", "center", "outside"]>>;
|
|
797
|
+
readonly dashed: Schema.optional<Schema.Boolean>;
|
|
798
|
+
}>>;
|
|
799
|
+
readonly layout: Schema.optional<Schema.Struct<{
|
|
800
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
801
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
802
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
803
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
804
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
805
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
806
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
807
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
808
|
+
readonly top: Schema.Number;
|
|
809
|
+
readonly right: Schema.Number;
|
|
810
|
+
readonly bottom: Schema.Number;
|
|
811
|
+
readonly left: Schema.Number;
|
|
812
|
+
}>>;
|
|
813
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
814
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
815
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
816
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
817
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
818
|
+
}>>;
|
|
819
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
820
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
821
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
822
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
823
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
824
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
825
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
826
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
827
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
828
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
829
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
830
|
+
}>>;
|
|
831
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
832
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
833
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
834
|
+
}>>;
|
|
835
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
836
|
+
readonly summary: Schema.String;
|
|
837
|
+
}>>;
|
|
838
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
839
|
+
readonly upperCase: Schema.Boolean;
|
|
840
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
841
|
+
readonly value: Schema.Number;
|
|
842
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
843
|
+
}>>;
|
|
844
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
845
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
846
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
847
|
+
readonly value: Schema.Number;
|
|
848
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
849
|
+
}>>;
|
|
850
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
851
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
852
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
853
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
854
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
855
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
856
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
857
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
858
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
859
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
860
|
+
}>>;
|
|
861
|
+
readonly mask: Schema.optional<Schema.Boolean>;
|
|
862
|
+
readonly sticky: Schema.optional<Schema.Boolean>;
|
|
863
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
864
|
+
readonly effects: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
865
|
+
readonly kind: Schema.String;
|
|
866
|
+
readonly color: Schema.optional<Schema.String>;
|
|
867
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
868
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
869
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
870
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
871
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
872
|
+
readonly x: Schema.Number;
|
|
873
|
+
readonly y: Schema.Number;
|
|
874
|
+
}>>;
|
|
875
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
876
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
877
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
878
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
879
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
880
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
881
|
+
}>>>;
|
|
882
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
883
|
+
readonly radii: Schema.optional<Schema.Struct<{
|
|
884
|
+
readonly topLeft: Schema.Number;
|
|
885
|
+
readonly topRight: Schema.Number;
|
|
886
|
+
readonly bottomRight: Schema.Number;
|
|
887
|
+
readonly bottomLeft: Schema.Number;
|
|
888
|
+
}>>;
|
|
889
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
890
|
+
readonly kind: Schema.Literal<"linear">;
|
|
891
|
+
readonly angle: Schema.Number;
|
|
892
|
+
readonly x1: Schema.Number;
|
|
893
|
+
readonly y1: Schema.Number;
|
|
894
|
+
readonly x2: Schema.Number;
|
|
895
|
+
readonly y2: Schema.Number;
|
|
896
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
897
|
+
readonly position: Schema.Number;
|
|
898
|
+
readonly color: Schema.String;
|
|
899
|
+
readonly alpha: Schema.Number;
|
|
900
|
+
}>>;
|
|
901
|
+
}>>;
|
|
902
|
+
readonly borders: Schema.optional<Schema.Struct<{
|
|
903
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
904
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
905
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
906
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
907
|
+
readonly color: Schema.optional<Schema.String>;
|
|
908
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
909
|
+
}>>;
|
|
910
|
+
readonly constraints: Schema.optional<Schema.Struct<{
|
|
911
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
912
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
913
|
+
}>>;
|
|
914
|
+
readonly scrollDirection: Schema.optional<Schema.String>;
|
|
915
|
+
readonly descriptionRich: Schema.optional<Schema.String>;
|
|
916
|
+
readonly margin: Schema.optional<Schema.Struct<{
|
|
917
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
918
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
919
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
920
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
921
|
+
}>>;
|
|
922
|
+
readonly overrides: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
923
|
+
readonly pathString: Schema.optional<Schema.String>;
|
|
924
|
+
readonly path: Schema.$Array<Schema.String>;
|
|
925
|
+
readonly targetId: Schema.String;
|
|
926
|
+
readonly rawType: Schema.optional<Schema.String>;
|
|
927
|
+
readonly declaredLeft: Schema.optional<Schema.Number>;
|
|
928
|
+
readonly declaredTop: Schema.optional<Schema.Number>;
|
|
929
|
+
readonly textRaw: Schema.optional<Schema.String>;
|
|
930
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
931
|
+
readonly mask: Schema.optional<Schema.Boolean>;
|
|
932
|
+
readonly opacity: Schema.optional<Schema.Number>;
|
|
933
|
+
readonly cornerSmoothing: Schema.optional<Schema.Number>;
|
|
934
|
+
readonly fills: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
935
|
+
readonly kind: Schema.String;
|
|
936
|
+
readonly visible: Schema.Boolean;
|
|
937
|
+
readonly opacity: Schema.Number;
|
|
938
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
939
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
940
|
+
readonly alpha: Schema.Number;
|
|
941
|
+
readonly css: Schema.optional<Schema.String>;
|
|
942
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
943
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
944
|
+
readonly position: Schema.Number;
|
|
945
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
946
|
+
readonly alpha: Schema.Number;
|
|
947
|
+
}>>;
|
|
948
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
949
|
+
readonly x: Schema.Number;
|
|
950
|
+
readonly y: Schema.Number;
|
|
951
|
+
}>>;
|
|
952
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
953
|
+
readonly x: Schema.Number;
|
|
954
|
+
readonly y: Schema.Number;
|
|
955
|
+
}>>;
|
|
956
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
957
|
+
readonly x: Schema.Number;
|
|
958
|
+
readonly y: Schema.Number;
|
|
959
|
+
}>>;
|
|
960
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
961
|
+
readonly m00: Schema.Number;
|
|
962
|
+
readonly m01: Schema.Number;
|
|
963
|
+
readonly m02: Schema.Number;
|
|
964
|
+
readonly m10: Schema.Number;
|
|
965
|
+
readonly m11: Schema.Number;
|
|
966
|
+
readonly m12: Schema.Number;
|
|
967
|
+
}>>;
|
|
968
|
+
}>>;
|
|
969
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
970
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
971
|
+
readonly name: Schema.optional<Schema.String>;
|
|
972
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
973
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
974
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
975
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
976
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
977
|
+
}>>;
|
|
978
|
+
}>>>;
|
|
979
|
+
readonly strokes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
980
|
+
readonly kind: Schema.String;
|
|
981
|
+
readonly visible: Schema.Boolean;
|
|
982
|
+
readonly opacity: Schema.Number;
|
|
983
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
984
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
985
|
+
readonly alpha: Schema.Number;
|
|
986
|
+
readonly css: Schema.optional<Schema.String>;
|
|
987
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
988
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
989
|
+
readonly position: Schema.Number;
|
|
990
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
991
|
+
readonly alpha: Schema.Number;
|
|
992
|
+
}>>;
|
|
993
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
994
|
+
readonly x: Schema.Number;
|
|
995
|
+
readonly y: Schema.Number;
|
|
996
|
+
}>>;
|
|
997
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
998
|
+
readonly x: Schema.Number;
|
|
999
|
+
readonly y: Schema.Number;
|
|
1000
|
+
}>>;
|
|
1001
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
1002
|
+
readonly x: Schema.Number;
|
|
1003
|
+
readonly y: Schema.Number;
|
|
1004
|
+
}>>;
|
|
1005
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
1006
|
+
readonly m00: Schema.Number;
|
|
1007
|
+
readonly m01: Schema.Number;
|
|
1008
|
+
readonly m02: Schema.Number;
|
|
1009
|
+
readonly m10: Schema.Number;
|
|
1010
|
+
readonly m11: Schema.Number;
|
|
1011
|
+
readonly m12: Schema.Number;
|
|
1012
|
+
}>>;
|
|
1013
|
+
}>>;
|
|
1014
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
1015
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
1016
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1017
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
1018
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
1019
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1020
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
1021
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
1022
|
+
}>>;
|
|
1023
|
+
}>>>;
|
|
1024
|
+
readonly effects: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1025
|
+
readonly kind: Schema.String;
|
|
1026
|
+
readonly color: Schema.optional<Schema.String>;
|
|
1027
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1028
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1029
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
1030
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
1031
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
1032
|
+
readonly x: Schema.Number;
|
|
1033
|
+
readonly y: Schema.Number;
|
|
1034
|
+
}>>;
|
|
1035
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
1036
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
1037
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
1038
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1039
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
1040
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
1041
|
+
}>>>;
|
|
1042
|
+
readonly strokeWeight: Schema.optional<Schema.Number>;
|
|
1043
|
+
readonly strokeAlign: Schema.optional<Schema.String>;
|
|
1044
|
+
readonly strokeJoin: Schema.optional<Schema.String>;
|
|
1045
|
+
readonly strokeCap: Schema.optional<Schema.String>;
|
|
1046
|
+
readonly dashCap: Schema.optional<Schema.String>;
|
|
1047
|
+
readonly strokeMiterLimit: Schema.optional<Schema.Number>;
|
|
1048
|
+
readonly strokeDash: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
1049
|
+
readonly maskDisabled: Schema.optional<Schema.Boolean>;
|
|
1050
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
1051
|
+
readonly upperCase: Schema.Boolean;
|
|
1052
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
1053
|
+
readonly value: Schema.Number;
|
|
1054
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1055
|
+
}>>;
|
|
1056
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
1057
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
1058
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
1059
|
+
readonly value: Schema.Number;
|
|
1060
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1061
|
+
}>>;
|
|
1062
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
1063
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
1064
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
1065
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
1066
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
1067
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1068
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1069
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
1070
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
1071
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
1072
|
+
}>>;
|
|
1073
|
+
readonly layout: Schema.optional<Schema.Struct<{
|
|
1074
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
1075
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
1076
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
1077
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
1078
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
1079
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
1080
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
1081
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
1082
|
+
readonly top: Schema.Number;
|
|
1083
|
+
readonly right: Schema.Number;
|
|
1084
|
+
readonly bottom: Schema.Number;
|
|
1085
|
+
readonly left: Schema.Number;
|
|
1086
|
+
}>>;
|
|
1087
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
1088
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
1089
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
1090
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1091
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1092
|
+
}>>;
|
|
1093
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
1094
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
1095
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
1096
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
1097
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
1098
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1099
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1100
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
1101
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
1102
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1103
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1104
|
+
}>>;
|
|
1105
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
1106
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1107
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1108
|
+
}>>;
|
|
1109
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
1110
|
+
readonly summary: Schema.String;
|
|
1111
|
+
}>>;
|
|
1112
|
+
readonly childLayout: Schema.optional<Schema.Struct<{
|
|
1113
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
1114
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
1115
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
1116
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
1117
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1118
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1119
|
+
}>>;
|
|
1120
|
+
readonly componentPropValues: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1121
|
+
readonly propKey: Schema.String;
|
|
1122
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1123
|
+
readonly kind: Schema.String;
|
|
1124
|
+
readonly value: Schema.optional<Schema.String>;
|
|
1125
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1126
|
+
}>>>;
|
|
1127
|
+
readonly component: Schema.optional<Schema.Struct<{
|
|
1128
|
+
readonly key: Schema.optional<Schema.String>;
|
|
1129
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
1130
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
1131
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
1132
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
1133
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
1134
|
+
readonly version: Schema.optional<Schema.String>;
|
|
1135
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
1136
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
1137
|
+
readonly description: Schema.optional<Schema.String>;
|
|
1138
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
1139
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
1140
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
1141
|
+
readonly page: Schema.optional<Schema.String>;
|
|
1142
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
1143
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
1144
|
+
}>>;
|
|
1145
|
+
readonly tokens: Schema.optional<Schema.Struct<{
|
|
1146
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
1147
|
+
readonly id: Schema.String;
|
|
1148
|
+
readonly resolved: Schema.Boolean;
|
|
1149
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1150
|
+
}>>;
|
|
1151
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
1152
|
+
readonly id: Schema.String;
|
|
1153
|
+
readonly resolved: Schema.Boolean;
|
|
1154
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1155
|
+
}>>;
|
|
1156
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
1157
|
+
readonly id: Schema.String;
|
|
1158
|
+
readonly resolved: Schema.Boolean;
|
|
1159
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1160
|
+
}>>;
|
|
1161
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
1162
|
+
readonly id: Schema.String;
|
|
1163
|
+
readonly resolved: Schema.Boolean;
|
|
1164
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1165
|
+
}>>;
|
|
1166
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
1167
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
1168
|
+
}>>;
|
|
1169
|
+
}>>;
|
|
1170
|
+
readonly constraints: Schema.optional<Schema.Struct<{
|
|
1171
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
1172
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
1173
|
+
}>>;
|
|
1174
|
+
readonly borders: Schema.optional<Schema.Struct<{
|
|
1175
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
1176
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
1177
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
1178
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
1179
|
+
readonly color: Schema.optional<Schema.String>;
|
|
1180
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
1181
|
+
}>>;
|
|
1182
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
1183
|
+
readonly variations: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
1184
|
+
}>>;
|
|
1185
|
+
readonly export: Schema.optional<Schema.Struct<{
|
|
1186
|
+
readonly quality: Schema.optional<Schema.String>;
|
|
1187
|
+
readonly keepNameGroup: Schema.optional<Schema.Boolean>;
|
|
1188
|
+
readonly nameByVariantProp: Schema.optional<Schema.Boolean>;
|
|
1189
|
+
}>>;
|
|
1190
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
1191
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1192
|
+
readonly width: Schema.optional<Schema.Number>;
|
|
1193
|
+
readonly height: Schema.optional<Schema.Number>;
|
|
1194
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
1195
|
+
readonly fill: Schema.optional<Schema.String>;
|
|
1196
|
+
readonly changed: Schema.$Array<Schema.String>;
|
|
1197
|
+
}>>>;
|
|
1198
|
+
readonly overriddenSnapshots: Schema.optional<Schema.$Array<Schema.suspend<Schema.Codec<PixsoNode, PixsoNode, never, never>>>>;
|
|
1199
|
+
readonly sourceId: Schema.optional<Schema.String>;
|
|
1200
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["selection", "component-master", "expanded-instance"]>>;
|
|
1201
|
+
readonly expansion: Schema.optional<Schema.Struct<{
|
|
1202
|
+
readonly masterId: Schema.optional<Schema.String>;
|
|
1203
|
+
readonly resolved: Schema.Boolean;
|
|
1204
|
+
readonly nodeCount: Schema.Number;
|
|
1205
|
+
readonly appliedOverrides: Schema.Number;
|
|
1206
|
+
readonly unresolvedOverrides: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1207
|
+
readonly pathString: Schema.String;
|
|
1208
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
1209
|
+
readonly reason: Schema.Literals<readonly ["no-component-id", "component-id-not-in-master", "master-unresolved"]>;
|
|
1210
|
+
}>>>;
|
|
1211
|
+
readonly stoppedBy: Schema.optional<Schema.Literals<readonly ["cycle", "depth", "budget"]>>;
|
|
1212
|
+
}>>;
|
|
1213
|
+
readonly rawType: Schema.optional<Schema.String>;
|
|
1214
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
1215
|
+
readonly parentId: Schema.optional<Schema.String>;
|
|
1216
|
+
readonly ancestorIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1217
|
+
readonly order: Schema.optional<Schema.String>;
|
|
1218
|
+
readonly zIndex: Schema.optional<Schema.Number>;
|
|
1219
|
+
readonly declaredLeft: Schema.optional<Schema.Number>;
|
|
1220
|
+
readonly declaredTop: Schema.optional<Schema.Number>;
|
|
1221
|
+
readonly declaredWidth: Schema.optional<Schema.Number>;
|
|
1222
|
+
readonly declaredHeight: Schema.optional<Schema.Number>;
|
|
1223
|
+
readonly absoluteX: Schema.optional<Schema.Number>;
|
|
1224
|
+
readonly absoluteY: Schema.optional<Schema.Number>;
|
|
1225
|
+
readonly inset: Schema.optional<Schema.Struct<{
|
|
1226
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
1227
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
1228
|
+
}>>;
|
|
1229
|
+
readonly flip: Schema.optional<Schema.Struct<{
|
|
1230
|
+
readonly horizontal: Schema.optional<Schema.Boolean>;
|
|
1231
|
+
readonly vertical: Schema.optional<Schema.Boolean>;
|
|
1232
|
+
}>>;
|
|
1233
|
+
readonly fromComponent: Schema.optional<Schema.Boolean>;
|
|
1234
|
+
readonly maskDisabled: Schema.optional<Schema.Boolean>;
|
|
1235
|
+
readonly cornerSmoothing: Schema.optional<Schema.Number>;
|
|
1236
|
+
readonly cornersIndependent: Schema.optional<Schema.Boolean>;
|
|
1237
|
+
readonly effectiveOpacity: Schema.optional<Schema.Number>;
|
|
1238
|
+
readonly fills: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1239
|
+
readonly kind: Schema.String;
|
|
1240
|
+
readonly visible: Schema.Boolean;
|
|
1241
|
+
readonly opacity: Schema.Number;
|
|
1242
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1243
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1244
|
+
readonly alpha: Schema.Number;
|
|
1245
|
+
readonly css: Schema.optional<Schema.String>;
|
|
1246
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
1247
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
1248
|
+
readonly position: Schema.Number;
|
|
1249
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
1250
|
+
readonly alpha: Schema.Number;
|
|
1251
|
+
}>>;
|
|
1252
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
1253
|
+
readonly x: Schema.Number;
|
|
1254
|
+
readonly y: Schema.Number;
|
|
1255
|
+
}>>;
|
|
1256
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
1257
|
+
readonly x: Schema.Number;
|
|
1258
|
+
readonly y: Schema.Number;
|
|
1259
|
+
}>>;
|
|
1260
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
1261
|
+
readonly x: Schema.Number;
|
|
1262
|
+
readonly y: Schema.Number;
|
|
1263
|
+
}>>;
|
|
1264
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
1265
|
+
readonly m00: Schema.Number;
|
|
1266
|
+
readonly m01: Schema.Number;
|
|
1267
|
+
readonly m02: Schema.Number;
|
|
1268
|
+
readonly m10: Schema.Number;
|
|
1269
|
+
readonly m11: Schema.Number;
|
|
1270
|
+
readonly m12: Schema.Number;
|
|
1271
|
+
}>>;
|
|
1272
|
+
}>>;
|
|
1273
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
1274
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
1275
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1276
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
1277
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
1278
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1279
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
1280
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
1281
|
+
}>>;
|
|
1282
|
+
}>>>;
|
|
1283
|
+
readonly strokes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1284
|
+
readonly kind: Schema.String;
|
|
1285
|
+
readonly visible: Schema.Boolean;
|
|
1286
|
+
readonly opacity: Schema.Number;
|
|
1287
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1288
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1289
|
+
readonly alpha: Schema.Number;
|
|
1290
|
+
readonly css: Schema.optional<Schema.String>;
|
|
1291
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
1292
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
1293
|
+
readonly position: Schema.Number;
|
|
1294
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
1295
|
+
readonly alpha: Schema.Number;
|
|
1296
|
+
}>>;
|
|
1297
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
1298
|
+
readonly x: Schema.Number;
|
|
1299
|
+
readonly y: Schema.Number;
|
|
1300
|
+
}>>;
|
|
1301
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
1302
|
+
readonly x: Schema.Number;
|
|
1303
|
+
readonly y: Schema.Number;
|
|
1304
|
+
}>>;
|
|
1305
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
1306
|
+
readonly x: Schema.Number;
|
|
1307
|
+
readonly y: Schema.Number;
|
|
1308
|
+
}>>;
|
|
1309
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
1310
|
+
readonly m00: Schema.Number;
|
|
1311
|
+
readonly m01: Schema.Number;
|
|
1312
|
+
readonly m02: Schema.Number;
|
|
1313
|
+
readonly m10: Schema.Number;
|
|
1314
|
+
readonly m11: Schema.Number;
|
|
1315
|
+
readonly m12: Schema.Number;
|
|
1316
|
+
}>>;
|
|
1317
|
+
}>>;
|
|
1318
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
1319
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
1320
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1321
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
1322
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
1323
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1324
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
1325
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
1326
|
+
}>>;
|
|
1327
|
+
}>>>;
|
|
1328
|
+
readonly strokeWeight: Schema.optional<Schema.Number>;
|
|
1329
|
+
readonly strokeAlign: Schema.optional<Schema.String>;
|
|
1330
|
+
readonly strokeJoin: Schema.optional<Schema.String>;
|
|
1331
|
+
readonly strokeCap: Schema.optional<Schema.String>;
|
|
1332
|
+
readonly dashCap: Schema.optional<Schema.String>;
|
|
1333
|
+
readonly miterLimit: Schema.optional<Schema.Number>;
|
|
1334
|
+
readonly strokeVisible: Schema.optional<Schema.Boolean>;
|
|
1335
|
+
readonly strokeDash: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
1336
|
+
readonly childLayout: Schema.optional<Schema.Struct<{
|
|
1337
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
1338
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
1339
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
1340
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
1341
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1342
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1343
|
+
}>>;
|
|
1344
|
+
readonly textRaw: Schema.optional<Schema.String>;
|
|
1345
|
+
readonly textRuns: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1346
|
+
readonly id: Schema.String;
|
|
1347
|
+
readonly textRaw: Schema.String;
|
|
1348
|
+
readonly text: Schema.String;
|
|
1349
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
1350
|
+
readonly family: Schema.optional<Schema.String>;
|
|
1351
|
+
readonly style: Schema.optional<Schema.String>;
|
|
1352
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
1353
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
1354
|
+
}>>;
|
|
1355
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1356
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1357
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
1358
|
+
readonly upperCase: Schema.Boolean;
|
|
1359
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
1360
|
+
readonly value: Schema.Number;
|
|
1361
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1362
|
+
}>>;
|
|
1363
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
1364
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
1365
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
1366
|
+
readonly value: Schema.Number;
|
|
1367
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1368
|
+
}>>;
|
|
1369
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
1370
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
1371
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
1372
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
1373
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
1374
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1375
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1376
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
1377
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
1378
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
1379
|
+
}>>;
|
|
1380
|
+
}>>>;
|
|
1381
|
+
readonly component: Schema.optional<Schema.Struct<{
|
|
1382
|
+
readonly key: Schema.optional<Schema.String>;
|
|
1383
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
1384
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
1385
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
1386
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
1387
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
1388
|
+
readonly version: Schema.optional<Schema.String>;
|
|
1389
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
1390
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
1391
|
+
readonly description: Schema.optional<Schema.String>;
|
|
1392
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
1393
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
1394
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
1395
|
+
readonly page: Schema.optional<Schema.String>;
|
|
1396
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
1397
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
1398
|
+
}>>;
|
|
1399
|
+
readonly rawNormName: Schema.optional<Schema.String>;
|
|
1400
|
+
readonly componentProps: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1401
|
+
readonly propKey: Schema.String;
|
|
1402
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1403
|
+
readonly kind: Schema.String;
|
|
1404
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
1405
|
+
}>>>;
|
|
1406
|
+
readonly componentPropValues: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1407
|
+
readonly propKey: Schema.String;
|
|
1408
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1409
|
+
readonly kind: Schema.String;
|
|
1410
|
+
readonly value: Schema.optional<Schema.String>;
|
|
1411
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1412
|
+
}>>>;
|
|
1413
|
+
readonly propBindings: Schema.optional<Schema.Struct<{
|
|
1414
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
1415
|
+
readonly propKey: Schema.String;
|
|
1416
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1417
|
+
readonly kind: Schema.String;
|
|
1418
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
1419
|
+
}>>;
|
|
1420
|
+
readonly visible: Schema.optional<Schema.Struct<{
|
|
1421
|
+
readonly propKey: Schema.String;
|
|
1422
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1423
|
+
readonly kind: Schema.String;
|
|
1424
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
1425
|
+
}>>;
|
|
1426
|
+
readonly instance: Schema.optional<Schema.Struct<{
|
|
1427
|
+
readonly propKey: Schema.String;
|
|
1428
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1429
|
+
readonly kind: Schema.String;
|
|
1430
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
1431
|
+
}>>;
|
|
1432
|
+
}>>;
|
|
1433
|
+
readonly resolution: Schema.optional<Schema.Struct<{
|
|
1434
|
+
readonly offset: Schema.optional<Schema.Literals<readonly ["flow", "center", "reflow"]>>;
|
|
1435
|
+
readonly textWidth: Schema.optional<Schema.Literals<readonly ["rescaled", "stated", "measured", "hugged"]>>;
|
|
1436
|
+
readonly visibility: Schema.optional<Schema.Literals<readonly ["assigned", "default", "unresolved"]>>;
|
|
1437
|
+
}>>;
|
|
1438
|
+
readonly tokens: Schema.optional<Schema.Struct<{
|
|
1439
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
1440
|
+
readonly id: Schema.String;
|
|
1441
|
+
readonly resolved: Schema.Boolean;
|
|
1442
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1443
|
+
}>>;
|
|
1444
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
1445
|
+
readonly id: Schema.String;
|
|
1446
|
+
readonly resolved: Schema.Boolean;
|
|
1447
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1448
|
+
}>>;
|
|
1449
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
1450
|
+
readonly id: Schema.String;
|
|
1451
|
+
readonly resolved: Schema.Boolean;
|
|
1452
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1453
|
+
}>>;
|
|
1454
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
1455
|
+
readonly id: Schema.String;
|
|
1456
|
+
readonly resolved: Schema.Boolean;
|
|
1457
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1458
|
+
}>>;
|
|
1459
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
1460
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
1461
|
+
}>>;
|
|
1462
|
+
}>>;
|
|
1463
|
+
readonly overlay: Schema.optional<Schema.Struct<{
|
|
1464
|
+
readonly positionType: Schema.optional<Schema.String>;
|
|
1465
|
+
readonly interaction: Schema.optional<Schema.String>;
|
|
1466
|
+
readonly background: Schema.optional<Schema.Struct<{
|
|
1467
|
+
readonly type: Schema.optional<Schema.String>;
|
|
1468
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1469
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1470
|
+
}>>;
|
|
1471
|
+
}>>;
|
|
1472
|
+
readonly links: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1473
|
+
readonly url: Schema.String;
|
|
1474
|
+
}>>>;
|
|
1475
|
+
readonly scrollBehavior: Schema.optional<Schema.String>;
|
|
1476
|
+
readonly placeholder: Schema.optional<Schema.Struct<{
|
|
1477
|
+
readonly reason: Schema.Literal<"vector-geometry-absent">;
|
|
1478
|
+
readonly width: Schema.Number;
|
|
1479
|
+
readonly height: Schema.Number;
|
|
1480
|
+
}>>;
|
|
1481
|
+
readonly children: Schema.optional<Schema.$Array<Schema.suspend<Schema.Codec<PixsoNode, PixsoNode, never, never>>>>;
|
|
1482
|
+
}>;
|
|
1483
|
+
declare const PixsoComponentProp: Schema.Struct<{
|
|
1484
|
+
readonly name: Schema.String;
|
|
1485
|
+
readonly kind: Schema.String;
|
|
1486
|
+
readonly value: Schema.String;
|
|
1487
|
+
readonly defaultValue: Schema.String;
|
|
1488
|
+
readonly overridden: Schema.Boolean;
|
|
1489
|
+
}>;
|
|
1490
|
+
type PixsoComponentProp = typeof PixsoComponentProp.Type;
|
|
1491
|
+
declare const PixsoComponentUsage: Schema.Struct<{
|
|
1492
|
+
readonly key: Schema.String;
|
|
1493
|
+
readonly name: Schema.String;
|
|
1494
|
+
readonly variantGroup: Schema.NullOr<Schema.String>;
|
|
1495
|
+
readonly library: Schema.NullOr<Schema.String>;
|
|
1496
|
+
readonly libraryFileKey: Schema.NullOr<Schema.String>;
|
|
1497
|
+
readonly pageName: Schema.NullOr<Schema.String>;
|
|
1498
|
+
readonly description: Schema.NullOr<Schema.String>;
|
|
1499
|
+
readonly updatedAt: Schema.NullOr<Schema.String>;
|
|
1500
|
+
readonly deprecated: Schema.Boolean;
|
|
1501
|
+
readonly resolved: Schema.Boolean;
|
|
1502
|
+
readonly count: Schema.Number;
|
|
1503
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
1504
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
1505
|
+
readonly props: Schema.$Array<Schema.Struct<{
|
|
1506
|
+
readonly name: Schema.String;
|
|
1507
|
+
readonly kind: Schema.String;
|
|
1508
|
+
readonly value: Schema.String;
|
|
1509
|
+
readonly defaultValue: Schema.String;
|
|
1510
|
+
readonly overridden: Schema.Boolean;
|
|
1511
|
+
}>>;
|
|
1512
|
+
}>;
|
|
1513
|
+
type PixsoComponentUsage = typeof PixsoComponentUsage.Type;
|
|
1514
|
+
declare const PixsoComponentInfo: Schema.Struct<{
|
|
1515
|
+
readonly componentKey: Schema.NullOr<Schema.String>;
|
|
1516
|
+
readonly libraryFile: Schema.NullOr<Schema.String>;
|
|
1517
|
+
readonly version: Schema.NullOr<Schema.String>;
|
|
1518
|
+
readonly variants: Schema.NullOr<Schema.$Record<Schema.String, Schema.String>>;
|
|
1519
|
+
readonly mainComponent: Schema.optional<Schema.String>;
|
|
1520
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
1521
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
1522
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
1523
|
+
}>;
|
|
1524
|
+
type PixsoComponentInfo = typeof PixsoComponentInfo.Type;
|
|
1525
|
+
declare const CatalogEntry: Schema.Struct<{
|
|
1526
|
+
readonly component_key: Schema.String;
|
|
1527
|
+
readonly name: Schema.String;
|
|
1528
|
+
readonly description: Schema.String;
|
|
1529
|
+
readonly file_key: Schema.String;
|
|
1530
|
+
readonly node_id: Schema.String;
|
|
1531
|
+
readonly containing_frame: Schema.Struct<{
|
|
1532
|
+
readonly pageId: Schema.String;
|
|
1533
|
+
readonly pageName: Schema.String;
|
|
1534
|
+
readonly containingStateGroup: Schema.optional<Schema.Struct<{
|
|
1535
|
+
readonly name: Schema.String;
|
|
1536
|
+
readonly nodeId: Schema.optional<Schema.String>;
|
|
1537
|
+
}>>;
|
|
1538
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1539
|
+
readonly nodeId: Schema.optional<Schema.String>;
|
|
1540
|
+
readonly backgroundColorCss: Schema.optional<Schema.String>;
|
|
1541
|
+
readonly color: Schema.optional<Schema.Struct<{
|
|
1542
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1543
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1544
|
+
}>>;
|
|
1545
|
+
}>;
|
|
1546
|
+
readonly content_hash: Schema.String;
|
|
1547
|
+
readonly updated_at: Schema.NullOr<Schema.String>;
|
|
1548
|
+
readonly min_node_width: Schema.Number;
|
|
1549
|
+
readonly min_node_height: Schema.Number;
|
|
1550
|
+
readonly thumbnail_url: Schema.String;
|
|
1551
|
+
readonly canvas_url: Schema.optional<Schema.String>;
|
|
1552
|
+
readonly created_at: Schema.optional<Schema.String>;
|
|
1553
|
+
readonly unpublished_at: Schema.optional<Schema.String>;
|
|
1554
|
+
readonly description_rtf: Schema.optional<Schema.String>;
|
|
1555
|
+
readonly type: Schema.optional<Schema.String>;
|
|
1556
|
+
readonly is_unflattened: Schema.optional<Schema.Boolean>;
|
|
1557
|
+
readonly user_id: Schema.optional<Schema.Number>;
|
|
1558
|
+
readonly isLocal: Schema.optional<Schema.Boolean>;
|
|
1559
|
+
readonly isPublishable: Schema.optional<Schema.Boolean>;
|
|
1560
|
+
readonly isVariant: Schema.optional<Schema.Boolean>;
|
|
1561
|
+
readonly deletedFromSceneGraph: Schema.optional<Schema.Boolean>;
|
|
1562
|
+
readonly status: Schema.optional<Schema.Number>;
|
|
1563
|
+
readonly aliasName: Schema.optional<Schema.String>;
|
|
1564
|
+
readonly defs: Schema.optional<Schema.Unknown>;
|
|
1565
|
+
}>;
|
|
1566
|
+
type CatalogEntry = typeof CatalogEntry.Type;
|
|
1567
|
+
declare const CatalogSnapshot: Schema.Struct<{
|
|
1568
|
+
readonly capturedAtIso: Schema.String;
|
|
1569
|
+
readonly libraryNames: Schema.$Record<Schema.String, Schema.String>;
|
|
1570
|
+
readonly entries: Schema.$Array<Schema.Struct<{
|
|
1571
|
+
readonly component_key: Schema.String;
|
|
1572
|
+
readonly name: Schema.String;
|
|
1573
|
+
readonly description: Schema.String;
|
|
1574
|
+
readonly file_key: Schema.String;
|
|
1575
|
+
readonly node_id: Schema.String;
|
|
1576
|
+
readonly containing_frame: Schema.Struct<{
|
|
1577
|
+
readonly pageId: Schema.String;
|
|
1578
|
+
readonly pageName: Schema.String;
|
|
1579
|
+
readonly containingStateGroup: Schema.optional<Schema.Struct<{
|
|
1580
|
+
readonly name: Schema.String;
|
|
1581
|
+
readonly nodeId: Schema.optional<Schema.String>;
|
|
1582
|
+
}>>;
|
|
1583
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1584
|
+
readonly nodeId: Schema.optional<Schema.String>;
|
|
1585
|
+
readonly backgroundColorCss: Schema.optional<Schema.String>;
|
|
1586
|
+
readonly color: Schema.optional<Schema.Struct<{
|
|
1587
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1588
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1589
|
+
}>>;
|
|
1590
|
+
}>;
|
|
1591
|
+
readonly content_hash: Schema.String;
|
|
1592
|
+
readonly updated_at: Schema.NullOr<Schema.String>;
|
|
1593
|
+
readonly min_node_width: Schema.Number;
|
|
1594
|
+
readonly min_node_height: Schema.Number;
|
|
1595
|
+
readonly thumbnail_url: Schema.String;
|
|
1596
|
+
readonly canvas_url: Schema.optional<Schema.String>;
|
|
1597
|
+
readonly created_at: Schema.optional<Schema.String>;
|
|
1598
|
+
readonly unpublished_at: Schema.optional<Schema.String>;
|
|
1599
|
+
readonly description_rtf: Schema.optional<Schema.String>;
|
|
1600
|
+
readonly type: Schema.optional<Schema.String>;
|
|
1601
|
+
readonly is_unflattened: Schema.optional<Schema.Boolean>;
|
|
1602
|
+
readonly user_id: Schema.optional<Schema.Number>;
|
|
1603
|
+
readonly isLocal: Schema.optional<Schema.Boolean>;
|
|
1604
|
+
readonly isPublishable: Schema.optional<Schema.Boolean>;
|
|
1605
|
+
readonly isVariant: Schema.optional<Schema.Boolean>;
|
|
1606
|
+
readonly deletedFromSceneGraph: Schema.optional<Schema.Boolean>;
|
|
1607
|
+
readonly status: Schema.optional<Schema.Number>;
|
|
1608
|
+
readonly aliasName: Schema.optional<Schema.String>;
|
|
1609
|
+
readonly defs: Schema.optional<Schema.Unknown>;
|
|
1610
|
+
}>>;
|
|
1611
|
+
}>;
|
|
1612
|
+
type CatalogSnapshot = typeof CatalogSnapshot.Type;
|
|
1613
|
+
declare const CardProvenance: Schema.Struct<{
|
|
1614
|
+
readonly source: Schema.Literals<readonly ["local", "remote"]>;
|
|
1615
|
+
readonly fileKey: Schema.NullOr<Schema.String>;
|
|
1616
|
+
readonly guid: Schema.String;
|
|
1617
|
+
readonly designUrl: Schema.NullOr<Schema.String>;
|
|
1618
|
+
readonly importedAtIso: Schema.String;
|
|
1619
|
+
}>;
|
|
1620
|
+
type CardProvenance = typeof CardProvenance.Type;
|
|
1621
|
+
declare const CardDetail: Schema.Struct<{
|
|
1622
|
+
readonly id: Schema.String;
|
|
1623
|
+
readonly nodeId: Schema.String;
|
|
1624
|
+
readonly name: Schema.String;
|
|
1625
|
+
readonly nodeType: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
1626
|
+
readonly dslVersion: Schema.NullOr<Schema.String>;
|
|
1627
|
+
readonly importedAtIso: Schema.String;
|
|
1628
|
+
readonly pagePath: Schema.$Array<Schema.String>;
|
|
1629
|
+
readonly root: Schema.Struct<{
|
|
1630
|
+
readonly id: Schema.String;
|
|
1631
|
+
readonly name: Schema.String;
|
|
1632
|
+
readonly type: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
1633
|
+
readonly x: Schema.Number;
|
|
1634
|
+
readonly y: Schema.Number;
|
|
1635
|
+
readonly width: Schema.Number;
|
|
1636
|
+
readonly height: Schema.Number;
|
|
1637
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
1638
|
+
readonly opacity: Schema.optional<Schema.Number>;
|
|
1639
|
+
readonly fill: Schema.optional<Schema.String>;
|
|
1640
|
+
readonly text: Schema.optional<Schema.String>;
|
|
1641
|
+
readonly textColor: Schema.optional<Schema.String>;
|
|
1642
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
1643
|
+
readonly family: Schema.optional<Schema.String>;
|
|
1644
|
+
readonly style: Schema.optional<Schema.String>;
|
|
1645
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
1646
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
1647
|
+
}>>;
|
|
1648
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
1649
|
+
readonly color: Schema.String;
|
|
1650
|
+
readonly weight: Schema.Number;
|
|
1651
|
+
readonly align: Schema.optional<Schema.Literals<readonly ["inside", "center", "outside"]>>;
|
|
1652
|
+
readonly dashed: Schema.optional<Schema.Boolean>;
|
|
1653
|
+
}>>;
|
|
1654
|
+
readonly layout: Schema.optional<Schema.Struct<{
|
|
1655
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
1656
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
1657
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
1658
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
1659
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
1660
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
1661
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
1662
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
1663
|
+
readonly top: Schema.Number;
|
|
1664
|
+
readonly right: Schema.Number;
|
|
1665
|
+
readonly bottom: Schema.Number;
|
|
1666
|
+
readonly left: Schema.Number;
|
|
1667
|
+
}>>;
|
|
1668
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
1669
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
1670
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
1671
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1672
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1673
|
+
}>>;
|
|
1674
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
1675
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
1676
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
1677
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
1678
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
1679
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1680
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1681
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
1682
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
1683
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1684
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1685
|
+
}>>;
|
|
1686
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
1687
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1688
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1689
|
+
}>>;
|
|
1690
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
1691
|
+
readonly summary: Schema.String;
|
|
1692
|
+
}>>;
|
|
1693
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
1694
|
+
readonly upperCase: Schema.Boolean;
|
|
1695
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
1696
|
+
readonly value: Schema.Number;
|
|
1697
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1698
|
+
}>>;
|
|
1699
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
1700
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
1701
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
1702
|
+
readonly value: Schema.Number;
|
|
1703
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1704
|
+
}>>;
|
|
1705
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
1706
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
1707
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
1708
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
1709
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
1710
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1711
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1712
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
1713
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
1714
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
1715
|
+
}>>;
|
|
1716
|
+
readonly mask: Schema.optional<Schema.Boolean>;
|
|
1717
|
+
readonly sticky: Schema.optional<Schema.Boolean>;
|
|
1718
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1719
|
+
readonly effects: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1720
|
+
readonly kind: Schema.String;
|
|
1721
|
+
readonly color: Schema.optional<Schema.String>;
|
|
1722
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1723
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1724
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
1725
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
1726
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
1727
|
+
readonly x: Schema.Number;
|
|
1728
|
+
readonly y: Schema.Number;
|
|
1729
|
+
}>>;
|
|
1730
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
1731
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
1732
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
1733
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1734
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
1735
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
1736
|
+
}>>>;
|
|
1737
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1738
|
+
readonly radii: Schema.optional<Schema.Struct<{
|
|
1739
|
+
readonly topLeft: Schema.Number;
|
|
1740
|
+
readonly topRight: Schema.Number;
|
|
1741
|
+
readonly bottomRight: Schema.Number;
|
|
1742
|
+
readonly bottomLeft: Schema.Number;
|
|
1743
|
+
}>>;
|
|
1744
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
1745
|
+
readonly kind: Schema.Literal<"linear">;
|
|
1746
|
+
readonly angle: Schema.Number;
|
|
1747
|
+
readonly x1: Schema.Number;
|
|
1748
|
+
readonly y1: Schema.Number;
|
|
1749
|
+
readonly x2: Schema.Number;
|
|
1750
|
+
readonly y2: Schema.Number;
|
|
1751
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
1752
|
+
readonly position: Schema.Number;
|
|
1753
|
+
readonly color: Schema.String;
|
|
1754
|
+
readonly alpha: Schema.Number;
|
|
1755
|
+
}>>;
|
|
1756
|
+
}>>;
|
|
1757
|
+
readonly borders: Schema.optional<Schema.Struct<{
|
|
1758
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
1759
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
1760
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
1761
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
1762
|
+
readonly color: Schema.optional<Schema.String>;
|
|
1763
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
1764
|
+
}>>;
|
|
1765
|
+
readonly constraints: Schema.optional<Schema.Struct<{
|
|
1766
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
1767
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
1768
|
+
}>>;
|
|
1769
|
+
readonly scrollDirection: Schema.optional<Schema.String>;
|
|
1770
|
+
readonly descriptionRich: Schema.optional<Schema.String>;
|
|
1771
|
+
readonly margin: Schema.optional<Schema.Struct<{
|
|
1772
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
1773
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
1774
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
1775
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
1776
|
+
}>>;
|
|
1777
|
+
readonly overrides: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1778
|
+
readonly pathString: Schema.optional<Schema.String>;
|
|
1779
|
+
readonly path: Schema.$Array<Schema.String>;
|
|
1780
|
+
readonly targetId: Schema.String;
|
|
1781
|
+
readonly rawType: Schema.optional<Schema.String>;
|
|
1782
|
+
readonly declaredLeft: Schema.optional<Schema.Number>;
|
|
1783
|
+
readonly declaredTop: Schema.optional<Schema.Number>;
|
|
1784
|
+
readonly textRaw: Schema.optional<Schema.String>;
|
|
1785
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
1786
|
+
readonly mask: Schema.optional<Schema.Boolean>;
|
|
1787
|
+
readonly opacity: Schema.optional<Schema.Number>;
|
|
1788
|
+
readonly cornerSmoothing: Schema.optional<Schema.Number>;
|
|
1789
|
+
readonly fills: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1790
|
+
readonly kind: Schema.String;
|
|
1791
|
+
readonly visible: Schema.Boolean;
|
|
1792
|
+
readonly opacity: Schema.Number;
|
|
1793
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1794
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1795
|
+
readonly alpha: Schema.Number;
|
|
1796
|
+
readonly css: Schema.optional<Schema.String>;
|
|
1797
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
1798
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
1799
|
+
readonly position: Schema.Number;
|
|
1800
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
1801
|
+
readonly alpha: Schema.Number;
|
|
1802
|
+
}>>;
|
|
1803
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
1804
|
+
readonly x: Schema.Number;
|
|
1805
|
+
readonly y: Schema.Number;
|
|
1806
|
+
}>>;
|
|
1807
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
1808
|
+
readonly x: Schema.Number;
|
|
1809
|
+
readonly y: Schema.Number;
|
|
1810
|
+
}>>;
|
|
1811
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
1812
|
+
readonly x: Schema.Number;
|
|
1813
|
+
readonly y: Schema.Number;
|
|
1814
|
+
}>>;
|
|
1815
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
1816
|
+
readonly m00: Schema.Number;
|
|
1817
|
+
readonly m01: Schema.Number;
|
|
1818
|
+
readonly m02: Schema.Number;
|
|
1819
|
+
readonly m10: Schema.Number;
|
|
1820
|
+
readonly m11: Schema.Number;
|
|
1821
|
+
readonly m12: Schema.Number;
|
|
1822
|
+
}>>;
|
|
1823
|
+
}>>;
|
|
1824
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
1825
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
1826
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1827
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
1828
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
1829
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1830
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
1831
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
1832
|
+
}>>;
|
|
1833
|
+
}>>>;
|
|
1834
|
+
readonly strokes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1835
|
+
readonly kind: Schema.String;
|
|
1836
|
+
readonly visible: Schema.Boolean;
|
|
1837
|
+
readonly opacity: Schema.Number;
|
|
1838
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1839
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1840
|
+
readonly alpha: Schema.Number;
|
|
1841
|
+
readonly css: Schema.optional<Schema.String>;
|
|
1842
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
1843
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
1844
|
+
readonly position: Schema.Number;
|
|
1845
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
1846
|
+
readonly alpha: Schema.Number;
|
|
1847
|
+
}>>;
|
|
1848
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
1849
|
+
readonly x: Schema.Number;
|
|
1850
|
+
readonly y: Schema.Number;
|
|
1851
|
+
}>>;
|
|
1852
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
1853
|
+
readonly x: Schema.Number;
|
|
1854
|
+
readonly y: Schema.Number;
|
|
1855
|
+
}>>;
|
|
1856
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
1857
|
+
readonly x: Schema.Number;
|
|
1858
|
+
readonly y: Schema.Number;
|
|
1859
|
+
}>>;
|
|
1860
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
1861
|
+
readonly m00: Schema.Number;
|
|
1862
|
+
readonly m01: Schema.Number;
|
|
1863
|
+
readonly m02: Schema.Number;
|
|
1864
|
+
readonly m10: Schema.Number;
|
|
1865
|
+
readonly m11: Schema.Number;
|
|
1866
|
+
readonly m12: Schema.Number;
|
|
1867
|
+
}>>;
|
|
1868
|
+
}>>;
|
|
1869
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
1870
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
1871
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1872
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
1873
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
1874
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
1875
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
1876
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
1877
|
+
}>>;
|
|
1878
|
+
}>>>;
|
|
1879
|
+
readonly effects: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1880
|
+
readonly kind: Schema.String;
|
|
1881
|
+
readonly color: Schema.optional<Schema.String>;
|
|
1882
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
1883
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
1884
|
+
readonly offsetX: Schema.optional<Schema.Number>;
|
|
1885
|
+
readonly offsetY: Schema.optional<Schema.Number>;
|
|
1886
|
+
readonly offset: Schema.optional<Schema.Struct<{
|
|
1887
|
+
readonly x: Schema.Number;
|
|
1888
|
+
readonly y: Schema.Number;
|
|
1889
|
+
}>>;
|
|
1890
|
+
readonly spread: Schema.optional<Schema.Number>;
|
|
1891
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
1892
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
1893
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
1894
|
+
readonly saturation: Schema.optional<Schema.Number>;
|
|
1895
|
+
readonly showBehindNode: Schema.optional<Schema.Boolean>;
|
|
1896
|
+
}>>>;
|
|
1897
|
+
readonly strokeWeight: Schema.optional<Schema.Number>;
|
|
1898
|
+
readonly strokeAlign: Schema.optional<Schema.String>;
|
|
1899
|
+
readonly strokeJoin: Schema.optional<Schema.String>;
|
|
1900
|
+
readonly strokeCap: Schema.optional<Schema.String>;
|
|
1901
|
+
readonly dashCap: Schema.optional<Schema.String>;
|
|
1902
|
+
readonly strokeMiterLimit: Schema.optional<Schema.Number>;
|
|
1903
|
+
readonly strokeDash: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
1904
|
+
readonly maskDisabled: Schema.optional<Schema.Boolean>;
|
|
1905
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
1906
|
+
readonly upperCase: Schema.Boolean;
|
|
1907
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
1908
|
+
readonly value: Schema.Number;
|
|
1909
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1910
|
+
}>>;
|
|
1911
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
1912
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
1913
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
1914
|
+
readonly value: Schema.Number;
|
|
1915
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
1916
|
+
}>>;
|
|
1917
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
1918
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
1919
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
1920
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
1921
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
1922
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1923
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1924
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
1925
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
1926
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
1927
|
+
}>>;
|
|
1928
|
+
readonly layout: Schema.optional<Schema.Struct<{
|
|
1929
|
+
readonly mode: Schema.Literals<readonly ["horizontal", "vertical", "none", "unknown"]>;
|
|
1930
|
+
readonly gap: Schema.NullOr<Schema.Number>;
|
|
1931
|
+
readonly counterGap: Schema.optional<Schema.Number>;
|
|
1932
|
+
readonly minWidth: Schema.optional<Schema.Number>;
|
|
1933
|
+
readonly maxWidth: Schema.optional<Schema.Number>;
|
|
1934
|
+
readonly minHeight: Schema.optional<Schema.Number>;
|
|
1935
|
+
readonly maxHeight: Schema.optional<Schema.Number>;
|
|
1936
|
+
readonly padding: Schema.NullOr<Schema.Struct<{
|
|
1937
|
+
readonly top: Schema.Number;
|
|
1938
|
+
readonly right: Schema.Number;
|
|
1939
|
+
readonly bottom: Schema.Number;
|
|
1940
|
+
readonly left: Schema.Number;
|
|
1941
|
+
}>>;
|
|
1942
|
+
readonly primaryAlign: Schema.optional<Schema.String>;
|
|
1943
|
+
readonly counterAlign: Schema.optional<Schema.String>;
|
|
1944
|
+
readonly sizing: Schema.optional<Schema.Struct<{
|
|
1945
|
+
readonly w: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1946
|
+
readonly h: Schema.Literals<readonly ["fixed", "hug", "fill"]>;
|
|
1947
|
+
}>>;
|
|
1948
|
+
readonly alignType: Schema.optional<Schema.String>;
|
|
1949
|
+
readonly direction: Schema.optional<Schema.Number>;
|
|
1950
|
+
readonly itemHorizontalAlign: Schema.optional<Schema.Number>;
|
|
1951
|
+
readonly itemVerticalAlign: Schema.optional<Schema.Number>;
|
|
1952
|
+
readonly includeBorders: Schema.optional<Schema.Boolean>;
|
|
1953
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1954
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1955
|
+
readonly grids: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
1956
|
+
readonly minSize: Schema.optional<Schema.Struct<{
|
|
1957
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1958
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1959
|
+
}>>;
|
|
1960
|
+
readonly maxSize: Schema.optional<Schema.Struct<{
|
|
1961
|
+
readonly x: Schema.optional<Schema.Number>;
|
|
1962
|
+
readonly y: Schema.optional<Schema.Number>;
|
|
1963
|
+
}>>;
|
|
1964
|
+
readonly reverse: Schema.optional<Schema.Boolean>;
|
|
1965
|
+
readonly summary: Schema.String;
|
|
1966
|
+
}>>;
|
|
1967
|
+
readonly childLayout: Schema.optional<Schema.Struct<{
|
|
1968
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
1969
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
1970
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
1971
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
1972
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
1973
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
1974
|
+
}>>;
|
|
1975
|
+
readonly componentPropValues: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
1976
|
+
readonly propKey: Schema.String;
|
|
1977
|
+
readonly name: Schema.optional<Schema.String>;
|
|
1978
|
+
readonly kind: Schema.String;
|
|
1979
|
+
readonly value: Schema.optional<Schema.String>;
|
|
1980
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
1981
|
+
}>>>;
|
|
1982
|
+
readonly component: Schema.optional<Schema.Struct<{
|
|
1983
|
+
readonly key: Schema.optional<Schema.String>;
|
|
1984
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
1985
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
1986
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
1987
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
1988
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
1989
|
+
readonly version: Schema.optional<Schema.String>;
|
|
1990
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
1991
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
1992
|
+
readonly description: Schema.optional<Schema.String>;
|
|
1993
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
1994
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
1995
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
1996
|
+
readonly page: Schema.optional<Schema.String>;
|
|
1997
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
1998
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
1999
|
+
}>>;
|
|
2000
|
+
readonly tokens: Schema.optional<Schema.Struct<{
|
|
2001
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
2002
|
+
readonly id: Schema.String;
|
|
2003
|
+
readonly resolved: Schema.Boolean;
|
|
2004
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2005
|
+
}>>;
|
|
2006
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
2007
|
+
readonly id: Schema.String;
|
|
2008
|
+
readonly resolved: Schema.Boolean;
|
|
2009
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2010
|
+
}>>;
|
|
2011
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
2012
|
+
readonly id: Schema.String;
|
|
2013
|
+
readonly resolved: Schema.Boolean;
|
|
2014
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2015
|
+
}>>;
|
|
2016
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
2017
|
+
readonly id: Schema.String;
|
|
2018
|
+
readonly resolved: Schema.Boolean;
|
|
2019
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2020
|
+
}>>;
|
|
2021
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
2022
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
2023
|
+
}>>;
|
|
2024
|
+
}>>;
|
|
2025
|
+
readonly constraints: Schema.optional<Schema.Struct<{
|
|
2026
|
+
readonly horizontal: Schema.optional<Schema.String>;
|
|
2027
|
+
readonly vertical: Schema.optional<Schema.String>;
|
|
2028
|
+
}>>;
|
|
2029
|
+
readonly borders: Schema.optional<Schema.Struct<{
|
|
2030
|
+
readonly top: Schema.optional<Schema.Number>;
|
|
2031
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
2032
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
2033
|
+
readonly left: Schema.optional<Schema.Number>;
|
|
2034
|
+
readonly color: Schema.optional<Schema.String>;
|
|
2035
|
+
readonly independent: Schema.optional<Schema.Boolean>;
|
|
2036
|
+
}>>;
|
|
2037
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
2038
|
+
readonly variations: Schema.optional<Schema.$Array<Schema.Unknown>>;
|
|
2039
|
+
}>>;
|
|
2040
|
+
readonly export: Schema.optional<Schema.Struct<{
|
|
2041
|
+
readonly quality: Schema.optional<Schema.String>;
|
|
2042
|
+
readonly keepNameGroup: Schema.optional<Schema.Boolean>;
|
|
2043
|
+
readonly nameByVariantProp: Schema.optional<Schema.Boolean>;
|
|
2044
|
+
}>>;
|
|
2045
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
2046
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2047
|
+
readonly width: Schema.optional<Schema.Number>;
|
|
2048
|
+
readonly height: Schema.optional<Schema.Number>;
|
|
2049
|
+
readonly radius: Schema.optional<Schema.Number>;
|
|
2050
|
+
readonly fill: Schema.optional<Schema.String>;
|
|
2051
|
+
readonly changed: Schema.$Array<Schema.String>;
|
|
2052
|
+
}>>>;
|
|
2053
|
+
readonly overriddenSnapshots: Schema.optional<Schema.$Array<Schema.suspend<Schema.Codec<PixsoNode, PixsoNode, never, never>>>>;
|
|
2054
|
+
readonly sourceId: Schema.optional<Schema.String>;
|
|
2055
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["selection", "component-master", "expanded-instance"]>>;
|
|
2056
|
+
readonly expansion: Schema.optional<Schema.Struct<{
|
|
2057
|
+
readonly masterId: Schema.optional<Schema.String>;
|
|
2058
|
+
readonly resolved: Schema.Boolean;
|
|
2059
|
+
readonly nodeCount: Schema.Number;
|
|
2060
|
+
readonly appliedOverrides: Schema.Number;
|
|
2061
|
+
readonly unresolvedOverrides: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2062
|
+
readonly pathString: Schema.String;
|
|
2063
|
+
readonly componentId: Schema.optional<Schema.String>;
|
|
2064
|
+
readonly reason: Schema.Literals<readonly ["no-component-id", "component-id-not-in-master", "master-unresolved"]>;
|
|
2065
|
+
}>>>;
|
|
2066
|
+
readonly stoppedBy: Schema.optional<Schema.Literals<readonly ["cycle", "depth", "budget"]>>;
|
|
2067
|
+
}>>;
|
|
2068
|
+
readonly rawType: Schema.optional<Schema.String>;
|
|
2069
|
+
readonly visible: Schema.optional<Schema.Boolean>;
|
|
2070
|
+
readonly parentId: Schema.optional<Schema.String>;
|
|
2071
|
+
readonly ancestorIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2072
|
+
readonly order: Schema.optional<Schema.String>;
|
|
2073
|
+
readonly zIndex: Schema.optional<Schema.Number>;
|
|
2074
|
+
readonly declaredLeft: Schema.optional<Schema.Number>;
|
|
2075
|
+
readonly declaredTop: Schema.optional<Schema.Number>;
|
|
2076
|
+
readonly declaredWidth: Schema.optional<Schema.Number>;
|
|
2077
|
+
readonly declaredHeight: Schema.optional<Schema.Number>;
|
|
2078
|
+
readonly absoluteX: Schema.optional<Schema.Number>;
|
|
2079
|
+
readonly absoluteY: Schema.optional<Schema.Number>;
|
|
2080
|
+
readonly inset: Schema.optional<Schema.Struct<{
|
|
2081
|
+
readonly right: Schema.optional<Schema.Number>;
|
|
2082
|
+
readonly bottom: Schema.optional<Schema.Number>;
|
|
2083
|
+
}>>;
|
|
2084
|
+
readonly flip: Schema.optional<Schema.Struct<{
|
|
2085
|
+
readonly horizontal: Schema.optional<Schema.Boolean>;
|
|
2086
|
+
readonly vertical: Schema.optional<Schema.Boolean>;
|
|
2087
|
+
}>>;
|
|
2088
|
+
readonly fromComponent: Schema.optional<Schema.Boolean>;
|
|
2089
|
+
readonly maskDisabled: Schema.optional<Schema.Boolean>;
|
|
2090
|
+
readonly cornerSmoothing: Schema.optional<Schema.Number>;
|
|
2091
|
+
readonly cornersIndependent: Schema.optional<Schema.Boolean>;
|
|
2092
|
+
readonly effectiveOpacity: Schema.optional<Schema.Number>;
|
|
2093
|
+
readonly fills: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2094
|
+
readonly kind: Schema.String;
|
|
2095
|
+
readonly visible: Schema.Boolean;
|
|
2096
|
+
readonly opacity: Schema.Number;
|
|
2097
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
2098
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
2099
|
+
readonly alpha: Schema.Number;
|
|
2100
|
+
readonly css: Schema.optional<Schema.String>;
|
|
2101
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
2102
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
2103
|
+
readonly position: Schema.Number;
|
|
2104
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
2105
|
+
readonly alpha: Schema.Number;
|
|
2106
|
+
}>>;
|
|
2107
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
2108
|
+
readonly x: Schema.Number;
|
|
2109
|
+
readonly y: Schema.Number;
|
|
2110
|
+
}>>;
|
|
2111
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
2112
|
+
readonly x: Schema.Number;
|
|
2113
|
+
readonly y: Schema.Number;
|
|
2114
|
+
}>>;
|
|
2115
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
2116
|
+
readonly x: Schema.Number;
|
|
2117
|
+
readonly y: Schema.Number;
|
|
2118
|
+
}>>;
|
|
2119
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
2120
|
+
readonly m00: Schema.Number;
|
|
2121
|
+
readonly m01: Schema.Number;
|
|
2122
|
+
readonly m02: Schema.Number;
|
|
2123
|
+
readonly m10: Schema.Number;
|
|
2124
|
+
readonly m11: Schema.Number;
|
|
2125
|
+
readonly m12: Schema.Number;
|
|
2126
|
+
}>>;
|
|
2127
|
+
}>>;
|
|
2128
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
2129
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
2130
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2131
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
2132
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
2133
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
2134
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
2135
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
2136
|
+
}>>;
|
|
2137
|
+
}>>>;
|
|
2138
|
+
readonly strokes: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2139
|
+
readonly kind: Schema.String;
|
|
2140
|
+
readonly visible: Schema.Boolean;
|
|
2141
|
+
readonly opacity: Schema.Number;
|
|
2142
|
+
readonly blendMode: Schema.optional<Schema.String>;
|
|
2143
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
2144
|
+
readonly alpha: Schema.Number;
|
|
2145
|
+
readonly css: Schema.optional<Schema.String>;
|
|
2146
|
+
readonly gradient: Schema.optional<Schema.Struct<{
|
|
2147
|
+
readonly stops: Schema.$Array<Schema.Struct<{
|
|
2148
|
+
readonly position: Schema.Number;
|
|
2149
|
+
readonly hex: Schema.NullOr<Schema.String>;
|
|
2150
|
+
readonly alpha: Schema.Number;
|
|
2151
|
+
}>>;
|
|
2152
|
+
readonly startPt: Schema.optional<Schema.Struct<{
|
|
2153
|
+
readonly x: Schema.Number;
|
|
2154
|
+
readonly y: Schema.Number;
|
|
2155
|
+
}>>;
|
|
2156
|
+
readonly endPt: Schema.optional<Schema.Struct<{
|
|
2157
|
+
readonly x: Schema.Number;
|
|
2158
|
+
readonly y: Schema.Number;
|
|
2159
|
+
}>>;
|
|
2160
|
+
readonly leftPt: Schema.optional<Schema.Struct<{
|
|
2161
|
+
readonly x: Schema.Number;
|
|
2162
|
+
readonly y: Schema.Number;
|
|
2163
|
+
}>>;
|
|
2164
|
+
readonly transform: Schema.optional<Schema.Struct<{
|
|
2165
|
+
readonly m00: Schema.Number;
|
|
2166
|
+
readonly m01: Schema.Number;
|
|
2167
|
+
readonly m02: Schema.Number;
|
|
2168
|
+
readonly m10: Schema.Number;
|
|
2169
|
+
readonly m11: Schema.Number;
|
|
2170
|
+
readonly m12: Schema.Number;
|
|
2171
|
+
}>>;
|
|
2172
|
+
}>>;
|
|
2173
|
+
readonly image: Schema.optional<Schema.Struct<{
|
|
2174
|
+
readonly hash: Schema.optional<Schema.String>;
|
|
2175
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2176
|
+
readonly scaleMode: Schema.optional<Schema.String>;
|
|
2177
|
+
readonly scale: Schema.optional<Schema.Number>;
|
|
2178
|
+
readonly rotation: Schema.optional<Schema.Number>;
|
|
2179
|
+
readonly originalWidth: Schema.optional<Schema.Number>;
|
|
2180
|
+
readonly originalHeight: Schema.optional<Schema.Number>;
|
|
2181
|
+
}>>;
|
|
2182
|
+
}>>>;
|
|
2183
|
+
readonly strokeWeight: Schema.optional<Schema.Number>;
|
|
2184
|
+
readonly strokeAlign: Schema.optional<Schema.String>;
|
|
2185
|
+
readonly strokeJoin: Schema.optional<Schema.String>;
|
|
2186
|
+
readonly strokeCap: Schema.optional<Schema.String>;
|
|
2187
|
+
readonly dashCap: Schema.optional<Schema.String>;
|
|
2188
|
+
readonly miterLimit: Schema.optional<Schema.Number>;
|
|
2189
|
+
readonly strokeVisible: Schema.optional<Schema.Boolean>;
|
|
2190
|
+
readonly strokeDash: Schema.optional<Schema.$Array<Schema.Number>>;
|
|
2191
|
+
readonly childLayout: Schema.optional<Schema.Struct<{
|
|
2192
|
+
readonly inFlow: Schema.optional<Schema.Boolean>;
|
|
2193
|
+
readonly absoluteInFlow: Schema.optional<Schema.Boolean>;
|
|
2194
|
+
readonly widthResize: Schema.optional<Schema.Number>;
|
|
2195
|
+
readonly heightResize: Schema.optional<Schema.Number>;
|
|
2196
|
+
readonly primarySizing: Schema.optional<Schema.String>;
|
|
2197
|
+
readonly counterSizing: Schema.optional<Schema.String>;
|
|
2198
|
+
}>>;
|
|
2199
|
+
readonly textRaw: Schema.optional<Schema.String>;
|
|
2200
|
+
readonly textRuns: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2201
|
+
readonly id: Schema.String;
|
|
2202
|
+
readonly textRaw: Schema.String;
|
|
2203
|
+
readonly text: Schema.String;
|
|
2204
|
+
readonly font: Schema.optional<Schema.Struct<{
|
|
2205
|
+
readonly family: Schema.optional<Schema.String>;
|
|
2206
|
+
readonly style: Schema.optional<Schema.String>;
|
|
2207
|
+
readonly size: Schema.optional<Schema.Number>;
|
|
2208
|
+
readonly weight: Schema.optional<Schema.Number>;
|
|
2209
|
+
}>>;
|
|
2210
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
2211
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
2212
|
+
readonly textMeta: Schema.optional<Schema.Struct<{
|
|
2213
|
+
readonly upperCase: Schema.Boolean;
|
|
2214
|
+
readonly letterSpacing: Schema.optional<Schema.Struct<{
|
|
2215
|
+
readonly value: Schema.Number;
|
|
2216
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
2217
|
+
}>>;
|
|
2218
|
+
readonly autoResize: Schema.optional<Schema.Literals<readonly ["none", "height", "width-and-height"]>>;
|
|
2219
|
+
readonly textCase: Schema.optional<Schema.String>;
|
|
2220
|
+
readonly lineHeight: Schema.optional<Schema.Struct<{
|
|
2221
|
+
readonly value: Schema.Number;
|
|
2222
|
+
readonly unit: Schema.Literals<readonly ["px", "%"]>;
|
|
2223
|
+
}>>;
|
|
2224
|
+
readonly lineHeightUnit: Schema.optional<Schema.String>;
|
|
2225
|
+
readonly letterSpacingUnit: Schema.optional<Schema.String>;
|
|
2226
|
+
readonly alignVertical: Schema.optional<Schema.String>;
|
|
2227
|
+
readonly alignHorizontal: Schema.optional<Schema.String>;
|
|
2228
|
+
readonly autoResizeRaw: Schema.optional<Schema.String>;
|
|
2229
|
+
readonly otFeaturesOn: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2230
|
+
readonly otFeaturesOff: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2231
|
+
readonly hasNewline: Schema.optional<Schema.Boolean>;
|
|
2232
|
+
readonly textAlign: Schema.optional<Schema.Literals<readonly ["center", "right", "justify"]>>;
|
|
2233
|
+
readonly decoration: Schema.optional<Schema.String>;
|
|
2234
|
+
}>>;
|
|
2235
|
+
}>>>;
|
|
2236
|
+
readonly component: Schema.optional<Schema.Struct<{
|
|
2237
|
+
readonly key: Schema.optional<Schema.String>;
|
|
2238
|
+
readonly mainComponentId: Schema.optional<Schema.String>;
|
|
2239
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
2240
|
+
readonly normName: Schema.optional<Schema.String>;
|
|
2241
|
+
readonly libraryFileKey: Schema.optional<Schema.String>;
|
|
2242
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
2243
|
+
readonly version: Schema.optional<Schema.String>;
|
|
2244
|
+
readonly overrideKey: Schema.optional<Schema.String>;
|
|
2245
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
2246
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2247
|
+
readonly displayName: Schema.optional<Schema.String>;
|
|
2248
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
2249
|
+
readonly variantGroup: Schema.optional<Schema.String>;
|
|
2250
|
+
readonly page: Schema.optional<Schema.String>;
|
|
2251
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
2252
|
+
readonly resolved: Schema.optional<Schema.Boolean>;
|
|
2253
|
+
}>>;
|
|
2254
|
+
readonly rawNormName: Schema.optional<Schema.String>;
|
|
2255
|
+
readonly componentProps: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2256
|
+
readonly propKey: Schema.String;
|
|
2257
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2258
|
+
readonly kind: Schema.String;
|
|
2259
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
2260
|
+
}>>>;
|
|
2261
|
+
readonly componentPropValues: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2262
|
+
readonly propKey: Schema.String;
|
|
2263
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2264
|
+
readonly kind: Schema.String;
|
|
2265
|
+
readonly value: Schema.optional<Schema.String>;
|
|
2266
|
+
readonly targetIds: Schema.optional<Schema.$Array<Schema.String>>;
|
|
2267
|
+
}>>>;
|
|
2268
|
+
readonly propBindings: Schema.optional<Schema.Struct<{
|
|
2269
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
2270
|
+
readonly propKey: Schema.String;
|
|
2271
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2272
|
+
readonly kind: Schema.String;
|
|
2273
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
2274
|
+
}>>;
|
|
2275
|
+
readonly visible: Schema.optional<Schema.Struct<{
|
|
2276
|
+
readonly propKey: Schema.String;
|
|
2277
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2278
|
+
readonly kind: Schema.String;
|
|
2279
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
2280
|
+
}>>;
|
|
2281
|
+
readonly instance: Schema.optional<Schema.Struct<{
|
|
2282
|
+
readonly propKey: Schema.String;
|
|
2283
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2284
|
+
readonly kind: Schema.String;
|
|
2285
|
+
readonly defaultValue: Schema.optional<Schema.String>;
|
|
2286
|
+
}>>;
|
|
2287
|
+
}>>;
|
|
2288
|
+
readonly resolution: Schema.optional<Schema.Struct<{
|
|
2289
|
+
readonly offset: Schema.optional<Schema.Literals<readonly ["flow", "center", "reflow"]>>;
|
|
2290
|
+
readonly textWidth: Schema.optional<Schema.Literals<readonly ["rescaled", "stated", "measured", "hugged"]>>;
|
|
2291
|
+
readonly visibility: Schema.optional<Schema.Literals<readonly ["assigned", "default", "unresolved"]>>;
|
|
2292
|
+
}>>;
|
|
2293
|
+
readonly tokens: Schema.optional<Schema.Struct<{
|
|
2294
|
+
readonly fill: Schema.optional<Schema.Struct<{
|
|
2295
|
+
readonly id: Schema.String;
|
|
2296
|
+
readonly resolved: Schema.Boolean;
|
|
2297
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2298
|
+
}>>;
|
|
2299
|
+
readonly text: Schema.optional<Schema.Struct<{
|
|
2300
|
+
readonly id: Schema.String;
|
|
2301
|
+
readonly resolved: Schema.Boolean;
|
|
2302
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2303
|
+
}>>;
|
|
2304
|
+
readonly effect: Schema.optional<Schema.Struct<{
|
|
2305
|
+
readonly id: Schema.String;
|
|
2306
|
+
readonly resolved: Schema.Boolean;
|
|
2307
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2308
|
+
}>>;
|
|
2309
|
+
readonly stroke: Schema.optional<Schema.Struct<{
|
|
2310
|
+
readonly id: Schema.String;
|
|
2311
|
+
readonly resolved: Schema.Boolean;
|
|
2312
|
+
readonly name: Schema.optional<Schema.String>;
|
|
2313
|
+
}>>;
|
|
2314
|
+
readonly variableModes: Schema.optional<Schema.Struct<{
|
|
2315
|
+
readonly entries: Schema.optional<Schema.Unknown>;
|
|
2316
|
+
}>>;
|
|
2317
|
+
}>>;
|
|
2318
|
+
readonly overlay: Schema.optional<Schema.Struct<{
|
|
2319
|
+
readonly positionType: Schema.optional<Schema.String>;
|
|
2320
|
+
readonly interaction: Schema.optional<Schema.String>;
|
|
2321
|
+
readonly background: Schema.optional<Schema.Struct<{
|
|
2322
|
+
readonly type: Schema.optional<Schema.String>;
|
|
2323
|
+
readonly hex: Schema.optional<Schema.String>;
|
|
2324
|
+
readonly alpha: Schema.optional<Schema.Number>;
|
|
2325
|
+
}>>;
|
|
2326
|
+
}>>;
|
|
2327
|
+
readonly links: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2328
|
+
readonly url: Schema.String;
|
|
2329
|
+
}>>>;
|
|
2330
|
+
readonly scrollBehavior: Schema.optional<Schema.String>;
|
|
2331
|
+
readonly placeholder: Schema.optional<Schema.Struct<{
|
|
2332
|
+
readonly reason: Schema.Literal<"vector-geometry-absent">;
|
|
2333
|
+
readonly width: Schema.Number;
|
|
2334
|
+
readonly height: Schema.Number;
|
|
2335
|
+
}>>;
|
|
2336
|
+
readonly children: Schema.optional<Schema.$Array<Schema.suspend<Schema.Codec<PixsoNode, PixsoNode, never, never>>>>;
|
|
2337
|
+
}>;
|
|
2338
|
+
readonly component: Schema.NullOr<Schema.Struct<{
|
|
2339
|
+
readonly componentKey: Schema.NullOr<Schema.String>;
|
|
2340
|
+
readonly libraryFile: Schema.NullOr<Schema.String>;
|
|
2341
|
+
readonly version: Schema.NullOr<Schema.String>;
|
|
2342
|
+
readonly variants: Schema.NullOr<Schema.$Record<Schema.String, Schema.String>>;
|
|
2343
|
+
readonly mainComponent: Schema.optional<Schema.String>;
|
|
2344
|
+
readonly stateGroup: Schema.optional<Schema.String>;
|
|
2345
|
+
readonly instanceByFrame: Schema.optional<Schema.Boolean>;
|
|
2346
|
+
readonly publishId: Schema.optional<Schema.String>;
|
|
2347
|
+
}>>;
|
|
2348
|
+
readonly componentsUsed: Schema.$Array<Schema.Struct<{
|
|
2349
|
+
readonly key: Schema.String;
|
|
2350
|
+
readonly name: Schema.String;
|
|
2351
|
+
readonly variantGroup: Schema.NullOr<Schema.String>;
|
|
2352
|
+
readonly library: Schema.NullOr<Schema.String>;
|
|
2353
|
+
readonly libraryFileKey: Schema.NullOr<Schema.String>;
|
|
2354
|
+
readonly pageName: Schema.NullOr<Schema.String>;
|
|
2355
|
+
readonly description: Schema.NullOr<Schema.String>;
|
|
2356
|
+
readonly updatedAt: Schema.NullOr<Schema.String>;
|
|
2357
|
+
readonly deprecated: Schema.Boolean;
|
|
2358
|
+
readonly resolved: Schema.Boolean;
|
|
2359
|
+
readonly count: Schema.Number;
|
|
2360
|
+
readonly nameSource: Schema.optional<Schema.Literals<readonly ["state-group", "catalogue-name", "dsl-state-group", "norm-name", "layer-name", "master-layer-name", "axis-reconstructed", "unknown"]>>;
|
|
2361
|
+
readonly variant: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
2362
|
+
readonly props: Schema.$Array<Schema.Struct<{
|
|
2363
|
+
readonly name: Schema.String;
|
|
2364
|
+
readonly kind: Schema.String;
|
|
2365
|
+
readonly value: Schema.String;
|
|
2366
|
+
readonly defaultValue: Schema.String;
|
|
2367
|
+
readonly overridden: Schema.Boolean;
|
|
2368
|
+
}>>;
|
|
2369
|
+
}>>;
|
|
2370
|
+
readonly catalogHash: Schema.NullOr<Schema.String>;
|
|
2371
|
+
readonly parserVersion: Schema.optional<Schema.Number>;
|
|
2372
|
+
readonly versionUnverified: Schema.optional<Schema.Boolean>;
|
|
2373
|
+
readonly rawAvailable: Schema.optional<Schema.Boolean>;
|
|
2374
|
+
readonly imageAvailable: Schema.optional<Schema.Boolean>;
|
|
2375
|
+
readonly source: Schema.optional<Schema.Literals<readonly ["local", "remote"]>>;
|
|
2376
|
+
readonly provenances: Schema.optional<Schema.$Array<Schema.Struct<{
|
|
2377
|
+
readonly source: Schema.Literals<readonly ["local", "remote"]>;
|
|
2378
|
+
readonly fileKey: Schema.NullOr<Schema.String>;
|
|
2379
|
+
readonly guid: Schema.String;
|
|
2380
|
+
readonly designUrl: Schema.NullOr<Schema.String>;
|
|
2381
|
+
readonly importedAtIso: Schema.String;
|
|
2382
|
+
}>>>;
|
|
2383
|
+
readonly resolvedNodes: Schema.optional<Schema.Struct<{
|
|
2384
|
+
readonly fetched: Schema.$Array<Schema.String>;
|
|
2385
|
+
readonly failed: Schema.$Array<Schema.Struct<{
|
|
2386
|
+
readonly guid: Schema.String;
|
|
2387
|
+
readonly message: Schema.String;
|
|
2388
|
+
}>>;
|
|
2389
|
+
}>>;
|
|
2390
|
+
}>;
|
|
2391
|
+
type CardDetail = typeof CardDetail.Type;
|
|
2392
|
+
declare const ComplexityBand: Schema.Literals<readonly ["simple", "medium", "complex"]>;
|
|
2393
|
+
type ComplexityBand = typeof ComplexityBand.Type;
|
|
2394
|
+
declare const CardIdentityData: Schema.Struct<{
|
|
2395
|
+
readonly componentName: Schema.NullOr<Schema.String>;
|
|
2396
|
+
readonly library: Schema.NullOr<Schema.String>;
|
|
2397
|
+
readonly deprecated: Schema.Boolean;
|
|
2398
|
+
}>;
|
|
2399
|
+
type CardIdentityData = typeof CardIdentityData.Type;
|
|
2400
|
+
declare const CardSummary: Schema.Struct<{
|
|
2401
|
+
readonly id: Schema.String;
|
|
2402
|
+
readonly nodeId: Schema.String;
|
|
2403
|
+
readonly name: Schema.String;
|
|
2404
|
+
readonly nodeType: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
2405
|
+
readonly width: Schema.Number;
|
|
2406
|
+
readonly height: Schema.Number;
|
|
2407
|
+
readonly layerCount: Schema.Number;
|
|
2408
|
+
readonly complexityBand: Schema.Literals<readonly ["simple", "medium", "complex"]>;
|
|
2409
|
+
readonly complexityFilled: Schema.Number;
|
|
2410
|
+
readonly colors: Schema.$Array<Schema.String>;
|
|
2411
|
+
readonly instanceTotal: Schema.Number;
|
|
2412
|
+
readonly deprecatedUsed: Schema.Number;
|
|
2413
|
+
readonly identity: Schema.Struct<{
|
|
2414
|
+
readonly componentName: Schema.NullOr<Schema.String>;
|
|
2415
|
+
readonly library: Schema.NullOr<Schema.String>;
|
|
2416
|
+
readonly deprecated: Schema.Boolean;
|
|
2417
|
+
}>;
|
|
2418
|
+
readonly importedAtIso: Schema.String;
|
|
2419
|
+
readonly previewSvg: Schema.String;
|
|
2420
|
+
readonly imageAvailable: Schema.optional<Schema.Boolean>;
|
|
2421
|
+
}>;
|
|
2422
|
+
type CardSummary = typeof CardSummary.Type;
|
|
2423
|
+
declare const PixsoCardGroup: Schema.Struct<{
|
|
2424
|
+
readonly id: Schema.String;
|
|
2425
|
+
readonly name: Schema.String;
|
|
2426
|
+
readonly pinned: Schema.Boolean;
|
|
2427
|
+
readonly collapsed: Schema.Boolean;
|
|
2428
|
+
}>;
|
|
2429
|
+
type PixsoCardGroup = typeof PixsoCardGroup.Type;
|
|
2430
|
+
declare const PanelSnapshot: Schema.Struct<{
|
|
2431
|
+
readonly cards: Schema.$Array<Schema.Struct<{
|
|
2432
|
+
readonly id: Schema.String;
|
|
2433
|
+
readonly nodeId: Schema.String;
|
|
2434
|
+
readonly name: Schema.String;
|
|
2435
|
+
readonly nodeType: Schema.Literals<readonly ["frame", "group", "rect", "ellipse", "text", "vector", "instance", "symbol", "paragraph", "span", "line", "mask"]>;
|
|
2436
|
+
readonly width: Schema.Number;
|
|
2437
|
+
readonly height: Schema.Number;
|
|
2438
|
+
readonly layerCount: Schema.Number;
|
|
2439
|
+
readonly complexityBand: Schema.Literals<readonly ["simple", "medium", "complex"]>;
|
|
2440
|
+
readonly complexityFilled: Schema.Number;
|
|
2441
|
+
readonly colors: Schema.$Array<Schema.String>;
|
|
2442
|
+
readonly instanceTotal: Schema.Number;
|
|
2443
|
+
readonly deprecatedUsed: Schema.Number;
|
|
2444
|
+
readonly identity: Schema.Struct<{
|
|
2445
|
+
readonly componentName: Schema.NullOr<Schema.String>;
|
|
2446
|
+
readonly library: Schema.NullOr<Schema.String>;
|
|
2447
|
+
readonly deprecated: Schema.Boolean;
|
|
2448
|
+
}>;
|
|
2449
|
+
readonly importedAtIso: Schema.String;
|
|
2450
|
+
readonly previewSvg: Schema.String;
|
|
2451
|
+
readonly imageAvailable: Schema.optional<Schema.Boolean>;
|
|
2452
|
+
}>>;
|
|
2453
|
+
readonly groups: Schema.$Array<Schema.Struct<{
|
|
2454
|
+
readonly id: Schema.String;
|
|
2455
|
+
readonly name: Schema.String;
|
|
2456
|
+
readonly pinned: Schema.Boolean;
|
|
2457
|
+
readonly collapsed: Schema.Boolean;
|
|
2458
|
+
}>>;
|
|
2459
|
+
readonly groupByCardId: Schema.$Record<Schema.String, Schema.String>;
|
|
2460
|
+
readonly unsortedPinned: Schema.Boolean;
|
|
2461
|
+
readonly unsortedCollapsed: Schema.Boolean;
|
|
2462
|
+
readonly recents: Schema.$Array<Schema.String>;
|
|
2463
|
+
readonly lastCheck: Schema.NullOr<Schema.Struct<{
|
|
2464
|
+
readonly atIso: Schema.String;
|
|
2465
|
+
readonly tools: Schema.$Array<Schema.Struct<{
|
|
2466
|
+
readonly name: Schema.String;
|
|
2467
|
+
readonly description: Schema.String;
|
|
2468
|
+
readonly write: Schema.Boolean;
|
|
2469
|
+
readonly params: Schema.$Array<Schema.Struct<{
|
|
2470
|
+
readonly name: Schema.String;
|
|
2471
|
+
readonly type: Schema.String;
|
|
2472
|
+
readonly required: Schema.Boolean;
|
|
2473
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2474
|
+
}>>;
|
|
2475
|
+
}>>;
|
|
2476
|
+
}>>;
|
|
2477
|
+
readonly lastProbe: Schema.NullOr<Schema.Struct<{
|
|
2478
|
+
readonly atIso: Schema.String;
|
|
2479
|
+
readonly rows: Schema.$Array<Schema.Struct<{
|
|
2480
|
+
readonly tool: Schema.String;
|
|
2481
|
+
readonly args: Schema.String;
|
|
2482
|
+
readonly status: Schema.Literals<readonly ["ok", "dead", "empty", "skip", "needs-args"]>;
|
|
2483
|
+
readonly detail: Schema.String;
|
|
2484
|
+
}>>;
|
|
2485
|
+
readonly deviations: Schema.$Array<Schema.String>;
|
|
2486
|
+
readonly savedTo: Schema.String;
|
|
2487
|
+
}>>;
|
|
2488
|
+
readonly lastScanAtIso: Schema.NullOr<Schema.String>;
|
|
2489
|
+
readonly supportsReparse: Schema.optional<Schema.Boolean>;
|
|
2490
|
+
readonly supportsRemote: Schema.optional<Schema.Boolean>;
|
|
2491
|
+
readonly remoteTokenSet: Schema.optional<Schema.Boolean>;
|
|
2492
|
+
readonly remoteByDefault: Schema.optional<Schema.Boolean>;
|
|
2493
|
+
}>;
|
|
2494
|
+
type PanelSnapshot = typeof PanelSnapshot.Type;
|
|
2495
|
+
declare const emptyPanelSnapshot: PanelSnapshot;
|
|
2496
|
+
declare const GroupsMutateOp: Schema.Union<readonly [Schema.Struct<{
|
|
2497
|
+
readonly op: Schema.Literal<"create">;
|
|
2498
|
+
readonly groupId: Schema.String;
|
|
2499
|
+
readonly name: Schema.String;
|
|
2500
|
+
}>, Schema.Struct<{
|
|
2501
|
+
readonly op: Schema.Literal<"rename">;
|
|
2502
|
+
readonly groupId: Schema.String;
|
|
2503
|
+
readonly name: Schema.String;
|
|
2504
|
+
}>, Schema.Struct<{
|
|
2505
|
+
readonly op: Schema.Literal<"delete">;
|
|
2506
|
+
readonly groupId: Schema.String;
|
|
2507
|
+
readonly deleteCards: Schema.Boolean;
|
|
2508
|
+
}>, Schema.Struct<{
|
|
2509
|
+
readonly op: Schema.Literal<"reorder">;
|
|
2510
|
+
readonly activeId: Schema.String;
|
|
2511
|
+
readonly overId: Schema.String;
|
|
2512
|
+
}>, Schema.Struct<{
|
|
2513
|
+
readonly op: Schema.Literal<"move">;
|
|
2514
|
+
readonly groupId: Schema.String;
|
|
2515
|
+
readonly direction: Schema.Literals<readonly ["up", "down", "top"]>;
|
|
2516
|
+
}>, Schema.Struct<{
|
|
2517
|
+
readonly op: Schema.Literal<"togglePinned">;
|
|
2518
|
+
readonly groupId: Schema.String;
|
|
2519
|
+
}>, Schema.Struct<{
|
|
2520
|
+
readonly op: Schema.Literal<"toggleCollapsed">;
|
|
2521
|
+
readonly groupId: Schema.String;
|
|
2522
|
+
}>, Schema.Struct<{
|
|
2523
|
+
readonly op: Schema.Literal<"toggleUnsortedPinned">;
|
|
2524
|
+
}>, Schema.Struct<{
|
|
2525
|
+
readonly op: Schema.Literal<"toggleUnsortedCollapsed">;
|
|
2526
|
+
}>, Schema.Struct<{
|
|
2527
|
+
readonly op: Schema.Literal<"moveCardToGroup">;
|
|
2528
|
+
readonly cardId: Schema.String;
|
|
2529
|
+
readonly groupId: Schema.NullOr<Schema.String>;
|
|
2530
|
+
}>]>;
|
|
2531
|
+
type GroupsMutateOp = typeof GroupsMutateOp.Type;
|
|
2532
|
+
declare const RemoteTarget: Schema.Struct<{
|
|
2533
|
+
readonly fileKey: Schema.String;
|
|
2534
|
+
readonly itemId: Schema.String;
|
|
2535
|
+
}>;
|
|
2536
|
+
type RemoteTarget = typeof RemoteTarget.Type;
|
|
2537
|
+
declare const RemoteCheckResult: Schema.Struct<{
|
|
2538
|
+
readonly toolCount: Schema.Number;
|
|
2539
|
+
readonly latencyMs: Schema.Number;
|
|
2540
|
+
}>;
|
|
2541
|
+
type RemoteCheckResult = typeof RemoteCheckResult.Type;
|
|
2542
|
+
declare const ScanOutcome: Schema.Literals<readonly ["success", "success-warnings", "reimport", "mcp-down", "tool-timeout", "dsl-error", "empty-selection", "multi-selection", "parse-error", "components-error", "internal-error", "access-denied", "cancelled"]>;
|
|
2543
|
+
type ScanOutcome = typeof ScanOutcome.Type;
|
|
2544
|
+
declare const ScanOrigin: Schema.Literals<readonly ["local", "remote"]>;
|
|
2545
|
+
type ScanOrigin = typeof ScanOrigin.Type;
|
|
2546
|
+
declare const ParserDiagnostic: Schema.Struct<{
|
|
2547
|
+
readonly severity: Schema.Literals<readonly ["info", "warning"]>;
|
|
2548
|
+
readonly code: Schema.String;
|
|
2549
|
+
readonly message: Schema.String;
|
|
2550
|
+
readonly path: Schema.optional<Schema.String>;
|
|
2551
|
+
}>;
|
|
2552
|
+
type ParserDiagnostic = typeof ParserDiagnostic.Type;
|
|
2553
|
+
declare const ScanToolTiming: Schema.Struct<{
|
|
2554
|
+
readonly tool: Schema.String;
|
|
2555
|
+
readonly ms: Schema.Number;
|
|
2556
|
+
readonly ok: Schema.Boolean;
|
|
2557
|
+
readonly detail: Schema.NullOr<Schema.String>;
|
|
2558
|
+
}>;
|
|
2559
|
+
type ScanToolTiming = typeof ScanToolTiming.Type;
|
|
2560
|
+
declare const UnknownKeySample: Schema.Struct<{
|
|
2561
|
+
readonly key: Schema.String;
|
|
2562
|
+
readonly sample: Schema.String;
|
|
2563
|
+
readonly count: Schema.Number;
|
|
2564
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2565
|
+
}>;
|
|
2566
|
+
type UnknownKeySample = typeof UnknownKeySample.Type;
|
|
2567
|
+
declare const UnknownEnumSample: Schema.Struct<{
|
|
2568
|
+
readonly field: Schema.String;
|
|
2569
|
+
readonly value: Schema.String;
|
|
2570
|
+
readonly count: Schema.Number;
|
|
2571
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2572
|
+
}>;
|
|
2573
|
+
type UnknownEnumSample = typeof UnknownEnumSample.Type;
|
|
2574
|
+
declare const UnresolvedLibrary: Schema.Struct<{
|
|
2575
|
+
readonly fileKey: Schema.String;
|
|
2576
|
+
readonly count: Schema.Number;
|
|
2577
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2578
|
+
}>;
|
|
2579
|
+
type UnresolvedLibrary = typeof UnresolvedLibrary.Type;
|
|
2580
|
+
declare const ScanReportData: Schema.Struct<{
|
|
2581
|
+
readonly outcome: Schema.Literals<readonly ["success", "success-warnings", "reimport", "mcp-down", "tool-timeout", "dsl-error", "empty-selection", "multi-selection", "parse-error", "components-error", "internal-error", "access-denied", "cancelled"]>;
|
|
2582
|
+
readonly failedStep: Schema.NullOr<Schema.Number>;
|
|
2583
|
+
readonly nodeId: Schema.NullOr<Schema.String>;
|
|
2584
|
+
readonly cardName: Schema.NullOr<Schema.String>;
|
|
2585
|
+
readonly dslVersion: Schema.NullOr<Schema.String>;
|
|
2586
|
+
readonly converterVersion: Schema.NullOr<Schema.String>;
|
|
2587
|
+
readonly nodesParsed: Schema.Number;
|
|
2588
|
+
readonly nodesWithIssues: Schema.Number;
|
|
2589
|
+
readonly rootGuids: Schema.$Array<Schema.String>;
|
|
2590
|
+
readonly toolTimings: Schema.$Array<Schema.Struct<{
|
|
2591
|
+
readonly tool: Schema.String;
|
|
2592
|
+
readonly ms: Schema.Number;
|
|
2593
|
+
readonly ok: Schema.Boolean;
|
|
2594
|
+
readonly detail: Schema.NullOr<Schema.String>;
|
|
2595
|
+
}>>;
|
|
2596
|
+
readonly unknownKeys: Schema.$Array<Schema.Struct<{
|
|
2597
|
+
readonly key: Schema.String;
|
|
2598
|
+
readonly sample: Schema.String;
|
|
2599
|
+
readonly count: Schema.Number;
|
|
2600
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2601
|
+
}>>;
|
|
2602
|
+
readonly unknownEnums: Schema.$Array<Schema.Struct<{
|
|
2603
|
+
readonly field: Schema.String;
|
|
2604
|
+
readonly value: Schema.String;
|
|
2605
|
+
readonly count: Schema.Number;
|
|
2606
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2607
|
+
}>>;
|
|
2608
|
+
readonly unresolvedLibraries: Schema.$Array<Schema.Struct<{
|
|
2609
|
+
readonly fileKey: Schema.String;
|
|
2610
|
+
readonly count: Schema.Number;
|
|
2611
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2612
|
+
}>>;
|
|
2613
|
+
readonly diagnostics: Schema.$Array<Schema.Struct<{
|
|
2614
|
+
readonly severity: Schema.Literals<readonly ["info", "warning"]>;
|
|
2615
|
+
readonly code: Schema.String;
|
|
2616
|
+
readonly message: Schema.String;
|
|
2617
|
+
readonly path: Schema.optional<Schema.String>;
|
|
2618
|
+
}>>;
|
|
2619
|
+
readonly catalogStatus: Schema.Literals<readonly ["ok", "failed", "skipped"]>;
|
|
2620
|
+
readonly duplicate: Schema.Boolean;
|
|
2621
|
+
readonly excerpts: Schema.$Array<Schema.String>;
|
|
2622
|
+
readonly byteDiff: Schema.NullOr<Schema.Struct<{
|
|
2623
|
+
readonly identical: Schema.Boolean;
|
|
2624
|
+
readonly note: Schema.String;
|
|
2625
|
+
}>>;
|
|
2626
|
+
readonly enriched: Schema.optional<Schema.$Array<Schema.Literals<readonly ["image", "components"]>>>;
|
|
2627
|
+
}>;
|
|
2628
|
+
type ScanReportData = typeof ScanReportData.Type;
|
|
2629
|
+
declare const LatestScanReport: Schema.Struct<{
|
|
2630
|
+
readonly atIso: Schema.String;
|
|
2631
|
+
readonly data: Schema.Struct<{
|
|
2632
|
+
readonly outcome: Schema.Literals<readonly ["success", "success-warnings", "reimport", "mcp-down", "tool-timeout", "dsl-error", "empty-selection", "multi-selection", "parse-error", "components-error", "internal-error", "access-denied", "cancelled"]>;
|
|
2633
|
+
readonly failedStep: Schema.NullOr<Schema.Number>;
|
|
2634
|
+
readonly nodeId: Schema.NullOr<Schema.String>;
|
|
2635
|
+
readonly cardName: Schema.NullOr<Schema.String>;
|
|
2636
|
+
readonly dslVersion: Schema.NullOr<Schema.String>;
|
|
2637
|
+
readonly converterVersion: Schema.NullOr<Schema.String>;
|
|
2638
|
+
readonly nodesParsed: Schema.Number;
|
|
2639
|
+
readonly nodesWithIssues: Schema.Number;
|
|
2640
|
+
readonly rootGuids: Schema.$Array<Schema.String>;
|
|
2641
|
+
readonly toolTimings: Schema.$Array<Schema.Struct<{
|
|
2642
|
+
readonly tool: Schema.String;
|
|
2643
|
+
readonly ms: Schema.Number;
|
|
2644
|
+
readonly ok: Schema.Boolean;
|
|
2645
|
+
readonly detail: Schema.NullOr<Schema.String>;
|
|
2646
|
+
}>>;
|
|
2647
|
+
readonly unknownKeys: Schema.$Array<Schema.Struct<{
|
|
2648
|
+
readonly key: Schema.String;
|
|
2649
|
+
readonly sample: Schema.String;
|
|
2650
|
+
readonly count: Schema.Number;
|
|
2651
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2652
|
+
}>>;
|
|
2653
|
+
readonly unknownEnums: Schema.$Array<Schema.Struct<{
|
|
2654
|
+
readonly field: Schema.String;
|
|
2655
|
+
readonly value: Schema.String;
|
|
2656
|
+
readonly count: Schema.Number;
|
|
2657
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2658
|
+
}>>;
|
|
2659
|
+
readonly unresolvedLibraries: Schema.$Array<Schema.Struct<{
|
|
2660
|
+
readonly fileKey: Schema.String;
|
|
2661
|
+
readonly count: Schema.Number;
|
|
2662
|
+
readonly exampleGuid: Schema.NullOr<Schema.String>;
|
|
2663
|
+
}>>;
|
|
2664
|
+
readonly diagnostics: Schema.$Array<Schema.Struct<{
|
|
2665
|
+
readonly severity: Schema.Literals<readonly ["info", "warning"]>;
|
|
2666
|
+
readonly code: Schema.String;
|
|
2667
|
+
readonly message: Schema.String;
|
|
2668
|
+
readonly path: Schema.optional<Schema.String>;
|
|
2669
|
+
}>>;
|
|
2670
|
+
readonly catalogStatus: Schema.Literals<readonly ["ok", "failed", "skipped"]>;
|
|
2671
|
+
readonly duplicate: Schema.Boolean;
|
|
2672
|
+
readonly excerpts: Schema.$Array<Schema.String>;
|
|
2673
|
+
readonly byteDiff: Schema.NullOr<Schema.Struct<{
|
|
2674
|
+
readonly identical: Schema.Boolean;
|
|
2675
|
+
readonly note: Schema.String;
|
|
2676
|
+
}>>;
|
|
2677
|
+
readonly enriched: Schema.optional<Schema.$Array<Schema.Literals<readonly ["image", "components"]>>>;
|
|
2678
|
+
}>;
|
|
2679
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["local", "remote"]>>;
|
|
2680
|
+
}>;
|
|
2681
|
+
type LatestScanReport = typeof LatestScanReport.Type;
|
|
2682
|
+
declare const PixsoToolParam: Schema.Struct<{
|
|
2683
|
+
readonly name: Schema.String;
|
|
2684
|
+
readonly type: Schema.String;
|
|
2685
|
+
readonly required: Schema.Boolean;
|
|
2686
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2687
|
+
}>;
|
|
2688
|
+
type PixsoToolParam = typeof PixsoToolParam.Type;
|
|
2689
|
+
declare const PixsoTool: Schema.Struct<{
|
|
2690
|
+
readonly name: Schema.String;
|
|
2691
|
+
readonly description: Schema.String;
|
|
2692
|
+
readonly write: Schema.Boolean;
|
|
2693
|
+
readonly params: Schema.$Array<Schema.Struct<{
|
|
2694
|
+
readonly name: Schema.String;
|
|
2695
|
+
readonly type: Schema.String;
|
|
2696
|
+
readonly required: Schema.Boolean;
|
|
2697
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2698
|
+
}>>;
|
|
2699
|
+
}>;
|
|
2700
|
+
type PixsoTool = typeof PixsoTool.Type;
|
|
2701
|
+
declare const CheckResult: Schema.Struct<{
|
|
2702
|
+
readonly atIso: Schema.String;
|
|
2703
|
+
readonly tools: Schema.$Array<Schema.Struct<{
|
|
2704
|
+
readonly name: Schema.String;
|
|
2705
|
+
readonly description: Schema.String;
|
|
2706
|
+
readonly write: Schema.Boolean;
|
|
2707
|
+
readonly params: Schema.$Array<Schema.Struct<{
|
|
2708
|
+
readonly name: Schema.String;
|
|
2709
|
+
readonly type: Schema.String;
|
|
2710
|
+
readonly required: Schema.Boolean;
|
|
2711
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2712
|
+
}>>;
|
|
2713
|
+
}>>;
|
|
2714
|
+
}>;
|
|
2715
|
+
type CheckResult = typeof CheckResult.Type;
|
|
2716
|
+
declare const RemoteToolsListResult: Schema.Struct<{
|
|
2717
|
+
readonly tools: Schema.$Array<Schema.Struct<{
|
|
2718
|
+
readonly name: Schema.String;
|
|
2719
|
+
readonly description: Schema.String;
|
|
2720
|
+
readonly write: Schema.Boolean;
|
|
2721
|
+
readonly params: Schema.$Array<Schema.Struct<{
|
|
2722
|
+
readonly name: Schema.String;
|
|
2723
|
+
readonly type: Schema.String;
|
|
2724
|
+
readonly required: Schema.Boolean;
|
|
2725
|
+
readonly description: Schema.optional<Schema.String>;
|
|
2726
|
+
}>>;
|
|
2727
|
+
}>>;
|
|
2728
|
+
}>;
|
|
2729
|
+
type RemoteToolsListResult = typeof RemoteToolsListResult.Type;
|
|
2730
|
+
declare const ProbeRowStatus: Schema.Literals<readonly ["ok", "dead", "empty", "skip", "needs-args"]>;
|
|
2731
|
+
type ProbeRowStatus = typeof ProbeRowStatus.Type;
|
|
2732
|
+
declare const ProbeRow: Schema.Struct<{
|
|
2733
|
+
readonly tool: Schema.String;
|
|
2734
|
+
readonly args: Schema.String;
|
|
2735
|
+
readonly status: Schema.Literals<readonly ["ok", "dead", "empty", "skip", "needs-args"]>;
|
|
2736
|
+
readonly detail: Schema.String;
|
|
2737
|
+
}>;
|
|
2738
|
+
type ProbeRow = typeof ProbeRow.Type;
|
|
2739
|
+
declare const ProbeResult: Schema.Struct<{
|
|
2740
|
+
readonly atIso: Schema.String;
|
|
2741
|
+
readonly rows: Schema.$Array<Schema.Struct<{
|
|
2742
|
+
readonly tool: Schema.String;
|
|
2743
|
+
readonly args: Schema.String;
|
|
2744
|
+
readonly status: Schema.Literals<readonly ["ok", "dead", "empty", "skip", "needs-args"]>;
|
|
2745
|
+
readonly detail: Schema.String;
|
|
2746
|
+
}>>;
|
|
2747
|
+
readonly deviations: Schema.$Array<Schema.String>;
|
|
2748
|
+
readonly savedTo: Schema.String;
|
|
2749
|
+
}>;
|
|
2750
|
+
type ProbeResult = typeof ProbeResult.Type;
|
|
2751
|
+
declare const ReparseResult: Schema.Struct<{
|
|
2752
|
+
readonly total: Schema.Number;
|
|
2753
|
+
readonly reparsed: Schema.Number;
|
|
2754
|
+
readonly skippedNoRaw: Schema.Number;
|
|
2755
|
+
readonly skippedNoCatalog: Schema.optional<Schema.Number>;
|
|
2756
|
+
readonly failed: Schema.Number;
|
|
2757
|
+
}>;
|
|
2758
|
+
type ReparseResult = typeof ReparseResult.Type;
|
|
2759
|
+
declare const ScanJobState: Schema.Union<readonly [Schema.Struct<{
|
|
2760
|
+
readonly phase: Schema.Literal<"idle">;
|
|
2761
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["local", "remote"]>>;
|
|
2762
|
+
}>, Schema.Struct<{
|
|
2763
|
+
readonly phase: Schema.Literal<"running">;
|
|
2764
|
+
readonly step: Schema.Number;
|
|
2765
|
+
readonly startedAtIso: Schema.String;
|
|
2766
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["local", "remote"]>>;
|
|
2767
|
+
readonly nodes: Schema.optional<Schema.Struct<{
|
|
2768
|
+
readonly done: Schema.Number;
|
|
2769
|
+
readonly total: Schema.Number;
|
|
2770
|
+
}>>;
|
|
2771
|
+
}>, Schema.Struct<{
|
|
2772
|
+
readonly phase: Schema.Literal<"settled">;
|
|
2773
|
+
readonly outcome: Schema.Literals<readonly ["success", "success-warnings", "reimport", "mcp-down", "tool-timeout", "dsl-error", "empty-selection", "multi-selection", "parse-error", "components-error", "internal-error", "access-denied", "cancelled"]>;
|
|
2774
|
+
readonly failedStep: Schema.NullOr<Schema.Number>;
|
|
2775
|
+
readonly cardId: Schema.NullOr<Schema.String>;
|
|
2776
|
+
readonly detail: Schema.NullOr<Schema.String>;
|
|
2777
|
+
readonly httpStatus: Schema.optional<Schema.NullOr<Schema.Number>>;
|
|
2778
|
+
readonly startedAtIso: Schema.String;
|
|
2779
|
+
readonly settledAtIso: Schema.String;
|
|
2780
|
+
readonly origin: Schema.optional<Schema.Literals<readonly ["local", "remote"]>>;
|
|
2781
|
+
readonly enriched: Schema.optional<Schema.$Array<Schema.Literals<readonly ["image", "components"]>>>;
|
|
2782
|
+
readonly resolvedNodes: Schema.optional<Schema.Struct<{
|
|
2783
|
+
readonly fetched: Schema.$Array<Schema.String>;
|
|
2784
|
+
readonly failed: Schema.$Array<Schema.Struct<{
|
|
2785
|
+
readonly guid: Schema.String;
|
|
2786
|
+
readonly message: Schema.String;
|
|
2787
|
+
}>>;
|
|
2788
|
+
}>>;
|
|
2789
|
+
}>]>;
|
|
2790
|
+
type ScanJobState = typeof ScanJobState.Type;
|
|
2791
|
+
export { PixsoNode as $, CatalogEntry as A, PixsoConstraints as B, ComplexityBand as C, emptyPanelSnapshot as D, PixsoCardGroup as E, PixsoComponentProp as F, PixsoGradient as G, PixsoExpansion as H, PixsoComponentPropDef as I, PixsoInstanceOverride as J, PixsoImagePaint as K, PixsoComponentPropValue as L, PixsoBorders as M, PixsoChildLayout as N, CardDetail as O, PixsoComponentInfo as P, PixsoNameSource as Q, PixsoComponentRef as R, CardSummary as S, PanelSnapshot as T, PixsoFlip as U, PixsoEffect as V, PixsoFont as W, PixsoMargin as X, PixsoLink as Y, PixsoMatrix2x3 as Z, ScanToolTiming as _, PixsoToolParam as a, PixsoPaintGradient as at, UnresolvedLibrary as b, ProbeRowStatus as c, PixsoSizing as ct, RemoteToolsListResult as d, PixsoTokenRef as dt, PixsoNodeLayout as et, ReparseResult as f, PixsoTokens as ft, ScanReportData as g, ScanOutcome as h, PixsoTool as i, PixsoPaint as it, CatalogSnapshot as j, CardProvenance as k, RemoteCheckResult as l, PixsoTextMeta as lt, ScanOrigin as m, LatestScanReport as n, PixsoNodeType as nt, ProbeResult as o, PixsoPlaceholder as ot, ScanJobState as p, PixsoUnresolvedOverride as pt, PixsoInset as q, ParserDiagnostic as r, PixsoOverlay as rt, ProbeRow as s, PixsoRadii as st, CheckResult as t, PixsoNodeStroke as tt, RemoteTarget as u, PixsoTextRun as ut, UnknownEnumSample as v, GroupsMutateOp as w, CardIdentityData as x, UnknownKeySample as y, PixsoComponentUsage as z };
|