@mlightcad/cad-simple-viewer 1.7.0 → 1.7.1

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 (322) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +185 -180
  3. package/dist/cad-simple-viewer.js +17061 -12706
  4. package/dist/cad-simple-viewer.umd.cjs +981 -114
  5. package/dist/mtext-renderer-worker.js +1908 -1765
  6. package/icons.ts +7 -7
  7. package/lib/app/AcApContext.d.ts.map +1 -1
  8. package/lib/app/AcApContext.js +4 -3
  9. package/lib/app/AcApContext.js.map +1 -1
  10. package/lib/app/AcApDocManager.d.ts +38 -18
  11. package/lib/app/AcApDocManager.d.ts.map +1 -1
  12. package/lib/app/AcApDocManager.js +59 -45
  13. package/lib/app/AcApDocManager.js.map +1 -1
  14. package/lib/app/AcApOpenDatabaseOptions.d.ts +17 -1
  15. package/lib/app/AcApOpenDatabaseOptions.d.ts.map +1 -1
  16. package/lib/app/AcApOpenDatabaseOptions.js +1 -1
  17. package/lib/app/AcApOpenDatabaseOptions.js.map +1 -1
  18. package/lib/app/AcApOpenFileProgressController.d.ts +4 -2
  19. package/lib/app/AcApOpenFileProgressController.d.ts.map +1 -1
  20. package/lib/app/AcApOpenFileProgressController.js +4 -2
  21. package/lib/app/AcApOpenFileProgressController.js.map +1 -1
  22. package/lib/app/index.d.ts +1 -0
  23. package/lib/app/index.d.ts.map +1 -1
  24. package/lib/app/index.js +1 -0
  25. package/lib/app/index.js.map +1 -1
  26. package/lib/app/notification/AcApNotificationEventBridge.d.ts +130 -0
  27. package/lib/app/notification/AcApNotificationEventBridge.d.ts.map +1 -0
  28. package/lib/app/notification/AcApNotificationEventBridge.js +309 -0
  29. package/lib/app/notification/AcApNotificationEventBridge.js.map +1 -0
  30. package/lib/app/notification/AcApNotificationService.d.ts +185 -0
  31. package/lib/app/notification/AcApNotificationService.d.ts.map +1 -0
  32. package/lib/app/notification/AcApNotificationService.js +271 -0
  33. package/lib/app/notification/AcApNotificationService.js.map +1 -0
  34. package/lib/app/notification/AcApNotificationStore.d.ts +147 -0
  35. package/lib/app/notification/AcApNotificationStore.d.ts.map +1 -0
  36. package/lib/app/notification/AcApNotificationStore.js +345 -0
  37. package/lib/app/notification/AcApNotificationStore.js.map +1 -0
  38. package/lib/app/notification/AcApNotificationTypes.d.ts +195 -0
  39. package/lib/app/notification/AcApNotificationTypes.d.ts.map +1 -0
  40. package/lib/app/notification/AcApNotificationTypes.js +78 -0
  41. package/lib/app/notification/AcApNotificationTypes.js.map +1 -0
  42. package/lib/app/notification/index.d.ts +13 -0
  43. package/lib/app/notification/index.d.ts.map +1 -0
  44. package/lib/app/notification/index.js +13 -0
  45. package/lib/app/notification/index.js.map +1 -0
  46. package/lib/command/AcApInstallDrawStyleSessionAccessory.js +11 -7
  47. package/lib/command/AcApInstallDrawStyleSessionAccessory.js.map +1 -1
  48. package/lib/command/AcApSwitchBgCmd.d.ts.map +1 -1
  49. package/lib/command/AcApSwitchBgCmd.js +7 -2
  50. package/lib/command/AcApSwitchBgCmd.js.map +1 -1
  51. package/lib/command/AcApToolbarDocBind.d.ts +19 -0
  52. package/lib/command/AcApToolbarDocBind.d.ts.map +1 -0
  53. package/lib/command/AcApToolbarDocBind.js +62 -0
  54. package/lib/command/AcApToolbarDocBind.js.map +1 -0
  55. package/lib/command/convert/AcApConvertToBmpCmd.d.ts +14 -0
  56. package/lib/command/convert/AcApConvertToBmpCmd.d.ts.map +1 -0
  57. package/lib/command/convert/AcApConvertToBmpCmd.js +34 -0
  58. package/lib/command/convert/AcApConvertToBmpCmd.js.map +1 -0
  59. package/lib/command/convert/AcApConvertToJpgCmd.d.ts +14 -0
  60. package/lib/command/convert/AcApConvertToJpgCmd.d.ts.map +1 -0
  61. package/lib/command/convert/AcApConvertToJpgCmd.js +34 -0
  62. package/lib/command/convert/AcApConvertToJpgCmd.js.map +1 -0
  63. package/lib/command/convert/AcApConvertToPngCmd.d.ts +4 -36
  64. package/lib/command/convert/AcApConvertToPngCmd.d.ts.map +1 -1
  65. package/lib/command/convert/AcApConvertToPngCmd.js +4 -138
  66. package/lib/command/convert/AcApConvertToPngCmd.js.map +1 -1
  67. package/lib/command/convert/AcApConvertToRasterImageCmd.d.ts +40 -0
  68. package/lib/command/convert/AcApConvertToRasterImageCmd.d.ts.map +1 -0
  69. package/lib/command/convert/AcApConvertToRasterImageCmd.js +161 -0
  70. package/lib/command/convert/AcApConvertToRasterImageCmd.js.map +1 -0
  71. package/lib/command/convert/{AcApPngConvertor.d.ts → AcApRasterImageConvertor.d.ts} +36 -12
  72. package/lib/command/convert/AcApRasterImageConvertor.d.ts.map +1 -0
  73. package/lib/command/convert/{AcApPngConvertor.js → AcApRasterImageConvertor.js} +163 -32
  74. package/lib/command/convert/AcApRasterImageConvertor.js.map +1 -0
  75. package/lib/command/convert/index.d.ts +4 -1
  76. package/lib/command/convert/index.d.ts.map +1 -1
  77. package/lib/command/convert/index.js +4 -1
  78. package/lib/command/convert/index.js.map +1 -1
  79. package/lib/command/index.d.ts +2 -0
  80. package/lib/command/index.d.ts.map +1 -1
  81. package/lib/command/index.js +2 -0
  82. package/lib/command/index.js.map +1 -1
  83. package/lib/command/markup/AcApMarkupCalloutCmd.d.ts.map +1 -1
  84. package/lib/command/markup/AcApMarkupCalloutCmd.js +51 -1
  85. package/lib/command/markup/AcApMarkupCalloutCmd.js.map +1 -1
  86. package/lib/command/markup/AcApMarkupCmdUtil.d.ts +5 -0
  87. package/lib/command/markup/AcApMarkupCmdUtil.d.ts.map +1 -1
  88. package/lib/command/markup/AcApMarkupCmdUtil.js +27 -9
  89. package/lib/command/markup/AcApMarkupCmdUtil.js.map +1 -1
  90. package/lib/command/markup/AcApMarkupShapeCallout.d.ts.map +1 -1
  91. package/lib/command/markup/AcApMarkupShapeCallout.js +49 -1
  92. package/lib/command/markup/AcApMarkupShapeCallout.js.map +1 -1
  93. package/lib/editor/global/AcEdUiLayout.d.ts +6 -0
  94. package/lib/editor/global/AcEdUiLayout.d.ts.map +1 -1
  95. package/lib/editor/global/AcEdUiLayout.js +6 -0
  96. package/lib/editor/global/AcEdUiLayout.js.map +1 -1
  97. package/lib/editor/input/ui/AcEdCanvasTouchCalloutGuard.d.ts +31 -0
  98. package/lib/editor/input/ui/AcEdCanvasTouchCalloutGuard.d.ts.map +1 -0
  99. package/lib/editor/input/ui/AcEdCanvasTouchCalloutGuard.js +67 -0
  100. package/lib/editor/input/ui/AcEdCanvasTouchCalloutGuard.js.map +1 -0
  101. package/lib/editor/input/ui/AcEdFloatingInput.d.ts +2 -0
  102. package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
  103. package/lib/editor/input/ui/AcEdFloatingInput.js +13 -2
  104. package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
  105. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +6 -0
  106. package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
  107. package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
  108. package/lib/editor/input/ui/AcEdInputManager.js +47 -7
  109. package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
  110. package/lib/editor/input/ui/AcEdMobileBoxGesture.d.ts.map +1 -1
  111. package/lib/editor/input/ui/AcEdMobileBoxGesture.js +2 -0
  112. package/lib/editor/input/ui/AcEdMobileBoxGesture.js.map +1 -1
  113. package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts +18 -4
  114. package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts.map +1 -1
  115. package/lib/editor/input/ui/AcEdMobileCommandChrome.js +14 -0
  116. package/lib/editor/input/ui/AcEdMobileCommandChrome.js.map +1 -1
  117. package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts +10 -2
  118. package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts.map +1 -1
  119. package/lib/editor/input/ui/AcEdSessionAccessoryController.js +15 -4
  120. package/lib/editor/input/ui/AcEdSessionAccessoryController.js.map +1 -1
  121. package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts +1 -1
  122. package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts.map +1 -1
  123. package/lib/editor/input/ui/AcEdTouchPointTiming.js +1 -1
  124. package/lib/editor/input/ui/AcEdTouchPointTiming.js.map +1 -1
  125. package/lib/editor/input/ui/index.d.ts +1 -0
  126. package/lib/editor/input/ui/index.d.ts.map +1 -1
  127. package/lib/editor/input/ui/index.js +1 -0
  128. package/lib/editor/input/ui/index.js.map +1 -1
  129. package/lib/editor/view/AcEdBaseView.d.ts +12 -0
  130. package/lib/editor/view/AcEdBaseView.d.ts.map +1 -1
  131. package/lib/editor/view/AcEdBaseView.js +19 -9
  132. package/lib/editor/view/AcEdBaseView.js.map +1 -1
  133. package/lib/editor/view/AcEdSelectionBoxIntersect.d.ts +36 -0
  134. package/lib/editor/view/AcEdSelectionBoxIntersect.d.ts.map +1 -0
  135. package/lib/editor/view/AcEdSelectionBoxIntersect.js +113 -0
  136. package/lib/editor/view/AcEdSelectionBoxIntersect.js.map +1 -0
  137. package/lib/editor/view/index.d.ts +1 -0
  138. package/lib/editor/view/index.d.ts.map +1 -1
  139. package/lib/editor/view/index.js +1 -0
  140. package/lib/editor/view/index.js.map +1 -1
  141. package/lib/i18n/AcApI18n.d.ts +2 -1
  142. package/lib/i18n/AcApI18n.d.ts.map +1 -1
  143. package/lib/i18n/AcApI18n.js +4 -1
  144. package/lib/i18n/AcApI18n.js.map +1 -1
  145. package/lib/i18n/ar/command.d.ts +9 -0
  146. package/lib/i18n/ar/command.d.ts.map +1 -1
  147. package/lib/i18n/ar/command.js +1 -1
  148. package/lib/i18n/ar/command.js.map +1 -1
  149. package/lib/i18n/ar/jig.d.ts +47 -0
  150. package/lib/i18n/ar/jig.d.ts.map +1 -1
  151. package/lib/i18n/ar/jig.js +17 -1
  152. package/lib/i18n/ar/jig.js.map +1 -1
  153. package/lib/i18n/ar/main.d.ts +30 -0
  154. package/lib/i18n/ar/main.d.ts.map +1 -1
  155. package/lib/i18n/ar/main.js +34 -4
  156. package/lib/i18n/ar/main.js.map +1 -1
  157. package/lib/i18n/cs/command.d.ts +9 -0
  158. package/lib/i18n/cs/command.d.ts.map +1 -1
  159. package/lib/i18n/cs/command.js +9 -0
  160. package/lib/i18n/cs/command.js.map +1 -1
  161. package/lib/i18n/cs/jig.d.ts +47 -0
  162. package/lib/i18n/cs/jig.d.ts.map +1 -1
  163. package/lib/i18n/cs/jig.js +47 -0
  164. package/lib/i18n/cs/jig.js.map +1 -1
  165. package/lib/i18n/cs/main.d.ts +30 -0
  166. package/lib/i18n/cs/main.d.ts.map +1 -1
  167. package/lib/i18n/cs/main.js +34 -4
  168. package/lib/i18n/cs/main.js.map +1 -1
  169. package/lib/i18n/en/command.d.ts +9 -0
  170. package/lib/i18n/en/command.d.ts.map +1 -1
  171. package/lib/i18n/en/command.js +9 -0
  172. package/lib/i18n/en/command.js.map +1 -1
  173. package/lib/i18n/en/jig.d.ts +47 -0
  174. package/lib/i18n/en/jig.d.ts.map +1 -1
  175. package/lib/i18n/en/jig.js +47 -0
  176. package/lib/i18n/en/jig.js.map +1 -1
  177. package/lib/i18n/en/main.d.ts +30 -0
  178. package/lib/i18n/en/main.d.ts.map +1 -1
  179. package/lib/i18n/en/main.js +34 -4
  180. package/lib/i18n/en/main.js.map +1 -1
  181. package/lib/i18n/index.d.ts +2 -2
  182. package/lib/i18n/index.d.ts.map +1 -1
  183. package/lib/i18n/index.js.map +1 -1
  184. package/lib/i18n/tr/command.d.ts +9 -0
  185. package/lib/i18n/tr/command.d.ts.map +1 -1
  186. package/lib/i18n/tr/command.js +9 -0
  187. package/lib/i18n/tr/command.js.map +1 -1
  188. package/lib/i18n/tr/jig.d.ts +47 -0
  189. package/lib/i18n/tr/jig.d.ts.map +1 -1
  190. package/lib/i18n/tr/jig.js +47 -0
  191. package/lib/i18n/tr/jig.js.map +1 -1
  192. package/lib/i18n/tr/main.d.ts +30 -0
  193. package/lib/i18n/tr/main.d.ts.map +1 -1
  194. package/lib/i18n/tr/main.js +34 -4
  195. package/lib/i18n/tr/main.js.map +1 -1
  196. package/lib/i18n/zh/command.d.ts +9 -0
  197. package/lib/i18n/zh/command.d.ts.map +1 -1
  198. package/lib/i18n/zh/command.js +9 -0
  199. package/lib/i18n/zh/command.js.map +1 -1
  200. package/lib/i18n/zh/jig.d.ts +47 -0
  201. package/lib/i18n/zh/jig.d.ts.map +1 -1
  202. package/lib/i18n/zh/jig.js +47 -0
  203. package/lib/i18n/zh/jig.js.map +1 -1
  204. package/lib/i18n/zh/main.d.ts +30 -0
  205. package/lib/i18n/zh/main.d.ts.map +1 -1
  206. package/lib/i18n/zh/main.js +34 -4
  207. package/lib/i18n/zh/main.js.map +1 -1
  208. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.d.ts +6 -0
  209. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.d.ts.map +1 -1
  210. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.js +10 -0
  211. package/lib/spatialIndex/AcTrHierarchicalSpatialIndex.js.map +1 -1
  212. package/lib/spatialIndex/AcTrLinearSpatialIndex.d.ts +4 -0
  213. package/lib/spatialIndex/AcTrLinearSpatialIndex.d.ts.map +1 -1
  214. package/lib/spatialIndex/AcTrLinearSpatialIndex.js +9 -0
  215. package/lib/spatialIndex/AcTrLinearSpatialIndex.js.map +1 -1
  216. package/lib/spatialIndex/AcTrRBushSpatialIndex.d.ts +4 -0
  217. package/lib/spatialIndex/AcTrRBushSpatialIndex.d.ts.map +1 -1
  218. package/lib/spatialIndex/AcTrRBushSpatialIndex.js +9 -0
  219. package/lib/spatialIndex/AcTrRBushSpatialIndex.js.map +1 -1
  220. package/lib/ui/AcUiDefaultNotificationUi.d.ts +167 -0
  221. package/lib/ui/AcUiDefaultNotificationUi.d.ts.map +1 -0
  222. package/lib/ui/AcUiDefaultNotificationUi.js +603 -0
  223. package/lib/ui/AcUiDefaultNotificationUi.js.map +1 -0
  224. package/lib/ui/AcUiDrawStyle.d.ts +2 -1
  225. package/lib/ui/AcUiDrawStyle.d.ts.map +1 -1
  226. package/lib/ui/AcUiDrawStyle.js +2 -1
  227. package/lib/ui/AcUiDrawStyle.js.map +1 -1
  228. package/lib/ui/AcUiDrawStyleSessionAccessory.d.ts.map +1 -1
  229. package/lib/ui/AcUiDrawStyleSessionAccessory.js +5 -1
  230. package/lib/ui/AcUiDrawStyleSessionAccessory.js.map +1 -1
  231. package/lib/ui/AcUiMobileSessionPanel.d.ts +73 -8
  232. package/lib/ui/AcUiMobileSessionPanel.d.ts.map +1 -1
  233. package/lib/ui/AcUiMobileSessionPanel.js +314 -49
  234. package/lib/ui/AcUiMobileSessionPanel.js.map +1 -1
  235. package/lib/ui/AcUiShortCutToolbar.d.ts +24 -0
  236. package/lib/ui/AcUiShortCutToolbar.d.ts.map +1 -1
  237. package/lib/ui/AcUiShortCutToolbar.js +73 -5
  238. package/lib/ui/AcUiShortCutToolbar.js.map +1 -1
  239. package/lib/ui/index.d.ts +2 -0
  240. package/lib/ui/index.d.ts.map +1 -1
  241. package/lib/ui/index.js +2 -0
  242. package/lib/ui/index.js.map +1 -1
  243. package/lib/ui/toolbar/AcUiDropdownMenu.d.ts +48 -0
  244. package/lib/ui/toolbar/AcUiDropdownMenu.d.ts.map +1 -0
  245. package/lib/ui/toolbar/AcUiDropdownMenu.js +116 -0
  246. package/lib/ui/toolbar/AcUiDropdownMenu.js.map +1 -0
  247. package/lib/ui/toolbar/AcUiSubToolbar.d.ts +125 -0
  248. package/lib/ui/toolbar/AcUiSubToolbar.d.ts.map +1 -0
  249. package/lib/ui/toolbar/AcUiSubToolbar.js +625 -0
  250. package/lib/ui/toolbar/AcUiSubToolbar.js.map +1 -0
  251. package/lib/ui/toolbar/AcUiToolbar.d.ts +446 -0
  252. package/lib/ui/toolbar/AcUiToolbar.d.ts.map +1 -0
  253. package/lib/ui/toolbar/AcUiToolbar.js +1550 -0
  254. package/lib/ui/toolbar/AcUiToolbar.js.map +1 -0
  255. package/lib/ui/toolbar/AcUiToolbarStyles.d.ts +20 -0
  256. package/lib/ui/toolbar/AcUiToolbarStyles.d.ts.map +1 -0
  257. package/lib/ui/toolbar/AcUiToolbarStyles.js +34 -0
  258. package/lib/ui/toolbar/AcUiToolbarStyles.js.map +1 -0
  259. package/lib/ui/toolbar/acuiWrapPackLayout.d.ts +19 -0
  260. package/lib/ui/toolbar/acuiWrapPackLayout.d.ts.map +1 -0
  261. package/lib/ui/toolbar/acuiWrapPackLayout.js +36 -0
  262. package/lib/ui/toolbar/acuiWrapPackLayout.js.map +1 -0
  263. package/lib/ui/toolbar/index.d.ts +19 -0
  264. package/lib/ui/toolbar/index.d.ts.map +1 -0
  265. package/lib/ui/toolbar/index.js +15 -0
  266. package/lib/ui/toolbar/index.js.map +1 -0
  267. package/lib/ui/toolbar/resolveToolbarChrome.d.ts +14 -0
  268. package/lib/ui/toolbar/resolveToolbarChrome.d.ts.map +1 -0
  269. package/lib/ui/toolbar/resolveToolbarChrome.js +35 -0
  270. package/lib/ui/toolbar/resolveToolbarChrome.js.map +1 -0
  271. package/lib/ui/toolbar/resolveToolbarItemState.d.ts +63 -0
  272. package/lib/ui/toolbar/resolveToolbarItemState.d.ts.map +1 -0
  273. package/lib/ui/toolbar/resolveToolbarItemState.js +171 -0
  274. package/lib/ui/toolbar/resolveToolbarItemState.js.map +1 -0
  275. package/lib/ui/toolbar/toolbarItemUtils.d.ts +62 -0
  276. package/lib/ui/toolbar/toolbarItemUtils.d.ts.map +1 -0
  277. package/lib/ui/toolbar/toolbarItemUtils.js +184 -0
  278. package/lib/ui/toolbar/toolbarItemUtils.js.map +1 -0
  279. package/lib/ui/toolbar/types.d.ts +268 -0
  280. package/lib/ui/toolbar/types.d.ts.map +1 -0
  281. package/lib/ui/toolbar/types.js +8 -0
  282. package/lib/ui/toolbar/types.js.map +1 -0
  283. package/lib/ui-html-entry.d.ts +8 -1
  284. package/lib/ui-html-entry.d.ts.map +1 -1
  285. package/lib/ui-html-entry.js +6 -1
  286. package/lib/ui-html-entry.js.map +1 -1
  287. package/lib/util/AcApAnalyzeUnsupportedDrawing.d.ts +53 -0
  288. package/lib/util/AcApAnalyzeUnsupportedDrawing.d.ts.map +1 -0
  289. package/lib/util/AcApAnalyzeUnsupportedDrawing.js +164 -0
  290. package/lib/util/AcApAnalyzeUnsupportedDrawing.js.map +1 -0
  291. package/lib/util/AcApFormatFontMissedMessage.d.ts +32 -0
  292. package/lib/util/AcApFormatFontMissedMessage.d.ts.map +1 -0
  293. package/lib/util/AcApFormatFontMissedMessage.js +46 -0
  294. package/lib/util/AcApFormatFontMissedMessage.js.map +1 -0
  295. package/lib/util/AcApFormatUnsupportedEntitiesMessage.d.ts +44 -0
  296. package/lib/util/AcApFormatUnsupportedEntitiesMessage.d.ts.map +1 -0
  297. package/lib/util/AcApFormatUnsupportedEntitiesMessage.js +105 -0
  298. package/lib/util/AcApFormatUnsupportedEntitiesMessage.js.map +1 -0
  299. package/lib/util/index.d.ts +3 -0
  300. package/lib/util/index.d.ts.map +1 -1
  301. package/lib/util/index.js +3 -0
  302. package/lib/util/index.js.map +1 -1
  303. package/lib/view/AcTrLayer.d.ts +13 -1
  304. package/lib/view/AcTrLayer.d.ts.map +1 -1
  305. package/lib/view/AcTrLayer.js +28 -11
  306. package/lib/view/AcTrLayer.js.map +1 -1
  307. package/lib/view/AcTrLayout.d.ts +17 -2
  308. package/lib/view/AcTrLayout.d.ts.map +1 -1
  309. package/lib/view/AcTrLayout.js +44 -3
  310. package/lib/view/AcTrLayout.js.map +1 -1
  311. package/lib/view/AcTrScene.d.ts +4 -0
  312. package/lib/view/AcTrScene.d.ts.map +1 -1
  313. package/lib/view/AcTrScene.js +6 -0
  314. package/lib/view/AcTrScene.js.map +1 -1
  315. package/lib/view/AcTrView2d.d.ts +93 -14
  316. package/lib/view/AcTrView2d.d.ts.map +1 -1
  317. package/lib/view/AcTrView2d.js +382 -102
  318. package/lib/view/AcTrView2d.js.map +1 -1
  319. package/package.json +8 -8
  320. package/src/ui/icons.ts +387 -387
  321. package/lib/command/convert/AcApPngConvertor.d.ts.map +0 -1
  322. package/lib/command/convert/AcApPngConvertor.js.map +0 -1
