@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
@@ -0,0 +1,557 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __values = (this && this.__values) || function(o) {
13
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
14
+ if (m) return m.call(o);
15
+ if (o && typeof o.length === "number") return {
16
+ next: function () {
17
+ if (o && i >= o.length) o = void 0;
18
+ return { value: o && o[i++], done: !o };
19
+ }
20
+ };
21
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
22
+ };
23
+ import { ML_UI_MOBILE_MAX_WIDTH, ML_UI_SESSION_PANEL_MAX_WIDTH, ML_UI_SESSION_PANEL_WIDTH } from '../editor/global/AcEdUiLayout';
24
+ import { AcUiHelpPanel } from './AcUiHelpPanel';
25
+ /** DOM id of the injected stylesheet. */
26
+ var STYLE_ID = 'ml-mobile-cmd-styles';
27
+ /** Zeroed metric texts used when no frozen readout is available. */
28
+ var ZERO_TEXTS = {
29
+ length: '0',
30
+ angle: '0',
31
+ dx: '0',
32
+ dy: '0',
33
+ x: '0',
34
+ y: '0'
35
+ };
36
+ /**
37
+ * Shared phone/pad session chrome: bottom panel with title bar (accessory +
38
+ * help + collapse), in-panel prompt, live metrics, keyword chips, and ✓/×.
39
+ *
40
+ * Compact (collapsed) mode keeps a single-line prompt and confirm/cancel while
41
+ * hiding metrics to reclaim canvas height and cover the bottom toolbar.
42
+ */
43
+ var AcUiMobileSessionPanel = /** @class */ (function () {
44
+ function AcUiMobileSessionPanel(options) {
45
+ var _this = this;
46
+ var _a;
47
+ this.helpPanel = null;
48
+ this.callbacks = null;
49
+ this.open = false;
50
+ this.collapsed = false;
51
+ this.showMetrics = false;
52
+ this.hasBasePoint = false;
53
+ this.frozenTexts = null;
54
+ this.frozenHasBasePoint = false;
55
+ this.host = options.host;
56
+ this.activeClass = (_a = options.activeClass) !== null && _a !== void 0 ? _a : 'ml-mobile-cmd-active';
57
+ this.isPhoneLayout = options.isPhoneLayout;
58
+ this.subscribeLayout = options.subscribeLayout;
59
+ this.helpDocsUrl = options.helpDocsUrl;
60
+ this.helpHostOpt = options.helpHost;
61
+ this.labelsFn = options.labels;
62
+ AcUiMobileSessionPanel.injectCss();
63
+ this.root = document.createElement('div');
64
+ this.root.className = 'ml-mobile-cmd';
65
+ this.root.hidden = true;
66
+ this.root.setAttribute('aria-hidden', 'true');
67
+ this.panel = document.createElement('div');
68
+ this.panel.className = 'ml-mobile-cmd-panel';
69
+ this.metricButtons = {
70
+ length: this.makeMetricButton('length'),
71
+ angle: this.makeMetricButton('angle'),
72
+ dx: this.makeMetricButton('dx'),
73
+ dy: this.makeMetricButton('dy'),
74
+ x: this.makeMetricButton('x'),
75
+ y: this.makeMetricButton('y')
76
+ };
77
+ this.absStack = document.createElement('div');
78
+ this.absStack.className = 'ml-mobile-cmd-metric-stack';
79
+ this.absStack.append(this.metricButtons.x, this.metricButtons.y);
80
+ this.polarStack = document.createElement('div');
81
+ this.polarStack.className = 'ml-mobile-cmd-metric-stack';
82
+ this.polarStack.append(this.metricButtons.length, this.metricButtons.angle);
83
+ this.deltaStack = document.createElement('div');
84
+ this.deltaStack.className = 'ml-mobile-cmd-metric-stack';
85
+ this.deltaStack.append(this.metricButtons.dx, this.metricButtons.dy);
86
+ this.accessoryEl = document.createElement('div');
87
+ this.accessoryEl.className = 'ml-mobile-cmd-accessory';
88
+ this.accessoryEl.hidden = true;
89
+ this.sinkPointer(this.accessoryEl);
90
+ this.accessoryEl.addEventListener('click', function (e) {
91
+ if (!_this.collapsed)
92
+ return;
93
+ var target = e.target;
94
+ if (target === null || target === void 0 ? void 0 : target.closest('button'))
95
+ return;
96
+ _this.setCollapsed(false);
97
+ });
98
+ this.accessoryContentEl = document.createElement('div');
99
+ this.accessoryContentEl.className = 'ml-mobile-cmd-accessory-content';
100
+ this.helpBtn = document.createElement('button');
101
+ this.helpBtn.type = 'button';
102
+ this.helpBtn.className = 'ml-mobile-cmd-help';
103
+ this.helpBtn.innerHTML = helpIcon();
104
+ this.helpBtn.addEventListener('click', function (e) {
105
+ e.preventDefault();
106
+ e.stopPropagation();
107
+ _this.openHelpPanel();
108
+ });
109
+ this.sinkPointer(this.helpBtn);
110
+ this.collapseBtn = document.createElement('button');
111
+ this.collapseBtn.type = 'button';
112
+ this.collapseBtn.className = 'ml-mobile-cmd-collapse';
113
+ this.collapseBtn.innerHTML = collapseIcon();
114
+ this.collapseBtn.addEventListener('click', function (e) {
115
+ e.preventDefault();
116
+ e.stopPropagation();
117
+ _this.setCollapsed(!_this.collapsed);
118
+ });
119
+ this.sinkPointer(this.collapseBtn);
120
+ this.titleActions = document.createElement('div');
121
+ this.titleActions.className = 'ml-mobile-cmd-title-actions';
122
+ this.titleActions.append(this.helpBtn, this.collapseBtn);
123
+ this.accessoryEl.append(this.accessoryContentEl, this.titleActions);
124
+ this.promptEl = document.createElement('div');
125
+ this.promptEl.className = 'ml-mobile-cmd-prompt';
126
+ this.promptEl.setAttribute('role', 'status');
127
+ this.compactActions = document.createElement('div');
128
+ this.compactActions.className = 'ml-mobile-cmd-actions-compact';
129
+ this.promptRow = document.createElement('div');
130
+ this.promptRow.className = 'ml-mobile-cmd-prompt-row';
131
+ this.chipsEl = document.createElement('div');
132
+ this.chipsEl.className = 'ml-mobile-cmd-chips';
133
+ this.promptRow.append(this.promptEl, this.chipsEl);
134
+ this.accessoryObserver = new MutationObserver(function () {
135
+ if (_this.open)
136
+ _this.applyMetricVisibility();
137
+ });
138
+ this.accessoryObserver.observe(this.accessoryContentEl, {
139
+ childList: true
140
+ });
141
+ this.cancelBtn = document.createElement('button');
142
+ this.cancelBtn.type = 'button';
143
+ this.cancelBtn.className = 'ml-mobile-cmd-cancel';
144
+ this.cancelBtn.innerHTML = cancelIcon();
145
+ this.cancelBtn.addEventListener('click', function (e) {
146
+ var _a;
147
+ e.preventDefault();
148
+ e.stopPropagation();
149
+ (_a = _this.callbacks) === null || _a === void 0 ? void 0 : _a.onCancel();
150
+ });
151
+ this.sinkPointer(this.cancelBtn);
152
+ this.confirmBtn = document.createElement('button');
153
+ this.confirmBtn.type = 'button';
154
+ this.confirmBtn.className = 'ml-mobile-cmd-confirm';
155
+ this.confirmBtn.innerHTML = confirmIcon();
156
+ this.confirmBtn.addEventListener('click', function (e) {
157
+ var _a;
158
+ e.preventDefault();
159
+ e.stopPropagation();
160
+ if (_this.confirmBtn.disabled)
161
+ return;
162
+ (_a = _this.callbacks) === null || _a === void 0 ? void 0 : _a.onConfirm();
163
+ });
164
+ this.sinkPointer(this.confirmBtn);
165
+ this.absActions = document.createElement('div');
166
+ this.absActions.className = 'ml-mobile-cmd-actions';
167
+ this.polarActions = document.createElement('div');
168
+ this.polarActions.className = 'ml-mobile-cmd-actions';
169
+ this.deltaActions = document.createElement('div');
170
+ this.deltaActions.className = 'ml-mobile-cmd-actions';
171
+ this.sharedActions = document.createElement('div');
172
+ this.sharedActions.className =
173
+ 'ml-mobile-cmd-actions ml-mobile-cmd-actions-shared';
174
+ this.absGroup = document.createElement('div');
175
+ this.absGroup.className = 'ml-mobile-cmd-group ml-mobile-cmd-group-abs';
176
+ this.absGroup.append(this.absStack, this.absActions);
177
+ this.polarGroup = document.createElement('div');
178
+ this.polarGroup.className = 'ml-mobile-cmd-group ml-mobile-cmd-group-polar';
179
+ this.polarGroup.append(this.polarStack, this.polarActions);
180
+ this.deltaGroup = document.createElement('div');
181
+ this.deltaGroup.className = 'ml-mobile-cmd-group ml-mobile-cmd-group-delta';
182
+ this.deltaGroup.append(this.deltaStack, this.deltaActions);
183
+ this.panel.append(this.accessoryEl, this.promptRow, this.absGroup, this.polarGroup, this.deltaGroup, this.sharedActions);
184
+ this.root.appendChild(this.panel);
185
+ this.sinkPointer(this.panel);
186
+ this.host.appendChild(this.root);
187
+ this.refreshLabels();
188
+ }
189
+ Object.defineProperty(AcUiMobileSessionPanel.prototype, "isOpen", {
190
+ /** Whether the panel is currently shown. */
191
+ get: function () {
192
+ return this.open;
193
+ },
194
+ enumerable: false,
195
+ configurable: true
196
+ });
197
+ Object.defineProperty(AcUiMobileSessionPanel.prototype, "isCollapsed", {
198
+ /** Whether the panel is in compact (collapsed) mode. */
199
+ get: function () {
200
+ return this.collapsed;
201
+ },
202
+ enumerable: false,
203
+ configurable: true
204
+ });
205
+ Object.defineProperty(AcUiMobileSessionPanel.prototype, "accessoryHost", {
206
+ /** Mount slot for custom session accessories (left of help / collapse). */
207
+ get: function () {
208
+ return this.accessoryContentEl;
209
+ },
210
+ enumerable: false,
211
+ configurable: true
212
+ });
213
+ /**
214
+ * Shows the panel for an input session.
215
+ *
216
+ * @param state - Prompt, keywords, and metric visibility.
217
+ * @param callbacks - Confirm / cancel / keyword handlers.
218
+ */
219
+ AcUiMobileSessionPanel.prototype.show = function (state, callbacks) {
220
+ var _this = this;
221
+ var _a, _b;
222
+ this.callbacks = callbacks;
223
+ this.open = true;
224
+ this.showMetrics = state.showMetrics;
225
+ this.root.hidden = false;
226
+ this.root.setAttribute('aria-hidden', 'false');
227
+ this.host.classList.add(this.activeClass);
228
+ this.promptEl.textContent = stripPromptColon(state.prompt);
229
+ this.confirmBtn.disabled = !state.allowNone;
230
+ this.prepareAccessory();
231
+ this.renderChips(state.keywords);
232
+ if (this.frozenTexts) {
233
+ this.setMetricTexts(this.frozenTexts, this.frozenHasBasePoint);
234
+ }
235
+ else {
236
+ this.setMetricTexts(ZERO_TEXTS, false);
237
+ }
238
+ (_a = this.layoutUnsub) === null || _a === void 0 ? void 0 : _a.call(this);
239
+ this.layoutUnsub = (_b = this.subscribeLayout) === null || _b === void 0 ? void 0 : _b.call(this, function () {
240
+ if (_this.open)
241
+ _this.applyMetricVisibility();
242
+ });
243
+ this.applyMetricVisibility();
244
+ this.refreshLabels();
245
+ };
246
+ /**
247
+ * Updates prompt / keywords / ✓ without tearing down the session.
248
+ *
249
+ * @param partial - Fields to update; omitted fields keep current values.
250
+ */
251
+ AcUiMobileSessionPanel.prototype.update = function (partial) {
252
+ if (!this.open)
253
+ return;
254
+ if (partial.prompt != null) {
255
+ this.promptEl.textContent = stripPromptColon(partial.prompt);
256
+ }
257
+ if (partial.allowNone != null) {
258
+ this.confirmBtn.disabled = !partial.allowNone;
259
+ }
260
+ if (partial.keywords) {
261
+ this.renderChips(partial.keywords);
262
+ this.applyMetricVisibility();
263
+ }
264
+ if (partial.showMetrics != null) {
265
+ this.showMetrics = partial.showMetrics;
266
+ this.applyMetricVisibility();
267
+ }
268
+ };
269
+ /**
270
+ * Pushes live metric values (read-only; buttons stay disabled for keypad hook).
271
+ *
272
+ * @param hasBasePoint - Whether relative metrics apply.
273
+ * @param texts - Formatted strings for display.
274
+ */
275
+ AcUiMobileSessionPanel.prototype.setMetrics = function (hasBasePoint, texts) {
276
+ if (!this.open)
277
+ return;
278
+ this.hasBasePoint = hasBasePoint;
279
+ this.frozenTexts = __assign({}, texts);
280
+ this.frozenHasBasePoint = hasBasePoint;
281
+ this.setMetricTexts(texts, hasBasePoint);
282
+ this.applyMetricVisibility();
283
+ };
284
+ /** Expands or collapses the panel into compact mode. */
285
+ AcUiMobileSessionPanel.prototype.setCollapsed = function (collapsed) {
286
+ if (this.collapsed === collapsed)
287
+ return;
288
+ this.collapsed = collapsed;
289
+ this.panel.classList.toggle('is-collapsed', collapsed);
290
+ this.collapseBtn.innerHTML = collapsed ? expandIcon() : collapseIcon();
291
+ this.refreshCollapseLabel();
292
+ if (this.open)
293
+ this.applyMetricVisibility();
294
+ };
295
+ /** Shows the accessory / title row (custom content slot + help + collapse). */
296
+ AcUiMobileSessionPanel.prototype.prepareAccessory = function () {
297
+ this.accessoryEl.hidden = false;
298
+ };
299
+ /** Clears custom accessory content; help / collapse stay while open. */
300
+ AcUiMobileSessionPanel.prototype.clearAccessory = function () {
301
+ this.accessoryContentEl.replaceChildren();
302
+ };
303
+ /** Hides the panel and clears session callbacks. */
304
+ AcUiMobileSessionPanel.prototype.hide = function () {
305
+ var _a;
306
+ this.open = false;
307
+ this.callbacks = null;
308
+ this.clearAccessory();
309
+ this.accessoryEl.hidden = true;
310
+ this.setCollapsed(false);
311
+ (_a = this.layoutUnsub) === null || _a === void 0 ? void 0 : _a.call(this);
312
+ this.layoutUnsub = undefined;
313
+ this.root.hidden = true;
314
+ this.root.setAttribute('aria-hidden', 'true');
315
+ this.host.classList.remove(this.activeClass);
316
+ };
317
+ /** Re-applies metric / action aria labels from {@link labels}. */
318
+ AcUiMobileSessionPanel.prototype.refreshLabels = function () {
319
+ var _a;
320
+ var t = this.labelsFn();
321
+ this.metricButtons.length.querySelector('.ml-mobile-cmd-metric-label').textContent = t.length;
322
+ this.metricButtons.angle.querySelector('.ml-mobile-cmd-metric-label').textContent = t.angle;
323
+ this.metricButtons.dx.querySelector('.ml-mobile-cmd-metric-label').textContent = t.dx;
324
+ this.metricButtons.dy.querySelector('.ml-mobile-cmd-metric-label').textContent = t.dy;
325
+ this.metricButtons.x.querySelector('.ml-mobile-cmd-metric-label').textContent = t.x;
326
+ this.metricButtons.y.querySelector('.ml-mobile-cmd-metric-label').textContent = t.y;
327
+ this.confirmBtn.setAttribute('aria-label', t.confirm);
328
+ this.cancelBtn.setAttribute('aria-label', t.cancel);
329
+ this.helpBtn.setAttribute('aria-label', t.help);
330
+ this.refreshCollapseLabel();
331
+ (_a = this.helpPanel) === null || _a === void 0 ? void 0 : _a.setLabels({ title: t.help, back: t.back });
332
+ };
333
+ /** Removes DOM. */
334
+ AcUiMobileSessionPanel.prototype.dispose = function () {
335
+ var _a, _b;
336
+ this.hide();
337
+ (_a = this.accessoryObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
338
+ this.accessoryObserver = undefined;
339
+ (_b = this.helpPanel) === null || _b === void 0 ? void 0 : _b.dispose();
340
+ this.helpPanel = null;
341
+ this.root.remove();
342
+ };
343
+ /** True when custom session widgets are mounted in the accessory slot. */
344
+ AcUiMobileSessionPanel.prototype.hasAccessoryWidgets = function () {
345
+ return this.accessoryContentEl.childElementCount > 0;
346
+ };
347
+ /**
348
+ * Places the prompt (and keyword chips) in the title row when there is no
349
+ * accessory widget; otherwise keeps them on the message row. Compact mode
350
+ * keeps widgets when present, otherwise shows a truncated prompt.
351
+ */
352
+ AcUiMobileSessionPanel.prototype.syncPromptPlacement = function (collapsed) {
353
+ var hasWidgets = this.hasAccessoryWidgets();
354
+ var promptInTitle = !hasWidgets;
355
+ var hasChips = this.chipsEl.childElementCount > 0;
356
+ this.panel.classList.toggle('is-prompt-in-title', promptInTitle);
357
+ this.helpBtn.hidden = collapsed;
358
+ this.accessoryEl.hidden = false;
359
+ this.accessoryEl.appendChild(this.titleActions);
360
+ this.chipsEl.hidden = collapsed || !hasChips;
361
+ if (collapsed) {
362
+ this.promptRow.classList.remove('is-in-title');
363
+ if (promptInTitle) {
364
+ this.accessoryEl.insertBefore(this.promptEl, this.titleActions);
365
+ this.promptEl.hidden = false;
366
+ }
367
+ else {
368
+ this.promptEl.hidden = true;
369
+ this.promptRow.appendChild(this.promptEl);
370
+ }
371
+ this.promptRow.appendChild(this.chipsEl);
372
+ // Keep an empty prompt row out of the compact chrome.
373
+ if (this.promptRow.parentElement === this.accessoryEl) {
374
+ this.panel.insertBefore(this.promptRow, this.absGroup);
375
+ }
376
+ this.promptRow.hidden = true;
377
+ this.accessoryEl.appendChild(this.compactActions);
378
+ this.compactActions.append(this.cancelBtn, this.confirmBtn);
379
+ return;
380
+ }
381
+ this.promptEl.hidden = false;
382
+ this.compactActions.replaceChildren();
383
+ if (this.compactActions.parentElement === this.accessoryEl) {
384
+ this.compactActions.remove();
385
+ }
386
+ // Prompt + chips share one flex-wrap cluster (title or message band).
387
+ this.promptRow.append(this.promptEl, this.chipsEl);
388
+ this.promptRow.hidden = false;
389
+ if (promptInTitle) {
390
+ this.promptRow.classList.add('is-in-title');
391
+ this.accessoryEl.insertBefore(this.promptRow, this.titleActions);
392
+ }
393
+ else {
394
+ this.promptRow.classList.remove('is-in-title');
395
+ if (this.promptRow.parentElement === this.accessoryEl) {
396
+ this.panel.insertBefore(this.promptRow, this.absGroup);
397
+ }
398
+ }
399
+ };
400
+ AcUiMobileSessionPanel.prototype.refreshCollapseLabel = function () {
401
+ var t = this.labelsFn();
402
+ this.collapseBtn.setAttribute('aria-label', this.collapsed ? t.expand : t.collapse);
403
+ this.collapseBtn.setAttribute('aria-expanded', String(!this.collapsed));
404
+ };
405
+ AcUiMobileSessionPanel.prototype.makeMetricButton = function (id) {
406
+ var btn = document.createElement('button');
407
+ btn.type = 'button';
408
+ btn.className = 'ml-mobile-cmd-metric';
409
+ btn.dataset.metric = id;
410
+ btn.disabled = true;
411
+ var label = document.createElement('span');
412
+ label.className = 'ml-mobile-cmd-metric-label';
413
+ var value = document.createElement('span');
414
+ value.className = 'ml-mobile-cmd-metric-value';
415
+ value.textContent = '0';
416
+ btn.append(label, value);
417
+ return btn;
418
+ };
419
+ AcUiMobileSessionPanel.prototype.setMetricTexts = function (texts, hasBasePoint) {
420
+ this.metricButtons.length.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.length;
421
+ this.metricButtons.angle.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.angle;
422
+ this.metricButtons.dx.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.dx;
423
+ this.metricButtons.dy.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.dy;
424
+ this.metricButtons.x.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.x;
425
+ this.metricButtons.y.querySelector('.ml-mobile-cmd-metric-value').textContent = texts.y;
426
+ this.hasBasePoint = hasBasePoint;
427
+ };
428
+ AcUiMobileSessionPanel.prototype.applyMetricVisibility = function () {
429
+ var relative = this.showMetrics && this.hasBasePoint;
430
+ var absolute = this.showMetrics && !this.hasBasePoint;
431
+ var phone = this.isPhoneLayout();
432
+ var collapsed = this.collapsed;
433
+ this.metricButtons.length.hidden = !relative;
434
+ this.metricButtons.angle.hidden = !relative;
435
+ this.metricButtons.dx.hidden = !relative;
436
+ this.metricButtons.dy.hidden = !relative;
437
+ this.metricButtons.x.hidden = !absolute;
438
+ this.metricButtons.y.hidden = !absolute;
439
+ this.panel.classList.toggle('is-relative', relative && !collapsed);
440
+ this.panel.classList.toggle('is-absolute', absolute && !collapsed);
441
+ this.panel.classList.toggle('is-actions-only', !collapsed && !relative && !absolute);
442
+ this.panel.classList.toggle('is-collapsed', collapsed);
443
+ this.polarGroup.hidden = collapsed || !relative;
444
+ this.deltaGroup.hidden = collapsed || !relative;
445
+ this.absStack.hidden = !absolute;
446
+ this.absGroup.hidden = collapsed
447
+ ? true
448
+ : phone
449
+ ? relative
450
+ : !absolute;
451
+ this.chipsEl.hidden = collapsed || this.chipsEl.childElementCount === 0;
452
+ this.syncPromptPlacement(collapsed);
453
+ if (collapsed) {
454
+ // Actions already placed by syncPromptPlacement.
455
+ }
456
+ else if (phone && relative) {
457
+ this.polarActions.appendChild(this.cancelBtn);
458
+ this.deltaActions.appendChild(this.confirmBtn);
459
+ }
460
+ else if (phone) {
461
+ this.absActions.append(this.cancelBtn, this.confirmBtn);
462
+ }
463
+ else {
464
+ this.sharedActions.append(this.cancelBtn, this.confirmBtn);
465
+ }
466
+ };
467
+ AcUiMobileSessionPanel.prototype.renderChips = function (keywords) {
468
+ var e_1, _a;
469
+ var _this = this;
470
+ this.chipsEl.replaceChildren();
471
+ this.chipsEl.hidden = this.collapsed || keywords.length === 0;
472
+ var _loop_1 = function (kw) {
473
+ var chip = document.createElement('button');
474
+ chip.type = 'button';
475
+ chip.className = 'ml-mobile-cmd-chip';
476
+ chip.textContent = kw.displayName;
477
+ chip.disabled = !kw.enabled;
478
+ chip.addEventListener('click', function (e) {
479
+ var _a;
480
+ e.preventDefault();
481
+ e.stopPropagation();
482
+ if (!kw.enabled)
483
+ return;
484
+ (_a = _this.callbacks) === null || _a === void 0 ? void 0 : _a.onKeyword(kw.id);
485
+ });
486
+ this_1.sinkPointer(chip);
487
+ this_1.chipsEl.appendChild(chip);
488
+ };
489
+ var this_1 = this;
490
+ try {
491
+ for (var keywords_1 = __values(keywords), keywords_1_1 = keywords_1.next(); !keywords_1_1.done; keywords_1_1 = keywords_1.next()) {
492
+ var kw = keywords_1_1.value;
493
+ _loop_1(kw);
494
+ }
495
+ }
496
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
497
+ finally {
498
+ try {
499
+ if (keywords_1_1 && !keywords_1_1.done && (_a = keywords_1.return)) _a.call(keywords_1);
500
+ }
501
+ finally { if (e_1) throw e_1.error; }
502
+ }
503
+ };
504
+ AcUiMobileSessionPanel.prototype.openHelpPanel = function () {
505
+ if (!this.helpPanel) {
506
+ var host = typeof this.helpHostOpt === 'function'
507
+ ? this.helpHostOpt()
508
+ : this.helpHostOpt;
509
+ this.helpPanel = new AcUiHelpPanel(host ? { host: host } : undefined);
510
+ }
511
+ var t = this.labelsFn();
512
+ this.helpPanel.showDocs({
513
+ url: this.helpDocsUrl(),
514
+ labels: { title: t.help, back: t.back }
515
+ });
516
+ };
517
+ AcUiMobileSessionPanel.prototype.sinkPointer = function (el) {
518
+ el.addEventListener('pointerdown', function (e) {
519
+ e.stopPropagation();
520
+ });
521
+ };
522
+ AcUiMobileSessionPanel.injectCss = function () {
523
+ if (typeof document === 'undefined')
524
+ return;
525
+ var style = document.getElementById(STYLE_ID);
526
+ if (!style) {
527
+ style = document.createElement('style');
528
+ style.id = STYLE_ID;
529
+ document.head.appendChild(style);
530
+ }
531
+ style.textContent = MOBILE_CMD_CSS;
532
+ };
533
+ return AcUiMobileSessionPanel;
534
+ }());
535
+ export { AcUiMobileSessionPanel };
536
+ /** Strips a trailing colon from prompt text. */
537
+ function stripPromptColon(message) {
538
+ return message.trim().replace(/[::]\s*$/, '');
539
+ }
540
+ function helpIcon() {
541
+ return '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 15.2a1.2 1.2 0 1 1 0-2.4 1.2 1.2 0 0 1 0 2.4zm1.6-5.35c-.62.36-1 .9-1 1.55h-1.5c0-1.18.6-2.05 1.45-2.55.62-.36.95-.7.95-1.25 0-.7-.55-1.2-1.4-1.2-.9 0-1.45.5-1.55 1.3H8.9C9.1 7.95 10.35 7 12.1 7c1.85 0 3.15 1.05 3.15 2.55 0 .95-.5 1.7-1.65 2.3z"/></svg>';
542
+ }
543
+ function collapseIcon() {
544
+ return '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z"/></svg>';
545
+ }
546
+ function expandIcon() {
547
+ return '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6z"/></svg>';
548
+ }
549
+ function cancelIcon() {
550
+ return '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7a1 1 0 0 0-1.41 1.42L10.59 12l-4.9 4.89a1 1 0 1 0 1.42 1.42L12 13.41l4.89 4.9a1 1 0 0 0 1.42-1.42L13.41 12l4.9-4.89a1 1 0 0 0-.01-1.4z"/></svg>';
551
+ }
552
+ function confirmIcon() {
553
+ return '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M9.55 18.2 3.8 12.45l1.4-1.4 4.35 4.36 9.25-9.26 1.4 1.41z"/></svg>';
554
+ }
555
+ /** CSS for the shared mobile session panel. */
556
+ var MOBILE_CMD_CSS = "\n .ml-mobile-cmd {\n pointer-events: none;\n }\n .ml-mobile-cmd-panel {\n pointer-events: auto;\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 40;\n display: flex;\n flex-direction: column;\n gap: 8px;\n padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));\n background: var(--ml-ui-bg, rgba(28, 30, 34, 0.96));\n color: var(--ml-ui-text, #e8eaed);\n border-top: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);\n box-sizing: border-box;\n }\n .ml-mobile-cmd-panel.is-collapsed {\n height: calc(\n var(--ml-mobile-cmd-collapsed-height, 56px) + env(safe-area-inset-bottom, 0px)\n );\n min-height: calc(\n var(--ml-mobile-cmd-collapsed-height, 56px) + env(safe-area-inset-bottom, 0px)\n );\n padding: 0 12px env(safe-area-inset-bottom, 0px);\n gap: 0;\n justify-content: center;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-accessory {\n padding-bottom: 0;\n border-bottom: 0;\n flex: 1;\n min-width: 0;\n }\n .ml-mobile-cmd-prompt-row {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: 8px;\n min-width: 0;\n }\n .ml-mobile-cmd-prompt-row[hidden] {\n display: none;\n }\n .ml-mobile-cmd-prompt-row:not([hidden]) {\n box-sizing: border-box;\n min-height: 32px;\n padding-top: 4px;\n padding-bottom: 4px;\n border-bottom: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n }\n .ml-mobile-cmd-prompt-row.is-in-title {\n flex: 1 1 auto;\n min-width: 0;\n min-height: 0;\n padding: 0;\n border-bottom: 0;\n }\n .ml-mobile-cmd-prompt {\n flex: 1 1 10em;\n min-width: min(100%, 8em);\n box-sizing: border-box;\n padding: 0;\n border: 0;\n border-radius: 0;\n background: transparent;\n color: var(--ml-ui-text, #e8eaed);\n font-size: 12px;\n font-weight: 500;\n line-height: 1.4;\n white-space: normal;\n overflow-wrap: anywhere;\n word-break: break-word;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-prompt {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-prompt[hidden] {\n display: none;\n }\n .ml-mobile-cmd-actions-compact {\n display: none;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n flex: 0 0 auto;\n margin-left: 8px;\n padding-left: 0;\n border-left: 0;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-actions-compact {\n display: flex;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-help[hidden] {\n display: none;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-title-actions {\n margin-left: 0;\n }\n .ml-mobile-cmd-group {\n display: flex;\n align-items: stretch;\n gap: 8px;\n min-width: 0;\n }\n .ml-mobile-cmd-group[hidden] {\n display: none;\n }\n .ml-mobile-cmd-panel.is-relative .ml-mobile-cmd-group-polar {\n border-bottom: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n padding-bottom: 0;\n }\n .ml-mobile-cmd-group:not(:has(.ml-mobile-cmd-metric-stack:not([hidden]))) {\n justify-content: flex-end;\n }\n .ml-mobile-cmd-metric-stack {\n flex: 1;\n min-width: 0;\n display: flex;\n flex-direction: column;\n justify-content: center;\n gap: 2px;\n }\n .ml-mobile-cmd-metric-stack[hidden] {\n display: none;\n }\n .ml-mobile-cmd-actions {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 10px;\n flex: 0 0 auto;\n align-self: stretch;\n padding-left: 12px;\n border-left: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n }\n .ml-mobile-cmd-group:not(:has(.ml-mobile-cmd-metric-stack:not([hidden])))\n .ml-mobile-cmd-actions {\n border-left: 0;\n padding-left: 0;\n }\n .ml-mobile-cmd-metric {\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 8px;\n margin: 0;\n padding: 2px 0;\n border: 0;\n background: transparent;\n color: inherit;\n font: inherit;\n text-align: left;\n min-height: 28px;\n min-width: 0;\n width: 100%;\n }\n .ml-mobile-cmd-metric[hidden] {\n display: none;\n }\n .ml-mobile-cmd-metric-label {\n flex: 0 0 auto;\n color: var(--ml-ui-muted, #9aa0a6);\n font-size: 12px;\n }\n .ml-mobile-cmd-metric-value {\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n text-align: right;\n font-variant-numeric: tabular-nums;\n font-size: 13px;\n }\n .ml-mobile-cmd-accessory {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: 8px;\n min-height: 32px;\n }\n .ml-mobile-cmd-accessory:not([hidden]) {\n padding-bottom: 8px;\n border-bottom: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n }\n .ml-mobile-cmd-accessory[hidden] {\n display: none;\n }\n .ml-mobile-cmd-accessory-content {\n flex: 1;\n min-width: 0;\n display: flex;\n align-items: center;\n gap: 8px;\n }\n .ml-mobile-cmd-accessory-content:empty {\n display: none;\n }\n .ml-mobile-cmd-panel.is-prompt-in-title .ml-mobile-cmd-prompt {\n flex: 1 1 10em;\n min-width: min(100%, 8em);\n }\n .ml-mobile-cmd-panel.is-prompt-in-title .ml-mobile-cmd-chips {\n flex: 0 1 auto;\n }\n .ml-mobile-cmd-title-actions {\n display: flex;\n flex: 0 0 auto;\n align-items: center;\n gap: 0;\n margin-left: auto;\n }\n .ml-mobile-cmd-help,\n .ml-mobile-cmd-collapse {\n box-sizing: border-box;\n flex: 0 0 auto;\n margin: 0;\n width: 32px;\n height: 32px;\n padding: 0;\n border: 0;\n border-radius: 50%;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background: transparent;\n color: var(--ml-ui-muted, #9aa0a6);\n cursor: pointer;\n line-height: 0;\n }\n .ml-mobile-cmd-help:hover,\n .ml-mobile-cmd-help:focus-visible,\n .ml-mobile-cmd-collapse:hover,\n .ml-mobile-cmd-collapse:focus-visible {\n color: var(--ml-ui-accent, #08e8de);\n }\n .ml-mobile-cmd-help svg,\n .ml-mobile-cmd-collapse svg {\n display: block;\n width: 18px;\n height: 18px;\n }\n .ml-mobile-cmd-chips {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: 6px;\n flex: 0 1 auto;\n min-width: 0;\n }\n .ml-mobile-cmd-chips:not([hidden]) {\n padding: 0;\n border: 0;\n }\n .ml-mobile-cmd-chips[hidden] {\n display: none;\n }\n .ml-mobile-cmd-chip {\n min-height: 32px;\n padding: 4px 10px;\n border-radius: 16px;\n border: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.16));\n background: var(--ml-ui-bg-elevated, rgba(255, 255, 255, 0.06));\n color: var(--ml-ui-accent, #08e8de);\n font-size: 13px;\n }\n .ml-mobile-cmd-chip:disabled {\n opacity: 0.45;\n }\n .ml-mobile-cmd-cancel,\n .ml-mobile-cmd-confirm {\n box-sizing: border-box;\n flex: 0 0 36px;\n align-self: center;\n margin: 0;\n width: 36px;\n height: 36px;\n padding: 0;\n border-radius: 50%;\n border: 0;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n line-height: 0;\n cursor: pointer;\n color: #fff;\n }\n .ml-mobile-cmd-cancel svg,\n .ml-mobile-cmd-confirm svg {\n display: block;\n width: 18px;\n height: 18px;\n }\n .ml-mobile-cmd-cancel {\n background: #5c6370;\n }\n .ml-mobile-cmd-confirm {\n background: var(--ml-ui-accent, #1a8cff);\n }\n .ml-mobile-cmd-confirm:disabled {\n opacity: 0.35;\n cursor: default;\n }\n .ml-mobile-cmd-actions-shared {\n display: none;\n }\n .ml-mobile-cmd-panel.is-collapsed .ml-mobile-cmd-actions-shared {\n display: none !important;\n }\n @media (min-width: ".concat(ML_UI_SESSION_PANEL_WIDTH, "px) {\n .ml-mobile-cmd-metric-stack {\n flex-direction: row;\n align-items: center;\n gap: 16px;\n }\n .ml-mobile-cmd-metric {\n flex: 1;\n }\n }\n @media (min-width: ").concat(ML_UI_MOBILE_MAX_WIDTH + 1, "px) {\n .ml-mobile-cmd-panel {\n left: 50%;\n right: auto;\n width: ").concat(ML_UI_SESSION_PANEL_WIDTH, "px;\n max-width: ").concat(ML_UI_SESSION_PANEL_MAX_WIDTH, ";\n transform: translateX(-50%);\n border-radius: 12px 12px 0 0;\n border: 1px solid var(--ml-ui-border, rgba(255, 255, 255, 0.12));\n border-bottom: 0;\n }\n .ml-mobile-cmd-panel.is-collapsed {\n width: ").concat(ML_UI_SESSION_PANEL_WIDTH, "px;\n max-width: ").concat(ML_UI_SESSION_PANEL_MAX_WIDTH, ";\n }\n .ml-mobile-cmd-group .ml-mobile-cmd-actions {\n display: none;\n }\n .ml-mobile-cmd-actions-shared {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n }\n .ml-mobile-cmd-panel.is-absolute .ml-mobile-cmd-group-abs {\n align-items: center;\n }\n .ml-mobile-cmd-panel.is-absolute .ml-mobile-cmd-actions-shared {\n align-self: center;\n }\n .ml-mobile-cmd-panel.is-relative:not([hidden]),\n .ml-mobile-cmd-panel.is-absolute:not([hidden]) {\n display: grid;\n grid-template-columns: 1fr auto;\n align-items: stretch;\n row-gap: 0;\n column-gap: 8px;\n }\n .ml-mobile-cmd-panel.is-relative {\n grid-template-areas:\n 'accessory accessory'\n 'prompt prompt'\n 'polar shared'\n 'delta shared';\n }\n .ml-mobile-cmd-panel.is-absolute {\n grid-template-areas:\n 'accessory accessory'\n 'prompt prompt'\n 'abs shared';\n }\n .ml-mobile-cmd-panel.is-prompt-in-title.is-relative {\n grid-template-areas:\n 'accessory accessory'\n 'polar shared'\n 'delta shared';\n }\n .ml-mobile-cmd-panel.is-prompt-in-title.is-absolute {\n grid-template-areas:\n 'accessory accessory'\n 'abs shared';\n }\n .ml-mobile-cmd-group-polar { grid-area: polar; }\n .ml-mobile-cmd-group-delta { grid-area: delta; }\n .ml-mobile-cmd-group-abs { grid-area: abs; }\n .ml-mobile-cmd-actions-shared { grid-area: shared; }\n .ml-mobile-cmd-accessory { grid-area: accessory; }\n .ml-mobile-cmd-prompt-row { grid-area: prompt; }\n .ml-mobile-cmd-panel.is-relative .ml-mobile-cmd-group-polar {\n padding-bottom: 6px;\n }\n .ml-mobile-cmd-panel.is-relative .ml-mobile-cmd-group-delta {\n padding-top: 6px;\n }\n .ml-mobile-cmd-panel.is-actions-only {\n display: flex;\n flex-direction: column;\n }\n .ml-mobile-cmd-panel.is-actions-only .ml-mobile-cmd-actions-shared {\n border-left: 0;\n padding-left: 0;\n justify-content: flex-end;\n align-self: flex-end;\n }\n .ml-mobile-cmd-panel.is-collapsed {\n display: flex !important;\n flex-direction: row;\n align-items: center;\n transform: translateX(-50%);\n }\n }\n");
557
+ //# sourceMappingURL=AcUiMobileSessionPanel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AcUiMobileSessionPanel.js","sourceRoot":"","sources":["../../src/ui/AcUiMobileSessionPanel.ts"],"names":[],"mappings":"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"}