@mlightcad/cad-simple-viewer 1.4.12 → 1.5.0

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.
Files changed (455) hide show
  1. package/dist/index.js +35505 -24550
  2. package/dist/index.umd.cjs +180 -49
  3. package/dist/libredwg-parser-worker.js +4874 -4548
  4. package/dist/mtext-renderer-worker.js +3587 -3534
  5. package/lib/app/AcApDocManager.d.ts +73 -8
  6. package/lib/app/AcApDocManager.d.ts.map +1 -1
  7. package/lib/app/AcApDocManager.js +216 -46
  8. package/lib/app/AcApDocManager.js.map +1 -1
  9. package/lib/command/AcApLogCmd.d.ts +1 -1
  10. package/lib/command/AcApLogCmd.d.ts.map +1 -1
  11. package/lib/command/AcApLogCmd.js +1 -1
  12. package/lib/command/AcApLogCmd.js.map +1 -1
  13. package/lib/command/AcApOpenCmd.d.ts +1 -1
  14. package/lib/command/AcApOpenCmd.d.ts.map +1 -1
  15. package/lib/command/AcApOpenCmd.js +1 -2
  16. package/lib/command/AcApOpenCmd.js.map +1 -1
  17. package/lib/command/AcApPanCmd.d.ts +1 -1
  18. package/lib/command/AcApPanCmd.d.ts.map +1 -1
  19. package/lib/command/AcApPanCmd.js +1 -2
  20. package/lib/command/AcApPanCmd.js.map +1 -1
  21. package/lib/command/AcApQNewCmd.d.ts +1 -1
  22. package/lib/command/AcApQNewCmd.d.ts.map +1 -1
  23. package/lib/command/AcApQNewCmd.js +1 -1
  24. package/lib/command/AcApQNewCmd.js.map +1 -1
  25. package/lib/command/AcApRegenCmd.d.ts +1 -1
  26. package/lib/command/AcApRegenCmd.d.ts.map +1 -1
  27. package/lib/command/AcApRegenCmd.js +1 -1
  28. package/lib/command/AcApRegenCmd.js.map +1 -1
  29. package/lib/command/AcApSelectCmd.d.ts +1 -1
  30. package/lib/command/AcApSelectCmd.d.ts.map +1 -1
  31. package/lib/command/AcApSelectCmd.js +1 -2
  32. package/lib/command/AcApSelectCmd.js.map +1 -1
  33. package/lib/command/AcApZoomCmd.d.ts +91 -20
  34. package/lib/command/AcApZoomCmd.d.ts.map +1 -1
  35. package/lib/command/AcApZoomCmd.js +288 -23
  36. package/lib/command/AcApZoomCmd.js.map +1 -1
  37. package/lib/command/{AcApConvertToDxfCmd.d.ts → convert/AcApConvertToDxfCmd.d.ts} +2 -2
  38. package/lib/command/convert/AcApConvertToDxfCmd.d.ts.map +1 -0
  39. package/lib/command/{AcApConvertToDxfCmd.js → convert/AcApConvertToDxfCmd.js} +1 -1
  40. package/lib/command/convert/AcApConvertToDxfCmd.js.map +1 -0
  41. package/lib/command/convert/AcApConvertToPngCmd.d.ts +53 -0
  42. package/lib/command/convert/AcApConvertToPngCmd.d.ts.map +1 -0
  43. package/lib/command/convert/AcApConvertToPngCmd.js +200 -0
  44. package/lib/command/convert/AcApConvertToPngCmd.js.map +1 -0
  45. package/lib/command/{AcApConvertToSvgCmd.d.ts → convert/AcApConvertToSvgCmd.d.ts} +2 -2
  46. package/lib/command/convert/AcApConvertToSvgCmd.d.ts.map +1 -0
  47. package/lib/command/{AcApConvertToSvgCmd.js → convert/AcApConvertToSvgCmd.js} +1 -1
  48. package/lib/command/convert/AcApConvertToSvgCmd.js.map +1 -0
  49. package/lib/command/convert/AcApDxfConvertor.d.ts.map +1 -0
  50. package/lib/command/{AcApDxfConvertor.js → convert/AcApDxfConvertor.js} +1 -1
  51. package/lib/command/convert/AcApDxfConvertor.js.map +1 -0
  52. package/lib/command/convert/AcApPngConvertor.d.ts +80 -0
  53. package/lib/command/convert/AcApPngConvertor.d.ts.map +1 -0
  54. package/lib/command/convert/AcApPngConvertor.js +233 -0
  55. package/lib/command/convert/AcApPngConvertor.js.map +1 -0
  56. package/lib/command/convert/AcApSvgConvertor.d.ts.map +1 -0
  57. package/lib/command/{AcApSvgConvertor.js → convert/AcApSvgConvertor.js} +1 -1
  58. package/lib/command/convert/AcApSvgConvertor.js.map +1 -0
  59. package/lib/command/convert/index.d.ts +6 -0
  60. package/lib/command/convert/index.d.ts.map +1 -0
  61. package/lib/command/convert/index.js +6 -0
  62. package/lib/command/convert/index.js.map +1 -0
  63. package/lib/command/draw/AcApArcCmd.d.ts +297 -0
  64. package/lib/command/draw/AcApArcCmd.d.ts.map +1 -0
  65. package/lib/command/{AcApArcCmd.js → draw/AcApArcCmd.js} +794 -13
  66. package/lib/command/draw/AcApArcCmd.js.map +1 -0
  67. package/lib/command/draw/AcApCircleCmd.d.ts +81 -0
  68. package/lib/command/draw/AcApCircleCmd.d.ts.map +1 -0
  69. package/lib/command/draw/AcApCircleCmd.js +594 -0
  70. package/lib/command/draw/AcApCircleCmd.js.map +1 -0
  71. package/lib/command/{AcApDimLinearCmd.d.ts → draw/AcApDimLinearCmd.d.ts} +2 -2
  72. package/lib/command/draw/AcApDimLinearCmd.d.ts.map +1 -0
  73. package/lib/command/{AcApDimLinearCmd.js → draw/AcApDimLinearCmd.js} +3 -3
  74. package/lib/command/draw/AcApDimLinearCmd.js.map +1 -0
  75. package/lib/command/draw/AcApEllipseCmd.d.ts +87 -0
  76. package/lib/command/draw/AcApEllipseCmd.d.ts.map +1 -0
  77. package/lib/command/draw/AcApEllipseCmd.js +583 -0
  78. package/lib/command/draw/AcApEllipseCmd.js.map +1 -0
  79. package/lib/command/draw/AcApHatchCmd.d.ts +247 -0
  80. package/lib/command/draw/AcApHatchCmd.d.ts.map +1 -0
  81. package/lib/command/draw/AcApHatchCmd.js +900 -0
  82. package/lib/command/draw/AcApHatchCmd.js.map +1 -0
  83. package/lib/command/draw/AcApLineCmd.d.ts +57 -0
  84. package/lib/command/draw/AcApLineCmd.d.ts.map +1 -0
  85. package/lib/command/draw/AcApLineCmd.js +263 -0
  86. package/lib/command/draw/AcApLineCmd.js.map +1 -0
  87. package/lib/command/draw/AcApMLineCmd.d.ts +31 -0
  88. package/lib/command/draw/AcApMLineCmd.d.ts.map +1 -0
  89. package/lib/command/draw/AcApMLineCmd.js +531 -0
  90. package/lib/command/draw/AcApMLineCmd.js.map +1 -0
  91. package/lib/command/{AcApMTextCmd.d.ts → draw/AcApMTextCmd.d.ts} +2 -2
  92. package/lib/command/draw/AcApMTextCmd.d.ts.map +1 -0
  93. package/lib/command/{AcApMTextCmd.js → draw/AcApMTextCmd.js} +3 -3
  94. package/lib/command/draw/AcApMTextCmd.js.map +1 -0
  95. package/lib/command/draw/AcApPointCmd.d.ts +16 -0
  96. package/lib/command/draw/AcApPointCmd.d.ts.map +1 -0
  97. package/lib/command/{AcApZoomToBoxCmd.js → draw/AcApPointCmd.js} +32 -37
  98. package/lib/command/draw/AcApPointCmd.js.map +1 -0
  99. package/lib/command/draw/AcApPolygonCmd.d.ts +69 -0
  100. package/lib/command/draw/AcApPolygonCmd.d.ts.map +1 -0
  101. package/lib/command/draw/AcApPolygonCmd.js +422 -0
  102. package/lib/command/draw/AcApPolygonCmd.js.map +1 -0
  103. package/lib/command/{AcApPolylineCmd.d.ts → draw/AcApPolylineCmd.d.ts} +2 -2
  104. package/lib/command/draw/AcApPolylineCmd.d.ts.map +1 -0
  105. package/lib/command/{AcApPolylineCmd.js → draw/AcApPolylineCmd.js} +3 -3
  106. package/lib/command/draw/AcApPolylineCmd.js.map +1 -0
  107. package/lib/command/draw/AcApRayCmd.d.ts +10 -0
  108. package/lib/command/draw/AcApRayCmd.d.ts.map +1 -0
  109. package/lib/command/{AcApLineCmd.js → draw/AcApRayCmd.js} +63 -44
  110. package/lib/command/draw/AcApRayCmd.js.map +1 -0
  111. package/lib/command/draw/AcApRectCmd.d.ts +168 -0
  112. package/lib/command/draw/AcApRectCmd.d.ts.map +1 -0
  113. package/lib/command/draw/AcApRectCmd.js +822 -0
  114. package/lib/command/draw/AcApRectCmd.js.map +1 -0
  115. package/lib/command/draw/AcApSplineCmd.d.ts +85 -0
  116. package/lib/command/draw/AcApSplineCmd.d.ts.map +1 -0
  117. package/lib/command/draw/AcApSplineCmd.js +620 -0
  118. package/lib/command/draw/AcApSplineCmd.js.map +1 -0
  119. package/lib/command/draw/AcApXLineCmd.d.ts +25 -0
  120. package/lib/command/draw/AcApXLineCmd.d.ts.map +1 -0
  121. package/lib/command/draw/AcApXLineCmd.js +210 -0
  122. package/lib/command/draw/AcApXLineCmd.js.map +1 -0
  123. package/lib/command/draw/index.d.ts +16 -0
  124. package/lib/command/draw/index.d.ts.map +1 -0
  125. package/lib/command/draw/index.js +16 -0
  126. package/lib/command/draw/index.js.map +1 -0
  127. package/lib/command/index.d.ts +6 -26
  128. package/lib/command/index.d.ts.map +1 -1
  129. package/lib/command/index.js +6 -26
  130. package/lib/command/index.js.map +1 -1
  131. package/lib/command/layer/AcApLayerCloseCmd.d.ts +23 -0
  132. package/lib/command/layer/AcApLayerCloseCmd.d.ts.map +1 -0
  133. package/lib/command/{AcApRevRectCmd.js → layer/AcApLayerCloseCmd.js} +27 -24
  134. package/lib/command/layer/AcApLayerCloseCmd.js.map +1 -0
  135. package/lib/command/layer/AcApLayerCmd.d.ts +215 -0
  136. package/lib/command/layer/AcApLayerCmd.d.ts.map +1 -0
  137. package/lib/command/layer/AcApLayerCmd.js +765 -0
  138. package/lib/command/layer/AcApLayerCmd.js.map +1 -0
  139. package/lib/command/layer/AcApLayerCurCmd.d.ts +43 -0
  140. package/lib/command/layer/AcApLayerCurCmd.d.ts.map +1 -0
  141. package/lib/command/layer/AcApLayerCurCmd.js +183 -0
  142. package/lib/command/layer/AcApLayerCurCmd.js.map +1 -0
  143. package/lib/command/layer/AcApLayerDelCmd.d.ts +112 -0
  144. package/lib/command/layer/AcApLayerDelCmd.d.ts.map +1 -0
  145. package/lib/command/layer/AcApLayerDelCmd.js +446 -0
  146. package/lib/command/layer/AcApLayerDelCmd.js.map +1 -0
  147. package/lib/command/layer/AcApLayerFreezeCmd.d.ts +103 -0
  148. package/lib/command/layer/AcApLayerFreezeCmd.d.ts.map +1 -0
  149. package/lib/command/layer/AcApLayerFreezeCmd.js +398 -0
  150. package/lib/command/layer/AcApLayerFreezeCmd.js.map +1 -0
  151. package/lib/command/layer/AcApLayerIsoCmd.d.ts +99 -0
  152. package/lib/command/layer/AcApLayerIsoCmd.d.ts.map +1 -0
  153. package/lib/command/layer/AcApLayerIsoCmd.js +485 -0
  154. package/lib/command/layer/AcApLayerIsoCmd.js.map +1 -0
  155. package/lib/command/layer/AcApLayerIsoState.d.ts +68 -0
  156. package/lib/command/layer/AcApLayerIsoState.d.ts.map +1 -0
  157. package/lib/command/layer/AcApLayerIsoState.js +53 -0
  158. package/lib/command/layer/AcApLayerIsoState.js.map +1 -0
  159. package/lib/command/layer/AcApLayerLockCmd.d.ts +50 -0
  160. package/lib/command/layer/AcApLayerLockCmd.d.ts.map +1 -0
  161. package/lib/command/layer/AcApLayerLockCmd.js +175 -0
  162. package/lib/command/layer/AcApLayerLockCmd.js.map +1 -0
  163. package/lib/command/layer/AcApLayerOffCmd.d.ts +95 -0
  164. package/lib/command/layer/AcApLayerOffCmd.d.ts.map +1 -0
  165. package/lib/command/layer/AcApLayerOffCmd.js +384 -0
  166. package/lib/command/layer/AcApLayerOffCmd.js.map +1 -0
  167. package/lib/command/layer/AcApLayerOnCmd.d.ts +30 -0
  168. package/lib/command/layer/AcApLayerOnCmd.d.ts.map +1 -0
  169. package/lib/command/layer/AcApLayerOnCmd.js +138 -0
  170. package/lib/command/layer/AcApLayerOnCmd.js.map +1 -0
  171. package/lib/command/layer/AcApLayerPCmd.d.ts +83 -0
  172. package/lib/command/layer/AcApLayerPCmd.d.ts.map +1 -0
  173. package/lib/command/layer/AcApLayerPCmd.js +241 -0
  174. package/lib/command/layer/AcApLayerPCmd.js.map +1 -0
  175. package/lib/command/layer/AcApLayerThawCmd.d.ts +37 -0
  176. package/lib/command/layer/AcApLayerThawCmd.d.ts.map +1 -0
  177. package/lib/command/layer/AcApLayerThawCmd.js +150 -0
  178. package/lib/command/layer/AcApLayerThawCmd.js.map +1 -0
  179. package/lib/command/layer/AcApLayerUnisoCmd.d.ts +52 -0
  180. package/lib/command/layer/AcApLayerUnisoCmd.d.ts.map +1 -0
  181. package/lib/command/layer/AcApLayerUnisoCmd.js +199 -0
  182. package/lib/command/layer/AcApLayerUnisoCmd.js.map +1 -0
  183. package/lib/command/layer/AcApLayerUnlockCmd.d.ts +50 -0
  184. package/lib/command/layer/AcApLayerUnlockCmd.d.ts.map +1 -0
  185. package/lib/command/layer/AcApLayerUnlockCmd.js +175 -0
  186. package/lib/command/layer/AcApLayerUnlockCmd.js.map +1 -0
  187. package/lib/command/layer/index.d.ts +14 -0
  188. package/lib/command/layer/index.d.ts.map +1 -0
  189. package/lib/command/layer/index.js +14 -0
  190. package/lib/command/layer/index.js.map +1 -0
  191. package/lib/command/{AcApClearMeasurementsCmd.d.ts → measure/AcApClearMeasurementsCmd.d.ts} +2 -2
  192. package/lib/command/measure/AcApClearMeasurementsCmd.d.ts.map +1 -0
  193. package/lib/command/{AcApClearMeasurementsCmd.js → measure/AcApClearMeasurementsCmd.js} +1 -1
  194. package/lib/command/measure/AcApClearMeasurementsCmd.js.map +1 -0
  195. package/lib/command/{AcApMeasureAngleCmd.d.ts → measure/AcApMeasureAngleCmd.d.ts} +2 -2
  196. package/lib/command/measure/AcApMeasureAngleCmd.d.ts.map +1 -0
  197. package/lib/command/{AcApMeasureAngleCmd.js → measure/AcApMeasureAngleCmd.js} +3 -3
  198. package/lib/command/measure/AcApMeasureAngleCmd.js.map +1 -0
  199. package/lib/command/{AcApMeasureArcCmd.d.ts → measure/AcApMeasureArcCmd.d.ts} +2 -2
  200. package/lib/command/measure/AcApMeasureArcCmd.d.ts.map +1 -0
  201. package/lib/command/{AcApMeasureArcCmd.js → measure/AcApMeasureArcCmd.js} +3 -3
  202. package/lib/command/measure/AcApMeasureArcCmd.js.map +1 -0
  203. package/lib/command/{AcApMeasureAreaCmd.d.ts → measure/AcApMeasureAreaCmd.d.ts} +2 -2
  204. package/lib/command/measure/AcApMeasureAreaCmd.d.ts.map +1 -0
  205. package/lib/command/{AcApMeasureAreaCmd.js → measure/AcApMeasureAreaCmd.js} +6 -3
  206. package/lib/command/measure/AcApMeasureAreaCmd.js.map +1 -0
  207. package/lib/command/{AcApMeasureDistanceCmd.d.ts → measure/AcApMeasureDistanceCmd.d.ts} +2 -2
  208. package/lib/command/measure/AcApMeasureDistanceCmd.d.ts.map +1 -0
  209. package/lib/command/{AcApMeasureDistanceCmd.js → measure/AcApMeasureDistanceCmd.js} +3 -3
  210. package/lib/command/measure/AcApMeasureDistanceCmd.js.map +1 -0
  211. package/lib/command/measure/index.d.ts +6 -0
  212. package/lib/command/measure/index.d.ts.map +1 -0
  213. package/lib/command/measure/index.js +6 -0
  214. package/lib/command/measure/index.js.map +1 -0
  215. package/lib/command/modify/AcApCopyCmd.d.ts +94 -0
  216. package/lib/command/modify/AcApCopyCmd.d.ts.map +1 -0
  217. package/lib/command/modify/AcApCopyCmd.js +549 -0
  218. package/lib/command/modify/AcApCopyCmd.js.map +1 -0
  219. package/lib/command/{AcApEraseCmd.d.ts → modify/AcApEraseCmd.d.ts} +2 -2
  220. package/lib/command/modify/AcApEraseCmd.d.ts.map +1 -0
  221. package/lib/command/{AcApEraseCmd.js → modify/AcApEraseCmd.js} +3 -5
  222. package/lib/command/modify/AcApEraseCmd.js.map +1 -0
  223. package/lib/command/modify/AcApMoveCmd.d.ts +16 -0
  224. package/lib/command/modify/AcApMoveCmd.d.ts.map +1 -0
  225. package/lib/command/modify/AcApMoveCmd.js +277 -0
  226. package/lib/command/modify/AcApMoveCmd.js.map +1 -0
  227. package/lib/command/modify/AcApRotateCmd.d.ts +81 -0
  228. package/lib/command/modify/AcApRotateCmd.d.ts.map +1 -0
  229. package/lib/command/modify/AcApRotateCmd.js +487 -0
  230. package/lib/command/modify/AcApRotateCmd.js.map +1 -0
  231. package/lib/command/modify/index.d.ts +5 -0
  232. package/lib/command/modify/index.d.ts.map +1 -0
  233. package/lib/command/modify/index.js +5 -0
  234. package/lib/command/modify/index.js.map +1 -0
  235. package/lib/command/{AcApBaseRevCmd.d.ts → review/AcApBaseRevCmd.d.ts} +2 -2
  236. package/lib/command/review/AcApBaseRevCmd.d.ts.map +1 -0
  237. package/lib/command/{AcApBaseRevCmd.js → review/AcApBaseRevCmd.js} +2 -2
  238. package/lib/command/review/AcApBaseRevCmd.js.map +1 -0
  239. package/lib/command/review/AcApRevCircleCmd.d.ts +18 -0
  240. package/lib/command/review/AcApRevCircleCmd.d.ts.map +1 -0
  241. package/lib/command/{AcApCircleCmd.js → review/AcApRevCircleCmd.js} +26 -42
  242. package/lib/command/review/AcApRevCircleCmd.js.map +1 -0
  243. package/lib/command/{AcApRevCloudCmd.d.ts → review/AcApRevCloudCmd.d.ts} +2 -2
  244. package/lib/command/review/AcApRevCloudCmd.d.ts.map +1 -0
  245. package/lib/command/{AcApRevCloudCmd.js → review/AcApRevCloudCmd.js} +3 -3
  246. package/lib/command/review/AcApRevCloudCmd.js.map +1 -0
  247. package/lib/command/review/AcApRevRectCmd.d.ts +18 -0
  248. package/lib/command/review/AcApRevRectCmd.d.ts.map +1 -0
  249. package/lib/command/{AcApRectCmd.js → review/AcApRevRectCmd.js} +43 -28
  250. package/lib/command/review/AcApRevRectCmd.js.map +1 -0
  251. package/lib/command/{AcApRevVisibilityCmd.d.ts → review/AcApRevVisibilityCmd.d.ts} +1 -1
  252. package/lib/command/review/AcApRevVisibilityCmd.d.ts.map +1 -0
  253. package/lib/command/{AcApRevVisibilityCmd.js → review/AcApRevVisibilityCmd.js} +2 -2
  254. package/lib/command/review/AcApRevVisibilityCmd.js.map +1 -0
  255. package/lib/command/{AcApSketchCmd.d.ts → review/AcApSketchCmd.d.ts} +2 -2
  256. package/lib/command/review/AcApSketchCmd.d.ts.map +1 -0
  257. package/lib/command/{AcApSketchCmd.js → review/AcApSketchCmd.js} +3 -3
  258. package/lib/command/review/AcApSketchCmd.js.map +1 -0
  259. package/lib/command/review/index.d.ts +7 -0
  260. package/lib/command/review/index.d.ts.map +1 -0
  261. package/lib/command/review/index.js +7 -0
  262. package/lib/command/review/index.js.map +1 -0
  263. package/lib/editor/command/AcEdCommandStack.d.ts +54 -1
  264. package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
  265. package/lib/editor/command/AcEdCommandStack.js +207 -25
  266. package/lib/editor/command/AcEdCommandStack.js.map +1 -1
  267. package/lib/editor/global/eventBus.d.ts +4 -6
  268. package/lib/editor/global/eventBus.d.ts.map +1 -1
  269. package/lib/editor/global/eventBus.js.map +1 -1
  270. package/lib/editor/input/AcEdSelectionFilter.d.ts +79 -0
  271. package/lib/editor/input/AcEdSelectionFilter.d.ts.map +1 -0
  272. package/lib/editor/input/AcEdSelectionFilter.js +231 -0
  273. package/lib/editor/input/AcEdSelectionFilter.js.map +1 -0
  274. package/lib/editor/input/AcEditor.d.ts +37 -2
  275. package/lib/editor/input/AcEditor.d.ts.map +1 -1
  276. package/lib/editor/input/AcEditor.js +89 -0
  277. package/lib/editor/input/AcEditor.js.map +1 -1
  278. package/lib/editor/input/index.d.ts +1 -0
  279. package/lib/editor/input/index.d.ts.map +1 -1
  280. package/lib/editor/input/index.js +1 -0
  281. package/lib/editor/input/index.js.map +1 -1
  282. package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts +47 -0
  283. package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts.map +1 -1
  284. package/lib/editor/input/prompt/AcEdKeywordCollection.js +19 -0
  285. package/lib/editor/input/prompt/AcEdKeywordCollection.js.map +1 -1
  286. package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts +7 -0
  287. package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts.map +1 -1
  288. package/lib/editor/input/prompt/AcEdPromptAngleOptions.js +17 -0
  289. package/lib/editor/input/prompt/AcEdPromptAngleOptions.js.map +1 -1
  290. package/lib/editor/input/prompt/AcEdPromptBoxOptions.d.ts +6 -0
  291. package/lib/editor/input/prompt/AcEdPromptBoxOptions.d.ts.map +1 -1
  292. package/lib/editor/input/prompt/AcEdPromptBoxOptions.js +16 -0
  293. package/lib/editor/input/prompt/AcEdPromptBoxOptions.js.map +1 -1
  294. package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts +17 -0
  295. package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts.map +1 -1
  296. package/lib/editor/input/prompt/AcEdPromptEntityOptions.js +30 -3
  297. package/lib/editor/input/prompt/AcEdPromptEntityOptions.js.map +1 -1
  298. package/lib/editor/input/prompt/AcEdPromptOptions.d.ts +6 -1
  299. package/lib/editor/input/prompt/AcEdPromptOptions.d.ts.map +1 -1
  300. package/lib/editor/input/prompt/AcEdPromptOptions.js +7 -0
  301. package/lib/editor/input/prompt/AcEdPromptOptions.js.map +1 -1
  302. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts +6 -0
  303. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts.map +1 -1
  304. package/lib/editor/input/prompt/AcEdPromptPointOptions.js +16 -0
  305. package/lib/editor/input/prompt/AcEdPromptPointOptions.js.map +1 -1
  306. package/lib/editor/input/session/AcEdKeywordSession.d.ts +65 -0
  307. package/lib/editor/input/session/AcEdKeywordSession.d.ts.map +1 -1
  308. package/lib/editor/input/session/AcEdKeywordSession.js +71 -0
  309. package/lib/editor/input/session/AcEdKeywordSession.js.map +1 -1
  310. package/lib/editor/input/ui/AcEdCommandLine.d.ts +29 -4
  311. package/lib/editor/input/ui/AcEdCommandLine.d.ts.map +1 -1
  312. package/lib/editor/input/ui/AcEdCommandLine.js +118 -24
  313. package/lib/editor/input/ui/AcEdCommandLine.js.map +1 -1
  314. package/lib/editor/input/ui/AcEdFloatingInput.d.ts +1 -0
  315. package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
  316. package/lib/editor/input/ui/AcEdFloatingInput.js +12 -4
  317. package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
  318. package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts +23 -1
  319. package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts.map +1 -1
  320. package/lib/editor/input/ui/AcEdFloatingInputBoxes.js +32 -9
  321. package/lib/editor/input/ui/AcEdFloatingInputBoxes.js.map +1 -1
  322. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +28 -0
  323. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
  324. package/lib/editor/input/ui/AcEdInputManager.d.ts +377 -16
  325. package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
  326. package/lib/editor/input/ui/AcEdInputManager.js +994 -529
  327. package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
  328. package/lib/editor/input/ui/AcEdMessageType.d.ts +10 -0
  329. package/lib/editor/input/ui/AcEdMessageType.d.ts.map +1 -0
  330. package/lib/editor/input/ui/AcEdMessageType.js +2 -0
  331. package/lib/editor/input/ui/AcEdMessageType.js.map +1 -0
  332. package/lib/editor/input/ui/AcEdRubberBand.d.ts +15 -1
  333. package/lib/editor/input/ui/AcEdRubberBand.d.ts.map +1 -1
  334. package/lib/editor/input/ui/AcEdRubberBand.js +42 -10
  335. package/lib/editor/input/ui/AcEdRubberBand.js.map +1 -1
  336. package/lib/editor/input/ui/index.d.ts +1 -0
  337. package/lib/editor/input/ui/index.d.ts.map +1 -1
  338. package/lib/editor/input/ui/index.js +1 -0
  339. package/lib/editor/input/ui/index.js.map +1 -1
  340. package/lib/editor/view/AcEdBaseView.d.ts +3 -8
  341. package/lib/editor/view/AcEdBaseView.d.ts.map +1 -1
  342. package/lib/editor/view/AcEdBaseView.js +3 -5
  343. package/lib/editor/view/AcEdBaseView.js.map +1 -1
  344. package/lib/editor/view/AcEdHoverController.d.ts +2 -3
  345. package/lib/editor/view/AcEdHoverController.d.ts.map +1 -1
  346. package/lib/editor/view/AcEdHoverController.js +7 -0
  347. package/lib/editor/view/AcEdHoverController.js.map +1 -1
  348. package/lib/editor/view/AcEdSelectionAction.d.ts +108 -0
  349. package/lib/editor/view/AcEdSelectionAction.d.ts.map +1 -0
  350. package/lib/editor/view/AcEdSelectionAction.js +74 -0
  351. package/lib/editor/view/AcEdSelectionAction.js.map +1 -0
  352. package/lib/editor/view/index.d.ts +1 -0
  353. package/lib/editor/view/index.d.ts.map +1 -1
  354. package/lib/editor/view/index.js +1 -0
  355. package/lib/editor/view/index.js.map +1 -1
  356. package/lib/i18n/en/command.d.ts +148 -10
  357. package/lib/i18n/en/command.d.ts.map +1 -1
  358. package/lib/i18n/en/command.js +153 -15
  359. package/lib/i18n/en/command.js.map +1 -1
  360. package/lib/i18n/en/jig.d.ts +838 -36
  361. package/lib/i18n/en/jig.d.ts.map +1 -1
  362. package/lib/i18n/en/jig.js +827 -25
  363. package/lib/i18n/en/jig.js.map +1 -1
  364. package/lib/i18n/zh/command.d.ts +148 -10
  365. package/lib/i18n/zh/command.d.ts.map +1 -1
  366. package/lib/i18n/zh/command.js +155 -17
  367. package/lib/i18n/zh/command.js.map +1 -1
  368. package/lib/i18n/zh/jig.d.ts +851 -49
  369. package/lib/i18n/zh/jig.d.ts.map +1 -1
  370. package/lib/i18n/zh/jig.js +829 -27
  371. package/lib/i18n/zh/jig.js.map +1 -1
  372. package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
  373. package/lib/plugin/AcApPluginManager.js.map +1 -1
  374. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.d.ts +136 -2
  375. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.d.ts.map +1 -1
  376. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.js +154 -16
  377. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.js.map +1 -1
  378. package/lib/view/AcTrLayer.d.ts.map +1 -1
  379. package/lib/view/AcTrLayer.js +5 -3
  380. package/lib/view/AcTrLayer.js.map +1 -1
  381. package/lib/view/AcTrLayout.d.ts +17 -0
  382. package/lib/view/AcTrLayout.d.ts.map +1 -1
  383. package/lib/view/AcTrLayout.js +34 -2
  384. package/lib/view/AcTrLayout.js.map +1 -1
  385. package/lib/view/AcTrPickResultUtil.d.ts +4 -0
  386. package/lib/view/AcTrPickResultUtil.d.ts.map +1 -0
  387. package/lib/view/AcTrPickResultUtil.js +54 -0
  388. package/lib/view/AcTrPickResultUtil.js.map +1 -0
  389. package/lib/view/AcTrView2d.d.ts +25 -1
  390. package/lib/view/AcTrView2d.d.ts.map +1 -1
  391. package/lib/view/AcTrView2d.js +242 -104
  392. package/lib/view/AcTrView2d.js.map +1 -1
  393. package/package.json +11 -9
  394. package/lib/command/AcApArcCmd.d.ts +0 -140
  395. package/lib/command/AcApArcCmd.d.ts.map +0 -1
  396. package/lib/command/AcApArcCmd.js.map +0 -1
  397. package/lib/command/AcApBaseRevCmd.d.ts.map +0 -1
  398. package/lib/command/AcApBaseRevCmd.js.map +0 -1
  399. package/lib/command/AcApCircleCmd.d.ts +0 -22
  400. package/lib/command/AcApCircleCmd.d.ts.map +0 -1
  401. package/lib/command/AcApCircleCmd.js.map +0 -1
  402. package/lib/command/AcApClearMeasurementsCmd.d.ts.map +0 -1
  403. package/lib/command/AcApClearMeasurementsCmd.js.map +0 -1
  404. package/lib/command/AcApConvertToDxfCmd.d.ts.map +0 -1
  405. package/lib/command/AcApConvertToDxfCmd.js.map +0 -1
  406. package/lib/command/AcApConvertToSvgCmd.d.ts.map +0 -1
  407. package/lib/command/AcApConvertToSvgCmd.js.map +0 -1
  408. package/lib/command/AcApDimLinearCmd.d.ts.map +0 -1
  409. package/lib/command/AcApDimLinearCmd.js.map +0 -1
  410. package/lib/command/AcApDxfConvertor.d.ts.map +0 -1
  411. package/lib/command/AcApDxfConvertor.js.map +0 -1
  412. package/lib/command/AcApEraseCmd.d.ts.map +0 -1
  413. package/lib/command/AcApEraseCmd.js.map +0 -1
  414. package/lib/command/AcApLineCmd.d.ts +0 -22
  415. package/lib/command/AcApLineCmd.d.ts.map +0 -1
  416. package/lib/command/AcApLineCmd.js.map +0 -1
  417. package/lib/command/AcApMTextCmd.d.ts.map +0 -1
  418. package/lib/command/AcApMTextCmd.js.map +0 -1
  419. package/lib/command/AcApMeasureAngleCmd.d.ts.map +0 -1
  420. package/lib/command/AcApMeasureAngleCmd.js.map +0 -1
  421. package/lib/command/AcApMeasureArcCmd.d.ts.map +0 -1
  422. package/lib/command/AcApMeasureArcCmd.js.map +0 -1
  423. package/lib/command/AcApMeasureAreaCmd.d.ts.map +0 -1
  424. package/lib/command/AcApMeasureAreaCmd.js.map +0 -1
  425. package/lib/command/AcApMeasureDistanceCmd.d.ts.map +0 -1
  426. package/lib/command/AcApMeasureDistanceCmd.js.map +0 -1
  427. package/lib/command/AcApPolylineCmd.d.ts.map +0 -1
  428. package/lib/command/AcApPolylineCmd.js.map +0 -1
  429. package/lib/command/AcApRectCmd.d.ts +0 -23
  430. package/lib/command/AcApRectCmd.d.ts.map +0 -1
  431. package/lib/command/AcApRectCmd.js.map +0 -1
  432. package/lib/command/AcApRevCircleCmd.d.ts +0 -10
  433. package/lib/command/AcApRevCircleCmd.d.ts.map +0 -1
  434. package/lib/command/AcApRevCircleCmd.js +0 -83
  435. package/lib/command/AcApRevCircleCmd.js.map +0 -1
  436. package/lib/command/AcApRevCloudCmd.d.ts.map +0 -1
  437. package/lib/command/AcApRevCloudCmd.js.map +0 -1
  438. package/lib/command/AcApRevRectCmd.d.ts +0 -10
  439. package/lib/command/AcApRevRectCmd.d.ts.map +0 -1
  440. package/lib/command/AcApRevRectCmd.js.map +0 -1
  441. package/lib/command/AcApRevVisibilityCmd.d.ts.map +0 -1
  442. package/lib/command/AcApRevVisibilityCmd.js.map +0 -1
  443. package/lib/command/AcApSketchCmd.d.ts.map +0 -1
  444. package/lib/command/AcApSketchCmd.js.map +0 -1
  445. package/lib/command/AcApSplineCmd.d.ts +0 -20
  446. package/lib/command/AcApSplineCmd.d.ts.map +0 -1
  447. package/lib/command/AcApSplineCmd.js +0 -213
  448. package/lib/command/AcApSplineCmd.js.map +0 -1
  449. package/lib/command/AcApSvgConvertor.d.ts.map +0 -1
  450. package/lib/command/AcApSvgConvertor.js.map +0 -1
  451. package/lib/command/AcApZoomToBoxCmd.d.ts +0 -29
  452. package/lib/command/AcApZoomToBoxCmd.d.ts.map +0 -1
  453. package/lib/command/AcApZoomToBoxCmd.js.map +0 -1
  454. /package/lib/command/{AcApDxfConvertor.d.ts → convert/AcApDxfConvertor.d.ts} +0 -0
  455. /package/lib/command/{AcApSvgConvertor.d.ts → convert/AcApSvgConvertor.d.ts} +0 -0
