@shapediver/viewer.shared.types 3.14.2 → 3.14.3
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/implementation/data/InstanceMatricesData.d.ts +20 -0
- package/dist/implementation/data/InstanceMatricesData.d.ts.map +1 -0
- package/dist/implementation/data/InstanceMatricesData.js +51 -0
- package/dist/implementation/data/InstanceMatricesData.js.map +1 -0
- package/dist/interfaces/data/IInstanceMatricesData.d.ts +7 -0
- package/dist/interfaces/data/IInstanceMatricesData.d.ts.map +1 -0
- package/dist/interfaces/data/IInstanceMatricesData.js +3 -0
- package/dist/interfaces/data/IInstanceMatricesData.js.map +1 -0
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts +186 -186
- package/package.json +5 -5
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AbstractTreeNodeData } from '@shapediver/viewer.shared.node-tree';
|
|
2
|
+
import { IInstanceMatricesData } from '../../interfaces/data/IInstanceMatricesData';
|
|
3
|
+
import { mat4 } from 'gl-matrix';
|
|
4
|
+
export declare class InstanceMatricesData extends AbstractTreeNodeData implements IInstanceMatricesData {
|
|
5
|
+
#private;
|
|
6
|
+
/**
|
|
7
|
+
* Creates a instanceMatrices data node.
|
|
8
|
+
*
|
|
9
|
+
* @param _data the data as key- value pairs
|
|
10
|
+
* @param id the id
|
|
11
|
+
*/
|
|
12
|
+
constructor(instanceMatrices?: mat4[], id?: string, version?: string);
|
|
13
|
+
get instanceMatrices(): mat4[];
|
|
14
|
+
set instanceMatrices(value: mat4[]);
|
|
15
|
+
/**
|
|
16
|
+
* Clones the scene graph data.
|
|
17
|
+
*/
|
|
18
|
+
clone(): IInstanceMatricesData;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=InstanceMatricesData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstanceMatricesData.d.ts","sourceRoot":"","sources":["../../../src/implementation/data/InstanceMatricesData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,6CAA6C,CAAC;AACpF,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,qBAAa,oBAAqB,SAAQ,oBAAqB,YAAW,qBAAqB;;IAS3F;;;;;OAKG;gBAEC,gBAAgB,GAAE,IAAI,EAAO,EAC7B,EAAE,CAAC,EAAE,MAAM,EACX,OAAO,CAAC,EAAE,MAAM;IAUpB,IAAW,gBAAgB,IAAI,IAAI,EAAE,CAEpC;IAED,IAAW,gBAAgB,CAAC,KAAK,EAAE,IAAI,EAAE,EAExC;IAMD;;OAEG;IACI,KAAK,IAAI,qBAAqB;CAKxC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
3
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
4
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
5
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
6
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
7
|
+
};
|
|
8
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
9
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
10
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
|
+
};
|
|
13
|
+
var _InstanceMatricesData_instanceMatrices;
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.InstanceMatricesData = void 0;
|
|
16
|
+
const viewer_shared_node_tree_1 = require("@shapediver/viewer.shared.node-tree");
|
|
17
|
+
class InstanceMatricesData extends viewer_shared_node_tree_1.AbstractTreeNodeData {
|
|
18
|
+
// #endregion Properties (1)
|
|
19
|
+
// #region Constructors (1)
|
|
20
|
+
/**
|
|
21
|
+
* Creates a instanceMatrices data node.
|
|
22
|
+
*
|
|
23
|
+
* @param _data the data as key- value pairs
|
|
24
|
+
* @param id the id
|
|
25
|
+
*/
|
|
26
|
+
constructor(instanceMatrices = [], id, version) {
|
|
27
|
+
super(id, version);
|
|
28
|
+
// #region Properties (1)
|
|
29
|
+
_InstanceMatricesData_instanceMatrices.set(this, []);
|
|
30
|
+
__classPrivateFieldSet(this, _InstanceMatricesData_instanceMatrices, instanceMatrices, "f");
|
|
31
|
+
}
|
|
32
|
+
// #endregion Constructors (1)
|
|
33
|
+
// #region Public Getters And Setters (2)
|
|
34
|
+
get instanceMatrices() {
|
|
35
|
+
return __classPrivateFieldGet(this, _InstanceMatricesData_instanceMatrices, "f");
|
|
36
|
+
}
|
|
37
|
+
set instanceMatrices(value) {
|
|
38
|
+
__classPrivateFieldSet(this, _InstanceMatricesData_instanceMatrices, value, "f");
|
|
39
|
+
}
|
|
40
|
+
// #endregion Public Getters And Setters (2)
|
|
41
|
+
// #region Public Methods (1)
|
|
42
|
+
/**
|
|
43
|
+
* Clones the scene graph data.
|
|
44
|
+
*/
|
|
45
|
+
clone() {
|
|
46
|
+
return new InstanceMatricesData(this.instanceMatrices, this.id, this.version);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.InstanceMatricesData = InstanceMatricesData;
|
|
50
|
+
_InstanceMatricesData_instanceMatrices = new WeakMap();
|
|
51
|
+
//# sourceMappingURL=InstanceMatricesData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstanceMatricesData.js","sourceRoot":"","sources":["../../../src/implementation/data/InstanceMatricesData.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,iFAA2E;AAI3E,MAAa,oBAAqB,SAAQ,8CAAoB;IAK1D,4BAA4B;IAE5B,2BAA2B;IAE3B;;;;;OAKG;IACH,YACI,mBAA2B,EAAE,EAC7B,EAAW,EACX,OAAgB;QAEhB,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QAnBvB,yBAAyB;QAEzB,iDAA4B,EAAE,EAAC;QAkB3B,uBAAA,IAAI,0CAAqB,gBAAgB,MAAA,CAAC;IAC9C,CAAC;IAED,8BAA8B;IAE9B,yCAAyC;IAEzC,IAAW,gBAAgB;QACvB,OAAO,uBAAA,IAAI,8CAAkB,CAAC;IAClC,CAAC;IAED,IAAW,gBAAgB,CAAC,KAAa;QACrC,uBAAA,IAAI,0CAAqB,KAAK,MAAA,CAAC;IACnC,CAAC;IAED,4CAA4C;IAE5C,6BAA6B;IAE7B;;OAEG;IACI,KAAK;QACR,OAAO,IAAI,oBAAoB,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;IAClF,CAAC;CAGJ;AAhDD,oDAgDC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ITreeNodeData } from '@shapediver/viewer.shared.node-tree';
|
|
2
|
+
import { mat4 } from 'gl-matrix';
|
|
3
|
+
export interface IInstanceMatricesData extends ITreeNodeData {
|
|
4
|
+
instanceMatrices: mat4[];
|
|
5
|
+
clone(): IInstanceMatricesData;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=IInstanceMatricesData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IInstanceMatricesData.d.ts","sourceRoot":"","sources":["../../../src/interfaces/data/IInstanceMatricesData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,MAAM,WAAW,qBAAsB,SAAQ,aAAa;IAGxD,gBAAgB,EAAE,IAAI,EAAE,CAAC;IAMzB,KAAK,IAAI,qBAAqB,CAAC;CAGlC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IInstanceMatricesData.js","sourceRoot":"","sources":["../../../src/interfaces/data/IInstanceMatricesData.ts"],"names":[],"mappings":""}
|
|
@@ -56,33 +56,33 @@ export declare const ISelectionParameterPropsJsonSchema: z.ZodObject<z.objectUti
|
|
|
56
56
|
activeText?: string | null | undefined;
|
|
57
57
|
}>>>;
|
|
58
58
|
}>, "strip", z.ZodTypeAny, {
|
|
59
|
-
hover?: boolean | undefined;
|
|
60
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
61
|
-
prompt?: {
|
|
62
|
-
inactiveTitle?: string | null | undefined;
|
|
63
|
-
activeTitle?: string | null | undefined;
|
|
64
|
-
activeText?: string | null | undefined;
|
|
65
|
-
} | null | undefined;
|
|
66
59
|
maximumSelection?: number | null | undefined;
|
|
67
60
|
minimumSelection?: number | null | undefined;
|
|
68
61
|
nameFilter?: string[] | null | undefined;
|
|
69
62
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
70
63
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
71
64
|
deselectOnEmpty?: boolean | undefined;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
65
|
+
hover?: boolean | undefined;
|
|
66
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
75
67
|
prompt?: {
|
|
76
68
|
inactiveTitle?: string | null | undefined;
|
|
77
69
|
activeTitle?: string | null | undefined;
|
|
78
70
|
activeText?: string | null | undefined;
|
|
79
71
|
} | null | undefined;
|
|
72
|
+
}, {
|
|
80
73
|
maximumSelection?: number | null | undefined;
|
|
81
74
|
minimumSelection?: number | null | undefined;
|
|
82
75
|
nameFilter?: string[] | null | undefined;
|
|
83
76
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
84
77
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
85
78
|
deselectOnEmpty?: unknown;
|
|
79
|
+
hover?: unknown;
|
|
80
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
81
|
+
prompt?: {
|
|
82
|
+
inactiveTitle?: string | null | undefined;
|
|
83
|
+
activeTitle?: string | null | undefined;
|
|
84
|
+
activeText?: string | null | undefined;
|
|
85
|
+
} | null | undefined;
|
|
86
86
|
}>;
|
|
87
87
|
export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
88
88
|
type: z.ZodLiteral<"selection">;
|
|
@@ -110,67 +110,67 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
110
110
|
activeText?: string | null | undefined;
|
|
111
111
|
}>>>;
|
|
112
112
|
}>, "strip", z.ZodTypeAny, {
|
|
113
|
-
hover?: boolean | undefined;
|
|
114
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
115
|
-
prompt?: {
|
|
116
|
-
inactiveTitle?: string | null | undefined;
|
|
117
|
-
activeTitle?: string | null | undefined;
|
|
118
|
-
activeText?: string | null | undefined;
|
|
119
|
-
} | null | undefined;
|
|
120
113
|
maximumSelection?: number | null | undefined;
|
|
121
114
|
minimumSelection?: number | null | undefined;
|
|
122
115
|
nameFilter?: string[] | null | undefined;
|
|
123
116
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
124
117
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
125
118
|
deselectOnEmpty?: boolean | undefined;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
119
|
+
hover?: boolean | undefined;
|
|
120
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
129
121
|
prompt?: {
|
|
130
122
|
inactiveTitle?: string | null | undefined;
|
|
131
123
|
activeTitle?: string | null | undefined;
|
|
132
124
|
activeText?: string | null | undefined;
|
|
133
125
|
} | null | undefined;
|
|
126
|
+
}, {
|
|
134
127
|
maximumSelection?: number | null | undefined;
|
|
135
128
|
minimumSelection?: number | null | undefined;
|
|
136
129
|
nameFilter?: string[] | null | undefined;
|
|
137
130
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
138
131
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
139
132
|
deselectOnEmpty?: unknown;
|
|
140
|
-
|
|
141
|
-
},
|
|
142
|
-
type: "selection";
|
|
143
|
-
props: {
|
|
144
|
-
hover?: boolean | undefined;
|
|
145
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
133
|
+
hover?: unknown;
|
|
134
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
146
135
|
prompt?: {
|
|
147
136
|
inactiveTitle?: string | null | undefined;
|
|
148
137
|
activeTitle?: string | null | undefined;
|
|
149
138
|
activeText?: string | null | undefined;
|
|
150
139
|
} | null | undefined;
|
|
140
|
+
}>;
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
142
|
+
type: "selection";
|
|
143
|
+
props: {
|
|
151
144
|
maximumSelection?: number | null | undefined;
|
|
152
145
|
minimumSelection?: number | null | undefined;
|
|
153
146
|
nameFilter?: string[] | null | undefined;
|
|
154
147
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
155
148
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
156
149
|
deselectOnEmpty?: boolean | undefined;
|
|
157
|
-
|
|
158
|
-
},
|
|
159
|
-
type: "selection";
|
|
160
|
-
props: {
|
|
161
|
-
hover?: unknown;
|
|
162
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
150
|
+
hover?: boolean | undefined;
|
|
151
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
163
152
|
prompt?: {
|
|
164
153
|
inactiveTitle?: string | null | undefined;
|
|
165
154
|
activeTitle?: string | null | undefined;
|
|
166
155
|
activeText?: string | null | undefined;
|
|
167
156
|
} | null | undefined;
|
|
157
|
+
};
|
|
158
|
+
}, {
|
|
159
|
+
type: "selection";
|
|
160
|
+
props: {
|
|
168
161
|
maximumSelection?: number | null | undefined;
|
|
169
162
|
minimumSelection?: number | null | undefined;
|
|
170
163
|
nameFilter?: string[] | null | undefined;
|
|
171
164
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
172
165
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
173
166
|
deselectOnEmpty?: unknown;
|
|
167
|
+
hover?: unknown;
|
|
168
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
169
|
+
prompt?: {
|
|
170
|
+
inactiveTitle?: string | null | undefined;
|
|
171
|
+
activeTitle?: string | null | undefined;
|
|
172
|
+
activeText?: string | null | undefined;
|
|
173
|
+
} | null | undefined;
|
|
174
174
|
};
|
|
175
175
|
}>;
|
|
176
176
|
export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -318,7 +318,12 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
318
318
|
activeText?: string | null | undefined;
|
|
319
319
|
}>>>;
|
|
320
320
|
}>, "strip", z.ZodTypeAny, {
|
|
321
|
-
|
|
321
|
+
maximumSelection?: number | null | undefined;
|
|
322
|
+
minimumSelection?: number | null | undefined;
|
|
323
|
+
nameFilter?: string[] | null | undefined;
|
|
324
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
325
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
326
|
+
deselectOnEmpty?: boolean | undefined;
|
|
322
327
|
hover?: boolean | undefined;
|
|
323
328
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
324
329
|
prompt?: {
|
|
@@ -326,12 +331,6 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
326
331
|
activeTitle?: string | null | undefined;
|
|
327
332
|
activeText?: string | null | undefined;
|
|
328
333
|
} | null | undefined;
|
|
329
|
-
maximumSelection?: number | null | undefined;
|
|
330
|
-
minimumSelection?: number | null | undefined;
|
|
331
|
-
nameFilter?: string[] | null | undefined;
|
|
332
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
333
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
334
|
-
deselectOnEmpty?: boolean | undefined;
|
|
335
334
|
enableRotation?: boolean | undefined;
|
|
336
335
|
enableRotationAxes?: {
|
|
337
336
|
x?: boolean | undefined;
|
|
@@ -359,6 +358,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
359
358
|
yz?: boolean | undefined;
|
|
360
359
|
xz?: boolean | undefined;
|
|
361
360
|
} | null | undefined;
|
|
361
|
+
scale?: number | null | undefined;
|
|
362
362
|
space?: "local" | "world" | null | undefined;
|
|
363
363
|
restrictions?: z.objectOutputType<{
|
|
364
364
|
id: z.ZodString;
|
|
@@ -379,7 +379,12 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
379
379
|
restrictions: string[];
|
|
380
380
|
}[] | null | undefined;
|
|
381
381
|
}, {
|
|
382
|
-
|
|
382
|
+
maximumSelection?: number | null | undefined;
|
|
383
|
+
minimumSelection?: number | null | undefined;
|
|
384
|
+
nameFilter?: string[] | null | undefined;
|
|
385
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
386
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
387
|
+
deselectOnEmpty?: unknown;
|
|
383
388
|
hover?: unknown;
|
|
384
389
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
385
390
|
prompt?: {
|
|
@@ -387,12 +392,6 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
387
392
|
activeTitle?: string | null | undefined;
|
|
388
393
|
activeText?: string | null | undefined;
|
|
389
394
|
} | null | undefined;
|
|
390
|
-
maximumSelection?: number | null | undefined;
|
|
391
|
-
minimumSelection?: number | null | undefined;
|
|
392
|
-
nameFilter?: string[] | null | undefined;
|
|
393
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
394
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
395
|
-
deselectOnEmpty?: unknown;
|
|
396
395
|
enableRotation?: unknown;
|
|
397
396
|
enableRotationAxes?: {
|
|
398
397
|
x?: unknown;
|
|
@@ -420,6 +419,7 @@ export declare const IGumballParameterPropsJsonSchema: z.ZodObject<z.objectUtil.
|
|
|
420
419
|
yz?: unknown;
|
|
421
420
|
xz?: unknown;
|
|
422
421
|
} | null | undefined;
|
|
422
|
+
scale?: number | null | undefined;
|
|
423
423
|
space?: "local" | "world" | null | undefined;
|
|
424
424
|
restrictions?: z.objectInputType<{
|
|
425
425
|
id: z.ZodString;
|
|
@@ -587,7 +587,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
587
587
|
activeText?: string | null | undefined;
|
|
588
588
|
}>>>;
|
|
589
589
|
}>, "strip", z.ZodTypeAny, {
|
|
590
|
-
|
|
590
|
+
maximumSelection?: number | null | undefined;
|
|
591
|
+
minimumSelection?: number | null | undefined;
|
|
592
|
+
nameFilter?: string[] | null | undefined;
|
|
593
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
594
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
595
|
+
deselectOnEmpty?: boolean | undefined;
|
|
591
596
|
hover?: boolean | undefined;
|
|
592
597
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
593
598
|
prompt?: {
|
|
@@ -595,12 +600,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
595
600
|
activeTitle?: string | null | undefined;
|
|
596
601
|
activeText?: string | null | undefined;
|
|
597
602
|
} | null | undefined;
|
|
598
|
-
maximumSelection?: number | null | undefined;
|
|
599
|
-
minimumSelection?: number | null | undefined;
|
|
600
|
-
nameFilter?: string[] | null | undefined;
|
|
601
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
602
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
603
|
-
deselectOnEmpty?: boolean | undefined;
|
|
604
603
|
enableRotation?: boolean | undefined;
|
|
605
604
|
enableRotationAxes?: {
|
|
606
605
|
x?: boolean | undefined;
|
|
@@ -628,6 +627,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
628
627
|
yz?: boolean | undefined;
|
|
629
628
|
xz?: boolean | undefined;
|
|
630
629
|
} | null | undefined;
|
|
630
|
+
scale?: number | null | undefined;
|
|
631
631
|
space?: "local" | "world" | null | undefined;
|
|
632
632
|
restrictions?: z.objectOutputType<{
|
|
633
633
|
id: z.ZodString;
|
|
@@ -648,7 +648,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
648
648
|
restrictions: string[];
|
|
649
649
|
}[] | null | undefined;
|
|
650
650
|
}, {
|
|
651
|
-
|
|
651
|
+
maximumSelection?: number | null | undefined;
|
|
652
|
+
minimumSelection?: number | null | undefined;
|
|
653
|
+
nameFilter?: string[] | null | undefined;
|
|
654
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
655
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
656
|
+
deselectOnEmpty?: unknown;
|
|
652
657
|
hover?: unknown;
|
|
653
658
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
654
659
|
prompt?: {
|
|
@@ -656,12 +661,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
656
661
|
activeTitle?: string | null | undefined;
|
|
657
662
|
activeText?: string | null | undefined;
|
|
658
663
|
} | null | undefined;
|
|
659
|
-
maximumSelection?: number | null | undefined;
|
|
660
|
-
minimumSelection?: number | null | undefined;
|
|
661
|
-
nameFilter?: string[] | null | undefined;
|
|
662
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
663
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
664
|
-
deselectOnEmpty?: unknown;
|
|
665
664
|
enableRotation?: unknown;
|
|
666
665
|
enableRotationAxes?: {
|
|
667
666
|
x?: unknown;
|
|
@@ -689,6 +688,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
689
688
|
yz?: unknown;
|
|
690
689
|
xz?: unknown;
|
|
691
690
|
} | null | undefined;
|
|
691
|
+
scale?: number | null | undefined;
|
|
692
692
|
space?: "local" | "world" | null | undefined;
|
|
693
693
|
restrictions?: z.objectInputType<{
|
|
694
694
|
id: z.ZodString;
|
|
@@ -712,7 +712,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
712
712
|
}, "strip", z.ZodTypeAny, {
|
|
713
713
|
type: "gumball";
|
|
714
714
|
props: {
|
|
715
|
-
|
|
715
|
+
maximumSelection?: number | null | undefined;
|
|
716
|
+
minimumSelection?: number | null | undefined;
|
|
717
|
+
nameFilter?: string[] | null | undefined;
|
|
718
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
719
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
720
|
+
deselectOnEmpty?: boolean | undefined;
|
|
716
721
|
hover?: boolean | undefined;
|
|
717
722
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
718
723
|
prompt?: {
|
|
@@ -720,12 +725,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
720
725
|
activeTitle?: string | null | undefined;
|
|
721
726
|
activeText?: string | null | undefined;
|
|
722
727
|
} | null | undefined;
|
|
723
|
-
maximumSelection?: number | null | undefined;
|
|
724
|
-
minimumSelection?: number | null | undefined;
|
|
725
|
-
nameFilter?: string[] | null | undefined;
|
|
726
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
727
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
728
|
-
deselectOnEmpty?: boolean | undefined;
|
|
729
728
|
enableRotation?: boolean | undefined;
|
|
730
729
|
enableRotationAxes?: {
|
|
731
730
|
x?: boolean | undefined;
|
|
@@ -753,6 +752,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
753
752
|
yz?: boolean | undefined;
|
|
754
753
|
xz?: boolean | undefined;
|
|
755
754
|
} | null | undefined;
|
|
755
|
+
scale?: number | null | undefined;
|
|
756
756
|
space?: "local" | "world" | null | undefined;
|
|
757
757
|
restrictions?: z.objectOutputType<{
|
|
758
758
|
id: z.ZodString;
|
|
@@ -776,7 +776,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
776
776
|
}, {
|
|
777
777
|
type: "gumball";
|
|
778
778
|
props: {
|
|
779
|
-
|
|
779
|
+
maximumSelection?: number | null | undefined;
|
|
780
|
+
minimumSelection?: number | null | undefined;
|
|
781
|
+
nameFilter?: string[] | null | undefined;
|
|
782
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
783
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
784
|
+
deselectOnEmpty?: unknown;
|
|
780
785
|
hover?: unknown;
|
|
781
786
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
782
787
|
prompt?: {
|
|
@@ -784,12 +789,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
784
789
|
activeTitle?: string | null | undefined;
|
|
785
790
|
activeText?: string | null | undefined;
|
|
786
791
|
} | null | undefined;
|
|
787
|
-
maximumSelection?: number | null | undefined;
|
|
788
|
-
minimumSelection?: number | null | undefined;
|
|
789
|
-
nameFilter?: string[] | null | undefined;
|
|
790
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
791
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
792
|
-
deselectOnEmpty?: unknown;
|
|
793
792
|
enableRotation?: unknown;
|
|
794
793
|
enableRotationAxes?: {
|
|
795
794
|
x?: unknown;
|
|
@@ -817,6 +816,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
817
816
|
yz?: unknown;
|
|
818
817
|
xz?: unknown;
|
|
819
818
|
} | null | undefined;
|
|
819
|
+
scale?: number | null | undefined;
|
|
820
820
|
space?: "local" | "world" | null | undefined;
|
|
821
821
|
restrictions?: z.objectInputType<{
|
|
822
822
|
id: z.ZodString;
|
|
@@ -955,6 +955,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
955
955
|
activeText?: string | null | undefined;
|
|
956
956
|
}>>>;
|
|
957
957
|
}>, "strip", z.ZodTypeAny, {
|
|
958
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
958
959
|
hover?: boolean | undefined;
|
|
959
960
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
960
961
|
prompt?: {
|
|
@@ -962,7 +963,6 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
962
963
|
activeTitle?: string | null | undefined;
|
|
963
964
|
activeText?: string | null | undefined;
|
|
964
965
|
} | null | undefined;
|
|
965
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
966
966
|
restrictions?: z.objectOutputType<{
|
|
967
967
|
id: z.ZodString;
|
|
968
968
|
type: z.ZodString;
|
|
@@ -992,6 +992,7 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
992
992
|
}[] | null | undefined;
|
|
993
993
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
994
994
|
}, {
|
|
995
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
995
996
|
hover?: unknown;
|
|
996
997
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
997
998
|
prompt?: {
|
|
@@ -999,7 +1000,6 @@ export declare const IDraggingParameterPropsJsonSchema: z.ZodObject<z.objectUtil
|
|
|
999
1000
|
activeTitle?: string | null | undefined;
|
|
1000
1001
|
activeText?: string | null | undefined;
|
|
1001
1002
|
} | null | undefined;
|
|
1002
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1003
1003
|
restrictions?: z.objectInputType<{
|
|
1004
1004
|
id: z.ZodString;
|
|
1005
1005
|
type: z.ZodString;
|
|
@@ -1148,6 +1148,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1148
1148
|
activeText?: string | null | undefined;
|
|
1149
1149
|
}>>>;
|
|
1150
1150
|
}>, "strip", z.ZodTypeAny, {
|
|
1151
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1151
1152
|
hover?: boolean | undefined;
|
|
1152
1153
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1153
1154
|
prompt?: {
|
|
@@ -1155,7 +1156,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1155
1156
|
activeTitle?: string | null | undefined;
|
|
1156
1157
|
activeText?: string | null | undefined;
|
|
1157
1158
|
} | null | undefined;
|
|
1158
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1159
1159
|
restrictions?: z.objectOutputType<{
|
|
1160
1160
|
id: z.ZodString;
|
|
1161
1161
|
type: z.ZodString;
|
|
@@ -1185,6 +1185,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1185
1185
|
}[] | null | undefined;
|
|
1186
1186
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1187
1187
|
}, {
|
|
1188
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1188
1189
|
hover?: unknown;
|
|
1189
1190
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1190
1191
|
prompt?: {
|
|
@@ -1192,7 +1193,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1192
1193
|
activeTitle?: string | null | undefined;
|
|
1193
1194
|
activeText?: string | null | undefined;
|
|
1194
1195
|
} | null | undefined;
|
|
1195
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1196
1196
|
restrictions?: z.objectInputType<{
|
|
1197
1197
|
id: z.ZodString;
|
|
1198
1198
|
type: z.ZodString;
|
|
@@ -1225,6 +1225,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1225
1225
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1226
|
type: "dragging";
|
|
1227
1227
|
props: {
|
|
1228
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1228
1229
|
hover?: boolean | undefined;
|
|
1229
1230
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1230
1231
|
prompt?: {
|
|
@@ -1232,7 +1233,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1232
1233
|
activeTitle?: string | null | undefined;
|
|
1233
1234
|
activeText?: string | null | undefined;
|
|
1234
1235
|
} | null | undefined;
|
|
1235
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1236
1236
|
restrictions?: z.objectOutputType<{
|
|
1237
1237
|
id: z.ZodString;
|
|
1238
1238
|
type: z.ZodString;
|
|
@@ -1265,6 +1265,7 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1265
1265
|
}, {
|
|
1266
1266
|
type: "dragging";
|
|
1267
1267
|
props: {
|
|
1268
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1268
1269
|
hover?: unknown;
|
|
1269
1270
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1270
1271
|
prompt?: {
|
|
@@ -1272,7 +1273,6 @@ export declare const IDraggingParameterJsonSchema: z.ZodObject<{
|
|
|
1272
1273
|
activeTitle?: string | null | undefined;
|
|
1273
1274
|
activeText?: string | null | undefined;
|
|
1274
1275
|
} | null | undefined;
|
|
1275
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1276
1276
|
restrictions?: z.objectInputType<{
|
|
1277
1277
|
id: z.ZodString;
|
|
1278
1278
|
type: z.ZodString;
|
|
@@ -1329,67 +1329,67 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1329
1329
|
activeText?: string | null | undefined;
|
|
1330
1330
|
}>>>;
|
|
1331
1331
|
}>, "strip", z.ZodTypeAny, {
|
|
1332
|
-
hover?: boolean | undefined;
|
|
1333
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1334
|
-
prompt?: {
|
|
1335
|
-
inactiveTitle?: string | null | undefined;
|
|
1336
|
-
activeTitle?: string | null | undefined;
|
|
1337
|
-
activeText?: string | null | undefined;
|
|
1338
|
-
} | null | undefined;
|
|
1339
1332
|
maximumSelection?: number | null | undefined;
|
|
1340
1333
|
minimumSelection?: number | null | undefined;
|
|
1341
1334
|
nameFilter?: string[] | null | undefined;
|
|
1342
1335
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1343
1336
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1344
1337
|
deselectOnEmpty?: boolean | undefined;
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1338
|
+
hover?: boolean | undefined;
|
|
1339
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1348
1340
|
prompt?: {
|
|
1349
1341
|
inactiveTitle?: string | null | undefined;
|
|
1350
1342
|
activeTitle?: string | null | undefined;
|
|
1351
1343
|
activeText?: string | null | undefined;
|
|
1352
1344
|
} | null | undefined;
|
|
1345
|
+
}, {
|
|
1353
1346
|
maximumSelection?: number | null | undefined;
|
|
1354
1347
|
minimumSelection?: number | null | undefined;
|
|
1355
1348
|
nameFilter?: string[] | null | undefined;
|
|
1356
1349
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1357
1350
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1358
1351
|
deselectOnEmpty?: unknown;
|
|
1359
|
-
|
|
1360
|
-
},
|
|
1361
|
-
type: "selection";
|
|
1362
|
-
props: {
|
|
1363
|
-
hover?: boolean | undefined;
|
|
1364
|
-
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1352
|
+
hover?: unknown;
|
|
1353
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1365
1354
|
prompt?: {
|
|
1366
1355
|
inactiveTitle?: string | null | undefined;
|
|
1367
1356
|
activeTitle?: string | null | undefined;
|
|
1368
1357
|
activeText?: string | null | undefined;
|
|
1369
1358
|
} | null | undefined;
|
|
1359
|
+
}>;
|
|
1360
|
+
}, "strip", z.ZodTypeAny, {
|
|
1361
|
+
type: "selection";
|
|
1362
|
+
props: {
|
|
1370
1363
|
maximumSelection?: number | null | undefined;
|
|
1371
1364
|
minimumSelection?: number | null | undefined;
|
|
1372
1365
|
nameFilter?: string[] | null | undefined;
|
|
1373
1366
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1374
1367
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1375
1368
|
deselectOnEmpty?: boolean | undefined;
|
|
1376
|
-
|
|
1377
|
-
},
|
|
1378
|
-
type: "selection";
|
|
1379
|
-
props: {
|
|
1380
|
-
hover?: unknown;
|
|
1381
|
-
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1369
|
+
hover?: boolean | undefined;
|
|
1370
|
+
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1382
1371
|
prompt?: {
|
|
1383
1372
|
inactiveTitle?: string | null | undefined;
|
|
1384
1373
|
activeTitle?: string | null | undefined;
|
|
1385
1374
|
activeText?: string | null | undefined;
|
|
1386
1375
|
} | null | undefined;
|
|
1376
|
+
};
|
|
1377
|
+
}, {
|
|
1378
|
+
type: "selection";
|
|
1379
|
+
props: {
|
|
1387
1380
|
maximumSelection?: number | null | undefined;
|
|
1388
1381
|
minimumSelection?: number | null | undefined;
|
|
1389
1382
|
nameFilter?: string[] | null | undefined;
|
|
1390
1383
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1391
1384
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1392
1385
|
deselectOnEmpty?: unknown;
|
|
1386
|
+
hover?: unknown;
|
|
1387
|
+
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1388
|
+
prompt?: {
|
|
1389
|
+
inactiveTitle?: string | null | undefined;
|
|
1390
|
+
activeTitle?: string | null | undefined;
|
|
1391
|
+
activeText?: string | null | undefined;
|
|
1392
|
+
} | null | undefined;
|
|
1393
1393
|
};
|
|
1394
1394
|
}>, z.ZodObject<{
|
|
1395
1395
|
type: z.ZodLiteral<"gumball">;
|
|
@@ -1538,7 +1538,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1538
1538
|
activeText?: string | null | undefined;
|
|
1539
1539
|
}>>>;
|
|
1540
1540
|
}>, "strip", z.ZodTypeAny, {
|
|
1541
|
-
|
|
1541
|
+
maximumSelection?: number | null | undefined;
|
|
1542
|
+
minimumSelection?: number | null | undefined;
|
|
1543
|
+
nameFilter?: string[] | null | undefined;
|
|
1544
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1545
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1546
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1542
1547
|
hover?: boolean | undefined;
|
|
1543
1548
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1544
1549
|
prompt?: {
|
|
@@ -1546,12 +1551,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1546
1551
|
activeTitle?: string | null | undefined;
|
|
1547
1552
|
activeText?: string | null | undefined;
|
|
1548
1553
|
} | null | undefined;
|
|
1549
|
-
maximumSelection?: number | null | undefined;
|
|
1550
|
-
minimumSelection?: number | null | undefined;
|
|
1551
|
-
nameFilter?: string[] | null | undefined;
|
|
1552
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1553
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1554
|
-
deselectOnEmpty?: boolean | undefined;
|
|
1555
1554
|
enableRotation?: boolean | undefined;
|
|
1556
1555
|
enableRotationAxes?: {
|
|
1557
1556
|
x?: boolean | undefined;
|
|
@@ -1579,6 +1578,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1579
1578
|
yz?: boolean | undefined;
|
|
1580
1579
|
xz?: boolean | undefined;
|
|
1581
1580
|
} | null | undefined;
|
|
1581
|
+
scale?: number | null | undefined;
|
|
1582
1582
|
space?: "local" | "world" | null | undefined;
|
|
1583
1583
|
restrictions?: z.objectOutputType<{
|
|
1584
1584
|
id: z.ZodString;
|
|
@@ -1599,7 +1599,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1599
1599
|
restrictions: string[];
|
|
1600
1600
|
}[] | null | undefined;
|
|
1601
1601
|
}, {
|
|
1602
|
-
|
|
1602
|
+
maximumSelection?: number | null | undefined;
|
|
1603
|
+
minimumSelection?: number | null | undefined;
|
|
1604
|
+
nameFilter?: string[] | null | undefined;
|
|
1605
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1606
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1607
|
+
deselectOnEmpty?: unknown;
|
|
1603
1608
|
hover?: unknown;
|
|
1604
1609
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1605
1610
|
prompt?: {
|
|
@@ -1607,12 +1612,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1607
1612
|
activeTitle?: string | null | undefined;
|
|
1608
1613
|
activeText?: string | null | undefined;
|
|
1609
1614
|
} | null | undefined;
|
|
1610
|
-
maximumSelection?: number | null | undefined;
|
|
1611
|
-
minimumSelection?: number | null | undefined;
|
|
1612
|
-
nameFilter?: string[] | null | undefined;
|
|
1613
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1614
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1615
|
-
deselectOnEmpty?: unknown;
|
|
1616
1615
|
enableRotation?: unknown;
|
|
1617
1616
|
enableRotationAxes?: {
|
|
1618
1617
|
x?: unknown;
|
|
@@ -1640,6 +1639,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1640
1639
|
yz?: unknown;
|
|
1641
1640
|
xz?: unknown;
|
|
1642
1641
|
} | null | undefined;
|
|
1642
|
+
scale?: number | null | undefined;
|
|
1643
1643
|
space?: "local" | "world" | null | undefined;
|
|
1644
1644
|
restrictions?: z.objectInputType<{
|
|
1645
1645
|
id: z.ZodString;
|
|
@@ -1663,7 +1663,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1663
1663
|
}, "strip", z.ZodTypeAny, {
|
|
1664
1664
|
type: "gumball";
|
|
1665
1665
|
props: {
|
|
1666
|
-
|
|
1666
|
+
maximumSelection?: number | null | undefined;
|
|
1667
|
+
minimumSelection?: number | null | undefined;
|
|
1668
|
+
nameFilter?: string[] | null | undefined;
|
|
1669
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1670
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1671
|
+
deselectOnEmpty?: boolean | undefined;
|
|
1667
1672
|
hover?: boolean | undefined;
|
|
1668
1673
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1669
1674
|
prompt?: {
|
|
@@ -1671,12 +1676,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1671
1676
|
activeTitle?: string | null | undefined;
|
|
1672
1677
|
activeText?: string | null | undefined;
|
|
1673
1678
|
} | null | undefined;
|
|
1674
|
-
maximumSelection?: number | null | undefined;
|
|
1675
|
-
minimumSelection?: number | null | undefined;
|
|
1676
|
-
nameFilter?: string[] | null | undefined;
|
|
1677
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1678
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1679
|
-
deselectOnEmpty?: boolean | undefined;
|
|
1680
1679
|
enableRotation?: boolean | undefined;
|
|
1681
1680
|
enableRotationAxes?: {
|
|
1682
1681
|
x?: boolean | undefined;
|
|
@@ -1704,6 +1703,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1704
1703
|
yz?: boolean | undefined;
|
|
1705
1704
|
xz?: boolean | undefined;
|
|
1706
1705
|
} | null | undefined;
|
|
1706
|
+
scale?: number | null | undefined;
|
|
1707
1707
|
space?: "local" | "world" | null | undefined;
|
|
1708
1708
|
restrictions?: z.objectOutputType<{
|
|
1709
1709
|
id: z.ZodString;
|
|
@@ -1727,7 +1727,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1727
1727
|
}, {
|
|
1728
1728
|
type: "gumball";
|
|
1729
1729
|
props: {
|
|
1730
|
-
|
|
1730
|
+
maximumSelection?: number | null | undefined;
|
|
1731
|
+
minimumSelection?: number | null | undefined;
|
|
1732
|
+
nameFilter?: string[] | null | undefined;
|
|
1733
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1734
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1735
|
+
deselectOnEmpty?: unknown;
|
|
1731
1736
|
hover?: unknown;
|
|
1732
1737
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1733
1738
|
prompt?: {
|
|
@@ -1735,12 +1740,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1735
1740
|
activeTitle?: string | null | undefined;
|
|
1736
1741
|
activeText?: string | null | undefined;
|
|
1737
1742
|
} | null | undefined;
|
|
1738
|
-
maximumSelection?: number | null | undefined;
|
|
1739
|
-
minimumSelection?: number | null | undefined;
|
|
1740
|
-
nameFilter?: string[] | null | undefined;
|
|
1741
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1742
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1743
|
-
deselectOnEmpty?: unknown;
|
|
1744
1743
|
enableRotation?: unknown;
|
|
1745
1744
|
enableRotationAxes?: {
|
|
1746
1745
|
x?: unknown;
|
|
@@ -1768,6 +1767,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1768
1767
|
yz?: unknown;
|
|
1769
1768
|
xz?: unknown;
|
|
1770
1769
|
} | null | undefined;
|
|
1770
|
+
scale?: number | null | undefined;
|
|
1771
1771
|
space?: "local" | "world" | null | undefined;
|
|
1772
1772
|
restrictions?: z.objectInputType<{
|
|
1773
1773
|
id: z.ZodString;
|
|
@@ -1907,6 +1907,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1907
1907
|
activeText?: string | null | undefined;
|
|
1908
1908
|
}>>>;
|
|
1909
1909
|
}>, "strip", z.ZodTypeAny, {
|
|
1910
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1910
1911
|
hover?: boolean | undefined;
|
|
1911
1912
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1912
1913
|
prompt?: {
|
|
@@ -1914,7 +1915,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1914
1915
|
activeTitle?: string | null | undefined;
|
|
1915
1916
|
activeText?: string | null | undefined;
|
|
1916
1917
|
} | null | undefined;
|
|
1917
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1918
1918
|
restrictions?: z.objectOutputType<{
|
|
1919
1919
|
id: z.ZodString;
|
|
1920
1920
|
type: z.ZodString;
|
|
@@ -1944,6 +1944,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1944
1944
|
}[] | null | undefined;
|
|
1945
1945
|
draggingColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1946
1946
|
}, {
|
|
1947
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1947
1948
|
hover?: unknown;
|
|
1948
1949
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1949
1950
|
prompt?: {
|
|
@@ -1951,7 +1952,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1951
1952
|
activeTitle?: string | null | undefined;
|
|
1952
1953
|
activeText?: string | null | undefined;
|
|
1953
1954
|
} | null | undefined;
|
|
1954
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1955
1955
|
restrictions?: z.objectInputType<{
|
|
1956
1956
|
id: z.ZodString;
|
|
1957
1957
|
type: z.ZodString;
|
|
@@ -1984,6 +1984,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1984
1984
|
}, "strip", z.ZodTypeAny, {
|
|
1985
1985
|
type: "dragging";
|
|
1986
1986
|
props: {
|
|
1987
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1987
1988
|
hover?: boolean | undefined;
|
|
1988
1989
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1989
1990
|
prompt?: {
|
|
@@ -1991,7 +1992,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1991
1992
|
activeTitle?: string | null | undefined;
|
|
1992
1993
|
activeText?: string | null | undefined;
|
|
1993
1994
|
} | null | undefined;
|
|
1994
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
1995
1995
|
restrictions?: z.objectOutputType<{
|
|
1996
1996
|
id: z.ZodString;
|
|
1997
1997
|
type: z.ZodString;
|
|
@@ -2024,6 +2024,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2024
2024
|
}, {
|
|
2025
2025
|
type: "dragging";
|
|
2026
2026
|
props: {
|
|
2027
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2027
2028
|
hover?: unknown;
|
|
2028
2029
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2029
2030
|
prompt?: {
|
|
@@ -2031,7 +2032,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2031
2032
|
activeTitle?: string | null | undefined;
|
|
2032
2033
|
activeText?: string | null | undefined;
|
|
2033
2034
|
} | null | undefined;
|
|
2034
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2035
2035
|
restrictions?: z.objectInputType<{
|
|
2036
2036
|
id: z.ZodString;
|
|
2037
2037
|
type: z.ZodString;
|
|
@@ -2065,6 +2065,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
2065
2065
|
export declare const validateInteractionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2066
2066
|
type: "selection";
|
|
2067
2067
|
props: {
|
|
2068
|
+
maximumSelection?: number | null | undefined;
|
|
2069
|
+
minimumSelection?: number | null | undefined;
|
|
2070
|
+
nameFilter?: string[] | null | undefined;
|
|
2071
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2072
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2073
|
+
deselectOnEmpty?: unknown;
|
|
2068
2074
|
hover?: unknown;
|
|
2069
2075
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2070
2076
|
prompt?: {
|
|
@@ -2072,17 +2078,16 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2072
2078
|
activeTitle?: string | null | undefined;
|
|
2073
2079
|
activeText?: string | null | undefined;
|
|
2074
2080
|
} | null | undefined;
|
|
2081
|
+
};
|
|
2082
|
+
} | {
|
|
2083
|
+
type: "gumball";
|
|
2084
|
+
props: {
|
|
2075
2085
|
maximumSelection?: number | null | undefined;
|
|
2076
2086
|
minimumSelection?: number | null | undefined;
|
|
2077
2087
|
nameFilter?: string[] | null | undefined;
|
|
2078
2088
|
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2079
2089
|
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2080
2090
|
deselectOnEmpty?: unknown;
|
|
2081
|
-
};
|
|
2082
|
-
} | {
|
|
2083
|
-
type: "gumball";
|
|
2084
|
-
props: {
|
|
2085
|
-
scale?: number | null | undefined;
|
|
2086
2091
|
hover?: unknown;
|
|
2087
2092
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2088
2093
|
prompt?: {
|
|
@@ -2090,12 +2095,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2090
2095
|
activeTitle?: string | null | undefined;
|
|
2091
2096
|
activeText?: string | null | undefined;
|
|
2092
2097
|
} | null | undefined;
|
|
2093
|
-
maximumSelection?: number | null | undefined;
|
|
2094
|
-
minimumSelection?: number | null | undefined;
|
|
2095
|
-
nameFilter?: string[] | null | undefined;
|
|
2096
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2097
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2098
|
-
deselectOnEmpty?: unknown;
|
|
2099
2098
|
enableRotation?: unknown;
|
|
2100
2099
|
enableRotationAxes?: {
|
|
2101
2100
|
x?: unknown;
|
|
@@ -2123,6 +2122,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2123
2122
|
yz?: unknown;
|
|
2124
2123
|
xz?: unknown;
|
|
2125
2124
|
} | null | undefined;
|
|
2125
|
+
scale?: number | null | undefined;
|
|
2126
2126
|
space?: "local" | "world" | null | undefined;
|
|
2127
2127
|
restrictions?: z.objectInputType<{
|
|
2128
2128
|
id: z.ZodString;
|
|
@@ -2146,6 +2146,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2146
2146
|
} | {
|
|
2147
2147
|
type: "dragging";
|
|
2148
2148
|
props: {
|
|
2149
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2149
2150
|
hover?: unknown;
|
|
2150
2151
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2151
2152
|
prompt?: {
|
|
@@ -2153,7 +2154,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2153
2154
|
activeTitle?: string | null | undefined;
|
|
2154
2155
|
activeText?: string | null | undefined;
|
|
2155
2156
|
} | null | undefined;
|
|
2156
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2157
2157
|
restrictions?: z.objectInputType<{
|
|
2158
2158
|
id: z.ZodString;
|
|
2159
2159
|
type: z.ZodString;
|
|
@@ -2186,6 +2186,12 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2186
2186
|
}, {
|
|
2187
2187
|
type: "selection";
|
|
2188
2188
|
props: {
|
|
2189
|
+
maximumSelection?: number | null | undefined;
|
|
2190
|
+
minimumSelection?: number | null | undefined;
|
|
2191
|
+
nameFilter?: string[] | null | undefined;
|
|
2192
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2193
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2194
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2189
2195
|
hover?: boolean | undefined;
|
|
2190
2196
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2191
2197
|
prompt?: {
|
|
@@ -2193,17 +2199,16 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2193
2199
|
activeTitle?: string | null | undefined;
|
|
2194
2200
|
activeText?: string | null | undefined;
|
|
2195
2201
|
} | null | undefined;
|
|
2202
|
+
};
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "gumball";
|
|
2205
|
+
props: {
|
|
2196
2206
|
maximumSelection?: number | null | undefined;
|
|
2197
2207
|
minimumSelection?: number | null | undefined;
|
|
2198
2208
|
nameFilter?: string[] | null | undefined;
|
|
2199
2209
|
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2200
2210
|
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2201
2211
|
deselectOnEmpty?: boolean | undefined;
|
|
2202
|
-
};
|
|
2203
|
-
} | {
|
|
2204
|
-
type: "gumball";
|
|
2205
|
-
props: {
|
|
2206
|
-
scale?: number | null | undefined;
|
|
2207
2212
|
hover?: boolean | undefined;
|
|
2208
2213
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2209
2214
|
prompt?: {
|
|
@@ -2211,12 +2216,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2211
2216
|
activeTitle?: string | null | undefined;
|
|
2212
2217
|
activeText?: string | null | undefined;
|
|
2213
2218
|
} | null | undefined;
|
|
2214
|
-
maximumSelection?: number | null | undefined;
|
|
2215
|
-
minimumSelection?: number | null | undefined;
|
|
2216
|
-
nameFilter?: string[] | null | undefined;
|
|
2217
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2218
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2219
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2220
2219
|
enableRotation?: boolean | undefined;
|
|
2221
2220
|
enableRotationAxes?: {
|
|
2222
2221
|
x?: boolean | undefined;
|
|
@@ -2244,6 +2243,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2244
2243
|
yz?: boolean | undefined;
|
|
2245
2244
|
xz?: boolean | undefined;
|
|
2246
2245
|
} | null | undefined;
|
|
2246
|
+
scale?: number | null | undefined;
|
|
2247
2247
|
space?: "local" | "world" | null | undefined;
|
|
2248
2248
|
restrictions?: z.objectOutputType<{
|
|
2249
2249
|
id: z.ZodString;
|
|
@@ -2267,6 +2267,7 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2267
2267
|
} | {
|
|
2268
2268
|
type: "dragging";
|
|
2269
2269
|
props: {
|
|
2270
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2270
2271
|
hover?: boolean | undefined;
|
|
2271
2272
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2272
2273
|
prompt?: {
|
|
@@ -2274,7 +2275,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2274
2275
|
activeTitle?: string | null | undefined;
|
|
2275
2276
|
activeText?: string | null | undefined;
|
|
2276
2277
|
} | null | undefined;
|
|
2277
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2278
2278
|
restrictions?: z.objectOutputType<{
|
|
2279
2279
|
id: z.ZodString;
|
|
2280
2280
|
type: z.ZodString;
|
|
@@ -2308,6 +2308,12 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
2308
2308
|
export declare const validateSelectionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2309
2309
|
type: "selection";
|
|
2310
2310
|
props: {
|
|
2311
|
+
maximumSelection?: number | null | undefined;
|
|
2312
|
+
minimumSelection?: number | null | undefined;
|
|
2313
|
+
nameFilter?: string[] | null | undefined;
|
|
2314
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2315
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2316
|
+
deselectOnEmpty?: unknown;
|
|
2311
2317
|
hover?: unknown;
|
|
2312
2318
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2313
2319
|
prompt?: {
|
|
@@ -2315,16 +2321,16 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2315
2321
|
activeTitle?: string | null | undefined;
|
|
2316
2322
|
activeText?: string | null | undefined;
|
|
2317
2323
|
} | null | undefined;
|
|
2318
|
-
maximumSelection?: number | null | undefined;
|
|
2319
|
-
minimumSelection?: number | null | undefined;
|
|
2320
|
-
nameFilter?: string[] | null | undefined;
|
|
2321
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2322
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2323
|
-
deselectOnEmpty?: unknown;
|
|
2324
2324
|
};
|
|
2325
2325
|
}, {
|
|
2326
2326
|
type: "selection";
|
|
2327
2327
|
props: {
|
|
2328
|
+
maximumSelection?: number | null | undefined;
|
|
2329
|
+
minimumSelection?: number | null | undefined;
|
|
2330
|
+
nameFilter?: string[] | null | undefined;
|
|
2331
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2332
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2333
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2328
2334
|
hover?: boolean | undefined;
|
|
2329
2335
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2330
2336
|
prompt?: {
|
|
@@ -2332,18 +2338,17 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
2332
2338
|
activeTitle?: string | null | undefined;
|
|
2333
2339
|
activeText?: string | null | undefined;
|
|
2334
2340
|
} | null | undefined;
|
|
2335
|
-
maximumSelection?: number | null | undefined;
|
|
2336
|
-
minimumSelection?: number | null | undefined;
|
|
2337
|
-
nameFilter?: string[] | null | undefined;
|
|
2338
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2339
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2340
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2341
2341
|
};
|
|
2342
2342
|
}>;
|
|
2343
2343
|
export declare const validateGumballParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2344
2344
|
type: "gumball";
|
|
2345
2345
|
props: {
|
|
2346
|
-
|
|
2346
|
+
maximumSelection?: number | null | undefined;
|
|
2347
|
+
minimumSelection?: number | null | undefined;
|
|
2348
|
+
nameFilter?: string[] | null | undefined;
|
|
2349
|
+
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2350
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2351
|
+
deselectOnEmpty?: unknown;
|
|
2347
2352
|
hover?: unknown;
|
|
2348
2353
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2349
2354
|
prompt?: {
|
|
@@ -2351,12 +2356,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2351
2356
|
activeTitle?: string | null | undefined;
|
|
2352
2357
|
activeText?: string | null | undefined;
|
|
2353
2358
|
} | null | undefined;
|
|
2354
|
-
maximumSelection?: number | null | undefined;
|
|
2355
|
-
minimumSelection?: number | null | undefined;
|
|
2356
|
-
nameFilter?: string[] | null | undefined;
|
|
2357
|
-
selectionColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2358
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2359
|
-
deselectOnEmpty?: unknown;
|
|
2360
2359
|
enableRotation?: unknown;
|
|
2361
2360
|
enableRotationAxes?: {
|
|
2362
2361
|
x?: unknown;
|
|
@@ -2384,6 +2383,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2384
2383
|
yz?: unknown;
|
|
2385
2384
|
xz?: unknown;
|
|
2386
2385
|
} | null | undefined;
|
|
2386
|
+
scale?: number | null | undefined;
|
|
2387
2387
|
space?: "local" | "world" | null | undefined;
|
|
2388
2388
|
restrictions?: z.objectInputType<{
|
|
2389
2389
|
id: z.ZodString;
|
|
@@ -2407,7 +2407,12 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2407
2407
|
}, {
|
|
2408
2408
|
type: "gumball";
|
|
2409
2409
|
props: {
|
|
2410
|
-
|
|
2410
|
+
maximumSelection?: number | null | undefined;
|
|
2411
|
+
minimumSelection?: number | null | undefined;
|
|
2412
|
+
nameFilter?: string[] | null | undefined;
|
|
2413
|
+
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2414
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2415
|
+
deselectOnEmpty?: boolean | undefined;
|
|
2411
2416
|
hover?: boolean | undefined;
|
|
2412
2417
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2413
2418
|
prompt?: {
|
|
@@ -2415,12 +2420,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2415
2420
|
activeTitle?: string | null | undefined;
|
|
2416
2421
|
activeText?: string | null | undefined;
|
|
2417
2422
|
} | null | undefined;
|
|
2418
|
-
maximumSelection?: number | null | undefined;
|
|
2419
|
-
minimumSelection?: number | null | undefined;
|
|
2420
|
-
nameFilter?: string[] | null | undefined;
|
|
2421
|
-
selectionColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2422
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2423
|
-
deselectOnEmpty?: boolean | undefined;
|
|
2424
2423
|
enableRotation?: boolean | undefined;
|
|
2425
2424
|
enableRotationAxes?: {
|
|
2426
2425
|
x?: boolean | undefined;
|
|
@@ -2448,6 +2447,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2448
2447
|
yz?: boolean | undefined;
|
|
2449
2448
|
xz?: boolean | undefined;
|
|
2450
2449
|
} | null | undefined;
|
|
2450
|
+
scale?: number | null | undefined;
|
|
2451
2451
|
space?: "local" | "world" | null | undefined;
|
|
2452
2452
|
restrictions?: z.objectOutputType<{
|
|
2453
2453
|
id: z.ZodString;
|
|
@@ -2472,6 +2472,7 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
2472
2472
|
export declare const validateDraggingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
2473
2473
|
type: "dragging";
|
|
2474
2474
|
props: {
|
|
2475
|
+
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2475
2476
|
hover?: unknown;
|
|
2476
2477
|
hoverColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2477
2478
|
prompt?: {
|
|
@@ -2479,7 +2480,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2479
2480
|
activeTitle?: string | null | undefined;
|
|
2480
2481
|
activeText?: string | null | undefined;
|
|
2481
2482
|
} | null | undefined;
|
|
2482
|
-
availableColor?: string | z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2483
2483
|
restrictions?: z.objectInputType<{
|
|
2484
2484
|
id: z.ZodString;
|
|
2485
2485
|
type: z.ZodString;
|
|
@@ -2512,6 +2512,7 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2512
2512
|
}, {
|
|
2513
2513
|
type: "dragging";
|
|
2514
2514
|
props: {
|
|
2515
|
+
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2515
2516
|
hover?: boolean | undefined;
|
|
2516
2517
|
hoverColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2517
2518
|
prompt?: {
|
|
@@ -2519,7 +2520,6 @@ export declare const validateDraggingParameterSettings: (param: unknown) => z.Sa
|
|
|
2519
2520
|
activeTitle?: string | null | undefined;
|
|
2520
2521
|
activeText?: string | null | undefined;
|
|
2521
2522
|
} | null | undefined;
|
|
2522
|
-
availableColor?: string | z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
2523
2523
|
restrictions?: z.objectOutputType<{
|
|
2524
2524
|
id: z.ZodString;
|
|
2525
2525
|
type: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapediver/viewer.shared.types",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.3",
|
|
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": "2.9.1",
|
|
42
42
|
"@shapediver/sdk.sdtf-v1": "1.6.0",
|
|
43
|
-
"@shapediver/viewer.shared.math": "3.14.
|
|
44
|
-
"@shapediver/viewer.shared.node-tree": "3.14.
|
|
45
|
-
"@shapediver/viewer.shared.services": "3.14.
|
|
43
|
+
"@shapediver/viewer.shared.math": "3.14.3",
|
|
44
|
+
"@shapediver/viewer.shared.node-tree": "3.14.3",
|
|
45
|
+
"@shapediver/viewer.shared.services": "3.14.3",
|
|
46
46
|
"gl-matrix": "3.3.0",
|
|
47
47
|
"zod": "3.23.8"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "4e47ccf637cfd3be823bbcbe28a1d83cbdb20301"
|
|
50
50
|
}
|