@mlightcad/cad-simple-viewer 1.6.2 → 1.7.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 (728) hide show
  1. package/dist/cad-simple-viewer.js +28736 -18706
  2. package/dist/cad-simple-viewer.umd.cjs +1639 -308
  3. package/dist/mtext-renderer-worker.js +14590 -14441
  4. package/icons.ts +7 -0
  5. package/lib/app/AcApBrand.d.ts +2 -2
  6. package/lib/app/AcApBrand.d.ts.map +1 -1
  7. package/lib/app/AcApBrand.js +2 -2
  8. package/lib/app/AcApBrand.js.map +1 -1
  9. package/lib/app/AcApBusyIndicator.d.ts +6 -0
  10. package/lib/app/AcApBusyIndicator.d.ts.map +1 -1
  11. package/lib/app/AcApBusyIndicator.js +8 -0
  12. package/lib/app/AcApBusyIndicator.js.map +1 -1
  13. package/lib/app/AcApContext.d.ts +24 -0
  14. package/lib/app/AcApContext.d.ts.map +1 -1
  15. package/lib/app/AcApContext.js +103 -18
  16. package/lib/app/AcApContext.js.map +1 -1
  17. package/lib/app/AcApDocManager.d.ts +293 -31
  18. package/lib/app/AcApDocManager.d.ts.map +1 -1
  19. package/lib/app/AcApDocManager.js +972 -184
  20. package/lib/app/AcApDocManager.js.map +1 -1
  21. package/lib/app/AcApDocSession.d.ts +41 -0
  22. package/lib/app/AcApDocSession.d.ts.map +1 -0
  23. package/lib/app/AcApDocSession.js +29 -0
  24. package/lib/app/AcApDocSession.js.map +1 -0
  25. package/lib/app/AcApDocsUrl.d.ts +57 -0
  26. package/lib/app/AcApDocsUrl.d.ts.map +1 -0
  27. package/lib/app/AcApDocsUrl.js +76 -0
  28. package/lib/app/AcApDocsUrl.js.map +1 -0
  29. package/lib/app/AcApDocument.d.ts +6 -1
  30. package/lib/app/AcApDocument.d.ts.map +1 -1
  31. package/lib/app/AcApDocument.js +21 -0
  32. package/lib/app/AcApDocument.js.map +1 -1
  33. package/lib/app/AcApFontLoader.d.ts +6 -0
  34. package/lib/app/AcApFontLoader.d.ts.map +1 -1
  35. package/lib/app/AcApFontLoader.js +11 -0
  36. package/lib/app/AcApFontLoader.js.map +1 -1
  37. package/lib/app/{AcDbOpenDatabaseOptions.d.ts → AcApOpenDatabaseOptions.d.ts} +35 -8
  38. package/lib/app/AcApOpenDatabaseOptions.d.ts.map +1 -0
  39. package/lib/app/{AcDbOpenDatabaseOptions.js → AcApOpenDatabaseOptions.js} +1 -1
  40. package/lib/app/AcApOpenDatabaseOptions.js.map +1 -0
  41. package/lib/app/AcApOpenFileDialog.d.ts +1 -1
  42. package/lib/app/AcApOpenFileProgressController.d.ts +14 -0
  43. package/lib/app/AcApOpenFileProgressController.d.ts.map +1 -1
  44. package/lib/app/AcApOpenFileProgressController.js +18 -0
  45. package/lib/app/AcApOpenFileProgressController.js.map +1 -1
  46. package/lib/app/AcApProgress.d.ts +6 -0
  47. package/lib/app/AcApProgress.d.ts.map +1 -1
  48. package/lib/app/AcApProgress.js +17 -0
  49. package/lib/app/AcApProgress.js.map +1 -1
  50. package/lib/app/AcApSettingManager.d.ts +156 -43
  51. package/lib/app/AcApSettingManager.d.ts.map +1 -1
  52. package/lib/app/AcApSettingManager.js +216 -66
  53. package/lib/app/AcApSettingManager.js.map +1 -1
  54. package/lib/app/index.d.ts +4 -2
  55. package/lib/app/index.d.ts.map +1 -1
  56. package/lib/app/index.js +3 -1
  57. package/lib/app/index.js.map +1 -1
  58. package/lib/command/AcApCloseCmd.d.ts +15 -0
  59. package/lib/command/AcApCloseCmd.d.ts.map +1 -0
  60. package/lib/command/AcApCloseCmd.js +83 -0
  61. package/lib/command/AcApCloseCmd.js.map +1 -0
  62. package/lib/command/AcApDrawOverlayInput.d.ts +6 -0
  63. package/lib/command/AcApDrawOverlayInput.d.ts.map +1 -0
  64. package/lib/command/AcApDrawOverlayInput.js +64 -0
  65. package/lib/command/AcApDrawOverlayInput.js.map +1 -0
  66. package/lib/command/AcApDrawStyleDrawCmd.d.ts +9 -0
  67. package/lib/command/AcApDrawStyleDrawCmd.d.ts.map +1 -0
  68. package/lib/command/AcApDrawStyleDrawCmd.js +32 -0
  69. package/lib/command/AcApDrawStyleDrawCmd.js.map +1 -0
  70. package/lib/command/AcApDrawStyleSession.d.ts +20 -0
  71. package/lib/command/AcApDrawStyleSession.d.ts.map +1 -0
  72. package/lib/command/AcApDrawStyleSession.js +2 -0
  73. package/lib/command/AcApDrawStyleSession.js.map +1 -0
  74. package/lib/command/AcApInstallDrawStyleSessionAccessory.d.ts +28 -0
  75. package/lib/command/AcApInstallDrawStyleSessionAccessory.d.ts.map +1 -0
  76. package/lib/command/AcApInstallDrawStyleSessionAccessory.js +174 -0
  77. package/lib/command/AcApInstallDrawStyleSessionAccessory.js.map +1 -0
  78. package/lib/command/AcApReadingModeCmd.d.ts +17 -0
  79. package/lib/command/AcApReadingModeCmd.d.ts.map +1 -0
  80. package/lib/command/AcApReadingModeCmd.js +82 -0
  81. package/lib/command/AcApReadingModeCmd.js.map +1 -0
  82. package/lib/command/AcApShortCutSelectionAccessory.d.ts +14 -0
  83. package/lib/command/AcApShortCutSelectionAccessory.d.ts.map +1 -0
  84. package/lib/command/AcApShortCutSelectionAccessory.js +266 -0
  85. package/lib/command/AcApShortCutSelectionAccessory.js.map +1 -0
  86. package/lib/command/AcApShortCutToolbarDocBind.d.ts +20 -0
  87. package/lib/command/AcApShortCutToolbarDocBind.d.ts.map +1 -0
  88. package/lib/command/AcApShortCutToolbarDocBind.js +155 -0
  89. package/lib/command/AcApShortCutToolbarDocBind.js.map +1 -0
  90. package/lib/command/AcApZoomCmd.d.ts +39 -1
  91. package/lib/command/AcApZoomCmd.d.ts.map +1 -1
  92. package/lib/command/AcApZoomCmd.js +70 -6
  93. package/lib/command/AcApZoomCmd.js.map +1 -1
  94. package/lib/command/draw/AcApHatchCmd.js +1 -1
  95. package/lib/command/draw/AcApHatchCmd.js.map +1 -1
  96. package/lib/command/draw/AcApMTextCmd.d.ts.map +1 -1
  97. package/lib/command/draw/AcApMTextCmd.js +11 -7
  98. package/lib/command/draw/AcApMTextCmd.js.map +1 -1
  99. package/lib/command/index.d.ts +4 -0
  100. package/lib/command/index.d.ts.map +1 -1
  101. package/lib/command/index.js +4 -0
  102. package/lib/command/index.js.map +1 -1
  103. package/lib/command/markup/AcApMarkupArrowCmd.d.ts +2 -3
  104. package/lib/command/markup/AcApMarkupArrowCmd.d.ts.map +1 -1
  105. package/lib/command/markup/AcApMarkupArrowCmd.js +8 -9
  106. package/lib/command/markup/AcApMarkupArrowCmd.js.map +1 -1
  107. package/lib/command/markup/AcApMarkupCalloutCmd.d.ts +2 -3
  108. package/lib/command/markup/AcApMarkupCalloutCmd.d.ts.map +1 -1
  109. package/lib/command/markup/AcApMarkupCalloutCmd.js +47 -22
  110. package/lib/command/markup/AcApMarkupCalloutCmd.js.map +1 -1
  111. package/lib/command/markup/AcApMarkupCircleCmd.d.ts +2 -3
  112. package/lib/command/markup/AcApMarkupCircleCmd.d.ts.map +1 -1
  113. package/lib/command/markup/AcApMarkupCircleCmd.js +8 -9
  114. package/lib/command/markup/AcApMarkupCircleCmd.js.map +1 -1
  115. package/lib/command/markup/AcApMarkupCloudCmd.d.ts +2 -3
  116. package/lib/command/markup/AcApMarkupCloudCmd.d.ts.map +1 -1
  117. package/lib/command/markup/AcApMarkupCloudCmd.js +8 -9
  118. package/lib/command/markup/AcApMarkupCloudCmd.js.map +1 -1
  119. package/lib/command/markup/AcApMarkupCmdUtil.d.ts +7 -1
  120. package/lib/command/markup/AcApMarkupCmdUtil.d.ts.map +1 -1
  121. package/lib/command/markup/AcApMarkupCmdUtil.js +10 -0
  122. package/lib/command/markup/AcApMarkupCmdUtil.js.map +1 -1
  123. package/lib/command/markup/AcApMarkupDrawCmd.d.ts +19 -0
  124. package/lib/command/markup/AcApMarkupDrawCmd.d.ts.map +1 -0
  125. package/lib/command/markup/AcApMarkupDrawCmd.js +47 -0
  126. package/lib/command/markup/AcApMarkupDrawCmd.js.map +1 -0
  127. package/lib/command/markup/AcApMarkupGeometry.d.ts +39 -3
  128. package/lib/command/markup/AcApMarkupGeometry.d.ts.map +1 -1
  129. package/lib/command/markup/AcApMarkupGeometry.js +127 -26
  130. package/lib/command/markup/AcApMarkupGeometry.js.map +1 -1
  131. package/lib/command/markup/AcApMarkupHighlightCmd.d.ts +2 -3
  132. package/lib/command/markup/AcApMarkupHighlightCmd.d.ts.map +1 -1
  133. package/lib/command/markup/AcApMarkupHighlightCmd.js +9 -10
  134. package/lib/command/markup/AcApMarkupHighlightCmd.js.map +1 -1
  135. package/lib/command/markup/AcApMarkupHistory.d.ts +1 -1
  136. package/lib/command/markup/AcApMarkupHistory.d.ts.map +1 -1
  137. package/lib/command/markup/AcApMarkupHistory.js +4 -11
  138. package/lib/command/markup/AcApMarkupHistory.js.map +1 -1
  139. package/lib/command/markup/AcApMarkupLineCmd.d.ts +2 -3
  140. package/lib/command/markup/AcApMarkupLineCmd.d.ts.map +1 -1
  141. package/lib/command/markup/AcApMarkupLineCmd.js +18 -11
  142. package/lib/command/markup/AcApMarkupLineCmd.js.map +1 -1
  143. package/lib/command/markup/AcApMarkupPresenter.d.ts +24 -4
  144. package/lib/command/markup/AcApMarkupPresenter.d.ts.map +1 -1
  145. package/lib/command/markup/AcApMarkupPresenter.js +100 -18
  146. package/lib/command/markup/AcApMarkupPresenter.js.map +1 -1
  147. package/lib/command/markup/AcApMarkupRectCmd.d.ts +2 -3
  148. package/lib/command/markup/AcApMarkupRectCmd.d.ts.map +1 -1
  149. package/lib/command/markup/AcApMarkupRectCmd.js +8 -9
  150. package/lib/command/markup/AcApMarkupRectCmd.js.map +1 -1
  151. package/lib/command/markup/AcApMarkupSession.d.ts +54 -0
  152. package/lib/command/markup/AcApMarkupSession.d.ts.map +1 -0
  153. package/lib/command/markup/AcApMarkupSession.js +85 -0
  154. package/lib/command/markup/AcApMarkupSession.js.map +1 -0
  155. package/lib/command/markup/AcApMarkupSessionBootstrap.d.ts +2 -0
  156. package/lib/command/markup/AcApMarkupSessionBootstrap.d.ts.map +1 -0
  157. package/lib/command/markup/AcApMarkupSessionBootstrap.js +12 -0
  158. package/lib/command/markup/AcApMarkupSessionBootstrap.js.map +1 -0
  159. package/lib/command/markup/AcApMarkupShapeBuilder.d.ts +7 -4
  160. package/lib/command/markup/AcApMarkupShapeBuilder.d.ts.map +1 -1
  161. package/lib/command/markup/AcApMarkupShapeBuilder.js +24 -11
  162. package/lib/command/markup/AcApMarkupShapeBuilder.js.map +1 -1
  163. package/lib/command/markup/AcApMarkupShapeCallout.d.ts +21 -1
  164. package/lib/command/markup/AcApMarkupShapeCallout.d.ts.map +1 -1
  165. package/lib/command/markup/AcApMarkupShapeCallout.js +41 -25
  166. package/lib/command/markup/AcApMarkupShapeCallout.js.map +1 -1
  167. package/lib/command/markup/AcApMarkupSidecar.d.ts.map +1 -1
  168. package/lib/command/markup/AcApMarkupSidecar.js +39 -5
  169. package/lib/command/markup/AcApMarkupSidecar.js.map +1 -1
  170. package/lib/command/markup/AcApMarkupStampCmd.d.ts +2 -3
  171. package/lib/command/markup/AcApMarkupStampCmd.d.ts.map +1 -1
  172. package/lib/command/markup/AcApMarkupStampCmd.js +6 -7
  173. package/lib/command/markup/AcApMarkupStampCmd.js.map +1 -1
  174. package/lib/command/markup/AcApMarkupStore.d.ts +1 -1
  175. package/lib/command/markup/AcApMarkupStore.d.ts.map +1 -1
  176. package/lib/command/markup/AcApMarkupStore.js +3 -6
  177. package/lib/command/markup/AcApMarkupStore.js.map +1 -1
  178. package/lib/command/markup/AcApMarkupTextCmd.d.ts +2 -3
  179. package/lib/command/markup/AcApMarkupTextCmd.d.ts.map +1 -1
  180. package/lib/command/markup/AcApMarkupTextCmd.js +13 -9
  181. package/lib/command/markup/AcApMarkupTextCmd.js.map +1 -1
  182. package/lib/command/markup/AcApMarkupTypes.d.ts +18 -2
  183. package/lib/command/markup/AcApMarkupTypes.d.ts.map +1 -1
  184. package/lib/command/markup/AcApMarkupUtil.d.ts +36 -7
  185. package/lib/command/markup/AcApMarkupUtil.d.ts.map +1 -1
  186. package/lib/command/markup/AcApMarkupUtil.js +149 -34
  187. package/lib/command/markup/AcApMarkupUtil.js.map +1 -1
  188. package/lib/command/markup/AcApRegisterMarkupCommands.d.ts +8 -0
  189. package/lib/command/markup/AcApRegisterMarkupCommands.d.ts.map +1 -0
  190. package/lib/command/markup/AcApRegisterMarkupCommands.js +35 -0
  191. package/lib/command/markup/AcApRegisterMarkupCommands.js.map +1 -0
  192. package/lib/command/markup/entity/AcApMarkupCalloutEntity.d.ts.map +1 -1
  193. package/lib/command/markup/entity/AcApMarkupCalloutEntity.js +16 -15
  194. package/lib/command/markup/entity/AcApMarkupCalloutEntity.js.map +1 -1
  195. package/lib/command/markup/entity/AcApMarkupEntity.d.ts +5 -1
  196. package/lib/command/markup/entity/AcApMarkupEntity.d.ts.map +1 -1
  197. package/lib/command/markup/entity/AcApMarkupEntity.js +19 -5
  198. package/lib/command/markup/entity/AcApMarkupEntity.js.map +1 -1
  199. package/lib/command/markup/entity/AcApMarkupEntityGrips.d.ts +8 -3
  200. package/lib/command/markup/entity/AcApMarkupEntityGrips.d.ts.map +1 -1
  201. package/lib/command/markup/entity/AcApMarkupEntityGrips.js +15 -7
  202. package/lib/command/markup/entity/AcApMarkupEntityGrips.js.map +1 -1
  203. package/lib/command/markup/entity/AcApMarkupHighlightEntity.d.ts.map +1 -1
  204. package/lib/command/markup/entity/AcApMarkupHighlightEntity.js +14 -12
  205. package/lib/command/markup/entity/AcApMarkupHighlightEntity.js.map +1 -1
  206. package/lib/command/markup/entity/AcApMarkupSegmentEntity.d.ts.map +1 -1
  207. package/lib/command/markup/entity/AcApMarkupSegmentEntity.js +8 -6
  208. package/lib/command/markup/entity/AcApMarkupSegmentEntity.js.map +1 -1
  209. package/lib/command/markup/entity/AcApMarkupShapeEntity.d.ts.map +1 -1
  210. package/lib/command/markup/entity/AcApMarkupShapeEntity.js +23 -21
  211. package/lib/command/markup/entity/AcApMarkupShapeEntity.js.map +1 -1
  212. package/lib/command/markup/entity/AcApMarkupStampEntity.d.ts.map +1 -1
  213. package/lib/command/markup/entity/AcApMarkupStampEntity.js +1 -0
  214. package/lib/command/markup/entity/AcApMarkupStampEntity.js.map +1 -1
  215. package/lib/command/markup/entity/AcApMarkupTextEntity.d.ts.map +1 -1
  216. package/lib/command/markup/entity/AcApMarkupTextEntity.js +1 -0
  217. package/lib/command/markup/entity/AcApMarkupTextEntity.js.map +1 -1
  218. package/lib/command/markup/index.d.ts +4 -0
  219. package/lib/command/markup/index.d.ts.map +1 -1
  220. package/lib/command/markup/index.js +5 -0
  221. package/lib/command/markup/index.js.map +1 -1
  222. package/lib/command/measure/AcApMeasureAngleArc.d.ts +27 -0
  223. package/lib/command/measure/AcApMeasureAngleArc.d.ts.map +1 -0
  224. package/lib/command/measure/AcApMeasureAngleArc.js +22 -0
  225. package/lib/command/measure/AcApMeasureAngleArc.js.map +1 -0
  226. package/lib/command/measure/AcApMeasureAngleCmd.d.ts +2 -3
  227. package/lib/command/measure/AcApMeasureAngleCmd.d.ts.map +1 -1
  228. package/lib/command/measure/AcApMeasureAngleCmd.js +46 -45
  229. package/lib/command/measure/AcApMeasureAngleCmd.js.map +1 -1
  230. package/lib/command/measure/AcApMeasureArcCmd.d.ts +2 -3
  231. package/lib/command/measure/AcApMeasureArcCmd.d.ts.map +1 -1
  232. package/lib/command/measure/AcApMeasureArcCmd.js +71 -67
  233. package/lib/command/measure/AcApMeasureArcCmd.js.map +1 -1
  234. package/lib/command/measure/AcApMeasureAreaCmd.d.ts +2 -3
  235. package/lib/command/measure/AcApMeasureAreaCmd.d.ts.map +1 -1
  236. package/lib/command/measure/AcApMeasureAreaCmd.js +102 -99
  237. package/lib/command/measure/AcApMeasureAreaCmd.js.map +1 -1
  238. package/lib/command/measure/AcApMeasureContinuousCmd.d.ts +44 -0
  239. package/lib/command/measure/AcApMeasureContinuousCmd.d.ts.map +1 -0
  240. package/lib/command/measure/AcApMeasureContinuousCmd.js +317 -0
  241. package/lib/command/measure/AcApMeasureContinuousCmd.js.map +1 -0
  242. package/lib/command/measure/AcApMeasureDistanceCmd.d.ts +3 -3
  243. package/lib/command/measure/AcApMeasureDistanceCmd.d.ts.map +1 -1
  244. package/lib/command/measure/AcApMeasureDistanceCmd.js +41 -37
  245. package/lib/command/measure/AcApMeasureDistanceCmd.js.map +1 -1
  246. package/lib/command/measure/AcApMeasureDrawCmd.d.ts +32 -0
  247. package/lib/command/measure/AcApMeasureDrawCmd.d.ts.map +1 -0
  248. package/lib/command/measure/AcApMeasureDrawCmd.js +56 -0
  249. package/lib/command/measure/AcApMeasureDrawCmd.js.map +1 -0
  250. package/lib/command/measure/AcApMeasurePointCmd.d.ts +2 -3
  251. package/lib/command/measure/AcApMeasurePointCmd.d.ts.map +1 -1
  252. package/lib/command/measure/AcApMeasurePointCmd.js +20 -23
  253. package/lib/command/measure/AcApMeasurePointCmd.js.map +1 -1
  254. package/lib/command/measure/AcApMeasurementGeometry.d.ts +19 -0
  255. package/lib/command/measure/AcApMeasurementGeometry.d.ts.map +1 -1
  256. package/lib/command/measure/AcApMeasurementGeometry.js +53 -3
  257. package/lib/command/measure/AcApMeasurementGeometry.js.map +1 -1
  258. package/lib/command/measure/AcApMeasurementHistory.d.ts.map +1 -1
  259. package/lib/command/measure/AcApMeasurementHistory.js +3 -1
  260. package/lib/command/measure/AcApMeasurementHistory.js.map +1 -1
  261. package/lib/command/measure/AcApMeasurementPlace.d.ts.map +1 -1
  262. package/lib/command/measure/AcApMeasurementPlace.js +22 -5
  263. package/lib/command/measure/AcApMeasurementPlace.js.map +1 -1
  264. package/lib/command/measure/AcApMeasurementRepublish.d.ts +35 -0
  265. package/lib/command/measure/AcApMeasurementRepublish.d.ts.map +1 -0
  266. package/lib/command/measure/AcApMeasurementRepublish.js +31 -0
  267. package/lib/command/measure/AcApMeasurementRepublish.js.map +1 -0
  268. package/lib/command/measure/AcApMeasurementSidecar.d.ts +2 -1
  269. package/lib/command/measure/AcApMeasurementSidecar.d.ts.map +1 -1
  270. package/lib/command/measure/AcApMeasurementSidecar.js +55 -10
  271. package/lib/command/measure/AcApMeasurementSidecar.js.map +1 -1
  272. package/lib/command/measure/AcApMeasurementStore.d.ts +45 -2
  273. package/lib/command/measure/AcApMeasurementStore.d.ts.map +1 -1
  274. package/lib/command/measure/AcApMeasurementStore.js +277 -33
  275. package/lib/command/measure/AcApMeasurementStore.js.map +1 -1
  276. package/lib/command/measure/AcApMeasurementTypes.d.ts +17 -1
  277. package/lib/command/measure/AcApMeasurementTypes.d.ts.map +1 -1
  278. package/lib/command/measure/AcApRegisterMeasureCommands.d.ts +8 -0
  279. package/lib/command/measure/AcApRegisterMeasureCommands.d.ts.map +1 -0
  280. package/lib/command/measure/AcApRegisterMeasureCommands.js +29 -0
  281. package/lib/command/measure/AcApRegisterMeasureCommands.js.map +1 -0
  282. package/lib/command/measure/entity/AcApMeasureAngleEntity.d.ts +3 -5
  283. package/lib/command/measure/entity/AcApMeasureAngleEntity.d.ts.map +1 -1
  284. package/lib/command/measure/entity/AcApMeasureAngleEntity.js +165 -56
  285. package/lib/command/measure/entity/AcApMeasureAngleEntity.js.map +1 -1
  286. package/lib/command/measure/entity/AcApMeasureArcEntity.d.ts +5 -8
  287. package/lib/command/measure/entity/AcApMeasureArcEntity.d.ts.map +1 -1
  288. package/lib/command/measure/entity/AcApMeasureArcEntity.js +251 -53
  289. package/lib/command/measure/entity/AcApMeasureArcEntity.js.map +1 -1
  290. package/lib/command/measure/entity/AcApMeasureAreaEntity.d.ts +4 -3
  291. package/lib/command/measure/entity/AcApMeasureAreaEntity.d.ts.map +1 -1
  292. package/lib/command/measure/entity/AcApMeasureAreaEntity.js +154 -28
  293. package/lib/command/measure/entity/AcApMeasureAreaEntity.js.map +1 -1
  294. package/lib/command/measure/entity/AcApMeasureDistanceEntity.d.ts +5 -3
  295. package/lib/command/measure/entity/AcApMeasureDistanceEntity.d.ts.map +1 -1
  296. package/lib/command/measure/entity/AcApMeasureDistanceEntity.js +180 -28
  297. package/lib/command/measure/entity/AcApMeasureDistanceEntity.js.map +1 -1
  298. package/lib/command/measure/entity/AcApMeasureDrawUtil.d.ts +20 -8
  299. package/lib/command/measure/entity/AcApMeasureDrawUtil.d.ts.map +1 -1
  300. package/lib/command/measure/entity/AcApMeasureDrawUtil.js +45 -19
  301. package/lib/command/measure/entity/AcApMeasureDrawUtil.js.map +1 -1
  302. package/lib/command/measure/entity/AcApMeasureEntity.d.ts +41 -6
  303. package/lib/command/measure/entity/AcApMeasureEntity.d.ts.map +1 -1
  304. package/lib/command/measure/entity/AcApMeasureEntity.js +48 -2
  305. package/lib/command/measure/entity/AcApMeasureEntity.js.map +1 -1
  306. package/lib/command/measure/entity/AcApMeasureEntityFactory.d.ts +2 -2
  307. package/lib/command/measure/entity/AcApMeasureEntityFactory.d.ts.map +1 -1
  308. package/lib/command/measure/entity/AcApMeasureEntityFactory.js +10 -3
  309. package/lib/command/measure/entity/AcApMeasureEntityFactory.js.map +1 -1
  310. package/lib/command/measure/entity/AcApMeasureEntityGrips.d.ts +33 -0
  311. package/lib/command/measure/entity/AcApMeasureEntityGrips.d.ts.map +1 -0
  312. package/lib/command/measure/entity/AcApMeasureEntityGrips.js +49 -0
  313. package/lib/command/measure/entity/AcApMeasureEntityGrips.js.map +1 -0
  314. package/lib/command/measure/entity/AcApMeasurePointEntity.d.ts +3 -2
  315. package/lib/command/measure/entity/AcApMeasurePointEntity.d.ts.map +1 -1
  316. package/lib/command/measure/entity/AcApMeasurePointEntity.js +130 -16
  317. package/lib/command/measure/entity/AcApMeasurePointEntity.js.map +1 -1
  318. package/lib/command/measure/entity/index.d.ts +1 -0
  319. package/lib/command/measure/entity/index.d.ts.map +1 -1
  320. package/lib/command/measure/entity/index.js +1 -0
  321. package/lib/command/measure/entity/index.js.map +1 -1
  322. package/lib/command/measure/index.d.ts +4 -0
  323. package/lib/command/measure/index.d.ts.map +1 -1
  324. package/lib/command/measure/index.js +4 -0
  325. package/lib/command/measure/index.js.map +1 -1
  326. package/lib/command/overlay/AcApHtmlLivePreview.d.ts +16 -4
  327. package/lib/command/overlay/AcApHtmlLivePreview.d.ts.map +1 -1
  328. package/lib/command/overlay/AcApHtmlLivePreview.js +42 -12
  329. package/lib/command/overlay/AcApHtmlLivePreview.js.map +1 -1
  330. package/lib/command/overlay/AcApOverlayDrawUtil.d.ts +113 -3
  331. package/lib/command/overlay/AcApOverlayDrawUtil.d.ts.map +1 -1
  332. package/lib/command/overlay/AcApOverlayDrawUtil.js +341 -7
  333. package/lib/command/overlay/AcApOverlayDrawUtil.js.map +1 -1
  334. package/lib/command/overlay/AcApOverlayGripHost.d.ts +19 -0
  335. package/lib/command/overlay/AcApOverlayGripHost.d.ts.map +1 -1
  336. package/lib/command/overlay/AcApOverlayGripHost.js +124 -6
  337. package/lib/command/overlay/AcApOverlayGripHost.js.map +1 -1
  338. package/lib/editor/command/AcEdCommand.d.ts +17 -0
  339. package/lib/editor/command/AcEdCommand.d.ts.map +1 -1
  340. package/lib/editor/command/AcEdCommand.js +81 -1
  341. package/lib/editor/command/AcEdCommand.js.map +1 -1
  342. package/lib/editor/command/AcEdCommandStack.d.ts +14 -3
  343. package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
  344. package/lib/editor/command/AcEdCommandStack.js +39 -3
  345. package/lib/editor/command/AcEdCommandStack.js.map +1 -1
  346. package/lib/editor/command/AcEdSessionAccessory.d.ts +82 -0
  347. package/lib/editor/command/AcEdSessionAccessory.d.ts.map +1 -0
  348. package/lib/editor/command/AcEdSessionAccessory.js +15 -0
  349. package/lib/editor/command/AcEdSessionAccessory.js.map +1 -0
  350. package/lib/editor/command/AcEdSessionProviderRegistry.d.ts +42 -0
  351. package/lib/editor/command/AcEdSessionProviderRegistry.d.ts.map +1 -0
  352. package/lib/editor/command/AcEdSessionProviderRegistry.js +54 -0
  353. package/lib/editor/command/AcEdSessionProviderRegistry.js.map +1 -0
  354. package/lib/editor/command/index.d.ts +4 -0
  355. package/lib/editor/command/index.d.ts.map +1 -1
  356. package/lib/editor/command/index.js +3 -0
  357. package/lib/editor/command/index.js.map +1 -1
  358. package/lib/editor/global/AcEdUiColor.d.ts +10 -0
  359. package/lib/editor/global/AcEdUiColor.d.ts.map +1 -1
  360. package/lib/editor/global/AcEdUiColor.js +14 -0
  361. package/lib/editor/global/AcEdUiColor.js.map +1 -1
  362. package/lib/editor/global/AcEdUiLayout.d.ts +102 -0
  363. package/lib/editor/global/AcEdUiLayout.d.ts.map +1 -1
  364. package/lib/editor/global/AcEdUiLayout.js +137 -0
  365. package/lib/editor/global/AcEdUiLayout.js.map +1 -1
  366. package/lib/editor/global/AcEdUiTheme.d.ts +15 -3
  367. package/lib/editor/global/AcEdUiTheme.d.ts.map +1 -1
  368. package/lib/editor/global/AcEdUiTheme.js +113 -6
  369. package/lib/editor/global/AcEdUiTheme.js.map +1 -1
  370. package/lib/editor/grip/AcEdGripAppearance.d.ts +18 -0
  371. package/lib/editor/grip/AcEdGripAppearance.d.ts.map +1 -1
  372. package/lib/editor/grip/AcEdGripAppearance.js +23 -1
  373. package/lib/editor/grip/AcEdGripAppearance.js.map +1 -1
  374. package/lib/editor/grip/AcEdGripEditSession.js +2 -2
  375. package/lib/editor/grip/AcEdGripEditSession.js.map +1 -1
  376. package/lib/editor/grip/AcEdGripHandle.d.ts +1 -2
  377. package/lib/editor/grip/AcEdGripHandle.d.ts.map +1 -1
  378. package/lib/editor/grip/AcEdGripHandle.js +4 -13
  379. package/lib/editor/grip/AcEdGripHandle.js.map +1 -1
  380. package/lib/editor/grip/AcEdGripManager.d.ts +3 -1
  381. package/lib/editor/grip/AcEdGripManager.d.ts.map +1 -1
  382. package/lib/editor/grip/AcEdGripManager.js +30 -14
  383. package/lib/editor/grip/AcEdGripManager.js.map +1 -1
  384. package/lib/editor/grip/index.d.ts +1 -0
  385. package/lib/editor/grip/index.d.ts.map +1 -1
  386. package/lib/editor/grip/index.js +1 -0
  387. package/lib/editor/grip/index.js.map +1 -1
  388. package/lib/editor/input/AcEdDynamicInput.d.ts +15 -0
  389. package/lib/editor/input/AcEdDynamicInput.d.ts.map +1 -0
  390. package/lib/editor/input/AcEdDynamicInput.js +22 -0
  391. package/lib/editor/input/AcEdDynamicInput.js.map +1 -0
  392. package/lib/editor/input/AcEdOsnapCenterMarks.d.ts +19 -1
  393. package/lib/editor/input/AcEdOsnapCenterMarks.d.ts.map +1 -1
  394. package/lib/editor/input/AcEdOsnapCenterMarks.js +53 -9
  395. package/lib/editor/input/AcEdOsnapCenterMarks.js.map +1 -1
  396. package/lib/editor/input/AcEdOsnapResolver.d.ts.map +1 -1
  397. package/lib/editor/input/AcEdOsnapResolver.js +216 -35
  398. package/lib/editor/input/AcEdOsnapResolver.js.map +1 -1
  399. package/lib/editor/input/AcEditor.d.ts +14 -1
  400. package/lib/editor/input/AcEditor.d.ts.map +1 -1
  401. package/lib/editor/input/AcEditor.js +18 -2
  402. package/lib/editor/input/AcEditor.js.map +1 -1
  403. package/lib/editor/input/index.d.ts +1 -0
  404. package/lib/editor/input/index.d.ts.map +1 -1
  405. package/lib/editor/input/index.js +1 -0
  406. package/lib/editor/input/index.js.map +1 -1
  407. package/lib/editor/input/marker/AcEdOSnapMarkerManager.d.ts +12 -0
  408. package/lib/editor/input/marker/AcEdOSnapMarkerManager.d.ts.map +1 -1
  409. package/lib/editor/input/marker/AcEdOSnapMarkerManager.js +53 -18
  410. package/lib/editor/input/marker/AcEdOSnapMarkerManager.js.map +1 -1
  411. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts +15 -0
  412. package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts.map +1 -1
  413. package/lib/editor/input/prompt/AcEdPromptPointOptions.js +24 -0
  414. package/lib/editor/input/prompt/AcEdPromptPointOptions.js.map +1 -1
  415. package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.d.ts +33 -0
  416. package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.d.ts.map +1 -0
  417. package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.js +85 -0
  418. package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.js.map +1 -0
  419. package/lib/editor/input/ui/AcEdEntityPickCancelChrome.d.ts +57 -0
  420. package/lib/editor/input/ui/AcEdEntityPickCancelChrome.d.ts.map +1 -0
  421. package/lib/editor/input/ui/AcEdEntityPickCancelChrome.js +104 -0
  422. package/lib/editor/input/ui/AcEdEntityPickCancelChrome.js.map +1 -0
  423. package/lib/editor/input/ui/AcEdFloatingInput.d.ts +144 -0
  424. package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
  425. package/lib/editor/input/ui/AcEdFloatingInput.js +412 -13
  426. package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
  427. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +2 -1
  428. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
  429. package/lib/editor/input/ui/AcEdFloatingMessage.d.ts.map +1 -1
  430. package/lib/editor/input/ui/AcEdFloatingMessage.js +2 -2
  431. package/lib/editor/input/ui/AcEdFloatingMessage.js.map +1 -1
  432. package/lib/editor/input/ui/AcEdInputManager.d.ts +100 -7
  433. package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
  434. package/lib/editor/input/ui/AcEdInputManager.js +805 -164
  435. package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
  436. package/lib/editor/input/ui/AcEdInteractionStrategy.d.ts +94 -0
  437. package/lib/editor/input/ui/AcEdInteractionStrategy.d.ts.map +1 -0
  438. package/lib/editor/input/ui/AcEdInteractionStrategy.js +60 -0
  439. package/lib/editor/input/ui/AcEdInteractionStrategy.js.map +1 -0
  440. package/lib/editor/input/ui/AcEdMobileBoxGesture.d.ts +52 -0
  441. package/lib/editor/input/ui/AcEdMobileBoxGesture.d.ts.map +1 -0
  442. package/lib/editor/input/ui/AcEdMobileBoxGesture.js +201 -0
  443. package/lib/editor/input/ui/AcEdMobileBoxGesture.js.map +1 -0
  444. package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts +89 -0
  445. package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts.map +1 -0
  446. package/lib/editor/input/ui/AcEdMobileCommandChrome.js +143 -0
  447. package/lib/editor/input/ui/AcEdMobileCommandChrome.js.map +1 -0
  448. package/lib/editor/input/ui/AcEdMobileSessionMetrics.d.ts +29 -0
  449. package/lib/editor/input/ui/AcEdMobileSessionMetrics.d.ts.map +1 -0
  450. package/lib/editor/input/ui/AcEdMobileSessionMetrics.js +37 -0
  451. package/lib/editor/input/ui/AcEdMobileSessionMetrics.js.map +1 -0
  452. package/lib/editor/input/ui/AcEdMobileSnapLoupe.d.ts +45 -0
  453. package/lib/editor/input/ui/AcEdMobileSnapLoupe.d.ts.map +1 -0
  454. package/lib/editor/input/ui/AcEdMobileSnapLoupe.js +63 -0
  455. package/lib/editor/input/ui/AcEdMobileSnapLoupe.js.map +1 -0
  456. package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts +113 -0
  457. package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts.map +1 -0
  458. package/lib/editor/input/ui/AcEdSessionAccessoryController.js +295 -0
  459. package/lib/editor/input/ui/AcEdSessionAccessoryController.js.map +1 -0
  460. package/lib/editor/input/ui/AcEdSimulatedMouseCursor.d.ts +28 -0
  461. package/lib/editor/input/ui/AcEdSimulatedMouseCursor.d.ts.map +1 -0
  462. package/lib/editor/input/ui/AcEdSimulatedMouseCursor.js +86 -0
  463. package/lib/editor/input/ui/AcEdSimulatedMouseCursor.js.map +1 -0
  464. package/lib/editor/input/ui/AcEdSnapLoupe.d.ts +60 -0
  465. package/lib/editor/input/ui/AcEdSnapLoupe.d.ts.map +1 -0
  466. package/lib/editor/input/ui/AcEdSnapLoupe.js +109 -0
  467. package/lib/editor/input/ui/AcEdSnapLoupe.js.map +1 -0
  468. package/lib/editor/input/ui/AcEdSnapLoupeMath.d.ts +47 -0
  469. package/lib/editor/input/ui/AcEdSnapLoupeMath.d.ts.map +1 -0
  470. package/lib/editor/input/ui/AcEdSnapLoupeMath.js +50 -0
  471. package/lib/editor/input/ui/AcEdSnapLoupeMath.js.map +1 -0
  472. package/lib/editor/input/ui/AcEdTouchPickStrategy.d.ts +97 -0
  473. package/lib/editor/input/ui/AcEdTouchPickStrategy.d.ts.map +1 -0
  474. package/lib/editor/input/ui/AcEdTouchPickStrategy.js +74 -0
  475. package/lib/editor/input/ui/AcEdTouchPickStrategy.js.map +1 -0
  476. package/lib/editor/input/ui/AcEdTouchPointSession.d.ts +198 -0
  477. package/lib/editor/input/ui/AcEdTouchPointSession.d.ts.map +1 -0
  478. package/lib/editor/input/ui/AcEdTouchPointSession.js +329 -0
  479. package/lib/editor/input/ui/AcEdTouchPointSession.js.map +1 -0
  480. package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts +18 -0
  481. package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts.map +1 -0
  482. package/lib/editor/input/ui/AcEdTouchPointTiming.js +18 -0
  483. package/lib/editor/input/ui/AcEdTouchPointTiming.js.map +1 -0
  484. package/lib/editor/input/ui/index.d.ts +13 -0
  485. package/lib/editor/input/ui/index.d.ts.map +1 -1
  486. package/lib/editor/input/ui/index.js +13 -0
  487. package/lib/editor/input/ui/index.js.map +1 -1
  488. package/lib/editor/view/AcEdBaseView.d.ts +144 -39
  489. package/lib/editor/view/AcEdBaseView.d.ts.map +1 -1
  490. package/lib/editor/view/AcEdBaseView.js +210 -41
  491. package/lib/editor/view/AcEdBaseView.js.map +1 -1
  492. package/lib/editor/view/AcEdViewMode.d.ts +34 -0
  493. package/lib/editor/view/AcEdViewMode.d.ts.map +1 -0
  494. package/lib/editor/view/AcEdViewMode.js +35 -0
  495. package/lib/editor/view/AcEdViewMode.js.map +1 -0
  496. package/lib/editor/view/index.d.ts +1 -0
  497. package/lib/editor/view/index.d.ts.map +1 -1
  498. package/lib/editor/view/index.js +1 -0
  499. package/lib/editor/view/index.js.map +1 -1
  500. package/lib/i18n/AcApI18n.d.ts +1 -1
  501. package/lib/i18n/AcApI18n.d.ts.map +1 -1
  502. package/lib/i18n/AcApI18n.js +3 -2
  503. package/lib/i18n/AcApI18n.js.map +1 -1
  504. package/lib/i18n/ar/command.d.ts +465 -0
  505. package/lib/i18n/ar/command.d.ts.map +1 -0
  506. package/lib/i18n/ar/command.js +14 -0
  507. package/lib/i18n/ar/command.js.map +1 -0
  508. package/lib/i18n/ar/jig.d.ts +1251 -0
  509. package/lib/i18n/ar/jig.d.ts.map +1 -0
  510. package/lib/i18n/ar/jig.js +606 -0
  511. package/lib/i18n/ar/jig.js.map +1 -0
  512. package/lib/i18n/ar/main.d.ts +133 -0
  513. package/lib/i18n/ar/main.d.ts.map +1 -0
  514. package/lib/i18n/ar/main.js +132 -0
  515. package/lib/i18n/ar/main.js.map +1 -0
  516. package/lib/i18n/cs/command.d.ts +9 -0
  517. package/lib/i18n/cs/command.d.ts.map +1 -1
  518. package/lib/i18n/cs/command.js +9 -0
  519. package/lib/i18n/cs/command.js.map +1 -1
  520. package/lib/i18n/cs/jig.d.ts +20 -0
  521. package/lib/i18n/cs/jig.d.ts.map +1 -1
  522. package/lib/i18n/cs/jig.js +21 -1
  523. package/lib/i18n/cs/jig.js.map +1 -1
  524. package/lib/i18n/cs/main.d.ts +70 -1
  525. package/lib/i18n/cs/main.d.ts.map +1 -1
  526. package/lib/i18n/cs/main.js +71 -2
  527. package/lib/i18n/cs/main.js.map +1 -1
  528. package/lib/i18n/en/command.d.ts +12 -0
  529. package/lib/i18n/en/command.d.ts.map +1 -1
  530. package/lib/i18n/en/command.js +12 -0
  531. package/lib/i18n/en/command.js.map +1 -1
  532. package/lib/i18n/en/jig.d.ts +20 -0
  533. package/lib/i18n/en/jig.d.ts.map +1 -1
  534. package/lib/i18n/en/jig.js +21 -1
  535. package/lib/i18n/en/jig.js.map +1 -1
  536. package/lib/i18n/en/main.d.ts +70 -1
  537. package/lib/i18n/en/main.d.ts.map +1 -1
  538. package/lib/i18n/en/main.js +71 -2
  539. package/lib/i18n/en/main.js.map +1 -1
  540. package/lib/i18n/index.d.ts.map +1 -1
  541. package/lib/i18n/index.js +8 -0
  542. package/lib/i18n/index.js.map +1 -1
  543. package/lib/i18n/tr/command.d.ts +9 -0
  544. package/lib/i18n/tr/command.d.ts.map +1 -1
  545. package/lib/i18n/tr/command.js +9 -0
  546. package/lib/i18n/tr/command.js.map +1 -1
  547. package/lib/i18n/tr/jig.d.ts +20 -0
  548. package/lib/i18n/tr/jig.d.ts.map +1 -1
  549. package/lib/i18n/tr/jig.js +21 -1
  550. package/lib/i18n/tr/jig.js.map +1 -1
  551. package/lib/i18n/tr/main.d.ts +70 -1
  552. package/lib/i18n/tr/main.d.ts.map +1 -1
  553. package/lib/i18n/tr/main.js +71 -2
  554. package/lib/i18n/tr/main.js.map +1 -1
  555. package/lib/i18n/zh/command.d.ts +12 -0
  556. package/lib/i18n/zh/command.d.ts.map +1 -1
  557. package/lib/i18n/zh/command.js +12 -0
  558. package/lib/i18n/zh/command.js.map +1 -1
  559. package/lib/i18n/zh/jig.d.ts +20 -0
  560. package/lib/i18n/zh/jig.d.ts.map +1 -1
  561. package/lib/i18n/zh/jig.js +21 -1
  562. package/lib/i18n/zh/jig.js.map +1 -1
  563. package/lib/i18n/zh/main.d.ts +70 -1
  564. package/lib/i18n/zh/main.d.ts.map +1 -1
  565. package/lib/i18n/zh/main.js +72 -3
  566. package/lib/i18n/zh/main.js.map +1 -1
  567. package/lib/plugin/AcApPluginManager.d.ts +10 -0
  568. package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
  569. package/lib/plugin/AcApPluginManager.js +18 -0
  570. package/lib/plugin/AcApPluginManager.js.map +1 -1
  571. package/lib/spatialIndex/AcTrRBushSpatialIndex.d.ts.map +1 -1
  572. package/lib/spatialIndex/AcTrRBushSpatialIndex.js +11 -4
  573. package/lib/spatialIndex/AcTrRBushSpatialIndex.js.map +1 -1
  574. package/lib/ui/AcUiAciColorDialog.d.ts +57 -0
  575. package/lib/ui/AcUiAciColorDialog.d.ts.map +1 -0
  576. package/lib/ui/AcUiAciColorDialog.js +91 -0
  577. package/lib/ui/AcUiAciColorDialog.js.map +1 -0
  578. package/lib/ui/AcUiAciPaletteUi.d.ts +118 -0
  579. package/lib/ui/AcUiAciPaletteUi.d.ts.map +1 -0
  580. package/lib/ui/AcUiAciPaletteUi.js +521 -0
  581. package/lib/ui/AcUiAciPaletteUi.js.map +1 -0
  582. package/lib/ui/AcUiDialog.d.ts +38 -2
  583. package/lib/ui/AcUiDialog.d.ts.map +1 -1
  584. package/lib/ui/AcUiDialog.js +45 -16
  585. package/lib/ui/AcUiDialog.js.map +1 -1
  586. package/lib/ui/AcUiDrawStyle.d.ts +59 -0
  587. package/lib/ui/AcUiDrawStyle.d.ts.map +1 -0
  588. package/lib/ui/AcUiDrawStyle.js +94 -0
  589. package/lib/ui/AcUiDrawStyle.js.map +1 -0
  590. package/lib/ui/AcUiDrawStyleSessionAccessory.d.ts +108 -0
  591. package/lib/ui/AcUiDrawStyleSessionAccessory.d.ts.map +1 -0
  592. package/lib/ui/AcUiDrawStyleSessionAccessory.js +455 -0
  593. package/lib/ui/AcUiDrawStyleSessionAccessory.js.map +1 -0
  594. package/lib/ui/AcUiFullscreenPanel.d.ts +89 -0
  595. package/lib/ui/AcUiFullscreenPanel.d.ts.map +1 -0
  596. package/lib/ui/AcUiFullscreenPanel.js +224 -0
  597. package/lib/ui/AcUiFullscreenPanel.js.map +1 -0
  598. package/lib/ui/AcUiHelpPanel.d.ts +49 -0
  599. package/lib/ui/AcUiHelpPanel.d.ts.map +1 -0
  600. package/lib/ui/AcUiHelpPanel.js +124 -0
  601. package/lib/ui/AcUiHelpPanel.js.map +1 -0
  602. package/lib/ui/AcUiMobileSessionPanel.d.ts +174 -0
  603. package/lib/ui/AcUiMobileSessionPanel.d.ts.map +1 -0
  604. package/lib/ui/AcUiMobileSessionPanel.js +557 -0
  605. package/lib/ui/AcUiMobileSessionPanel.js.map +1 -0
  606. package/lib/ui/AcUiShortCutToolbar.d.ts +136 -0
  607. package/lib/ui/AcUiShortCutToolbar.d.ts.map +1 -0
  608. package/lib/ui/AcUiShortCutToolbar.js +250 -0
  609. package/lib/ui/AcUiShortCutToolbar.js.map +1 -0
  610. package/lib/ui/AcUiSimpleToolbar.d.ts +110 -0
  611. package/lib/ui/AcUiSimpleToolbar.d.ts.map +1 -0
  612. package/lib/ui/AcUiSimpleToolbar.js +431 -0
  613. package/lib/ui/AcUiSimpleToolbar.js.map +1 -0
  614. package/lib/ui/AcUiTextHeightDialog.d.ts +85 -0
  615. package/lib/ui/AcUiTextHeightDialog.d.ts.map +1 -0
  616. package/lib/ui/AcUiTextHeightDialog.js +205 -0
  617. package/lib/ui/AcUiTextHeightDialog.js.map +1 -0
  618. package/lib/ui/AcUiTextHeightDialogHelpers.d.ts +54 -0
  619. package/lib/ui/AcUiTextHeightDialogHelpers.d.ts.map +1 -0
  620. package/lib/ui/AcUiTextHeightDialogHelpers.js +128 -0
  621. package/lib/ui/AcUiTextHeightDialogHelpers.js.map +1 -0
  622. package/lib/ui/AcUiTouchPointTutorialDialog.d.ts +18 -0
  623. package/lib/ui/AcUiTouchPointTutorialDialog.d.ts.map +1 -0
  624. package/lib/ui/AcUiTouchPointTutorialDialog.js +58 -0
  625. package/lib/ui/AcUiTouchPointTutorialDialog.js.map +1 -0
  626. package/lib/ui/icons.d.ts +175 -0
  627. package/lib/ui/icons.d.ts.map +1 -0
  628. package/lib/ui/icons.js +227 -0
  629. package/lib/ui/icons.js.map +1 -0
  630. package/lib/ui/index.d.ts +14 -2
  631. package/lib/ui/index.d.ts.map +1 -1
  632. package/lib/ui/index.js +14 -2
  633. package/lib/ui/index.js.map +1 -1
  634. package/lib/ui/touch-point-tutorial.d.ts +64 -0
  635. package/lib/ui/touch-point-tutorial.d.ts.map +1 -0
  636. package/lib/ui/touch-point-tutorial.js +271 -0
  637. package/lib/ui/touch-point-tutorial.js.map +1 -0
  638. package/lib/ui-html-entry.d.ts +31 -0
  639. package/lib/ui-html-entry.d.ts.map +1 -0
  640. package/lib/ui-html-entry.js +23 -0
  641. package/lib/ui-html-entry.js.map +1 -0
  642. package/lib/util/AcApAciPalette.d.ts +7 -0
  643. package/lib/util/AcApAciPalette.d.ts.map +1 -0
  644. package/lib/util/AcApAciPalette.js +51 -0
  645. package/lib/util/AcApAciPalette.js.map +1 -0
  646. package/lib/util/AcApCommandUtil.d.ts +15 -0
  647. package/lib/util/AcApCommandUtil.d.ts.map +1 -0
  648. package/lib/util/AcApCommandUtil.js +38 -0
  649. package/lib/util/AcApCommandUtil.js.map +1 -0
  650. package/lib/util/AcApCssColor.d.ts +10 -0
  651. package/lib/util/AcApCssColor.d.ts.map +1 -1
  652. package/lib/util/AcApCssColor.js +52 -0
  653. package/lib/util/AcApCssColor.js.map +1 -1
  654. package/lib/util/AcApMeasurementUnits.d.ts +13 -1
  655. package/lib/util/AcApMeasurementUnits.d.ts.map +1 -1
  656. package/lib/util/AcApMeasurementUnits.js +144 -10
  657. package/lib/util/AcApMeasurementUnits.js.map +1 -1
  658. package/lib/util/AcApMeasurementUtil.d.ts +30 -9
  659. package/lib/util/AcApMeasurementUtil.d.ts.map +1 -1
  660. package/lib/util/AcApMeasurementUtil.js +70 -40
  661. package/lib/util/AcApMeasurementUtil.js.map +1 -1
  662. package/lib/util/AcApOpenFileErrorMessage.d.ts +25 -0
  663. package/lib/util/AcApOpenFileErrorMessage.d.ts.map +1 -0
  664. package/lib/util/AcApOpenFileErrorMessage.js +121 -0
  665. package/lib/util/AcApOpenFileErrorMessage.js.map +1 -0
  666. package/lib/util/index.d.ts +3 -0
  667. package/lib/util/index.d.ts.map +1 -1
  668. package/lib/util/index.js +3 -0
  669. package/lib/util/index.js.map +1 -1
  670. package/lib/view/AcApCompareDisplay.d.ts +37 -0
  671. package/lib/view/AcApCompareDisplay.d.ts.map +1 -0
  672. package/lib/view/AcApCompareDisplay.js +8 -0
  673. package/lib/view/AcApCompareDisplay.js.map +1 -0
  674. package/lib/view/AcApReadingMode.d.ts +52 -0
  675. package/lib/view/AcApReadingMode.d.ts.map +1 -0
  676. package/lib/view/AcApReadingMode.js +81 -0
  677. package/lib/view/AcApReadingMode.js.map +1 -0
  678. package/lib/view/AcEdReviewOverlayPick.d.ts +9 -0
  679. package/lib/view/AcEdReviewOverlayPick.d.ts.map +1 -1
  680. package/lib/view/AcEdReviewOverlayPick.js +30 -1
  681. package/lib/view/AcEdReviewOverlayPick.js.map +1 -1
  682. package/lib/view/AcEdViewKeyHandler.d.ts.map +1 -1
  683. package/lib/view/AcEdViewKeyHandler.js +6 -1
  684. package/lib/view/AcEdViewKeyHandler.js.map +1 -1
  685. package/lib/view/AcTrInheritedLayerMaterialMapper.d.ts +6 -1
  686. package/lib/view/AcTrInheritedLayerMaterialMapper.d.ts.map +1 -1
  687. package/lib/view/AcTrInheritedLayerMaterialMapper.js +9 -1
  688. package/lib/view/AcTrInheritedLayerMaterialMapper.js.map +1 -1
  689. package/lib/view/AcTrLayer.d.ts +6 -0
  690. package/lib/view/AcTrLayer.d.ts.map +1 -1
  691. package/lib/view/AcTrLayer.js +8 -0
  692. package/lib/view/AcTrLayer.js.map +1 -1
  693. package/lib/view/AcTrLayout.d.ts +12 -0
  694. package/lib/view/AcTrLayout.d.ts.map +1 -1
  695. package/lib/view/AcTrLayout.js +35 -12
  696. package/lib/view/AcTrLayout.js.map +1 -1
  697. package/lib/view/AcTrLayoutView.d.ts +25 -1
  698. package/lib/view/AcTrLayoutView.d.ts.map +1 -1
  699. package/lib/view/AcTrLayoutView.js +62 -1
  700. package/lib/view/AcTrLayoutView.js.map +1 -1
  701. package/lib/view/AcTrScene.d.ts +7 -0
  702. package/lib/view/AcTrScene.d.ts.map +1 -1
  703. package/lib/view/AcTrScene.js +13 -0
  704. package/lib/view/AcTrScene.js.map +1 -1
  705. package/lib/view/AcTrView2d.d.ts +79 -2
  706. package/lib/view/AcTrView2d.d.ts.map +1 -1
  707. package/lib/view/AcTrView2d.js +407 -57
  708. package/lib/view/AcTrView2d.js.map +1 -1
  709. package/lib/view/AcTrViewSessionState.d.ts +32 -0
  710. package/lib/view/AcTrViewSessionState.d.ts.map +1 -0
  711. package/lib/view/AcTrViewSessionState.js +2 -0
  712. package/lib/view/AcTrViewSessionState.js.map +1 -0
  713. package/lib/view/index.d.ts +3 -0
  714. package/lib/view/index.d.ts.map +1 -1
  715. package/lib/view/index.js +3 -0
  716. package/lib/view/index.js.map +1 -1
  717. package/package.json +15 -8
  718. package/src/ui/icons.ts +387 -0
  719. package/lib/app/AcDbOpenDatabaseOptions.d.ts.map +0 -1
  720. package/lib/app/AcDbOpenDatabaseOptions.js.map +0 -1
  721. package/lib/ui/AcApDrawStyle.d.ts +0 -81
  722. package/lib/ui/AcApDrawStyle.d.ts.map +0 -1
  723. package/lib/ui/AcApDrawStyle.js +0 -170
  724. package/lib/ui/AcApDrawStyle.js.map +0 -1
  725. package/lib/ui/AcApDrawStyleToolbar.d.ts +0 -129
  726. package/lib/ui/AcApDrawStyleToolbar.d.ts.map +0 -1
  727. package/lib/ui/AcApDrawStyleToolbar.js +0 -607
  728. package/lib/ui/AcApDrawStyleToolbar.js.map +0 -1
