@shapediver/viewer.shared.types 3.15.8 → 3.15.9
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/IDrawingParametersSettings.d.ts +13 -4
- package/dist/interfaces/parameter/IDrawingParametersSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IDrawingParametersSettings.js +1 -0
- package/dist/interfaces/parameter/IDrawingParametersSettings.js.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts +67 -14
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.js +1 -0
- package/dist/interfaces/parameter/IInteractionParameterSettings.js.map +1 -1
- package/package.json +5 -5
|
@@ -124,6 +124,8 @@ export interface IDrawingParameterSettings {
|
|
|
124
124
|
/** If true, the snapping to faces is enabled, if there is a geometry restriction. (default: true) */
|
|
125
125
|
snapToFaces?: boolean;
|
|
126
126
|
};
|
|
127
|
+
/** The mode to determine when the parameter is active. (default: 'default') */
|
|
128
|
+
activeMode?: "default" | "activeOnStart";
|
|
127
129
|
};
|
|
128
130
|
display?: Partial<IVisualizationSettings>;
|
|
129
131
|
}
|
|
@@ -184,6 +186,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
184
186
|
snapToEdges?: unknown;
|
|
185
187
|
snapToFaces?: unknown;
|
|
186
188
|
}>>>;
|
|
189
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
187
190
|
}, "strip", z.ZodTypeAny, {
|
|
188
191
|
options?: {
|
|
189
192
|
showDistanceLabels?: boolean | undefined;
|
|
@@ -197,6 +200,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
197
200
|
activeTitle?: string | null | undefined;
|
|
198
201
|
activeText?: string | null | undefined;
|
|
199
202
|
} | null | undefined;
|
|
203
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
200
204
|
}, {
|
|
201
205
|
options?: {
|
|
202
206
|
showDistanceLabels?: unknown;
|
|
@@ -210,6 +214,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
210
214
|
activeTitle?: string | null | undefined;
|
|
211
215
|
activeText?: string | null | undefined;
|
|
212
216
|
} | null | undefined;
|
|
217
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
213
218
|
}>>>;
|
|
214
219
|
display: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
215
220
|
distanceLabels: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
@@ -234,6 +239,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
234
239
|
wireframeColor?: string | null | undefined;
|
|
235
240
|
}>>>;
|
|
236
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
|
+
restrictions?: any[] | null | undefined;
|
|
237
243
|
geometry?: {
|
|
238
244
|
mode: "points" | "lines";
|
|
239
245
|
minPoints?: number | null | undefined;
|
|
@@ -255,8 +261,8 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
255
261
|
activeTitle?: string | null | undefined;
|
|
256
262
|
activeText?: string | null | undefined;
|
|
257
263
|
} | null | undefined;
|
|
264
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
258
265
|
} | null | undefined;
|
|
259
|
-
restrictions?: any[] | null | undefined;
|
|
260
266
|
display?: {
|
|
261
267
|
points?: any;
|
|
262
268
|
lines?: any;
|
|
@@ -266,6 +272,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
266
272
|
wireframeColor?: string | null | undefined;
|
|
267
273
|
} | null | undefined;
|
|
268
274
|
}, {
|
|
275
|
+
restrictions?: any[] | null | undefined;
|
|
269
276
|
geometry?: {
|
|
270
277
|
mode: "points" | "lines";
|
|
271
278
|
minPoints?: number | null | undefined;
|
|
@@ -287,8 +294,8 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
287
294
|
activeTitle?: string | null | undefined;
|
|
288
295
|
activeText?: string | null | undefined;
|
|
289
296
|
} | null | undefined;
|
|
297
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
290
298
|
} | null | undefined;
|
|
291
|
-
restrictions?: any[] | null | undefined;
|
|
292
299
|
display?: {
|
|
293
300
|
points?: any;
|
|
294
301
|
lines?: any;
|
|
@@ -299,6 +306,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
299
306
|
} | null | undefined;
|
|
300
307
|
}>;
|
|
301
308
|
export declare const validateDrawingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
309
|
+
restrictions?: any[] | null | undefined;
|
|
302
310
|
geometry?: {
|
|
303
311
|
mode: "points" | "lines";
|
|
304
312
|
minPoints?: number | null | undefined;
|
|
@@ -320,8 +328,8 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
320
328
|
activeTitle?: string | null | undefined;
|
|
321
329
|
activeText?: string | null | undefined;
|
|
322
330
|
} | null | undefined;
|
|
331
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
323
332
|
} | null | undefined;
|
|
324
|
-
restrictions?: any[] | null | undefined;
|
|
325
333
|
display?: {
|
|
326
334
|
points?: any;
|
|
327
335
|
lines?: any;
|
|
@@ -331,6 +339,7 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
331
339
|
wireframeColor?: string | null | undefined;
|
|
332
340
|
} | null | undefined;
|
|
333
341
|
}, {
|
|
342
|
+
restrictions?: any[] | null | undefined;
|
|
334
343
|
geometry?: {
|
|
335
344
|
mode: "points" | "lines";
|
|
336
345
|
minPoints?: number | null | undefined;
|
|
@@ -352,8 +361,8 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
352
361
|
activeTitle?: string | null | undefined;
|
|
353
362
|
activeText?: string | null | undefined;
|
|
354
363
|
} | null | undefined;
|
|
364
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
355
365
|
} | null | undefined;
|
|
356
|
-
restrictions?: any[] | null | undefined;
|
|
357
366
|
display?: {
|
|
358
367
|
points?: any;
|
|
359
368
|
lines?: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IDrawingParametersSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,gCAAgC,EAAC,MAAM,yCAAyC,CAAC;AACzF,OAAO,EAAC,iCAAiC,EAAC,MAAM,0CAA0C,CAAC;AAC3F,OAAO,EAAC,qBAAqB,EAAC,MAAM,wBAAwB,CAAC;AAI7D,oBAAY,qBAAqB,GAAG;IACnC,MAAM,EAAE,MAAM,EAAE,EAAE,CAAC;CACnB,CAAC;AAEF,MAAM,WAAW,sBAAsB;IAGtC;;;;;OAKG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;;OAKG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;OAEG;IACH,KAAK,EAAE,gCAAgC,CAAC;IACxC;;;;;OAKG;IACH,WAAW,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,MAAM,EAAE,iCAAiC,CAAC;IAC1C;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;CAGxB;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IAGzC,QAAQ,CAAC,EAAE;QACV;;;;;;;WAOG;QACH,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC;QAEzB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;;;WAOG;QACH,KAAK,EAAE,OAAO,CAAC;QAEf;;;;;;;WAOG;QACH,SAAS,EAAE,OAAO,CAAC;KACnB,CAAC;IACF,YAAY,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACvC,OAAO,CAAC,EAAE;QACT,qFAAqF;QACrF,MAAM,CAAC,EAAE;YACR,gDAAgD;YAChD,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,8CAA8C;YAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,+CAA+C;YAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;QACF,OAAO,CAAC,EAAE;YACT,8DAA8D;YAC9D,kBAAkB,CAAC,EAAE,OAAO,CAAC;YAC7B,4DAA4D;YAC5D,eAAe,CAAC,EAAE,OAAO,CAAC;YAC1B,wGAAwG;YACxG,cAAc,CAAC,EAAE,OAAO,CAAC;YACzB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;YACtB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;SACtB,CAAC;
|
|
1
|
+
{"version":3,"file":"IDrawingParametersSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,gCAAgC,EAAC,MAAM,yCAAyC,CAAC;AACzF,OAAO,EAAC,iCAAiC,EAAC,MAAM,0CAA0C,CAAC;AAC3F,OAAO,EAAC,qBAAqB,EAAC,MAAM,wBAAwB,CAAC;AAI7D,oBAAY,qBAAqB,GAAG;IACnC,MAAM,EAAE,MAAM,EAAE,EAAE,CAAC;CACnB,CAAC;AAEF,MAAM,WAAW,sBAAsB;IAGtC;;;;;OAKG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;;OAKG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;OAEG;IACH,KAAK,EAAE,gCAAgC,CAAC;IACxC;;;;;OAKG;IACH,WAAW,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,MAAM,EAAE,iCAAiC,CAAC;IAC1C;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;CAGxB;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IAGzC,QAAQ,CAAC,EAAE;QACV;;;;;;;WAOG;QACH,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC;QAEzB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;;;WAOG;QACH,KAAK,EAAE,OAAO,CAAC;QAEf;;;;;;;WAOG;QACH,SAAS,EAAE,OAAO,CAAC;KACnB,CAAC;IACF,YAAY,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACvC,OAAO,CAAC,EAAE;QACT,qFAAqF;QACrF,MAAM,CAAC,EAAE;YACR,gDAAgD;YAChD,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,8CAA8C;YAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,+CAA+C;YAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;QACF,OAAO,CAAC,EAAE;YACT,8DAA8D;YAC9D,kBAAkB,CAAC,EAAE,OAAO,CAAC;YAC7B,4DAA4D;YAC5D,eAAe,CAAC,EAAE,OAAO,CAAC;YAC1B,wGAAwG;YACxG,cAAc,CAAC,EAAE,OAAO,CAAC;YACzB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;YACtB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;SACtB,CAAC;QACF,+EAA+E;QAC/E,UAAU,CAAC,EAAE,SAAS,GAAG,eAAe,CAAC;KACzC,CAAC;IACF,OAAO,CAAC,EAAE,OAAO,CAAC,sBAAsB,CAAC,CAAC;CAG1C;AAaD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgDtC,CAAC;AAEH,eAAO,MAAM,gCAAgC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IDrawingParametersSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;
|
|
1
|
+
{"version":3,"file":"IDrawingParametersSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AAqJtB,4BAA4B;AAE5B,wBAAwB;AAExB,MAAM,eAAe,GAAG,OAAC,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,EAAE;IAC5C,IAAI,GAAG,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IAChC,IAAI,GAAG,KAAK,OAAO;QAAE,OAAO,KAAK,CAAC;IAClC,IAAI,GAAG,KAAK,IAAI;QAAE,OAAO,SAAS,CAAC;IACnC,OAAO,GAAG,CAAC;AACZ,CAAC,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;AAEd,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,QAAQ,EAAE,OAAC;SACT,MAAM,CAAC;QACP,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;QACjC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QAC3C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QAC3C,kBAAkB,EAAE,eAAe;QACnC,KAAK,EAAE,eAAe;QACtB,SAAS,EAAE,eAAe;KAC1B,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACZ,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpD,OAAO,EAAE,OAAC;SACR,MAAM,CAAC;QACP,MAAM,EAAE,OAAC;aACP,MAAM,CAAC;YACP,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YAC/C,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YAC7C,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;SAC5C,CAAC;aACD,QAAQ,EAAE;aACV,QAAQ,EAAE;QACZ,OAAO,EAAE,OAAC;aACR,MAAM,CAAC;YACP,kBAAkB,EAAE,eAAe;YACnC,eAAe,EAAE,eAAe;YAChC,cAAc,EAAE,eAAe;YAC/B,WAAW,EAAE,eAAe;YAC5B,WAAW,EAAE,eAAe;SAC5B,CAAC;aACD,QAAQ,EAAE;aACV,QAAQ,EAAE;QACZ,UAAU,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC,CAAC,QAAQ,EAAE;KAC3D,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACZ,OAAO,EAAE,OAAC;SACR,MAAM,CAAC;QACP,cAAc,EAAE,eAAe;QAC/B,4BAA4B,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QAC9D,KAAK,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QACpC,MAAM,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QACrC,SAAS,EAAE,eAAe;QAC1B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;KAChD,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACZ,CAAC,CAAC;AAEI,MAAM,gCAAgC,GAAG,CAAC,KAAc,EAAE,EAAE;IAClE,OAAO,mCAA2B,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;AACrD,CAAC,CAAC;AAFW,QAAA,gCAAgC,oCAE3C;AAEF,2BAA2B"}
|
|
@@ -20,6 +20,8 @@ export interface IInteractionParameterProps {
|
|
|
20
20
|
/** The text when the parameter is inactive. */
|
|
21
21
|
activeText?: string;
|
|
22
22
|
};
|
|
23
|
+
/** The mode to determine when the parameter is active. (default: 'default') */
|
|
24
|
+
activeMode?: "default" | "activeOnStart";
|
|
23
25
|
}
|
|
24
26
|
/**
|
|
25
27
|
* The definition of an interaction parameter.
|
|
@@ -55,6 +57,7 @@ export declare const ISelectionParameterPropsJsonSchema: z.ZodObject<z.objectUti
|
|
|
55
57
|
activeTitle?: string | null | undefined;
|
|
56
58
|
activeText?: string | null | undefined;
|
|
57
59
|
}>>>;
|
|
60
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
58
61
|
}>, "strip", z.ZodTypeAny, {
|
|
59
62
|
hover?: boolean | undefined;
|
|
60
63
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -63,6 +66,7 @@ export declare const ISelectionParameterPropsJsonSchema: z.ZodObject<z.objectUti
|
|
|
63
66
|
activeTitle?: string | null | undefined;
|
|
64
67
|
activeText?: string | null | undefined;
|
|
65
68
|
} | null | undefined;
|
|
69
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
66
70
|
maximumSelection?: number | null | undefined;
|
|
67
71
|
minimumSelection?: number | null | undefined;
|
|
68
72
|
nameFilter?: string[] | null | undefined;
|
|
@@ -77,6 +81,7 @@ export declare const ISelectionParameterPropsJsonSchema: z.ZodObject<z.objectUti
|
|
|
77
81
|
activeTitle?: string | null | undefined;
|
|
78
82
|
activeText?: string | null | undefined;
|
|
79
83
|
} | null | undefined;
|
|
84
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
80
85
|
maximumSelection?: number | null | undefined;
|
|
81
86
|
minimumSelection?: number | null | undefined;
|
|
82
87
|
nameFilter?: string[] | null | undefined;
|
|
@@ -109,6 +114,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
109
114
|
activeTitle?: string | null | undefined;
|
|
110
115
|
activeText?: string | null | undefined;
|
|
111
116
|
}>>>;
|
|
117
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
112
118
|
}>, "strip", z.ZodTypeAny, {
|
|
113
119
|
hover?: boolean | undefined;
|
|
114
120
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -117,6 +123,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
117
123
|
activeTitle?: string | null | undefined;
|
|
118
124
|
activeText?: string | null | undefined;
|
|
119
125
|
} | null | undefined;
|
|
126
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
120
127
|
maximumSelection?: number | null | undefined;
|
|
121
128
|
minimumSelection?: number | null | undefined;
|
|
122
129
|
nameFilter?: string[] | null | undefined;
|
|
@@ -131,6 +138,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
131
138
|
activeTitle?: string | null | undefined;
|
|
132
139
|
activeText?: string | null | undefined;
|
|
133
140
|
} | null | undefined;
|
|
141
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
134
142
|
maximumSelection?: number | null | undefined;
|
|
135
143
|
minimumSelection?: number | null | undefined;
|
|
136
144
|
nameFilter?: string[] | null | undefined;
|
|
@@ -148,6 +156,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
148
156
|
activeTitle?: string | null | undefined;
|
|
149
157
|
activeText?: string | null | undefined;
|
|
150
158
|
} | null | undefined;
|
|
159
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
151
160
|
maximumSelection?: number | null | undefined;
|
|
152
161
|
minimumSelection?: number | null | undefined;
|
|
153
162
|
nameFilter?: string[] | null | undefined;
|
|
@@ -165,6 +174,7 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
165
174
|
activeTitle?: string | null | undefined;
|
|
166
175
|
activeText?: string | null | undefined;
|
|
167
176
|
} | null | undefined;
|
|
177
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
168
178
|
maximumSelection?: number | null | undefined;
|
|
169
179
|
minimumSelection?: number | null | undefined;
|
|
170
180
|
nameFilter?: string[] | null | undefined;
|
|
@@ -317,8 +327,8 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
317
327
|
activeTitle?: string | null | undefined;
|
|
318
328
|
activeText?: string | null | undefined;
|
|
319
329
|
}>>>;
|
|
330
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
320
331
|
}>, "strip", z.ZodTypeAny, {
|
|
321
|
-
scale?: number | null | undefined;
|
|
322
332
|
hover?: boolean | undefined;
|
|
323
333
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
324
334
|
prompt?: {
|
|
@@ -326,6 +336,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
326
336
|
activeTitle?: string | null | undefined;
|
|
327
337
|
activeText?: string | null | undefined;
|
|
328
338
|
} | null | undefined;
|
|
339
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
329
340
|
maximumSelection?: number | null | undefined;
|
|
330
341
|
minimumSelection?: number | null | undefined;
|
|
331
342
|
nameFilter?: string[] | null | undefined;
|
|
@@ -359,6 +370,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
359
370
|
yz?: boolean | undefined;
|
|
360
371
|
xz?: boolean | undefined;
|
|
361
372
|
} | null | undefined;
|
|
373
|
+
scale?: number | null | undefined;
|
|
362
374
|
space?: "local" | "world" | null | undefined;
|
|
363
375
|
restrictions?: z.objectOutputType<{
|
|
364
376
|
id: z.ZodString;
|
|
@@ -379,7 +391,6 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
379
391
|
restrictions: string[];
|
|
380
392
|
}[] | null | undefined;
|
|
381
393
|
}, {
|
|
382
|
-
scale?: number | null | undefined;
|
|
383
394
|
hover?: unknown;
|
|
384
395
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
385
396
|
prompt?: {
|
|
@@ -387,6 +398,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
387
398
|
activeTitle?: string | null | undefined;
|
|
388
399
|
activeText?: string | null | undefined;
|
|
389
400
|
} | null | undefined;
|
|
401
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
390
402
|
maximumSelection?: number | null | undefined;
|
|
391
403
|
minimumSelection?: number | null | undefined;
|
|
392
404
|
nameFilter?: string[] | null | undefined;
|
|
@@ -420,6 +432,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
420
432
|
yz?: unknown;
|
|
421
433
|
xz?: unknown;
|
|
422
434
|
} | null | undefined;
|
|
435
|
+
scale?: number | null | undefined;
|
|
423
436
|
space?: "local" | "world" | null | undefined;
|
|
424
437
|
restrictions?: z.objectInputType<{
|
|
425
438
|
id: z.ZodString;
|
|
@@ -586,8 +599,8 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
586
599
|
activeTitle?: string | null | undefined;
|
|
587
600
|
activeText?: string | null | undefined;
|
|
588
601
|
}>>>;
|
|
602
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
589
603
|
}>, "strip", z.ZodTypeAny, {
|
|
590
|
-
scale?: number | null | undefined;
|
|
591
604
|
hover?: boolean | undefined;
|
|
592
605
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
593
606
|
prompt?: {
|
|
@@ -595,6 +608,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
595
608
|
activeTitle?: string | null | undefined;
|
|
596
609
|
activeText?: string | null | undefined;
|
|
597
610
|
} | null | undefined;
|
|
611
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
598
612
|
maximumSelection?: number | null | undefined;
|
|
599
613
|
minimumSelection?: number | null | undefined;
|
|
600
614
|
nameFilter?: string[] | null | undefined;
|
|
@@ -628,6 +642,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
628
642
|
yz?: boolean | undefined;
|
|
629
643
|
xz?: boolean | undefined;
|
|
630
644
|
} | null | undefined;
|
|
645
|
+
scale?: number | null | undefined;
|
|
631
646
|
space?: "local" | "world" | null | undefined;
|
|
632
647
|
restrictions?: z.objectOutputType<{
|
|
633
648
|
id: z.ZodString;
|
|
@@ -648,7 +663,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
648
663
|
restrictions: string[];
|
|
649
664
|
}[] | null | undefined;
|
|
650
665
|
}, {
|
|
651
|
-
scale?: number | null | undefined;
|
|
652
666
|
hover?: unknown;
|
|
653
667
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
654
668
|
prompt?: {
|
|
@@ -656,6 +670,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
656
670
|
activeTitle?: string | null | undefined;
|
|
657
671
|
activeText?: string | null | undefined;
|
|
658
672
|
} | null | undefined;
|
|
673
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
659
674
|
maximumSelection?: number | null | undefined;
|
|
660
675
|
minimumSelection?: number | null | undefined;
|
|
661
676
|
nameFilter?: string[] | null | undefined;
|
|
@@ -689,6 +704,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
689
704
|
yz?: unknown;
|
|
690
705
|
xz?: unknown;
|
|
691
706
|
} | null | undefined;
|
|
707
|
+
scale?: number | null | undefined;
|
|
692
708
|
space?: "local" | "world" | null | undefined;
|
|
693
709
|
restrictions?: z.objectInputType<{
|
|
694
710
|
id: z.ZodString;
|
|
@@ -712,7 +728,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
712
728
|
}, "strip", z.ZodTypeAny, {
|
|
713
729
|
type: "gumball";
|
|
714
730
|
props: {
|
|
715
|
-
scale?: number | null | undefined;
|
|
716
731
|
hover?: boolean | undefined;
|
|
717
732
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
718
733
|
prompt?: {
|
|
@@ -720,6 +735,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
720
735
|
activeTitle?: string | null | undefined;
|
|
721
736
|
activeText?: string | null | undefined;
|
|
722
737
|
} | null | undefined;
|
|
738
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
723
739
|
maximumSelection?: number | null | undefined;
|
|
724
740
|
minimumSelection?: number | null | undefined;
|
|
725
741
|
nameFilter?: string[] | null | undefined;
|
|
@@ -753,6 +769,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
753
769
|
yz?: boolean | undefined;
|
|
754
770
|
xz?: boolean | undefined;
|
|
755
771
|
} | null | undefined;
|
|
772
|
+
scale?: number | null | undefined;
|
|
756
773
|
space?: "local" | "world" | null | undefined;
|
|
757
774
|
restrictions?: z.objectOutputType<{
|
|
758
775
|
id: z.ZodString;
|
|
@@ -776,7 +793,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
776
793
|
}, {
|
|
777
794
|
type: "gumball";
|
|
778
795
|
props: {
|
|
779
|
-
scale?: number | null | undefined;
|
|
780
796
|
hover?: unknown;
|
|
781
797
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
782
798
|
prompt?: {
|
|
@@ -784,6 +800,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
784
800
|
activeTitle?: string | null | undefined;
|
|
785
801
|
activeText?: string | null | undefined;
|
|
786
802
|
} | null | undefined;
|
|
803
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
787
804
|
maximumSelection?: number | null | undefined;
|
|
788
805
|
minimumSelection?: number | null | undefined;
|
|
789
806
|
nameFilter?: string[] | null | undefined;
|
|
@@ -817,6 +834,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
817
834
|
yz?: unknown;
|
|
818
835
|
xz?: unknown;
|
|
819
836
|
} | null | undefined;
|
|
837
|
+
scale?: number | null | undefined;
|
|
820
838
|
space?: "local" | "world" | null | undefined;
|
|
821
839
|
restrictions?: z.objectInputType<{
|
|
822
840
|
id: z.ZodString;
|
|
@@ -954,6 +972,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
954
972
|
activeTitle?: string | null | undefined;
|
|
955
973
|
activeText?: string | null | undefined;
|
|
956
974
|
}>>>;
|
|
975
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
957
976
|
}>, "strip", z.ZodTypeAny, {
|
|
958
977
|
hover?: boolean | undefined;
|
|
959
978
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -962,6 +981,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
962
981
|
activeTitle?: string | null | undefined;
|
|
963
982
|
activeText?: string | null | undefined;
|
|
964
983
|
} | null | undefined;
|
|
984
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
965
985
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
966
986
|
restrictions?: z.objectOutputType<{
|
|
967
987
|
id: z.ZodString;
|
|
@@ -999,6 +1019,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
999
1019
|
activeTitle?: string | null | undefined;
|
|
1000
1020
|
activeText?: string | null | undefined;
|
|
1001
1021
|
} | null | undefined;
|
|
1022
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1002
1023
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1003
1024
|
restrictions?: z.objectInputType<{
|
|
1004
1025
|
id: z.ZodString;
|
|
@@ -1147,6 +1168,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1147
1168
|
activeTitle?: string | null | undefined;
|
|
1148
1169
|
activeText?: string | null | undefined;
|
|
1149
1170
|
}>>>;
|
|
1171
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
1150
1172
|
}>, "strip", z.ZodTypeAny, {
|
|
1151
1173
|
hover?: boolean | undefined;
|
|
1152
1174
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -1155,6 +1177,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1155
1177
|
activeTitle?: string | null | undefined;
|
|
1156
1178
|
activeText?: string | null | undefined;
|
|
1157
1179
|
} | null | undefined;
|
|
1180
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1158
1181
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1159
1182
|
restrictions?: z.objectOutputType<{
|
|
1160
1183
|
id: z.ZodString;
|
|
@@ -1192,6 +1215,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1192
1215
|
activeTitle?: string | null | undefined;
|
|
1193
1216
|
activeText?: string | null | undefined;
|
|
1194
1217
|
} | null | undefined;
|
|
1218
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1195
1219
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1196
1220
|
restrictions?: z.objectInputType<{
|
|
1197
1221
|
id: z.ZodString;
|
|
@@ -1232,6 +1256,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1232
1256
|
activeTitle?: string | null | undefined;
|
|
1233
1257
|
activeText?: string | null | undefined;
|
|
1234
1258
|
} | null | undefined;
|
|
1259
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1235
1260
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1236
1261
|
restrictions?: z.objectOutputType<{
|
|
1237
1262
|
id: z.ZodString;
|
|
@@ -1272,6 +1297,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1272
1297
|
activeTitle?: string | null | undefined;
|
|
1273
1298
|
activeText?: string | null | undefined;
|
|
1274
1299
|
} | null | undefined;
|
|
1300
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1275
1301
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1276
1302
|
restrictions?: z.objectInputType<{
|
|
1277
1303
|
id: z.ZodString;
|
|
@@ -1328,6 +1354,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1328
1354
|
activeTitle?: string | null | undefined;
|
|
1329
1355
|
activeText?: string | null | undefined;
|
|
1330
1356
|
}>>>;
|
|
1357
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
1331
1358
|
}>, "strip", z.ZodTypeAny, {
|
|
1332
1359
|
hover?: boolean | undefined;
|
|
1333
1360
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -1336,6 +1363,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1336
1363
|
activeTitle?: string | null | undefined;
|
|
1337
1364
|
activeText?: string | null | undefined;
|
|
1338
1365
|
} | null | undefined;
|
|
1366
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1339
1367
|
maximumSelection?: number | null | undefined;
|
|
1340
1368
|
minimumSelection?: number | null | undefined;
|
|
1341
1369
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1350,6 +1378,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1350
1378
|
activeTitle?: string | null | undefined;
|
|
1351
1379
|
activeText?: string | null | undefined;
|
|
1352
1380
|
} | null | undefined;
|
|
1381
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1353
1382
|
maximumSelection?: number | null | undefined;
|
|
1354
1383
|
minimumSelection?: number | null | undefined;
|
|
1355
1384
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1367,6 +1396,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1367
1396
|
activeTitle?: string | null | undefined;
|
|
1368
1397
|
activeText?: string | null | undefined;
|
|
1369
1398
|
} | null | undefined;
|
|
1399
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1370
1400
|
maximumSelection?: number | null | undefined;
|
|
1371
1401
|
minimumSelection?: number | null | undefined;
|
|
1372
1402
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1384,6 +1414,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1384
1414
|
activeTitle?: string | null | undefined;
|
|
1385
1415
|
activeText?: string | null | undefined;
|
|
1386
1416
|
} | null | undefined;
|
|
1417
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1387
1418
|
maximumSelection?: number | null | undefined;
|
|
1388
1419
|
minimumSelection?: number | null | undefined;
|
|
1389
1420
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1537,8 +1568,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1537
1568
|
activeTitle?: string | null | undefined;
|
|
1538
1569
|
activeText?: string | null | undefined;
|
|
1539
1570
|
}>>>;
|
|
1571
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
1540
1572
|
}>, "strip", z.ZodTypeAny, {
|
|
1541
|
-
scale?: number | null | undefined;
|
|
1542
1573
|
hover?: boolean | undefined;
|
|
1543
1574
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1544
1575
|
prompt?: {
|
|
@@ -1546,6 +1577,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1546
1577
|
activeTitle?: string | null | undefined;
|
|
1547
1578
|
activeText?: string | null | undefined;
|
|
1548
1579
|
} | null | undefined;
|
|
1580
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1549
1581
|
maximumSelection?: number | null | undefined;
|
|
1550
1582
|
minimumSelection?: number | null | undefined;
|
|
1551
1583
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1579,6 +1611,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1579
1611
|
yz?: boolean | undefined;
|
|
1580
1612
|
xz?: boolean | undefined;
|
|
1581
1613
|
} | null | undefined;
|
|
1614
|
+
scale?: number | null | undefined;
|
|
1582
1615
|
space?: "local" | "world" | null | undefined;
|
|
1583
1616
|
restrictions?: z.objectOutputType<{
|
|
1584
1617
|
id: z.ZodString;
|
|
@@ -1599,7 +1632,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1599
1632
|
restrictions: string[];
|
|
1600
1633
|
}[] | null | undefined;
|
|
1601
1634
|
}, {
|
|
1602
|
-
scale?: number | null | undefined;
|
|
1603
1635
|
hover?: unknown;
|
|
1604
1636
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1605
1637
|
prompt?: {
|
|
@@ -1607,6 +1639,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1607
1639
|
activeTitle?: string | null | undefined;
|
|
1608
1640
|
activeText?: string | null | undefined;
|
|
1609
1641
|
} | null | undefined;
|
|
1642
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1610
1643
|
maximumSelection?: number | null | undefined;
|
|
1611
1644
|
minimumSelection?: number | null | undefined;
|
|
1612
1645
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1640,6 +1673,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1640
1673
|
yz?: unknown;
|
|
1641
1674
|
xz?: unknown;
|
|
1642
1675
|
} | null | undefined;
|
|
1676
|
+
scale?: number | null | undefined;
|
|
1643
1677
|
space?: "local" | "world" | null | undefined;
|
|
1644
1678
|
restrictions?: z.objectInputType<{
|
|
1645
1679
|
id: z.ZodString;
|
|
@@ -1663,7 +1697,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1663
1697
|
}, "strip", z.ZodTypeAny, {
|
|
1664
1698
|
type: "gumball";
|
|
1665
1699
|
props: {
|
|
1666
|
-
scale?: number | null | undefined;
|
|
1667
1700
|
hover?: boolean | undefined;
|
|
1668
1701
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1669
1702
|
prompt?: {
|
|
@@ -1671,6 +1704,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1671
1704
|
activeTitle?: string | null | undefined;
|
|
1672
1705
|
activeText?: string | null | undefined;
|
|
1673
1706
|
} | null | undefined;
|
|
1707
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1674
1708
|
maximumSelection?: number | null | undefined;
|
|
1675
1709
|
minimumSelection?: number | null | undefined;
|
|
1676
1710
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1704,6 +1738,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1704
1738
|
yz?: boolean | undefined;
|
|
1705
1739
|
xz?: boolean | undefined;
|
|
1706
1740
|
} | null | undefined;
|
|
1741
|
+
scale?: number | null | undefined;
|
|
1707
1742
|
space?: "local" | "world" | null | undefined;
|
|
1708
1743
|
restrictions?: z.objectOutputType<{
|
|
1709
1744
|
id: z.ZodString;
|
|
@@ -1727,7 +1762,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1727
1762
|
}, {
|
|
1728
1763
|
type: "gumball";
|
|
1729
1764
|
props: {
|
|
1730
|
-
scale?: number | null | undefined;
|
|
1731
1765
|
hover?: unknown;
|
|
1732
1766
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1733
1767
|
prompt?: {
|
|
@@ -1735,6 +1769,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1735
1769
|
activeTitle?: string | null | undefined;
|
|
1736
1770
|
activeText?: string | null | undefined;
|
|
1737
1771
|
} | null | undefined;
|
|
1772
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1738
1773
|
maximumSelection?: number | null | undefined;
|
|
1739
1774
|
minimumSelection?: number | null | undefined;
|
|
1740
1775
|
nameFilter?: string[] | null | undefined;
|
|
@@ -1768,6 +1803,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1768
1803
|
yz?: unknown;
|
|
1769
1804
|
xz?: unknown;
|
|
1770
1805
|
} | null | undefined;
|
|
1806
|
+
scale?: number | null | undefined;
|
|
1771
1807
|
space?: "local" | "world" | null | undefined;
|
|
1772
1808
|
restrictions?: z.objectInputType<{
|
|
1773
1809
|
id: z.ZodString;
|
|
@@ -1906,6 +1942,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1906
1942
|
activeTitle?: string | null | undefined;
|
|
1907
1943
|
activeText?: string | null | undefined;
|
|
1908
1944
|
}>>>;
|
|
1945
|
+
activeMode: z.ZodOptional<z.ZodEnum<["default", "activeOnStart"]>>;
|
|
1909
1946
|
}>, "strip", z.ZodTypeAny, {
|
|
1910
1947
|
hover?: boolean | undefined;
|
|
1911
1948
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
@@ -1914,6 +1951,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1914
1951
|
activeTitle?: string | null | undefined;
|
|
1915
1952
|
activeText?: string | null | undefined;
|
|
1916
1953
|
} | null | undefined;
|
|
1954
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1917
1955
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1918
1956
|
restrictions?: z.objectOutputType<{
|
|
1919
1957
|
id: z.ZodString;
|
|
@@ -1951,6 +1989,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1951
1989
|
activeTitle?: string | null | undefined;
|
|
1952
1990
|
activeText?: string | null | undefined;
|
|
1953
1991
|
} | null | undefined;
|
|
1992
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1954
1993
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1955
1994
|
restrictions?: z.objectInputType<{
|
|
1956
1995
|
id: z.ZodString;
|
|
@@ -1991,6 +2030,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1991
2030
|
activeTitle?: string | null | undefined;
|
|
1992
2031
|
activeText?: string | null | undefined;
|
|
1993
2032
|
} | null | undefined;
|
|
2033
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
1994
2034
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1995
2035
|
restrictions?: z.objectOutputType<{
|
|
1996
2036
|
id: z.ZodString;
|
|
@@ -2031,6 +2071,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2031
2071
|
activeTitle?: string | null | undefined;
|
|
2032
2072
|
activeText?: string | null | undefined;
|
|
2033
2073
|
} | null | undefined;
|
|
2074
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2034
2075
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2035
2076
|
restrictions?: z.objectInputType<{
|
|
2036
2077
|
id: z.ZodString;
|
|
@@ -2072,6 +2113,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2072
2113
|
activeTitle?: string | null | undefined;
|
|
2073
2114
|
activeText?: string | null | undefined;
|
|
2074
2115
|
} | null | undefined;
|
|
2116
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2075
2117
|
maximumSelection?: number | null | undefined;
|
|
2076
2118
|
minimumSelection?: number | null | undefined;
|
|
2077
2119
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2082,7 +2124,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2082
2124
|
} | {
|
|
2083
2125
|
type: "gumball";
|
|
2084
2126
|
props: {
|
|
2085
|
-
scale?: number | null | undefined;
|
|
2086
2127
|
hover?: unknown;
|
|
2087
2128
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2088
2129
|
prompt?: {
|
|
@@ -2090,6 +2131,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2090
2131
|
activeTitle?: string | null | undefined;
|
|
2091
2132
|
activeText?: string | null | undefined;
|
|
2092
2133
|
} | null | undefined;
|
|
2134
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2093
2135
|
maximumSelection?: number | null | undefined;
|
|
2094
2136
|
minimumSelection?: number | null | undefined;
|
|
2095
2137
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2123,6 +2165,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2123
2165
|
yz?: unknown;
|
|
2124
2166
|
xz?: unknown;
|
|
2125
2167
|
} | null | undefined;
|
|
2168
|
+
scale?: number | null | undefined;
|
|
2126
2169
|
space?: "local" | "world" | null | undefined;
|
|
2127
2170
|
restrictions?: z.objectInputType<{
|
|
2128
2171
|
id: z.ZodString;
|
|
@@ -2153,6 +2196,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2153
2196
|
activeTitle?: string | null | undefined;
|
|
2154
2197
|
activeText?: string | null | undefined;
|
|
2155
2198
|
} | null | undefined;
|
|
2199
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2156
2200
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2157
2201
|
restrictions?: z.objectInputType<{
|
|
2158
2202
|
id: z.ZodString;
|
|
@@ -2193,6 +2237,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2193
2237
|
activeTitle?: string | null | undefined;
|
|
2194
2238
|
activeText?: string | null | undefined;
|
|
2195
2239
|
} | null | undefined;
|
|
2240
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2196
2241
|
maximumSelection?: number | null | undefined;
|
|
2197
2242
|
minimumSelection?: number | null | undefined;
|
|
2198
2243
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2203,7 +2248,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2203
2248
|
} | {
|
|
2204
2249
|
type: "gumball";
|
|
2205
2250
|
props: {
|
|
2206
|
-
scale?: number | null | undefined;
|
|
2207
2251
|
hover?: boolean | undefined;
|
|
2208
2252
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2209
2253
|
prompt?: {
|
|
@@ -2211,6 +2255,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2211
2255
|
activeTitle?: string | null | undefined;
|
|
2212
2256
|
activeText?: string | null | undefined;
|
|
2213
2257
|
} | null | undefined;
|
|
2258
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2214
2259
|
maximumSelection?: number | null | undefined;
|
|
2215
2260
|
minimumSelection?: number | null | undefined;
|
|
2216
2261
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2244,6 +2289,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2244
2289
|
yz?: boolean | undefined;
|
|
2245
2290
|
xz?: boolean | undefined;
|
|
2246
2291
|
} | null | undefined;
|
|
2292
|
+
scale?: number | null | undefined;
|
|
2247
2293
|
space?: "local" | "world" | null | undefined;
|
|
2248
2294
|
restrictions?: z.objectOutputType<{
|
|
2249
2295
|
id: z.ZodString;
|
|
@@ -2274,6 +2320,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2274
2320
|
activeTitle?: string | null | undefined;
|
|
2275
2321
|
activeText?: string | null | undefined;
|
|
2276
2322
|
} | null | undefined;
|
|
2323
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2277
2324
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2278
2325
|
restrictions?: z.objectOutputType<{
|
|
2279
2326
|
id: z.ZodString;
|
|
@@ -2315,6 +2362,7 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2315
2362
|
activeTitle?: string | null | undefined;
|
|
2316
2363
|
activeText?: string | null | undefined;
|
|
2317
2364
|
} | null | undefined;
|
|
2365
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2318
2366
|
maximumSelection?: number | null | undefined;
|
|
2319
2367
|
minimumSelection?: number | null | undefined;
|
|
2320
2368
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2332,6 +2380,7 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2332
2380
|
activeTitle?: string | null | undefined;
|
|
2333
2381
|
activeText?: string | null | undefined;
|
|
2334
2382
|
} | null | undefined;
|
|
2383
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2335
2384
|
maximumSelection?: number | null | undefined;
|
|
2336
2385
|
minimumSelection?: number | null | undefined;
|
|
2337
2386
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2343,7 +2392,6 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2343
2392
|
export declare const validateGumballParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2344
2393
|
type: "gumball";
|
|
2345
2394
|
props: {
|
|
2346
|
-
scale?: number | null | undefined;
|
|
2347
2395
|
hover?: unknown;
|
|
2348
2396
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2349
2397
|
prompt?: {
|
|
@@ -2351,6 +2399,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2351
2399
|
activeTitle?: string | null | undefined;
|
|
2352
2400
|
activeText?: string | null | undefined;
|
|
2353
2401
|
} | null | undefined;
|
|
2402
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2354
2403
|
maximumSelection?: number | null | undefined;
|
|
2355
2404
|
minimumSelection?: number | null | undefined;
|
|
2356
2405
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2384,6 +2433,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2384
2433
|
yz?: unknown;
|
|
2385
2434
|
xz?: unknown;
|
|
2386
2435
|
} | null | undefined;
|
|
2436
|
+
scale?: number | null | undefined;
|
|
2387
2437
|
space?: "local" | "world" | null | undefined;
|
|
2388
2438
|
restrictions?: z.objectInputType<{
|
|
2389
2439
|
id: z.ZodString;
|
|
@@ -2407,7 +2457,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2407
2457
|
}, {
|
|
2408
2458
|
type: "gumball";
|
|
2409
2459
|
props: {
|
|
2410
|
-
scale?: number | null | undefined;
|
|
2411
2460
|
hover?: boolean | undefined;
|
|
2412
2461
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2413
2462
|
prompt?: {
|
|
@@ -2415,6 +2464,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2415
2464
|
activeTitle?: string | null | undefined;
|
|
2416
2465
|
activeText?: string | null | undefined;
|
|
2417
2466
|
} | null | undefined;
|
|
2467
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2418
2468
|
maximumSelection?: number | null | undefined;
|
|
2419
2469
|
minimumSelection?: number | null | undefined;
|
|
2420
2470
|
nameFilter?: string[] | null | undefined;
|
|
@@ -2448,6 +2498,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2448
2498
|
yz?: boolean | undefined;
|
|
2449
2499
|
xz?: boolean | undefined;
|
|
2450
2500
|
} | null | undefined;
|
|
2501
|
+
scale?: number | null | undefined;
|
|
2451
2502
|
space?: "local" | "world" | null | undefined;
|
|
2452
2503
|
restrictions?: z.objectOutputType<{
|
|
2453
2504
|
id: z.ZodString;
|
|
@@ -2479,6 +2530,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2479
2530
|
activeTitle?: string | null | undefined;
|
|
2480
2531
|
activeText?: string | null | undefined;
|
|
2481
2532
|
} | null | undefined;
|
|
2533
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2482
2534
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2483
2535
|
restrictions?: z.objectInputType<{
|
|
2484
2536
|
id: z.ZodString;
|
|
@@ -2519,6 +2571,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2519
2571
|
activeTitle?: string | null | undefined;
|
|
2520
2572
|
activeText?: string | null | undefined;
|
|
2521
2573
|
} | null | undefined;
|
|
2574
|
+
activeMode?: "default" | "activeOnStart" | undefined;
|
|
2522
2575
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2523
2576
|
restrictions?: z.objectOutputType<{
|
|
2524
2577
|
id: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IInteractionParameterSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IInteractionParameterSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,yCAAyC,EAAC,MAAM,wCAAwC,CAAC;AACjG,OAAO,EAAC,wBAAwB,EAAC,MAAM,qDAAqD,CAAC;AAI7F,oBAAY,gCAAgC,GACzC,WAAW,GACX,SAAS,GACT,UAAU,CAAC;AAEd,oBAAY,iBAAiB,GAC1B,MAAM,GACN,yCAAyC,GACzC,wBAAwB,GACxB,IAAI,CAAC;AAMR;;GAEG;AACH,MAAM,WAAW,0BAA0B;IAG1C,oDAAoD;IACpD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,2EAA2E;IAC3E,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,qFAAqF;IACrF,MAAM,CAAC,EAAE;QACR,gDAAgD;QAChD,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,8CAA8C;QAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,+CAA+C;QAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;
|
|
1
|
+
{"version":3,"file":"IInteractionParameterSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IInteractionParameterSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,yCAAyC,EAAC,MAAM,wCAAwC,CAAC;AACjG,OAAO,EAAC,wBAAwB,EAAC,MAAM,qDAAqD,CAAC;AAI7F,oBAAY,gCAAgC,GACzC,WAAW,GACX,SAAS,GACT,UAAU,CAAC;AAEd,oBAAY,iBAAiB,GAC1B,MAAM,GACN,yCAAyC,GACzC,wBAAwB,GACxB,IAAI,CAAC;AAMR;;GAEG;AACH,MAAM,WAAW,0BAA0B;IAG1C,oDAAoD;IACpD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,2EAA2E;IAC3E,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,qFAAqF;IACrF,MAAM,CAAC,EAAE;QACR,gDAAgD;QAChD,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,8CAA8C;QAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,+CAA+C;QAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,+EAA+E;IAC/E,UAAU,CAAC,EAAE,SAAS,GAAG,eAAe,CAAC;CAEzC;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAG7C,8CAA8C;IAC9C,KAAK,EAAE,0BAA0B,CAAC;IAClC,0CAA0C;IAC1C,IAAI,EAAE,gCAAgC,CAAC;CAGvC;AA+BD,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASA,CAAC;AAEhD,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxC,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0EE,CAAC;AAEhD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiDC,CAAC;AAEhD,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEV,CAAC;AAEnC,eAAO,MAAM,oCAAoC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElE,CAAC;AACF,eAAO,MAAM,kCAAkC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEhE,CAAC;AACF,eAAO,MAAM,gCAAgC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9D,CAAC;AACF,eAAO,MAAM,iCAAiC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IInteractionParameterSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IInteractionParameterSettings.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;
|
|
1
|
+
{"version":3,"file":"IInteractionParameterSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IInteractionParameterSettings.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapediver/viewer.shared.types",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Michael Oppitz <michael@shapediver.com>",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@shapediver/sdk.geometry-api-sdk-v2": "3.1.0",
|
|
42
42
|
"@shapediver/sdk.sdtf-v1": "1.7.0",
|
|
43
|
-
"@shapediver/viewer.shared.math": "3.15.
|
|
44
|
-
"@shapediver/viewer.shared.node-tree": "3.15.
|
|
45
|
-
"@shapediver/viewer.shared.services": "3.15.
|
|
43
|
+
"@shapediver/viewer.shared.math": "3.15.9",
|
|
44
|
+
"@shapediver/viewer.shared.node-tree": "3.15.9",
|
|
45
|
+
"@shapediver/viewer.shared.services": "3.15.9",
|
|
46
46
|
"gl-matrix": "3.3.0",
|
|
47
47
|
"zod": "3.23.8"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "0f6ba021e8f93d01934fc81a3735474a35c617c8"
|
|
50
50
|
}
|