@shapediver/viewer.shared.types 3.12.20 → 3.13.0
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/interfaces/parameter/IGumballParameterSettings.d.ts +13 -10
- package/dist/interfaces/parameter/IGumballParameterSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IGumballParameterSettings.js.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts +450 -12
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.js +27 -0
- package/dist/interfaces/parameter/IInteractionParameterSettings.js.map +1 -1
- package/dist/interfaces/parameter/ISelectionParameterSettings.d.ts +2 -0
- package/dist/interfaces/parameter/ISelectionParameterSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/ISelectionParameterSettings.js.map +1 -1
- package/package.json +5 -5
|
@@ -36,6 +36,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
36
36
|
minimumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
37
37
|
nameFilter: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
38
38
|
selectionColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39
|
+
deselectOnEmpty: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
39
40
|
}, {
|
|
40
41
|
hover: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
41
42
|
hoverColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -64,6 +65,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
64
65
|
minimumSelection?: number | null | undefined;
|
|
65
66
|
nameFilter?: string[] | null | undefined;
|
|
66
67
|
selectionColor?: string | null | undefined;
|
|
68
|
+
deselectOnEmpty?: boolean | undefined;
|
|
67
69
|
}, {
|
|
68
70
|
hover?: unknown;
|
|
69
71
|
hoverColor?: string | null | undefined;
|
|
@@ -76,6 +78,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
76
78
|
minimumSelection?: number | null | undefined;
|
|
77
79
|
nameFilter?: string[] | null | undefined;
|
|
78
80
|
selectionColor?: string | null | undefined;
|
|
81
|
+
deselectOnEmpty?: unknown;
|
|
79
82
|
}>;
|
|
80
83
|
}, "strip", z.ZodTypeAny, {
|
|
81
84
|
type: "selection";
|
|
@@ -91,6 +94,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
91
94
|
minimumSelection?: number | null | undefined;
|
|
92
95
|
nameFilter?: string[] | null | undefined;
|
|
93
96
|
selectionColor?: string | null | undefined;
|
|
97
|
+
deselectOnEmpty?: boolean | undefined;
|
|
94
98
|
};
|
|
95
99
|
}, {
|
|
96
100
|
type: "selection";
|
|
@@ -106,6 +110,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
106
110
|
minimumSelection?: number | null | undefined;
|
|
107
111
|
nameFilter?: string[] | null | undefined;
|
|
108
112
|
selectionColor?: string | null | undefined;
|
|
113
|
+
deselectOnEmpty?: unknown;
|
|
109
114
|
};
|
|
110
115
|
}>;
|
|
111
116
|
export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
@@ -116,42 +121,69 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
116
121
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
117
122
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
118
123
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
124
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
125
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
126
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
119
127
|
}, "strip", z.ZodTypeAny, {
|
|
120
128
|
x?: boolean | undefined;
|
|
121
129
|
y?: boolean | undefined;
|
|
122
130
|
z?: boolean | undefined;
|
|
131
|
+
xy?: boolean | undefined;
|
|
132
|
+
yz?: boolean | undefined;
|
|
133
|
+
xz?: boolean | undefined;
|
|
123
134
|
}, {
|
|
124
135
|
x?: unknown;
|
|
125
136
|
y?: unknown;
|
|
126
137
|
z?: unknown;
|
|
138
|
+
xy?: unknown;
|
|
139
|
+
yz?: unknown;
|
|
140
|
+
xz?: unknown;
|
|
127
141
|
}>>>;
|
|
128
142
|
enableScaling: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
129
143
|
enableScalingAxes: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
130
144
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
131
145
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
132
146
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
147
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
148
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
149
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
133
150
|
}, "strip", z.ZodTypeAny, {
|
|
134
151
|
x?: boolean | undefined;
|
|
135
152
|
y?: boolean | undefined;
|
|
136
153
|
z?: boolean | undefined;
|
|
154
|
+
xy?: boolean | undefined;
|
|
155
|
+
yz?: boolean | undefined;
|
|
156
|
+
xz?: boolean | undefined;
|
|
137
157
|
}, {
|
|
138
158
|
x?: unknown;
|
|
139
159
|
y?: unknown;
|
|
140
160
|
z?: unknown;
|
|
161
|
+
xy?: unknown;
|
|
162
|
+
yz?: unknown;
|
|
163
|
+
xz?: unknown;
|
|
141
164
|
}>>>;
|
|
142
165
|
enableTranslation: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
143
166
|
enableTranslationAxes: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
144
167
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
145
168
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
146
169
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
170
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
171
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
172
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
147
173
|
}, "strip", z.ZodTypeAny, {
|
|
148
174
|
x?: boolean | undefined;
|
|
149
175
|
y?: boolean | undefined;
|
|
150
176
|
z?: boolean | undefined;
|
|
177
|
+
xy?: boolean | undefined;
|
|
178
|
+
yz?: boolean | undefined;
|
|
179
|
+
xz?: boolean | undefined;
|
|
151
180
|
}, {
|
|
152
181
|
x?: unknown;
|
|
153
182
|
y?: unknown;
|
|
154
183
|
z?: unknown;
|
|
184
|
+
xy?: unknown;
|
|
185
|
+
yz?: unknown;
|
|
186
|
+
xz?: unknown;
|
|
155
187
|
}>>>;
|
|
156
188
|
nameFilter: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
157
189
|
scale: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -159,6 +191,47 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
159
191
|
selectionColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
160
192
|
maximumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
161
193
|
minimumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
194
|
+
deselectOnEmpty: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
195
|
+
restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
196
|
+
id: z.ZodString;
|
|
197
|
+
type: z.ZodString;
|
|
198
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
199
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
200
|
+
angle: z.ZodNumber;
|
|
201
|
+
}, "strip", z.ZodTypeAny, {
|
|
202
|
+
axis: number[];
|
|
203
|
+
angle: number;
|
|
204
|
+
}, {
|
|
205
|
+
axis: number[];
|
|
206
|
+
angle: number;
|
|
207
|
+
}>>>;
|
|
208
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
209
|
+
id: z.ZodString;
|
|
210
|
+
type: z.ZodString;
|
|
211
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
212
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
213
|
+
angle: z.ZodNumber;
|
|
214
|
+
}, "strip", z.ZodTypeAny, {
|
|
215
|
+
axis: number[];
|
|
216
|
+
angle: number;
|
|
217
|
+
}, {
|
|
218
|
+
axis: number[];
|
|
219
|
+
angle: number;
|
|
220
|
+
}>>>;
|
|
221
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
222
|
+
id: z.ZodString;
|
|
223
|
+
type: z.ZodString;
|
|
224
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
225
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
226
|
+
angle: z.ZodNumber;
|
|
227
|
+
}, "strip", z.ZodTypeAny, {
|
|
228
|
+
axis: number[];
|
|
229
|
+
angle: number;
|
|
230
|
+
}, {
|
|
231
|
+
axis: number[];
|
|
232
|
+
angle: number;
|
|
233
|
+
}>>>;
|
|
234
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
162
235
|
}, {
|
|
163
236
|
hover: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
164
237
|
hoverColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -187,26 +260,50 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
187
260
|
minimumSelection?: number | null | undefined;
|
|
188
261
|
nameFilter?: string[] | null | undefined;
|
|
189
262
|
selectionColor?: string | null | undefined;
|
|
263
|
+
deselectOnEmpty?: boolean | undefined;
|
|
190
264
|
enableRotation?: boolean | undefined;
|
|
191
265
|
enableRotationAxes?: {
|
|
192
266
|
x?: boolean | undefined;
|
|
193
267
|
y?: boolean | undefined;
|
|
194
268
|
z?: boolean | undefined;
|
|
269
|
+
xy?: boolean | undefined;
|
|
270
|
+
yz?: boolean | undefined;
|
|
271
|
+
xz?: boolean | undefined;
|
|
195
272
|
} | null | undefined;
|
|
196
273
|
enableScaling?: boolean | undefined;
|
|
197
274
|
enableScalingAxes?: {
|
|
198
275
|
x?: boolean | undefined;
|
|
199
276
|
y?: boolean | undefined;
|
|
200
277
|
z?: boolean | undefined;
|
|
278
|
+
xy?: boolean | undefined;
|
|
279
|
+
yz?: boolean | undefined;
|
|
280
|
+
xz?: boolean | undefined;
|
|
201
281
|
} | null | undefined;
|
|
202
282
|
enableTranslation?: boolean | undefined;
|
|
203
283
|
enableTranslationAxes?: {
|
|
204
284
|
x?: boolean | undefined;
|
|
205
285
|
y?: boolean | undefined;
|
|
206
286
|
z?: boolean | undefined;
|
|
287
|
+
xy?: boolean | undefined;
|
|
288
|
+
yz?: boolean | undefined;
|
|
289
|
+
xz?: boolean | undefined;
|
|
207
290
|
} | null | undefined;
|
|
208
291
|
scale?: number | null | undefined;
|
|
209
292
|
space?: "local" | "world" | null | undefined;
|
|
293
|
+
restrictions?: z.objectOutputType<{
|
|
294
|
+
id: z.ZodString;
|
|
295
|
+
type: z.ZodString;
|
|
296
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
297
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
298
|
+
angle: z.ZodNumber;
|
|
299
|
+
}, "strip", z.ZodTypeAny, {
|
|
300
|
+
axis: number[];
|
|
301
|
+
angle: number;
|
|
302
|
+
}, {
|
|
303
|
+
axis: number[];
|
|
304
|
+
angle: number;
|
|
305
|
+
}>>>;
|
|
306
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
210
307
|
}, {
|
|
211
308
|
hover?: unknown;
|
|
212
309
|
hoverColor?: string | null | undefined;
|
|
@@ -219,26 +316,50 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
219
316
|
minimumSelection?: number | null | undefined;
|
|
220
317
|
nameFilter?: string[] | null | undefined;
|
|
221
318
|
selectionColor?: string | null | undefined;
|
|
319
|
+
deselectOnEmpty?: unknown;
|
|
222
320
|
enableRotation?: unknown;
|
|
223
321
|
enableRotationAxes?: {
|
|
224
322
|
x?: unknown;
|
|
225
323
|
y?: unknown;
|
|
226
324
|
z?: unknown;
|
|
325
|
+
xy?: unknown;
|
|
326
|
+
yz?: unknown;
|
|
327
|
+
xz?: unknown;
|
|
227
328
|
} | null | undefined;
|
|
228
329
|
enableScaling?: unknown;
|
|
229
330
|
enableScalingAxes?: {
|
|
230
331
|
x?: unknown;
|
|
231
332
|
y?: unknown;
|
|
232
333
|
z?: unknown;
|
|
334
|
+
xy?: unknown;
|
|
335
|
+
yz?: unknown;
|
|
336
|
+
xz?: unknown;
|
|
233
337
|
} | null | undefined;
|
|
234
338
|
enableTranslation?: unknown;
|
|
235
339
|
enableTranslationAxes?: {
|
|
236
340
|
x?: unknown;
|
|
237
341
|
y?: unknown;
|
|
238
342
|
z?: unknown;
|
|
343
|
+
xy?: unknown;
|
|
344
|
+
yz?: unknown;
|
|
345
|
+
xz?: unknown;
|
|
239
346
|
} | null | undefined;
|
|
240
347
|
scale?: number | null | undefined;
|
|
241
348
|
space?: "local" | "world" | null | undefined;
|
|
349
|
+
restrictions?: z.objectInputType<{
|
|
350
|
+
id: z.ZodString;
|
|
351
|
+
type: z.ZodString;
|
|
352
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
353
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
354
|
+
angle: z.ZodNumber;
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
356
|
+
axis: number[];
|
|
357
|
+
angle: number;
|
|
358
|
+
}, {
|
|
359
|
+
axis: number[];
|
|
360
|
+
angle: number;
|
|
361
|
+
}>>>;
|
|
362
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
242
363
|
}>;
|
|
243
364
|
}, "strip", z.ZodTypeAny, {
|
|
244
365
|
type: "gumball";
|
|
@@ -254,26 +375,50 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
254
375
|
minimumSelection?: number | null | undefined;
|
|
255
376
|
nameFilter?: string[] | null | undefined;
|
|
256
377
|
selectionColor?: string | null | undefined;
|
|
378
|
+
deselectOnEmpty?: boolean | undefined;
|
|
257
379
|
enableRotation?: boolean | undefined;
|
|
258
380
|
enableRotationAxes?: {
|
|
259
381
|
x?: boolean | undefined;
|
|
260
382
|
y?: boolean | undefined;
|
|
261
383
|
z?: boolean | undefined;
|
|
384
|
+
xy?: boolean | undefined;
|
|
385
|
+
yz?: boolean | undefined;
|
|
386
|
+
xz?: boolean | undefined;
|
|
262
387
|
} | null | undefined;
|
|
263
388
|
enableScaling?: boolean | undefined;
|
|
264
389
|
enableScalingAxes?: {
|
|
265
390
|
x?: boolean | undefined;
|
|
266
391
|
y?: boolean | undefined;
|
|
267
392
|
z?: boolean | undefined;
|
|
393
|
+
xy?: boolean | undefined;
|
|
394
|
+
yz?: boolean | undefined;
|
|
395
|
+
xz?: boolean | undefined;
|
|
268
396
|
} | null | undefined;
|
|
269
397
|
enableTranslation?: boolean | undefined;
|
|
270
398
|
enableTranslationAxes?: {
|
|
271
399
|
x?: boolean | undefined;
|
|
272
400
|
y?: boolean | undefined;
|
|
273
401
|
z?: boolean | undefined;
|
|
402
|
+
xy?: boolean | undefined;
|
|
403
|
+
yz?: boolean | undefined;
|
|
404
|
+
xz?: boolean | undefined;
|
|
274
405
|
} | null | undefined;
|
|
275
406
|
scale?: number | null | undefined;
|
|
276
407
|
space?: "local" | "world" | null | undefined;
|
|
408
|
+
restrictions?: z.objectOutputType<{
|
|
409
|
+
id: z.ZodString;
|
|
410
|
+
type: z.ZodString;
|
|
411
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
412
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
413
|
+
angle: z.ZodNumber;
|
|
414
|
+
}, "strip", z.ZodTypeAny, {
|
|
415
|
+
axis: number[];
|
|
416
|
+
angle: number;
|
|
417
|
+
}, {
|
|
418
|
+
axis: number[];
|
|
419
|
+
angle: number;
|
|
420
|
+
}>>>;
|
|
421
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
277
422
|
};
|
|
278
423
|
}, {
|
|
279
424
|
type: "gumball";
|
|
@@ -289,26 +434,50 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
289
434
|
minimumSelection?: number | null | undefined;
|
|
290
435
|
nameFilter?: string[] | null | undefined;
|
|
291
436
|
selectionColor?: string | null | undefined;
|
|
437
|
+
deselectOnEmpty?: unknown;
|
|
292
438
|
enableRotation?: unknown;
|
|
293
439
|
enableRotationAxes?: {
|
|
294
440
|
x?: unknown;
|
|
295
441
|
y?: unknown;
|
|
296
442
|
z?: unknown;
|
|
443
|
+
xy?: unknown;
|
|
444
|
+
yz?: unknown;
|
|
445
|
+
xz?: unknown;
|
|
297
446
|
} | null | undefined;
|
|
298
447
|
enableScaling?: unknown;
|
|
299
448
|
enableScalingAxes?: {
|
|
300
449
|
x?: unknown;
|
|
301
450
|
y?: unknown;
|
|
302
451
|
z?: unknown;
|
|
452
|
+
xy?: unknown;
|
|
453
|
+
yz?: unknown;
|
|
454
|
+
xz?: unknown;
|
|
303
455
|
} | null | undefined;
|
|
304
456
|
enableTranslation?: unknown;
|
|
305
457
|
enableTranslationAxes?: {
|
|
306
458
|
x?: unknown;
|
|
307
459
|
y?: unknown;
|
|
308
460
|
z?: unknown;
|
|
461
|
+
xy?: unknown;
|
|
462
|
+
yz?: unknown;
|
|
463
|
+
xz?: unknown;
|
|
309
464
|
} | null | undefined;
|
|
310
465
|
scale?: number | null | undefined;
|
|
311
466
|
space?: "local" | "world" | null | undefined;
|
|
467
|
+
restrictions?: z.objectInputType<{
|
|
468
|
+
id: z.ZodString;
|
|
469
|
+
type: z.ZodString;
|
|
470
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
471
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
472
|
+
angle: z.ZodNumber;
|
|
473
|
+
}, "strip", z.ZodTypeAny, {
|
|
474
|
+
axis: number[];
|
|
475
|
+
angle: number;
|
|
476
|
+
}, {
|
|
477
|
+
axis: number[];
|
|
478
|
+
angle: number;
|
|
479
|
+
}>>>;
|
|
480
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
312
481
|
};
|
|
313
482
|
}>;
|
|
314
483
|
export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
@@ -436,7 +605,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
436
605
|
activeTitle?: string | null | undefined;
|
|
437
606
|
activeText?: string | null | undefined;
|
|
438
607
|
} | null | undefined;
|
|
439
|
-
draggingColor?: string | null | undefined;
|
|
440
608
|
restrictions?: z.objectOutputType<{
|
|
441
609
|
id: z.ZodString;
|
|
442
610
|
type: z.ZodString;
|
|
@@ -451,6 +619,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
451
619
|
angle: number;
|
|
452
620
|
}>>>;
|
|
453
621
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
622
|
+
draggingColor?: string | null | undefined;
|
|
454
623
|
objects?: {
|
|
455
624
|
nameFilter: string;
|
|
456
625
|
restrictions: string[];
|
|
@@ -472,7 +641,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
472
641
|
activeTitle?: string | null | undefined;
|
|
473
642
|
activeText?: string | null | undefined;
|
|
474
643
|
} | null | undefined;
|
|
475
|
-
draggingColor?: string | null | undefined;
|
|
476
644
|
restrictions?: z.objectInputType<{
|
|
477
645
|
id: z.ZodString;
|
|
478
646
|
type: z.ZodString;
|
|
@@ -487,6 +655,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
487
655
|
angle: number;
|
|
488
656
|
}>>>;
|
|
489
657
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
658
|
+
draggingColor?: string | null | undefined;
|
|
490
659
|
objects?: {
|
|
491
660
|
nameFilter: string;
|
|
492
661
|
restrictions: string[];
|
|
@@ -511,7 +680,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
511
680
|
activeTitle?: string | null | undefined;
|
|
512
681
|
activeText?: string | null | undefined;
|
|
513
682
|
} | null | undefined;
|
|
514
|
-
draggingColor?: string | null | undefined;
|
|
515
683
|
restrictions?: z.objectOutputType<{
|
|
516
684
|
id: z.ZodString;
|
|
517
685
|
type: z.ZodString;
|
|
@@ -526,6 +694,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
526
694
|
angle: number;
|
|
527
695
|
}>>>;
|
|
528
696
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
697
|
+
draggingColor?: string | null | undefined;
|
|
529
698
|
objects?: {
|
|
530
699
|
nameFilter: string;
|
|
531
700
|
restrictions: string[];
|
|
@@ -550,7 +719,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
550
719
|
activeTitle?: string | null | undefined;
|
|
551
720
|
activeText?: string | null | undefined;
|
|
552
721
|
} | null | undefined;
|
|
553
|
-
draggingColor?: string | null | undefined;
|
|
554
722
|
restrictions?: z.objectInputType<{
|
|
555
723
|
id: z.ZodString;
|
|
556
724
|
type: z.ZodString;
|
|
@@ -565,6 +733,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
565
733
|
angle: number;
|
|
566
734
|
}>>>;
|
|
567
735
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
736
|
+
draggingColor?: string | null | undefined;
|
|
568
737
|
objects?: {
|
|
569
738
|
nameFilter: string;
|
|
570
739
|
restrictions: string[];
|
|
@@ -587,6 +756,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
587
756
|
minimumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
588
757
|
nameFilter: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
589
758
|
selectionColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
759
|
+
deselectOnEmpty: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
590
760
|
}, {
|
|
591
761
|
hover: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
592
762
|
hoverColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -615,6 +785,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
615
785
|
minimumSelection?: number | null | undefined;
|
|
616
786
|
nameFilter?: string[] | null | undefined;
|
|
617
787
|
selectionColor?: string | null | undefined;
|
|
788
|
+
deselectOnEmpty?: boolean | undefined;
|
|
618
789
|
}, {
|
|
619
790
|
hover?: unknown;
|
|
620
791
|
hoverColor?: string | null | undefined;
|
|
@@ -627,6 +798,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
627
798
|
minimumSelection?: number | null | undefined;
|
|
628
799
|
nameFilter?: string[] | null | undefined;
|
|
629
800
|
selectionColor?: string | null | undefined;
|
|
801
|
+
deselectOnEmpty?: unknown;
|
|
630
802
|
}>;
|
|
631
803
|
}, "strip", z.ZodTypeAny, {
|
|
632
804
|
type: "selection";
|
|
@@ -642,6 +814,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
642
814
|
minimumSelection?: number | null | undefined;
|
|
643
815
|
nameFilter?: string[] | null | undefined;
|
|
644
816
|
selectionColor?: string | null | undefined;
|
|
817
|
+
deselectOnEmpty?: boolean | undefined;
|
|
645
818
|
};
|
|
646
819
|
}, {
|
|
647
820
|
type: "selection";
|
|
@@ -657,6 +830,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
657
830
|
minimumSelection?: number | null | undefined;
|
|
658
831
|
nameFilter?: string[] | null | undefined;
|
|
659
832
|
selectionColor?: string | null | undefined;
|
|
833
|
+
deselectOnEmpty?: unknown;
|
|
660
834
|
};
|
|
661
835
|
}>, z.ZodObject<{
|
|
662
836
|
type: z.ZodLiteral<"gumball">;
|
|
@@ -666,42 +840,69 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
666
840
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
667
841
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
668
842
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
843
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
844
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
845
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
669
846
|
}, "strip", z.ZodTypeAny, {
|
|
670
847
|
x?: boolean | undefined;
|
|
671
848
|
y?: boolean | undefined;
|
|
672
849
|
z?: boolean | undefined;
|
|
850
|
+
xy?: boolean | undefined;
|
|
851
|
+
yz?: boolean | undefined;
|
|
852
|
+
xz?: boolean | undefined;
|
|
673
853
|
}, {
|
|
674
854
|
x?: unknown;
|
|
675
855
|
y?: unknown;
|
|
676
856
|
z?: unknown;
|
|
857
|
+
xy?: unknown;
|
|
858
|
+
yz?: unknown;
|
|
859
|
+
xz?: unknown;
|
|
677
860
|
}>>>;
|
|
678
861
|
enableScaling: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
679
862
|
enableScalingAxes: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
680
863
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
681
864
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
682
865
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
866
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
867
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
868
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
683
869
|
}, "strip", z.ZodTypeAny, {
|
|
684
870
|
x?: boolean | undefined;
|
|
685
871
|
y?: boolean | undefined;
|
|
686
872
|
z?: boolean | undefined;
|
|
873
|
+
xy?: boolean | undefined;
|
|
874
|
+
yz?: boolean | undefined;
|
|
875
|
+
xz?: boolean | undefined;
|
|
687
876
|
}, {
|
|
688
877
|
x?: unknown;
|
|
689
878
|
y?: unknown;
|
|
690
879
|
z?: unknown;
|
|
880
|
+
xy?: unknown;
|
|
881
|
+
yz?: unknown;
|
|
882
|
+
xz?: unknown;
|
|
691
883
|
}>>>;
|
|
692
884
|
enableTranslation: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
693
885
|
enableTranslationAxes: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
694
886
|
x: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
695
887
|
y: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
696
888
|
z: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
889
|
+
xy: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
890
|
+
yz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
891
|
+
xz: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
697
892
|
}, "strip", z.ZodTypeAny, {
|
|
698
893
|
x?: boolean | undefined;
|
|
699
894
|
y?: boolean | undefined;
|
|
700
895
|
z?: boolean | undefined;
|
|
896
|
+
xy?: boolean | undefined;
|
|
897
|
+
yz?: boolean | undefined;
|
|
898
|
+
xz?: boolean | undefined;
|
|
701
899
|
}, {
|
|
702
900
|
x?: unknown;
|
|
703
901
|
y?: unknown;
|
|
704
902
|
z?: unknown;
|
|
903
|
+
xy?: unknown;
|
|
904
|
+
yz?: unknown;
|
|
905
|
+
xz?: unknown;
|
|
705
906
|
}>>>;
|
|
706
907
|
nameFilter: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
707
908
|
scale: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -709,6 +910,47 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
709
910
|
selectionColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
710
911
|
maximumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
711
912
|
minimumSelection: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
913
|
+
deselectOnEmpty: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
914
|
+
restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
915
|
+
id: z.ZodString;
|
|
916
|
+
type: z.ZodString;
|
|
917
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
918
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
919
|
+
angle: z.ZodNumber;
|
|
920
|
+
}, "strip", z.ZodTypeAny, {
|
|
921
|
+
axis: number[];
|
|
922
|
+
angle: number;
|
|
923
|
+
}, {
|
|
924
|
+
axis: number[];
|
|
925
|
+
angle: number;
|
|
926
|
+
}>>>;
|
|
927
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
928
|
+
id: z.ZodString;
|
|
929
|
+
type: z.ZodString;
|
|
930
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
931
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
932
|
+
angle: z.ZodNumber;
|
|
933
|
+
}, "strip", z.ZodTypeAny, {
|
|
934
|
+
axis: number[];
|
|
935
|
+
angle: number;
|
|
936
|
+
}, {
|
|
937
|
+
axis: number[];
|
|
938
|
+
angle: number;
|
|
939
|
+
}>>>;
|
|
940
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
941
|
+
id: z.ZodString;
|
|
942
|
+
type: z.ZodString;
|
|
943
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
944
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
945
|
+
angle: z.ZodNumber;
|
|
946
|
+
}, "strip", z.ZodTypeAny, {
|
|
947
|
+
axis: number[];
|
|
948
|
+
angle: number;
|
|
949
|
+
}, {
|
|
950
|
+
axis: number[];
|
|
951
|
+
angle: number;
|
|
952
|
+
}>>>;
|
|
953
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
712
954
|
}, {
|
|
713
955
|
hover: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
714
956
|
hoverColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -737,26 +979,50 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
737
979
|
minimumSelection?: number | null | undefined;
|
|
738
980
|
nameFilter?: string[] | null | undefined;
|
|
739
981
|
selectionColor?: string | null | undefined;
|
|
982
|
+
deselectOnEmpty?: boolean | undefined;
|
|
740
983
|
enableRotation?: boolean | undefined;
|
|
741
984
|
enableRotationAxes?: {
|
|
742
985
|
x?: boolean | undefined;
|
|
743
986
|
y?: boolean | undefined;
|
|
744
987
|
z?: boolean | undefined;
|
|
988
|
+
xy?: boolean | undefined;
|
|
989
|
+
yz?: boolean | undefined;
|
|
990
|
+
xz?: boolean | undefined;
|
|
745
991
|
} | null | undefined;
|
|
746
992
|
enableScaling?: boolean | undefined;
|
|
747
993
|
enableScalingAxes?: {
|
|
748
994
|
x?: boolean | undefined;
|
|
749
995
|
y?: boolean | undefined;
|
|
750
996
|
z?: boolean | undefined;
|
|
997
|
+
xy?: boolean | undefined;
|
|
998
|
+
yz?: boolean | undefined;
|
|
999
|
+
xz?: boolean | undefined;
|
|
751
1000
|
} | null | undefined;
|
|
752
1001
|
enableTranslation?: boolean | undefined;
|
|
753
1002
|
enableTranslationAxes?: {
|
|
754
1003
|
x?: boolean | undefined;
|
|
755
1004
|
y?: boolean | undefined;
|
|
756
1005
|
z?: boolean | undefined;
|
|
1006
|
+
xy?: boolean | undefined;
|
|
1007
|
+
yz?: boolean | undefined;
|
|
1008
|
+
xz?: boolean | undefined;
|
|
757
1009
|
} | null | undefined;
|
|
758
1010
|
scale?: number | null | undefined;
|
|
759
1011
|
space?: "local" | "world" | null | undefined;
|
|
1012
|
+
restrictions?: z.objectOutputType<{
|
|
1013
|
+
id: z.ZodString;
|
|
1014
|
+
type: z.ZodString;
|
|
1015
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1016
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1017
|
+
angle: z.ZodNumber;
|
|
1018
|
+
}, "strip", z.ZodTypeAny, {
|
|
1019
|
+
axis: number[];
|
|
1020
|
+
angle: number;
|
|
1021
|
+
}, {
|
|
1022
|
+
axis: number[];
|
|
1023
|
+
angle: number;
|
|
1024
|
+
}>>>;
|
|
1025
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
760
1026
|
}, {
|
|
761
1027
|
hover?: unknown;
|
|
762
1028
|
hoverColor?: string | null | undefined;
|
|
@@ -769,26 +1035,50 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
769
1035
|
minimumSelection?: number | null | undefined;
|
|
770
1036
|
nameFilter?: string[] | null | undefined;
|
|
771
1037
|
selectionColor?: string | null | undefined;
|
|
1038
|
+
deselectOnEmpty?: unknown;
|
|
772
1039
|
enableRotation?: unknown;
|
|
773
1040
|
enableRotationAxes?: {
|
|
774
1041
|
x?: unknown;
|
|
775
1042
|
y?: unknown;
|
|
776
1043
|
z?: unknown;
|
|
1044
|
+
xy?: unknown;
|
|
1045
|
+
yz?: unknown;
|
|
1046
|
+
xz?: unknown;
|
|
777
1047
|
} | null | undefined;
|
|
778
1048
|
enableScaling?: unknown;
|
|
779
1049
|
enableScalingAxes?: {
|
|
780
1050
|
x?: unknown;
|
|
781
1051
|
y?: unknown;
|
|
782
1052
|
z?: unknown;
|
|
1053
|
+
xy?: unknown;
|
|
1054
|
+
yz?: unknown;
|
|
1055
|
+
xz?: unknown;
|
|
783
1056
|
} | null | undefined;
|
|
784
1057
|
enableTranslation?: unknown;
|
|
785
1058
|
enableTranslationAxes?: {
|
|
786
1059
|
x?: unknown;
|
|
787
1060
|
y?: unknown;
|
|
788
1061
|
z?: unknown;
|
|
1062
|
+
xy?: unknown;
|
|
1063
|
+
yz?: unknown;
|
|
1064
|
+
xz?: unknown;
|
|
789
1065
|
} | null | undefined;
|
|
790
1066
|
scale?: number | null | undefined;
|
|
791
1067
|
space?: "local" | "world" | null | undefined;
|
|
1068
|
+
restrictions?: z.objectInputType<{
|
|
1069
|
+
id: z.ZodString;
|
|
1070
|
+
type: z.ZodString;
|
|
1071
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1072
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1073
|
+
angle: z.ZodNumber;
|
|
1074
|
+
}, "strip", z.ZodTypeAny, {
|
|
1075
|
+
axis: number[];
|
|
1076
|
+
angle: number;
|
|
1077
|
+
}, {
|
|
1078
|
+
axis: number[];
|
|
1079
|
+
angle: number;
|
|
1080
|
+
}>>>;
|
|
1081
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
792
1082
|
}>;
|
|
793
1083
|
}, "strip", z.ZodTypeAny, {
|
|
794
1084
|
type: "gumball";
|
|
@@ -804,26 +1094,50 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
804
1094
|
minimumSelection?: number | null | undefined;
|
|
805
1095
|
nameFilter?: string[] | null | undefined;
|
|
806
1096
|
selectionColor?: string | null | undefined;
|
|
1097
|
+
deselectOnEmpty?: boolean | undefined;
|
|
807
1098
|
enableRotation?: boolean | undefined;
|
|
808
1099
|
enableRotationAxes?: {
|
|
809
1100
|
x?: boolean | undefined;
|
|
810
1101
|
y?: boolean | undefined;
|
|
811
1102
|
z?: boolean | undefined;
|
|
1103
|
+
xy?: boolean | undefined;
|
|
1104
|
+
yz?: boolean | undefined;
|
|
1105
|
+
xz?: boolean | undefined;
|
|
812
1106
|
} | null | undefined;
|
|
813
1107
|
enableScaling?: boolean | undefined;
|
|
814
1108
|
enableScalingAxes?: {
|
|
815
1109
|
x?: boolean | undefined;
|
|
816
1110
|
y?: boolean | undefined;
|
|
817
1111
|
z?: boolean | undefined;
|
|
1112
|
+
xy?: boolean | undefined;
|
|
1113
|
+
yz?: boolean | undefined;
|
|
1114
|
+
xz?: boolean | undefined;
|
|
818
1115
|
} | null | undefined;
|
|
819
1116
|
enableTranslation?: boolean | undefined;
|
|
820
1117
|
enableTranslationAxes?: {
|
|
821
1118
|
x?: boolean | undefined;
|
|
822
1119
|
y?: boolean | undefined;
|
|
823
1120
|
z?: boolean | undefined;
|
|
1121
|
+
xy?: boolean | undefined;
|
|
1122
|
+
yz?: boolean | undefined;
|
|
1123
|
+
xz?: boolean | undefined;
|
|
824
1124
|
} | null | undefined;
|
|
825
1125
|
scale?: number | null | undefined;
|
|
826
1126
|
space?: "local" | "world" | null | undefined;
|
|
1127
|
+
restrictions?: z.objectOutputType<{
|
|
1128
|
+
id: z.ZodString;
|
|
1129
|
+
type: z.ZodString;
|
|
1130
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1131
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1132
|
+
angle: z.ZodNumber;
|
|
1133
|
+
}, "strip", z.ZodTypeAny, {
|
|
1134
|
+
axis: number[];
|
|
1135
|
+
angle: number;
|
|
1136
|
+
}, {
|
|
1137
|
+
axis: number[];
|
|
1138
|
+
angle: number;
|
|
1139
|
+
}>>>;
|
|
1140
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
827
1141
|
};
|
|
828
1142
|
}, {
|
|
829
1143
|
type: "gumball";
|
|
@@ -839,26 +1153,50 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
839
1153
|
minimumSelection?: number | null | undefined;
|
|
840
1154
|
nameFilter?: string[] | null | undefined;
|
|
841
1155
|
selectionColor?: string | null | undefined;
|
|
1156
|
+
deselectOnEmpty?: unknown;
|
|
842
1157
|
enableRotation?: unknown;
|
|
843
1158
|
enableRotationAxes?: {
|
|
844
1159
|
x?: unknown;
|
|
845
1160
|
y?: unknown;
|
|
846
1161
|
z?: unknown;
|
|
1162
|
+
xy?: unknown;
|
|
1163
|
+
yz?: unknown;
|
|
1164
|
+
xz?: unknown;
|
|
847
1165
|
} | null | undefined;
|
|
848
1166
|
enableScaling?: unknown;
|
|
849
1167
|
enableScalingAxes?: {
|
|
850
1168
|
x?: unknown;
|
|
851
1169
|
y?: unknown;
|
|
852
1170
|
z?: unknown;
|
|
1171
|
+
xy?: unknown;
|
|
1172
|
+
yz?: unknown;
|
|
1173
|
+
xz?: unknown;
|
|
853
1174
|
} | null | undefined;
|
|
854
1175
|
enableTranslation?: unknown;
|
|
855
1176
|
enableTranslationAxes?: {
|
|
856
1177
|
x?: unknown;
|
|
857
1178
|
y?: unknown;
|
|
858
1179
|
z?: unknown;
|
|
1180
|
+
xy?: unknown;
|
|
1181
|
+
yz?: unknown;
|
|
1182
|
+
xz?: unknown;
|
|
859
1183
|
} | null | undefined;
|
|
860
1184
|
scale?: number | null | undefined;
|
|
861
1185
|
space?: "local" | "world" | null | undefined;
|
|
1186
|
+
restrictions?: z.objectInputType<{
|
|
1187
|
+
id: z.ZodString;
|
|
1188
|
+
type: z.ZodString;
|
|
1189
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1190
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1191
|
+
angle: z.ZodNumber;
|
|
1192
|
+
}, "strip", z.ZodTypeAny, {
|
|
1193
|
+
axis: number[];
|
|
1194
|
+
angle: number;
|
|
1195
|
+
}, {
|
|
1196
|
+
axis: number[];
|
|
1197
|
+
angle: number;
|
|
1198
|
+
}>>>;
|
|
1199
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
862
1200
|
};
|
|
863
1201
|
}>]>, z.ZodObject<{
|
|
864
1202
|
type: z.ZodLiteral<"dragging">;
|
|
@@ -985,7 +1323,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
985
1323
|
activeTitle?: string | null | undefined;
|
|
986
1324
|
activeText?: string | null | undefined;
|
|
987
1325
|
} | null | undefined;
|
|
988
|
-
draggingColor?: string | null | undefined;
|
|
989
1326
|
restrictions?: z.objectOutputType<{
|
|
990
1327
|
id: z.ZodString;
|
|
991
1328
|
type: z.ZodString;
|
|
@@ -1000,6 +1337,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1000
1337
|
angle: number;
|
|
1001
1338
|
}>>>;
|
|
1002
1339
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1340
|
+
draggingColor?: string | null | undefined;
|
|
1003
1341
|
objects?: {
|
|
1004
1342
|
nameFilter: string;
|
|
1005
1343
|
restrictions: string[];
|
|
@@ -1021,7 +1359,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1021
1359
|
activeTitle?: string | null | undefined;
|
|
1022
1360
|
activeText?: string | null | undefined;
|
|
1023
1361
|
} | null | undefined;
|
|
1024
|
-
draggingColor?: string | null | undefined;
|
|
1025
1362
|
restrictions?: z.objectInputType<{
|
|
1026
1363
|
id: z.ZodString;
|
|
1027
1364
|
type: z.ZodString;
|
|
@@ -1036,6 +1373,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1036
1373
|
angle: number;
|
|
1037
1374
|
}>>>;
|
|
1038
1375
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1376
|
+
draggingColor?: string | null | undefined;
|
|
1039
1377
|
objects?: {
|
|
1040
1378
|
nameFilter: string;
|
|
1041
1379
|
restrictions: string[];
|
|
@@ -1060,7 +1398,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1060
1398
|
activeTitle?: string | null | undefined;
|
|
1061
1399
|
activeText?: string | null | undefined;
|
|
1062
1400
|
} | null | undefined;
|
|
1063
|
-
draggingColor?: string | null | undefined;
|
|
1064
1401
|
restrictions?: z.objectOutputType<{
|
|
1065
1402
|
id: z.ZodString;
|
|
1066
1403
|
type: z.ZodString;
|
|
@@ -1075,6 +1412,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1075
1412
|
angle: number;
|
|
1076
1413
|
}>>>;
|
|
1077
1414
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1415
|
+
draggingColor?: string | null | undefined;
|
|
1078
1416
|
objects?: {
|
|
1079
1417
|
nameFilter: string;
|
|
1080
1418
|
restrictions: string[];
|
|
@@ -1099,7 +1437,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1099
1437
|
activeTitle?: string | null | undefined;
|
|
1100
1438
|
activeText?: string | null | undefined;
|
|
1101
1439
|
} | null | undefined;
|
|
1102
|
-
draggingColor?: string | null | undefined;
|
|
1103
1440
|
restrictions?: z.objectInputType<{
|
|
1104
1441
|
id: z.ZodString;
|
|
1105
1442
|
type: z.ZodString;
|
|
@@ -1114,6 +1451,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1114
1451
|
angle: number;
|
|
1115
1452
|
}>>>;
|
|
1116
1453
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1454
|
+
draggingColor?: string | null | undefined;
|
|
1117
1455
|
objects?: {
|
|
1118
1456
|
nameFilter: string;
|
|
1119
1457
|
restrictions: string[];
|
|
@@ -1143,6 +1481,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1143
1481
|
minimumSelection?: number | null | undefined;
|
|
1144
1482
|
nameFilter?: string[] | null | undefined;
|
|
1145
1483
|
selectionColor?: string | null | undefined;
|
|
1484
|
+
deselectOnEmpty?: unknown;
|
|
1146
1485
|
};
|
|
1147
1486
|
} | {
|
|
1148
1487
|
type: "gumball";
|
|
@@ -1158,26 +1497,50 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1158
1497
|
minimumSelection?: number | null | undefined;
|
|
1159
1498
|
nameFilter?: string[] | null | undefined;
|
|
1160
1499
|
selectionColor?: string | null | undefined;
|
|
1500
|
+
deselectOnEmpty?: unknown;
|
|
1161
1501
|
enableRotation?: unknown;
|
|
1162
1502
|
enableRotationAxes?: {
|
|
1163
1503
|
x?: unknown;
|
|
1164
1504
|
y?: unknown;
|
|
1165
1505
|
z?: unknown;
|
|
1506
|
+
xy?: unknown;
|
|
1507
|
+
yz?: unknown;
|
|
1508
|
+
xz?: unknown;
|
|
1166
1509
|
} | null | undefined;
|
|
1167
1510
|
enableScaling?: unknown;
|
|
1168
1511
|
enableScalingAxes?: {
|
|
1169
1512
|
x?: unknown;
|
|
1170
1513
|
y?: unknown;
|
|
1171
1514
|
z?: unknown;
|
|
1515
|
+
xy?: unknown;
|
|
1516
|
+
yz?: unknown;
|
|
1517
|
+
xz?: unknown;
|
|
1172
1518
|
} | null | undefined;
|
|
1173
1519
|
enableTranslation?: unknown;
|
|
1174
1520
|
enableTranslationAxes?: {
|
|
1175
1521
|
x?: unknown;
|
|
1176
1522
|
y?: unknown;
|
|
1177
1523
|
z?: unknown;
|
|
1524
|
+
xy?: unknown;
|
|
1525
|
+
yz?: unknown;
|
|
1526
|
+
xz?: unknown;
|
|
1178
1527
|
} | null | undefined;
|
|
1179
1528
|
scale?: number | null | undefined;
|
|
1180
1529
|
space?: "local" | "world" | null | undefined;
|
|
1530
|
+
restrictions?: z.objectInputType<{
|
|
1531
|
+
id: z.ZodString;
|
|
1532
|
+
type: z.ZodString;
|
|
1533
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1534
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1535
|
+
angle: z.ZodNumber;
|
|
1536
|
+
}, "strip", z.ZodTypeAny, {
|
|
1537
|
+
axis: number[];
|
|
1538
|
+
angle: number;
|
|
1539
|
+
}, {
|
|
1540
|
+
axis: number[];
|
|
1541
|
+
angle: number;
|
|
1542
|
+
}>>>;
|
|
1543
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1181
1544
|
};
|
|
1182
1545
|
} | {
|
|
1183
1546
|
type: "dragging";
|
|
@@ -1189,7 +1552,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1189
1552
|
activeTitle?: string | null | undefined;
|
|
1190
1553
|
activeText?: string | null | undefined;
|
|
1191
1554
|
} | null | undefined;
|
|
1192
|
-
draggingColor?: string | null | undefined;
|
|
1193
1555
|
restrictions?: z.objectInputType<{
|
|
1194
1556
|
id: z.ZodString;
|
|
1195
1557
|
type: z.ZodString;
|
|
@@ -1204,6 +1566,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1204
1566
|
angle: number;
|
|
1205
1567
|
}>>>;
|
|
1206
1568
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1569
|
+
draggingColor?: string | null | undefined;
|
|
1207
1570
|
objects?: {
|
|
1208
1571
|
nameFilter: string;
|
|
1209
1572
|
restrictions: string[];
|
|
@@ -1232,6 +1595,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1232
1595
|
minimumSelection?: number | null | undefined;
|
|
1233
1596
|
nameFilter?: string[] | null | undefined;
|
|
1234
1597
|
selectionColor?: string | null | undefined;
|
|
1598
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1235
1599
|
};
|
|
1236
1600
|
} | {
|
|
1237
1601
|
type: "gumball";
|
|
@@ -1247,26 +1611,50 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1247
1611
|
minimumSelection?: number | null | undefined;
|
|
1248
1612
|
nameFilter?: string[] | null | undefined;
|
|
1249
1613
|
selectionColor?: string | null | undefined;
|
|
1614
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1250
1615
|
enableRotation?: boolean | undefined;
|
|
1251
1616
|
enableRotationAxes?: {
|
|
1252
1617
|
x?: boolean | undefined;
|
|
1253
1618
|
y?: boolean | undefined;
|
|
1254
1619
|
z?: boolean | undefined;
|
|
1620
|
+
xy?: boolean | undefined;
|
|
1621
|
+
yz?: boolean | undefined;
|
|
1622
|
+
xz?: boolean | undefined;
|
|
1255
1623
|
} | null | undefined;
|
|
1256
1624
|
enableScaling?: boolean | undefined;
|
|
1257
1625
|
enableScalingAxes?: {
|
|
1258
1626
|
x?: boolean | undefined;
|
|
1259
1627
|
y?: boolean | undefined;
|
|
1260
1628
|
z?: boolean | undefined;
|
|
1629
|
+
xy?: boolean | undefined;
|
|
1630
|
+
yz?: boolean | undefined;
|
|
1631
|
+
xz?: boolean | undefined;
|
|
1261
1632
|
} | null | undefined;
|
|
1262
1633
|
enableTranslation?: boolean | undefined;
|
|
1263
1634
|
enableTranslationAxes?: {
|
|
1264
1635
|
x?: boolean | undefined;
|
|
1265
1636
|
y?: boolean | undefined;
|
|
1266
1637
|
z?: boolean | undefined;
|
|
1638
|
+
xy?: boolean | undefined;
|
|
1639
|
+
yz?: boolean | undefined;
|
|
1640
|
+
xz?: boolean | undefined;
|
|
1267
1641
|
} | null | undefined;
|
|
1268
1642
|
scale?: number | null | undefined;
|
|
1269
1643
|
space?: "local" | "world" | null | undefined;
|
|
1644
|
+
restrictions?: z.objectOutputType<{
|
|
1645
|
+
id: z.ZodString;
|
|
1646
|
+
type: z.ZodString;
|
|
1647
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1648
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1649
|
+
angle: z.ZodNumber;
|
|
1650
|
+
}, "strip", z.ZodTypeAny, {
|
|
1651
|
+
axis: number[];
|
|
1652
|
+
angle: number;
|
|
1653
|
+
}, {
|
|
1654
|
+
axis: number[];
|
|
1655
|
+
angle: number;
|
|
1656
|
+
}>>>;
|
|
1657
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1270
1658
|
};
|
|
1271
1659
|
} | {
|
|
1272
1660
|
type: "dragging";
|
|
@@ -1278,7 +1666,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1278
1666
|
activeTitle?: string | null | undefined;
|
|
1279
1667
|
activeText?: string | null | undefined;
|
|
1280
1668
|
} | null | undefined;
|
|
1281
|
-
draggingColor?: string | null | undefined;
|
|
1282
1669
|
restrictions?: z.objectOutputType<{
|
|
1283
1670
|
id: z.ZodString;
|
|
1284
1671
|
type: z.ZodString;
|
|
@@ -1293,6 +1680,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1293
1680
|
angle: number;
|
|
1294
1681
|
}>>>;
|
|
1295
1682
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1683
|
+
draggingColor?: string | null | undefined;
|
|
1296
1684
|
objects?: {
|
|
1297
1685
|
nameFilter: string;
|
|
1298
1686
|
restrictions: string[];
|
|
@@ -1322,6 +1710,7 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
1322
1710
|
minimumSelection?: number | null | undefined;
|
|
1323
1711
|
nameFilter?: string[] | null | undefined;
|
|
1324
1712
|
selectionColor?: string | null | undefined;
|
|
1713
|
+
deselectOnEmpty?: unknown;
|
|
1325
1714
|
};
|
|
1326
1715
|
}, {
|
|
1327
1716
|
type: "selection";
|
|
@@ -1337,6 +1726,7 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
1337
1726
|
minimumSelection?: number | null | undefined;
|
|
1338
1727
|
nameFilter?: string[] | null | undefined;
|
|
1339
1728
|
selectionColor?: string | null | undefined;
|
|
1729
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1340
1730
|
};
|
|
1341
1731
|
}>;
|
|
1342
1732
|
export declare const validateGumballParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
@@ -1353,26 +1743,50 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1353
1743
|
minimumSelection?: number | null | undefined;
|
|
1354
1744
|
nameFilter?: string[] | null | undefined;
|
|
1355
1745
|
selectionColor?: string | null | undefined;
|
|
1746
|
+
deselectOnEmpty?: unknown;
|
|
1356
1747
|
enableRotation?: unknown;
|
|
1357
1748
|
enableRotationAxes?: {
|
|
1358
1749
|
x?: unknown;
|
|
1359
1750
|
y?: unknown;
|
|
1360
1751
|
z?: unknown;
|
|
1752
|
+
xy?: unknown;
|
|
1753
|
+
yz?: unknown;
|
|
1754
|
+
xz?: unknown;
|
|
1361
1755
|
} | null | undefined;
|
|
1362
1756
|
enableScaling?: unknown;
|
|
1363
1757
|
enableScalingAxes?: {
|
|
1364
1758
|
x?: unknown;
|
|
1365
1759
|
y?: unknown;
|
|
1366
1760
|
z?: unknown;
|
|
1761
|
+
xy?: unknown;
|
|
1762
|
+
yz?: unknown;
|
|
1763
|
+
xz?: unknown;
|
|
1367
1764
|
} | null | undefined;
|
|
1368
1765
|
enableTranslation?: unknown;
|
|
1369
1766
|
enableTranslationAxes?: {
|
|
1370
1767
|
x?: unknown;
|
|
1371
1768
|
y?: unknown;
|
|
1372
1769
|
z?: unknown;
|
|
1770
|
+
xy?: unknown;
|
|
1771
|
+
yz?: unknown;
|
|
1772
|
+
xz?: unknown;
|
|
1373
1773
|
} | null | undefined;
|
|
1374
1774
|
scale?: number | null | undefined;
|
|
1375
1775
|
space?: "local" | "world" | null | undefined;
|
|
1776
|
+
restrictions?: z.objectInputType<{
|
|
1777
|
+
id: z.ZodString;
|
|
1778
|
+
type: z.ZodString;
|
|
1779
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1780
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1781
|
+
angle: z.ZodNumber;
|
|
1782
|
+
}, "strip", z.ZodTypeAny, {
|
|
1783
|
+
axis: number[];
|
|
1784
|
+
angle: number;
|
|
1785
|
+
}, {
|
|
1786
|
+
axis: number[];
|
|
1787
|
+
angle: number;
|
|
1788
|
+
}>>>;
|
|
1789
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1376
1790
|
};
|
|
1377
1791
|
}, {
|
|
1378
1792
|
type: "gumball";
|
|
@@ -1388,26 +1802,50 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1388
1802
|
minimumSelection?: number | null | undefined;
|
|
1389
1803
|
nameFilter?: string[] | null | undefined;
|
|
1390
1804
|
selectionColor?: string | null | undefined;
|
|
1805
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1391
1806
|
enableRotation?: boolean | undefined;
|
|
1392
1807
|
enableRotationAxes?: {
|
|
1393
1808
|
x?: boolean | undefined;
|
|
1394
1809
|
y?: boolean | undefined;
|
|
1395
1810
|
z?: boolean | undefined;
|
|
1811
|
+
xy?: boolean | undefined;
|
|
1812
|
+
yz?: boolean | undefined;
|
|
1813
|
+
xz?: boolean | undefined;
|
|
1396
1814
|
} | null | undefined;
|
|
1397
1815
|
enableScaling?: boolean | undefined;
|
|
1398
1816
|
enableScalingAxes?: {
|
|
1399
1817
|
x?: boolean | undefined;
|
|
1400
1818
|
y?: boolean | undefined;
|
|
1401
1819
|
z?: boolean | undefined;
|
|
1820
|
+
xy?: boolean | undefined;
|
|
1821
|
+
yz?: boolean | undefined;
|
|
1822
|
+
xz?: boolean | undefined;
|
|
1402
1823
|
} | null | undefined;
|
|
1403
1824
|
enableTranslation?: boolean | undefined;
|
|
1404
1825
|
enableTranslationAxes?: {
|
|
1405
1826
|
x?: boolean | undefined;
|
|
1406
1827
|
y?: boolean | undefined;
|
|
1407
1828
|
z?: boolean | undefined;
|
|
1829
|
+
xy?: boolean | undefined;
|
|
1830
|
+
yz?: boolean | undefined;
|
|
1831
|
+
xz?: boolean | undefined;
|
|
1408
1832
|
} | null | undefined;
|
|
1409
1833
|
scale?: number | null | undefined;
|
|
1410
1834
|
space?: "local" | "world" | null | undefined;
|
|
1835
|
+
restrictions?: z.objectOutputType<{
|
|
1836
|
+
id: z.ZodString;
|
|
1837
|
+
type: z.ZodString;
|
|
1838
|
+
rotation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1839
|
+
axis: z.ZodArray<z.ZodNumber, "many">;
|
|
1840
|
+
angle: z.ZodNumber;
|
|
1841
|
+
}, "strip", z.ZodTypeAny, {
|
|
1842
|
+
axis: number[];
|
|
1843
|
+
angle: number;
|
|
1844
|
+
}, {
|
|
1845
|
+
axis: number[];
|
|
1846
|
+
angle: number;
|
|
1847
|
+
}>>>;
|
|
1848
|
+
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1411
1849
|
};
|
|
1412
1850
|
}>;
|
|
1413
1851
|
export declare const validateDraggingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
@@ -1420,7 +1858,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
1420
1858
|
activeTitle?: string | null | undefined;
|
|
1421
1859
|
activeText?: string | null | undefined;
|
|
1422
1860
|
} | null | undefined;
|
|
1423
|
-
draggingColor?: string | null | undefined;
|
|
1424
1861
|
restrictions?: z.objectInputType<{
|
|
1425
1862
|
id: z.ZodString;
|
|
1426
1863
|
type: z.ZodString;
|
|
@@ -1435,6 +1872,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
1435
1872
|
angle: number;
|
|
1436
1873
|
}>>>;
|
|
1437
1874
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1875
|
+
draggingColor?: string | null | undefined;
|
|
1438
1876
|
objects?: {
|
|
1439
1877
|
nameFilter: string;
|
|
1440
1878
|
restrictions: string[];
|
|
@@ -1459,7 +1897,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
1459
1897
|
activeTitle?: string | null | undefined;
|
|
1460
1898
|
activeText?: string | null | undefined;
|
|
1461
1899
|
} | null | undefined;
|
|
1462
|
-
draggingColor?: string | null | undefined;
|
|
1463
1900
|
restrictions?: z.objectOutputType<{
|
|
1464
1901
|
id: z.ZodString;
|
|
1465
1902
|
type: z.ZodString;
|
|
@@ -1474,6 +1911,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
1474
1911
|
angle: number;
|
|
1475
1912
|
}>>>;
|
|
1476
1913
|
}, z.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1914
|
+
draggingColor?: string | null | undefined;
|
|
1477
1915
|
objects?: {
|
|
1478
1916
|
nameFilter: string;
|
|
1479
1917
|
restrictions: string[];
|