@shapediver/viewer.shared.types 3.12.16 → 3.12.18
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.
|
@@ -160,7 +160,6 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
160
160
|
} | null | undefined;
|
|
161
161
|
}>>>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
-
restrictions?: any[] | null | undefined;
|
|
164
163
|
geometry?: {
|
|
165
164
|
mode: "points" | "lines";
|
|
166
165
|
minPoints?: number | null | undefined;
|
|
@@ -183,8 +182,8 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
183
182
|
activeText?: string | null | undefined;
|
|
184
183
|
} | null | undefined;
|
|
185
184
|
} | null | undefined;
|
|
186
|
-
}, {
|
|
187
185
|
restrictions?: any[] | null | undefined;
|
|
186
|
+
}, {
|
|
188
187
|
geometry?: {
|
|
189
188
|
mode: "points" | "lines";
|
|
190
189
|
minPoints?: number | null | undefined;
|
|
@@ -207,9 +206,9 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
207
206
|
activeText?: string | null | undefined;
|
|
208
207
|
} | null | undefined;
|
|
209
208
|
} | null | undefined;
|
|
209
|
+
restrictions?: any[] | null | undefined;
|
|
210
210
|
}>;
|
|
211
211
|
export declare const validateDrawingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
212
|
-
restrictions?: any[] | null | undefined;
|
|
213
212
|
geometry?: {
|
|
214
213
|
mode: "points" | "lines";
|
|
215
214
|
minPoints?: number | null | undefined;
|
|
@@ -232,8 +231,8 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
232
231
|
activeText?: string | null | undefined;
|
|
233
232
|
} | null | undefined;
|
|
234
233
|
} | null | undefined;
|
|
235
|
-
}, {
|
|
236
234
|
restrictions?: any[] | null | undefined;
|
|
235
|
+
}, {
|
|
237
236
|
geometry?: {
|
|
238
237
|
mode: "points" | "lines";
|
|
239
238
|
minPoints?: number | null | undefined;
|
|
@@ -256,5 +255,6 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
256
255
|
activeText?: string | null | undefined;
|
|
257
256
|
} | null | undefined;
|
|
258
257
|
} | null | undefined;
|
|
258
|
+
restrictions?: any[] | null | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
//# sourceMappingURL=IDrawingParametersSettings.d.ts.map
|
|
@@ -53,10 +53,6 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
53
53
|
activeText?: string | null | undefined;
|
|
54
54
|
}>>>;
|
|
55
55
|
}>, "strip", z.ZodTypeAny, {
|
|
56
|
-
maximumSelection?: number | null | undefined;
|
|
57
|
-
minimumSelection?: number | null | undefined;
|
|
58
|
-
nameFilter?: string[] | null | undefined;
|
|
59
|
-
selectionColor?: string | null | undefined;
|
|
60
56
|
hover?: boolean | undefined;
|
|
61
57
|
hoverColor?: string | null | undefined;
|
|
62
58
|
prompt?: {
|
|
@@ -64,11 +60,11 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
64
60
|
activeTitle?: string | null | undefined;
|
|
65
61
|
activeText?: string | null | undefined;
|
|
66
62
|
} | null | undefined;
|
|
67
|
-
}, {
|
|
68
63
|
maximumSelection?: number | null | undefined;
|
|
69
64
|
minimumSelection?: number | null | undefined;
|
|
70
65
|
nameFilter?: string[] | null | undefined;
|
|
71
66
|
selectionColor?: string | null | undefined;
|
|
67
|
+
}, {
|
|
72
68
|
hover?: unknown;
|
|
73
69
|
hoverColor?: string | null | undefined;
|
|
74
70
|
prompt?: {
|
|
@@ -76,14 +72,14 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
76
72
|
activeTitle?: string | null | undefined;
|
|
77
73
|
activeText?: string | null | undefined;
|
|
78
74
|
} | null | undefined;
|
|
79
|
-
}>;
|
|
80
|
-
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
type: "selection";
|
|
82
|
-
props: {
|
|
83
75
|
maximumSelection?: number | null | undefined;
|
|
84
76
|
minimumSelection?: number | null | undefined;
|
|
85
77
|
nameFilter?: string[] | null | undefined;
|
|
86
78
|
selectionColor?: string | null | undefined;
|
|
79
|
+
}>;
|
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
|
81
|
+
type: "selection";
|
|
82
|
+
props: {
|
|
87
83
|
hover?: boolean | undefined;
|
|
88
84
|
hoverColor?: string | null | undefined;
|
|
89
85
|
prompt?: {
|
|
@@ -91,14 +87,14 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
91
87
|
activeTitle?: string | null | undefined;
|
|
92
88
|
activeText?: string | null | undefined;
|
|
93
89
|
} | null | undefined;
|
|
94
|
-
};
|
|
95
|
-
}, {
|
|
96
|
-
type: "selection";
|
|
97
|
-
props: {
|
|
98
90
|
maximumSelection?: number | null | undefined;
|
|
99
91
|
minimumSelection?: number | null | undefined;
|
|
100
92
|
nameFilter?: string[] | null | undefined;
|
|
101
93
|
selectionColor?: string | null | undefined;
|
|
94
|
+
};
|
|
95
|
+
}, {
|
|
96
|
+
type: "selection";
|
|
97
|
+
props: {
|
|
102
98
|
hover?: unknown;
|
|
103
99
|
hoverColor?: string | null | undefined;
|
|
104
100
|
prompt?: {
|
|
@@ -106,6 +102,10 @@ export declare const ISelectionParameterJsonSchema: z.ZodObject<{
|
|
|
106
102
|
activeTitle?: string | null | undefined;
|
|
107
103
|
activeText?: string | null | undefined;
|
|
108
104
|
} | null | undefined;
|
|
105
|
+
maximumSelection?: number | null | undefined;
|
|
106
|
+
minimumSelection?: number | null | undefined;
|
|
107
|
+
nameFilter?: string[] | null | undefined;
|
|
108
|
+
selectionColor?: string | null | undefined;
|
|
109
109
|
};
|
|
110
110
|
}>;
|
|
111
111
|
export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
@@ -174,8 +174,7 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
174
174
|
activeText?: string | null | undefined;
|
|
175
175
|
}>>>;
|
|
176
176
|
}>, "strip", z.ZodTypeAny, {
|
|
177
|
-
|
|
178
|
-
selectionColor?: string | null | undefined;
|
|
177
|
+
scale?: number | null | undefined;
|
|
179
178
|
hover?: boolean | undefined;
|
|
180
179
|
hoverColor?: string | null | undefined;
|
|
181
180
|
prompt?: {
|
|
@@ -183,6 +182,8 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
183
182
|
activeTitle?: string | null | undefined;
|
|
184
183
|
activeText?: string | null | undefined;
|
|
185
184
|
} | null | undefined;
|
|
185
|
+
nameFilter?: string[] | null | undefined;
|
|
186
|
+
selectionColor?: string | null | undefined;
|
|
186
187
|
enableRotation?: boolean | undefined;
|
|
187
188
|
enableRotationAxes?: {
|
|
188
189
|
x?: boolean | undefined;
|
|
@@ -201,11 +202,9 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
201
202
|
y?: boolean | undefined;
|
|
202
203
|
z?: boolean | undefined;
|
|
203
204
|
} | null | undefined;
|
|
204
|
-
scale?: number | null | undefined;
|
|
205
205
|
space?: "local" | "world" | null | undefined;
|
|
206
206
|
}, {
|
|
207
|
-
|
|
208
|
-
selectionColor?: string | null | undefined;
|
|
207
|
+
scale?: number | null | undefined;
|
|
209
208
|
hover?: unknown;
|
|
210
209
|
hoverColor?: string | null | undefined;
|
|
211
210
|
prompt?: {
|
|
@@ -213,6 +212,8 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
213
212
|
activeTitle?: string | null | undefined;
|
|
214
213
|
activeText?: string | null | undefined;
|
|
215
214
|
} | null | undefined;
|
|
215
|
+
nameFilter?: string[] | null | undefined;
|
|
216
|
+
selectionColor?: string | null | undefined;
|
|
216
217
|
enableRotation?: unknown;
|
|
217
218
|
enableRotationAxes?: {
|
|
218
219
|
x?: unknown;
|
|
@@ -231,14 +232,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
231
232
|
y?: unknown;
|
|
232
233
|
z?: unknown;
|
|
233
234
|
} | null | undefined;
|
|
234
|
-
scale?: number | null | undefined;
|
|
235
235
|
space?: "local" | "world" | null | undefined;
|
|
236
236
|
}>;
|
|
237
237
|
}, "strip", z.ZodTypeAny, {
|
|
238
238
|
type: "gumball";
|
|
239
239
|
props: {
|
|
240
|
-
|
|
241
|
-
selectionColor?: string | null | undefined;
|
|
240
|
+
scale?: number | null | undefined;
|
|
242
241
|
hover?: boolean | undefined;
|
|
243
242
|
hoverColor?: string | null | undefined;
|
|
244
243
|
prompt?: {
|
|
@@ -246,6 +245,8 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
246
245
|
activeTitle?: string | null | undefined;
|
|
247
246
|
activeText?: string | null | undefined;
|
|
248
247
|
} | null | undefined;
|
|
248
|
+
nameFilter?: string[] | null | undefined;
|
|
249
|
+
selectionColor?: string | null | undefined;
|
|
249
250
|
enableRotation?: boolean | undefined;
|
|
250
251
|
enableRotationAxes?: {
|
|
251
252
|
x?: boolean | undefined;
|
|
@@ -264,14 +265,12 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
264
265
|
y?: boolean | undefined;
|
|
265
266
|
z?: boolean | undefined;
|
|
266
267
|
} | null | undefined;
|
|
267
|
-
scale?: number | null | undefined;
|
|
268
268
|
space?: "local" | "world" | null | undefined;
|
|
269
269
|
};
|
|
270
270
|
}, {
|
|
271
271
|
type: "gumball";
|
|
272
272
|
props: {
|
|
273
|
-
|
|
274
|
-
selectionColor?: string | null | undefined;
|
|
273
|
+
scale?: number | null | undefined;
|
|
275
274
|
hover?: unknown;
|
|
276
275
|
hoverColor?: string | null | undefined;
|
|
277
276
|
prompt?: {
|
|
@@ -279,6 +278,8 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
279
278
|
activeTitle?: string | null | undefined;
|
|
280
279
|
activeText?: string | null | undefined;
|
|
281
280
|
} | null | undefined;
|
|
281
|
+
nameFilter?: string[] | null | undefined;
|
|
282
|
+
selectionColor?: string | null | undefined;
|
|
282
283
|
enableRotation?: unknown;
|
|
283
284
|
enableRotationAxes?: {
|
|
284
285
|
x?: unknown;
|
|
@@ -297,7 +298,6 @@ export declare const IGumballParameterJsonSchema: z.ZodObject<{
|
|
|
297
298
|
y?: unknown;
|
|
298
299
|
z?: unknown;
|
|
299
300
|
} | null | undefined;
|
|
300
|
-
scale?: number | null | undefined;
|
|
301
301
|
space?: "local" | "world" | null | undefined;
|
|
302
302
|
};
|
|
303
303
|
}>;
|
|
@@ -594,10 +594,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
594
594
|
activeText?: string | null | undefined;
|
|
595
595
|
}>>>;
|
|
596
596
|
}>, "strip", z.ZodTypeAny, {
|
|
597
|
-
maximumSelection?: number | null | undefined;
|
|
598
|
-
minimumSelection?: number | null | undefined;
|
|
599
|
-
nameFilter?: string[] | null | undefined;
|
|
600
|
-
selectionColor?: string | null | undefined;
|
|
601
597
|
hover?: boolean | undefined;
|
|
602
598
|
hoverColor?: string | null | undefined;
|
|
603
599
|
prompt?: {
|
|
@@ -605,11 +601,11 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
605
601
|
activeTitle?: string | null | undefined;
|
|
606
602
|
activeText?: string | null | undefined;
|
|
607
603
|
} | null | undefined;
|
|
608
|
-
}, {
|
|
609
604
|
maximumSelection?: number | null | undefined;
|
|
610
605
|
minimumSelection?: number | null | undefined;
|
|
611
606
|
nameFilter?: string[] | null | undefined;
|
|
612
607
|
selectionColor?: string | null | undefined;
|
|
608
|
+
}, {
|
|
613
609
|
hover?: unknown;
|
|
614
610
|
hoverColor?: string | null | undefined;
|
|
615
611
|
prompt?: {
|
|
@@ -617,14 +613,14 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
617
613
|
activeTitle?: string | null | undefined;
|
|
618
614
|
activeText?: string | null | undefined;
|
|
619
615
|
} | null | undefined;
|
|
620
|
-
}>;
|
|
621
|
-
}, "strip", z.ZodTypeAny, {
|
|
622
|
-
type: "selection";
|
|
623
|
-
props: {
|
|
624
616
|
maximumSelection?: number | null | undefined;
|
|
625
617
|
minimumSelection?: number | null | undefined;
|
|
626
618
|
nameFilter?: string[] | null | undefined;
|
|
627
619
|
selectionColor?: string | null | undefined;
|
|
620
|
+
}>;
|
|
621
|
+
}, "strip", z.ZodTypeAny, {
|
|
622
|
+
type: "selection";
|
|
623
|
+
props: {
|
|
628
624
|
hover?: boolean | undefined;
|
|
629
625
|
hoverColor?: string | null | undefined;
|
|
630
626
|
prompt?: {
|
|
@@ -632,14 +628,14 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
632
628
|
activeTitle?: string | null | undefined;
|
|
633
629
|
activeText?: string | null | undefined;
|
|
634
630
|
} | null | undefined;
|
|
635
|
-
};
|
|
636
|
-
}, {
|
|
637
|
-
type: "selection";
|
|
638
|
-
props: {
|
|
639
631
|
maximumSelection?: number | null | undefined;
|
|
640
632
|
minimumSelection?: number | null | undefined;
|
|
641
633
|
nameFilter?: string[] | null | undefined;
|
|
642
634
|
selectionColor?: string | null | undefined;
|
|
635
|
+
};
|
|
636
|
+
}, {
|
|
637
|
+
type: "selection";
|
|
638
|
+
props: {
|
|
643
639
|
hover?: unknown;
|
|
644
640
|
hoverColor?: string | null | undefined;
|
|
645
641
|
prompt?: {
|
|
@@ -647,6 +643,10 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
647
643
|
activeTitle?: string | null | undefined;
|
|
648
644
|
activeText?: string | null | undefined;
|
|
649
645
|
} | null | undefined;
|
|
646
|
+
maximumSelection?: number | null | undefined;
|
|
647
|
+
minimumSelection?: number | null | undefined;
|
|
648
|
+
nameFilter?: string[] | null | undefined;
|
|
649
|
+
selectionColor?: string | null | undefined;
|
|
650
650
|
};
|
|
651
651
|
}>, z.ZodObject<{
|
|
652
652
|
type: z.ZodLiteral<"gumball">;
|
|
@@ -714,8 +714,7 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
714
714
|
activeText?: string | null | undefined;
|
|
715
715
|
}>>>;
|
|
716
716
|
}>, "strip", z.ZodTypeAny, {
|
|
717
|
-
|
|
718
|
-
selectionColor?: string | null | undefined;
|
|
717
|
+
scale?: number | null | undefined;
|
|
719
718
|
hover?: boolean | undefined;
|
|
720
719
|
hoverColor?: string | null | undefined;
|
|
721
720
|
prompt?: {
|
|
@@ -723,6 +722,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
723
722
|
activeTitle?: string | null | undefined;
|
|
724
723
|
activeText?: string | null | undefined;
|
|
725
724
|
} | null | undefined;
|
|
725
|
+
nameFilter?: string[] | null | undefined;
|
|
726
|
+
selectionColor?: string | null | undefined;
|
|
726
727
|
enableRotation?: boolean | undefined;
|
|
727
728
|
enableRotationAxes?: {
|
|
728
729
|
x?: boolean | undefined;
|
|
@@ -741,11 +742,9 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
741
742
|
y?: boolean | undefined;
|
|
742
743
|
z?: boolean | undefined;
|
|
743
744
|
} | null | undefined;
|
|
744
|
-
scale?: number | null | undefined;
|
|
745
745
|
space?: "local" | "world" | null | undefined;
|
|
746
746
|
}, {
|
|
747
|
-
|
|
748
|
-
selectionColor?: string | null | undefined;
|
|
747
|
+
scale?: number | null | undefined;
|
|
749
748
|
hover?: unknown;
|
|
750
749
|
hoverColor?: string | null | undefined;
|
|
751
750
|
prompt?: {
|
|
@@ -753,6 +752,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
753
752
|
activeTitle?: string | null | undefined;
|
|
754
753
|
activeText?: string | null | undefined;
|
|
755
754
|
} | null | undefined;
|
|
755
|
+
nameFilter?: string[] | null | undefined;
|
|
756
|
+
selectionColor?: string | null | undefined;
|
|
756
757
|
enableRotation?: unknown;
|
|
757
758
|
enableRotationAxes?: {
|
|
758
759
|
x?: unknown;
|
|
@@ -771,14 +772,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
771
772
|
y?: unknown;
|
|
772
773
|
z?: unknown;
|
|
773
774
|
} | null | undefined;
|
|
774
|
-
scale?: number | null | undefined;
|
|
775
775
|
space?: "local" | "world" | null | undefined;
|
|
776
776
|
}>;
|
|
777
777
|
}, "strip", z.ZodTypeAny, {
|
|
778
778
|
type: "gumball";
|
|
779
779
|
props: {
|
|
780
|
-
|
|
781
|
-
selectionColor?: string | null | undefined;
|
|
780
|
+
scale?: number | null | undefined;
|
|
782
781
|
hover?: boolean | undefined;
|
|
783
782
|
hoverColor?: string | null | undefined;
|
|
784
783
|
prompt?: {
|
|
@@ -786,6 +785,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
786
785
|
activeTitle?: string | null | undefined;
|
|
787
786
|
activeText?: string | null | undefined;
|
|
788
787
|
} | null | undefined;
|
|
788
|
+
nameFilter?: string[] | null | undefined;
|
|
789
|
+
selectionColor?: string | null | undefined;
|
|
789
790
|
enableRotation?: boolean | undefined;
|
|
790
791
|
enableRotationAxes?: {
|
|
791
792
|
x?: boolean | undefined;
|
|
@@ -804,14 +805,12 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
804
805
|
y?: boolean | undefined;
|
|
805
806
|
z?: boolean | undefined;
|
|
806
807
|
} | null | undefined;
|
|
807
|
-
scale?: number | null | undefined;
|
|
808
808
|
space?: "local" | "world" | null | undefined;
|
|
809
809
|
};
|
|
810
810
|
}, {
|
|
811
811
|
type: "gumball";
|
|
812
812
|
props: {
|
|
813
|
-
|
|
814
|
-
selectionColor?: string | null | undefined;
|
|
813
|
+
scale?: number | null | undefined;
|
|
815
814
|
hover?: unknown;
|
|
816
815
|
hoverColor?: string | null | undefined;
|
|
817
816
|
prompt?: {
|
|
@@ -819,6 +818,8 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
819
818
|
activeTitle?: string | null | undefined;
|
|
820
819
|
activeText?: string | null | undefined;
|
|
821
820
|
} | null | undefined;
|
|
821
|
+
nameFilter?: string[] | null | undefined;
|
|
822
|
+
selectionColor?: string | null | undefined;
|
|
822
823
|
enableRotation?: unknown;
|
|
823
824
|
enableRotationAxes?: {
|
|
824
825
|
x?: unknown;
|
|
@@ -837,7 +838,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
837
838
|
y?: unknown;
|
|
838
839
|
z?: unknown;
|
|
839
840
|
} | null | undefined;
|
|
840
|
-
scale?: number | null | undefined;
|
|
841
841
|
space?: "local" | "world" | null | undefined;
|
|
842
842
|
};
|
|
843
843
|
}>]>, z.ZodObject<{
|
|
@@ -1112,10 +1112,6 @@ export declare const IInteractionParameterJsonSchema: z.ZodUnion<[z.ZodUnion<[z.
|
|
|
1112
1112
|
export declare const validateInteractionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
1113
1113
|
type: "selection";
|
|
1114
1114
|
props: {
|
|
1115
|
-
maximumSelection?: number | null | undefined;
|
|
1116
|
-
minimumSelection?: number | null | undefined;
|
|
1117
|
-
nameFilter?: string[] | null | undefined;
|
|
1118
|
-
selectionColor?: string | null | undefined;
|
|
1119
1115
|
hover?: unknown;
|
|
1120
1116
|
hoverColor?: string | null | undefined;
|
|
1121
1117
|
prompt?: {
|
|
@@ -1123,12 +1119,15 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1123
1119
|
activeTitle?: string | null | undefined;
|
|
1124
1120
|
activeText?: string | null | undefined;
|
|
1125
1121
|
} | null | undefined;
|
|
1122
|
+
maximumSelection?: number | null | undefined;
|
|
1123
|
+
minimumSelection?: number | null | undefined;
|
|
1124
|
+
nameFilter?: string[] | null | undefined;
|
|
1125
|
+
selectionColor?: string | null | undefined;
|
|
1126
1126
|
};
|
|
1127
1127
|
} | {
|
|
1128
1128
|
type: "gumball";
|
|
1129
1129
|
props: {
|
|
1130
|
-
|
|
1131
|
-
selectionColor?: string | null | undefined;
|
|
1130
|
+
scale?: number | null | undefined;
|
|
1132
1131
|
hover?: unknown;
|
|
1133
1132
|
hoverColor?: string | null | undefined;
|
|
1134
1133
|
prompt?: {
|
|
@@ -1136,6 +1135,8 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1136
1135
|
activeTitle?: string | null | undefined;
|
|
1137
1136
|
activeText?: string | null | undefined;
|
|
1138
1137
|
} | null | undefined;
|
|
1138
|
+
nameFilter?: string[] | null | undefined;
|
|
1139
|
+
selectionColor?: string | null | undefined;
|
|
1139
1140
|
enableRotation?: unknown;
|
|
1140
1141
|
enableRotationAxes?: {
|
|
1141
1142
|
x?: unknown;
|
|
@@ -1154,7 +1155,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1154
1155
|
y?: unknown;
|
|
1155
1156
|
z?: unknown;
|
|
1156
1157
|
} | null | undefined;
|
|
1157
|
-
scale?: number | null | undefined;
|
|
1158
1158
|
space?: "local" | "world" | null | undefined;
|
|
1159
1159
|
};
|
|
1160
1160
|
} | {
|
|
@@ -1199,10 +1199,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1199
1199
|
}, {
|
|
1200
1200
|
type: "selection";
|
|
1201
1201
|
props: {
|
|
1202
|
-
maximumSelection?: number | null | undefined;
|
|
1203
|
-
minimumSelection?: number | null | undefined;
|
|
1204
|
-
nameFilter?: string[] | null | undefined;
|
|
1205
|
-
selectionColor?: string | null | undefined;
|
|
1206
1202
|
hover?: boolean | undefined;
|
|
1207
1203
|
hoverColor?: string | null | undefined;
|
|
1208
1204
|
prompt?: {
|
|
@@ -1210,12 +1206,15 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1210
1206
|
activeTitle?: string | null | undefined;
|
|
1211
1207
|
activeText?: string | null | undefined;
|
|
1212
1208
|
} | null | undefined;
|
|
1209
|
+
maximumSelection?: number | null | undefined;
|
|
1210
|
+
minimumSelection?: number | null | undefined;
|
|
1211
|
+
nameFilter?: string[] | null | undefined;
|
|
1212
|
+
selectionColor?: string | null | undefined;
|
|
1213
1213
|
};
|
|
1214
1214
|
} | {
|
|
1215
1215
|
type: "gumball";
|
|
1216
1216
|
props: {
|
|
1217
|
-
|
|
1218
|
-
selectionColor?: string | null | undefined;
|
|
1217
|
+
scale?: number | null | undefined;
|
|
1219
1218
|
hover?: boolean | undefined;
|
|
1220
1219
|
hoverColor?: string | null | undefined;
|
|
1221
1220
|
prompt?: {
|
|
@@ -1223,6 +1222,8 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1223
1222
|
activeTitle?: string | null | undefined;
|
|
1224
1223
|
activeText?: string | null | undefined;
|
|
1225
1224
|
} | null | undefined;
|
|
1225
|
+
nameFilter?: string[] | null | undefined;
|
|
1226
|
+
selectionColor?: string | null | undefined;
|
|
1226
1227
|
enableRotation?: boolean | undefined;
|
|
1227
1228
|
enableRotationAxes?: {
|
|
1228
1229
|
x?: boolean | undefined;
|
|
@@ -1241,7 +1242,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1241
1242
|
y?: boolean | undefined;
|
|
1242
1243
|
z?: boolean | undefined;
|
|
1243
1244
|
} | null | undefined;
|
|
1244
|
-
scale?: number | null | undefined;
|
|
1245
1245
|
space?: "local" | "world" | null | undefined;
|
|
1246
1246
|
};
|
|
1247
1247
|
} | {
|
|
@@ -1287,10 +1287,6 @@ export declare const validateInteractionParameterSettings: (param: unknown) => z
|
|
|
1287
1287
|
export declare const validateSelectionParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
1288
1288
|
type: "selection";
|
|
1289
1289
|
props: {
|
|
1290
|
-
maximumSelection?: number | null | undefined;
|
|
1291
|
-
minimumSelection?: number | null | undefined;
|
|
1292
|
-
nameFilter?: string[] | null | undefined;
|
|
1293
|
-
selectionColor?: string | null | undefined;
|
|
1294
1290
|
hover?: unknown;
|
|
1295
1291
|
hoverColor?: string | null | undefined;
|
|
1296
1292
|
prompt?: {
|
|
@@ -1298,14 +1294,14 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
1298
1294
|
activeTitle?: string | null | undefined;
|
|
1299
1295
|
activeText?: string | null | undefined;
|
|
1300
1296
|
} | null | undefined;
|
|
1301
|
-
};
|
|
1302
|
-
}, {
|
|
1303
|
-
type: "selection";
|
|
1304
|
-
props: {
|
|
1305
1297
|
maximumSelection?: number | null | undefined;
|
|
1306
1298
|
minimumSelection?: number | null | undefined;
|
|
1307
1299
|
nameFilter?: string[] | null | undefined;
|
|
1308
1300
|
selectionColor?: string | null | undefined;
|
|
1301
|
+
};
|
|
1302
|
+
}, {
|
|
1303
|
+
type: "selection";
|
|
1304
|
+
props: {
|
|
1309
1305
|
hover?: boolean | undefined;
|
|
1310
1306
|
hoverColor?: string | null | undefined;
|
|
1311
1307
|
prompt?: {
|
|
@@ -1313,13 +1309,16 @@ export declare const validateSelectionParameterSettings: (param: unknown) => z.S
|
|
|
1313
1309
|
activeTitle?: string | null | undefined;
|
|
1314
1310
|
activeText?: string | null | undefined;
|
|
1315
1311
|
} | null | undefined;
|
|
1312
|
+
maximumSelection?: number | null | undefined;
|
|
1313
|
+
minimumSelection?: number | null | undefined;
|
|
1314
|
+
nameFilter?: string[] | null | undefined;
|
|
1315
|
+
selectionColor?: string | null | undefined;
|
|
1316
1316
|
};
|
|
1317
1317
|
}>;
|
|
1318
1318
|
export declare const validateGumballParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
1319
1319
|
type: "gumball";
|
|
1320
1320
|
props: {
|
|
1321
|
-
|
|
1322
|
-
selectionColor?: string | null | undefined;
|
|
1321
|
+
scale?: number | null | undefined;
|
|
1323
1322
|
hover?: unknown;
|
|
1324
1323
|
hoverColor?: string | null | undefined;
|
|
1325
1324
|
prompt?: {
|
|
@@ -1327,6 +1326,8 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1327
1326
|
activeTitle?: string | null | undefined;
|
|
1328
1327
|
activeText?: string | null | undefined;
|
|
1329
1328
|
} | null | undefined;
|
|
1329
|
+
nameFilter?: string[] | null | undefined;
|
|
1330
|
+
selectionColor?: string | null | undefined;
|
|
1330
1331
|
enableRotation?: unknown;
|
|
1331
1332
|
enableRotationAxes?: {
|
|
1332
1333
|
x?: unknown;
|
|
@@ -1345,14 +1346,12 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1345
1346
|
y?: unknown;
|
|
1346
1347
|
z?: unknown;
|
|
1347
1348
|
} | null | undefined;
|
|
1348
|
-
scale?: number | null | undefined;
|
|
1349
1349
|
space?: "local" | "world" | null | undefined;
|
|
1350
1350
|
};
|
|
1351
1351
|
}, {
|
|
1352
1352
|
type: "gumball";
|
|
1353
1353
|
props: {
|
|
1354
|
-
|
|
1355
|
-
selectionColor?: string | null | undefined;
|
|
1354
|
+
scale?: number | null | undefined;
|
|
1356
1355
|
hover?: boolean | undefined;
|
|
1357
1356
|
hoverColor?: string | null | undefined;
|
|
1358
1357
|
prompt?: {
|
|
@@ -1360,6 +1359,8 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1360
1359
|
activeTitle?: string | null | undefined;
|
|
1361
1360
|
activeText?: string | null | undefined;
|
|
1362
1361
|
} | null | undefined;
|
|
1362
|
+
nameFilter?: string[] | null | undefined;
|
|
1363
|
+
selectionColor?: string | null | undefined;
|
|
1363
1364
|
enableRotation?: boolean | undefined;
|
|
1364
1365
|
enableRotationAxes?: {
|
|
1365
1366
|
x?: boolean | undefined;
|
|
@@ -1378,7 +1379,6 @@ export declare const validateGumballParameterSettings: (param: unknown) => z.Saf
|
|
|
1378
1379
|
y?: boolean | undefined;
|
|
1379
1380
|
z?: boolean | undefined;
|
|
1380
1381
|
} | null | undefined;
|
|
1381
|
-
scale?: number | null | undefined;
|
|
1382
1382
|
space?: "local" | "world" | null | undefined;
|
|
1383
1383
|
};
|
|
1384
1384
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapediver/viewer.shared.types",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.18",
|
|
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.12.
|
|
44
|
-
"@shapediver/viewer.shared.node-tree": "3.12.
|
|
45
|
-
"@shapediver/viewer.shared.services": "3.12.
|
|
43
|
+
"@shapediver/viewer.shared.math": "3.12.18",
|
|
44
|
+
"@shapediver/viewer.shared.node-tree": "3.12.18",
|
|
45
|
+
"@shapediver/viewer.shared.services": "3.12.18",
|
|
46
46
|
"gl-matrix": "3.3.0",
|
|
47
47
|
"zod": "3.23.8"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "7b0d2e371c05bd67a00a6b6b6d56c14105b10e51"
|
|
50
50
|
}
|