@@ -0,0 +1,603 @@
1
+ var __values = (this && this.__values) || function(o) {
2
+ var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
3
+ if (m) return m.call(o);
4
+ if (o && typeof o.length === "number") return {
5
+ next: function () {
6
+ if (o && i >= o.length) o = void 0;
7
+ return { value: o && o[i++], done: !o };
8
+ }
9
+ };
10
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
11
+ };
12
+ /**
13
+ * Built-in notification bell / panel for hosts that do not supply their own center.
14
+ *
15
+ * Lives under `src/ui` (`AcUi*`) because it is presentational DOM chrome.
16
+ * The application service / store / event bridge remain under `src/app/notification` (`AcAp*`).
17
+ *
18
+ * @module AcUiDefaultNotificationUi
19
+ * @packageDocumentation
20
+ */
21
+ import { acapGroupNotifications } from '../app/notification/AcApNotificationTypes';
22
+ import { acedGetUiLayout, acedSubscribeUiLayout, ML_UI_SESSION_PANEL_INSET, ML_UI_SESSION_PANEL_WIDTH, ML_UI_Z_NOTIFICATION } from '../editor/global/AcEdUiLayout';
23
+ import { acedApplyUiTheme, acedSubscribeUiTheme, resolveUiTheme } from '../editor/global/AcEdUiTheme';
24
+ import { acapI18nTranslate } from '../util/AcApFormatUnsupportedEntitiesMessage';
25
+ /** DOM id for the injected stylesheet. */
26
+ var STYLE_ID = 'ml-ui-notification-center-styles';
27
+ /** Root CSS class prefix for the built-in notification chrome. */
28
+ var ROOT_CLASS = 'ml-ui-notification-center';
29
+ /** Gap between the shortcut toolbar bottom edge and the notification bell. */
30
+ var SHORTCUT_CLEARANCE_PX = 8;
31
+ /**
32
+ * Fallback when the shortcut toolbar is missing / hidden.
33
+ * Matches shortcut default top (12) + typical shell height + gap.
34
+ */
35
+ var FALLBACK_TOP_BELOW_SHORTCUT_PX = 12 + 40 + SHORTCUT_CLEARANCE_PX;
36
+ /**
37
+ * Built-in notification UI for hosts that do not supply their own center.
38
+ *
39
+ * Interaction (aligned with iOS Notification Center ideas, adapted to CAD chrome):
40
+ * - Hidden entirely when there are no notifications (no idle bell clutter).
41
+ * - With messages: show only a badge-bearing bell; the list opens on tap.
42
+ * - Anchored to the **canvas host** (view container), not the browser window.
43
+ * - Desktop / pad: bell at the host's bottom-right by default; pad panel is a
44
+ * top sheet sized like the session input panel.
45
+ * - Phone: bell sits **below** the shortcut toolbar (measured live); panel is
46
+ * a full-width top sheet + dimmed backdrop.
47
+ *
48
+ * Theme tokens follow {@link resolveUiTheme} / `--ml-ui-*`.
49
+ */
50
+ var AcUiDefaultNotificationUi = /** @class */ (function () {
51
+ /**
52
+ * Builds and mounts the default notification chrome.
53
+ *
54
+ * @param center - Center to observe and mutate (clear / remove).
55
+ * @param host - Element that owns the absolute overlay (typically the canvas container).
56
+ * @param options - Optional bell placement override.
57
+ */
58
+ function AcUiDefaultNotificationUi(center, host, options) {
59
+ if (options === void 0) { options = {}; }
60
+ var _this = this;
61
+ var _a, _b, _c;
62
+ /** Keys of collapsible groups the user has expanded. */
63
+ this._expandedGroups = new Set();
64
+ /** Whether the list panel is currently open. */
65
+ this._panelOpen = false;
66
+ /** Latest UI layout kind from {@link acedGetUiLayout}. */
67
+ this._layoutKind = 'desktop';
68
+ /** Unsubscribe callbacks for center / theme / layout subscriptions. */
69
+ this._unsubs = [];
70
+ /** Pending `requestAnimationFrame` id for {@link scheduleReposition}. */
71
+ this._repositionRaf = 0;
72
+ this._center = center;
73
+ this._host = host;
74
+ this._placement = options.placement;
75
+ ensureStyles();
76
+ if (getComputedStyle(host).position === 'static') {
77
+ host.style.position = 'relative';
78
+ }
79
+ this._root = document.createElement('div');
80
+ this._root.className = ROOT_CLASS;
81
+ this._root.hidden = true;
82
+ this._backdrop = document.createElement('button');
83
+ this._backdrop.type = 'button';
84
+ this._backdrop.className = "".concat(ROOT_CLASS, "__backdrop");
85
+ this._backdrop.hidden = true;
86
+ this._backdrop.setAttribute('aria-label', 'Close notifications');
87
+ this._backdrop.addEventListener('click', function () { return _this.setPanelOpen(false); });
88
+ this._bell = document.createElement('button');
89
+ this._bell.type = 'button';
90
+ this._bell.className = "".concat(ROOT_CLASS, "__bell");
91
+ this._bell.innerHTML =
92
+ '<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true"><path fill="currentColor" d="M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22Zm8-6V11a8 8 0 1 0-16 0v5L2 18v1h20v-1l-2-2Z"/></svg>';
93
+ this._bell.addEventListener('click', function (e) {
94
+ e.stopPropagation();
95
+ _this.setPanelOpen(!_this._panelOpen);
96
+ });
97
+ this._badge = document.createElement('span');
98
+ this._badge.className = "".concat(ROOT_CLASS, "__badge");
99
+ this._bell.appendChild(this._badge);
100
+ this._panel = document.createElement('div');
101
+ this._panel.className = "".concat(ROOT_CLASS, "__panel");
102
+ this._panel.hidden = true;
103
+ this._panel.setAttribute('role', 'dialog');
104
+ this._panel.setAttribute('aria-modal', 'true');
105
+ var header = document.createElement('div');
106
+ header.className = "".concat(ROOT_CLASS, "__header");
107
+ this._titleEl = document.createElement('span');
108
+ var clearBtn = document.createElement('button');
109
+ clearBtn.type = 'button';
110
+ clearBtn.className = "".concat(ROOT_CLASS, "__icon-btn");
111
+ clearBtn.textContent = '×';
112
+ clearBtn.addEventListener('click', function () { return _this._center.clear(); });
113
+ header.append(this._titleEl, clearBtn);
114
+ this._list = document.createElement('div');
115
+ this._list.className = "".concat(ROOT_CLASS, "__list");
116
+ this._panel.append(header, this._list);
117
+ this._root.append(this._backdrop, this._bell, this._panel);
118
+ this._host.appendChild(this._root);
119
+ this.applyTheme();
120
+ this.applyLayout(acedGetUiLayout());
121
+ this.refreshChromeLabels();
122
+ this._unsubs.push((_c = (_b = (_a = this._center).subscribe) === null || _b === void 0 ? void 0 : _b.call(_a, function () { return _this.render(); })) !== null && _c !== void 0 ? _c : (function () { return undefined; }));
123
+ this._unsubs.push(acedSubscribeUiTheme(function () { return _this.applyTheme(); }));
124
+ this._unsubs.push(acedSubscribeUiLayout(function (kind) {
125
+ _this.applyLayout(kind);
126
+ }));
127
+ this._onDocPointer = function (event) {
128
+ if (!_this._panelOpen)
129
+ return;
130
+ var target = event.target;
131
+ if (!target)
132
+ return;
133
+ if (_this._root.contains(target))
134
+ return;
135
+ _this.setPanelOpen(false);
136
+ };
137
+ document.addEventListener('pointerdown', this._onDocPointer, true);
138
+ this._onWindowResize = function () { return _this.scheduleReposition(); };
139
+ window.addEventListener('resize', this._onWindowResize);
140
+ if (typeof ResizeObserver !== 'undefined') {
141
+ this._shortcutObserver = new ResizeObserver(function () {
142
+ return _this.scheduleReposition();
143
+ });
144
+ this._shortcutObserver.observe(this._host);
145
+ var shell = findShortcutToolbarShell(this._host);
146
+ if (shell)
147
+ this._shortcutObserver.observe(shell);
148
+ }
149
+ this.render();
150
+ }
151
+ Object.defineProperty(AcUiDefaultNotificationUi.prototype, "placement", {
152
+ /**
153
+ * Explicit placement override, or `undefined` when using layout defaults.
154
+ */
155
+ get: function () {
156
+ return this._placement;
157
+ },
158
+ enumerable: false,
159
+ configurable: true
160
+ });
161
+ /**
162
+ * Sets or clears the bell corner placement.
163
+ *
164
+ * Pass `undefined` to restore layout-based defaults (phone `top-right`,
165
+ * pad / desktop `bottom-right`).
166
+ *
167
+ * @param placement - Corner placement, or `undefined` for auto.
168
+ */
169
+ AcUiDefaultNotificationUi.prototype.setPlacement = function (placement) {
170
+ if (this._placement === placement)
171
+ return;
172
+ this._placement = placement;
173
+ this.applyLayout(this._layoutKind);
174
+ };
175
+ /**
176
+ * Applies the current UI theme tokens to the overlay root.
177
+ */
178
+ AcUiDefaultNotificationUi.prototype.applyTheme = function () {
179
+ acedApplyUiTheme(resolveUiTheme(this._host), this._root);
180
+ };
181
+ /**
182
+ * Updates layout modifier classes and repositions top-anchored chrome.
183
+ *
184
+ * @param kind - Responsive layout kind (`phone` / `pad` / `desktop`).
185
+ */
186
+ AcUiDefaultNotificationUi.prototype.applyLayout = function (kind) {
187
+ this._layoutKind = kind;
188
+ var placement = this.resolvePlacement();
189
+ var topAnchor = isTopPlacement(placement);
190
+ var rightSide = isRightPlacement(placement);
191
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--phone"), kind === 'phone');
192
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--pad"), kind === 'pad');
193
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--desktop"), kind === 'desktop');
194
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--sheet"), usesSheetPanel(kind));
195
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--top-anchor"), topAnchor);
196
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--bottom-anchor"), !topAnchor);
197
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--right"), rightSide);
198
+ this._root.classList.toggle("".concat(ROOT_CLASS, "--left"), !rightSide);
199
+ this.syncPanelVisibility();
200
+ this.scheduleReposition();
201
+ };
202
+ /**
203
+ * Effective bell placement (explicit override or layout default).
204
+ */
205
+ AcUiDefaultNotificationUi.prototype.resolvePlacement = function () {
206
+ if (this._placement)
207
+ return this._placement;
208
+ return this._layoutKind === 'phone' ? 'top-right' : 'bottom-right';
209
+ };
210
+ /**
211
+ * Places the bell below the live shortcut toolbar when using a top
212
+ * placement. Bottom placements use CSS on the full-host root.
213
+ *
214
+ * The root always covers the canvas host (`inset: 0`) so panel `width: 100%`
215
+ * resolves against the drawing area, not the 36px bell box.
216
+ */
217
+ AcUiDefaultNotificationUi.prototype.repositionChrome = function () {
218
+ // Root always fills the host; never pin the root box to the bell.
219
+ this._root.style.top = '';
220
+ this._root.style.right = '';
221
+ this._root.style.bottom = '';
222
+ this._root.style.left = '';
223
+ // Sheet panels (phone / pad) are positioned by CSS, not under the bell.
224
+ if (usesSheetPanel(this._layoutKind)) {
225
+ this._panel.style.top = '';
226
+ this._panel.style.right = '';
227
+ this._panel.style.left = '';
228
+ this._panel.style.bottom = '';
229
+ }
230
+ if (!isTopPlacement(this.resolvePlacement())) {
231
+ this._bell.style.top = '';
232
+ this._bell.style.right = '';
233
+ this._bell.style.bottom = '';
234
+ this._bell.style.left = '';
235
+ if (!usesSheetPanel(this._layoutKind)) {
236
+ this._panel.style.top = '';
237
+ this._panel.style.right = '';
238
+ this._panel.style.left = '';
239
+ }
240
+ return;
241
+ }
242
+ var gap = SHORTCUT_CLEARANCE_PX;
243
+ var top = FALLBACK_TOP_BELOW_SHORTCUT_PX;
244
+ var shell = findShortcutToolbarShell(this._host);
245
+ if (shell) {
246
+ if (this._shortcutObserver) {
247
+ try {
248
+ this._shortcutObserver.observe(shell);
249
+ }
250
+ catch (_a) {
251
+ // Already observed.
252
+ }
253
+ }
254
+ var hostRect = this._host.getBoundingClientRect();
255
+ var shellRect = shell.getBoundingClientRect();
256
+ top = Math.round(shellRect.bottom - hostRect.top + gap);
257
+ }
258
+ top = Math.max(gap, top);
259
+ var edge = '12px';
260
+ var rightSide = isRightPlacement(this.resolvePlacement());
261
+ this._bell.style.top = "".concat(top, "px");
262
+ this._bell.style.bottom = 'auto';
263
+ if (rightSide) {
264
+ this._bell.style.right = edge;
265
+ this._bell.style.left = 'auto';
266
+ }
267
+ else {
268
+ this._bell.style.left = edge;
269
+ this._bell.style.right = 'auto';
270
+ }
271
+ // Desktop popover under the bell when top-placed via API.
272
+ if (!usesSheetPanel(this._layoutKind)) {
273
+ this._panel.style.top = "".concat(top + 44, "px");
274
+ this._panel.style.bottom = 'auto';
275
+ if (rightSide) {
276
+ this._panel.style.right = edge;
277
+ this._panel.style.left = 'auto';
278
+ }
279
+ else {
280
+ this._panel.style.left = edge;
281
+ this._panel.style.right = 'auto';
282
+ }
283
+ }
284
+ };
285
+ /**
286
+ * Coalesces reposition work onto the next animation frame.
287
+ */
288
+ AcUiDefaultNotificationUi.prototype.scheduleReposition = function () {
289
+ var _this = this;
290
+ if (this._repositionRaf) {
291
+ cancelAnimationFrame(this._repositionRaf);
292
+ }
293
+ this._repositionRaf = requestAnimationFrame(function () {
294
+ _this._repositionRaf = 0;
295
+ _this.repositionChrome();
296
+ });
297
+ };
298
+ /**
299
+ * Refreshes localized title / aria labels on the bell and panel.
300
+ */
301
+ AcUiDefaultNotificationUi.prototype.refreshChromeLabels = function () {
302
+ var title = acapI18nTranslate('main.notification.center.title');
303
+ this._bell.title = title;
304
+ this._bell.setAttribute('aria-label', title);
305
+ this._titleEl.textContent = title;
306
+ this._panel.setAttribute('aria-label', title);
307
+ };
308
+ /**
309
+ * Opens or closes the notification panel.
310
+ *
311
+ * Forced closed when the active session has no messages.
312
+ *
313
+ * @param open - Desired open state.
314
+ */
315
+ AcUiDefaultNotificationUi.prototype.setPanelOpen = function (open) {
316
+ if (this._center.notifications.length === 0) {
317
+ open = false;
318
+ }
319
+ this._panelOpen = open;
320
+ this.syncPanelVisibility();
321
+ if (open)
322
+ this.renderList();
323
+ };
324
+ /**
325
+ * Syncs root / panel / backdrop visibility from message count and panel state.
326
+ */
327
+ AcUiDefaultNotificationUi.prototype.syncPanelVisibility = function () {
328
+ var hasMessages = this._center.notifications.length > 0;
329
+ this._root.hidden = !hasMessages;
330
+ this._panel.hidden = !hasMessages || !this._panelOpen;
331
+ var showBackdrop = hasMessages && this._panelOpen && usesSheetPanel(this._layoutKind);
332
+ this._backdrop.hidden = !showBackdrop;
333
+ this._bell.setAttribute('aria-expanded', String(this._panelOpen));
334
+ if (hasMessages) {
335
+ this.scheduleReposition();
336
+ }
337
+ };
338
+ /**
339
+ * Reacts to center changes: updates the badge and optionally refreshes the open list.
340
+ */
341
+ AcUiDefaultNotificationUi.prototype.render = function () {
342
+ var count = this._center.notifications.length;
343
+ if (count === 0) {
344
+ this._panelOpen = false;
345
+ this._expandedGroups.clear();
346
+ this.syncPanelVisibility();
347
+ return;
348
+ }
349
+ this._badge.textContent = count > 99 ? '99+' : String(count);
350
+ this.syncPanelVisibility();
351
+ if (this._panelOpen) {
352
+ this.renderList();
353
+ }
354
+ };
355
+ /**
356
+ * Rebuilds the panel list from the active session's notifications.
357
+ */
358
+ AcUiDefaultNotificationUi.prototype.renderList = function () {
359
+ var e_1, _a;
360
+ this.refreshChromeLabels();
361
+ this._list.replaceChildren();
362
+ var notifications = this._center.notifications;
363
+ if (notifications.length === 0) {
364
+ var empty = document.createElement('div');
365
+ empty.className = "".concat(ROOT_CLASS, "__empty");
366
+ empty.textContent = acapI18nTranslate('main.notification.center.noNotifications');
367
+ this._list.appendChild(empty);
368
+ return;
369
+ }
370
+ try {
371
+ for (var _b = __values(acapGroupNotifications(notifications)), _c = _b.next(); !_c.done; _c = _b.next()) {
372
+ var group = _c.value;
373
+ if (group.collapsible) {
374
+ this._list.appendChild(this.renderGroup(group));
375
+ }
376
+ else {
377
+ this._list.appendChild(this.renderItem(group.items[0]));
378
+ }
379
+ }
380
+ }
381
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
382
+ finally {
383
+ try {
384
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
385
+ }
386
+ finally { if (e_1) throw e_1.error; }
387
+ }
388
+ };
389
+ /**
390
+ * Renders a collapsible group header (and expanded body when open).
391
+ *
392
+ * @param group - Groupable notification cluster.
393
+ * @returns DOM subtree for the group.
394
+ */
395
+ AcUiDefaultNotificationUi.prototype.renderGroup = function (group) {
396
+ var e_2, _a;
397
+ var _this = this;
398
+ var wrap = document.createElement('div');
399
+ wrap.className = "".concat(ROOT_CLASS, "__group");
400
+ var header = document.createElement('button');
401
+ header.type = 'button';
402
+ header.className = "".concat(ROOT_CLASS, "__group-header");
403
+ var expanded = this._expandedGroups.has(group.key);
404
+ header.innerHTML = "<span class=\"".concat(ROOT_CLASS, "__group-title\">").concat(escapeHtml(groupTitle(group)), "</span><span class=\"").concat(ROOT_CLASS, "__group-summary\">").concat(escapeHtml(groupSummary(group)), "</span>");
405
+ header.addEventListener('click', function () {
406
+ if (_this._expandedGroups.has(group.key)) {
407
+ _this._expandedGroups.delete(group.key);
408
+ }
409
+ else {
410
+ _this._expandedGroups.add(group.key);
411
+ }
412
+ _this.renderList();
413
+ });
414
+ wrap.appendChild(header);
415
+ if (expanded) {
416
+ var body = document.createElement('div');
417
+ body.className = "".concat(ROOT_CLASS, "__group-body");
418
+ try {
419
+ for (var _b = __values(group.items), _c = _b.next(); !_c.done; _c = _b.next()) {
420
+ var item = _c.value;
421
+ body.appendChild(this.renderItem(item));
422
+ }
423
+ }
424
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
425
+ finally {
426
+ try {
427
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
428
+ }
429
+ finally { if (e_2) throw e_2.error; }
430
+ }
431
+ wrap.appendChild(body);
432
+ }
433
+ return wrap;
434
+ };
435
+ /**
436
+ * Renders a single notification row with optional message and dismiss control.
437
+ *
438
+ * @param notification - Entry to display.
439
+ * @returns DOM subtree for the item.
440
+ */
441
+ AcUiDefaultNotificationUi.prototype.renderItem = function (notification) {
442
+ var _this = this;
443
+ var item = document.createElement('div');
444
+ item.className = "".concat(ROOT_CLASS, "__item ").concat(ROOT_CLASS, "__item--").concat(notification.type);
445
+ var title = document.createElement('div');
446
+ title.className = "".concat(ROOT_CLASS, "__item-title");
447
+ title.textContent = notification.title;
448
+ var close = document.createElement('button');
449
+ close.type = 'button';
450
+ close.className = "".concat(ROOT_CLASS, "__icon-btn");
451
+ close.textContent = '×';
452
+ close.addEventListener('click', function () { return _this._center.remove(notification.id); });
453
+ var head = document.createElement('div');
454
+ head.className = "".concat(ROOT_CLASS, "__item-head");
455
+ head.append(title, close);
456
+ item.appendChild(head);
457
+ if (notification.message) {
458
+ var message = document.createElement('div');
459
+ message.className = "".concat(ROOT_CLASS, "__item-message");
460
+ message.textContent = notification.message;
461
+ item.appendChild(message);
462
+ }
463
+ return item;
464
+ };
465
+ /**
466
+ * Unsubscribes listeners, disconnects observers, and removes the overlay from the DOM.
467
+ */
468
+ AcUiDefaultNotificationUi.prototype.dispose = function () {
469
+ var e_3, _a;
470
+ var _b;
471
+ try {
472
+ for (var _c = __values(this._unsubs), _d = _c.next(); !_d.done; _d = _c.next()) {
473
+ var unsub = _d.value;
474
+ unsub();
475
+ }
476
+ }
477
+ catch (e_3_1) { e_3 = { error: e_3_1 }; }
478
+ finally {
479
+ try {
480
+ if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
481
+ }
482
+ finally { if (e_3) throw e_3.error; }
483
+ }
484
+ this._unsubs.length = 0;
485
+ document.removeEventListener('pointerdown', this._onDocPointer, true);
486
+ window.removeEventListener('resize', this._onWindowResize);
487
+ (_b = this._shortcutObserver) === null || _b === void 0 ? void 0 : _b.disconnect();
488
+ this._shortcutObserver = undefined;
489
+ if (this._repositionRaf) {
490
+ cancelAnimationFrame(this._repositionRaf);
491
+ this._repositionRaf = 0;
492
+ }
493
+ this._root.remove();
494
+ };
495
+ return AcUiDefaultNotificationUi;
496
+ }());
497
+ export { AcUiDefaultNotificationUi };
498
+ /**
499
+ * Whether the layout uses a top sheet panel (phone full-bleed / pad session width).
500
+ *
501
+ * @param kind - Current UI layout kind.
502
+ */
503
+ function usesSheetPanel(kind) {
504
+ return kind === 'phone' || kind === 'pad';
505
+ }
506
+ /**
507
+ * @param placement - Bell placement.
508
+ * @returns `true` when the bell is top-anchored.
509
+ */
510
+ function isTopPlacement(placement) {
511
+ return placement === 'top-right' || placement === 'top-left';
512
+ }
513
+ /**
514
+ * @param placement - Bell placement.
515
+ * @returns `true` when the bell is on the right edge.
516
+ */
517
+ function isRightPlacement(placement) {
518
+ return placement === 'top-right' || placement === 'bottom-right';
519
+ }
520
+ /**
521
+ * Finds the visible shortcut toolbar shell near the canvas host.
522
+ *
523
+ * @param host - Canvas host used for a scoped query first.
524
+ * @returns Visible toolbar shell element, or `null` when absent / hidden.
525
+ */
526
+ function findShortcutToolbarShell(host) {
527
+ var visible = function (el) {
528
+ return !!el &&
529
+ el instanceof HTMLElement &&
530
+ !el.hasAttribute('hidden') &&
531
+ el.getClientRects().length > 0;
532
+ };
533
+ var scoped = host.querySelector('.ml-ui-shortcut-toolbar-shell');
534
+ if (visible(scoped))
535
+ return scoped;
536
+ var global = document.querySelector('.ml-ui-shortcut-toolbar-shell');
537
+ if (visible(global))
538
+ return global;
539
+ return null;
540
+ }
541
+ /**
542
+ * Localized title for a notification group header.
543
+ *
544
+ * @param group - Group produced by {@link acapGroupNotifications}.
545
+ * @returns Localized source title, or the first item title as fallback.
546
+ */
547
+ function groupTitle(group) {
548
+ var _a, _b;
549
+ var source = group.source;
550
+ if (source === 'font-missed') {
551
+ return acapI18nTranslate('main.notification.group.fontMissed');
552
+ }
553
+ if (source === 'unsupported-entities') {
554
+ return acapI18nTranslate('main.notification.group.unsupportedEntities');
555
+ }
556
+ return (_b = (_a = group.items[0]) === null || _a === void 0 ? void 0 : _a.title) !== null && _b !== void 0 ? _b : '';
557
+ }
558
+ /**
559
+ * Localized summary line under a collapsible group header.
560
+ *
561
+ * @param group - Group produced by {@link acapGroupNotifications}.
562
+ * @returns Localized summary including the item count.
563
+ */
564
+ function groupSummary(group) {
565
+ var count = group.items.length;
566
+ if (group.source === 'font-missed') {
567
+ return acapI18nTranslate('main.notification.group.fontMissedSummary', {
568
+ count: count
569
+ });
570
+ }
571
+ if (group.source === 'unsupported-entities') {
572
+ return acapI18nTranslate('main.notification.group.unsupportedEntitiesSummary', { count: count });
573
+ }
574
+ return acapI18nTranslate('main.notification.group.genericSummary', { count: count });
575
+ }
576
+ /**
577
+ * Escapes text for safe interpolation into HTML attribute / content strings.
578
+ *
579
+ * @param text - Raw text.
580
+ * @returns HTML-escaped string.
581
+ */
582
+ function escapeHtml(text) {
583
+ return text
584
+ .replace(/&/g, '&amp;')
585
+ .replace(/</g, '&lt;')
586
+ .replace(/>/g, '&gt;')
587
+ .replace(/"/g, '&quot;');
588
+ }
589
+ /**
590
+ * Injects (or replaces) the built-in notification center stylesheet.
591
+ */
592
+ function ensureStyles() {
593
+ if (typeof document === 'undefined')
594
+ return;
595
+ var existing = document.getElementById(STYLE_ID);
596
+ if (existing)
597
+ existing.remove();
598
+ var style = document.createElement('style');
599
+ style.id = STYLE_ID;
600
+ style.textContent = "\n.".concat(ROOT_CLASS, " {\n /* Fill the canvas host so panel % widths resolve against the drawing area. */\n position: absolute;\n inset: 0;\n z-index: ").concat(ML_UI_Z_NOTIFICATION, ";\n font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;\n font-size: 13px;\n color: var(--ml-ui-text);\n pointer-events: none;\n}\n.").concat(ROOT_CLASS, "[hidden],\n.").concat(ROOT_CLASS, "__backdrop[hidden],\n.").concat(ROOT_CLASS, "__panel[hidden] {\n display: none !important;\n}\n.").concat(ROOT_CLASS, " > * {\n pointer-events: auto;\n}\n.").concat(ROOT_CLASS, "__backdrop {\n /* Cover the canvas host only \u2014 not the full browser viewport. */\n position: absolute;\n inset: 0;\n z-index: 0;\n margin: 0;\n padding: 0;\n border: none;\n cursor: pointer;\n background: var(--ml-ui-overlay);\n}\n.").concat(ROOT_CLASS, "__bell {\n position: absolute;\n z-index: 2;\n width: 36px;\n height: 36px;\n border-radius: 50%;\n border: 1px solid var(--ml-ui-border);\n background: var(--ml-ui-bg);\n color: var(--ml-ui-text);\n cursor: pointer;\n box-shadow: var(--ml-ui-shadow);\n display: inline-flex;\n align-items: center;\n justify-content: center;\n}\n.").concat(ROOT_CLASS, "--bottom-anchor.").concat(ROOT_CLASS, "--right .").concat(ROOT_CLASS, "__bell {\n right: 12px;\n bottom: max(12px, env(safe-area-inset-bottom, 0px));\n}\n.").concat(ROOT_CLASS, "--bottom-anchor.").concat(ROOT_CLASS, "--left .").concat(ROOT_CLASS, "__bell {\n left: 12px;\n bottom: max(12px, env(safe-area-inset-bottom, 0px));\n}\n.").concat(ROOT_CLASS, "__bell:hover {\n color: var(--ml-ui-accent);\n}\n.").concat(ROOT_CLASS, "__badge {\n position: absolute;\n top: -4px;\n right: -4px;\n min-width: 16px;\n height: 16px;\n padding: 0 4px;\n border-radius: 8px;\n background: var(--ml-ui-danger);\n color: #fff;\n font-size: 10px;\n line-height: 16px;\n text-align: center;\n}\n.").concat(ROOT_CLASS, "__panel {\n position: absolute;\n z-index: 2;\n display: flex;\n flex-direction: column;\n background: var(--ml-ui-bg);\n border: 1px solid var(--ml-ui-border);\n box-shadow: var(--ml-ui-shadow);\n overflow: hidden;\n}\n.").concat(ROOT_CLASS, "--bottom-anchor.").concat(ROOT_CLASS, "--right:not(.").concat(ROOT_CLASS, "--sheet) .").concat(ROOT_CLASS, "__panel {\n right: 12px;\n bottom: calc(max(12px, env(safe-area-inset-bottom, 0px)) + 44px);\n width: min(360px, calc(100% - 24px));\n max-height: min(420px, 60%);\n border-radius: 8px;\n}\n.").concat(ROOT_CLASS, "--bottom-anchor.").concat(ROOT_CLASS, "--left:not(.").concat(ROOT_CLASS, "--sheet) .").concat(ROOT_CLASS, "__panel {\n left: 12px;\n bottom: calc(max(12px, env(safe-area-inset-bottom, 0px)) + 44px);\n width: min(360px, calc(100% - 24px));\n max-height: min(420px, 60%);\n border-radius: 8px;\n}\n.").concat(ROOT_CLASS, "--top-anchor:not(.").concat(ROOT_CLASS, "--sheet) .").concat(ROOT_CLASS, "__panel {\n /* top/left/right set inline under the bell */\n width: min(360px, calc(100% - 24px));\n max-height: min(420px, 55%);\n border-radius: 8px;\n}\n.").concat(ROOT_CLASS, "--phone.").concat(ROOT_CLASS, "--sheet .").concat(ROOT_CLASS, "__panel {\n /* Sheet spans the canvas host, not the browser viewport. */\n top: 0;\n left: 0;\n right: 0;\n width: 100%;\n max-height: min(55%, 420px);\n border-radius: 0 0 12px 12px;\n border-left: none;\n border-right: none;\n border-top: none;\n padding-top: env(safe-area-inset-top, 0px);\n}\n.").concat(ROOT_CLASS, "--pad.").concat(ROOT_CLASS, "--sheet .").concat(ROOT_CLASS, "__panel {\n /* Same top-sheet interaction as phone; width matches pad session panel.\n * Cap against the canvas host (100%), not the browser viewport (100vw),\n * so a narrow host inside a wide window does not overflow the drawing area. */\n top: 0;\n left: 50%;\n right: auto;\n transform: translateX(-50%);\n width: ").concat(ML_UI_SESSION_PANEL_WIDTH, "px;\n max-width: calc(100% - ").concat(ML_UI_SESSION_PANEL_INSET, "px);\n max-height: min(55%, 420px);\n border-radius: 0 0 12px 12px;\n border-top: none;\n padding-top: env(safe-area-inset-top, 0px);\n}\n.").concat(ROOT_CLASS, "__header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 10px 12px;\n border-bottom: 1px solid var(--ml-ui-border);\n font-weight: 600;\n color: var(--ml-ui-text);\n}\n.").concat(ROOT_CLASS, "__list {\n overflow: auto;\n max-height: inherit;\n flex: 1;\n}\n.").concat(ROOT_CLASS, "__empty {\n padding: 28px 16px;\n text-align: center;\n color: var(--ml-ui-text-muted);\n}\n.").concat(ROOT_CLASS, "__item {\n padding: 10px 12px;\n border-bottom: 1px solid var(--ml-ui-border);\n}\n.").concat(ROOT_CLASS, "__item-head {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n gap: 8px;\n}\n.").concat(ROOT_CLASS, "__item-title {\n font-weight: 600;\n line-height: 1.35;\n color: var(--ml-ui-text);\n}\n.").concat(ROOT_CLASS, "__item-message {\n margin-top: 4px;\n color: var(--ml-ui-text-muted);\n line-height: 1.4;\n word-break: break-word;\n}\n.").concat(ROOT_CLASS, "__item--warning .").concat(ROOT_CLASS, "__item-title {\n color: var(--el-color-warning, #e6a23c);\n}\n.").concat(ROOT_CLASS, "__item--error .").concat(ROOT_CLASS, "__item-title {\n color: var(--ml-ui-danger);\n}\n.").concat(ROOT_CLASS, "__item--success .").concat(ROOT_CLASS, "__item-title {\n color: var(--el-color-success, #67c23a);\n}\n.").concat(ROOT_CLASS, "__item--info .").concat(ROOT_CLASS, "__item-title {\n color: var(--ml-ui-accent);\n}\n.").concat(ROOT_CLASS, "__icon-btn {\n border: none;\n background: transparent;\n cursor: pointer;\n font-size: 16px;\n line-height: 1;\n color: var(--ml-ui-text-muted);\n padding: 0 2px;\n}\n.").concat(ROOT_CLASS, "__group-header {\n width: 100%;\n text-align: left;\n border: none;\n background: color-mix(in srgb, var(--ml-ui-text) 4%, var(--ml-ui-bg));\n cursor: pointer;\n padding: 10px 12px;\n border-bottom: 1px solid var(--ml-ui-border);\n color: var(--ml-ui-text);\n}\n.").concat(ROOT_CLASS, "__group-title {\n display: block;\n font-weight: 600;\n}\n.").concat(ROOT_CLASS, "__group-summary {\n display: block;\n margin-top: 2px;\n color: var(--ml-ui-text-muted);\n font-size: 12px;\n}\n.").concat(ROOT_CLASS, "__group-body .").concat(ROOT_CLASS, "__item {\n padding-left: 20px;\n}\n");
601
+ document.head.appendChild(style);
602
+ }
603
+ //# sourceMappingURL=AcUiDefaultNotificationUi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AcUiDefaultNotificationUi.js","sourceRoot":"","sources":["../../src/ui/AcUiDefaultNotificationUi.ts"],"names":[],"mappings":"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"}
@@ -46,7 +46,8 @@ export declare function acuiShouldShowDrawStyleToolbar(kind: AcUiDrawStyleKind |
46
46
  * sync and apply target the measure or markup store while the command runs.
47
47
  * Desktop mounts are suppressed when the ribbon already exposes the same UI, or
48
48
  * when the shortcut toolbar is visible (it owns the desktop draw-style slot).
49
- * Mobile mounts still target the session-panel accessory host.
49
+ * Phone/pad mounts target the session-panel accessory host (resolved even before
50
+ * the panel opens so `trigger` can attach controls on the first row).
50
51
  *
51
52
  * @param command - Command that should expose color / font-size session UI.
52
53
  */
@@ -1 +1 @@
1
- {"version":3,"file":"AcUiDrawStyle.d.ts","sourceRoot":"","sources":["../../src/ui/AcUiDrawStyle.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,KAAK,oBAAoB,EAE1B,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,yBAAyB,CAAA;AAMhC;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,iBAAiB,CAAA;AAEjD,kDAAkD;AAClD,MAAM,WAAW,6BAA6B;IAC5C,gDAAgD;IAChD,WAAW,CAAC,EAAE,iBAAiB,CAAA;IAC/B,8CAA8C;IAC9C,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,mDAAmD;IACnD,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B;AAED;;;;;;;;;GASG;AACH,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,6BAA6B,GACnC,iBAAiB,GAAG,SAAS,CAM/B;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,8BAA8B,CAC5C,IAAI,EAAE,iBAAiB,GAAG,SAAS,EACnC,UAAU,GAAE,OAAkD,GAC7D,OAAO,CAET;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,iCAAiC,CAAC,OAAO,EAAE;IACzD,6DAA6D;IAC7D,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,sDAAsD;IACtD,gBAAgB,EAAE,oBAAoB,GAAG,IAAI,CAAA;CAC9C,GAAG,IAAI,CA+CP"}
1
+ {"version":3,"file":"AcUiDrawStyle.d.ts","sourceRoot":"","sources":["../../src/ui/AcUiDrawStyle.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,KAAK,oBAAoB,EAE1B,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EACL,KAAK,iBAAiB,EAEvB,MAAM,yBAAyB,CAAA;AAMhC;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,iBAAiB,CAAA;AAEjD,kDAAkD;AAClD,MAAM,WAAW,6BAA6B;IAC5C,gDAAgD;IAChD,WAAW,CAAC,EAAE,iBAAiB,CAAA;IAC/B,8CAA8C;IAC9C,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,mDAAmD;IACnD,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B;AAED;;;;;;;;;GASG;AACH,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,6BAA6B,GACnC,iBAAiB,GAAG,SAAS,CAM/B;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,8BAA8B,CAC5C,IAAI,EAAE,iBAAiB,GAAG,SAAS,EACnC,UAAU,GAAE,OAAkD,GAC7D,OAAO,CAET;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,iCAAiC,CAAC,OAAO,EAAE;IACzD,6DAA6D;IAC7D,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,sDAAsD;IACtD,gBAAgB,EAAE,oBAAoB,GAAG,IAAI,CAAA;CAC9C,GAAG,IAAI,CA+CP"}