@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
@@ -1,12 +1,13 @@
1
1
  export default {
2
2
  arc: {
3
- startPointOrCenter: 'Specify start point of arc or [Center]:',
4
- secondPointOrOptions: 'Specify second point of arc or [Center/End]:',
3
+ startPointOrCenter: 'Specify start point of arc or',
4
+ secondPointOrOptions: 'Specify second point of arc or',
5
+ secondPoint: 'Specify second point of arc:',
5
6
  startPoint: 'Specify start point of arc:',
6
7
  centerPoint: 'Specify center point of arc:',
7
8
  endPoint: 'Specify end point of arc:',
8
- endPointOrOptions: 'Specify end point of arc or [Angle/chord Length]:',
9
- centerPointOrOptions: 'Specify center point of arc or [Angle/Direction/Radius]:',
9
+ endPointOrOptions: 'Specify end point of arc or',
10
+ centerPointOrOptions: 'Specify center point of arc',
10
11
  includedAngle: 'Specify included angle:',
11
12
  chordLength: 'Specify chord length:',
12
13
  tangentDirection: 'Specify tangent direction for start point of arc:',
@@ -54,15 +55,573 @@ export default {
54
55
  },
55
56
  circle: {
56
57
  center: 'Specify the center of circle:',
57
- radius: 'Specify the radius of circle:'
58
+ centerOrOptions: 'Specify center point of circle or',
59
+ radius: 'Specify the radius of circle:',
60
+ radiusOrDiameter: 'Specify radius of circle or',
61
+ diameter: 'Specify diameter of circle:',
62
+ twoPointFirst: 'Specify first endpoint of circle diameter:',
63
+ twoPointSecond: 'Specify second endpoint of circle diameter:',
64
+ threePointFirst: 'Specify first point on circle:',
65
+ threePointSecond: 'Specify second point on circle:',
66
+ threePointThird: 'Specify third point on circle:',
67
+ keywords: {
68
+ threeP: {
69
+ display: '3P(3P)',
70
+ local: '3P',
71
+ global: '3P'
72
+ },
73
+ twoP: {
74
+ display: '2P(2P)',
75
+ local: '2P',
76
+ global: '2P'
77
+ },
78
+ diameter: {
79
+ display: 'Diameter(D)',
80
+ local: 'Diameter',
81
+ global: 'Diameter'
82
+ }
83
+ }
58
84
  },
59
- measureDistance: {
60
- firstPoint: 'Specify first point:',
61
- secondPoint: 'Specify second point:'
85
+ copy: {
86
+ basePointOrOptions: 'Specify base point or',
87
+ displacementOrArray: 'Specify displacement or',
88
+ secondPointOrArray: 'Specify second point or',
89
+ modePrompt: 'Enter copy mode option',
90
+ arrayItemCount: 'Enter the number of items in the array including the original:',
91
+ arraySecondPointOrFit: 'Specify second point or',
92
+ arrayFitSecondPoint: 'Specify second point:',
93
+ keywords: {
94
+ displacement: {
95
+ display: 'Displacement(D)',
96
+ local: 'Displacement',
97
+ global: 'Displacement'
98
+ },
99
+ mode: {
100
+ display: 'Mode(O)',
101
+ local: 'Mode',
102
+ global: 'Mode'
103
+ },
104
+ multiple: {
105
+ display: 'Multiple(M)',
106
+ local: 'Multiple',
107
+ global: 'Multiple'
108
+ },
109
+ single: {
110
+ display: 'Single(S)',
111
+ local: 'Single',
112
+ global: 'Single'
113
+ },
114
+ array: {
115
+ display: 'Array(A)',
116
+ local: 'Array',
117
+ global: 'Array'
118
+ },
119
+ fit: {
120
+ display: 'Fit(F)',
121
+ local: 'Fit',
122
+ global: 'Fit'
123
+ }
124
+ }
62
125
  },
63
- measureArea: {
64
- firstPoint: 'Specify first point:',
65
- nextPoint: 'Specify next point (or press Enter to finish):'
126
+ dimlinear: {
127
+ xLine1Point: 'Specify the first extension line origin:',
128
+ xLine2Point: 'Specify the second extension line origin:',
129
+ dimLinePoint: 'Specify dimension line location:'
130
+ },
131
+ ellipse: {
132
+ axisEndpointOrOptions: 'Specify axis endpoint of ellipse or',
133
+ arcAxisEndpointOrCenter: 'Specify axis endpoint of elliptical arc or',
134
+ center: 'Specify center of ellipse:',
135
+ firstAxisEndpoint: 'Specify endpoint of axis:',
136
+ secondAxisEndpoint: 'Specify other endpoint of axis:',
137
+ otherAxisOrRotation: 'Specify distance to other axis or',
138
+ rotationAngle: 'Specify rotation angle around major axis:',
139
+ arcStartAngle: 'Specify start angle of elliptical arc:',
140
+ arcEndAngle: 'Specify end angle of elliptical arc:',
141
+ keywords: {
142
+ arc: {
143
+ display: 'Arc(A)',
144
+ local: 'Arc',
145
+ global: 'Arc'
146
+ },
147
+ center: {
148
+ display: 'Center(C)',
149
+ local: 'Center',
150
+ global: 'Center'
151
+ },
152
+ rotation: {
153
+ display: 'Rotation(R)',
154
+ local: 'Rotation',
155
+ global: 'Rotation'
156
+ }
157
+ },
158
+ invalid: {
159
+ axis: 'Invalid axis input: axis length must be greater than 0.',
160
+ otherAxis: 'Invalid other-axis input: distance must be greater than 0.',
161
+ rotation: 'Invalid rotation input: resulting minor axis must be greater than 0.'
162
+ }
163
+ },
164
+ hatch: {
165
+ prompt: 'Select boundary object or',
166
+ pickPoint: 'Specify internal point (or press Enter to finish):',
167
+ select: 'Select objects to hatch:',
168
+ patternName: 'Enter hatch pattern name:',
169
+ scale: 'Specify hatch pattern scale:',
170
+ angle: 'Specify hatch pattern angle:',
171
+ style: 'Enter hatch style',
172
+ associative: 'Specify associativity',
173
+ invalidBoundary: 'Selected objects do not form a closed boundary.',
174
+ keywords: {
175
+ pick: {
176
+ display: 'Pick points(P)',
177
+ local: 'Pick points',
178
+ global: 'PickPoints'
179
+ },
180
+ select: {
181
+ display: 'Select objects(S)',
182
+ local: 'Select objects',
183
+ global: 'SelectObjects'
184
+ },
185
+ cancel: {
186
+ display: 'Cancel(C)',
187
+ local: 'Cancel',
188
+ global: 'Cancel'
189
+ },
190
+ pattern: {
191
+ display: 'Pattern(P)',
192
+ local: 'Pattern',
193
+ global: 'Pattern'
194
+ },
195
+ scale: {
196
+ display: 'Scale(S)',
197
+ local: 'Scale',
198
+ global: 'Scale'
199
+ },
200
+ angle: {
201
+ display: 'Angle(A)',
202
+ local: 'Angle',
203
+ global: 'Angle'
204
+ },
205
+ style: {
206
+ display: 'Style(T)',
207
+ local: 'Style',
208
+ global: 'HatchStyle'
209
+ },
210
+ associative: {
211
+ display: 'Associative(AS)',
212
+ local: 'Associative',
213
+ global: 'AssociativeMode'
214
+ },
215
+ normal: {
216
+ display: 'Normal(N)',
217
+ local: 'Normal',
218
+ global: 'Normal'
219
+ },
220
+ outer: {
221
+ display: 'Outer(O)',
222
+ local: 'Outer',
223
+ global: 'Outer'
224
+ },
225
+ ignore: {
226
+ display: 'Ignore(I)',
227
+ local: 'Ignore',
228
+ global: 'Ignore'
229
+ },
230
+ yes: {
231
+ display: 'Yes(Y)',
232
+ local: 'Yes',
233
+ global: 'Yes'
234
+ },
235
+ no: {
236
+ display: 'No(N)',
237
+ local: 'No',
238
+ global: 'No'
239
+ }
240
+ }
241
+ },
242
+ layer: {
243
+ main: 'Enter option',
244
+ listSummary: 'Layer list was printed to browser console',
245
+ emptyInput: 'No layer name was entered.',
246
+ newPrompt: 'Enter name for new layer(s):',
247
+ makePrompt: 'Enter name of layer to make current:',
248
+ setPrompt: 'Enter name of layer to set current:',
249
+ onPrompt: 'Enter layer name(s) to turn on:',
250
+ offPrompt: 'Enter layer name(s) to turn off:',
251
+ freezePrompt: 'Enter layer name(s) to freeze:',
252
+ thawPrompt: 'Enter layer name(s) to thaw:',
253
+ lockPrompt: 'Enter layer name(s) to lock:',
254
+ unlockPrompt: 'Enter layer name(s) to unlock:',
255
+ colorLayerPrompt: 'Enter layer name(s) to change color:',
256
+ colorValuePrompt: 'Enter color (ACI 1-255, RGB like 255,0,0, or CSS color name):',
257
+ invalidColor: 'Invalid color input.',
258
+ descriptionLayerPrompt: 'Enter layer name to edit description:',
259
+ descriptionValuePrompt: 'Enter new layer description:',
260
+ created: 'Created layer count',
261
+ alreadyExists: 'Layer already exists',
262
+ notFound: 'Layer not found',
263
+ cannotChangeCurrent: 'Cannot turn off or freeze the current layer.',
264
+ keywords: {
265
+ list: {
266
+ display: '?(?)',
267
+ local: '?',
268
+ global: '?'
269
+ },
270
+ make: {
271
+ display: 'Make(M)',
272
+ local: 'Make',
273
+ global: 'Make'
274
+ },
275
+ set: {
276
+ display: 'Set(S)',
277
+ local: 'Set',
278
+ global: 'Set'
279
+ },
280
+ new: {
281
+ display: 'New(N)',
282
+ local: 'New',
283
+ global: 'New'
284
+ },
285
+ on: {
286
+ display: 'On(ON)',
287
+ local: 'On',
288
+ global: 'On'
289
+ },
290
+ off: {
291
+ display: 'Off(OF)',
292
+ local: 'Off',
293
+ global: 'Off'
294
+ },
295
+ color: {
296
+ display: 'Color(C)',
297
+ local: 'Color',
298
+ global: 'Color'
299
+ },
300
+ freeze: {
301
+ display: 'Freeze(F)',
302
+ local: 'Freeze',
303
+ global: 'Freeze'
304
+ },
305
+ thaw: {
306
+ display: 'Thaw(T)',
307
+ local: 'Thaw',
308
+ global: 'Thaw'
309
+ },
310
+ lock: {
311
+ display: 'Lock(L)',
312
+ local: 'Lock',
313
+ global: 'Lock'
314
+ },
315
+ unlock: {
316
+ display: 'Unlock(U)',
317
+ local: 'Unlock',
318
+ global: 'Unlock'
319
+ },
320
+ description: {
321
+ display: 'Description(D)',
322
+ local: 'Description',
323
+ global: 'Description'
324
+ }
325
+ }
326
+ },
327
+ layon: {
328
+ alreadyOn: 'All layers are already on.',
329
+ turnedOn: 'Turned on layers'
330
+ },
331
+ laycur: {
332
+ prompt: 'Select objects to be changed to the current layer',
333
+ currentLayerNotFound: 'Current layer not found.',
334
+ noObjects: 'No valid objects were selected.',
335
+ alreadyCurrent: 'Selected objects are already on the current layer.',
336
+ changed: 'Changed objects to current layer'
337
+ },
338
+ layfrz: {
339
+ prompt: 'Select object on layer to freeze or',
340
+ invalidSelection: 'Invalid object selected.',
341
+ settingsPrompt: 'Enter LAYFRZ setting to change',
342
+ viewportPrompt: 'Specify viewport freeze behavior',
343
+ blockSelectionPrompt: 'Specify nested block selection behavior',
344
+ vpfreezeFallback: 'Current viewer does not support per-viewport layer freeze; using Freeze behavior instead.',
345
+ nestedSelectionLimited: 'Nested block selection settings are stored, but current picking still resolves the top-level entity layer.',
346
+ layerNotFound: 'Layer not found',
347
+ cannotFreezeCurrent: 'Cannot freeze the current layer.',
348
+ alreadyFrozen: 'Layer is already frozen',
349
+ frozen: 'Frozen layer',
350
+ restored: 'Restored layer',
351
+ nothingToUndo: 'There is no LAYFRZ action to undo.',
352
+ keywords: {
353
+ settings: {
354
+ display: 'Settings(S)',
355
+ local: 'Settings',
356
+ global: 'Settings'
357
+ },
358
+ undo: {
359
+ display: 'Undo(U)',
360
+ local: 'Undo',
361
+ global: 'Undo'
362
+ },
363
+ viewports: {
364
+ display: 'Viewports(V)',
365
+ local: 'Viewports',
366
+ global: 'Viewports'
367
+ },
368
+ blockSelection: {
369
+ display: 'Block selection(B)',
370
+ local: 'Block selection',
371
+ global: 'BlockSelection'
372
+ },
373
+ freeze: {
374
+ display: 'Freeze(F)',
375
+ local: 'Freeze',
376
+ global: 'Freeze'
377
+ },
378
+ vpfreeze: {
379
+ display: 'Vpfreeze(V)',
380
+ local: 'Vpfreeze',
381
+ global: 'Vpfreeze'
382
+ },
383
+ block: {
384
+ display: 'Block(B)',
385
+ local: 'Block',
386
+ global: 'Block'
387
+ },
388
+ entity: {
389
+ display: 'Entity(E)',
390
+ local: 'Entity',
391
+ global: 'Entity'
392
+ },
393
+ none: {
394
+ display: 'None(N)',
395
+ local: 'None',
396
+ global: 'None'
397
+ }
398
+ }
399
+ },
400
+ layiso: {
401
+ prompt: 'Select objects on the layer(s) to be isolated or',
402
+ settingsPrompt: 'Enter setting for layers not isolated',
403
+ offModePrompt: 'Enter off behavior for layers not isolated',
404
+ noLayers: 'No valid layers were selected.',
405
+ layerNotFound: 'Layer not found',
406
+ isolated: 'Isolated layer(s)',
407
+ affectedLayers: 'affected layers',
408
+ vpfreezeFallback: 'Current viewer does not support per-viewport layer freeze; using Off behavior instead.',
409
+ lockFadeFallback: 'Current viewer does not support layer fade display; non-isolated layers will be locked without fade.',
410
+ keywords: {
411
+ settings: {
412
+ display: 'Settings(S)',
413
+ local: 'Settings',
414
+ global: 'Settings'
415
+ },
416
+ off: {
417
+ display: 'Off(O)',
418
+ local: 'Off',
419
+ global: 'Off'
420
+ },
421
+ lockAndFade: {
422
+ display: 'Lock and fade(L)',
423
+ local: 'Lock and fade',
424
+ global: 'LockAndFade'
425
+ },
426
+ vpfreeze: {
427
+ display: 'Vpfreeze(V)',
428
+ local: 'Vpfreeze',
429
+ global: 'Vpfreeze'
430
+ }
431
+ }
432
+ },
433
+ layuniso: {
434
+ noPrevious: 'No previous LAYISO layer state to restore.',
435
+ layerNotFound: 'Layer not found',
436
+ nothingRestored: 'No LAYISO layer changes were restored.',
437
+ restored: 'Restored layers'
438
+ },
439
+ laythw: {
440
+ alreadyThawed: 'All layers are already thawed.',
441
+ thawed: 'Thawed layers'
442
+ },
443
+ laylck: {
444
+ prompt: 'Select an object on the layer to be locked',
445
+ invalidSelection: 'Invalid object selected.',
446
+ layerNotFound: 'Layer not found',
447
+ alreadyLocked: 'Layer is already locked',
448
+ locked: 'Locked layer'
449
+ },
450
+ layulk: {
451
+ prompt: 'Select an object on the layer to be unlocked',
452
+ invalidSelection: 'Invalid object selected.',
453
+ layerNotFound: 'Layer not found',
454
+ alreadyUnlocked: 'Layer is already unlocked',
455
+ unlocked: 'Unlocked layer'
456
+ },
457
+ layoff: {
458
+ prompt: 'Select object on layer to turn off or',
459
+ invalidSelection: 'Invalid object selected.',
460
+ settingsPrompt: 'Enter LAYOFF setting to change',
461
+ viewportPrompt: 'Specify viewport behavior',
462
+ blockSelectionPrompt: 'Specify nested block selection behavior',
463
+ vpfreezeFallback: 'Current viewer does not support per-viewport layer off; using Off behavior instead.',
464
+ nestedSelectionLimited: 'Nested block selection settings are stored, but current picking still resolves the top-level entity layer.',
465
+ layerNotFound: 'Layer not found',
466
+ cannotTurnOffCurrent: 'Cannot turn off the current layer.',
467
+ alreadyOff: 'Layer is already off',
468
+ turnedOff: 'Turned off layer',
469
+ restored: 'Restored layer',
470
+ nothingToUndo: 'There is no LAYOFF action to undo.',
471
+ keywords: {
472
+ settings: {
473
+ display: 'Settings(S)',
474
+ local: 'Settings',
475
+ global: 'Settings'
476
+ },
477
+ undo: {
478
+ display: 'Undo(U)',
479
+ local: 'Undo',
480
+ global: 'Undo'
481
+ },
482
+ viewports: {
483
+ display: 'Viewports(V)',
484
+ local: 'Viewports',
485
+ global: 'Viewports'
486
+ },
487
+ blockSelection: {
488
+ display: 'Block selection(B)',
489
+ local: 'Block selection',
490
+ global: 'BlockSelection'
491
+ },
492
+ off: {
493
+ display: 'Off(O)',
494
+ local: 'Off',
495
+ global: 'Off'
496
+ },
497
+ vpfreeze: {
498
+ display: 'Vpfreeze(V)',
499
+ local: 'Vpfreeze',
500
+ global: 'Vpfreeze'
501
+ },
502
+ block: {
503
+ display: 'Block(B)',
504
+ local: 'Block',
505
+ global: 'Block'
506
+ },
507
+ entity: {
508
+ display: 'Entity(E)',
509
+ local: 'Entity',
510
+ global: 'Entity'
511
+ },
512
+ none: {
513
+ display: 'None(N)',
514
+ local: 'None',
515
+ global: 'None'
516
+ }
517
+ }
518
+ },
519
+ layerp: {
520
+ restored: 'Restored previous layer state.',
521
+ noPreviousState: 'There is no previous layer state to restore.'
522
+ },
523
+ line: {
524
+ firstPoint: 'Specify the first point:',
525
+ firstPointOrContinue: 'Specify first point or',
526
+ nextPoint: 'Specify the next point:',
527
+ nextPointWithOptions: 'Specify next point or',
528
+ keywords: {
529
+ continue: {
530
+ display: 'Continue(C)',
531
+ local: 'Continue',
532
+ global: 'Continue'
533
+ },
534
+ undo: {
535
+ display: 'Undo(U)',
536
+ local: 'Undo',
537
+ global: 'Undo'
538
+ },
539
+ close: {
540
+ display: 'Close(C)',
541
+ local: 'Close',
542
+ global: 'Close'
543
+ }
544
+ }
545
+ },
546
+ xline: {
547
+ firstPointOrOptions: 'Specify a point or',
548
+ secondPoint: 'Specify second point:',
549
+ throughPoint: 'Specify through point:',
550
+ angle: 'Enter angle of xline:',
551
+ invalidDirection: 'Invalid direction for XLINE.',
552
+ keywords: {
553
+ hor: {
554
+ display: 'Hor(H)',
555
+ local: 'Hor',
556
+ global: 'Hor'
557
+ },
558
+ ver: {
559
+ display: 'Ver(V)',
560
+ local: 'Ver',
561
+ global: 'Ver'
562
+ },
563
+ ang: {
564
+ display: 'Ang(A)',
565
+ local: 'Ang',
566
+ global: 'Ang'
567
+ }
568
+ }
569
+ },
570
+ ray: {
571
+ startPoint: 'Specify start point:',
572
+ throughPoint: 'Specify through point:'
573
+ },
574
+ mline: {
575
+ startPointWithOptions: 'Specify start point or',
576
+ nextPointWithOptions: 'Specify next point or',
577
+ justificationPrompt: 'Enter justification type',
578
+ scalePrompt: 'Specify mline scale:',
579
+ stylePrompt: 'Enter mline style name or [?] for list:',
580
+ styleNotFound: 'Mline style not found',
581
+ styleListHeader: 'Loaded mline styles:',
582
+ styleListEmpty: 'No mline style is loaded in current drawing.',
583
+ keywords: {
584
+ justification: {
585
+ display: 'Justification(J)',
586
+ local: 'Justification',
587
+ global: 'Justification'
588
+ },
589
+ scale: {
590
+ display: 'Scale(S)',
591
+ local: 'Scale',
592
+ global: 'Scale'
593
+ },
594
+ style: {
595
+ display: 'Style(ST)',
596
+ local: 'Style',
597
+ global: 'Style'
598
+ },
599
+ undo: {
600
+ display: 'Undo(U)',
601
+ local: 'Undo',
602
+ global: 'Undo'
603
+ },
604
+ close: {
605
+ display: 'Close(C)',
606
+ local: 'Close',
607
+ global: 'Close'
608
+ },
609
+ top: {
610
+ display: 'Top(T)',
611
+ local: 'Top',
612
+ global: 'Top'
613
+ },
614
+ zero: {
615
+ display: 'Zero(Z)',
616
+ local: 'Zero',
617
+ global: 'Zero'
618
+ },
619
+ bottom: {
620
+ display: 'Bottom(B)',
621
+ local: 'Bottom',
622
+ global: 'Bottom'
623
+ }
624
+ }
66
625
  },
67
626
  measureAngle: {
68
627
  vertex: 'Specify vertex point:',
@@ -74,25 +633,65 @@ export default {
74
633
  throughPoint: 'Specify a point on the arc:',
75
634
  endPoint: 'Specify arc end point:'
76
635
  },
77
- dimlinear: {
78
- xLine1Point: 'Specify the first extension line origin:',
79
- xLine2Point: 'Specify the second extension line origin:',
80
- dimLinePoint: 'Specify dimension line location:'
636
+ measureArea: {
637
+ firstPoint: 'Specify first point:',
638
+ nextPoint: 'Specify next point (or press Enter to finish):'
81
639
  },
82
- line: {
83
- firstPoint: 'Specify the first point:',
84
- nextPoint: 'Specify the next point:'
640
+ measureDistance: {
641
+ firstPoint: 'Specify first point:',
642
+ secondPoint: 'Specify second point:'
643
+ },
644
+ move: {
645
+ basePointOrDisplacement: 'Specify base point or',
646
+ secondPointOrDisplacement: 'Specify second point or',
647
+ displacement: 'Specify displacement:',
648
+ keywords: {
649
+ displacement: {
650
+ display: 'Displacement(D)',
651
+ local: 'Displacement',
652
+ global: 'Displacement'
653
+ }
654
+ }
85
655
  },
86
656
  mtext: {
87
657
  point: 'Specify mtext insertion point:'
88
658
  },
89
- rect: {
90
- firstPoint: 'Specify the first point:',
91
- nextPoint: 'Specify the next point:'
659
+ pngout: {
660
+ boundsFirstCorner: 'Specify first corner of bounds',
661
+ boundsSecondCorner: 'Specify opposite corner',
662
+ longSidePrompt: 'Enter long side size in pixels'
92
663
  },
93
- sketch: {
94
- firstPoint: 'Specify the first point:',
95
- nextPoint: 'Specify the end point:'
664
+ point: {
665
+ point: 'Specify a point'
666
+ },
667
+ polygon: {
668
+ numberOfSides: 'Enter number of sides:',
669
+ centerOrEdge: 'Specify center of polygon or',
670
+ radiusOrType: 'Enter options',
671
+ edgeStart: 'Specify first endpoint of edge:',
672
+ edgeEnd: 'Specify second endpoint of edge:',
673
+ keywords: {
674
+ edge: {
675
+ display: 'Edge(E)',
676
+ local: 'Edge',
677
+ global: 'Edge'
678
+ },
679
+ inscribed: {
680
+ display: 'Inscribed in circle(I)',
681
+ local: 'Inscribed in circle',
682
+ global: 'Inscribed'
683
+ },
684
+ circumscribed: {
685
+ display: 'Circumscribed about circle(C)',
686
+ local: 'Circumscribed about circle',
687
+ global: 'Circumscribed'
688
+ }
689
+ },
690
+ invalid: {
691
+ sides: 'Invalid number of sides. Enter an integer between 3 and 1024.',
692
+ radius: 'Invalid radius. Radius must be greater than 0.',
693
+ edge: 'Invalid edge. The edge length must be greater than 0.'
694
+ }
96
695
  },
97
696
  polyline: {
98
697
  firstPoint: 'Specify the first point:',
@@ -147,12 +746,215 @@ export default {
147
746
  arcEndPoint: 'Specify arc end point:',
148
747
  arcRadius: 'Specify arc radius:'
149
748
  },
749
+ rect: {
750
+ firstPoint: 'Specify first corner point:',
751
+ nextPoint: 'Specify other corner point:',
752
+ firstPointWithOptions: 'Specify first corner point or',
753
+ otherCornerWithOptions: 'Specify other corner point or',
754
+ chamferFirst: 'Specify first chamfer distance:',
755
+ chamferSecond: 'Specify second chamfer distance:',
756
+ filletRadius: 'Specify fillet radius:',
757
+ segmentWidth: 'Specify rectangle line width:',
758
+ elevationValue: 'Specify elevation:',
759
+ thicknessValue: 'Specify thickness:',
760
+ rotationAngle: 'Specify rectangle rotation angle:',
761
+ dimensionLength: 'Specify rectangle length:',
762
+ dimensionWidth: 'Specify rectangle width:',
763
+ areaValue: 'Specify rectangle area:',
764
+ areaLengthOrWidth: 'Specify rectangle length',
765
+ areaSpecifyWidth: 'Specify rectangle width:',
766
+ invalidPositive: 'Invalid input. Please enter a value greater than 0.',
767
+ invalidRect: 'Unable to create rectangle. Please specify valid corners or dimensions.',
768
+ thicknessNotSupported: 'Rectangle thickness is currently not written to entity data. The thickness setting is ignored.',
769
+ keywords: {
770
+ chamfer: {
771
+ display: 'Chamfer(C)',
772
+ local: 'Chamfer',
773
+ global: 'Chamfer'
774
+ },
775
+ elevation: {
776
+ display: 'Elevation(E)',
777
+ local: 'Elevation',
778
+ global: 'Elevation'
779
+ },
780
+ fillet: {
781
+ display: 'Fillet(F)',
782
+ local: 'Fillet',
783
+ global: 'Fillet'
784
+ },
785
+ thickness: {
786
+ display: 'Thickness(T)',
787
+ local: 'Thickness',
788
+ global: 'Thickness'
789
+ },
790
+ width: {
791
+ display: 'Width(W)',
792
+ local: 'Width',
793
+ global: 'Width'
794
+ },
795
+ area: {
796
+ display: 'Area(A)',
797
+ local: 'Area',
798
+ global: 'Area'
799
+ },
800
+ dimensions: {
801
+ display: 'Dimensions(D)',
802
+ local: 'Dimensions',
803
+ global: 'Dimensions'
804
+ },
805
+ rotation: {
806
+ display: 'Rotation(R)',
807
+ local: 'Rotation',
808
+ global: 'Rotation'
809
+ },
810
+ length: {
811
+ display: 'Length(L)',
812
+ local: 'Length',
813
+ global: 'Length'
814
+ },
815
+ rectWidth: {
816
+ display: 'Width(W)',
817
+ local: 'Width',
818
+ global: 'Width'
819
+ }
820
+ }
821
+ },
822
+ rotate: {
823
+ basePoint: 'Specify base point:',
824
+ rotationAngleOrOptions: 'Specify rotation angle or',
825
+ referenceAngleOrPoints: 'Specify reference angle or',
826
+ firstReferencePoint: 'Specify first point of reference angle:',
827
+ secondReferencePoint: 'Specify second point:',
828
+ newAngle: 'Specify new angle:',
829
+ keywords: {
830
+ copy: {
831
+ display: 'Copy(C)',
832
+ local: 'Copy',
833
+ global: 'Copy'
834
+ },
835
+ reference: {
836
+ display: 'Reference(R)',
837
+ local: 'Reference',
838
+ global: 'Reference'
839
+ },
840
+ points: {
841
+ display: 'Points(P)',
842
+ local: 'Points',
843
+ global: 'Points'
844
+ }
845
+ },
846
+ invalid: {
847
+ referencePoints: 'Invalid reference points: points must be different.'
848
+ }
849
+ },
850
+ sketch: {
851
+ firstPoint: 'Specify the first point:',
852
+ nextPoint: 'Specify the end point:'
853
+ },
150
854
  spline: {
151
855
  firstPoint: 'Specify the first point:',
152
- nextPoint: 'Specify the next point (or press Enter to finish):'
856
+ nextPoint: 'Specify the next point (or press Enter to finish):',
857
+ firstPointWithOptions: 'Specify first point or',
858
+ nextPointWithFitOptions: 'Specify next point or',
859
+ nextPointWithCvOptions: 'Specify next control vertex or',
860
+ methodPrompt: 'Enter spline creation method',
861
+ knotsPrompt: 'Enter knot parameterization',
862
+ degreePrompt: 'Specify spline degree:',
863
+ keywords: {
864
+ method: {
865
+ display: 'Method(M)',
866
+ local: 'Method',
867
+ global: 'Method'
868
+ },
869
+ fit: {
870
+ display: 'Fit(F)',
871
+ local: 'Fit',
872
+ global: 'Fit'
873
+ },
874
+ cv: {
875
+ display: 'CV(C)',
876
+ local: 'CV',
877
+ global: 'CV'
878
+ },
879
+ knots: {
880
+ display: 'Knots(K)',
881
+ local: 'Knots',
882
+ global: 'Knots'
883
+ },
884
+ degree: {
885
+ display: 'Degree(D)',
886
+ local: 'Degree',
887
+ global: 'Degree'
888
+ },
889
+ undo: {
890
+ display: 'Undo(U)',
891
+ local: 'Undo',
892
+ global: 'Undo'
893
+ },
894
+ close: {
895
+ display: 'Close(C)',
896
+ local: 'Close',
897
+ global: 'Close'
898
+ },
899
+ chord: {
900
+ display: 'Chord(C)',
901
+ local: 'Chord',
902
+ global: 'Chord'
903
+ },
904
+ sqrtChord: {
905
+ display: 'Sqrt chord(S)',
906
+ local: 'Sqrt chord',
907
+ global: 'SqrtChord'
908
+ },
909
+ uniform: {
910
+ display: 'Uniform(U)',
911
+ local: 'Uniform',
912
+ global: 'Uniform'
913
+ }
914
+ }
153
915
  },
154
916
  sysvar: {
155
917
  prompt: 'Please input new value:'
918
+ },
919
+ zoom: {
920
+ mainPrompt: 'Specify corner of window or',
921
+ firstCorner: 'Specify first corner:',
922
+ secondCorner: 'Specify opposite corner:',
923
+ centerPoint: 'Specify center point:',
924
+ heightOrScale: 'Enter height or scale factor (nX or nXP):',
925
+ scaleFactor: 'Enter scale factor (nX or nXP):',
926
+ keywords: {
927
+ all: {
928
+ display: 'All(A)',
929
+ local: 'All',
930
+ global: 'All'
931
+ },
932
+ center: {
933
+ display: 'Center(C)',
934
+ local: 'Center',
935
+ global: 'Center'
936
+ },
937
+ extents: {
938
+ display: 'Extents(E)',
939
+ local: 'Extents',
940
+ global: 'Extents'
941
+ },
942
+ previous: {
943
+ display: 'Previous(P)',
944
+ local: 'Previous',
945
+ global: 'Previous'
946
+ },
947
+ scale: {
948
+ display: 'Scale(S)',
949
+ local: 'Scale',
950
+ global: 'Scale'
951
+ },
952
+ window: {
953
+ display: 'Window(W)',
954
+ local: 'Window',
955
+ global: 'Window'
956
+ }
957
+ }
156
958
  }
157
959
  };
158
960
  //# sourceMappingURL=jig.js.map