@mlightcad/cad-simple-viewer 1.4.12 → 1.4.13
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/index.js +15901 -10590
- package/dist/index.umd.cjs +55 -48
- package/dist/libredwg-parser-worker.js +4724 -4762
- package/lib/app/AcApDocManager.d.ts +60 -4
- package/lib/app/AcApDocManager.d.ts.map +1 -1
- package/lib/app/AcApDocManager.js +160 -33
- package/lib/app/AcApDocManager.js.map +1 -1
- package/lib/command/AcApArcCmd.d.ts.map +1 -1
- package/lib/command/AcApArcCmd.js +1 -1
- package/lib/command/AcApArcCmd.js.map +1 -1
- package/lib/command/AcApCircleCmd.d.ts +59 -0
- package/lib/command/AcApCircleCmd.d.ts.map +1 -1
- package/lib/command/AcApCircleCmd.js +489 -18
- package/lib/command/AcApCircleCmd.js.map +1 -1
- package/lib/command/AcApConvertToPngCmd.d.ts +35 -0
- package/lib/command/AcApConvertToPngCmd.d.ts.map +1 -0
- package/lib/command/{AcApZoomToBoxCmd.js → AcApConvertToPngCmd.js} +50 -26
- package/lib/command/AcApConvertToPngCmd.js.map +1 -0
- package/lib/command/AcApEllipseCmd.d.ts +87 -0
- package/lib/command/AcApEllipseCmd.d.ts.map +1 -0
- package/lib/command/AcApEllipseCmd.js +583 -0
- package/lib/command/AcApEllipseCmd.js.map +1 -0
- package/lib/command/AcApHatchCmd.d.ts +210 -0
- package/lib/command/AcApHatchCmd.d.ts.map +1 -0
- package/lib/command/AcApHatchCmd.js +808 -0
- package/lib/command/AcApHatchCmd.js.map +1 -0
- package/lib/command/AcApLayerCmd.d.ts +217 -0
- package/lib/command/AcApLayerCmd.d.ts.map +1 -0
- package/lib/command/AcApLayerCmd.js +768 -0
- package/lib/command/AcApLayerCmd.js.map +1 -0
- package/lib/command/AcApLineCmd.d.ts +36 -1
- package/lib/command/AcApLineCmd.d.ts.map +1 -1
- package/lib/command/AcApLineCmd.js +157 -20
- package/lib/command/AcApLineCmd.js.map +1 -1
- package/lib/command/AcApMeasureAreaCmd.d.ts.map +1 -1
- package/lib/command/AcApMeasureAreaCmd.js +3 -0
- package/lib/command/AcApMeasureAreaCmd.js.map +1 -1
- package/lib/command/AcApMoveCmd.d.ts +16 -0
- package/lib/command/AcApMoveCmd.d.ts.map +1 -0
- package/lib/command/AcApMoveCmd.js +278 -0
- package/lib/command/AcApMoveCmd.js.map +1 -0
- package/lib/command/AcApPngConvertor.d.ts +95 -0
- package/lib/command/AcApPngConvertor.d.ts.map +1 -0
- package/lib/command/AcApPngConvertor.js +205 -0
- package/lib/command/AcApPngConvertor.js.map +1 -0
- package/lib/command/AcApPolygonCmd.d.ts +69 -0
- package/lib/command/AcApPolygonCmd.d.ts.map +1 -0
- package/lib/command/AcApPolygonCmd.js +422 -0
- package/lib/command/AcApPolygonCmd.js.map +1 -0
- package/lib/command/AcApRectCmd.d.ts +149 -4
- package/lib/command/AcApRectCmd.d.ts.map +1 -1
- package/lib/command/AcApRectCmd.js +716 -34
- package/lib/command/AcApRectCmd.js.map +1 -1
- package/lib/command/AcApRevCircleCmd.d.ts +8 -0
- package/lib/command/AcApRevCircleCmd.d.ts.map +1 -1
- package/lib/command/AcApRevCircleCmd.js +30 -6
- package/lib/command/AcApRevCircleCmd.js.map +1 -1
- package/lib/command/AcApRevRectCmd.d.ts +8 -0
- package/lib/command/AcApRevRectCmd.d.ts.map +1 -1
- package/lib/command/AcApRevRectCmd.js +78 -6
- package/lib/command/AcApRevRectCmd.js.map +1 -1
- package/lib/command/AcApSplineCmd.d.ts +66 -1
- package/lib/command/AcApSplineCmd.d.ts.map +1 -1
- package/lib/command/AcApSplineCmd.js +466 -59
- package/lib/command/AcApSplineCmd.js.map +1 -1
- package/lib/command/AcApZoomCmd.d.ts +91 -20
- package/lib/command/AcApZoomCmd.d.ts.map +1 -1
- package/lib/command/AcApZoomCmd.js +288 -23
- package/lib/command/AcApZoomCmd.js.map +1 -1
- package/lib/command/index.d.ts +7 -1
- package/lib/command/index.d.ts.map +1 -1
- package/lib/command/index.js +7 -1
- package/lib/command/index.js.map +1 -1
- package/lib/editor/command/AcEdCommandStack.d.ts +54 -1
- package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
- package/lib/editor/command/AcEdCommandStack.js +207 -25
- package/lib/editor/command/AcEdCommandStack.js.map +1 -1
- package/lib/editor/input/AcEdSelectionFilter.d.ts +79 -0
- package/lib/editor/input/AcEdSelectionFilter.d.ts.map +1 -0
- package/lib/editor/input/AcEdSelectionFilter.js +231 -0
- package/lib/editor/input/AcEdSelectionFilter.js.map +1 -0
- package/lib/editor/input/AcEditor.d.ts +20 -2
- package/lib/editor/input/AcEditor.d.ts.map +1 -1
- package/lib/editor/input/AcEditor.js +66 -0
- package/lib/editor/input/AcEditor.js.map +1 -1
- package/lib/editor/input/index.d.ts +1 -0
- package/lib/editor/input/index.d.ts.map +1 -1
- package/lib/editor/input/index.js +1 -0
- package/lib/editor/input/index.js.map +1 -1
- package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts +47 -0
- package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdKeywordCollection.js +19 -0
- package/lib/editor/input/prompt/AcEdKeywordCollection.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts +7 -0
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.js +17 -0
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts +17 -0
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.js +30 -3
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.d.ts +6 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.js +7 -0
- package/lib/editor/input/prompt/AcEdPromptOptions.js.map +1 -1
- package/lib/editor/input/session/AcEdKeywordSession.d.ts +65 -0
- package/lib/editor/input/session/AcEdKeywordSession.d.ts.map +1 -1
- package/lib/editor/input/session/AcEdKeywordSession.js +71 -0
- package/lib/editor/input/session/AcEdKeywordSession.js.map +1 -1
- package/lib/editor/input/ui/AcEdCommandLine.d.ts +23 -0
- package/lib/editor/input/ui/AcEdCommandLine.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdCommandLine.js +42 -6
- package/lib/editor/input/ui/AcEdCommandLine.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts +1 -0
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInput.js +8 -2
- package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts +23 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.js +32 -9
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +28 -0
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.d.ts +356 -16
- package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.js +964 -529
- package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
- package/lib/editor/input/ui/AcEdRubberBand.d.ts +15 -1
- package/lib/editor/input/ui/AcEdRubberBand.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdRubberBand.js +42 -10
- package/lib/editor/input/ui/AcEdRubberBand.js.map +1 -1
- package/lib/i18n/en/command.d.ts +21 -3
- package/lib/i18n/en/command.d.ts.map +1 -1
- package/lib/i18n/en/command.js +21 -3
- package/lib/i18n/en/command.js.map +1 -1
- package/lib/i18n/en/jig.d.ts +443 -0
- package/lib/i18n/en/jig.d.ts.map +1 -1
- package/lib/i18n/en/jig.js +452 -9
- package/lib/i18n/en/jig.js.map +1 -1
- package/lib/i18n/zh/command.d.ts +21 -3
- package/lib/i18n/zh/command.d.ts.map +1 -1
- package/lib/i18n/zh/command.js +21 -3
- package/lib/i18n/zh/command.js.map +1 -1
- package/lib/i18n/zh/jig.d.ts +443 -0
- package/lib/i18n/zh/jig.d.ts.map +1 -1
- package/lib/i18n/zh/jig.js +452 -9
- package/lib/i18n/zh/jig.js.map +1 -1
- package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
- package/lib/plugin/AcApPluginManager.js.map +1 -1
- package/lib/view/AcTrLayer.d.ts.map +1 -1
- package/lib/view/AcTrLayer.js +5 -3
- package/lib/view/AcTrLayer.js.map +1 -1
- package/lib/view/AcTrView2d.d.ts +0 -1
- package/lib/view/AcTrView2d.d.ts.map +1 -1
- package/lib/view/AcTrView2d.js +17 -4
- package/lib/view/AcTrView2d.js.map +1 -1
- package/package.json +11 -9
- package/lib/command/AcApZoomToBoxCmd.d.ts +0 -29
- package/lib/command/AcApZoomToBoxCmd.d.ts.map +0 -1
- package/lib/command/AcApZoomToBoxCmd.js.map +0 -1
package/lib/i18n/en/jig.d.ts
CHANGED
|
@@ -54,7 +54,65 @@ declare const _default: {
|
|
|
54
54
|
};
|
|
55
55
|
circle: {
|
|
56
56
|
center: string;
|
|
57
|
+
centerOrOptions: string;
|
|
57
58
|
radius: string;
|
|
59
|
+
radiusOrDiameter: string;
|
|
60
|
+
diameter: string;
|
|
61
|
+
twoPointFirst: string;
|
|
62
|
+
twoPointSecond: string;
|
|
63
|
+
threePointFirst: string;
|
|
64
|
+
threePointSecond: string;
|
|
65
|
+
threePointThird: string;
|
|
66
|
+
keywords: {
|
|
67
|
+
threeP: {
|
|
68
|
+
display: string;
|
|
69
|
+
local: string;
|
|
70
|
+
global: string;
|
|
71
|
+
};
|
|
72
|
+
twoP: {
|
|
73
|
+
display: string;
|
|
74
|
+
local: string;
|
|
75
|
+
global: string;
|
|
76
|
+
};
|
|
77
|
+
diameter: {
|
|
78
|
+
display: string;
|
|
79
|
+
local: string;
|
|
80
|
+
global: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
ellipse: {
|
|
85
|
+
axisEndpointOrOptions: string;
|
|
86
|
+
arcAxisEndpointOrCenter: string;
|
|
87
|
+
center: string;
|
|
88
|
+
firstAxisEndpoint: string;
|
|
89
|
+
secondAxisEndpoint: string;
|
|
90
|
+
otherAxisOrRotation: string;
|
|
91
|
+
rotationAngle: string;
|
|
92
|
+
arcStartAngle: string;
|
|
93
|
+
arcEndAngle: string;
|
|
94
|
+
keywords: {
|
|
95
|
+
arc: {
|
|
96
|
+
display: string;
|
|
97
|
+
local: string;
|
|
98
|
+
global: string;
|
|
99
|
+
};
|
|
100
|
+
center: {
|
|
101
|
+
display: string;
|
|
102
|
+
local: string;
|
|
103
|
+
global: string;
|
|
104
|
+
};
|
|
105
|
+
rotation: {
|
|
106
|
+
display: string;
|
|
107
|
+
local: string;
|
|
108
|
+
global: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
invalid: {
|
|
112
|
+
axis: string;
|
|
113
|
+
otherAxis: string;
|
|
114
|
+
rotation: string;
|
|
115
|
+
};
|
|
58
116
|
};
|
|
59
117
|
measureDistance: {
|
|
60
118
|
firstPoint: string;
|
|
@@ -81,14 +139,143 @@ declare const _default: {
|
|
|
81
139
|
};
|
|
82
140
|
line: {
|
|
83
141
|
firstPoint: string;
|
|
142
|
+
firstPointOrContinue: string;
|
|
84
143
|
nextPoint: string;
|
|
144
|
+
nextPointWithOptions: string;
|
|
145
|
+
keywords: {
|
|
146
|
+
continue: {
|
|
147
|
+
display: string;
|
|
148
|
+
local: string;
|
|
149
|
+
global: string;
|
|
150
|
+
};
|
|
151
|
+
undo: {
|
|
152
|
+
display: string;
|
|
153
|
+
local: string;
|
|
154
|
+
global: string;
|
|
155
|
+
};
|
|
156
|
+
close: {
|
|
157
|
+
display: string;
|
|
158
|
+
local: string;
|
|
159
|
+
global: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
85
162
|
};
|
|
86
163
|
mtext: {
|
|
87
164
|
point: string;
|
|
88
165
|
};
|
|
166
|
+
move: {
|
|
167
|
+
basePointOrDisplacement: string;
|
|
168
|
+
secondPointOrDisplacement: string;
|
|
169
|
+
displacement: string;
|
|
170
|
+
keywords: {
|
|
171
|
+
displacement: {
|
|
172
|
+
display: string;
|
|
173
|
+
local: string;
|
|
174
|
+
global: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
};
|
|
89
178
|
rect: {
|
|
90
179
|
firstPoint: string;
|
|
91
180
|
nextPoint: string;
|
|
181
|
+
firstPointWithOptions: string;
|
|
182
|
+
otherCornerWithOptions: string;
|
|
183
|
+
chamferFirst: string;
|
|
184
|
+
chamferSecond: string;
|
|
185
|
+
filletRadius: string;
|
|
186
|
+
segmentWidth: string;
|
|
187
|
+
elevationValue: string;
|
|
188
|
+
thicknessValue: string;
|
|
189
|
+
rotationAngle: string;
|
|
190
|
+
dimensionLength: string;
|
|
191
|
+
dimensionWidth: string;
|
|
192
|
+
areaValue: string;
|
|
193
|
+
areaLengthOrWidth: string;
|
|
194
|
+
areaSpecifyWidth: string;
|
|
195
|
+
invalidPositive: string;
|
|
196
|
+
invalidRect: string;
|
|
197
|
+
thicknessNotSupported: string;
|
|
198
|
+
keywords: {
|
|
199
|
+
chamfer: {
|
|
200
|
+
display: string;
|
|
201
|
+
local: string;
|
|
202
|
+
global: string;
|
|
203
|
+
};
|
|
204
|
+
elevation: {
|
|
205
|
+
display: string;
|
|
206
|
+
local: string;
|
|
207
|
+
global: string;
|
|
208
|
+
};
|
|
209
|
+
fillet: {
|
|
210
|
+
display: string;
|
|
211
|
+
local: string;
|
|
212
|
+
global: string;
|
|
213
|
+
};
|
|
214
|
+
thickness: {
|
|
215
|
+
display: string;
|
|
216
|
+
local: string;
|
|
217
|
+
global: string;
|
|
218
|
+
};
|
|
219
|
+
width: {
|
|
220
|
+
display: string;
|
|
221
|
+
local: string;
|
|
222
|
+
global: string;
|
|
223
|
+
};
|
|
224
|
+
area: {
|
|
225
|
+
display: string;
|
|
226
|
+
local: string;
|
|
227
|
+
global: string;
|
|
228
|
+
};
|
|
229
|
+
dimensions: {
|
|
230
|
+
display: string;
|
|
231
|
+
local: string;
|
|
232
|
+
global: string;
|
|
233
|
+
};
|
|
234
|
+
rotation: {
|
|
235
|
+
display: string;
|
|
236
|
+
local: string;
|
|
237
|
+
global: string;
|
|
238
|
+
};
|
|
239
|
+
length: {
|
|
240
|
+
display: string;
|
|
241
|
+
local: string;
|
|
242
|
+
global: string;
|
|
243
|
+
};
|
|
244
|
+
rectWidth: {
|
|
245
|
+
display: string;
|
|
246
|
+
local: string;
|
|
247
|
+
global: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
polygon: {
|
|
252
|
+
numberOfSides: string;
|
|
253
|
+
centerOrEdge: string;
|
|
254
|
+
radiusOrType: string;
|
|
255
|
+
edgeStart: string;
|
|
256
|
+
edgeEnd: string;
|
|
257
|
+
keywords: {
|
|
258
|
+
edge: {
|
|
259
|
+
display: string;
|
|
260
|
+
local: string;
|
|
261
|
+
global: string;
|
|
262
|
+
};
|
|
263
|
+
inscribed: {
|
|
264
|
+
display: string;
|
|
265
|
+
local: string;
|
|
266
|
+
global: string;
|
|
267
|
+
};
|
|
268
|
+
circumscribed: {
|
|
269
|
+
display: string;
|
|
270
|
+
local: string;
|
|
271
|
+
global: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
invalid: {
|
|
275
|
+
sides: string;
|
|
276
|
+
radius: string;
|
|
277
|
+
edge: string;
|
|
278
|
+
};
|
|
92
279
|
};
|
|
93
280
|
sketch: {
|
|
94
281
|
firstPoint: string;
|
|
@@ -147,9 +334,265 @@ declare const _default: {
|
|
|
147
334
|
arcEndPoint: string;
|
|
148
335
|
arcRadius: string;
|
|
149
336
|
};
|
|
337
|
+
zoom: {
|
|
338
|
+
mainPrompt: string;
|
|
339
|
+
firstCorner: string;
|
|
340
|
+
secondCorner: string;
|
|
341
|
+
centerPoint: string;
|
|
342
|
+
heightOrScale: string;
|
|
343
|
+
scaleFactor: string;
|
|
344
|
+
keywords: {
|
|
345
|
+
all: {
|
|
346
|
+
display: string;
|
|
347
|
+
local: string;
|
|
348
|
+
global: string;
|
|
349
|
+
};
|
|
350
|
+
center: {
|
|
351
|
+
display: string;
|
|
352
|
+
local: string;
|
|
353
|
+
global: string;
|
|
354
|
+
};
|
|
355
|
+
extents: {
|
|
356
|
+
display: string;
|
|
357
|
+
local: string;
|
|
358
|
+
global: string;
|
|
359
|
+
};
|
|
360
|
+
previous: {
|
|
361
|
+
display: string;
|
|
362
|
+
local: string;
|
|
363
|
+
global: string;
|
|
364
|
+
};
|
|
365
|
+
scale: {
|
|
366
|
+
display: string;
|
|
367
|
+
local: string;
|
|
368
|
+
global: string;
|
|
369
|
+
};
|
|
370
|
+
window: {
|
|
371
|
+
display: string;
|
|
372
|
+
local: string;
|
|
373
|
+
global: string;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
layer: {
|
|
378
|
+
main: string;
|
|
379
|
+
listSummary: string;
|
|
380
|
+
emptyInput: string;
|
|
381
|
+
newPrompt: string;
|
|
382
|
+
makePrompt: string;
|
|
383
|
+
setPrompt: string;
|
|
384
|
+
onPrompt: string;
|
|
385
|
+
offPrompt: string;
|
|
386
|
+
freezePrompt: string;
|
|
387
|
+
thawPrompt: string;
|
|
388
|
+
lockPrompt: string;
|
|
389
|
+
unlockPrompt: string;
|
|
390
|
+
colorLayerPrompt: string;
|
|
391
|
+
colorValuePrompt: string;
|
|
392
|
+
invalidColor: string;
|
|
393
|
+
descriptionLayerPrompt: string;
|
|
394
|
+
descriptionValuePrompt: string;
|
|
395
|
+
created: string;
|
|
396
|
+
alreadyExists: string;
|
|
397
|
+
notFound: string;
|
|
398
|
+
cannotChangeCurrent: string;
|
|
399
|
+
keywords: {
|
|
400
|
+
list: {
|
|
401
|
+
display: string;
|
|
402
|
+
local: string;
|
|
403
|
+
global: string;
|
|
404
|
+
};
|
|
405
|
+
make: {
|
|
406
|
+
display: string;
|
|
407
|
+
local: string;
|
|
408
|
+
global: string;
|
|
409
|
+
};
|
|
410
|
+
set: {
|
|
411
|
+
display: string;
|
|
412
|
+
local: string;
|
|
413
|
+
global: string;
|
|
414
|
+
};
|
|
415
|
+
new: {
|
|
416
|
+
display: string;
|
|
417
|
+
local: string;
|
|
418
|
+
global: string;
|
|
419
|
+
};
|
|
420
|
+
on: {
|
|
421
|
+
display: string;
|
|
422
|
+
local: string;
|
|
423
|
+
global: string;
|
|
424
|
+
};
|
|
425
|
+
off: {
|
|
426
|
+
display: string;
|
|
427
|
+
local: string;
|
|
428
|
+
global: string;
|
|
429
|
+
};
|
|
430
|
+
color: {
|
|
431
|
+
display: string;
|
|
432
|
+
local: string;
|
|
433
|
+
global: string;
|
|
434
|
+
};
|
|
435
|
+
freeze: {
|
|
436
|
+
display: string;
|
|
437
|
+
local: string;
|
|
438
|
+
global: string;
|
|
439
|
+
};
|
|
440
|
+
thaw: {
|
|
441
|
+
display: string;
|
|
442
|
+
local: string;
|
|
443
|
+
global: string;
|
|
444
|
+
};
|
|
445
|
+
lock: {
|
|
446
|
+
display: string;
|
|
447
|
+
local: string;
|
|
448
|
+
global: string;
|
|
449
|
+
};
|
|
450
|
+
unlock: {
|
|
451
|
+
display: string;
|
|
452
|
+
local: string;
|
|
453
|
+
global: string;
|
|
454
|
+
};
|
|
455
|
+
description: {
|
|
456
|
+
display: string;
|
|
457
|
+
local: string;
|
|
458
|
+
global: string;
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
hatch: {
|
|
463
|
+
prompt: string;
|
|
464
|
+
pickPoint: string;
|
|
465
|
+
select: string;
|
|
466
|
+
patternName: string;
|
|
467
|
+
scale: string;
|
|
468
|
+
angle: string;
|
|
469
|
+
style: string;
|
|
470
|
+
associative: string;
|
|
471
|
+
invalidBoundary: string;
|
|
472
|
+
keywords: {
|
|
473
|
+
pick: {
|
|
474
|
+
display: string;
|
|
475
|
+
local: string;
|
|
476
|
+
global: string;
|
|
477
|
+
};
|
|
478
|
+
select: {
|
|
479
|
+
display: string;
|
|
480
|
+
local: string;
|
|
481
|
+
global: string;
|
|
482
|
+
};
|
|
483
|
+
pattern: {
|
|
484
|
+
display: string;
|
|
485
|
+
local: string;
|
|
486
|
+
global: string;
|
|
487
|
+
};
|
|
488
|
+
scale: {
|
|
489
|
+
display: string;
|
|
490
|
+
local: string;
|
|
491
|
+
global: string;
|
|
492
|
+
};
|
|
493
|
+
angle: {
|
|
494
|
+
display: string;
|
|
495
|
+
local: string;
|
|
496
|
+
global: string;
|
|
497
|
+
};
|
|
498
|
+
style: {
|
|
499
|
+
display: string;
|
|
500
|
+
local: string;
|
|
501
|
+
global: string;
|
|
502
|
+
};
|
|
503
|
+
associative: {
|
|
504
|
+
display: string;
|
|
505
|
+
local: string;
|
|
506
|
+
global: string;
|
|
507
|
+
};
|
|
508
|
+
normal: {
|
|
509
|
+
display: string;
|
|
510
|
+
local: string;
|
|
511
|
+
global: string;
|
|
512
|
+
};
|
|
513
|
+
outer: {
|
|
514
|
+
display: string;
|
|
515
|
+
local: string;
|
|
516
|
+
global: string;
|
|
517
|
+
};
|
|
518
|
+
ignore: {
|
|
519
|
+
display: string;
|
|
520
|
+
local: string;
|
|
521
|
+
global: string;
|
|
522
|
+
};
|
|
523
|
+
yes: {
|
|
524
|
+
display: string;
|
|
525
|
+
local: string;
|
|
526
|
+
global: string;
|
|
527
|
+
};
|
|
528
|
+
no: {
|
|
529
|
+
display: string;
|
|
530
|
+
local: string;
|
|
531
|
+
global: string;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
};
|
|
150
535
|
spline: {
|
|
151
536
|
firstPoint: string;
|
|
152
537
|
nextPoint: string;
|
|
538
|
+
firstPointWithOptions: string;
|
|
539
|
+
nextPointWithFitOptions: string;
|
|
540
|
+
nextPointWithCvOptions: string;
|
|
541
|
+
methodPrompt: string;
|
|
542
|
+
knotsPrompt: string;
|
|
543
|
+
degreePrompt: string;
|
|
544
|
+
keywords: {
|
|
545
|
+
method: {
|
|
546
|
+
display: string;
|
|
547
|
+
local: string;
|
|
548
|
+
global: string;
|
|
549
|
+
};
|
|
550
|
+
fit: {
|
|
551
|
+
display: string;
|
|
552
|
+
local: string;
|
|
553
|
+
global: string;
|
|
554
|
+
};
|
|
555
|
+
cv: {
|
|
556
|
+
display: string;
|
|
557
|
+
local: string;
|
|
558
|
+
global: string;
|
|
559
|
+
};
|
|
560
|
+
knots: {
|
|
561
|
+
display: string;
|
|
562
|
+
local: string;
|
|
563
|
+
global: string;
|
|
564
|
+
};
|
|
565
|
+
degree: {
|
|
566
|
+
display: string;
|
|
567
|
+
local: string;
|
|
568
|
+
global: string;
|
|
569
|
+
};
|
|
570
|
+
undo: {
|
|
571
|
+
display: string;
|
|
572
|
+
local: string;
|
|
573
|
+
global: string;
|
|
574
|
+
};
|
|
575
|
+
close: {
|
|
576
|
+
display: string;
|
|
577
|
+
local: string;
|
|
578
|
+
global: string;
|
|
579
|
+
};
|
|
580
|
+
chord: {
|
|
581
|
+
display: string;
|
|
582
|
+
local: string;
|
|
583
|
+
global: string;
|
|
584
|
+
};
|
|
585
|
+
sqrtChord: {
|
|
586
|
+
display: string;
|
|
587
|
+
local: string;
|
|
588
|
+
global: string;
|
|
589
|
+
};
|
|
590
|
+
uniform: {
|
|
591
|
+
display: string;
|
|
592
|
+
local: string;
|
|
593
|
+
global: string;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
153
596
|
};
|
|
154
597
|
sysvar: {
|
|
155
598
|
prompt: string;
|
package/lib/i18n/en/jig.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jig.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/jig.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"jig.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/jig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAimBC"}
|