@shapediver/viewer.shared.types 3.12.3 → 3.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interfaces/parameter/IDrawingParametersSettings.d.ts +74 -74
- package/dist/interfaces/parameter/IDrawingParametersSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IDrawingParametersSettings.js +10 -6
- package/dist/interfaces/parameter/IDrawingParametersSettings.js.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts +620 -620
- package/dist/interfaces/parameter/IInteractionParameterSettings.d.ts.map +1 -1
- package/dist/interfaces/parameter/IInteractionParameterSettings.js +27 -14
- package/dist/interfaces/parameter/IInteractionParameterSettings.js.map +1 -1
- package/package.json +5 -5
|
@@ -76,44 +76,44 @@ export interface IDrawingParameterSettings {
|
|
|
76
76
|
};
|
|
77
77
|
}
|
|
78
78
|
export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
79
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
79
|
+
geometry: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
80
80
|
mode: z.ZodEnum<["points", "lines"]>;
|
|
81
|
-
minPoints: z.ZodOptional<z.ZodNumber
|
|
82
|
-
maxPoints: z.ZodOptional<z.ZodNumber
|
|
81
|
+
minPoints: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
82
|
+
maxPoints: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
83
83
|
strictMinMaxPoints: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
84
84
|
close: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
85
85
|
autoClose: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
87
|
mode: "points" | "lines";
|
|
88
|
-
minPoints?: number | undefined;
|
|
89
|
-
maxPoints?: number | undefined;
|
|
88
|
+
minPoints?: number | null | undefined;
|
|
89
|
+
maxPoints?: number | null | undefined;
|
|
90
90
|
strictMinMaxPoints?: boolean | undefined;
|
|
91
91
|
close?: boolean | undefined;
|
|
92
92
|
autoClose?: boolean | undefined;
|
|
93
93
|
}, {
|
|
94
94
|
mode: "points" | "lines";
|
|
95
|
-
minPoints?: number | undefined;
|
|
96
|
-
maxPoints?: number | undefined;
|
|
95
|
+
minPoints?: number | null | undefined;
|
|
96
|
+
maxPoints?: number | null | undefined;
|
|
97
97
|
strictMinMaxPoints?: unknown;
|
|
98
98
|
close?: unknown;
|
|
99
99
|
autoClose?: unknown;
|
|
100
|
-
}
|
|
101
|
-
restrictions: z.ZodOptional<z.ZodArray<z.ZodAny, "many"
|
|
102
|
-
general: z.ZodOptional<z.ZodObject<{
|
|
103
|
-
prompt: z.ZodOptional<z.ZodObject<{
|
|
104
|
-
inactiveTitle: z.ZodOptional<z.ZodString
|
|
105
|
-
activeTitle: z.ZodOptional<z.ZodString
|
|
106
|
-
activeText: z.ZodOptional<z.ZodString
|
|
100
|
+
}>>>;
|
|
101
|
+
restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodAny, "many">>>;
|
|
102
|
+
general: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104
|
+
inactiveTitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
105
|
+
activeTitle: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
106
|
+
activeText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
|
-
inactiveTitle?: string | undefined;
|
|
109
|
-
activeTitle?: string | undefined;
|
|
110
|
-
activeText?: string | undefined;
|
|
108
|
+
inactiveTitle?: string | null | undefined;
|
|
109
|
+
activeTitle?: string | null | undefined;
|
|
110
|
+
activeText?: string | null | undefined;
|
|
111
111
|
}, {
|
|
112
|
-
inactiveTitle?: string | undefined;
|
|
113
|
-
activeTitle?: string | undefined;
|
|
114
|
-
activeText?: string | undefined;
|
|
115
|
-
}
|
|
116
|
-
options: z.ZodOptional<z.ZodObject<{
|
|
112
|
+
inactiveTitle?: string | null | undefined;
|
|
113
|
+
activeTitle?: string | null | undefined;
|
|
114
|
+
activeText?: string | null | undefined;
|
|
115
|
+
}>>>;
|
|
116
|
+
options: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
117
117
|
showDistanceLabels: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
118
118
|
showPointLabels: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
119
119
|
snapToVertices: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
@@ -131,7 +131,7 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
131
131
|
snapToVertices?: unknown;
|
|
132
132
|
snapToEdges?: unknown;
|
|
133
133
|
snapToFaces?: unknown;
|
|
134
|
-
}
|
|
134
|
+
}>>>;
|
|
135
135
|
}, "strip", z.ZodTypeAny, {
|
|
136
136
|
options?: {
|
|
137
137
|
showDistanceLabels?: boolean | undefined;
|
|
@@ -139,12 +139,12 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
139
139
|
snapToVertices?: boolean | undefined;
|
|
140
140
|
snapToEdges?: boolean | undefined;
|
|
141
141
|
snapToFaces?: boolean | undefined;
|
|
142
|
-
} | undefined;
|
|
142
|
+
} | null | undefined;
|
|
143
143
|
prompt?: {
|
|
144
|
-
inactiveTitle?: string | undefined;
|
|
145
|
-
activeTitle?: string | undefined;
|
|
146
|
-
activeText?: string | undefined;
|
|
147
|
-
} | undefined;
|
|
144
|
+
inactiveTitle?: string | null | undefined;
|
|
145
|
+
activeTitle?: string | null | undefined;
|
|
146
|
+
activeText?: string | null | undefined;
|
|
147
|
+
} | null | undefined;
|
|
148
148
|
}, {
|
|
149
149
|
options?: {
|
|
150
150
|
showDistanceLabels?: unknown;
|
|
@@ -152,23 +152,23 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
152
152
|
snapToVertices?: unknown;
|
|
153
153
|
snapToEdges?: unknown;
|
|
154
154
|
snapToFaces?: unknown;
|
|
155
|
-
} | undefined;
|
|
155
|
+
} | null | undefined;
|
|
156
156
|
prompt?: {
|
|
157
|
-
inactiveTitle?: string | undefined;
|
|
158
|
-
activeTitle?: string | undefined;
|
|
159
|
-
activeText?: string | undefined;
|
|
160
|
-
} | undefined;
|
|
161
|
-
}
|
|
157
|
+
inactiveTitle?: string | null | undefined;
|
|
158
|
+
activeTitle?: string | null | undefined;
|
|
159
|
+
activeText?: string | null | undefined;
|
|
160
|
+
} | null | undefined;
|
|
161
|
+
}>>>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
+
restrictions?: any[] | null | undefined;
|
|
163
164
|
geometry?: {
|
|
164
165
|
mode: "points" | "lines";
|
|
165
|
-
minPoints?: number | undefined;
|
|
166
|
-
maxPoints?: number | undefined;
|
|
166
|
+
minPoints?: number | null | undefined;
|
|
167
|
+
maxPoints?: number | null | undefined;
|
|
167
168
|
strictMinMaxPoints?: boolean | undefined;
|
|
168
169
|
close?: boolean | undefined;
|
|
169
170
|
autoClose?: boolean | undefined;
|
|
170
|
-
} | undefined;
|
|
171
|
-
restrictions?: any[] | undefined;
|
|
171
|
+
} | null | undefined;
|
|
172
172
|
general?: {
|
|
173
173
|
options?: {
|
|
174
174
|
showDistanceLabels?: boolean | undefined;
|
|
@@ -176,23 +176,23 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
176
176
|
snapToVertices?: boolean | undefined;
|
|
177
177
|
snapToEdges?: boolean | undefined;
|
|
178
178
|
snapToFaces?: boolean | undefined;
|
|
179
|
-
} | undefined;
|
|
179
|
+
} | null | undefined;
|
|
180
180
|
prompt?: {
|
|
181
|
-
inactiveTitle?: string | undefined;
|
|
182
|
-
activeTitle?: string | undefined;
|
|
183
|
-
activeText?: string | undefined;
|
|
184
|
-
} | undefined;
|
|
185
|
-
} | undefined;
|
|
181
|
+
inactiveTitle?: string | null | undefined;
|
|
182
|
+
activeTitle?: string | null | undefined;
|
|
183
|
+
activeText?: string | null | undefined;
|
|
184
|
+
} | null | undefined;
|
|
185
|
+
} | null | undefined;
|
|
186
186
|
}, {
|
|
187
|
+
restrictions?: any[] | null | undefined;
|
|
187
188
|
geometry?: {
|
|
188
189
|
mode: "points" | "lines";
|
|
189
|
-
minPoints?: number | undefined;
|
|
190
|
-
maxPoints?: number | undefined;
|
|
190
|
+
minPoints?: number | null | undefined;
|
|
191
|
+
maxPoints?: number | null | undefined;
|
|
191
192
|
strictMinMaxPoints?: unknown;
|
|
192
193
|
close?: unknown;
|
|
193
194
|
autoClose?: unknown;
|
|
194
|
-
} | undefined;
|
|
195
|
-
restrictions?: any[] | undefined;
|
|
195
|
+
} | null | undefined;
|
|
196
196
|
general?: {
|
|
197
197
|
options?: {
|
|
198
198
|
showDistanceLabels?: unknown;
|
|
@@ -200,24 +200,24 @@ export declare const IDrawingParameterJsonSchema: z.ZodObject<{
|
|
|
200
200
|
snapToVertices?: unknown;
|
|
201
201
|
snapToEdges?: unknown;
|
|
202
202
|
snapToFaces?: unknown;
|
|
203
|
-
} | undefined;
|
|
203
|
+
} | null | undefined;
|
|
204
204
|
prompt?: {
|
|
205
|
-
inactiveTitle?: string | undefined;
|
|
206
|
-
activeTitle?: string | undefined;
|
|
207
|
-
activeText?: string | undefined;
|
|
208
|
-
} | undefined;
|
|
209
|
-
} | undefined;
|
|
205
|
+
inactiveTitle?: string | null | undefined;
|
|
206
|
+
activeTitle?: string | null | undefined;
|
|
207
|
+
activeText?: string | null | undefined;
|
|
208
|
+
} | null | undefined;
|
|
209
|
+
} | null | undefined;
|
|
210
210
|
}>;
|
|
211
211
|
export declare const validateDrawingParameterSettings: (param: unknown) => z.SafeParseReturnType<{
|
|
212
|
+
restrictions?: any[] | null | undefined;
|
|
212
213
|
geometry?: {
|
|
213
214
|
mode: "points" | "lines";
|
|
214
|
-
minPoints?: number | undefined;
|
|
215
|
-
maxPoints?: number | undefined;
|
|
215
|
+
minPoints?: number | null | undefined;
|
|
216
|
+
maxPoints?: number | null | undefined;
|
|
216
217
|
strictMinMaxPoints?: unknown;
|
|
217
218
|
close?: unknown;
|
|
218
219
|
autoClose?: unknown;
|
|
219
|
-
} | undefined;
|
|
220
|
-
restrictions?: any[] | undefined;
|
|
220
|
+
} | null | undefined;
|
|
221
221
|
general?: {
|
|
222
222
|
options?: {
|
|
223
223
|
showDistanceLabels?: unknown;
|
|
@@ -225,23 +225,23 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
225
225
|
snapToVertices?: unknown;
|
|
226
226
|
snapToEdges?: unknown;
|
|
227
227
|
snapToFaces?: unknown;
|
|
228
|
-
} | undefined;
|
|
228
|
+
} | null | undefined;
|
|
229
229
|
prompt?: {
|
|
230
|
-
inactiveTitle?: string | undefined;
|
|
231
|
-
activeTitle?: string | undefined;
|
|
232
|
-
activeText?: string | undefined;
|
|
233
|
-
} | undefined;
|
|
234
|
-
} | undefined;
|
|
230
|
+
inactiveTitle?: string | null | undefined;
|
|
231
|
+
activeTitle?: string | null | undefined;
|
|
232
|
+
activeText?: string | null | undefined;
|
|
233
|
+
} | null | undefined;
|
|
234
|
+
} | null | undefined;
|
|
235
235
|
}, {
|
|
236
|
+
restrictions?: any[] | null | undefined;
|
|
236
237
|
geometry?: {
|
|
237
238
|
mode: "points" | "lines";
|
|
238
|
-
minPoints?: number | undefined;
|
|
239
|
-
maxPoints?: number | undefined;
|
|
239
|
+
minPoints?: number | null | undefined;
|
|
240
|
+
maxPoints?: number | null | undefined;
|
|
240
241
|
strictMinMaxPoints?: boolean | undefined;
|
|
241
242
|
close?: boolean | undefined;
|
|
242
243
|
autoClose?: boolean | undefined;
|
|
243
|
-
} | undefined;
|
|
244
|
-
restrictions?: any[] | undefined;
|
|
244
|
+
} | null | undefined;
|
|
245
245
|
general?: {
|
|
246
246
|
options?: {
|
|
247
247
|
showDistanceLabels?: boolean | undefined;
|
|
@@ -249,12 +249,12 @@ export declare const validateDrawingParameterSettings: (param: unknown) => z.Saf
|
|
|
249
249
|
snapToVertices?: boolean | undefined;
|
|
250
250
|
snapToEdges?: boolean | undefined;
|
|
251
251
|
snapToFaces?: boolean | undefined;
|
|
252
|
-
} | undefined;
|
|
252
|
+
} | null | undefined;
|
|
253
253
|
prompt?: {
|
|
254
|
-
inactiveTitle?: string | undefined;
|
|
255
|
-
activeTitle?: string | undefined;
|
|
256
|
-
activeText?: string | undefined;
|
|
257
|
-
} | undefined;
|
|
258
|
-
} | undefined;
|
|
254
|
+
inactiveTitle?: string | null | undefined;
|
|
255
|
+
activeTitle?: string | null | undefined;
|
|
256
|
+
activeText?: string | null | undefined;
|
|
257
|
+
} | null | undefined;
|
|
258
|
+
} | null | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
//# sourceMappingURL=IDrawingParametersSettings.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IDrawingParametersSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,qBAAqB,EAAC,MAAM,wBAAwB,CAAC;AAI7D,oBAAY,qBAAqB,GAAG;IACnC,MAAM,EAAE,MAAM,EAAE,EAAE,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,yBAAyB;IAGzC,QAAQ,CAAC,EAAE;QACV;;;;;;;WAOG;QACH,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC;QAEzB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;;;WAOG;QACH,KAAK,EAAE,OAAO,CAAC;QAEf;;;;;;;WAOG;QACH,SAAS,EAAE,OAAO,CAAC;KACnB,CAAC;IACF,YAAY,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACvC,OAAO,CAAC,EAAE;QACT,qFAAqF;QACrF,MAAM,CAAC,EAAE;YACR,gDAAgD;YAChD,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,8CAA8C;YAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,+CAA+C;YAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;QACF,OAAO,CAAC,EAAE;YACT,8DAA8D;YAC9D,kBAAkB,CAAC,EAAE,OAAO,CAAC;YAC7B,4DAA4D;YAC5D,eAAe,CAAC,EAAE,OAAO,CAAC;YAC1B,wGAAwG;YACxG,cAAc,CAAC,EAAE,OAAO,CAAC;YACzB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;YACtB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;SACtB,CAAC;KACF,CAAC;CAGF;AAaD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"IDrawingParametersSettings.d.ts","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AACtB,OAAO,EAAC,qBAAqB,EAAC,MAAM,wBAAwB,CAAC;AAI7D,oBAAY,qBAAqB,GAAG;IACnC,MAAM,EAAE,MAAM,EAAE,EAAE,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,yBAAyB;IAGzC,QAAQ,CAAC,EAAE;QACV;;;;;;;WAOG;QACH,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC;QAEzB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;WAKG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;;;;;WAOG;QACH,KAAK,EAAE,OAAO,CAAC;QAEf;;;;;;;WAOG;QACH,SAAS,EAAE,OAAO,CAAC;KACnB,CAAC;IACF,YAAY,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACvC,OAAO,CAAC,EAAE;QACT,qFAAqF;QACrF,MAAM,CAAC,EAAE;YACR,gDAAgD;YAChD,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,8CAA8C;YAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,+CAA+C;YAC/C,UAAU,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;QACF,OAAO,CAAC,EAAE;YACT,8DAA8D;YAC9D,kBAAkB,CAAC,EAAE,OAAO,CAAC;YAC7B,4DAA4D;YAC5D,eAAe,CAAC,EAAE,OAAO,CAAC;YAC1B,wGAAwG;YACxG,cAAc,CAAC,EAAE,OAAO,CAAC;YACzB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;YACtB,qGAAqG;YACrG,WAAW,CAAC,EAAE,OAAO,CAAC;SACtB,CAAC;KACF,CAAC;CAGF;AAaD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCtC,CAAC;AAEH,eAAO,MAAM,gCAAgC,UAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9D,CAAC"}
|
|
@@ -17,22 +17,24 @@ exports.IDrawingParameterJsonSchema = zod_1.z.object({
|
|
|
17
17
|
geometry: zod_1.z
|
|
18
18
|
.object({
|
|
19
19
|
mode: zod_1.z.enum(["points", "lines"]),
|
|
20
|
-
minPoints: zod_1.z.number().optional(),
|
|
21
|
-
maxPoints: zod_1.z.number().optional(),
|
|
20
|
+
minPoints: zod_1.z.number().nullable().optional(),
|
|
21
|
+
maxPoints: zod_1.z.number().nullable().optional(),
|
|
22
22
|
strictMinMaxPoints: optionalBoolean,
|
|
23
23
|
close: optionalBoolean,
|
|
24
24
|
autoClose: optionalBoolean,
|
|
25
25
|
})
|
|
26
|
+
.nullable()
|
|
26
27
|
.optional(),
|
|
27
|
-
restrictions: zod_1.z.array(zod_1.z.any()).optional(),
|
|
28
|
+
restrictions: zod_1.z.array(zod_1.z.any()).nullable().optional(),
|
|
28
29
|
general: zod_1.z
|
|
29
30
|
.object({
|
|
30
31
|
prompt: zod_1.z
|
|
31
32
|
.object({
|
|
32
|
-
inactiveTitle: zod_1.z.string().optional(),
|
|
33
|
-
activeTitle: zod_1.z.string().optional(),
|
|
34
|
-
activeText: zod_1.z.string().optional(),
|
|
33
|
+
inactiveTitle: zod_1.z.string().nullable().optional(),
|
|
34
|
+
activeTitle: zod_1.z.string().nullable().optional(),
|
|
35
|
+
activeText: zod_1.z.string().nullable().optional(),
|
|
35
36
|
})
|
|
37
|
+
.nullable()
|
|
36
38
|
.optional(),
|
|
37
39
|
options: zod_1.z
|
|
38
40
|
.object({
|
|
@@ -42,8 +44,10 @@ exports.IDrawingParameterJsonSchema = zod_1.z.object({
|
|
|
42
44
|
snapToEdges: optionalBoolean,
|
|
43
45
|
snapToFaces: optionalBoolean,
|
|
44
46
|
})
|
|
47
|
+
.nullable()
|
|
45
48
|
.optional(),
|
|
46
49
|
})
|
|
50
|
+
.nullable()
|
|
47
51
|
.optional(),
|
|
48
52
|
});
|
|
49
53
|
const validateDrawingParameterSettings = (param) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IDrawingParametersSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AA0FtB,4BAA4B;AAE5B,wBAAwB;AAExB,MAAM,eAAe,GAAG,OAAC,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,EAAE;IAC5C,IAAI,GAAG,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IAChC,IAAI,GAAG,KAAK,OAAO;QAAE,OAAO,KAAK,CAAC;IAClC,IAAI,GAAG,KAAK,IAAI;QAAE,OAAO,SAAS,CAAC;IACnC,OAAO,GAAG,CAAC;AACZ,CAAC,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;AAEd,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,QAAQ,EAAE,OAAC;SACT,MAAM,CAAC;QACP,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;QACjC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"IDrawingParametersSettings.js","sourceRoot":"","sources":["../../../src/interfaces/parameter/IDrawingParametersSettings.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AA0FtB,4BAA4B;AAE5B,wBAAwB;AAExB,MAAM,eAAe,GAAG,OAAC,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,EAAE;IAC5C,IAAI,GAAG,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IAChC,IAAI,GAAG,KAAK,OAAO;QAAE,OAAO,KAAK,CAAC;IAClC,IAAI,GAAG,KAAK,IAAI;QAAE,OAAO,SAAS,CAAC;IACnC,OAAO,GAAG,CAAC;AACZ,CAAC,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;AAEd,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,QAAQ,EAAE,OAAC;SACT,MAAM,CAAC;QACP,IAAI,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;QACjC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QAC3C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;QAC3C,kBAAkB,EAAE,eAAe;QACnC,KAAK,EAAE,eAAe;QACtB,SAAS,EAAE,eAAe;KAC1B,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;IACZ,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpD,OAAO,EAAE,OAAC;SACR,MAAM,CAAC;QACP,MAAM,EAAE,OAAC;aACP,MAAM,CAAC;YACP,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YAC/C,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;YAC7C,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;SAC5C,CAAC;aACD,QAAQ,EAAE;aACV,QAAQ,EAAE;QACZ,OAAO,EAAE,OAAC;aACR,MAAM,CAAC;YACP,kBAAkB,EAAE,eAAe;YACnC,eAAe,EAAE,eAAe;YAChC,cAAc,EAAE,eAAe;YAC/B,WAAW,EAAE,eAAe;YAC5B,WAAW,EAAE,eAAe;SAC5B,CAAC;aACD,QAAQ,EAAE;aACV,QAAQ,EAAE;KACZ,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACZ,CAAC,CAAC;AAEI,MAAM,gCAAgC,GAAG,CAAC,KAAc,EAAE,EAAE;IAClE,OAAO,mCAA2B,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;AACrD,CAAC,CAAC;AAFW,QAAA,gCAAgC,oCAE3C;AAEF,2BAA2B"}
|