@@ -1,13 +1,14 @@
1
1
  import { AcCmEventManager, AcDbDatabase, AcDbOpenDatabaseOptions } from '@mlightcad/data-model';
2
2
  import { AcEdCommand, AcEdCommandStack, AcEdOpenMode } from '../editor';
3
3
  import { AcApPluginManager } from '../plugin/AcApPluginManager';
4
- import { AcApDrawStyleToolbar } from '../ui/AcApDrawStyleToolbar';
5
4
  import { AcTrView2d } from '../view';
5
+ import type { AcApCompareDisplayOptions } from '../view/AcApCompareDisplay';
6
6
  import type { AcTrLayout } from '../view/AcTrLayout';
7
7
  import { AcApContext } from './AcApContext';
8
+ import { AcApDocSession } from './AcApDocSession';
8
9
  import { AcApDocument } from './AcApDocument';
10
+ import { AcApOpenDatabaseOptions } from './AcApOpenDatabaseOptions';
9
11
  import { type AcApOpenDocumentDefaultsResolver } from './AcApOpenFileDialog';
10
- import { AcApOpenDatabaseOptions } from './AcDbOpenDatabaseOptions';
11
12
  /**
12
13
  * Event arguments for document-related events.
13
14
  */
@@ -144,6 +145,19 @@ export interface AcApDocManagerOptions {
144
145
  continueOnError?: boolean;
145
146
  };