@@ -2,6 +2,7 @@ declare const _default: {
2
2
  arc: {
3
3
  startPointOrCenter: string;
4
4
  secondPointOrOptions: string;
5
+ secondPoint: string;
5
6
  startPoint: string;
6
7
  centerPoint: string;
7
8
  endPoint: string;
@@ -12,57 +13,615 @@ declare const _default: {
12
13
  tangentDirection: string;
13
14
  radius: string;
14
15
  keywords: {
15
- center: {
16
+ center: {
17
+ display: string;
18
+ local: string;
19
+ global: string;
20
+ };
21
+ end: {
22
+ display: string;
23
+ local: string;
24
+ global: string;
25
+ };
26
+ angle: {
27
+ display: string;
28
+ local: string;
29
+ global: string;
30
+ };
31
+ chordLength: {
32
+ display: string;
33
+ local: string;
34
+ global: string;
35
+ };
36
+ direction: {
37
+ display: string;
38
+ local: string;
39
+ global: string;
40
+ };
41
+ radius: {
42
+ display: string;
43
+ local: string;
44
+ global: string;
45
+ };
46
+ };
47
+ invalid: {
48
+ threePoint: string;
49
+ center: string;
50
+ angle: string;
51
+ chordLength: string;
52
+ direction: string;
53
+ radius: string;
54
+ };
55
+ };
56
+ circle: {
57
+ center: string;
58
+ centerOrOptions: string;
59
+ radius: string;
60
+ radiusOrDiameter: string;
61
+ diameter: string;
62
+ twoPointFirst: string;
63
+ twoPointSecond: string;
64
+ threePointFirst: string;
65
+ threePointSecond: string;
66
+ threePointThird: string;
67
+ keywords: {
68
+ threeP: {
69
+ display: string;
70
+ local: string;
71
+ global: string;
72
+ };
73
+ twoP: {
74
+ display: string;
75
+ local: string;
76
+ global: string;
77
+ };
78
+ diameter: {
79
+ display: string;
80
+ local: string;
81
+ global: string;
82
+ };
83
+ };
84
+ };
85
+ copy: {
86
+ basePointOrOptions: string;
87
+ displacementOrArray: string;
88
+ secondPointOrArray: string;
89
+ modePrompt: string;
90
+ arrayItemCount: string;
91
+ arraySecondPointOrFit: string;
92
+ arrayFitSecondPoint: string;
93
+ keywords: {
94
+ displacement: {
95
+ display: string;
96
+ local: string;
97
+ global: string;
98
+ };
99
+ mode: {
100
+ display: string;
101
+ local: string;
102
+ global: string;
103
+ };
104
+ multiple: {
105
+ display: string;
106
+ local: string;
107
+ global: string;
108
+ };
109
+ single: {
110
+ display: string;
111
+ local: string;
112
+ global: string;
113
+ };
114
+ array: {
115
+ display: string;
116
+ local: string;
117
+ global: string;
118
+ };
119
+ fit: {
120
+ display: string;
121
+ local: string;
122
+ global: string;
123
+ };
124
+ };
125
+ };
126
+ dimlinear: {
127
+ xLine1Point: string;
128
+ xLine2Point: string;
129
+ dimLinePoint: string;
130
+ };
131
+ ellipse: {
132
+ axisEndpointOrOptions: string;
133
+ arcAxisEndpointOrCenter: string;
134
+ center: string;
135
+ firstAxisEndpoint: string;
136
+ secondAxisEndpoint: string;
137
+ otherAxisOrRotation: string;
138
+ rotationAngle: string;
139
+ arcStartAngle: string;
140
+ arcEndAngle: string;
141
+ keywords: {
142
+ arc: {
143
+ display: string;
144
+ local: string;
145
+ global: string;
146
+ };
147
+ center: {
148
+ display: string;
149
+ local: string;
150
+ global: string;
151
+ };
152
+ rotation: {
153
+ display: string;
154
+ local: string;
155
+ global: string;
156
+ };
157
+ };
158
+ invalid: {
159
+ axis: string;
160
+ otherAxis: string;
161
+ rotation: string;
162
+ };
163
+ };
164
+ hatch: {
165
+ prompt: string;
166
+ pickPoint: string;
167
+ select: string;
168
+ patternName: string;
169
+ scale: string;
170
+ angle: string;
171
+ style: string;
172
+ associative: string;
173
+ invalidBoundary: string;
174
+ keywords: {
175
+ pick: {
176
+ display: string;
177
+ local: string;
178
+ global: string;
179
+ };
180
+ select: {
181
+ display: string;
182
+ local: string;
183
+ global: string;
184
+ };
185
+ cancel: {
186
+ display: string;
187
+ local: string;
188
+ global: string;
189
+ };
190
+ pattern: {
191
+ display: string;
192
+ local: string;
193
+ global: string;
194
+ };
195
+ scale: {
196
+ display: string;
197
+ local: string;
198
+ global: string;
199
+ };
200
+ angle: {
201
+ display: string;
202
+ local: string;
203
+ global: string;
204
+ };
205
+ style: {
206
+ display: string;
207
+ local: string;
208
+ global: string;
209
+ };
210
+ associative: {
211
+ display: string;
212
+ local: string;
213
+ global: string;
214
+ };
215
+ normal: {
216
+ display: string;
217
+ local: string;
218
+ global: string;
219
+ };
220
+ outer: {
221
+ display: string;
222
+ local: string;
223
+ global: string;
224
+ };
225
+ ignore: {
226
+ display: string;
227
+ local: string;
228
+ global: string;
229
+ };
230
+ yes: {
231
+ display: string;
232
+ local: string;
233
+ global: string;
234
+ };
235
+ no: {
236
+ display: string;
237
+ local: string;
238
+ global: string;
239
+ };
240
+ };
241
+ };
242
+ layer: {
243
+ main: string;
244
+ listSummary: string;
245
+ emptyInput: string;
246
+ newPrompt: string;
247
+ makePrompt: string;
248
+ setPrompt: string;
249
+ onPrompt: string;
250
+ offPrompt: string;
251
+ freezePrompt: string;
252
+ thawPrompt: string;
253
+ lockPrompt: string;
254
+ unlockPrompt: string;
255
+ colorLayerPrompt: string;
256
+ colorValuePrompt: string;
257
+ invalidColor: string;
258
+ descriptionLayerPrompt: string;
259
+ descriptionValuePrompt: string;
260
+ created: string;
261
+ alreadyExists: string;
262
+ notFound: string;
263
+ cannotChangeCurrent: string;
264
+ keywords: {
265
+ list: {
266
+ display: string;
267
+ local: string;
268
+ global: string;
269
+ };
270
+ make: {
271
+ display: string;
272
+ local: string;
273
+ global: string;
274
+ };
275
+ set: {
276
+ display: string;
277
+ local: string;
278
+ global: string;
279
+ };
280
+ new: {
281
+ display: string;
282
+ local: string;
283
+ global: string;
284
+ };
285
+ on: {
286
+ display: string;
287
+ local: string;
288
+ global: string;
289
+ };
290
+ off: {
291
+ display: string;
292
+ local: string;
293
+ global: string;
294
+ };
295
+ color: {
296
+ display: string;
297
+ local: string;
298
+ global: string;
299
+ };
300
+ freeze: {
301
+ display: string;
302
+ local: string;
303
+ global: string;
304
+ };
305
+ thaw: {
306
+ display: string;
307
+ local: string;
308
+ global: string;
309
+ };
310
+ lock: {
311
+ display: string;
312
+ local: string;
313
+ global: string;
314
+ };
315
+ unlock: {
316
+ display: string;
317
+ local: string;
318
+ global: string;
319
+ };
320
+ description: {
321
+ display: string;
322
+ local: string;
323
+ global: string;
324
+ };
325
+ };
326
+ };
327
+ layon: {
328
+ alreadyOn: string;
329
+ turnedOn: string;
330
+ };
331
+ laycur: {
332
+ prompt: string;
333
+ currentLayerNotFound: string;
334
+ noObjects: string;
335
+ alreadyCurrent: string;
336
+ changed: string;
337
+ };
338
+ layfrz: {
339
+ prompt: string;
340
+ invalidSelection: string;
341
+ settingsPrompt: string;
342
+ viewportPrompt: string;
343
+ blockSelectionPrompt: string;
344
+ vpfreezeFallback: string;
345
+ nestedSelectionLimited: string;
346
+ layerNotFound: string;
347
+ cannotFreezeCurrent: string;
348
+ alreadyFrozen: string;
349
+ frozen: string;
350
+ restored: string;
351
+ nothingToUndo: string;
352
+ keywords: {
353
+ settings: {
354
+ display: string;
355
+ local: string;
356
+ global: string;
357
+ };
358
+ undo: {
359
+ display: string;
360
+ local: string;
361
+ global: string;
362
+ };
363
+ viewports: {
364
+ display: string;
365
+ local: string;
366
+ global: string;
367
+ };
368
+ blockSelection: {
369
+ display: string;
370
+ local: string;
371
+ global: string;
372
+ };
373
+ freeze: {
374
+ display: string;
375
+ local: string;
376
+ global: string;
377
+ };
378
+ vpfreeze: {
379
+ display: string;
380
+ local: string;
381
+ global: string;
382
+ };
383
+ block: {
384
+ display: string;
385
+ local: string;
386
+ global: string;
387
+ };
388
+ entity: {
389
+ display: string;
390
+ local: string;
391
+ global: string;
392
+ };
393
+ none: {
394
+ display: string;
395
+ local: string;
396
+ global: string;
397
+ };
398
+ };
399
+ };
400
+ layiso: {
401
+ prompt: string;
402
+ settingsPrompt: string;
403
+ offModePrompt: string;
404
+ noLayers: string;
405
+ layerNotFound: string;
406
+ isolated: string;
407
+ affectedLayers: string;
408
+ vpfreezeFallback: string;
409
+ lockFadeFallback: string;
410
+ keywords: {
411
+ settings: {
412
+ display: string;
413
+ local: string;
414
+ global: string;
415
+ };
416
+ off: {
417
+ display: string;
418
+ local: string;
419
+ global: string;
420
+ };
421
+ lockAndFade: {
422
+ display: string;
423
+ local: string;
424
+ global: string;
425
+ };
426
+ vpfreeze: {
427
+ display: string;
428
+ local: string;
429
+ global: string;
430
+ };
431
+ };
432
+ };
433
+ layuniso: {
434
+ noPrevious: string;
435
+ layerNotFound: string;
436
+ nothingRestored: string;
437
+ restored: string;
438
+ };
439
+ laythw: {
440
+ alreadyThawed: string;
441
+ thawed: string;
442
+ };
443
+ laylck: {
444
+ prompt: string;
445
+ invalidSelection: string;
446
+ layerNotFound: string;
447
+ alreadyLocked: string;
448
+ locked: string;
449
+ };
450
+ layulk: {
451
+ prompt: string;
452
+ invalidSelection: string;
453
+ layerNotFound: string;
454
+ alreadyUnlocked: string;
455
+ unlocked: string;
456
+ };
457
+ layoff: {
458
+ prompt: string;
459
+ invalidSelection: string;
460
+ settingsPrompt: string;
461
+ viewportPrompt: string;
462
+ blockSelectionPrompt: string;
463
+ vpfreezeFallback: string;
464
+ nestedSelectionLimited: string;
465
+ layerNotFound: string;
466
+ cannotTurnOffCurrent: string;
467
+ alreadyOff: string;
468
+ turnedOff: string;
469
+ restored: string;
470
+ nothingToUndo: string;
471
+ keywords: {
472
+ settings: {
473
+ display: string;
474
+ local: string;
475
+ global: string;
476
+ };
477
+ undo: {
478
+ display: string;
479
+ local: string;
480
+ global: string;
481
+ };
482
+ viewports: {
483
+ display: string;
484
+ local: string;
485
+ global: string;
486
+ };
487
+ blockSelection: {
488
+ display: string;
489
+ local: string;
490
+ global: string;
491
+ };
492
+ off: {
493
+ display: string;
494
+ local: string;
495
+ global: string;
496
+ };
497
+ vpfreeze: {
498
+ display: string;
499
+ local: string;
500
+ global: string;
501
+ };
502
+ block: {
503
+ display: string;
504
+ local: string;
505
+ global: string;
506
+ };
507
+ entity: {
508
+ display: string;
509
+ local: string;
510
+ global: string;
511
+ };
512
+ none: {
513
+ display: string;
514
+ local: string;
515
+ global: string;
516
+ };
517
+ };
518
+ };
519
+ layerp: {
520
+ restored: string;
521
+ noPreviousState: string;
522
+ };
523
+ line: {
524
+ firstPoint: string;
525
+ firstPointOrContinue: string;
526
+ nextPoint: string;
527
+ nextPointWithOptions: string;
528
+ keywords: {
529
+ continue: {
16
530
  display: string;
17
531
  local: string;
18
532
  global: string;
19
533
  };
20
- end: {
534
+ undo: {
21
535
  display: string;
22
536
  local: string;
23
537
  global: string;
24
538
  };
25
- angle: {
539
+ close: {
26
540
  display: string;
27
541
  local: string;
28
542
  global: string;
29
543
  };
30
- chordLength: {
544
+ };
545
+ };
546
+ xline: {
547
+ firstPointOrOptions: string;
548
+ secondPoint: string;
549
+ throughPoint: string;
550
+ angle: string;
551
+ invalidDirection: string;
552
+ keywords: {
553
+ hor: {
31
554
  display: string;
32
555
  local: string;
33
556
  global: string;
34
557
  };
35
- direction: {
558
+ ver: {
36
559
  display: string;
37
560
  local: string;
38
561
  global: string;
39
562
  };
40
- radius: {
563
+ ang: {
41
564
  display: string;
42
565
  local: string;
43
566
  global: string;
44
567
  };
45
568
  };
46
- invalid: {
47
- threePoint: string;
48
- center: string;
49
- angle: string;
50
- chordLength: string;
51
- direction: string;
52
- radius: string;
53
- };
54
569
  };
55
- circle: {
56
- center: string;
57
- radius: string;
58
- };
59
- measureDistance: {
60
- firstPoint: string;
61
- secondPoint: string;
570
+ ray: {
571
+ startPoint: string;
572
+ throughPoint: string;
62
573
  };
63
- measureArea: {
64
- firstPoint: string;
65
- nextPoint: string;
574
+ mline: {
575
+ startPointWithOptions: string;
576
+ nextPointWithOptions: string;
577
+ justificationPrompt: string;
578
+ scalePrompt: string;
579
+ stylePrompt: string;
580
+ styleNotFound: string;
581
+ styleListHeader: string;
582
+ styleListEmpty: string;
583
+ keywords: {
584
+ justification: {
585
+ display: string;
586
+ local: string;
587
+ global: string;
588
+ };
589
+ scale: {
590
+ display: string;
591
+ local: string;
592
+ global: string;
593
+ };
594
+ style: {
595
+ display: string;
596
+ local: string;
597
+ global: string;
598
+ };
599
+ undo: {
600
+ display: string;
601
+ local: string;
602
+ global: string;
603
+ };
604
+ close: {
605
+ display: string;
606
+ local: string;
607
+ global: string;
608
+ };
609
+ top: {
610
+ display: string;
611
+ local: string;
612
+ global: string;
613
+ };
614
+ zero: {
615
+ display: string;
616
+ local: string;
617
+ global: string;
618
+ };
619
+ bottom: {
620
+ display: string;
621
+ local: string;
622
+ global: string;
623
+ };
624
+ };
66
625
  };
67
626
  measureAngle: {
68
627
  vertex: string;
@@ -74,25 +633,65 @@ declare const _default: {
74
633
  throughPoint: string;
75
634
  endPoint: string;
76
635
  };
77
- dimlinear: {
78
- xLine1Point: string;
79
- xLine2Point: string;
80
- dimLinePoint: string;
81
- };
82
- line: {
636
+ measureArea: {
83
637
  firstPoint: string;
84
638
  nextPoint: string;
85
639
  };
640
+ measureDistance: {
641
+ firstPoint: string;
642
+ secondPoint: string;
643
+ };
644
+ move: {
645
+ basePointOrDisplacement: string;
646
+ secondPointOrDisplacement: string;
647
+ displacement: string;
648
+ keywords: {
649
+ displacement: {
650
+ display: string;
651
+ local: string;
652
+ global: string;
653
+ };
654
+ };
655
+ };
86
656
  mtext: {
87
657
  point: string;
88
658
  };
89
- rect: {
90
- firstPoint: string;
91
- nextPoint: string;
659
+ pngout: {
660
+ boundsFirstCorner: string;
661
+ boundsSecondCorner: string;
662
+ longSidePrompt: string;
92
663
  };
93
- sketch: {
94
- firstPoint: string;
95
- nextPoint: string;
664
+ point: {
665
+ point: string;
666
+ };
667
+ polygon: {
668
+ numberOfSides: string;
669
+ centerOrEdge: string;
670
+ radiusOrType: string;
671
+ edgeStart: string;
672
+ edgeEnd: string;
673
+ keywords: {
674
+ edge: {
675
+ display: string;
676
+ local: string;
677
+ global: string;
678
+ };
679
+ inscribed: {
680
+ display: string;
681
+ local: string;
682
+ global: string;
683
+ };
684
+ circumscribed: {
685
+ display: string;
686
+ local: string;
687
+ global: string;
688
+ };
689
+ };
690
+ invalid: {
691
+ sides: string;
692
+ radius: string;
693
+ edge: string;
694
+ };
96
695
  };
97
696
  polyline: {
98
697
  firstPoint: string;
@@ -147,13 +746,216 @@ declare const _default: {
147
746
  arcEndPoint: string;
148
747
  arcRadius: string;
149
748
  };
749
+ rect: {
750
+ firstPoint: string;
751
+ nextPoint: string;
752
+ firstPointWithOptions: string;
753
+ otherCornerWithOptions: string;
754
+ chamferFirst: string;
755
+ chamferSecond: string;
756
+ filletRadius: string;
757
+ segmentWidth: string;
758
+ elevationValue: string;
759
+ thicknessValue: string;
760
+ rotationAngle: string;
761
+ dimensionLength: string;
762
+ dimensionWidth: string;
763
+ areaValue: string;
764
+ areaLengthOrWidth: string;
765
+ areaSpecifyWidth: string;
766
+ invalidPositive: string;
767
+ invalidRect: string;
768
+ thicknessNotSupported: string;
769
+ keywords: {
770
+ chamfer: {
771
+ display: string;
772
+ local: string;
773
+ global: string;
774
+ };
775
+ elevation: {
776
+ display: string;
777
+ local: string;
778
+ global: string;
779
+ };
780
+ fillet: {
781
+ display: string;
782
+ local: string;
783
+ global: string;
784
+ };
785
+ thickness: {
786
+ display: string;
787
+ local: string;
788
+ global: string;
789
+ };
790
+ width: {
791
+ display: string;
792
+ local: string;
793
+ global: string;
794
+ };
795
+ area: {
796
+ display: string;
797
+ local: string;
798
+ global: string;
799
+ };
800
+ dimensions: {
801
+ display: string;
802
+ local: string;
803
+ global: string;
804
+ };
805
+ rotation: {
806
+ display: string;
807
+ local: string;
808
+ global: string;
809
+ };
810
+ length: {
811
+ display: string;
812
+ local: string;
813
+ global: string;
814
+ };
815
+ rectWidth: {
816
+ display: string;
817
+ local: string;
818
+ global: string;
819
+ };
820
+ };
821
+ };
822
+ rotate: {
823
+ basePoint: string;
824
+ rotationAngleOrOptions: string;
825
+ referenceAngleOrPoints: string;
826
+ firstReferencePoint: string;
827
+ secondReferencePoint: string;
828
+ newAngle: string;
829
+ keywords: {
830
+ copy: {
831
+ display: string;
832
+ local: string;
833
+ global: string;
834
+ };
835
+ reference: {
836
+ display: string;
837
+ local: string;
838
+ global: string;
839
+ };
840
+ points: {
841
+ display: string;
842
+ local: string;
843
+ global: string;
844
+ };
845
+ };
846
+ invalid: {
847
+ referencePoints: string;
848
+ };
849
+ };
850
+ sketch: {
851
+ firstPoint: string;
852
+ nextPoint: string;
853
+ };
150
854
  spline: {
151
855
  firstPoint: string;
152
856
  nextPoint: string;
857
+ firstPointWithOptions: string;
858
+ nextPointWithFitOptions: string;
859
+ nextPointWithCvOptions: string;
860
+ methodPrompt: string;
861
+ knotsPrompt: string;
862
+ degreePrompt: string;
863
+ keywords: {
864
+ method: {
865
+ display: string;
866
+ local: string;
867
+ global: string;
868
+ };
869
+ fit: {
870
+ display: string;
871
+ local: string;
872
+ global: string;
873
+ };
874
+ cv: {
875
+ display: string;
876
+ local: string;
877
+ global: string;
878
+ };
879
+ knots: {
880
+ display: string;
881
+ local: string;
882
+ global: string;
883
+ };
884
+ degree: {
885
+ display: string;
886
+ local: string;
887
+ global: string;
888
+ };
889
+ undo: {
890
+ display: string;
891
+ local: string;
892
+ global: string;
893
+ };
894
+ close: {
895
+ display: string;
896
+ local: string;
897
+ global: string;
898
+ };
899
+ chord: {
900
+ display: string;
901
+ local: string;
902
+ global: string;
903
+ };
904
+ sqrtChord: {
905
+ display: string;
906
+ local: string;
907
+ global: string;
908
+ };
909
+ uniform: {
910
+ display: string;
911
+ local: string;
912
+ global: string;
913
+ };
914
+ };
153
915
  };
154
916
  sysvar: {
155
917
  prompt: string;
156
918
  };
919
+ zoom: {
920
+ mainPrompt: string;
921
+ firstCorner: string;
922
+ secondCorner: string;
923
+ centerPoint: string;
924
+ heightOrScale: string;
925
+ scaleFactor: string;
926
+ keywords: {
927
+ all: {
928
+ display: string;
929
+ local: string;
930
+ global: string;
931
+ };
932
+ center: {
933
+ display: string;
934
+ local: string;
935
+ global: string;
936
+ };
937
+ extents: {
938
+ display: string;
939
+ local: string;
940
+ global: string;
941
+ };
942
+ previous: {
943
+ display: string;
944
+ local: string;
945
+ global: string;
946
+ };
947
+ scale: {
948
+ display: string;
949
+ local: string;
950
+ global: string;
951
+ };
952
+ window: {
953
+ display: string;
954
+ local: string;
955
+ global: string;
956
+ };
957
+ };
958
+ };
157
959
  };
158
960
  export default _default;
159
961
  //# sourceMappingURL=jig.d.ts.map