146
147
  };
148
+ /**
149
+ * Absolute root URL for localized user-guide pages (trailing slash optional).
150
+ * Used by {@link acapDocsUrl} for in-app help links (e.g. mobile magnifier).
151
+ * Defaults to {@link ACAP_DEFAULT_DOCS_BASE_URL} when omitted.
152
+ *
153
+ * @example
154
+ * ```typescript
155
+ * AcApDocManager.createInstance({
156
+ * docsBaseUrl: 'https://example.com/my-product/docs/'
157
+ * })
158
+ * ```
159
+ */
160
+ docsBaseUrl?: string;
147
161
  /**
148
162
  * Optional command alias overrides.
149
163
  *
@@ -164,6 +178,15 @@ export interface AcApDocManagerOptions {
164
178
  * Defaults to true.
165
179
  */
166
180
  builtinOpenFileDialog?: boolean;
181
+ /**
182
+ * When true, drawing export commands are not registered (`cdxf`, `pngout`,
183
+ * and host UI / lazy plugins for HTML, PDF, SVG export). Defaults to false
184
+ * (export remains enabled).
185
+ *
186
+ * Useful for deployments that must hide export entry points. This is a
187
+ * product/UX gate, not a DRM boundary: drawing data still exists in memory.
188
+ */
189
+ disableExport?: boolean;
167
190
  /**
168
191
  * Default options for files opened through the built-in OPEN command dialog.
169
192
  *
@@ -184,12 +207,27 @@ export interface AcApDocManagerOptions {
184
207
  * The manager follows a singleton pattern to ensure only one instance manages the application state.
185
208
  */
186
209
  export declare class AcApDocManager {
187
- /** The current application context binding document and view */
188
- private _context;
210
+ /** Open document sessions (MDI). The shared view shows {@link _activeSession}. */
211
+ private _sessions;
212
+ /** Session currently bound to the shared view and working database. */
213
+ private _activeSession;
214
+ /** View created at construct time (left pane in split layout). */
215
+ private _mainView;
216
+ /**
217
+ * Optional second canvas for split comparison. Each document keeps its
218
+ * scene on its own renderer — scenes are never moved between views.
219
+ */
220
+ private _splitView?;
221
+ /** Session whose canvas currently owns the open-file overlay. */
222
+ private _openingSession?;
223
+ /** Monotonic id suffix for {@link AcApDocSession.id}. */
224
+ private _nextSessionId;
189
225
  /** Font loader for managing CAD text fonts */
190
226
  private _fontLoader;
191
227
  /** Base URL to get fonts, templates, and example files */
192
228
  private _baseUrl;
229
+ /** Host element for the busy overlay (e.g. HTML export spinner). */
230
+ private _busyIndicatorHost;
193
231
  /** Busy overlay for long-running command operations */
194
232
  private _busyIndicator;
195
233
  /** Open-file progress overlay and event normalization */
@@ -200,8 +238,6 @@ export declare class AcApDocManager {
200
238
  private _commandManager;
201
239
  /** Plugin manager */
202
240
  private _pluginManager;
203
- /** Overlay for measurement / markup draw color, lineweight, and font size */
204
- private readonly _drawStyleToolbar;
205
241
  /**
206
242
  * Alias overrides provided by caller options.
207
243
  *
@@ -215,6 +251,8 @@ export declare class AcApDocManager {
215
251
  private _commandAliasOverrides;
216
252
  /** Default options for the built-in OPEN file dialog */
217
253
  private _openDocumentDefaults?;
254
+ /** Whether drawing export commands and related UI entry points are disabled */
255
+ private _disableExport;
218
256
  /** Singleton instance */
219
257
  private static _instance?;
220
258
  /** Worker URLs configured at initialization */
@@ -223,8 +261,6 @@ export declare class AcApDocManager {
223
261
  private _workersReady;
224
262
  /** In-flight worker readiness check */
225
263
  private _workersReadyCheckPromise?;
226
- /** Loaded overlay (reference/base drawing) state, keyed by overlay id */
227
- private _overlays;
228
264
  /** Monotonically increasing counter used to generate overlay ids */
229
265
  private _nextOverlayId;
230
266
  /** Events fired during document lifecycle */
@@ -235,6 +271,12 @@ export declare class AcApDocManager {
235
271
  documentCreated: AcCmEventManager<AcDbDocumentEventArgs>;
236
272
  /** Fired when a document becomes active */
237
273
  documentActivated: AcCmEventManager<AcDbDocumentEventArgs>;
274
+ /** Fired before a document is activated */
275
+ documentToBeActivated: AcCmEventManager<AcDbDocumentEventArgs>;
276
+ /** Fired before a document is closed and destroyed */
277
+ documentToBeDestroyed: AcCmEventManager<AcDbDocumentEventArgs>;
278
+ /** Fired after a document has been closed */
279
+ documentDestroyed: AcCmEventManager<AcDbDocumentEventArgs>;
238
280
  /** Fired when a worker readiness check completes */
239
281
  workersReady: AcCmEventManager<{
240
282
  ready: boolean;
@@ -272,6 +314,11 @@ export declare class AcApDocManager {
272
314
  * @returns The singleton document manager instance
273
315
  */
274
316
  static get instance(): AcApDocManager;
317
+ /**
318
+ * Returns the singleton when {@link createInstance} has finished, otherwise
319
+ * `undefined`. Safe to call while the constructor is still running.
320
+ */
321
+ static tryGetInstance(): AcApDocManager | undefined;
275
322
  /**
276
323
  * Destroy the view and unload all plugins
277
324
  */
@@ -297,21 +344,96 @@ export declare class AcApDocManager {
297
344
  * @returns The current application context
298
345
  */
299
346
  get context(): AcApContext;
347
+ /**
348
+ * Open document sessions in tab order.
349
+ */
350
+ get documents(): AcApDocument[];
351
+ /**
352
+ * Number of open documents.
353
+ */
354
+ get documentCount(): number;
355
+ /**
356
+ * Session id of the active document, for host UI tabs.
357
+ */
358
+ get activeSessionId(): string;
359
+ /**
360
+ * Returns the document at `index`, or undefined when out of range.
361
+ *
362
+ * @param index - Zero-based tab order.
363
+ */
364
+ document(index: number): AcApDocument | undefined;
365
+ /**
366
+ * Finds the session that owns `doc`.
367
+ *
368
+ * @param doc - Document to look up.
369
+ */
370
+ sessionFor(doc: AcApDocument): AcApDocSession | undefined;
300
371
  /**
301
372
  * Gets the currently open CAD document.
302
373
  *
374
+ * Same as {@link mdiActiveDocument} — the document bound to the shared view.
375
+ *
303
376
  * @returns The current document instance
304
377
  */
305
378
  get curDocument(): AcApDocument;
306
379
  /**
307
380
  * Gets the currently active document.
308
381
  *
309
- * For now, this is the same as `curDocument` since only one document
310
- * can be active at a time.
311
- *
312
382
  * @returns The current active document
313
383
  */
314
384
  get mdiActiveDocument(): AcApDocument;
385
+ /**
386
+ * Makes `doc` the command target.
387
+ *
388
+ * When both documents already have their own canvas (split view), scenes
389
+ * stay in place. When they share one canvas (tab MDI), the current scene is
390
+ * parked and the target is restored.
391
+ *
392
+ * @param doc - Document to activate.
393
+ * @returns `false` when `doc` is not an open session.
394
+ */
395
+ activateDocument(doc: AcApDocument): Promise<boolean>;
396
+ /**
397
+ * Canvas created with {@link createInstance} (left pane in a split layout).
398
+ */
399
+ get mainView(): AcTrView2d;
400
+ /**
401
+ * Second canvas created by {@link ensureSplitView}, if any.
402
+ */
403
+ get splitView(): AcTrView2d | undefined;
404
+ /**
405
+ * Creates a second WebGL view in `container` for side-by-side comparison.
406
+ *
407
+ * Each document is converted into one view and stays there. Use
408
+ * {@link openDocument}'s `view` argument to open a file into this canvas,
409
+ * and {@link activateDocument} to choose which side receives commands.
410
+ *
411
+ * @param container - Host element for the second canvas.
412
+ */
413
+ ensureSplitView(container: HTMLElement): AcTrView2d;
414
+ /**
415
+ * @deprecated Use {@link ensureSplitView} and open each file into its own view.
416
+ *
417
+ * @param container - Host element for the second canvas.
418
+ */
419
+ attachSatelliteView(container: HTMLElement, _doc?: AcApDocument): boolean;
420
+ /**
421
+ * @deprecated Split canvases keep rendering; there is nothing to detach.
422
+ */
423
+ detachSatelliteView(): void;
424
+ /**
425
+ * Document currently shown on the split canvas, if a session is bound to it.
426
+ */
427
+ get satelliteDocument(): AcApDocument | undefined;
428
+ /**
429
+ * Closes `doc`, or the active document when omitted.
430
+ *
431
+ * Closing the last document replaces it with a new untitled drawing.
432
+ *
433
+ * @param doc - Document to close; defaults to {@link curDocument}.
434
+ * @returns `false` when `doc` is not an open session.
435
+ */
436
+ closeDocument(doc?: AcApDocument): Promise<boolean>;
315
437
  /**
316
438
  * Gets the current 2D view used to display the drawing.
317
439
  *
@@ -337,14 +459,18 @@ export declare class AcApDocManager {
337
459
  */
338
460
  get pluginManager(): AcApPluginManager;
339
461
  /**
340
- * Overlay shown in the filename slot while a measurement or markup
341
- * drawing command is active.
462
+ * Color / font-size session accessory for measurement and markup drawing.
342
463
  */
343
- get drawStyleToolbar(): AcApDrawStyleToolbar;
464
+ get drawStyleSessionAccessory(): import("..").AcUiDrawStyleSessionAccessory | undefined;
344
465
  /**
345
466
  * Base URL to load fonts
346
467
  */
347
468
  get baseUrl(): string;
469
+ /**
470
+ * Whether drawing export commands (and host export UI) are disabled.
471
+ * Set via {@link AcApDocManagerOptions.disableExport}; defaults to false.
472
+ */
473
+ get disableExport(): boolean;
348
474
  /**
349
475
  * Resolves colors for creating new entities.
350
476
  *
@@ -371,10 +497,18 @@ export declare class AcApDocManager {
371
497
  * Gets the list of available fonts that can be loaded.
372
498
  *
373
499
  * Note: These fonts are available for loading but may not be loaded yet.
500
+ * Prefer {@link getAvaiableFonts} when the catalog may not have been fetched yet
501
+ * (lazy font loading no longer preloads metadata at viewer init).
374
502
  *
375
503
  * @returns Array of available font names
376
504
  */
377
505
  get avaiableFonts(): import("@mlightcad/mtext-renderer").FontInfo[];
506
+ /**
507
+ * Fetches font repository metadata (`fonts.json`) if not already cached.
508
+ * Emits `failed-to-get-avaiable-fonts` and returns `[]` when the catalog cannot
509
+ * be retrieved.
510
+ */
511
+ getAvaiableFonts(): Promise<import("@mlightcad/mtext-renderer").FontInfo[]>;
378
512
  /**
379
513
  * Loads the specified fonts for text rendering.
380
514
  *
@@ -392,7 +526,7 @@ export declare class AcApDocManager {
392
526
  *
393
527
  * This method loads either the specified fonts or the configured default font
394
528
  * fallback chains ({@link DEFAULT_FONTS_PRESET}, currently `modern`: text
395
- * `hztxt` 鈫?`simsun`, symbol `amgdt`) if no fonts are provided. The loaded
529
+ * `simsun` → `hztxt`, symbol `amgdt`) if no fonts are provided. The loaded
396
530
  * fonts are used for rendering CAD text entities like MText and Text in the viewer.
397
531
  *
398
532
  * It is better to load default fonts when viewer is initialized so that the viewer can
@@ -421,8 +555,9 @@ export declare class AcApDocManager {
421
555
  /**
422
556
  * Opens a CAD document from a URL.
423
557
  *
424
- * This method loads a document from the specified URL and replaces the current document.
425
- * It handles the complete document lifecycle including before/after open events.
558
+ * This method loads a document from the specified URL. When the current
559
+ * drawing is a reusable Untitled, it is replaced; otherwise a new document
560
+ * session is created and activated.
426
561
  *
427
562
  * @param url - The URL of the CAD file to open
428
563
  * @param options - Optional database opening options. If not provided, default options with font loader will be used
@@ -440,13 +575,14 @@ export declare class AcApDocManager {
440
575
  /**
441
576
  * Opens a CAD document from file content.
442
577
  *
443
- * This method loads a document from the provided file content (binary data)
444
- * and replaces the current document. It handles the complete document lifecycle
445
- * including before/after open events.
578
+ * This method loads a document from the provided file content (binary data).
579
+ * When the current drawing is a reusable Untitled, it is replaced; otherwise
580
+ * a new document session is created and activated.
446
581
  *
447
582
  * @param fileName - The name of the file being opened (used for format detection)
448
583
  * @param content - The file content
449
584
  * @param options - Database opening options including font loader settings
585
+ * @param view - Optional canvas to convert into (split view). Defaults to the active view.
450
586
  * @returns Promise that resolves to true if the document was successfully opened, false otherwise
451
587
  *
452
588
  * @example
@@ -455,7 +591,7 @@ export declare class AcApDocManager {
455
591
  * const success = await docManager.openDocument('drawing.dwg', fileContent, options);
456
592
  * ```
457
593
  */
458
- openDocument(fileName: string, content: ArrayBuffer, options: AcApOpenDatabaseOptions): Promise<boolean>;
594
+ openDocument(fileName: string, content: ArrayBuffer, options: AcApOpenDatabaseOptions, view?: AcTrView2d): Promise<boolean>;
459
595
  /**
460
596
  * Loads a DWG/DXF file as a read-only overlay (base drawing/reference)
461
597
  * rendered alongside the currently open document in the same WCS
@@ -482,14 +618,22 @@ export declare class AcApDocManager {
482
618
  * docManager.removeOverlay(overlayId); // or remove it entirely
483
619
  * ```
484
620
  */
485
- loadOverlay(fileName: string, content: ArrayBuffer, options?: AcDbOpenDatabaseOptions): Promise<string>;
621
+ loadOverlay(fileName: string, content: ArrayBuffer, options?: AcDbOpenDatabaseOptions & {
622
+ targetView?: AcTrView2d;
623
+ }): Promise<string>;
486
624
  /**
487
625
  * Registers an already-parsed read-only database as an overlay.
488
626
  *
489
627
  * Prefer this when the caller already loaded the secondary database (e.g.
490
628
  * XATTACH extents preview) to avoid reading the same file twice.
629
+ *
630
+ * @param db - Secondary database to draw into the target view.
631
+ * @param options.targetView - Canvas that receives the overlay (defaults to
632
+ * the active view). Used by side-by-side → overlay compare without moving scenes.
491
633
  */
492
- registerOverlayDatabase(db: AcDbDatabase): Promise<string>;
634
+ registerOverlayDatabase(db: AcDbDatabase, options?: {
635
+ targetView?: AcTrView2d;
636
+ }): Promise<string>;
493
637
  /**
494
638
  * Removes a previously loaded overlay and disposes its rendered geometry.
495
639
  *
@@ -507,12 +651,60 @@ export declare class AcApDocManager {
507
651
  setOverlayVisible(overlayId: string, visible: boolean): boolean;
508
652
  /**
509
653
  * Removes all loaded overlays and disposes their geometry.
654
+ *
655
+ * @param view - When set, only overlays on sessions bound to this canvas are cleared.
510
656
  */
511
- clearOverlays(): void;
657
+ clearOverlays(view?: AcTrView2d): void;
512
658
  /**
513
- * Ids of all currently loaded overlays.
659
+ * Ids of all currently loaded overlays on the active session (or a view).
660
+ *
661
+ * @param view - Optional canvas whose session overlays are listed.
514
662
  */
663
+ getOverlayIds(view?: AcTrView2d): string[];
664
+ /** @deprecated Prefer {@link getOverlayIds}. */
515
665
  get overlayIds(): string[];
666
+ /**
667
+ * Enables compare-display mode on a view (default: current view).
668
+ * Does not automatically color overlay layouts — use
669
+ * {@link setOverlayCompareDisplay} for those.
670
+ *
671
+ * @param options - Compare colors and per-entity role overrides.
672
+ * @param view - Target canvas; defaults to {@link curView}.
673
+ */
674
+ setCompareDisplay(options: AcApCompareDisplayOptions, view?: AcTrView2d): void;
675
+ /**
676
+ * Whether transient reading mode is active on a view (default: current view).
677
+ *
678
+ * @param view - Target canvas; defaults to {@link curView}.
679
+ */
680
+ isReadingModeEnabled(view?: AcTrView2d): boolean;
681
+ /**
682
+ * Enables or disables transient reading mode on a view (default: current view).
683
+ *
684
+ * Reading mode forces black linework on a white canvas without modifying the
685
+ * drawing database. It shares the compare-display colour path, so it is
686
+ * mutually exclusive with active compare display on that view.
687
+ *
688
+ * @param enabled - When true, enables reading mode; when false, restores the
689
+ * previous canvas background and entity colours.
690
+ * @param view - Target canvas; defaults to {@link curView}.
691
+ */
692
+ setReadingMode(enabled: boolean, view?: AcTrView2d): void;
693
+ /**
694
+ * Toggles transient reading mode on a view (default: current view).
695
+ *
696
+ * @param view - Target canvas; defaults to {@link curView}.
697
+ */
698
+ toggleReadingMode(view?: AcTrView2d): void;
699
+ /**
700
+ * Applies compare-display coloring to one overlay layout.
701
+ *
702
+ * @param overlayId - Id returned by {@link loadOverlay} / {@link registerOverlayDatabase}.
703
+ * @param options - Compare colors and per-entity role overrides.
704
+ * @param view - Canvas that owns the overlay; omitted to search all sessions.
705
+ * @returns `true` when the overlay id was found.
706
+ */
707
+ setOverlayCompareDisplay(overlayId: string, options: AcApCompareDisplayOptions, view?: AcTrView2d): boolean;
516
708
  /**
517
709
  * Returns the rendered layout for a loaded overlay, if any.
518
710
  *
@@ -523,8 +715,8 @@ export declare class AcApDocManager {
523
715
  /**
524
716
  * Creates a new CAD document from the default ISO drawing template.
525
717
  *
526
- * This method loads the predefined template (`acadiso.dxf`) from {@link baseUrl}
527
- * and replaces the current document in write mode with default open options.
718
+ * Loads `acadiso.dxf` into a new document session (or reuses the current
719
+ * unused Untitled). The new drawing is presented as unsaved.
528
720
  *
529
721
  * @param options - Optional database opening options merged with write mode
530
722
  * @returns Promise that resolves to true if the document was successfully created
@@ -597,8 +789,8 @@ export declare class AcApDocManager {
597
789
  * Registers all default commands available in the CAD viewer.
598
790
  *
599
791
  * This method sets up the command system by registering built-in commands including:
600
- * - cdxf: Convert to DXF
601
- * - pngout: Export to PNG
792
+ * - cdxf: Convert to DXF (when {@link AcApDocManagerOptions.disableExport} is false)
793
+ * - pngout: Export to PNG (when {@link AcApDocManagerOptions.disableExport} is false)
602
794
  * - log: Output debug information in console
603
795
  * - open: Open document
604
796
  * - qnew: Quick new document
@@ -707,7 +899,7 @@ export declare class AcApDocManager {
707
899
  * Sets up the active layout block table record ID and model space block table
708
900
  * record ID based on the current document's space configuration.
709
901
  */
710
- setActiveLayout(): void;
902
+ setActiveLayout(view?: AcTrView2d, database?: AcDbDatabase): void;
711
903
  /**
712
904
  * Performs cleanup operations before opening a new document.
713
905
  *
@@ -716,7 +908,7 @@ export declare class AcApDocManager {
716
908
  *
717
909
  * @protected
718
910
  */
719
- protected onBeforeOpenDocument(options?: AcApOpenDatabaseOptions): void;
911
+ protected onBeforeOpenDocument(options?: AcApOpenDatabaseOptions, replaceCurrent?: boolean): void;
720
912
  /**
721
913
  * Performs setup operations after a document opening attempt.
722
914
  *
@@ -794,6 +986,33 @@ export declare class AcApDocManager {
794
986
  * visible until the outermost matching {@link hideBusyIndicator} runs.
795
987
  */
796
988
  showBusyIndicator(message?: string): void;
989
+ /**
990
+ * Moves busy/open-file overlays onto `host`.
991
+ *
992
+ * In split view the host is overridden to the canvas being opened or focused.
993
+ *
994
+ * @param host - Default overlay parent when not in split view.
995
+ */
996
+ setBusyIndicatorHost(host: HTMLElement): void;
997
+ /**
998
+ * Pins progress overlays to the canvas being opened, or the active canvas
999
+ * when a split view exists.
1000
+ */
1001
+ private get openProgressView();
1002
+ /**
1003
+ * Pins the open-file overlay to the session that is currently reading a file.
1004
+ */
1005
+ private beginOpenProgress;
1006
+ /**
1007
+ * Releases the open-file overlay pin after the spinner hides.
1008
+ */
1009
+ private onOpenProgressHidden;
1010
+ /**
1011
+ * Pins progress overlays to the canvas being opened when a split view exists.
1012
+ *
1013
+ * @param view - Canvas whose container receives the overlay.
1014
+ */
1015
+ private syncProgressOverlayHost;
797
1016
  /**
798
1017
  * Hides the spinner overlay shown by {@link showBusyIndicator}.
799
1018
  *
@@ -833,5 +1052,48 @@ export declare class AcApDocManager {
833
1052
  * @private
834
1053
  */
835
1054
  private loadPlugins;
1055
+ /**
1056
+ * Forwards database open-progress events to the overlay and header sysvars.
1057
+ *
1058
+ * @param doc - Document whose `openProgress` events should drive the overlay.
1059
+ */
1060
+ private bindOpenProgress;
1061
+ /**
1062
+ * Parks the live view onto the active session so another document can take the canvas.
1063
+ */
1064
+ private parkActiveSession;
1065
+ /**
1066
+ * Reuses an Untitled on `targetView` when it has no file identity and no
1067
+ * entities; otherwise creates a new session on that view.
1068
+ *
1069
+ * When `targetView` is a different canvas (split comparison), the current
1070
+ * view keeps rendering — GPU scenes are never moved between renderers.
1071
+ *
1072
+ * @param targetView - Canvas that will receive the open; defaults to {@link curView}.
1073
+ * @returns True when a new session was created.
1074
+ */
1075
+ private ensureOpenSession;
1076
+ /**
1077
+ * Drops a session created for an open that failed before activation completed.
1078
+ */
1079
+ private closeFailedOpenSession;
1080
+ /**
1081
+ * Replaces the last remaining session with a fresh Untitled drawing.
1082
+ *
1083
+ * @param session - The only remaining session to recycle.
1084
+ */
1085
+ private resetActiveSessionToUntitled;
1086
+ /**
1087
+ * Removes overlay layouts belonging to a session being closed.
1088
+ *
1089
+ * @param session - Session whose overlays should be disposed.
1090
+ */
1091
+ private clearSessionOverlays;
1092
+ /**
1093
+ * Scene that currently owns `session`'s overlay layouts.
1094
+ * Parked sessions keep overlays on {@link AcApDocSession.viewState}; live
1095
+ * split-view sessions keep them on their own canvas, not {@link curView}.
1096
+ */
1097
+ private sessionCadScene;
836
1098
  }
837
1099
  //# sourceMappingURL=AcApDocManager.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AcApDocManager.d.ts","sourceRoot":"","sources":["../../src/app/AcApDocManager.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AcApDocManager.d.ts","sourceRoot":"","sources":["../../src/app/AcApDocManager.ts"],"names":[],"mappings":"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"}