kritzel-stencil 0.0.126 → 0.0.128

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 (451) hide show
  1. package/dist/cjs/app-globals-V2Kpy_OQ.js +8 -0
  2. package/dist/cjs/app-globals-V2Kpy_OQ.js.map +1 -0
  3. package/dist/cjs/index-C7Read21.js +2638 -0
  4. package/dist/cjs/index-C7Read21.js.map +1 -0
  5. package/dist/cjs/index-CUSIflVf.js +1597 -0
  6. package/dist/cjs/index-CUSIflVf.js.map +1 -0
  7. package/dist/cjs/index.cjs.js +17 -0
  8. package/dist/cjs/index.cjs.js.map +1 -0
  9. package/dist/cjs/kritzel-brush-style_22.cjs.entry.js +3133 -0
  10. package/dist/cjs/loader.cjs.js +14 -0
  11. package/dist/cjs/loader.cjs.js.map +1 -0
  12. package/dist/cjs/stencil.cjs.js +26 -0
  13. package/dist/cjs/stencil.cjs.js.map +1 -0
  14. package/dist/collection/classes/commands/add-object.command.js +17 -0
  15. package/dist/collection/classes/commands/add-object.command.js.map +1 -0
  16. package/dist/collection/classes/commands/add-selection-group.command.js +20 -0
  17. package/dist/collection/classes/commands/add-selection-group.command.js.map +1 -0
  18. package/dist/collection/classes/commands/base.command.js +15 -0
  19. package/dist/collection/classes/commands/base.command.js.map +1 -0
  20. package/dist/collection/classes/commands/batch.command.js +14 -0
  21. package/dist/collection/classes/commands/batch.command.js.map +1 -0
  22. package/dist/collection/classes/commands/move-selection-group.command.js +25 -0
  23. package/dist/collection/classes/commands/move-selection-group.command.js.map +1 -0
  24. package/dist/collection/classes/commands/remove-object.command.js +20 -0
  25. package/dist/collection/classes/commands/remove-object.command.js.map +1 -0
  26. package/dist/collection/classes/commands/remove-selection-group.command.js +18 -0
  27. package/dist/collection/classes/commands/remove-selection-group.command.js.map +1 -0
  28. package/dist/collection/classes/commands/resize-selection-group.command.js +18 -0
  29. package/dist/collection/classes/commands/resize-selection-group.command.js.map +1 -0
  30. package/dist/collection/classes/commands/rotate-selection-group.command.js +24 -0
  31. package/dist/collection/classes/commands/rotate-selection-group.command.js.map +1 -0
  32. package/dist/collection/classes/commands/update-object.command.js +32 -0
  33. package/dist/collection/classes/commands/update-object.command.js.map +1 -0
  34. package/dist/collection/classes/commands/update-viewport.command.js +23 -0
  35. package/dist/collection/classes/commands/update-viewport.command.js.map +1 -0
  36. package/dist/collection/classes/database.class.js +227 -0
  37. package/dist/collection/classes/database.class.js.map +1 -0
  38. package/dist/collection/classes/handlers/base.handler.js +7 -0
  39. package/dist/collection/classes/handlers/base.handler.js.map +1 -0
  40. package/dist/collection/classes/handlers/context-menu.handler.js +47 -0
  41. package/dist/collection/classes/handlers/context-menu.handler.js.map +1 -0
  42. package/dist/collection/classes/handlers/hover.handler.js +19 -0
  43. package/dist/collection/classes/handlers/hover.handler.js.map +1 -0
  44. package/dist/collection/classes/handlers/key.handler.js +80 -0
  45. package/dist/collection/classes/handlers/key.handler.js.map +1 -0
  46. package/dist/collection/classes/handlers/move.handler.js +100 -0
  47. package/dist/collection/classes/handlers/move.handler.js.map +1 -0
  48. package/dist/collection/classes/handlers/resize.handler.js +158 -0
  49. package/dist/collection/classes/handlers/resize.handler.js.map +1 -0
  50. package/dist/collection/classes/handlers/rotation.handler.js +118 -0
  51. package/dist/collection/classes/handlers/rotation.handler.js.map +1 -0
  52. package/dist/collection/classes/handlers/selection.handler.js +200 -0
  53. package/dist/collection/classes/handlers/selection.handler.js.map +1 -0
  54. package/dist/collection/classes/history.class.js +84 -0
  55. package/dist/collection/classes/history.class.js.map +1 -0
  56. package/dist/collection/classes/objects/base-object.class.js +205 -0
  57. package/dist/collection/classes/objects/base-object.class.js.map +1 -0
  58. package/dist/collection/classes/objects/custom-element.class.js +53 -0
  59. package/dist/collection/classes/objects/custom-element.class.js.map +1 -0
  60. package/dist/collection/classes/objects/image.class.js +54 -0
  61. package/dist/collection/classes/objects/image.class.js.map +1 -0
  62. package/dist/collection/classes/objects/path.class.js +269 -0
  63. package/dist/collection/classes/objects/path.class.js.map +1 -0
  64. package/dist/collection/classes/objects/selection-box.class.js +23 -0
  65. package/dist/collection/classes/objects/selection-box.class.js.map +1 -0
  66. package/dist/collection/classes/objects/selection-group.class.js +158 -0
  67. package/dist/collection/classes/objects/selection-group.class.js.map +1 -0
  68. package/dist/collection/classes/objects/text.class.js +144 -0
  69. package/dist/collection/classes/objects/text.class.js.map +1 -0
  70. package/dist/{stencil/icon-registry.class-Bw5YkOTi.js → collection/classes/registries/icon-registry.class.js} +7 -7
  71. package/dist/collection/classes/registries/icon-registry.class.js.map +1 -0
  72. package/dist/collection/classes/registries/tool.registry.js +18 -0
  73. package/dist/collection/classes/registries/tool.registry.js.map +1 -0
  74. package/dist/collection/classes/reviver.class.js +66 -0
  75. package/dist/collection/classes/reviver.class.js.map +1 -0
  76. package/dist/collection/classes/store.class.js +410 -0
  77. package/dist/collection/classes/store.class.js.map +1 -0
  78. package/dist/collection/classes/structures/circular-buffer.structure.js +46 -0
  79. package/dist/collection/classes/structures/circular-buffer.structure.js.map +1 -0
  80. package/dist/collection/classes/structures/octree.structure.js +115 -0
  81. package/dist/collection/classes/structures/octree.structure.js.map +1 -0
  82. package/dist/collection/classes/tools/base-tool.class.js +31 -0
  83. package/dist/collection/classes/tools/base-tool.class.js.map +1 -0
  84. package/dist/collection/classes/tools/brush-tool.class.js +116 -0
  85. package/dist/collection/classes/tools/brush-tool.class.js.map +1 -0
  86. package/dist/collection/classes/tools/eraser-tool.class.js +86 -0
  87. package/dist/collection/classes/tools/eraser-tool.class.js.map +1 -0
  88. package/dist/collection/classes/tools/image-tool.class.js +91 -0
  89. package/dist/collection/classes/tools/image-tool.class.js.map +1 -0
  90. package/dist/collection/classes/tools/selection-tool.class.js +156 -0
  91. package/dist/collection/classes/tools/selection-tool.class.js.map +1 -0
  92. package/dist/collection/classes/tools/text-tool.class.js +116 -0
  93. package/dist/collection/classes/tools/text-tool.class.js.map +1 -0
  94. package/dist/collection/classes/viewport.class.js +152 -0
  95. package/dist/collection/classes/viewport.class.js.map +1 -0
  96. package/dist/collection/classes/workspace.class.js +10 -0
  97. package/dist/collection/classes/workspace.class.js.map +1 -0
  98. package/dist/collection/collection-manifest.json +33 -0
  99. package/dist/collection/components/core/kritzel-cursor-trail/kritzel-cursor-trail.css +10 -0
  100. package/dist/collection/components/core/kritzel-cursor-trail/kritzel-cursor-trail.js +154 -0
  101. package/dist/collection/components/core/kritzel-cursor-trail/kritzel-cursor-trail.js.map +1 -0
  102. package/dist/collection/components/core/kritzel-editor/kritzel-editor.css +29 -0
  103. package/dist/collection/components/core/kritzel-editor/kritzel-editor.js +670 -0
  104. package/dist/collection/components/core/kritzel-editor/kritzel-editor.js.map +1 -0
  105. package/dist/collection/components/core/kritzel-engine/kritzel-engine.css +60 -0
  106. package/dist/collection/components/core/kritzel-engine/kritzel-engine.js +1483 -0
  107. package/dist/collection/components/core/kritzel-engine/kritzel-engine.js.map +1 -0
  108. package/dist/collection/components/shared/kritzel-brush-style/kritzel-brush-style.css +44 -0
  109. package/dist/collection/components/shared/kritzel-brush-style/kritzel-brush-style.js +100 -0
  110. package/dist/collection/components/shared/kritzel-brush-style/kritzel-brush-style.js.map +1 -0
  111. package/dist/collection/components/shared/kritzel-color/kritzel-color.css +21 -0
  112. package/dist/collection/components/shared/kritzel-color/kritzel-color.js +108 -0
  113. package/dist/collection/components/shared/kritzel-color/kritzel-color.js.map +1 -0
  114. package/dist/collection/components/shared/kritzel-color-palette/kritzel-color-palette.css +46 -0
  115. package/dist/collection/components/shared/kritzel-color-palette/kritzel-color-palette.js +147 -0
  116. package/dist/collection/components/shared/kritzel-color-palette/kritzel-color-palette.js.map +1 -0
  117. package/dist/collection/components/shared/kritzel-dropdown/kritzel-dropdown.css +53 -0
  118. package/dist/collection/components/shared/kritzel-dropdown/kritzel-dropdown.js +215 -0
  119. package/dist/collection/components/shared/kritzel-dropdown/kritzel-dropdown.js.map +1 -0
  120. package/dist/collection/components/shared/kritzel-font/kritzel-font.css +10 -0
  121. package/dist/collection/components/shared/kritzel-font/kritzel-font.js +92 -0
  122. package/dist/collection/components/shared/kritzel-font/kritzel-font.js.map +1 -0
  123. package/dist/collection/components/shared/kritzel-font-family/kritzel-font-family.css +48 -0
  124. package/dist/collection/components/shared/kritzel-font-family/kritzel-font-family.js +115 -0
  125. package/dist/collection/components/shared/kritzel-font-family/kritzel-font-family.js.map +1 -0
  126. package/dist/collection/components/shared/kritzel-font-size/kritzel-font-size.css +30 -0
  127. package/dist/collection/components/shared/kritzel-font-size/kritzel-font-size.js +112 -0
  128. package/dist/collection/components/shared/kritzel-font-size/kritzel-font-size.js.map +1 -0
  129. package/dist/collection/components/shared/kritzel-icon/kritzel-icon.css +17 -0
  130. package/dist/collection/components/shared/kritzel-icon/kritzel-icon.js +94 -0
  131. package/dist/collection/components/shared/kritzel-icon/kritzel-icon.js.map +1 -0
  132. package/dist/collection/components/shared/kritzel-menu/kritzel-menu.css +166 -0
  133. package/dist/collection/components/shared/kritzel-menu/kritzel-menu.js +272 -0
  134. package/dist/collection/components/shared/kritzel-menu/kritzel-menu.js.map +1 -0
  135. package/dist/collection/components/shared/kritzel-portal/kritzel-portal.js +218 -0
  136. package/dist/collection/components/shared/kritzel-portal/kritzel-portal.js.map +1 -0
  137. package/dist/collection/components/shared/kritzel-split-button/kritzel-split-button.css +74 -0
  138. package/dist/collection/components/shared/kritzel-split-button/kritzel-split-button.js +324 -0
  139. package/dist/collection/components/shared/kritzel-split-button/kritzel-split-button.js.map +1 -0
  140. package/dist/collection/components/shared/kritzel-stroke-size/kritzel-stroke-size.css +28 -0
  141. package/dist/collection/components/shared/kritzel-stroke-size/kritzel-stroke-size.js +91 -0
  142. package/dist/collection/components/shared/kritzel-stroke-size/kritzel-stroke-size.js.map +1 -0
  143. package/dist/collection/components/shared/kritzel-tooltip/kritzel-tooltip.css +17 -0
  144. package/dist/collection/components/shared/kritzel-tooltip/kritzel-tooltip.js +181 -0
  145. package/dist/collection/components/shared/kritzel-tooltip/kritzel-tooltip.js.map +1 -0
  146. package/dist/collection/components/ui/kritzel-context-menu/kritzel-context-menu.css +55 -0
  147. package/dist/collection/components/ui/kritzel-context-menu/kritzel-context-menu.js +141 -0
  148. package/dist/collection/components/ui/kritzel-context-menu/kritzel-context-menu.js.map +1 -0
  149. package/dist/collection/components/ui/kritzel-control-brush-config/kritzel-control-brush-config.css +19 -0
  150. package/dist/collection/components/ui/kritzel-control-brush-config/kritzel-control-brush-config.js +136 -0
  151. package/dist/collection/components/ui/kritzel-control-brush-config/kritzel-control-brush-config.js.map +1 -0
  152. package/dist/collection/components/ui/kritzel-control-text-config/kritzel-control-text-config.css +19 -0
  153. package/dist/collection/components/ui/kritzel-control-text-config/kritzel-control-text-config.js +116 -0
  154. package/dist/collection/components/ui/kritzel-control-text-config/kritzel-control-text-config.js.map +1 -0
  155. package/dist/collection/components/ui/kritzel-controls/kritzel-controls.css +124 -0
  156. package/dist/collection/components/ui/kritzel-controls/kritzel-controls.js +280 -0
  157. package/dist/collection/components/ui/kritzel-controls/kritzel-controls.js.map +1 -0
  158. package/dist/collection/components/ui/kritzel-utility-panel/kritzel-utility-panel.css +33 -0
  159. package/dist/collection/components/ui/kritzel-utility-panel/kritzel-utility-panel.js +79 -0
  160. package/dist/collection/components/ui/kritzel-utility-panel/kritzel-utility-panel.js.map +1 -0
  161. package/dist/collection/components/ui/kritzel-workspace-manager/kritzel-workspace-manager.css +5 -0
  162. package/dist/collection/components/ui/kritzel-workspace-manager/kritzel-workspace-manager.js +209 -0
  163. package/dist/collection/components/ui/kritzel-workspace-manager/kritzel-workspace-manager.js.map +1 -0
  164. package/dist/{stencil/default-text-tool.config-DvOZmpuR.js → collection/configs/default-brush-tool.config.js} +2 -38
  165. package/dist/collection/configs/default-brush-tool.config.js.map +1 -0
  166. package/dist/collection/configs/default-engine-state.js +61 -0
  167. package/dist/collection/configs/default-engine-state.js.map +1 -0
  168. package/dist/collection/configs/default-text-tool.config.js +32 -0
  169. package/dist/collection/configs/default-text-tool.config.js.map +1 -0
  170. package/dist/collection/constants/engine.constants.js +3 -0
  171. package/dist/collection/constants/engine.constants.js.map +1 -0
  172. package/dist/collection/enums/event-button.enum.js +7 -0
  173. package/dist/collection/enums/event-button.enum.js.map +1 -0
  174. package/dist/collection/enums/handle-type.enum.js +8 -0
  175. package/dist/collection/enums/handle-type.enum.js.map +1 -0
  176. package/dist/collection/helpers/class.helper.js +6 -0
  177. package/dist/collection/helpers/class.helper.js.map +1 -0
  178. package/dist/collection/helpers/devices.helper.js +6 -0
  179. package/dist/collection/helpers/devices.helper.js.map +1 -0
  180. package/dist/collection/helpers/event.helper.js +58 -0
  181. package/dist/collection/helpers/event.helper.js.map +1 -0
  182. package/dist/collection/helpers/geometry.helper.js +53 -0
  183. package/dist/collection/helpers/geometry.helper.js.map +1 -0
  184. package/dist/collection/helpers/html.helper.js +36 -0
  185. package/dist/collection/helpers/html.helper.js.map +1 -0
  186. package/dist/collection/helpers/keyboard.helper.js +31 -0
  187. package/dist/collection/helpers/keyboard.helper.js.map +1 -0
  188. package/dist/collection/helpers/math.helper.js +6 -0
  189. package/dist/collection/helpers/math.helper.js.map +1 -0
  190. package/dist/collection/helpers/object.helper.js +38 -0
  191. package/dist/collection/helpers/object.helper.js.map +1 -0
  192. package/dist/collection/index.js +21 -0
  193. package/dist/collection/index.js.map +1 -0
  194. package/dist/collection/interfaces/bounding-box.interface.js +2 -0
  195. package/dist/collection/interfaces/bounding-box.interface.js.map +1 -0
  196. package/dist/collection/interfaces/command.interface.js +2 -0
  197. package/dist/collection/interfaces/command.interface.js.map +1 -0
  198. package/dist/collection/interfaces/context-menu-item.interface.js +2 -0
  199. package/dist/collection/interfaces/context-menu-item.interface.js.map +1 -0
  200. package/dist/collection/interfaces/debug-info.interface.js +2 -0
  201. package/dist/collection/interfaces/debug-info.interface.js.map +1 -0
  202. package/dist/collection/interfaces/engine-state.interface.js +2 -0
  203. package/dist/collection/interfaces/engine-state.interface.js.map +1 -0
  204. package/dist/collection/interfaces/menu-item.interface.js +2 -0
  205. package/dist/collection/interfaces/menu-item.interface.js.map +1 -0
  206. package/dist/collection/interfaces/object.interface.js +2 -0
  207. package/dist/collection/interfaces/object.interface.js.map +1 -0
  208. package/dist/collection/interfaces/path-options.interface.js +2 -0
  209. package/dist/collection/interfaces/path-options.interface.js.map +1 -0
  210. package/dist/collection/interfaces/point.interface.js +2 -0
  211. package/dist/collection/interfaces/point.interface.js.map +1 -0
  212. package/dist/collection/interfaces/polygon.interface.js +2 -0
  213. package/dist/collection/interfaces/polygon.interface.js.map +1 -0
  214. package/dist/collection/interfaces/selection-state.interface.js +2 -0
  215. package/dist/collection/interfaces/selection-state.interface.js.map +1 -0
  216. package/dist/collection/interfaces/serializable.interface.js +2 -0
  217. package/dist/collection/interfaces/serializable.interface.js.map +1 -0
  218. package/dist/collection/interfaces/tool.interface.js +2 -0
  219. package/dist/collection/interfaces/tool.interface.js.map +1 -0
  220. package/dist/collection/interfaces/toolbar-control.interface.js +2 -0
  221. package/dist/collection/interfaces/toolbar-control.interface.js.map +1 -0
  222. package/dist/collection/types/state.types.js +2 -0
  223. package/dist/collection/types/state.types.js.map +1 -0
  224. package/dist/components/index.d.ts +8 -0
  225. package/dist/components/index.js +28 -0
  226. package/dist/components/index.js.map +1 -0
  227. package/dist/components/kritzel-brush-style.js +9 -0
  228. package/dist/components/kritzel-brush-style.js.map +1 -0
  229. package/dist/components/kritzel-color-palette.js +9 -0
  230. package/dist/components/kritzel-color-palette.js.map +1 -0
  231. package/dist/components/kritzel-color.js +9 -0
  232. package/dist/components/kritzel-color.js.map +1 -0
  233. package/dist/components/kritzel-context-menu.js +9 -0
  234. package/dist/components/kritzel-context-menu.js.map +1 -0
  235. package/dist/components/kritzel-control-brush-config.js +9 -0
  236. package/dist/components/kritzel-control-brush-config.js.map +1 -0
  237. package/dist/components/kritzel-control-text-config.js +9 -0
  238. package/dist/components/kritzel-control-text-config.js.map +1 -0
  239. package/dist/components/kritzel-controls.js +9 -0
  240. package/dist/components/kritzel-controls.js.map +1 -0
  241. package/dist/components/kritzel-cursor-trail.js +9 -0
  242. package/dist/components/kritzel-cursor-trail.js.map +1 -0
  243. package/dist/components/kritzel-dropdown.js +9 -0
  244. package/dist/components/kritzel-dropdown.js.map +1 -0
  245. package/dist/components/kritzel-editor.js +439 -0
  246. package/dist/components/kritzel-editor.js.map +1 -0
  247. package/dist/components/kritzel-engine.js +9 -0
  248. package/dist/components/kritzel-engine.js.map +1 -0
  249. package/dist/components/kritzel-font-family.js +9 -0
  250. package/dist/components/kritzel-font-family.js.map +1 -0
  251. package/dist/components/kritzel-font-size.js +9 -0
  252. package/dist/components/kritzel-font-size.js.map +1 -0
  253. package/dist/components/kritzel-font.js +9 -0
  254. package/dist/components/kritzel-font.js.map +1 -0
  255. package/dist/components/kritzel-icon.js +9 -0
  256. package/dist/components/kritzel-icon.js.map +1 -0
  257. package/dist/components/kritzel-menu.d.ts +11 -0
  258. package/dist/components/kritzel-menu.js +9 -0
  259. package/dist/components/kritzel-menu.js.map +1 -0
  260. package/dist/components/kritzel-portal.d.ts +11 -0
  261. package/dist/components/kritzel-portal.js +9 -0
  262. package/dist/components/kritzel-portal.js.map +1 -0
  263. package/dist/components/kritzel-split-button.d.ts +11 -0
  264. package/dist/components/kritzel-split-button.js +9 -0
  265. package/dist/components/kritzel-split-button.js.map +1 -0
  266. package/dist/components/kritzel-stroke-size.js +9 -0
  267. package/dist/components/kritzel-stroke-size.js.map +1 -0
  268. package/dist/components/kritzel-tooltip.js +9 -0
  269. package/dist/components/kritzel-tooltip.js.map +1 -0
  270. package/dist/components/kritzel-utility-panel.js +9 -0
  271. package/dist/components/kritzel-utility-panel.js.map +1 -0
  272. package/dist/components/kritzel-workspace-manager.d.ts +11 -0
  273. package/dist/components/kritzel-workspace-manager.js +9 -0
  274. package/dist/components/kritzel-workspace-manager.js.map +1 -0
  275. package/dist/{stencil/kritzel-color.entry.js → components/p-5CJxFNEE.js} +31 -11
  276. package/dist/components/p-5CJxFNEE.js.map +1 -0
  277. package/dist/{stencil/brush-tool.class-D1U3x9_Y.js → components/p-B7VrEdgP.js} +77 -110
  278. package/dist/components/p-B7VrEdgP.js.map +1 -0
  279. package/dist/{stencil/kritzel-color-palette.entry.js → components/p-BAPUTr3K.js} +40 -12
  280. package/dist/components/p-BAPUTr3K.js.map +1 -0
  281. package/dist/{stencil/kritzel-controls.entry.js → components/p-BB22cVkU.js} +135 -27
  282. package/dist/components/p-BB22cVkU.js.map +1 -0
  283. package/dist/components/p-BLmFBe2a.js +96 -0
  284. package/dist/components/p-BLmFBe2a.js.map +1 -0
  285. package/dist/components/p-BU2q3PRS.js +84 -0
  286. package/dist/components/p-BU2q3PRS.js.map +1 -0
  287. package/dist/components/p-BZ-j_4CK.js +46 -0
  288. package/dist/components/p-BZ-j_4CK.js.map +1 -0
  289. package/dist/components/p-BaKb8ZLg.js +104 -0
  290. package/dist/components/p-BaKb8ZLg.js.map +1 -0
  291. package/dist/components/p-Bb6od8He.js +42 -0
  292. package/dist/components/p-Bb6od8He.js.map +1 -0
  293. package/dist/components/p-BcQTDgzV.js +56 -0
  294. package/dist/components/p-BcQTDgzV.js.map +1 -0
  295. package/dist/components/p-BeVv4o5c.js +14 -0
  296. package/dist/components/p-BeVv4o5c.js.map +1 -0
  297. package/dist/components/p-BmJbJwkH.js +167 -0
  298. package/dist/components/p-BmJbJwkH.js.map +1 -0
  299. package/dist/components/p-BqrTPNyu.js +1330 -0
  300. package/dist/components/p-BqrTPNyu.js.map +1 -0
  301. package/dist/{stencil/kritzel-dropdown.entry.js → components/p-BvlGgLAQ.js} +39 -11
  302. package/dist/components/p-BvlGgLAQ.js.map +1 -0
  303. package/dist/components/p-BzSz74Ci.js +56 -0
  304. package/dist/components/p-BzSz74Ci.js.map +1 -0
  305. package/dist/components/p-D-zg05gA.js +3148 -0
  306. package/dist/components/p-D-zg05gA.js.map +1 -0
  307. package/dist/{stencil/event-button.enum-D8W6LE-c.js → components/p-D8W6LE-c.js} +2 -2
  308. package/dist/components/p-D8W6LE-c.js.map +1 -0
  309. package/dist/components/p-DV4ERZv5.js +112 -0
  310. package/dist/components/p-DV4ERZv5.js.map +1 -0
  311. package/dist/{stencil/kritzel-cursor-trail.entry.js → components/p-DtmZW6eP.js} +32 -11
  312. package/dist/components/p-DtmZW6eP.js.map +1 -0
  313. package/dist/components/p-V4ui5aWj.js +63 -0
  314. package/dist/components/p-V4ui5aWj.js.map +1 -0
  315. package/dist/{stencil/kritzel-font-family.entry.js → components/p-_ntxNi8v.js} +37 -11
  316. package/dist/components/p-_ntxNi8v.js.map +1 -0
  317. package/dist/components/p-a7KmQzo4.js +113 -0
  318. package/dist/components/p-a7KmQzo4.js.map +1 -0
  319. package/dist/components/p-hSuNJiIq.js +152 -0
  320. package/dist/components/p-hSuNJiIq.js.map +1 -0
  321. package/dist/{stencil/kritzel-tooltip.entry.js → components/p-jG1e48OE.js} +39 -14
  322. package/dist/components/p-jG1e48OE.js.map +1 -0
  323. package/dist/components/p-rQeWFfPG.js +54 -0
  324. package/dist/components/p-rQeWFfPG.js.map +1 -0
  325. package/dist/components/p-sQmW5NRu.js +156 -0
  326. package/dist/components/p-sQmW5NRu.js.map +1 -0
  327. package/dist/esm/app-globals-DQuL1Twl.js +6 -0
  328. package/dist/esm/app-globals-DQuL1Twl.js.map +1 -0
  329. package/dist/esm/index-J4NpPimy.js +2611 -0
  330. package/dist/esm/index-J4NpPimy.js.map +1 -0
  331. package/dist/esm/index-NiIEUDzj.js +1570 -0
  332. package/dist/esm/index-NiIEUDzj.js.map +1 -0
  333. package/dist/esm/index.js +2 -0
  334. package/dist/esm/index.js.map +1 -0
  335. package/dist/esm/kritzel-brush-style_22.entry.js +3110 -0
  336. package/dist/esm/loader.js +12 -0
  337. package/dist/esm/loader.js.map +1 -0
  338. package/dist/esm/stencil.js +22 -0
  339. package/dist/esm/stencil.js.map +1 -0
  340. package/dist/index.cjs.js +1 -0
  341. package/dist/index.js +1 -0
  342. package/dist/stencil/index.esm.js +1 -16
  343. package/dist/stencil/index.esm.js.map +1 -1
  344. package/dist/stencil/loader.esm.js.map +1 -1
  345. package/dist/stencil/p-4a0009e7.entry.js +2 -0
  346. package/dist/stencil/p-4a0009e7.entry.js.map +1 -0
  347. package/dist/stencil/p-DQuL1Twl.js +2 -0
  348. package/dist/stencil/p-DQuL1Twl.js.map +1 -0
  349. package/dist/stencil/p-J4NpPimy.js +2 -0
  350. package/dist/stencil/p-J4NpPimy.js.map +1 -0
  351. package/dist/stencil/p-NiIEUDzj.js +3 -0
  352. package/dist/stencil/p-NiIEUDzj.js.map +1 -0
  353. package/dist/stencil/stencil.esm.js +1 -49
  354. package/dist/stencil/stencil.esm.js.map +1 -1
  355. package/dist/types/classes/commands/add-object.command.d.ts +1 -1
  356. package/dist/types/classes/commands/add-selection-group.command.d.ts +1 -1
  357. package/dist/types/classes/commands/base.command.d.ts +2 -2
  358. package/dist/types/classes/commands/batch.command.d.ts +1 -1
  359. package/dist/types/classes/commands/move-selection-group.command.d.ts +1 -1
  360. package/dist/types/classes/commands/remove-object.command.d.ts +1 -1
  361. package/dist/types/classes/commands/remove-selection-group.command.d.ts +1 -1
  362. package/dist/types/classes/commands/resize-selection-group.command.d.ts +1 -1
  363. package/dist/types/classes/commands/rotate-selection-group.command.d.ts +1 -1
  364. package/dist/types/classes/commands/update-object.command.d.ts +1 -1
  365. package/dist/types/classes/commands/update-viewport.command.d.ts +1 -1
  366. package/dist/types/classes/database.class.d.ts +28 -0
  367. package/dist/types/classes/history.class.d.ts +1 -0
  368. package/dist/types/classes/objects/base-object.class.d.ts +2 -0
  369. package/dist/types/classes/objects/path.class.d.ts +1 -0
  370. package/dist/types/classes/objects/text.class.d.ts +1 -1
  371. package/dist/types/classes/store.class.d.ts +19 -2
  372. package/dist/types/classes/structures/octree.structure.d.ts +1 -0
  373. package/dist/types/classes/workspace.class.d.ts +16 -0
  374. package/dist/types/components/core/kritzel-editor/kritzel-editor.d.ts +6 -1
  375. package/dist/types/components/core/kritzel-engine/kritzel-engine.d.ts +12 -2
  376. package/dist/types/components/shared/kritzel-menu/kritzel-menu.d.ts +24 -0
  377. package/dist/types/components/shared/kritzel-portal/kritzel-portal.d.ts +24 -0
  378. package/dist/types/components/shared/kritzel-split-button/kritzel-split-button.d.ts +24 -0
  379. package/dist/types/components/ui/kritzel-context-menu/kritzel-context-menu.d.ts +3 -4
  380. package/dist/types/components/ui/kritzel-controls/kritzel-controls.d.ts +2 -1
  381. package/dist/types/components/ui/kritzel-workspace-manager/kritzel-workspace-manager.d.ts +25 -0
  382. package/dist/types/components.d.ts +250 -2
  383. package/dist/types/helpers/html.helper.d.ts +3 -1
  384. package/dist/types/interfaces/command.interface.d.ts +1 -1
  385. package/dist/types/interfaces/debug-info.interface.d.ts +1 -0
  386. package/dist/types/interfaces/engine-state.interface.d.ts +3 -0
  387. package/dist/types/interfaces/menu-item.interface.d.ts +9 -0
  388. package/dist/types/interfaces/object.interface.d.ts +2 -0
  389. package/dist/types/stencil-public-runtime.d.ts +21 -0
  390. package/package.json +63 -62
  391. package/dist/stencil/brush-tool.class-D1U3x9_Y.js.map +0 -1
  392. package/dist/stencil/default-text-tool.config-DvOZmpuR.js.map +0 -1
  393. package/dist/stencil/engine.constants-DsjjAmnl.js +0 -7
  394. package/dist/stencil/engine.constants-DsjjAmnl.js.map +0 -1
  395. package/dist/stencil/event-button.enum-D8W6LE-c.js.map +0 -1
  396. package/dist/stencil/icon-registry.class-Bw5YkOTi.js.map +0 -1
  397. package/dist/stencil/image-tool.class-uKAmXFSl.js +0 -1341
  398. package/dist/stencil/image-tool.class-uKAmXFSl.js.map +0 -1
  399. package/dist/stencil/index-Df69oUcb.js +0 -4334
  400. package/dist/stencil/index-Df69oUcb.js.map +0 -1
  401. package/dist/stencil/kritzel-brush-style.entry.esm.js.map +0 -1
  402. package/dist/stencil/kritzel-brush-style.entry.js +0 -31
  403. package/dist/stencil/kritzel-brush-style.entry.js.map +0 -1
  404. package/dist/stencil/kritzel-color-palette.entry.esm.js.map +0 -1
  405. package/dist/stencil/kritzel-color-palette.entry.js.map +0 -1
  406. package/dist/stencil/kritzel-color.entry.esm.js.map +0 -1
  407. package/dist/stencil/kritzel-color.entry.js.map +0 -1
  408. package/dist/stencil/kritzel-context-menu-B2p1_Ffh.js +0 -91
  409. package/dist/stencil/kritzel-context-menu-B2p1_Ffh.js.map +0 -1
  410. package/dist/stencil/kritzel-context-menu-DPHV6MRm.js +0 -91
  411. package/dist/stencil/kritzel-context-menu-DPHV6MRm.js.map +0 -1
  412. package/dist/stencil/kritzel-context-menu.entry.esm.js.map +0 -1
  413. package/dist/stencil/kritzel-context-menu.entry.js +0 -5
  414. package/dist/stencil/kritzel-context-menu.entry.js.map +0 -1
  415. package/dist/stencil/kritzel-control-brush-config.entry.esm.js.map +0 -1
  416. package/dist/stencil/kritzel-control-brush-config.entry.js +0 -54
  417. package/dist/stencil/kritzel-control-brush-config.entry.js.map +0 -1
  418. package/dist/stencil/kritzel-control-text-config.entry.esm.js.map +0 -1
  419. package/dist/stencil/kritzel-control-text-config.entry.js +0 -42
  420. package/dist/stencil/kritzel-control-text-config.entry.js.map +0 -1
  421. package/dist/stencil/kritzel-controls.entry.esm.js.map +0 -1
  422. package/dist/stencil/kritzel-controls.entry.js.map +0 -1
  423. package/dist/stencil/kritzel-cursor-trail.entry.esm.js.map +0 -1
  424. package/dist/stencil/kritzel-cursor-trail.entry.js.map +0 -1
  425. package/dist/stencil/kritzel-dropdown.entry.esm.js.map +0 -1
  426. package/dist/stencil/kritzel-dropdown.entry.js.map +0 -1
  427. package/dist/stencil/kritzel-editor.entry.esm.js.map +0 -1
  428. package/dist/stencil/kritzel-editor.entry.js +0 -180
  429. package/dist/stencil/kritzel-editor.entry.js.map +0 -1
  430. package/dist/stencil/kritzel-engine.entry.esm.js.map +0 -1
  431. package/dist/stencil/kritzel-engine.entry.js +0 -1318
  432. package/dist/stencil/kritzel-engine.entry.js.map +0 -1
  433. package/dist/stencil/kritzel-font-family.entry.esm.js.map +0 -1
  434. package/dist/stencil/kritzel-font-family.entry.js.map +0 -1
  435. package/dist/stencil/kritzel-font-size.entry.esm.js.map +0 -1
  436. package/dist/stencil/kritzel-font-size.entry.js +0 -29
  437. package/dist/stencil/kritzel-font-size.entry.js.map +0 -1
  438. package/dist/stencil/kritzel-font.entry.esm.js.map +0 -1
  439. package/dist/stencil/kritzel-font.entry.js +0 -25
  440. package/dist/stencil/kritzel-font.entry.js.map +0 -1
  441. package/dist/stencil/kritzel-icon.entry.esm.js.map +0 -1
  442. package/dist/stencil/kritzel-icon.entry.js +0 -29
  443. package/dist/stencil/kritzel-icon.entry.js.map +0 -1
  444. package/dist/stencil/kritzel-stroke-size.entry.esm.js.map +0 -1
  445. package/dist/stencil/kritzel-stroke-size.entry.js +0 -28
  446. package/dist/stencil/kritzel-stroke-size.entry.js.map +0 -1
  447. package/dist/stencil/kritzel-tooltip.entry.esm.js.map +0 -1
  448. package/dist/stencil/kritzel-tooltip.entry.js.map +0 -1
  449. package/dist/stencil/kritzel-utility-panel.entry.esm.js.map +0 -1
  450. package/dist/stencil/kritzel-utility-panel.entry.js +0 -33
  451. package/dist/stencil/kritzel-utility-panel.entry.js.map +0 -1
@@ -0,0 +1,2611 @@
1
+ class KritzelBaseCommand {
2
+ constructor(store, initiator, skipHistory = false) {
3
+ var _a, _b;
4
+ this._store = store;
5
+ this.initiator = (_b = (_a = initiator === null || initiator === void 0 ? void 0 : initiator.constructor) === null || _a === void 0 ? void 0 : _a.name) !== null && _b !== void 0 ? _b : 'Unknown';
6
+ this.skipHistory = skipHistory;
7
+ }
8
+ execute() {
9
+ throw new Error('Method not implemented.');
10
+ }
11
+ undo() {
12
+ throw new Error('Method not implemented.');
13
+ }
14
+ }
15
+
16
+ var __rest = (undefined && undefined.__rest) || function (s, e) {
17
+ var t = {};
18
+ for (var p in s)
19
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
20
+ t[p] = s[p];
21
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
22
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
23
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
24
+ t[p[i]] = s[p[i]];
25
+ }
26
+ return t;
27
+ };
28
+ class ObjectHelper {
29
+ static generateUUID() {
30
+ return Math.random().toString(36).substr(2, 9);
31
+ }
32
+ static clone(objOrObjs) {
33
+ const cloneObject = (obj) => {
34
+ const _a = obj, { element } = _a, remainingProps = __rest(_a, ["_store", "_elementRef", "totalWidth", "totalHeight", "element"]);
35
+ const clonedProps = structuredClone(remainingProps);
36
+ if (element && typeof element === 'object' && 'nodeType' in element && element.nodeType === 1) {
37
+ clonedProps.element = element.cloneNode(true);
38
+ }
39
+ return clonedProps;
40
+ };
41
+ if (Array.isArray(objOrObjs)) {
42
+ return objOrObjs.map(cloneObject);
43
+ }
44
+ return cloneObject(objOrObjs);
45
+ }
46
+ static isEmpty(obj) {
47
+ if (obj === null || obj === undefined) {
48
+ return true;
49
+ }
50
+ return (Object === null || Object === void 0 ? void 0 : Object.keys(obj).length) === 0 && (obj === null || obj === void 0 ? void 0 : obj.constructor) === Object;
51
+ }
52
+ }
53
+
54
+ class UpdateObjectCommand extends KritzelBaseCommand {
55
+ constructor(store, initiator, object, updatedProperties, skipHistory = false) {
56
+ super(store, initiator, skipHistory);
57
+ this.object = object;
58
+ this.updatedProperties = updatedProperties;
59
+ this.previousProperties = {};
60
+ for (const key in updatedProperties) {
61
+ if (updatedProperties.hasOwnProperty(key)) {
62
+ this.previousProperties[key] = this.object[key];
63
+ }
64
+ }
65
+ }
66
+ execute() {
67
+ for (const key in this.updatedProperties) {
68
+ if (this.updatedProperties.hasOwnProperty(key)) {
69
+ this.object[key] = this.updatedProperties[key];
70
+ }
71
+ }
72
+ this._store.updateObjectInDatabase(ObjectHelper.clone(this.object));
73
+ }
74
+ undo() {
75
+ for (const key in this.previousProperties) {
76
+ if (this.previousProperties.hasOwnProperty(key)) {
77
+ this.object[key] = this.previousProperties[key];
78
+ }
79
+ }
80
+ this._store.updateObjectInDatabase(ObjectHelper.clone(this.object));
81
+ }
82
+ }
83
+
84
+ class KritzelToolRegistry {
85
+ static registerTool(toolName, constructor, store) {
86
+ const toolInstance = new constructor(store);
87
+ toolInstance.name = toolName;
88
+ this.registry[toolName] = toolInstance;
89
+ return toolInstance;
90
+ }
91
+ static getTool(toolName) {
92
+ const toolInstance = this.registry[toolName];
93
+ if (!toolInstance) {
94
+ console.warn(`Unknown tool: ${toolName}`);
95
+ return null;
96
+ }
97
+ return toolInstance;
98
+ }
99
+ }
100
+ KritzelToolRegistry.registry = {};
101
+
102
+ class KritzelBaseTool {
103
+ constructor(store) {
104
+ this.__class__ = this.constructor.name;
105
+ this.name = 'base-tool';
106
+ this._store = store;
107
+ }
108
+ onActivate() {
109
+ // default implementation
110
+ }
111
+ onDeactivate() {
112
+ // default implementation
113
+ }
114
+ handlePointerDown(_event) {
115
+ // default implementation
116
+ }
117
+ handlePointerMove(_event) {
118
+ // default implementation
119
+ }
120
+ handlePointerUp(_event) {
121
+ // default implementation
122
+ }
123
+ handleWheel(_event) {
124
+ // default implementation
125
+ }
126
+ revive(object) {
127
+ Object.assign(this, object);
128
+ return this;
129
+ }
130
+ }
131
+
132
+ class AddObjectCommand extends KritzelBaseCommand {
133
+ constructor(store, initiator, object, skipHistory = false) {
134
+ super(store, initiator, skipHistory);
135
+ this.object = object;
136
+ }
137
+ execute() {
138
+ this._store.state.objectsOctree.insert(this.object);
139
+ this._store.addObjectToDatabase(ObjectHelper.clone(this.object));
140
+ }
141
+ undo() {
142
+ this._store.state.objectsOctree.remove(object => object.id === this.object.id);
143
+ this._store.deleteObjectFromDatabase(this.object.id);
144
+ }
145
+ }
146
+
147
+ var KritzelMouseButton;
148
+ (function (KritzelMouseButton) {
149
+ KritzelMouseButton[KritzelMouseButton["Left"] = 0] = "Left";
150
+ KritzelMouseButton[KritzelMouseButton["Middle"] = 1] = "Middle";
151
+ KritzelMouseButton[KritzelMouseButton["Right"] = 2] = "Right";
152
+ })(KritzelMouseButton || (KritzelMouseButton = {}));
153
+
154
+ class KritzelEventHelper {
155
+ static isRightClick(ev) {
156
+ return ev.button === KritzelMouseButton.Right;
157
+ }
158
+ static isLeftClick(ev) {
159
+ return ev.button === KritzelMouseButton.Left;
160
+ }
161
+ static isMainMouseWheel(event) {
162
+ return Math.abs(event.deltaY) > 0 && Math.abs(event.deltaX) === 0 && Number.isInteger(event.deltaY);
163
+ }
164
+ static isPointerEventOnContextMenu(event) {
165
+ const path = event.composedPath();
166
+ const contextMenu = path.find(element => element.classList && element.classList.contains('context-menu'));
167
+ return !!contextMenu;
168
+ }
169
+ static onLongTouchPress(event, onSuccess, onCancel) {
170
+ if (event.pointerType !== 'touch') {
171
+ onCancel === null || onCancel === void 0 ? void 0 : onCancel();
172
+ return () => { };
173
+ }
174
+ const longPressTimeout = 400;
175
+ const moveThreshold = 10;
176
+ const startX = event.clientX;
177
+ const startY = event.clientY;
178
+ const target = event.target;
179
+ const timer = setTimeout(() => {
180
+ removeListeners();
181
+ onSuccess(event);
182
+ }, longPressTimeout);
183
+ const cancel = () => {
184
+ clearTimeout(timer);
185
+ removeListeners();
186
+ onCancel === null || onCancel === void 0 ? void 0 : onCancel();
187
+ };
188
+ const onPointerMove = (e) => {
189
+ if (Math.abs(e.clientX - startX) > moveThreshold || Math.abs(e.clientY - startY) > moveThreshold) {
190
+ cancel();
191
+ }
192
+ };
193
+ const onPointerUp = () => {
194
+ cancel();
195
+ };
196
+ const onPointerCancel = () => {
197
+ cancel();
198
+ };
199
+ const removeListeners = () => {
200
+ target.removeEventListener('pointermove', onPointerMove);
201
+ target.removeEventListener('pointerup', onPointerUp);
202
+ target.removeEventListener('pointercancel', onPointerCancel);
203
+ };
204
+ target.addEventListener('pointermove', onPointerMove, { passive: true });
205
+ target.addEventListener('pointerup', onPointerUp, { once: true });
206
+ target.addEventListener('pointercancel', onPointerCancel, { once: true });
207
+ return cancel;
208
+ }
209
+ }
210
+
211
+ class KritzelKeyboardHelper {
212
+ static forceHideKeyboard() {
213
+ if (document.activeElement instanceof HTMLElement) {
214
+ document.activeElement.blur();
215
+ }
216
+ }
217
+ static enableInteractiveWidget() {
218
+ const meta = document.querySelector('meta[name="viewport"][content*="interactive-widget=resizes-content"]');
219
+ if (meta) {
220
+ let currentContent = meta.getAttribute('content');
221
+ if (!currentContent.includes('interactive-widget=resizes-content')) {
222
+ currentContent += ', interactive-widget=resizes-content';
223
+ }
224
+ meta.setAttribute('content', currentContent);
225
+ }
226
+ }
227
+ static disableInteractiveWidget() {
228
+ const meta = document.querySelector('meta[name="viewport"][content*="interactive-widget=resizes-content"]');
229
+ if (meta) {
230
+ let currentContent = meta.getAttribute('content');
231
+ let newContent = currentContent.replace(/\s*interactive-widget=resizes-content\s*[,;]?/g, '');
232
+ newContent = newContent
233
+ .replace(/,(\s*,)+/g, ',')
234
+ .replace(/^,/, '')
235
+ .replace(/,$/, '')
236
+ .trim();
237
+ meta.setAttribute('content', newContent);
238
+ }
239
+ }
240
+ }
241
+
242
+ class KritzelTextTool extends KritzelBaseTool {
243
+ constructor(store) {
244
+ super(store);
245
+ this.fontFamily = 'Arial';
246
+ this.fontSize = 16;
247
+ this.fontColor = '#000000';
248
+ this.palette = [
249
+ '#000000',
250
+ '#FFFFFF',
251
+ '#FF0000',
252
+ '#00FF00',
253
+ '#0000FF',
254
+ '#FFFF00',
255
+ '#FF00FF',
256
+ '#00FFFF',
257
+ '#808080',
258
+ '#C0C0C0',
259
+ '#800000',
260
+ '#008000',
261
+ '#000080',
262
+ '#808000',
263
+ '#800080',
264
+ ];
265
+ }
266
+ handlePointerDown(event) {
267
+ if (event.cancelable) {
268
+ event.preventDefault();
269
+ }
270
+ if (event.pointerType === 'mouse') {
271
+ const path = event.composedPath().slice(1);
272
+ const objectElement = path.find(element => element.classList && element.classList.contains('object'));
273
+ const object = this._store.findObjectById(objectElement === null || objectElement === void 0 ? void 0 : objectElement.id);
274
+ if (this._store.state.activeText === null && object && object instanceof KritzelText) {
275
+ this._store.state.activeText = object;
276
+ object.focus();
277
+ return;
278
+ }
279
+ if (this._store.state.activeText !== null && object instanceof KritzelText) {
280
+ object.focus();
281
+ return;
282
+ }
283
+ if (this._store.state.activeText !== null) {
284
+ this._store.resetActiveText();
285
+ this._store.setState('activeTool', KritzelToolRegistry.getTool('selection'));
286
+ return;
287
+ }
288
+ if (KritzelEventHelper.isLeftClick(event) === false) {
289
+ return;
290
+ }
291
+ const clientX = event.clientX - this._store.offsetX;
292
+ const clientY = event.clientY - this._store.offsetY;
293
+ const text = KritzelText.create(this._store, this.fontSize, this.fontFamily);
294
+ text.fontColor = this.fontColor;
295
+ text.translateX = (clientX - this._store.state.translateX) / this._store.state.scale;
296
+ text.translateY = (clientY - this._store.state.translateY) / this._store.state.scale;
297
+ text.zIndex = this._store.currentZIndex;
298
+ this._store.state.activeText = text;
299
+ this._store.history.executeCommand(new AddObjectCommand(this._store, this, text));
300
+ }
301
+ if (event.pointerType === 'touch') {
302
+ const activePointers = Array.from(this._store.state.pointers.values());
303
+ const path = event.composedPath().slice(1);
304
+ const objectElement = path.find(element => element.classList && element.classList.contains('object'));
305
+ const object = this._store.findObjectById(objectElement === null || objectElement === void 0 ? void 0 : objectElement.id);
306
+ if (this._store.state.activeText === null && object && object instanceof KritzelText) {
307
+ this._store.state.activeText = object;
308
+ object.focus();
309
+ return;
310
+ }
311
+ if (this._store.state.activeText !== null && object instanceof KritzelText) {
312
+ object.focus();
313
+ return;
314
+ }
315
+ if (this._store.state.activeText !== null) {
316
+ this._store.resetActiveText();
317
+ this._store.setState('activeTool', KritzelToolRegistry.getTool('selection'));
318
+ return;
319
+ }
320
+ if (activePointers.length > 1) {
321
+ return;
322
+ }
323
+ KritzelKeyboardHelper.disableInteractiveWidget();
324
+ const clientX = Math.round(activePointers[0].clientX - this._store.offsetX);
325
+ const clientY = Math.round(activePointers[0].clientY - this._store.offsetY);
326
+ const text = KritzelText.create(this._store, this.fontSize, this.fontFamily);
327
+ text.fontColor = this.fontColor;
328
+ text.translateX = (clientX - this._store.state.translateX) / this._store.state.scale;
329
+ text.translateY = (clientY - this._store.state.translateY) / this._store.state.scale;
330
+ text.zIndex = this._store.currentZIndex;
331
+ this._store.state.activeText = text;
332
+ this._store.history.executeCommand(new AddObjectCommand(this._store, this, text));
333
+ }
334
+ }
335
+ handlePointerUp(event) {
336
+ var _a, _b, _c, _d;
337
+ if (event.cancelable) {
338
+ event.preventDefault();
339
+ }
340
+ if (event.pointerType === 'mouse') {
341
+ (_a = this._store.state.activeText) === null || _a === void 0 ? void 0 : _a.updateTextareaDimensions();
342
+ (_b = this._store.state.activeText) === null || _b === void 0 ? void 0 : _b.focus();
343
+ }
344
+ if (event.pointerType === 'touch') {
345
+ (_c = this._store.state.activeText) === null || _c === void 0 ? void 0 : _c.updateTextareaDimensions();
346
+ (_d = this._store.state.activeText) === null || _d === void 0 ? void 0 : _d.focus();
347
+ KritzelKeyboardHelper.enableInteractiveWidget();
348
+ }
349
+ }
350
+ }
351
+
352
+ class KritzelGeometryHelper {
353
+ static doPolygonsIntersect(polygon1, polygon2) {
354
+ // 1. Convert polygons to array of points for easier processing
355
+ const points1 = [polygon1.bottomLeft, polygon1.bottomRight, polygon1.topRight, polygon1.topLeft];
356
+ const points2 = [polygon2.bottomLeft, polygon2.bottomRight, polygon2.topRight, polygon2.topLeft];
357
+ // 2. Check if any point of polygon1 is inside polygon2
358
+ for (const point of points1) {
359
+ if (this.isPointInPolygon(point, points2)) {
360
+ return true;
361
+ }
362
+ }
363
+ // 3. Check if any point of polygon2 is inside polygon1
364
+ for (const point of points2) {
365
+ if (this.isPointInPolygon(point, points1)) {
366
+ return true;
367
+ }
368
+ }
369
+ // 4. Check for edge intersections (more complex)
370
+ for (let i = 0; i < points1.length; i++) {
371
+ const p1a = points1[i];
372
+ const p1b = points1[(i + 1) % points1.length]; // Wrap around to the first point
373
+ for (let j = 0; j < points2.length; j++) {
374
+ const p2a = points2[j];
375
+ const p2b = points2[(j + 1) % points2.length];
376
+ if (this.intersectLines(p1a, p1b, p2a, p2b)) {
377
+ return true;
378
+ }
379
+ }
380
+ }
381
+ return false; // No intersection found
382
+ }
383
+ static isPointInPolygon(point, polygon) {
384
+ let inside = false;
385
+ for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
386
+ const xi = polygon[i].x, yi = polygon[i].y;
387
+ const xj = polygon[j].x, yj = polygon[j].y;
388
+ const intersect = yi > point.y !== yj > point.y && point.x < ((xj - xi) * (point.y - yi)) / (yj - yi) + xi;
389
+ if (intersect)
390
+ inside = !inside;
391
+ }
392
+ return inside;
393
+ }
394
+ static intersectLines(p1a, p1b, p2a, p2b) {
395
+ const det = (p1b.x - p1a.x) * (p2b.y - p2a.y) - (p1b.y - p1a.y) * (p2b.x - p2a.x);
396
+ if (det === 0) {
397
+ return false; // Lines are parallel
398
+ }
399
+ const t = ((p2a.x - p1a.x) * (p2b.y - p2a.y) - (p2a.y - p1a.y) * (p2b.x - p2a.x)) / det;
400
+ const u = -((p1a.x - p2a.x) * (p1b.y - p1a.y) - (p1a.y - p2a.y) * (p1b.x - p1a.x)) / det;
401
+ return t >= 0 && t <= 1 && u >= 0 && u <= 1;
402
+ }
403
+ }
404
+
405
+ class KritzelBaseObject {
406
+ get totalWidth() {
407
+ return this.width + this.padding * 2;
408
+ }
409
+ get totalHeight() {
410
+ return this.height + this.padding * 2;
411
+ }
412
+ set elementRef(element) {
413
+ this._elementRef = element;
414
+ }
415
+ get elementRef() {
416
+ return this._elementRef;
417
+ }
418
+ get boundingBox() {
419
+ return {
420
+ x: this.translateX,
421
+ y: this.translateY,
422
+ z: this.scale,
423
+ width: this.totalWidth / this.scale,
424
+ height: this.totalHeight / this.scale,
425
+ depth: 0,
426
+ };
427
+ }
428
+ get rotatedBoundingBox() {
429
+ return {
430
+ x: this.minXRotated,
431
+ y: this.minYRotated,
432
+ z: this.scale,
433
+ width: this.maxXRotated - this.minXRotated,
434
+ height: this.maxYRotated - this.minYRotated,
435
+ depth: 0,
436
+ };
437
+ }
438
+ get rotatedPolygon() {
439
+ const cx = this.translateX + this.totalWidth / 2 / this.scale;
440
+ const cy = this.translateY + this.totalHeight / 2 / this.scale;
441
+ const angle = this.rotation;
442
+ const adjustedWidth = this.totalWidth / this.scale;
443
+ const adjustedHeight = this.totalHeight / this.scale;
444
+ const corners = {
445
+ topLeft: { x: this.translateX, y: this.translateY },
446
+ topRight: { x: this.translateX + adjustedWidth, y: this.translateY },
447
+ bottomRight: { x: this.translateX + adjustedWidth, y: this.translateY + adjustedHeight },
448
+ bottomLeft: { x: this.translateX, y: this.translateY + adjustedHeight },
449
+ };
450
+ const rotatedCorners = Object.keys(corners).reduce((acc, key) => {
451
+ const corner = corners[key];
452
+ const rotatedX = Math.cos(angle) * (corner.x - cx) - Math.sin(angle) * (corner.y - cy) + cx;
453
+ const rotatedY = Math.sin(angle) * (corner.x - cx) + Math.cos(angle) * (corner.y - cy) + cy;
454
+ acc[key] = { x: rotatedX, y: rotatedY };
455
+ return acc;
456
+ }, {});
457
+ return rotatedCorners;
458
+ }
459
+ get minXRotated() {
460
+ const corners = [this.rotatedPolygon.topLeft.x, this.rotatedPolygon.topRight.x, this.rotatedPolygon.bottomRight.x, this.rotatedPolygon.bottomLeft.x];
461
+ return Math.min(...corners);
462
+ }
463
+ get minYRotated() {
464
+ const corners = [this.rotatedPolygon.topLeft.y, this.rotatedPolygon.topRight.y, this.rotatedPolygon.bottomRight.y, this.rotatedPolygon.bottomLeft.y];
465
+ return Math.min(...corners);
466
+ }
467
+ get maxXRotated() {
468
+ const corners = [this.rotatedPolygon.topLeft.x, this.rotatedPolygon.topRight.x, this.rotatedPolygon.bottomRight.x, this.rotatedPolygon.bottomLeft.x];
469
+ return Math.max(...corners);
470
+ }
471
+ get maxYRotated() {
472
+ const corners = [this.rotatedPolygon.topLeft.y, this.rotatedPolygon.topRight.y, this.rotatedPolygon.bottomRight.y, this.rotatedPolygon.bottomLeft.y];
473
+ return Math.max(...corners);
474
+ }
475
+ get transformationMatrix() {
476
+ const scale = 1 / this.scale;
477
+ const translateX = this.translateX;
478
+ const translateY = this.translateY;
479
+ return `matrix(${scale}, 0, 0, ${scale}, ${translateX}, ${translateY})`;
480
+ }
481
+ get rotationDegrees() {
482
+ return this.rotation * (180 / Math.PI);
483
+ }
484
+ get centerX() {
485
+ return this.translateX + this.totalWidth / 2;
486
+ }
487
+ get centerY() {
488
+ return this.translateY + this.totalHeight / 2;
489
+ }
490
+ constructor() {
491
+ this.__class__ = 'KritzelBaseObject';
492
+ this.borderWidth = 0;
493
+ this.opacity = 1;
494
+ this.padding = 0;
495
+ this.resizing = false;
496
+ this.rotation = 0;
497
+ this.markedForRemoval = false;
498
+ this.zIndex = 0;
499
+ this.isVisible = true;
500
+ this.isSelected = false;
501
+ this.isHovered = false;
502
+ this.isMounted = false;
503
+ this.isEditable = false;
504
+ this.isInteractive = false;
505
+ this.isDebugInfoVisible = false;
506
+ this.id = this.generateId();
507
+ }
508
+ static create(store) {
509
+ const object = new KritzelBaseObject();
510
+ object._store = store;
511
+ object.zIndex = store.currentZIndex;
512
+ object.workspaceId = store.state.activeWorkspace.id;
513
+ return object;
514
+ }
515
+ mount(element) {
516
+ if (this.isMounted) {
517
+ return;
518
+ }
519
+ this.elementRef = element;
520
+ this.isMounted = true;
521
+ }
522
+ unmount() {
523
+ if (!this.isMounted) {
524
+ return;
525
+ }
526
+ this.isMounted = false;
527
+ }
528
+ remount() {
529
+ if (!this.isMounted) {
530
+ return;
531
+ }
532
+ this.isMounted = false;
533
+ }
534
+ generateId() {
535
+ return ObjectHelper.generateUUID();
536
+ }
537
+ isInViewport() {
538
+ const viewportBounds = {
539
+ x: -this._store.state.translateX / this._store.state.scale,
540
+ y: -this._store.state.translateY / this._store.state.scale,
541
+ width: this._store.state.viewportWidth / this._store.state.scale,
542
+ height: this._store.state.viewportHeight / this._store.state.scale};
543
+ return (this.boundingBox.x < viewportBounds.x + viewportBounds.width &&
544
+ this.boundingBox.x + this.boundingBox.width > viewportBounds.x &&
545
+ this.boundingBox.y < viewportBounds.y + viewportBounds.height &&
546
+ this.boundingBox.y + this.boundingBox.height > viewportBounds.y);
547
+ }
548
+ centerInViewport() {
549
+ const scale = this._store.state.scale;
550
+ this.translateX = (this._store.state.viewportWidth / 2 - this.totalWidth / 2 - this._store.state.translateX) / scale;
551
+ this.translateY = (this._store.state.viewportHeight / 2 - this.totalHeight / 2 - this._store.state.translateY) / scale;
552
+ }
553
+ move(startX, startY, endX, endY) {
554
+ const deltaX = (startX - endX) / this._store.state.scale;
555
+ const deltaY = (startY - endY) / this._store.state.scale;
556
+ this.translateX += deltaX;
557
+ this.translateY += deltaY;
558
+ }
559
+ resize(x, y, width, height) {
560
+ if (width <= 1 || height <= 1) {
561
+ return;
562
+ }
563
+ this.width = width;
564
+ this.height = height;
565
+ this.translateX = x;
566
+ this.translateY = y;
567
+ }
568
+ rotate(value) {
569
+ this.rotation = value;
570
+ }
571
+ copy() {
572
+ const copiedObject = Object.create(Object.getPrototypeOf(this));
573
+ Object.assign(copiedObject, this);
574
+ copiedObject.id = this.generateId();
575
+ copiedObject.isMounted = false;
576
+ return copiedObject;
577
+ }
578
+ onSelectedClick() {
579
+ // This method can be overridden by subclasses to handle click events when the object is selected.
580
+ }
581
+ revive(object) {
582
+ Object.assign(this, object);
583
+ return this;
584
+ }
585
+ isClass(className) {
586
+ return this.__class__ === className;
587
+ }
588
+ edit() {
589
+ // This method can be overridden by subclasses to handle edit actions.
590
+ }
591
+ hitTest(_x, _y) {
592
+ return true; // Default implementation, can be overridden by subclasses
593
+ }
594
+ hitTestPolygon(polygon) {
595
+ const objectPolygon = this.rotatedPolygon;
596
+ return KritzelGeometryHelper.doPolygonsIntersect(objectPolygon, polygon);
597
+ }
598
+ updatePosition(x, y) {
599
+ this.translateX = x;
600
+ this.translateY = y;
601
+ this._store.state.objectsOctree.update(this);
602
+ }
603
+ }
604
+
605
+ class KritzelText extends KritzelBaseObject {
606
+ get isReadonly() {
607
+ return !(this._store.state.activeTool instanceof KritzelTextTool);
608
+ }
609
+ constructor(config) {
610
+ super();
611
+ this.__class__ = 'KritzelText';
612
+ this.value = '';
613
+ this.fontFamily = 'Arial';
614
+ this.fontSize = 8;
615
+ this.fontColor = '#000000';
616
+ this.initialWidth = 3;
617
+ this.isNew = true;
618
+ this.isDebugInfoVisible = true;
619
+ this.isEditable = true;
620
+ this.rows = 1;
621
+ if (config) {
622
+ this.value = config.value || ' ';
623
+ this.translateX = config.translateX || 0;
624
+ this.translateY = config.translateY || 0;
625
+ this.fontSize = config.fontSize || 8;
626
+ this.fontFamily = config.fontFamily || 'Arial';
627
+ this.fontColor = config.fontColor || '#000000';
628
+ this.height = config.height || this.fontSize * 1.2;
629
+ this.width = config.width || 0;
630
+ this.scale = config.scale || 1;
631
+ }
632
+ }
633
+ static create(store, fontSize, fontFamily) {
634
+ const object = new KritzelText();
635
+ object._store = store;
636
+ object.id = object.generateId();
637
+ object.workspaceId = store.state.activeWorkspace.id;
638
+ object.fontSize = fontSize;
639
+ object.fontFamily = fontFamily;
640
+ object.translateX = 0;
641
+ object.translateY = 0;
642
+ object.width = object.initialWidth / (object._store.state.scale < 0 ? object._store.state.scale : 1);
643
+ object.height = (object.fontSize * 1.2) / (object._store.state.scale < 0 ? object._store.state.scale : 1);
644
+ object.padding = 5;
645
+ object.backgroundColor = 'transparent';
646
+ object.scale = object._store.state.scale;
647
+ object.value = ' ';
648
+ object.zIndex = store.currentZIndex;
649
+ return object;
650
+ }
651
+ mount(element) {
652
+ if ((this.isMounted && this.elementRef === element) || this.isInViewport() === false) {
653
+ return;
654
+ }
655
+ this.elementRef = element;
656
+ this.isMounted = true;
657
+ }
658
+ resize(x, y, width, height) {
659
+ if (width <= 1 || height <= 1) {
660
+ return;
661
+ }
662
+ const scaleFactor = height / this.height;
663
+ this.fontSize = this.fontSize * scaleFactor;
664
+ this.width = this.width * scaleFactor;
665
+ this.height = height;
666
+ this.translateX = x;
667
+ this.translateY = y;
668
+ }
669
+ handleKeyDown(event) {
670
+ if (this.isReadonly) {
671
+ event.preventDefault();
672
+ event.stopPropagation();
673
+ }
674
+ }
675
+ handleInput(event) {
676
+ const target = event.target;
677
+ if (target.value === '') {
678
+ this.value = ' ';
679
+ target.value = ' ';
680
+ target.selectionStart = target.selectionEnd = target.value.length;
681
+ }
682
+ else {
683
+ this.value = target.value.trim();
684
+ }
685
+ this.updateTextareaDimensions();
686
+ }
687
+ updateTextareaDimensions() {
688
+ if (this.elementRef) {
689
+ const span = document.createElement('span');
690
+ span.style.position = 'absolute';
691
+ span.style.whiteSpace = 'pre-wrap';
692
+ span.style.visibility = 'hidden';
693
+ span.style.fontSize = window.getComputedStyle(this.elementRef).fontSize;
694
+ span.style.fontFamily = window.getComputedStyle(this.elementRef).fontFamily;
695
+ span.innerHTML = this.elementRef.value.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\n/g, '<br>') + '<br>';
696
+ document.body.appendChild(span);
697
+ const textWidth = span.offsetWidth;
698
+ const textHeight = span.offsetHeight;
699
+ document.body.removeChild(span);
700
+ this.width = textWidth;
701
+ this.height = textHeight;
702
+ this._store.history.executeCommand(new UpdateObjectCommand(this._store, this, this, Object.assign({}, this)));
703
+ }
704
+ }
705
+ focus() {
706
+ if (this.elementRef) {
707
+ this.elementRef.focus();
708
+ }
709
+ }
710
+ selectAll() {
711
+ if (this.elementRef) {
712
+ this.elementRef.select();
713
+ }
714
+ }
715
+ insertFromClipboard() {
716
+ if (this.elementRef) {
717
+ this.elementRef.focus();
718
+ try {
719
+ navigator.clipboard.readText().then(text => {
720
+ const start = this.elementRef.selectionStart;
721
+ const end = this.elementRef.selectionEnd;
722
+ const value = this.elementRef.value;
723
+ this.elementRef.value = value.substring(0, start) + text + value.substring(end);
724
+ this.elementRef.selectionStart = this.elementRef.selectionEnd = start + text.length;
725
+ this.value = this.elementRef.value;
726
+ this.updateTextareaDimensions();
727
+ });
728
+ }
729
+ catch (err) {
730
+ console.error('Failed to read clipboard contents:', err);
731
+ }
732
+ }
733
+ }
734
+ edit() {
735
+ this._store.setState('activeTool', KritzelToolRegistry.getTool('text'));
736
+ this._store.state.selectionGroup = null;
737
+ this._store.state.selectionBox = null;
738
+ this._store.state.activeText = this;
739
+ setTimeout(() => {
740
+ this.focus();
741
+ }, 300);
742
+ }
743
+ }
744
+
745
+ var cjs = {};
746
+
747
+ var hasRequiredCjs;
748
+
749
+ function requireCjs () {
750
+ if (hasRequiredCjs) return cjs;
751
+ hasRequiredCjs = 1;
752
+ (function (exports) {
753
+ var pe=Object.defineProperty;var ge=e=>pe(e,"__esModule",{value:true});var de=(e,t)=>{ge(e);for(var s in t)pe(e,s,{get:t[s],enumerable:true});};de(exports,{default:()=>ve,getStroke:()=>ne,getStrokeOutlinePoints:()=>te,getStrokePoints:()=>re});function $(e,t,s,x=h=>h){return e*x(.5-t*(.5-s))}function ce(e){return [-e[0],-e[1]]}function l(e,t){return [e[0]+t[0],e[1]+t[1]]}function a(e,t){return [e[0]-t[0],e[1]-t[1]]}function b(e,t){return [e[0]*t,e[1]*t]}function xe(e,t){return [e[0]/t,e[1]/t]}function R(e){return [e[1],-e[0]]}function B(e,t){return e[0]*t[0]+e[1]*t[1]}function me(e,t){return e[0]===t[0]&&e[1]===t[1]}function Se(e){return Math.hypot(e[0],e[1])}function Pe(e){return e[0]*e[0]+e[1]*e[1]}function A(e,t){return Pe(a(e,t))}function G(e){return xe(e,Se(e))}function ae(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function L(e,t,s){let x=Math.sin(s),h=Math.cos(s),y=e[0]-t[0],n=e[1]-t[1],f=y*h-n*x,d=y*x+n*h;return [f+t[0],d+t[1]]}function K(e,t,s){return l(e,b(a(t,e),s))}function ee(e,t,s){return l(e,b(t,s))}var{min:C,PI:ke}=Math,le=.275,V=ke+1e-4;function te(e,t={}){let{size:s=16,smoothing:x=.5,thinning:h=.5,simulatePressure:y=true,easing:n=r=>r,start:f={},end:d={},last:D=false}=t,{cap:S=true,easing:j=r=>r*(2-r)}=f,{cap:q=true,easing:c=r=>--r*r*r+1}=d;if(e.length===0||s<=0)return [];let p=e[e.length-1].runningLength,g=f.taper===false?0:f.taper===true?Math.max(s,p):f.taper,T=d.taper===false?0:d.taper===true?Math.max(s,p):d.taper,oe=Math.pow(s*x,2),_=[],M=[],H=e.slice(0,10).reduce((r,i)=>{let o=i.pressure;if(y){let u=C(1,i.distance/s),W=C(1,1-u);o=C(1,r+(W-r)*(u*le));}return (r+o)/2},e[0].pressure),m=$(s,h,e[e.length-1].pressure,n),U,X=e[0].vector,z=e[0].point,F=z,O=z,E=F,J=false;for(let r=0;r<e.length;r++){let{pressure:i}=e[r],{point:o,vector:u,distance:W,runningLength:I}=e[r];if(r<e.length-1&&p-I<3)continue;if(h){if(y){let v=C(1,W/s),Z=C(1,1-v);i=C(1,H+(Z-H)*(v*le));}m=$(s,h,i,n);}else m=s/2;U===void 0&&(U=m);let fe=I<g?j(I/g):1,be=p-I<T?c((p-I)/T):1;m=Math.max(.01,m*Math.min(fe,be));let se=(r<e.length-1?e[r+1]:e[r]).vector,Y=r<e.length-1?B(u,se):1,he=B(u,X)<0&&!J,ue=Y!==null&&Y<0;if(he||ue){let v=b(R(X),m);for(let Z=1/13,w=0;w<=1;w+=Z)O=L(a(o,v),o,V*w),_.push(O),E=L(l(o,v),o,V*-w),M.push(E);z=O,F=E,ue&&(J=true);continue}if(J=false,r===e.length-1){let v=b(R(u),m);_.push(a(o,v)),M.push(l(o,v));continue}let ie=b(R(K(se,u,Y)),m);O=a(o,ie),(r<=1||A(z,O)>oe)&&(_.push(O),z=O),E=l(o,ie),(r<=1||A(F,E)>oe)&&(M.push(E),F=E),H=i,X=u;}let P=e[0].point.slice(0,2),k=e.length>1?e[e.length-1].point.slice(0,2):l(e[0].point,[1,1]),Q=[],N=[];if(e.length===1){if(!(g||T)||D){let r=ee(P,G(R(a(P,k))),-(U||m)),i=[];for(let o=1/13,u=o;u<=1;u+=o)i.push(L(r,P,V*2*u));return i}}else {if(!(g||T&&e.length===1))if(S)for(let i=1/13,o=i;o<=1;o+=i){let u=L(M[0],P,V*o);Q.push(u);}else {let i=a(_[0],M[0]),o=b(i,.5),u=b(i,.51);Q.push(a(P,o),a(P,u),l(P,u),l(P,o));}let r=R(ce(e[e.length-1].vector));if(T||g&&e.length===1)N.push(k);else if(q){let i=ee(k,r,m);for(let o=1/29,u=o;u<1;u+=o)N.push(L(i,k,V*3*u));}else N.push(l(k,b(r,m)),l(k,b(r,m*.99)),a(k,b(r,m*.99)),a(k,b(r,m)));}return _.concat(N,M.reverse(),Q)}function re(e,t={}){var q;let{streamline:s=.5,size:x=16,last:h=false}=t;if(e.length===0)return [];let y=.15+(1-s)*.85,n=Array.isArray(e[0])?e:e.map(({x:c,y:p,pressure:g=.5})=>[c,p,g]);if(n.length===2){let c=n[1];n=n.slice(0,-1);for(let p=1;p<5;p++)n.push(K(n[0],c,p/4));}n.length===1&&(n=[...n,[...l(n[0],[1,1]),...n[0].slice(2)]]);let f=[{point:[n[0][0],n[0][1]],pressure:n[0][2]>=0?n[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],d=false,D=0,S=f[0],j=n.length-1;for(let c=1;c<n.length;c++){let p=h&&c===j?n[c].slice(0,2):K(S.point,n[c],y);if(me(S.point,p))continue;let g=ae(p,S.point);if(D+=g,c<j&&!d){if(D<x)continue;d=true;}S={point:p,pressure:n[c][2]>=0?n[c][2]:.5,vector:G(a(S.point,p)),distance:g,runningLength:D},f.push(S);}return f[0].vector=((q=f[1])==null?void 0:q.vector)||[0,0],f}function ne(e,t={}){return te(re(e,t),t)}var ve=ne;
754
+ } (cjs));
755
+ return cjs;
756
+ }
757
+
758
+ var cjsExports = requireCjs();
759
+
760
+ class KritzelMathHelper {
761
+ static average(a, b) {
762
+ return (a + b) / 2;
763
+ }
764
+ }
765
+
766
+ class KritzelPath extends KritzelBaseObject {
767
+ get viewBox() {
768
+ return `${this.x} ${this.y} ${this.width} ${this.height}`;
769
+ }
770
+ constructor(config) {
771
+ var _a, _b, _c, _d, _e, _f;
772
+ super();
773
+ this.__class__ = 'KritzelPath';
774
+ this.stroke = 'none';
775
+ this.lineSlack = 0.5;
776
+ this.x = 0;
777
+ this.y = 0;
778
+ this.height = 0;
779
+ this.width = 0;
780
+ this.scale = 1;
781
+ this.isVisible = true;
782
+ this.isDebugInfoVisible = true;
783
+ this._adjustedPoints = null;
784
+ this.options = config;
785
+ this.points = (_a = config === null || config === void 0 ? void 0 : config.points) !== null && _a !== void 0 ? _a : [];
786
+ this.translateX = (_b = config === null || config === void 0 ? void 0 : config.translateX) !== null && _b !== void 0 ? _b : 0;
787
+ this.translateY = (_c = config === null || config === void 0 ? void 0 : config.translateY) !== null && _c !== void 0 ? _c : 0;
788
+ this.scale = (_d = config === null || config === void 0 ? void 0 : config.scale) !== null && _d !== void 0 ? _d : 1;
789
+ this.strokeWidth = (_e = config === null || config === void 0 ? void 0 : config.strokeWidth) !== null && _e !== void 0 ? _e : 8;
790
+ this.fill = (_f = config === null || config === void 0 ? void 0 : config.fill) !== null && _f !== void 0 ? _f : '#000000';
791
+ this.d = this.generateSvgPath();
792
+ this.updateDimensions();
793
+ }
794
+ static create(store, options) {
795
+ var _a, _b, _c, _d, _e, _f;
796
+ const object = new KritzelPath();
797
+ object._store = store;
798
+ object.id = object.generateId();
799
+ object.workspaceId = store.state.activeWorkspace.id;
800
+ object.options = options;
801
+ object.points = (_a = options === null || options === void 0 ? void 0 : options.points) !== null && _a !== void 0 ? _a : [];
802
+ object.translateX = (_b = options === null || options === void 0 ? void 0 : options.translateX) !== null && _b !== void 0 ? _b : 0;
803
+ object.translateY = (_c = options === null || options === void 0 ? void 0 : options.translateY) !== null && _c !== void 0 ? _c : 0;
804
+ object.scale = (_d = options === null || options === void 0 ? void 0 : options.scale) !== null && _d !== void 0 ? _d : 1;
805
+ object.strokeWidth = (_e = options === null || options === void 0 ? void 0 : options.strokeWidth) !== null && _e !== void 0 ? _e : 8;
806
+ object.fill = (_f = options === null || options === void 0 ? void 0 : options.fill) !== null && _f !== void 0 ? _f : '#000000';
807
+ object.zIndex = store.currentZIndex;
808
+ object.d = object.generateSvgPath();
809
+ object.updateDimensions();
810
+ return object;
811
+ }
812
+ resize(x, y, width, height) {
813
+ if (width <= 1 || height <= 1) {
814
+ return;
815
+ }
816
+ const scaleX = width / this.width;
817
+ const scaleY = height / this.height;
818
+ this.width = width;
819
+ this.height = height;
820
+ this.points = this.points.map(([x, y]) => [x * scaleX, y * scaleY]);
821
+ this.d = this.generateSvgPath();
822
+ this.width = Math.max(...this.points.map(p => p[0])) - Math.min(...this.points.map(p => p[0])) + this.strokeWidth;
823
+ this.height = Math.max(...this.points.map(p => p[1])) - Math.min(...this.points.map(p => p[1])) + this.strokeWidth;
824
+ this.x = Math.min(...this.points.map(p => p[0])) - this.strokeWidth / 2;
825
+ this.y = Math.min(...this.points.map(p => p[1])) - this.strokeWidth / 2;
826
+ this.translateX = x;
827
+ this.translateY = y;
828
+ this._adjustedPoints = null;
829
+ }
830
+ rotate(value) {
831
+ this.rotation = value;
832
+ this._adjustedPoints = null;
833
+ }
834
+ move(startX, startY, endX, endY) {
835
+ const deltaX = (startX - endX) / this._store.state.scale;
836
+ const deltaY = (startY - endY) / this._store.state.scale;
837
+ this.translateX += deltaX;
838
+ this.translateY += deltaY;
839
+ this._adjustedPoints = null;
840
+ }
841
+ hitTest(x, y) {
842
+ const halfStroke = this.strokeWidth / this.scale / 2;
843
+ if (this._adjustedPoints === null) {
844
+ this._adjustedPoints = this.computeAdjustedPoints();
845
+ }
846
+ if (this._adjustedPoints.length === 1) {
847
+ const p1 = this._adjustedPoints[0];
848
+ const distance = this.pointToLineSegmentDistance(x, y, p1[0], p1[1], p1[0], p1[1]);
849
+ return distance <= halfStroke;
850
+ }
851
+ for (let i = 0; i < this._adjustedPoints.length - 1; i++) {
852
+ const p1 = this._adjustedPoints[i];
853
+ const p2 = this._adjustedPoints[i + 1];
854
+ const distance = this.pointToLineSegmentDistance(x, y, p1[0], p1[1], p2[0], p2[1]);
855
+ if (distance <= halfStroke) {
856
+ return true;
857
+ }
858
+ }
859
+ return false;
860
+ }
861
+ hitTestPolygon(polygon) {
862
+ const halfStroke = this.strokeWidth / this.scale / 2;
863
+ if (this._adjustedPoints === null) {
864
+ this._adjustedPoints = this.computeAdjustedPoints();
865
+ }
866
+ const polyPoints = [
867
+ { x: polygon.bottomLeft.x, y: polygon.bottomLeft.y },
868
+ { x: polygon.bottomRight.x, y: polygon.bottomRight.y },
869
+ { x: polygon.topRight.x, y: polygon.topRight.y },
870
+ { x: polygon.topLeft.x, y: polygon.topLeft.y },
871
+ ];
872
+ for (const [px, py] of this._adjustedPoints) {
873
+ if (KritzelGeometryHelper.isPointInPolygon({ x: px, y: py }, polyPoints)) {
874
+ return true;
875
+ }
876
+ }
877
+ for (const pt of polyPoints) {
878
+ if (this.hitTest(pt.x, pt.y)) {
879
+ return true;
880
+ }
881
+ }
882
+ for (let i = 0; i < this._adjustedPoints.length - 1; i++) {
883
+ const p1 = { x: this._adjustedPoints[i][0], y: this._adjustedPoints[i][1] };
884
+ const p2 = { x: this._adjustedPoints[i + 1][0], y: this._adjustedPoints[i + 1][1] };
885
+ for (let j = 0; j < polyPoints.length; j++) {
886
+ const q1 = polyPoints[j];
887
+ const q2 = polyPoints[(j + 1) % polyPoints.length];
888
+ if (KritzelGeometryHelper.intersectLines(p1, p2, q1, q2)) {
889
+ return true;
890
+ }
891
+ }
892
+ }
893
+ for (let i = 0; i < this._adjustedPoints.length - 1; i++) {
894
+ const p1 = this._adjustedPoints[i];
895
+ const p2 = this._adjustedPoints[i + 1];
896
+ for (let j = 0; j < polyPoints.length; j++) {
897
+ const q1 = polyPoints[j];
898
+ const q2 = polyPoints[(j + 1) % polyPoints.length];
899
+ const d1 = this.pointToLineSegmentDistance(q1.x, q1.y, p1[0], p1[1], p2[0], p2[1]);
900
+ const d2 = this.pointToLineSegmentDistance(q2.x, q2.y, p1[0], p1[1], p2[0], p2[1]);
901
+ const d3 = this.pointToLineSegmentDistance(p1[0], p1[1], q1.x, q1.y, q2.x, q2.y);
902
+ const d4 = this.pointToLineSegmentDistance(p2[0], p2[1], q1.x, q1.y, q2.x, q2.y);
903
+ const minD = Math.min(d1, d2, d3, d4);
904
+ if (minD <= halfStroke) {
905
+ return true;
906
+ }
907
+ }
908
+ }
909
+ return false;
910
+ }
911
+ updatePosition(x, y) {
912
+ this.translateX = x;
913
+ this.translateY = y;
914
+ this._adjustedPoints = null;
915
+ this._store.state.objectsOctree.update(this);
916
+ }
917
+ computeAdjustedPoints() {
918
+ var _a;
919
+ if (!((_a = this.points) === null || _a === void 0 ? void 0 : _a.length)) {
920
+ return [];
921
+ }
922
+ const angle = this.rotation;
923
+ const cos = Math.cos(angle);
924
+ const sin = Math.sin(angle);
925
+ const xs = this.points.map(p => p[0]);
926
+ const ys = this.points.map(p => p[1]);
927
+ const pivot = {
928
+ x: (Math.min(...xs) + Math.max(...xs)) / 2,
929
+ y: (Math.min(...ys) + Math.max(...ys)) / 2,
930
+ };
931
+ const { x: cx, y: cy } = pivot;
932
+ const rotatedPoints = this.points.map(([x, y]) => {
933
+ const dx = x - cx;
934
+ const dy = y - cy;
935
+ return [cx + dx * cos - dy * sin, cy + dx * sin + dy * cos];
936
+ });
937
+ return rotatedPoints.map(([px, py]) => [((Math.abs(px - this.x) / this.scale + this.translateX)), ((Math.abs(py - this.y) / this.scale + this.translateY))]);
938
+ }
939
+ pointToLineSegmentDistance(x, y, x1, y1, x2, y2) {
940
+ const A = x - x1;
941
+ const B = y - y1;
942
+ const C = x2 - x1;
943
+ const D = y2 - y1;
944
+ const dot = A * C + B * D;
945
+ const len_sq = C * C + D * D;
946
+ let param = -1;
947
+ if (len_sq !== 0) {
948
+ // in case of 0 length line
949
+ param = dot / len_sq;
950
+ }
951
+ let xx, yy;
952
+ if (param < 0) {
953
+ xx = x1;
954
+ yy = y1;
955
+ }
956
+ else if (param > 1) {
957
+ xx = x2;
958
+ yy = y2;
959
+ }
960
+ else {
961
+ xx = x1 + param * C;
962
+ yy = y1 + param * D;
963
+ }
964
+ const dx = x - xx;
965
+ const dy = y - yy;
966
+ return Math.sqrt(dx * dx + dy * dy);
967
+ }
968
+ updateDimensions() {
969
+ const rotatedPoints = this.points.map(([x, y]) => {
970
+ const rotatedX = x * Math.cos(this.rotation) - y * Math.sin(this.rotation);
971
+ const rotatedY = x * Math.sin(this.rotation) + y * Math.cos(this.rotation);
972
+ return [rotatedX, rotatedY];
973
+ });
974
+ const minX = Math.min(...rotatedPoints.map(p => p[0] - this.strokeWidth / 2));
975
+ const minY = Math.min(...rotatedPoints.map(p => p[1] - this.strokeWidth / 2));
976
+ const maxX = Math.max(...rotatedPoints.map(p => p[0] + this.strokeWidth / 2));
977
+ const maxY = Math.max(...rotatedPoints.map(p => p[1] + this.strokeWidth / 2));
978
+ this.width = maxX - minX + this.lineSlack;
979
+ this.height = maxY - minY + this.lineSlack;
980
+ this.x = minX;
981
+ this.y = minY;
982
+ this.translateX = (this.x + this.translateX) / this.scale;
983
+ this.translateY = (this.y + this.translateY) / this.scale;
984
+ }
985
+ generateSvgPath() {
986
+ const stroke = this.getStrokeFromPoints(this.points, this.strokeWidth);
987
+ return this.getSvgPathFromStroke(stroke);
988
+ }
989
+ getStrokeFromPoints(points, strokeWidth) {
990
+ return cjsExports.getStroke(points, {
991
+ size: strokeWidth,
992
+ thinning: 0.5,
993
+ smoothing: 0.5,
994
+ streamline: 0.5,
995
+ easing: t => t,
996
+ simulatePressure: true,
997
+ last: true,
998
+ start: {
999
+ cap: true,
1000
+ taper: 0,
1001
+ easing: t => t,
1002
+ },
1003
+ end: {
1004
+ cap: true,
1005
+ taper: 0,
1006
+ easing: t => t,
1007
+ },
1008
+ });
1009
+ }
1010
+ getSvgPathFromStroke(points, closed = true) {
1011
+ const len = points.length;
1012
+ if (len < 4) {
1013
+ return ``;
1014
+ }
1015
+ let a = points[0];
1016
+ let b = points[1];
1017
+ const c = points[2];
1018
+ let result = `M${a[0].toFixed(2)},${a[1].toFixed(2)} Q${b[0].toFixed(2)},${b[1].toFixed(2)} ${KritzelMathHelper.average(b[0], c[0]).toFixed(2)},${KritzelMathHelper.average(b[1], c[1]).toFixed(2)} T`;
1019
+ for (let i = 2, max = len - 1; i < max; i++) {
1020
+ a = points[i];
1021
+ b = points[i + 1];
1022
+ result += `${KritzelMathHelper.average(a[0], b[0]).toFixed(2)},${KritzelMathHelper.average(a[1], b[1]).toFixed(2)} `;
1023
+ }
1024
+ if (closed) {
1025
+ result += 'Z';
1026
+ }
1027
+ return result;
1028
+ }
1029
+ }
1030
+
1031
+ class KritzelImage extends KritzelBaseObject {
1032
+ constructor(config) {
1033
+ super();
1034
+ this.__class__ = 'KritzelImage';
1035
+ this.src = '';
1036
+ this.maxWidth = 300;
1037
+ this.maxHeight = 300;
1038
+ this.maxCompressionSize = 300;
1039
+ this.isDebugInfoVisible = true;
1040
+ this.src = (config === null || config === void 0 ? void 0 : config.src) || '';
1041
+ this.x = (config === null || config === void 0 ? void 0 : config.x) || 0;
1042
+ this.y = (config === null || config === void 0 ? void 0 : config.y) || 0;
1043
+ this.translateX = (config === null || config === void 0 ? void 0 : config.translateX) || 0;
1044
+ this.translateY = (config === null || config === void 0 ? void 0 : config.translateY) || 0;
1045
+ this.scale = (config === null || config === void 0 ? void 0 : config.scale) || 1;
1046
+ }
1047
+ static create(store) {
1048
+ const object = new KritzelImage();
1049
+ object._store = store;
1050
+ object.id = object.generateId();
1051
+ object.workspaceId = store.state.activeWorkspace.id;
1052
+ object.x = 0;
1053
+ object.y = 0;
1054
+ object.translateX = 0;
1055
+ object.translateY = 0;
1056
+ object.scale = object._store.state.scale;
1057
+ object.zIndex = store.currentZIndex;
1058
+ return object;
1059
+ }
1060
+ resize(x, y, width, height) {
1061
+ if (width <= 1 || height <= 1) {
1062
+ return;
1063
+ }
1064
+ const scaleFactor = height / this.height;
1065
+ this.width = this.width * scaleFactor;
1066
+ this.height = this.height * scaleFactor;
1067
+ this.translateX = x;
1068
+ this.translateY = y;
1069
+ }
1070
+ calculateScaledDimensions(img) {
1071
+ let scaledWidth = img.width;
1072
+ let scaledHeight = img.height;
1073
+ if (img.width > this.maxWidth || img.height > this.maxHeight) {
1074
+ const widthRatio = this.maxWidth / img.width;
1075
+ const heightRatio = this.maxHeight / img.height;
1076
+ const scaleRatio = Math.min(widthRatio, heightRatio);
1077
+ scaledWidth = img.width * scaleRatio;
1078
+ scaledHeight = img.height * scaleRatio;
1079
+ }
1080
+ return { scaledWidth, scaledHeight };
1081
+ }
1082
+ }
1083
+
1084
+ class KritzelBrushTool extends KritzelBaseTool {
1085
+ constructor(store) {
1086
+ super(store);
1087
+ this.type = 'pen';
1088
+ this.color = '#000000';
1089
+ this.size = 6;
1090
+ this.palettes = {
1091
+ pen: ['#000000', '#FFFFFF', '#FF0000', '#00FF00', '#0000FF', '#FFFF00', '#FF00FF', '#00FFFF', '#808080', '#C0C0C0', '#800000', '#008000', '#000080', '#808000', '#800080'],
1092
+ highlighter: ['#ffff00', '#ffb347', '#b4ffb4'],
1093
+ };
1094
+ }
1095
+ handlePointerDown(event) {
1096
+ if (event.cancelable) {
1097
+ event.preventDefault();
1098
+ }
1099
+ if (event.pointerType === 'mouse') {
1100
+ if (KritzelEventHelper.isLeftClick(event)) {
1101
+ this._store.state.isDrawing = true;
1102
+ const x = event.clientX - this._store.offsetX;
1103
+ const y = event.clientY - this._store.offsetY;
1104
+ this._store.state.currentPath = KritzelPath.create(this._store, {
1105
+ points: [[x, y]],
1106
+ translateX: -this._store.state.translateX,
1107
+ translateY: -this._store.state.translateY,
1108
+ scale: this._store.state.scale,
1109
+ fill: this.color,
1110
+ strokeWidth: this.size,
1111
+ });
1112
+ }
1113
+ }
1114
+ if (event.pointerType === 'touch') {
1115
+ const activePointers = Array.from(this._store.state.pointers.values());
1116
+ if (activePointers.length === 1) {
1117
+ const x = Math.round(activePointers[0].clientX - this._store.offsetX);
1118
+ const y = Math.round(activePointers[0].clientY - this._store.offsetY);
1119
+ this._store.state.isDrawing = true;
1120
+ this._store.state.currentPath = KritzelPath.create(this._store, {
1121
+ points: [[x, y]],
1122
+ translateX: -this._store.state.translateX,
1123
+ translateY: -this._store.state.translateY,
1124
+ scale: this._store.state.scale,
1125
+ fill: this.color,
1126
+ strokeWidth: this.size,
1127
+ });
1128
+ this._store.rerender();
1129
+ }
1130
+ }
1131
+ }
1132
+ handlePointerMove(event) {
1133
+ if (event.cancelable) {
1134
+ event.preventDefault();
1135
+ }
1136
+ if (event.pointerType === 'mouse') {
1137
+ if (this._store.state.isDrawing) {
1138
+ const x = event.clientX - this._store.offsetX;
1139
+ const y = event.clientY - this._store.offsetY;
1140
+ this._store.state.currentPath = KritzelPath.create(this._store, {
1141
+ points: [...this._store.state.currentPath.points, [x, y]],
1142
+ translateX: -this._store.state.translateX,
1143
+ translateY: -this._store.state.translateY,
1144
+ scale: this._store.state.scale,
1145
+ fill: this.color,
1146
+ strokeWidth: this.size,
1147
+ });
1148
+ this._store.rerender();
1149
+ }
1150
+ }
1151
+ if (event.pointerType === 'touch') {
1152
+ const activePointers = Array.from(this._store.state.pointers.values());
1153
+ if (activePointers.length === 1) {
1154
+ const x = Math.round(activePointers[0].clientX - this._store.offsetX);
1155
+ const y = Math.round(activePointers[0].clientY - this._store.offsetY);
1156
+ this._store.state.currentPath = KritzelPath.create(this._store, {
1157
+ points: [...this._store.state.currentPath.points, [x, y]],
1158
+ translateX: -this._store.state.translateX,
1159
+ translateY: -this._store.state.translateY,
1160
+ scale: this._store.state.scale,
1161
+ fill: this.color,
1162
+ strokeWidth: this.size,
1163
+ });
1164
+ this._store.rerender();
1165
+ }
1166
+ }
1167
+ }
1168
+ handlePointerUp(event) {
1169
+ if (event.cancelable) {
1170
+ event.preventDefault();
1171
+ }
1172
+ if (event.pointerType === 'mouse') {
1173
+ if (this._store.state.isDrawing) {
1174
+ this._store.state.isDrawing = false;
1175
+ if (this._store.state.currentPath) {
1176
+ this._store.state.currentPath.zIndex = this._store.currentZIndex;
1177
+ this._store.history.executeCommand(new AddObjectCommand(this._store, this, this._store.state.currentPath));
1178
+ }
1179
+ this._store.state.currentPath = undefined;
1180
+ }
1181
+ }
1182
+ if (event.pointerType === 'touch') {
1183
+ if (this._store.state.isDrawing) {
1184
+ this._store.state.isDrawing = false;
1185
+ if (this._store.state.currentPath) {
1186
+ this._store.state.currentPath.zIndex = this._store.currentZIndex;
1187
+ this._store.history.executeCommand(new AddObjectCommand(this._store, this, this._store.state.currentPath));
1188
+ }
1189
+ this._store.state.currentPath = undefined;
1190
+ this._store.rerender();
1191
+ }
1192
+ }
1193
+ }
1194
+ }
1195
+
1196
+ class BatchCommand extends KritzelBaseCommand {
1197
+ constructor(store, initiator, commands, skipHistory = false) {
1198
+ super(store, initiator, skipHistory);
1199
+ this.commands = commands;
1200
+ }
1201
+ execute() {
1202
+ this.commands.forEach(command => command.execute());
1203
+ }
1204
+ undo() {
1205
+ this.commands.forEach(command => command.undo());
1206
+ }
1207
+ }
1208
+
1209
+ class KritzelCustomElement extends KritzelBaseObject {
1210
+ constructor(config) {
1211
+ super();
1212
+ this.__class__ = 'KritzelCustomElement';
1213
+ this.isInteractive = true;
1214
+ if (config) {
1215
+ this.translateX = config.translateX || 0;
1216
+ this.translateY = config.translateY || 0;
1217
+ this.scale = config.scale || 1;
1218
+ this.element = config.element;
1219
+ this.height = config.height || 0;
1220
+ this.width = config.width || 0;
1221
+ }
1222
+ }
1223
+ static create(store, config) {
1224
+ const object = new KritzelCustomElement(config);
1225
+ object._store = store;
1226
+ object.id = object.generateId();
1227
+ object.workspaceId = store.state.activeWorkspace.id;
1228
+ return object;
1229
+ }
1230
+ mount(element) {
1231
+ if (this.isMounted) {
1232
+ return;
1233
+ }
1234
+ this.elementRef = element;
1235
+ this.isMounted = true;
1236
+ this.elementRef.appendChild(this.element);
1237
+ }
1238
+ resize(x, y, width, height) {
1239
+ if (width <= 1 || height <= 1) {
1240
+ return;
1241
+ }
1242
+ this.width = width;
1243
+ this.height = height;
1244
+ this.translateX = x;
1245
+ this.translateY = y;
1246
+ if (this.element) {
1247
+ this.element.style.width = `${width}px`;
1248
+ this.element.style.height = `${height}px`;
1249
+ }
1250
+ }
1251
+ copy() {
1252
+ const copiedObject = Object.create(Object.getPrototypeOf(this));
1253
+ Object.assign(copiedObject, this);
1254
+ copiedObject.id = this.generateId();
1255
+ copiedObject.isMounted = false;
1256
+ copiedObject.element = this.element.cloneNode(true);
1257
+ return copiedObject;
1258
+ }
1259
+ }
1260
+
1261
+ class RemoveObjectCommand extends KritzelBaseCommand {
1262
+ constructor(store, initiator, object, skipHistory = false) {
1263
+ super(store, initiator, skipHistory);
1264
+ this.object = object;
1265
+ }
1266
+ execute() {
1267
+ this._store.state.objectsOctree.remove(object => object.id === this.object.id);
1268
+ this._store.state.objectsOctree.filter(object => object instanceof KritzelCustomElement).forEach(object => object.remount());
1269
+ this._store.deleteObjectFromDatabase(this.object.id);
1270
+ }
1271
+ undo() {
1272
+ this._store.state.objectsOctree.insert(this.object);
1273
+ this._store.state.objectsOctree.filter(object => object instanceof KritzelCustomElement).forEach(object => object.remount());
1274
+ this._store.addObjectToDatabase(ObjectHelper.clone(this.object));
1275
+ }
1276
+ }
1277
+
1278
+ class KritzelEraserTool extends KritzelBaseTool {
1279
+ constructor(store) {
1280
+ super(store);
1281
+ this.touchStartTimeout = null;
1282
+ }
1283
+ handlePointerDown(event) {
1284
+ if (event.pointerType === 'mouse') {
1285
+ if (KritzelEventHelper.isLeftClick(event)) {
1286
+ this._store.state.isErasing = true;
1287
+ }
1288
+ }
1289
+ if (event.pointerType === 'touch') {
1290
+ this.touchStartTimeout = setTimeout(() => {
1291
+ if (this._store.state.pointers.size === 1 && !this._store.state.isScaling) {
1292
+ this._store.state.isErasing = true;
1293
+ }
1294
+ }, 80);
1295
+ }
1296
+ }
1297
+ handlePointerMove(event) {
1298
+ var _a;
1299
+ if (event.pointerType === 'mouse') {
1300
+ if (this._store.state.isErasing) {
1301
+ const selectedObjects = this._store.getObjectsFromPointerEvent(event, '.object');
1302
+ if (selectedObjects.length === 0)
1303
+ return;
1304
+ const x = this._store.state.pointerX;
1305
+ const y = this._store.state.pointerY;
1306
+ selectedObjects.forEach(selectedObject => {
1307
+ selectedObject.markedForRemoval = selectedObject.hitTest(x, y);
1308
+ });
1309
+ this._store.rerender();
1310
+ }
1311
+ }
1312
+ if (event.pointerType === 'touch') {
1313
+ if (this._store.state.pointers.size === 1 && this._store.state.isErasing) {
1314
+ const shadowRoot = (_a = this._store.state.host) === null || _a === void 0 ? void 0 : _a.shadowRoot;
1315
+ if (!shadowRoot)
1316
+ return;
1317
+ const selectedObjects = this._store.getObjectsFromPointerEvent(event, '.object');
1318
+ if (selectedObjects.length === 0)
1319
+ return;
1320
+ const x = this._store.state.pointerX;
1321
+ const y = this._store.state.pointerY;
1322
+ selectedObjects.forEach(selectedObject => {
1323
+ selectedObject.markedForRemoval = selectedObject.hitTest(x, y);
1324
+ });
1325
+ this._store.rerender();
1326
+ }
1327
+ }
1328
+ }
1329
+ handlePointerUp(event) {
1330
+ if (event.pointerType === 'mouse') {
1331
+ if (this._store.state.isErasing) {
1332
+ const removeCommands = this._store.allObjects.filter(object => object.markedForRemoval).map(object => {
1333
+ object.markedForRemoval = false;
1334
+ return new RemoveObjectCommand(this._store, this, object);
1335
+ });
1336
+ if (removeCommands.length > 0) {
1337
+ this._store.history.executeCommand(new BatchCommand(this._store, this, removeCommands));
1338
+ }
1339
+ this._store.state.isErasing = false;
1340
+ }
1341
+ }
1342
+ if (event.pointerType === 'touch') {
1343
+ clearTimeout(this.touchStartTimeout);
1344
+ if (this._store.state.isErasing) {
1345
+ const removeCommands = this._store.allObjects
1346
+ .filter(object => object.markedForRemoval)
1347
+ .map(object => {
1348
+ object.markedForRemoval = false;
1349
+ return new RemoveObjectCommand(this._store, this, object);
1350
+ });
1351
+ if (removeCommands.length > 0) {
1352
+ this._store.history.executeCommand(new BatchCommand(this._store, this, removeCommands));
1353
+ }
1354
+ this._store.state.isErasing = false;
1355
+ }
1356
+ }
1357
+ }
1358
+ }
1359
+
1360
+ class RemoveSelectionGroupCommand extends KritzelBaseCommand {
1361
+ constructor(store, initiator, skipHistory = false) {
1362
+ super(store, initiator, skipHistory);
1363
+ this.previousSelectionGroup = this._store.state.selectionGroup;
1364
+ }
1365
+ execute() {
1366
+ this._store.state.objectsOctree.remove(object => { var _a; return object.id === ((_a = this.previousSelectionGroup) === null || _a === void 0 ? void 0 : _a.id); });
1367
+ this._store.state.selectionGroup = null;
1368
+ }
1369
+ undo() {
1370
+ if (this.previousSelectionGroup) {
1371
+ this._store.state.objectsOctree.insert(this.previousSelectionGroup);
1372
+ this._store.state.selectionGroup = this.previousSelectionGroup;
1373
+ }
1374
+ }
1375
+ }
1376
+
1377
+ class MoveSelectionGroupCommand extends KritzelBaseCommand {
1378
+ constructor(store, initiator, startX, startY, endX, endY, skipFirstExecution = false, skipHistory = false) {
1379
+ super(store, initiator, skipHistory);
1380
+ this.startX = startX;
1381
+ this.startY = startY;
1382
+ this.endX = endX;
1383
+ this.endY = endY;
1384
+ this.skipExecution = skipFirstExecution;
1385
+ this.selectionGroup = this._store.state.selectionGroup;
1386
+ }
1387
+ execute() {
1388
+ if (this.skipExecution) {
1389
+ this.skipExecution = false;
1390
+ return;
1391
+ }
1392
+ this._store.state.selectionGroup = this.selectionGroup;
1393
+ this._store.state.selectionGroup.move(this.startX, this.startY, this.endX, this.endY);
1394
+ }
1395
+ undo() {
1396
+ this._store.state.selectionGroup = this.selectionGroup;
1397
+ this._store.state.selectionGroup.move(this.endX, this.endY, this.startX, this.startY);
1398
+ }
1399
+ }
1400
+
1401
+ class KritzelBaseHandler {
1402
+ constructor(store) {
1403
+ this._store = store;
1404
+ }
1405
+ }
1406
+
1407
+ class KritzelMoveHandler extends KritzelBaseHandler {
1408
+ constructor(store) {
1409
+ super(store);
1410
+ }
1411
+ handlePointerDown(event) {
1412
+ var _a, _b;
1413
+ if (event.pointerType === 'mouse') {
1414
+ if (KritzelEventHelper.isLeftClick(event)) {
1415
+ if (((_a = this._store.state.selectionGroup) === null || _a === void 0 ? void 0 : _a.isSelected) && !this._store.state.isResizeHandleSelected && !this._store.state.isRotationHandleSelected) {
1416
+ const clientX = event.clientX - this._store.offsetX;
1417
+ const clientY = event.clientY - this._store.offsetY;
1418
+ this._store.state.isDragging = true;
1419
+ this.dragStartX = clientX;
1420
+ this.dragStartY = clientY;
1421
+ this.startX = this.dragStartX;
1422
+ this.startY = this.dragStartY;
1423
+ }
1424
+ }
1425
+ }
1426
+ if (event.pointerType === 'touch') {
1427
+ const activePointers = Array.from(this._store.state.pointers.values());
1428
+ if (this._store.state.pointers.size === 1) {
1429
+ if (((_b = this._store.state.selectionGroup) === null || _b === void 0 ? void 0 : _b.isSelected) && !this._store.state.isResizeHandleSelected && !this._store.state.isRotationHandleSelected) {
1430
+ const x = Math.round(activePointers[0].clientX - this._store.offsetX);
1431
+ const y = Math.round(activePointers[0].clientY - this._store.offsetY);
1432
+ this.dragStartX = x;
1433
+ this.dragStartY = y;
1434
+ this.startX = x;
1435
+ this.startY = y;
1436
+ }
1437
+ }
1438
+ }
1439
+ }
1440
+ handlePointerMove(event) {
1441
+ if (event.pointerType === 'mouse') {
1442
+ if (this._store.state.isDragging && this._store.state.selectionGroup) {
1443
+ const clientX = event.clientX - this._store.offsetX;
1444
+ const clientY = event.clientY - this._store.offsetY;
1445
+ this.endX = clientX;
1446
+ this.endY = clientY;
1447
+ this._store.state.selectionGroup.move(clientX, clientY, this.dragStartX, this.dragStartY);
1448
+ this.dragStartX = clientX;
1449
+ this.dragStartY = clientY;
1450
+ }
1451
+ }
1452
+ if (event.pointerType === 'touch') {
1453
+ const activePointers = Array.from(this._store.state.pointers.values());
1454
+ if (this._store.state.pointers.size === 1 && this._store.state.selectionGroup && !this._store.state.isResizeHandleSelected && !this._store.state.isRotationHandleSelected) {
1455
+ const x = Math.round(activePointers[0].clientX - this._store.offsetX);
1456
+ const y = Math.round(activePointers[0].clientY - this._store.offsetY);
1457
+ this._store.state.isDragging = true;
1458
+ this.endX = x;
1459
+ this.endY = y;
1460
+ const moveDeltaX = Math.abs(x - this.startX);
1461
+ const moveDeltaY = Math.abs(y - this.startY);
1462
+ const moveThreshold = 5;
1463
+ if (moveDeltaX > moveThreshold || moveDeltaY > moveThreshold) {
1464
+ clearTimeout(this._store.state.longTouchTimeout);
1465
+ this._store.state.selectionGroup.move(x, y, this.dragStartX, this.dragStartY);
1466
+ this.dragStartX = x;
1467
+ this.dragStartY = y;
1468
+ }
1469
+ }
1470
+ }
1471
+ }
1472
+ handlePointerUp(event) {
1473
+ if (event.pointerType === 'mouse') {
1474
+ if (this._store.state.isDragging) {
1475
+ this._store.state.isDragging = false;
1476
+ const moveSelectionGroupCommand = new MoveSelectionGroupCommand(this._store, this, this.endX, this.endY, this.startX, this.startY, true);
1477
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1478
+ return new UpdateObjectCommand(this._store, this, object, {
1479
+ translateX: object.translateX,
1480
+ translateY: object.translateY
1481
+ });
1482
+ });
1483
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [moveSelectionGroupCommand, ...updateObjectsCommand]));
1484
+ }
1485
+ }
1486
+ if (event.pointerType === 'touch') {
1487
+ if (this._store.state.isDragging) {
1488
+ this._store.state.isDragging = false;
1489
+ const moveSelectionGroupCommand = new MoveSelectionGroupCommand(this._store, this, this.endX, this.endY, this.startX, this.startY, true);
1490
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1491
+ return new UpdateObjectCommand(this._store, this, object, {
1492
+ translateX: object.translateX,
1493
+ translateY: object.translateY
1494
+ });
1495
+ });
1496
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [moveSelectionGroupCommand, ...updateObjectsCommand]));
1497
+ }
1498
+ }
1499
+ }
1500
+ }
1501
+
1502
+ var KritzelHandleType;
1503
+ (function (KritzelHandleType) {
1504
+ KritzelHandleType["TopLeft"] = "top-left";
1505
+ KritzelHandleType["TopRight"] = "top-right";
1506
+ KritzelHandleType["BottomLeft"] = "bottom-left";
1507
+ KritzelHandleType["BottomRight"] = "bottom-right";
1508
+ })(KritzelHandleType || (KritzelHandleType = {}));
1509
+
1510
+ class ResizeSelectionGroupCommand extends KritzelBaseCommand {
1511
+ constructor(store, initiator, previousSize, newSize, skipHistory = false) {
1512
+ super(store, initiator, skipHistory);
1513
+ this.previousSize = previousSize;
1514
+ this.newSize = newSize;
1515
+ this.selectionGroup = this._store.state.selectionGroup;
1516
+ }
1517
+ execute() {
1518
+ this._store.state.selectionGroup = this.selectionGroup;
1519
+ this._store.state.selectionGroup.resize(this.newSize.x, this.newSize.y, this.newSize.width, this.newSize.height);
1520
+ }
1521
+ undo() {
1522
+ this._store.state.selectionGroup = this.selectionGroup;
1523
+ this._store.state.selectionGroup.resize(this.previousSize.x, this.previousSize.y, this.previousSize.width, this.previousSize.height);
1524
+ }
1525
+ }
1526
+
1527
+ class KritzelResizeHandler extends KritzelBaseHandler {
1528
+ constructor(store) {
1529
+ super(store);
1530
+ this.initialMouseX = 0;
1531
+ this.initialMouseY = 0;
1532
+ this.initialSize = { x: 0, y: 0, width: 0, height: 0 };
1533
+ this.newSize = { x: 0, y: 0, width: 0, height: 0 };
1534
+ }
1535
+ handlePointerDown(event) {
1536
+ if (event.pointerType === 'mouse') {
1537
+ if (KritzelEventHelper.isLeftClick(event)) {
1538
+ if (this._store.state.selectionGroup && this._store.state.isResizeHandleSelected) {
1539
+ const clientX = event.clientX - this._store.offsetX;
1540
+ const clientY = event.clientY - this._store.offsetY;
1541
+ this._store.state.isResizing = true;
1542
+ this.initialMouseX = clientX;
1543
+ this.initialMouseY = clientY;
1544
+ this.initialSize.width = this._store.state.selectionGroup.width;
1545
+ this.initialSize.height = this._store.state.selectionGroup.height;
1546
+ this.initialSize.x = this._store.state.selectionGroup.translateX;
1547
+ this.initialSize.y = this._store.state.selectionGroup.translateY;
1548
+ }
1549
+ }
1550
+ }
1551
+ if (event.pointerType === 'touch') {
1552
+ const activePointers = Array.from(this._store.state.pointers.values());
1553
+ const firstTouch = activePointers[0];
1554
+ if (!firstTouch) {
1555
+ return;
1556
+ }
1557
+ if (activePointers.length === 1) {
1558
+ if (this._store.state.selectionGroup && this._store.state.isResizeHandleSelected) {
1559
+ const clientX = Math.round(firstTouch.clientX - this._store.offsetX);
1560
+ const clientY = Math.round(firstTouch.clientY - this._store.offsetY);
1561
+ this._store.state.isResizing = true;
1562
+ this.initialMouseX = clientX;
1563
+ this.initialMouseY = clientY;
1564
+ this.initialSize.width = this._store.state.selectionGroup.width;
1565
+ this.initialSize.height = this._store.state.selectionGroup.height;
1566
+ this.initialSize.x = this._store.state.selectionGroup.translateX;
1567
+ this.initialSize.y = this._store.state.selectionGroup.translateY;
1568
+ clearTimeout(this._store.state.longTouchTimeout);
1569
+ }
1570
+ }
1571
+ }
1572
+ }
1573
+ handlePointerMove(event) {
1574
+ if (event.pointerType === 'mouse') {
1575
+ if (this._store.state.isResizing && this._store.state.selectionGroup) {
1576
+ const clientX = event.clientX - this._store.offsetX;
1577
+ const clientY = event.clientY - this._store.offsetY;
1578
+ const dx = clientX - this.initialMouseX;
1579
+ const dy = clientY - this.initialMouseY;
1580
+ switch (this._store.state.resizeHandleType) {
1581
+ case KritzelHandleType.TopLeft:
1582
+ this.newSize.width = this.initialSize.width - dx;
1583
+ this.newSize.height = this.initialSize.height - dy;
1584
+ this.newSize.x = dx / this._store.state.scale + this.initialSize.x;
1585
+ this.newSize.y = dy / this._store.state.scale + this.initialSize.y;
1586
+ break;
1587
+ case KritzelHandleType.TopRight:
1588
+ this.newSize.width = this.initialSize.width + dx;
1589
+ this.newSize.height = this.initialSize.height - dy;
1590
+ this.newSize.x = this.initialSize.x;
1591
+ this.newSize.y = dy / this._store.state.scale + this.initialSize.y;
1592
+ break;
1593
+ case KritzelHandleType.BottomLeft:
1594
+ this.newSize.width = this.initialSize.width - dx;
1595
+ this.newSize.height = this.initialSize.height + dy;
1596
+ this.newSize.x = dx / this._store.state.scale + this.initialSize.x;
1597
+ this.newSize.y = this.initialSize.y;
1598
+ break;
1599
+ case KritzelHandleType.BottomRight:
1600
+ this.newSize.width = this.initialSize.width + dx;
1601
+ this.newSize.height = this.initialSize.height + dy;
1602
+ this.newSize.x = this.initialSize.x;
1603
+ this.newSize.y = this.initialSize.y;
1604
+ break;
1605
+ }
1606
+ this._store.state.selectionGroup.resize(this.newSize.x, this.newSize.y, this.newSize.width, this.newSize.height);
1607
+ this._store.rerender();
1608
+ }
1609
+ }
1610
+ if (event.pointerType === 'touch') {
1611
+ const activePointers = Array.from(this._store.state.pointers.values());
1612
+ const oneFingerTouch = activePointers[0];
1613
+ if (!oneFingerTouch) {
1614
+ return;
1615
+ }
1616
+ if (this._store.state.isResizing && this._store.state.selectionGroup) {
1617
+ const clientX = Math.round(oneFingerTouch.clientX - this._store.offsetX);
1618
+ const clientY = Math.round(oneFingerTouch.clientY - this._store.offsetY);
1619
+ const dx = clientX - this.initialMouseX;
1620
+ const dy = clientY - this.initialMouseY;
1621
+ switch (this._store.state.resizeHandleType) {
1622
+ case KritzelHandleType.TopLeft:
1623
+ this.newSize.width = this.initialSize.width - dx;
1624
+ this.newSize.height = this.initialSize.height - dy;
1625
+ this.newSize.x = dx / this._store.state.scale + this.initialSize.x;
1626
+ this.newSize.y = dy / this._store.state.scale + this.initialSize.y;
1627
+ break;
1628
+ case KritzelHandleType.TopRight:
1629
+ this.newSize.width = this.initialSize.width + dx;
1630
+ this.newSize.height = this.initialSize.height - dy;
1631
+ this.newSize.x = this.initialSize.x;
1632
+ this.newSize.y = dy / this._store.state.scale + this.initialSize.y;
1633
+ break;
1634
+ case KritzelHandleType.BottomLeft:
1635
+ this.newSize.width = this.initialSize.width - dx;
1636
+ this.newSize.height = this.initialSize.height + dy;
1637
+ this.newSize.x = dx / this._store.state.scale + this.initialSize.x;
1638
+ this.newSize.y = this.initialSize.y;
1639
+ break;
1640
+ case KritzelHandleType.BottomRight:
1641
+ this.newSize.width = this.initialSize.width + dx;
1642
+ this.newSize.height = this.initialSize.height + dy;
1643
+ this.newSize.x = this.initialSize.x;
1644
+ this.newSize.y = this.initialSize.y;
1645
+ break;
1646
+ }
1647
+ this._store.state.selectionGroup.resize(this.newSize.x, this.newSize.y, this.newSize.width, this.newSize.height);
1648
+ clearTimeout(this._store.state.longTouchTimeout);
1649
+ }
1650
+ }
1651
+ }
1652
+ handlePointerUp(event) {
1653
+ if (event.pointerType === 'mouse') {
1654
+ if (this._store.state.isResizing) {
1655
+ const resizeSelectionGroupCommand = new ResizeSelectionGroupCommand(this._store, this, structuredClone(this.initialSize), structuredClone(this.newSize));
1656
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1657
+ return new UpdateObjectCommand(this._store, this, object, Object.assign({}, object));
1658
+ });
1659
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [resizeSelectionGroupCommand, ...updateObjectsCommand]));
1660
+ this._store.state.isResizing = false;
1661
+ this._store.rerender();
1662
+ }
1663
+ }
1664
+ if (event.pointerType === 'touch') {
1665
+ if (this._store.state.isResizing) {
1666
+ const resizeSelectionGroupCommand = new ResizeSelectionGroupCommand(this._store, this, structuredClone(this.initialSize), structuredClone(this.newSize));
1667
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1668
+ return new UpdateObjectCommand(this._store, this, object, Object.assign({}, object));
1669
+ });
1670
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [resizeSelectionGroupCommand, ...updateObjectsCommand]));
1671
+ this._store.state.isResizing = false;
1672
+ this._store.rerender();
1673
+ clearTimeout(this._store.state.longTouchTimeout);
1674
+ }
1675
+ }
1676
+ }
1677
+ }
1678
+
1679
+ class RotateSelectionGroupCommand extends KritzelBaseCommand {
1680
+ constructor(store, initiator, rotation, skipHistory = false) {
1681
+ super(store, initiator, skipHistory);
1682
+ this.rotation = rotation;
1683
+ this.initialRotation = this._store.state.selectionGroup.rotation;
1684
+ this.selectionGroup = this._store.state.selectionGroup;
1685
+ }
1686
+ execute() {
1687
+ this._store.state.selectionGroup = this.selectionGroup;
1688
+ this._store.state.selectionGroup.rotate(this.rotation);
1689
+ this._store.state.selectionGroup.objects.forEach(object => {
1690
+ this._store.state.objectsOctree.update(object);
1691
+ });
1692
+ }
1693
+ undo() {
1694
+ this._store.state.selectionGroup = this.selectionGroup;
1695
+ this._store.state.selectionGroup.rotate(this.rotation - this.initialRotation);
1696
+ this._store.state.selectionGroup.objects.forEach(object => {
1697
+ this._store.state.objectsOctree.update(object);
1698
+ });
1699
+ }
1700
+ }
1701
+
1702
+ class KritzelRotationHandler extends KritzelBaseHandler {
1703
+ constructor(store) {
1704
+ super(store);
1705
+ this.initialRotation = 0;
1706
+ this.rotation = 0;
1707
+ }
1708
+ handlePointerDown(event) {
1709
+ if (event.pointerType === 'mouse') {
1710
+ if (KritzelEventHelper.isLeftClick(event)) {
1711
+ if (this._store.state.selectionGroup && this._store.state.isRotationHandleSelected) {
1712
+ const clientX = event.clientX - this._store.offsetX;
1713
+ const clientY = event.clientY - this._store.offsetY;
1714
+ this._store.state.isRotating = true;
1715
+ const centerX = this._store.state.selectionGroup.translateX + this._store.state.selectionGroup.width / 2 / this._store.state.scale;
1716
+ const centerY = this._store.state.selectionGroup.translateY + this._store.state.selectionGroup.height / 2 / this._store.state.scale;
1717
+ const cursorX = (clientX - this._store.state.translateX) / this._store.state.scale;
1718
+ const cursorY = (clientY - this._store.state.translateY) / this._store.state.scale;
1719
+ this.initialRotation = Math.atan2(centerY - cursorY, centerX - cursorX) - this._store.state.selectionGroup.rotation;
1720
+ }
1721
+ }
1722
+ }
1723
+ if (event.pointerType === 'touch') {
1724
+ const activePointers = Array.from(this._store.state.pointers.values());
1725
+ const firstTouch = activePointers[0];
1726
+ if (!firstTouch) {
1727
+ return;
1728
+ }
1729
+ if (activePointers.length === 1) {
1730
+ if (this._store.state.selectionGroup && this._store.state.isRotationHandleSelected) {
1731
+ const clientX = Math.round(firstTouch.clientX - this._store.offsetX);
1732
+ const clientY = Math.round(firstTouch.clientY - this._store.offsetY);
1733
+ this._store.state.isRotating = true;
1734
+ const centerX = this._store.state.selectionGroup.translateX + this._store.state.selectionGroup.width / 2 / this._store.state.scale;
1735
+ const centerY = this._store.state.selectionGroup.translateY + this._store.state.selectionGroup.height / 2 / this._store.state.scale;
1736
+ const cursorX = (clientX - this._store.state.translateX) / this._store.state.scale;
1737
+ const cursorY = (clientY - this._store.state.translateY) / this._store.state.scale;
1738
+ this.initialRotation = Math.atan2(centerY - cursorY, centerX - cursorX) - this._store.state.selectionGroup.rotation;
1739
+ clearTimeout(this._store.state.longTouchTimeout);
1740
+ }
1741
+ }
1742
+ }
1743
+ }
1744
+ handlePointerMove(event) {
1745
+ if (event.pointerType === 'mouse') {
1746
+ if (this._store.state.isRotating && this._store.state.selectionGroup) {
1747
+ const clientX = event.clientX - this._store.offsetX;
1748
+ const clientY = event.clientY - this._store.offsetY;
1749
+ const groupCenterX = this._store.state.selectionGroup.translateX + this._store.state.selectionGroup.width / 2 / this._store.state.scale;
1750
+ const groupCenterY = this._store.state.selectionGroup.translateY + this._store.state.selectionGroup.height / 2 / this._store.state.scale;
1751
+ const cursorX = (clientX - this._store.state.translateX) / this._store.state.scale;
1752
+ const cursorY = (clientY - this._store.state.translateY) / this._store.state.scale;
1753
+ const currentRotation = Math.atan2(groupCenterY - cursorY, groupCenterX - cursorX);
1754
+ this.rotation = currentRotation - this.initialRotation;
1755
+ this._store.state.selectionGroup.rotate(this.rotation);
1756
+ this._store.rerender();
1757
+ }
1758
+ }
1759
+ if (event.pointerType === 'touch') {
1760
+ const activePointers = Array.from(this._store.state.pointers.values());
1761
+ const firstTouch = activePointers[0];
1762
+ if (!firstTouch) {
1763
+ return;
1764
+ }
1765
+ if (this._store.state.isRotating && this._store.state.selectionGroup) {
1766
+ const clientX = Math.round(firstTouch.clientX - this._store.offsetX);
1767
+ const clientY = Math.round(firstTouch.clientY - this._store.offsetY);
1768
+ const groupCenterX = this._store.state.selectionGroup.translateX + this._store.state.selectionGroup.width / 2 / this._store.state.scale;
1769
+ const groupCenterY = this._store.state.selectionGroup.translateY + this._store.state.selectionGroup.height / 2 / this._store.state.scale;
1770
+ const cursorX = (clientX - this._store.state.translateX) / this._store.state.scale;
1771
+ const cursorY = (clientY - this._store.state.translateY) / this._store.state.scale;
1772
+ const currentRotation = Math.atan2(groupCenterY - cursorY, groupCenterX - cursorX);
1773
+ this.rotation = currentRotation - this.initialRotation;
1774
+ this._store.state.selectionGroup.rotate(this.rotation);
1775
+ this._store.rerender();
1776
+ clearTimeout(this._store.state.longTouchTimeout);
1777
+ }
1778
+ }
1779
+ }
1780
+ handlePointerUp(event) {
1781
+ if (event.pointerType === 'mouse') {
1782
+ if (this._store.state.isRotating) {
1783
+ const rotateSelectionGroupCommand = new RotateSelectionGroupCommand(this._store, this, this.rotation);
1784
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1785
+ return new UpdateObjectCommand(this._store, this, object, {
1786
+ rotation: object.rotation,
1787
+ translateX: object.translateX,
1788
+ translateY: object.translateY,
1789
+ });
1790
+ });
1791
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [rotateSelectionGroupCommand, ...updateObjectsCommand]));
1792
+ this._store.state.isRotating = false;
1793
+ this.initialRotation = 0;
1794
+ this.rotation = 0;
1795
+ }
1796
+ }
1797
+ if (event.pointerType === 'touch') {
1798
+ if (this._store.state.isRotating) {
1799
+ const rotateSelectionGroupCommand = new RotateSelectionGroupCommand(this._store, this, this.rotation);
1800
+ const updateObjectsCommand = this._store.state.selectionGroup.objects.map(object => {
1801
+ return new UpdateObjectCommand(this._store, this, object, {
1802
+ rotation: object.rotation,
1803
+ });
1804
+ });
1805
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [rotateSelectionGroupCommand, ...updateObjectsCommand]));
1806
+ this._store.state.isRotating = false;
1807
+ this.initialRotation = 0;
1808
+ this.rotation = 0;
1809
+ clearTimeout(this._store.state.longTouchTimeout);
1810
+ }
1811
+ }
1812
+ }
1813
+ }
1814
+
1815
+ class KrtizelSelectionBox extends KritzelBaseObject {
1816
+ constructor() {
1817
+ super(...arguments);
1818
+ this.__class__ = 'KrtizelSelectionBox';
1819
+ this.objects = [];
1820
+ }
1821
+ static create(store) {
1822
+ const object = new KrtizelSelectionBox();
1823
+ object._store = store;
1824
+ object.id = object.generateId();
1825
+ object.workspaceId = store.state.activeWorkspace.id;
1826
+ object.scale = store.state.scale;
1827
+ object.zIndex = 99999;
1828
+ object.backgroundColor = 'var(--kritzel-selection-box-background-color, rgba(0, 122, 255, 0.2))';
1829
+ object.borderColor = 'var(--kritzel-selection-box-border-color, rgba(0, 122, 255, 0.5))';
1830
+ object.borderWidth = 2;
1831
+ object.height = 0;
1832
+ object.width = 0;
1833
+ return object;
1834
+ }
1835
+ }
1836
+
1837
+ class AddSelectionGroupCommand extends KritzelBaseCommand {
1838
+ constructor(store, initiator, selectionGroup, skipHistory = false) {
1839
+ super(store, initiator, skipHistory);
1840
+ this.selectionGroup = selectionGroup;
1841
+ }
1842
+ execute() {
1843
+ this._store.state.objectsOctree.remove(object => object instanceof KrtizelSelectionBox);
1844
+ this._store.state.objectsOctree.insert(this.selectionGroup);
1845
+ this._store.state.selectionGroup = this.selectionGroup;
1846
+ this._store.state.selectionBox = null;
1847
+ }
1848
+ undo() {
1849
+ this._store.state.objectsOctree.remove(object => object.id === this.selectionGroup.id);
1850
+ this._store.state.selectionGroup = null;
1851
+ this._store.state.selectionBox = null;
1852
+ }
1853
+ }
1854
+
1855
+ class KritzelSelectionHandler extends KritzelBaseHandler {
1856
+ get isSelectionClick() {
1857
+ return this._store.state.selectionBox && this._store.state.selectionBox.width === 0 && this._store.state.selectionBox.height === 0;
1858
+ }
1859
+ get isSelectionDrag() {
1860
+ return this._store.state.selectionBox && (this._store.state.selectionBox.width > 0 || this._store.state.selectionBox.height > 0);
1861
+ }
1862
+ constructor(store) {
1863
+ super(store);
1864
+ this.touchStartX = 0;
1865
+ this.touchStartY = 0;
1866
+ this.touchStartTimeout = null;
1867
+ }
1868
+ handlePointerDown(event) {
1869
+ if (event.pointerType === 'mouse') {
1870
+ if (KritzelEventHelper.isLeftClick(event) && !this._store.state.selectionGroup) {
1871
+ this.startMouseSelection(event);
1872
+ }
1873
+ }
1874
+ if (event.pointerType === 'touch') {
1875
+ this.touchStartTimeout = setTimeout(() => {
1876
+ if (this._store.state.pointers.size === 1 && !this._store.state.isScaling && !this._store.state.selectionGroup) {
1877
+ this.startTouchSelection();
1878
+ this.updateTouchSelection();
1879
+ }
1880
+ }, 80);
1881
+ }
1882
+ }
1883
+ handlePointerMove(event) {
1884
+ if (event.pointerType === 'mouse') {
1885
+ if (this._store.state.isSelecting) {
1886
+ this.updateMouseSelection(event);
1887
+ }
1888
+ }
1889
+ if (event.pointerType === 'touch') {
1890
+ const activePointers = Array.from(this._store.state.pointers.values());
1891
+ const x = Math.round(activePointers[0].clientX - this._store.offsetX);
1892
+ const y = Math.round(activePointers[0].clientY - this._store.offsetY);
1893
+ const moveDeltaX = Math.abs(x - this.touchStartX);
1894
+ const moveDeltaY = Math.abs(y - this.touchStartY);
1895
+ const moveThreshold = 5;
1896
+ if ((moveDeltaX > moveThreshold || moveDeltaY > moveThreshold) && this._store.state.isSelecting) {
1897
+ this.updateTouchSelection();
1898
+ clearTimeout(this._store.state.longTouchTimeout);
1899
+ }
1900
+ }
1901
+ }
1902
+ handlePointerUp(event) {
1903
+ if (event.pointerType === 'mouse') {
1904
+ if (KritzelEventHelper.isLeftClick(event) && this._store.state.isSelecting) {
1905
+ if (this.isSelectionClick) {
1906
+ const x = this._store.state.pointerX;
1907
+ const y = this._store.state.pointerY;
1908
+ const selectedObject = this._store.getObjectsFromPointerEvent(event, '.object').find(obj => obj.hitTest(x, y));
1909
+ this.addObjectToSelectionGroup(selectedObject);
1910
+ this.removeSelectionBox();
1911
+ }
1912
+ if (this.isSelectionDrag) {
1913
+ this.updateMouseSelection(event);
1914
+ this.addSelectedObjectsToSelectionGroup();
1915
+ this.removeSelectionBox();
1916
+ }
1917
+ }
1918
+ }
1919
+ if (event.pointerType === 'touch') {
1920
+ clearTimeout(this.touchStartTimeout);
1921
+ if (this._store.state.isSelecting) {
1922
+ if (this.isSelectionClick) {
1923
+ const x = this._store.state.pointerX;
1924
+ const y = this._store.state.pointerY;
1925
+ const selectedObject = this._store.getObjectsFromPointerEvent(event, '.object').find(obj => obj.hitTest(x, y));
1926
+ this.addObjectToSelectionGroup(selectedObject);
1927
+ this.removeSelectionBox();
1928
+ }
1929
+ if (this.isSelectionDrag) {
1930
+ this.updateTouchSelection();
1931
+ this.addSelectedObjectsToSelectionGroup();
1932
+ this.removeSelectionBox();
1933
+ }
1934
+ this._store.state.skipContextMenu = false;
1935
+ }
1936
+ }
1937
+ }
1938
+ removeSelectionBox() {
1939
+ this._store.state.selectionBox = null;
1940
+ this._store.state.isSelecting = false;
1941
+ this._store.state.objectsOctree.remove(o => o instanceof KrtizelSelectionBox);
1942
+ this._store.rerender();
1943
+ }
1944
+ startMouseSelection(event) {
1945
+ let clientX, clientY;
1946
+ clientX = event.clientX - this._store.offsetX;
1947
+ clientY = event.clientY - this._store.offsetY;
1948
+ const selectionBox = KrtizelSelectionBox.create(this._store);
1949
+ this.startX = (clientX - this._store.state.translateX) / this._store.state.scale;
1950
+ this.startY = (clientY - this._store.state.translateY) / this._store.state.scale;
1951
+ selectionBox.translateX = this.startX;
1952
+ selectionBox.translateY = this.startY;
1953
+ this._store.state.selectionGroup = null;
1954
+ this._store.state.selectionBox = selectionBox;
1955
+ this._store.state.isSelecting = true;
1956
+ this._store.state.objectsOctree.remove(o => o instanceof KrtizelSelectionBox || o instanceof KritzelSelectionGroup);
1957
+ this._store.state.objectsOctree.insert(selectionBox);
1958
+ }
1959
+ startTouchSelection() {
1960
+ const activePointers = Array.from(this._store.state.pointers.values());
1961
+ const firstTouch = activePointers[0];
1962
+ if (!firstTouch) {
1963
+ return;
1964
+ }
1965
+ let clientX, clientY;
1966
+ clientX = Math.round(firstTouch.clientX - this._store.offsetX);
1967
+ clientY = Math.round(firstTouch.clientY - this._store.offsetY);
1968
+ this.touchStartX = clientX;
1969
+ this.touchStartY = clientY;
1970
+ const selectionBox = KrtizelSelectionBox.create(this._store);
1971
+ this.startX = (clientX - this._store.state.translateX) / this._store.state.scale;
1972
+ this.startY = (clientY - this._store.state.translateY) / this._store.state.scale;
1973
+ selectionBox.translateX = this.startX;
1974
+ selectionBox.translateY = this.startY;
1975
+ this._store.state.selectionGroup = null;
1976
+ this._store.state.selectionBox = selectionBox;
1977
+ this._store.state.isSelecting = true;
1978
+ this._store.state.objectsOctree.remove(o => o instanceof KrtizelSelectionBox || o instanceof KritzelSelectionGroup);
1979
+ this._store.state.objectsOctree.insert(selectionBox);
1980
+ }
1981
+ updateMouseSelection(event) {
1982
+ let clientX, clientY;
1983
+ clientX = event.clientX - this._store.offsetX;
1984
+ clientY = event.clientY - this._store.offsetY;
1985
+ const selectionBox = this._store.state.selectionBox;
1986
+ if (selectionBox) {
1987
+ const currentX = (clientX - this._store.state.translateX) / selectionBox.scale;
1988
+ const currentY = (clientY - this._store.state.translateY) / selectionBox.scale;
1989
+ selectionBox.width = Math.abs(currentX - this.startX) * selectionBox.scale;
1990
+ selectionBox.height = Math.abs(currentY - this.startY) * selectionBox.scale;
1991
+ selectionBox.translateX = Math.min(currentX, this.startX);
1992
+ selectionBox.translateY = Math.min(currentY, this.startY);
1993
+ this.updateSelectedObjects();
1994
+ this._store.rerender();
1995
+ }
1996
+ }
1997
+ updateTouchSelection() {
1998
+ const activePointers = Array.from(this._store.state.pointers.values());
1999
+ const firstTouch = activePointers[0];
2000
+ if (!firstTouch) {
2001
+ return;
2002
+ }
2003
+ let clientX, clientY;
2004
+ clientX = Math.round(firstTouch.clientX - this._store.offsetX);
2005
+ clientY = Math.round(firstTouch.clientY - this._store.offsetY);
2006
+ const selectionBox = this._store.state.selectionBox;
2007
+ if (selectionBox) {
2008
+ const currentX = (clientX - this._store.state.translateX) / selectionBox.scale;
2009
+ const currentY = (clientY - this._store.state.translateY) / selectionBox.scale;
2010
+ selectionBox.width = Math.abs(currentX - this.startX) * selectionBox.scale;
2011
+ selectionBox.height = Math.abs(currentY - this.startY) * selectionBox.scale;
2012
+ selectionBox.translateX = Math.min(currentX, this.startX);
2013
+ selectionBox.translateY = Math.min(currentY, this.startY);
2014
+ this.updateSelectedObjects();
2015
+ }
2016
+ }
2017
+ updateSelectedObjects() {
2018
+ this._store.allObjects
2019
+ .filter(o => !(o instanceof KrtizelSelectionBox))
2020
+ .forEach(object => (object.isSelected = object.hitTestPolygon(this._store.state.selectionBox.rotatedPolygon)));
2021
+ }
2022
+ addObjectToSelectionGroup(object) {
2023
+ if (!object) {
2024
+ return;
2025
+ }
2026
+ this._store.state.selectionGroup = KritzelSelectionGroup.create(this._store);
2027
+ this._store.state.selectionGroup.addOrRemove(object);
2028
+ this._store.state.selectionGroup.isSelected = true;
2029
+ this._store.state.selectionGroup.rotation = object.rotation;
2030
+ this._store.history.executeCommand(new AddSelectionGroupCommand(this._store, this, this._store.state.selectionGroup));
2031
+ }
2032
+ addSelectedObjectsToSelectionGroup() {
2033
+ const selectedObjects = this._store.selectedObjects;
2034
+ if (selectedObjects.length === 0) {
2035
+ return;
2036
+ }
2037
+ this._store.state.selectionGroup = KritzelSelectionGroup.create(this._store);
2038
+ selectedObjects.forEach(o => {
2039
+ o.isSelected = false;
2040
+ this._store.state.selectionGroup.addOrRemove(o);
2041
+ });
2042
+ this._store.state.selectionGroup.isSelected = true;
2043
+ if (this._store.state.selectionGroup.length === 1) {
2044
+ this._store.state.selectionGroup.rotation = this._store.state.selectionGroup.objects[0].rotation;
2045
+ }
2046
+ this._store.history.executeCommand(new AddSelectionGroupCommand(this._store, this, this._store.state.selectionGroup));
2047
+ }
2048
+ }
2049
+
2050
+ class KritzelHoverHandler extends KritzelBaseHandler {
2051
+ constructor(store) {
2052
+ super(store);
2053
+ }
2054
+ handlePointerMove(event) {
2055
+ if (event.pointerType === 'mouse') {
2056
+ const hoveredObject = this._store.getObjectFromPointerEvent(event, '.object');
2057
+ if (!hoveredObject)
2058
+ return;
2059
+ const x = this._store.state.pointerX;
2060
+ const y = this._store.state.pointerY;
2061
+ hoveredObject.isHovered = hoveredObject.hitTest(x, y);
2062
+ }
2063
+ }
2064
+ }
2065
+
2066
+ class KritzelSelectionTool extends KritzelBaseTool {
2067
+ constructor(store) {
2068
+ super(store);
2069
+ this.selectionHandler = new KritzelSelectionHandler(this._store);
2070
+ this.moveHandler = new KritzelMoveHandler(this._store);
2071
+ this.hoverHandler = new KritzelHoverHandler(this._store);
2072
+ this.resizeHandler = new KritzelResizeHandler(this._store);
2073
+ this.rotationHandler = new KritzelRotationHandler(this._store);
2074
+ }
2075
+ handlePointerDown(event) {
2076
+ if (event.cancelable) {
2077
+ event.preventDefault();
2078
+ }
2079
+ if (event.pointerType === 'mouse') {
2080
+ if (KritzelEventHelper.isLeftClick(event)) {
2081
+ this._store.state.isResizeHandleSelected = this.isHandleSelected(event);
2082
+ this._store.state.isRotationHandleSelected = this.isRotationHandleSelected(event);
2083
+ this._store.state.resizeHandleType = this.getHandleType(event);
2084
+ const selectedObject = this.getSelectedObject(event);
2085
+ const isDifferentObject = selectedObject && this._store.state.selectionGroup && selectedObject.id !== this._store.state.selectionGroup.id;
2086
+ if ((selectedObject === null || isDifferentObject) &&
2087
+ this._store.state.selectionGroup &&
2088
+ !this._store.state.isResizeHandleSelected &&
2089
+ !this._store.state.isRotationHandleSelected) {
2090
+ this._store.history.executeCommand(new RemoveSelectionGroupCommand(this._store, this._store.state.selectionGroup));
2091
+ }
2092
+ if (selectedObject && selectedObject.isSelected === false && (selectedObject === null || selectedObject === void 0 ? void 0 : selectedObject.objects.length) === 1 && selectedObject.objects[0].isInteractive) {
2093
+ return;
2094
+ }
2095
+ }
2096
+ this.moveHandler.handlePointerDown(event);
2097
+ this.selectionHandler.handlePointerDown(event);
2098
+ this.resizeHandler.handlePointerDown(event);
2099
+ this.rotationHandler.handlePointerDown(event);
2100
+ this._store.rerender();
2101
+ }
2102
+ if (event.pointerType === 'touch') {
2103
+ if (this._store.state.isScaling === true) {
2104
+ return;
2105
+ }
2106
+ if (this._store.state.pointers.size === 1) {
2107
+ this._store.state.isResizeHandleSelected = this.isHandleSelected(event);
2108
+ this._store.state.isRotationHandleSelected = this.isRotationHandleSelected(event);
2109
+ this._store.state.resizeHandleType = this.getHandleType(event);
2110
+ const selectedObject = this.getSelectedObject(event);
2111
+ const isDifferentObject = selectedObject && this._store.state.selectionGroup && selectedObject.id !== this._store.state.selectionGroup.id;
2112
+ if (!this._store.state.selectionGroup && selectedObject) {
2113
+ this._store.state.skipContextMenu = true;
2114
+ }
2115
+ if ((selectedObject === null || isDifferentObject) &&
2116
+ this._store.state.selectionGroup &&
2117
+ !this._store.state.isResizeHandleSelected &&
2118
+ !this._store.state.isRotationHandleSelected) {
2119
+ this._store.history.executeCommand(new RemoveSelectionGroupCommand(this._store, this._store.state.selectionGroup));
2120
+ }
2121
+ }
2122
+ this.rotationHandler.handlePointerDown(event);
2123
+ this.resizeHandler.handlePointerDown(event);
2124
+ this.moveHandler.handlePointerDown(event);
2125
+ this.selectionHandler.handlePointerDown(event);
2126
+ }
2127
+ }
2128
+ handlePointerMove(event) {
2129
+ if (event.cancelable) {
2130
+ event.preventDefault();
2131
+ }
2132
+ if (event.pointerType === 'mouse') {
2133
+ this.moveHandler.handlePointerMove(event);
2134
+ this.hoverHandler.handlePointerMove(event);
2135
+ this.selectionHandler.handlePointerMove(event);
2136
+ this.resizeHandler.handlePointerMove(event);
2137
+ this.rotationHandler.handlePointerMove(event);
2138
+ this._store.rerender();
2139
+ }
2140
+ if (event.pointerType === 'touch') {
2141
+ if (this._store.state.isScaling === true) {
2142
+ return;
2143
+ }
2144
+ this.rotationHandler.handlePointerMove(event);
2145
+ this.resizeHandler.handlePointerMove(event);
2146
+ this.moveHandler.handlePointerMove(event);
2147
+ this.selectionHandler.handlePointerMove(event);
2148
+ this._store.rerender();
2149
+ }
2150
+ }
2151
+ handlePointerUp(event) {
2152
+ if (event.cancelable) {
2153
+ event.preventDefault();
2154
+ }
2155
+ if (event.pointerType === 'mouse') {
2156
+ this.moveHandler.handlePointerUp(event);
2157
+ this.selectionHandler.handlePointerUp(event);
2158
+ this.resizeHandler.handlePointerUp(event);
2159
+ this.rotationHandler.handlePointerUp(event);
2160
+ this._store.rerender();
2161
+ }
2162
+ if (event.pointerType === 'touch') {
2163
+ if (this._store.state.isScaling === true) {
2164
+ return;
2165
+ }
2166
+ this.rotationHandler.handlePointerUp(event);
2167
+ this.resizeHandler.handlePointerUp(event);
2168
+ this.moveHandler.handlePointerUp(event);
2169
+ this.selectionHandler.handlePointerUp(event);
2170
+ }
2171
+ }
2172
+ getSelectedObject(event) {
2173
+ const path = event.composedPath().slice(1);
2174
+ const objectElement = path.find(element => element.classList && element.classList.contains('object'));
2175
+ const object = this._store.findObjectById(objectElement === null || objectElement === void 0 ? void 0 : objectElement.id);
2176
+ if (!object) {
2177
+ return null;
2178
+ }
2179
+ if (object instanceof KritzelSelectionGroup) {
2180
+ return object;
2181
+ }
2182
+ else {
2183
+ const group = KritzelSelectionGroup.create(this._store);
2184
+ group.translateX = 0;
2185
+ group.translateY = 0;
2186
+ group.addOrRemove(object);
2187
+ return group;
2188
+ }
2189
+ }
2190
+ getHandleType(event) {
2191
+ var _a;
2192
+ const shadowRoot = (_a = this._store.state.host) === null || _a === void 0 ? void 0 : _a.shadowRoot;
2193
+ if (!shadowRoot)
2194
+ return;
2195
+ const elementAtPoint = shadowRoot.elementFromPoint(event.clientX, event.clientY);
2196
+ const handle = elementAtPoint === null || elementAtPoint === void 0 ? void 0 : elementAtPoint.closest('.resize-handle-overlay');
2197
+ return handle === null || handle === void 0 ? void 0 : handle.classList[1];
2198
+ }
2199
+ isHandleSelected(event) {
2200
+ var _a;
2201
+ const shadowRoot = (_a = this._store.state.host) === null || _a === void 0 ? void 0 : _a.shadowRoot;
2202
+ if (!shadowRoot)
2203
+ return false;
2204
+ const elementAtPoint = shadowRoot.elementFromPoint(event.clientX, event.clientY);
2205
+ return !!(elementAtPoint === null || elementAtPoint === void 0 ? void 0 : elementAtPoint.classList.contains('resize-handle-overlay'));
2206
+ }
2207
+ isRotationHandleSelected(event) {
2208
+ const path = event.composedPath();
2209
+ return !!path.find(element => element.classList && element.classList.contains('rotation-handle-overlay'));
2210
+ }
2211
+ }
2212
+
2213
+ class KritzelReviver {
2214
+ constructor(store) {
2215
+ this._store = store;
2216
+ }
2217
+ revive(obj) {
2218
+ if (obj && typeof obj === 'object') {
2219
+ if (obj.__class__) {
2220
+ let revivedObj;
2221
+ switch (obj.__class__) {
2222
+ case 'KritzelPath':
2223
+ revivedObj = KritzelPath.create(this._store).revive(obj);
2224
+ break;
2225
+ case 'KritzelText':
2226
+ revivedObj = KritzelText.create(this._store, obj.fontSize, obj.fontFamily).revive(obj);
2227
+ break;
2228
+ case 'KritzelImage':
2229
+ revivedObj = KritzelImage.create(this._store).revive(obj);
2230
+ break;
2231
+ case 'KritzelCustomElement':
2232
+ revivedObj = KritzelCustomElement.create(this._store).revive(obj);
2233
+ break;
2234
+ case 'KritzelSelectionGroup':
2235
+ revivedObj = KritzelSelectionGroup.create(this._store).revive(obj);
2236
+ break;
2237
+ case 'KritzelBrushTool':
2238
+ revivedObj = new KritzelBrushTool(this._store);
2239
+ break;
2240
+ case 'KritzelEraserTool':
2241
+ revivedObj = new KritzelEraserTool(this._store);
2242
+ break;
2243
+ case 'KritzelImageTool':
2244
+ revivedObj = new KritzelImageTool(this._store);
2245
+ break;
2246
+ case 'KritzelSelectionTool':
2247
+ revivedObj = new KritzelSelectionTool(this._store);
2248
+ break;
2249
+ case 'KritzelTextTool':
2250
+ revivedObj = new KritzelTextTool(this._store);
2251
+ break;
2252
+ default:
2253
+ revivedObj = obj;
2254
+ }
2255
+ return revivedObj;
2256
+ }
2257
+ const newObj = Array.isArray(obj) ? [] : {};
2258
+ for (const key in obj) {
2259
+ if (Object.prototype.hasOwnProperty.call(obj, key)) {
2260
+ newObj[key] = this.revive(obj[key]);
2261
+ }
2262
+ }
2263
+ return newObj;
2264
+ }
2265
+ return obj;
2266
+ }
2267
+ }
2268
+
2269
+ class KritzelSelectionGroup extends KritzelBaseObject {
2270
+ constructor() {
2271
+ super(...arguments);
2272
+ this.__class__ = 'KritzelSelectionGroup';
2273
+ this.objects = [];
2274
+ this.unchangedObjects = [];
2275
+ }
2276
+ get length() {
2277
+ return this.objects.length;
2278
+ }
2279
+ static create(store) {
2280
+ const object = new KritzelSelectionGroup();
2281
+ object._store = store;
2282
+ object.id = object.generateId();
2283
+ object.workspaceId = store.state.activeWorkspace.id;
2284
+ object.scale = store.state.scale;
2285
+ object.zIndex = 99999;
2286
+ return object;
2287
+ }
2288
+ addOrRemove(object) {
2289
+ const index = this.objects.findIndex(obj => obj.id === object.id);
2290
+ if (index === -1) {
2291
+ this.objects.push(object);
2292
+ }
2293
+ else {
2294
+ this.objects.splice(index, 1);
2295
+ }
2296
+ this.unchangedObjects = ObjectHelper.clone(this.objects);
2297
+ this.refreshObjectDimensions();
2298
+ }
2299
+ deselectAllChildren() {
2300
+ this.objects.forEach(obj => (obj.isSelected = false));
2301
+ }
2302
+ updatePosition(x, y) {
2303
+ this.objects.forEach(obj => {
2304
+ const deltaX = obj.translateX - this.translateX;
2305
+ const deltaY = obj.translateY - this.translateY;
2306
+ obj.updatePosition(x + deltaX, y + deltaY);
2307
+ });
2308
+ this.unchangedObjects.forEach(obj => {
2309
+ const deltaX = obj.translateX - this.translateX;
2310
+ const deltaY = obj.translateY - this.translateY;
2311
+ obj.translateX = x + deltaX;
2312
+ obj.translateY = y + deltaY;
2313
+ });
2314
+ this.translateX = x;
2315
+ this.translateY = y;
2316
+ this._store.state.objectsOctree.update(this);
2317
+ }
2318
+ move(startX, startY, endX, endY) {
2319
+ const deltaX = (startX - endX) / this._store.state.scale;
2320
+ const deltaY = (startY - endY) / this._store.state.scale;
2321
+ this.translateX += deltaX;
2322
+ this.translateY += deltaY;
2323
+ this._store.state.objectsOctree.update(this);
2324
+ this.objects.forEach(obj => {
2325
+ obj.move(startX, startY, endX, endY);
2326
+ this._store.state.objectsOctree.update(obj);
2327
+ });
2328
+ this.unchangedObjects.forEach(obj => {
2329
+ obj.translateX += deltaX;
2330
+ obj.translateY += deltaY;
2331
+ });
2332
+ }
2333
+ resize(x, y, width, height) {
2334
+ const widthScaleFactor = width / this.width;
2335
+ const heightScaleFactor = height / this.height;
2336
+ const deltaX = x - this.translateX;
2337
+ const deltaY = y - this.translateY;
2338
+ this.objects.forEach(child => {
2339
+ const updatedWidth = child.width * widthScaleFactor;
2340
+ const updatedHeight = child.height * heightScaleFactor;
2341
+ const updatedX = child.translateX + deltaX + (child.translateX - this.translateX) * (widthScaleFactor - 1);
2342
+ const updatedY = child.translateY + deltaY + (child.translateY - this.translateY) * (heightScaleFactor - 1);
2343
+ child.resize(updatedX, updatedY, updatedWidth, updatedHeight);
2344
+ this._store.state.objectsOctree.update(child);
2345
+ });
2346
+ this.refreshObjectDimensions();
2347
+ this.unchangedObjects = ObjectHelper.clone(this.objects);
2348
+ }
2349
+ rotate(value) {
2350
+ this.rotation = value;
2351
+ const centerX = this.translateX + this.totalWidth / 2 / this.scale;
2352
+ const centerY = this.translateY + this.totalHeight / 2 / this.scale;
2353
+ const angle = value;
2354
+ const cos = Math.cos(angle);
2355
+ const sin = Math.sin(angle);
2356
+ this.objects.forEach(child => {
2357
+ const unchangedChild = this.getUnchangedObject(child.id);
2358
+ const offsetX = this.getOffsetXToCenter(unchangedChild);
2359
+ const offsetY = this.getOffsetYToCenter(unchangedChild);
2360
+ const rotatedX = cos * offsetX - sin * offsetY;
2361
+ const rotatedY = sin * offsetX + cos * offsetY;
2362
+ child.translateX = centerX + rotatedX - child.totalWidth / 2 / child.scale;
2363
+ child.translateY = centerY + rotatedY - child.totalHeight / 2 / child.scale;
2364
+ child.rotate(this.objects.length === 1 ? value : value + unchangedChild.rotation);
2365
+ this._store.state.objectsOctree.update(child);
2366
+ });
2367
+ }
2368
+ copy() {
2369
+ const selectionGroup = KritzelSelectionGroup.create(this._store);
2370
+ let currentZIndex = this._store.currentZIndex;
2371
+ this.objects.sort((a, b) => a.zIndex - b.zIndex).forEach(obj => {
2372
+ const copiedObject = obj.copy();
2373
+ copiedObject.zIndex = currentZIndex;
2374
+ selectionGroup.addOrRemove(copiedObject);
2375
+ currentZIndex++;
2376
+ });
2377
+ selectionGroup.unchangedObjects = ObjectHelper.clone(selectionGroup.objects);
2378
+ if (this.objects.length === 1) {
2379
+ selectionGroup.rotation = this.objects[0].rotation;
2380
+ }
2381
+ return selectionGroup;
2382
+ }
2383
+ refreshObjectDimensions() {
2384
+ if (this.objects.length === 1) {
2385
+ const obj = this.objects[0];
2386
+ this.minX = obj.boundingBox.x / this.scale;
2387
+ this.maxX = obj.boundingBox.x / this.scale + obj.boundingBox.width;
2388
+ this.minY = obj.boundingBox.y / this.scale;
2389
+ this.maxY = obj.boundingBox.y / this.scale + obj.boundingBox.height;
2390
+ this.translateX = (this.minX - this.padding) * this.scale;
2391
+ this.translateY = (this.minY - this.padding) * this.scale;
2392
+ this.width = (this.maxX - this.minX - this.padding) * this.scale;
2393
+ this.height = (this.maxY - this.minY - this.padding) * this.scale;
2394
+ }
2395
+ else {
2396
+ this.minX = Math.min(...this.objects.map(obj => obj.minXRotated));
2397
+ this.maxX = Math.max(...this.objects.map(obj => obj.maxXRotated));
2398
+ this.minY = Math.min(...this.objects.map(obj => obj.minYRotated));
2399
+ this.maxY = Math.max(...this.objects.map(obj => obj.maxYRotated));
2400
+ this.translateX = this.minX - this.padding;
2401
+ this.translateY = this.minY - this.padding;
2402
+ this.width = (this.maxX - this.minX - this.padding) * this.scale;
2403
+ this.height = (this.maxY - this.minY - this.padding) * this.scale;
2404
+ }
2405
+ this._store.state.objectsOctree.update(this);
2406
+ }
2407
+ getOffsetXToCenter(obj) {
2408
+ const objCenterX = obj.translateX + obj.totalWidth / obj.scale / 2;
2409
+ const groupCenterX = this.translateX + this.totalWidth / this.scale / 2;
2410
+ return objCenterX - groupCenterX;
2411
+ }
2412
+ getOffsetYToCenter(obj) {
2413
+ const objCenterY = obj.translateY + obj.totalHeight / obj.scale / 2;
2414
+ const groupCenterY = this.translateY + this.totalHeight / this.scale / 2;
2415
+ return objCenterY - groupCenterY;
2416
+ }
2417
+ getUnchangedObject(objectId) {
2418
+ const obj = this.unchangedObjects.find(obj => obj.id === objectId);
2419
+ const reviver = new KritzelReviver(this._store);
2420
+ return reviver.revive(obj);
2421
+ }
2422
+ }
2423
+
2424
+ /**
2425
+ * Browser Image Compression
2426
+ * v2.0.2
2427
+ * by Donald <donaldcwl@gmail.com>
2428
+ * https://github.com/Donaldcwl/browser-image-compression
2429
+ */
2430
+
2431
+ function _mergeNamespaces(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(r){if("default"!==r&&!(r in e)){var i=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(e,r,i.get?i:{enumerable:true,get:function(){return t[r]}});}}));})),Object.freeze(e)}function copyExifWithoutOrientation(e,t){return new Promise((function(r,i){let o;return getApp1Segment(e).then((function(e){try{return o=e,r(new Blob([t.slice(0,2),o,t.slice(2)],{type:"image/jpeg"}))}catch(e){return i(e)}}),i)}))}const getApp1Segment=e=>new Promise(((t,r)=>{const i=new FileReader;i.addEventListener("load",(({target:{result:e}})=>{const i=new DataView(e);let o=0;if(65496!==i.getUint16(o))return r("not a valid JPEG");for(o+=2;;){const a=i.getUint16(o);if(65498===a)break;const s=i.getUint16(o+2);if(65505===a&&1165519206===i.getUint32(o+4)){const a=o+10;let f;switch(i.getUint16(a)){case 18761:f=true;break;case 19789:f=false;break;default:return r("TIFF header contains invalid endian")}if(42!==i.getUint16(a+2,f))return r("TIFF header contains invalid version");const l=i.getUint32(a+4,f),c=a+l+2+12*i.getUint16(a+l,f);for(let e=a+l+2;e<c;e+=12){if(274==i.getUint16(e,f)){if(3!==i.getUint16(e+2,f))return r("Orientation data type is invalid");if(1!==i.getUint32(e+4,f))return r("Orientation data count is invalid");i.setUint16(e+8,1,f);break}}return t(e.slice(o,o+2+s))}o+=2+s;}return t(new Blob)})),i.readAsArrayBuffer(e);}));var e={},t={get exports(){return e},set exports(t){e=t;}};!function(e){var r,i,UZIP={};t.exports=UZIP,UZIP.parse=function(e,t){for(var r=UZIP.bin.readUshort,i=UZIP.bin.readUint,o=0,a={},s=new Uint8Array(e),f=s.length-4;101010256!=i(s,f);)f--;o=f;o+=4;var l=r(s,o+=4);r(s,o+=2);var c=i(s,o+=2),u=i(s,o+=4);o+=4,o=u;for(var h=0;h<l;h++){i(s,o),o+=4,o+=4,o+=4,i(s,o+=4);c=i(s,o+=4);var d=i(s,o+=4),A=r(s,o+=4),g=r(s,o+2),p=r(s,o+4);o+=6;var m=i(s,o+=8);o+=4,o+=A+g+p,UZIP._readLocal(s,m,a,c,d,t);}return a},UZIP._readLocal=function(e,t,r,i,o,a){var s=UZIP.bin.readUshort,f=UZIP.bin.readUint;f(e,t),s(e,t+=4),s(e,t+=2);var l=s(e,t+=2);f(e,t+=2),f(e,t+=4),t+=4;var c=s(e,t+=8),u=s(e,t+=2);t+=2;var h=UZIP.bin.readUTF8(e,t,c);if(t+=c,t+=u,a)r[h]={size:o,csize:i};else {var d=new Uint8Array(e.buffer,t);if(0==l)r[h]=new Uint8Array(d.buffer.slice(t,t+i));else {if(8!=l)throw "unknown compression method: "+l;var A=new Uint8Array(o);UZIP.inflateRaw(d,A),r[h]=A;}}},UZIP.inflateRaw=function(e,t){return UZIP.F.inflate(e,t)},UZIP.inflate=function(e,t){return UZIP.inflateRaw(new Uint8Array(e.buffer,e.byteOffset+2,e.length-6),t)},UZIP.deflate=function(e,t){null==t&&(t={level:6});var r=0,i=new Uint8Array(50+Math.floor(1.1*e.length));i[r]=120,i[r+1]=156,r+=2,r=UZIP.F.deflateRaw(e,i,r,t.level);var o=UZIP.adler(e,0,e.length);return i[r+0]=o>>>24&255,i[r+1]=o>>>16&255,i[r+2]=o>>>8&255,i[r+3]=o>>>0&255,new Uint8Array(i.buffer,0,r+4)},UZIP.deflateRaw=function(e,t){null==t&&(t={level:6});var r=new Uint8Array(50+Math.floor(1.1*e.length)),i=UZIP.F.deflateRaw(e,r,i,t.level);return new Uint8Array(r.buffer,0,i)},UZIP.encode=function(e,t){null==t&&(t=false);var r=0,i=UZIP.bin.writeUint,o=UZIP.bin.writeUshort,a={};for(var s in e){var f=!UZIP._noNeed(s)&&!t,l=e[s],c=UZIP.crc.crc(l,0,l.length);a[s]={cpr:f,usize:l.length,crc:c,file:f?UZIP.deflateRaw(l):l};}for(var s in a)r+=a[s].file.length+30+46+2*UZIP.bin.sizeUTF8(s);r+=22;var u=new Uint8Array(r),h=0,d=[];for(var s in a){var A=a[s];d.push(h),h=UZIP._writeHeader(u,h,s,A,0);}var g=0,p=h;for(var s in a){A=a[s];d.push(h),h=UZIP._writeHeader(u,h,s,A,1,d[g++]);}var m=h-p;return i(u,h,101010256),h+=4,o(u,h+=4,g),o(u,h+=2,g),i(u,h+=2,m),i(u,h+=4,p),h+=4,h+=2,u.buffer},UZIP._noNeed=function(e){var t=e.split(".").pop().toLowerCase();return -1!="png,jpg,jpeg,zip".indexOf(t)},UZIP._writeHeader=function(e,t,r,i,o,a){var s=UZIP.bin.writeUint,f=UZIP.bin.writeUshort,l=i.file;return s(e,t,0==o?67324752:33639248),t+=4,1==o&&(t+=2),f(e,t,20),f(e,t+=2,0),f(e,t+=2,i.cpr?8:0),s(e,t+=2,0),s(e,t+=4,i.crc),s(e,t+=4,l.length),s(e,t+=4,i.usize),f(e,t+=4,UZIP.bin.sizeUTF8(r)),f(e,t+=2,0),t+=2,1==o&&(t+=2,t+=2,s(e,t+=6,a),t+=4),t+=UZIP.bin.writeUTF8(e,t,r),0==o&&(e.set(l,t),t+=l.length),t},UZIP.crc={table:function(){for(var e=new Uint32Array(256),t=0;t<256;t++){for(var r=t,i=0;i<8;i++)1&r?r=3988292384^r>>>1:r>>>=1;e[t]=r;}return e}(),update:function(e,t,r,i){for(var o=0;o<i;o++)e=UZIP.crc.table[255&(e^t[r+o])]^e>>>8;return e},crc:function(e,t,r){return 4294967295^UZIP.crc.update(4294967295,e,t,r)}},UZIP.adler=function(e,t,r){for(var i=1,o=0,a=t,s=t+r;a<s;){for(var f=Math.min(a+5552,s);a<f;)o+=i+=e[a++];i%=65521,o%=65521;}return o<<16|i},UZIP.bin={readUshort:function(e,t){return e[t]|e[t+1]<<8},writeUshort:function(e,t,r){e[t]=255&r,e[t+1]=r>>8&255;},readUint:function(e,t){return 16777216*e[t+3]+(e[t+2]<<16|e[t+1]<<8|e[t])},writeUint:function(e,t,r){e[t]=255&r,e[t+1]=r>>8&255,e[t+2]=r>>16&255,e[t+3]=r>>24&255;},readASCII:function(e,t,r){for(var i="",o=0;o<r;o++)i+=String.fromCharCode(e[t+o]);return i},writeASCII:function(e,t,r){for(var i=0;i<r.length;i++)e[t+i]=r.charCodeAt(i);},pad:function(e){return e.length<2?"0"+e:e},readUTF8:function(e,t,r){for(var i,o="",a=0;a<r;a++)o+="%"+UZIP.bin.pad(e[t+a].toString(16));try{i=decodeURIComponent(o);}catch(i){return UZIP.bin.readASCII(e,t,r)}return i},writeUTF8:function(e,t,r){for(var i=r.length,o=0,a=0;a<i;a++){var s=r.charCodeAt(a);if(0==(4294967168&s))e[t+o]=s,o++;else if(0==(4294965248&s))e[t+o]=192|s>>6,e[t+o+1]=128|s>>0&63,o+=2;else if(0==(4294901760&s))e[t+o]=224|s>>12,e[t+o+1]=128|s>>6&63,e[t+o+2]=128|s>>0&63,o+=3;else {if(0!=(4292870144&s))throw "e";e[t+o]=240|s>>18,e[t+o+1]=128|s>>12&63,e[t+o+2]=128|s>>6&63,e[t+o+3]=128|s>>0&63,o+=4;}}return o},sizeUTF8:function(e){for(var t=e.length,r=0,i=0;i<t;i++){var o=e.charCodeAt(i);if(0==(4294967168&o))r++;else if(0==(4294965248&o))r+=2;else if(0==(4294901760&o))r+=3;else {if(0!=(4292870144&o))throw "e";r+=4;}}return r}},UZIP.F={},UZIP.F.deflateRaw=function(e,t,r,i){var o=[[0,0,0,0,0],[4,4,8,4,0],[4,5,16,8,0],[4,6,16,16,0],[4,10,16,32,0],[8,16,32,32,0],[8,16,128,128,0],[8,32,128,256,0],[32,128,258,1024,1],[32,258,258,4096,1]][i],a=UZIP.F.U,s=UZIP.F._goodIndex;var f=UZIP.F._putsE,l=0,c=r<<3,u=0,h=e.length;if(0==i){for(;l<h;){f(t,c,l+(_=Math.min(65535,h-l))==h?1:0),c=UZIP.F._copyExact(e,l,_,t,c+8),l+=_;}return c>>>3}var d=a.lits,A=a.strt,g=a.prev,p=0,m=0,w=0,v=0,b=0,y=0;for(h>2&&(A[y=UZIP.F._hash(e,0)]=0),l=0;l<h;l++){if(b=y,l+1<h-2){y=UZIP.F._hash(e,l+1);var E=l+1&32767;g[E]=A[y],A[y]=E;}if(u<=l){(p>14e3||m>26697)&&h-l>100&&(u<l&&(d[p]=l-u,p+=2,u=l),c=UZIP.F._writeBlock(l==h-1||u==h?1:0,d,p,v,e,w,l-w,t,c),p=m=v=0,w=l);var F=0;l<h-2&&(F=UZIP.F._bestMatch(e,l,g,b,Math.min(o[2],h-l),o[3]));var _=F>>>16,B=65535&F;if(0!=F){B=65535&F;var U=s(_=F>>>16,a.of0);a.lhst[257+U]++;var C=s(B,a.df0);a.dhst[C]++,v+=a.exb[U]+a.dxb[C],d[p]=_<<23|l-u,d[p+1]=B<<16|U<<8|C,p+=2,u=l+_;}else a.lhst[e[l]]++;m++;}}for(w==l&&0!=e.length||(u<l&&(d[p]=l-u,p+=2,u=l),c=UZIP.F._writeBlock(1,d,p,v,e,w,l-w,t,c),p=0,m=0,p=m=v=0,w=l);0!=(7&c);)c++;return c>>>3},UZIP.F._bestMatch=function(e,t,r,i,o,a){var s=32767&t,f=r[s],l=s-f+32768&32767;if(f==s||i!=UZIP.F._hash(e,t-l))return 0;for(var c=0,u=0,h=Math.min(32767,t);l<=h&&0!=--a&&f!=s;){if(0==c||e[t+c]==e[t+c-l]){var d=UZIP.F._howLong(e,t,l);if(d>c){if(u=l,(c=d)>=o)break;l+2<d&&(d=l+2);for(var A=0,g=0;g<d-2;g++){var p=t-l+g+32768&32767,m=p-r[p]+32768&32767;m>A&&(A=m,f=p);}}}l+=(s=f)-(f=r[s])+32768&32767;}return c<<16|u},UZIP.F._howLong=function(e,t,r){if(e[t]!=e[t-r]||e[t+1]!=e[t+1-r]||e[t+2]!=e[t+2-r])return 0;var i=t,o=Math.min(e.length,t+258);for(t+=3;t<o&&e[t]==e[t-r];)t++;return t-i},UZIP.F._hash=function(e,t){return (e[t]<<8|e[t+1])+(e[t+2]<<4)&65535},UZIP.saved=0,UZIP.F._writeBlock=function(e,t,r,i,o,a,s,f,l){var c,u,h,d,A,g,p,m,w,v=UZIP.F.U,b=UZIP.F._putsF,y=UZIP.F._putsE;v.lhst[256]++,u=(c=UZIP.F.getTrees())[0],h=c[1],d=c[2],A=c[3],g=c[4],p=c[5],m=c[6],w=c[7];var E=32+(0==(l+3&7)?0:8-(l+3&7))+(s<<3),F=i+UZIP.F.contSize(v.fltree,v.lhst)+UZIP.F.contSize(v.fdtree,v.dhst),_=i+UZIP.F.contSize(v.ltree,v.lhst)+UZIP.F.contSize(v.dtree,v.dhst);_+=14+3*p+UZIP.F.contSize(v.itree,v.ihst)+(2*v.ihst[16]+3*v.ihst[17]+7*v.ihst[18]);for(var B=0;B<286;B++)v.lhst[B]=0;for(B=0;B<30;B++)v.dhst[B]=0;for(B=0;B<19;B++)v.ihst[B]=0;var U=E<F&&E<_?0:F<_?1:2;if(b(f,l,e),b(f,l+1,U),l+=3,0==U){for(;0!=(7&l);)l++;l=UZIP.F._copyExact(o,a,s,f,l);}else {var C,I;if(1==U&&(C=v.fltree,I=v.fdtree),2==U){UZIP.F.makeCodes(v.ltree,u),UZIP.F.revCodes(v.ltree,u),UZIP.F.makeCodes(v.dtree,h),UZIP.F.revCodes(v.dtree,h),UZIP.F.makeCodes(v.itree,d),UZIP.F.revCodes(v.itree,d),C=v.ltree,I=v.dtree,y(f,l,A-257),y(f,l+=5,g-1),y(f,l+=5,p-4),l+=4;for(var Q=0;Q<p;Q++)y(f,l+3*Q,v.itree[1+(v.ordr[Q]<<1)]);l+=3*p,l=UZIP.F._codeTiny(m,v.itree,f,l),l=UZIP.F._codeTiny(w,v.itree,f,l);}for(var M=a,x=0;x<r;x+=2){for(var S=t[x],R=S>>>23,T=M+(8388607&S);M<T;)l=UZIP.F._writeLit(o[M++],C,f,l);if(0!=R){var O=t[x+1],P=O>>16,H=O>>8&255,L=255&O;y(f,l=UZIP.F._writeLit(257+H,C,f,l),R-v.of0[H]),l+=v.exb[H],b(f,l=UZIP.F._writeLit(L,I,f,l),P-v.df0[L]),l+=v.dxb[L],M+=R;}}l=UZIP.F._writeLit(256,C,f,l);}return l},UZIP.F._copyExact=function(e,t,r,i,o){var a=o>>>3;return i[a]=r,i[a+1]=r>>>8,i[a+2]=255-i[a],i[a+3]=255-i[a+1],a+=4,i.set(new Uint8Array(e.buffer,t,r),a),o+(r+4<<3)},UZIP.F.getTrees=function(){for(var e=UZIP.F.U,t=UZIP.F._hufTree(e.lhst,e.ltree,15),r=UZIP.F._hufTree(e.dhst,e.dtree,15),i=[],o=UZIP.F._lenCodes(e.ltree,i),a=[],s=UZIP.F._lenCodes(e.dtree,a),f=0;f<i.length;f+=2)e.ihst[i[f]]++;for(f=0;f<a.length;f+=2)e.ihst[a[f]]++;for(var l=UZIP.F._hufTree(e.ihst,e.itree,7),c=19;c>4&&0==e.itree[1+(e.ordr[c-1]<<1)];)c--;return [t,r,l,o,s,c,i,a]},UZIP.F.getSecond=function(e){for(var t=[],r=0;r<e.length;r+=2)t.push(e[r+1]);return t},UZIP.F.nonZero=function(e){for(var t="",r=0;r<e.length;r+=2)0!=e[r+1]&&(t+=(r>>1)+",");return t},UZIP.F.contSize=function(e,t){for(var r=0,i=0;i<t.length;i++)r+=t[i]*e[1+(i<<1)];return r},UZIP.F._codeTiny=function(e,t,r,i){for(var o=0;o<e.length;o+=2){var a=e[o],s=e[o+1];i=UZIP.F._writeLit(a,t,r,i);var f=16==a?2:17==a?3:7;a>15&&(UZIP.F._putsE(r,i,s,f),i+=f);}return i},UZIP.F._lenCodes=function(e,t){for(var r=e.length;2!=r&&0==e[r-1];)r-=2;for(var i=0;i<r;i+=2){var o=e[i+1],a=i+3<r?e[i+3]:-1,s=i+5<r?e[i+5]:-1,f=0==i?-1:e[i-1];if(0==o&&a==o&&s==o){for(var l=i+5;l+2<r&&e[l+2]==o;)l+=2;(c=Math.min(l+1-i>>>1,138))<11?t.push(17,c-3):t.push(18,c-11),i+=2*c-2;}else if(o==f&&a==o&&s==o){for(l=i+5;l+2<r&&e[l+2]==o;)l+=2;var c=Math.min(l+1-i>>>1,6);t.push(16,c-3),i+=2*c-2;}else t.push(o,0);}return r>>>1},UZIP.F._hufTree=function(e,t,r){var i=[],o=e.length,a=t.length,s=0;for(s=0;s<a;s+=2)t[s]=0,t[s+1]=0;for(s=0;s<o;s++)0!=e[s]&&i.push({lit:s,f:e[s]});var f=i.length,l=i.slice(0);if(0==f)return 0;if(1==f){var c=i[0].lit;l=0==c?1:0;return t[1+(c<<1)]=1,t[1+(l<<1)]=1,1}i.sort((function(e,t){return e.f-t.f}));var u=i[0],h=i[1],d=0,A=1,g=2;for(i[0]={lit:-1,f:u.f+h.f,l:u,r:h,d:0};A!=f-1;)u=d!=A&&(g==f||i[d].f<i[g].f)?i[d++]:i[g++],h=d!=A&&(g==f||i[d].f<i[g].f)?i[d++]:i[g++],i[A++]={lit:-1,f:u.f+h.f,l:u,r:h};var p=UZIP.F.setDepth(i[A-1],0);for(p>r&&(UZIP.F.restrictDepth(l,r,p),p=r),s=0;s<f;s++)t[1+(l[s].lit<<1)]=l[s].d;return p},UZIP.F.setDepth=function(e,t){return -1!=e.lit?(e.d=t,t):Math.max(UZIP.F.setDepth(e.l,t+1),UZIP.F.setDepth(e.r,t+1))},UZIP.F.restrictDepth=function(e,t,r){var i=0,o=1<<r-t,a=0;for(e.sort((function(e,t){return t.d==e.d?e.f-t.f:t.d-e.d})),i=0;i<e.length&&e[i].d>t;i++){var s=e[i].d;e[i].d=t,a+=o-(1<<r-s);}for(a>>>=r-t;a>0;){(s=e[i].d)<t?(e[i].d++,a-=1<<t-s-1):i++;}for(;i>=0;i--)e[i].d==t&&a<0&&(e[i].d--,a++);0!=a&&console.log("debt left");},UZIP.F._goodIndex=function(e,t){var r=0;return t[16|r]<=e&&(r|=16),t[8|r]<=e&&(r|=8),t[4|r]<=e&&(r|=4),t[2|r]<=e&&(r|=2),t[1|r]<=e&&(r|=1),r},UZIP.F._writeLit=function(e,t,r,i){return UZIP.F._putsF(r,i,t[e<<1]),i+t[1+(e<<1)]},UZIP.F.inflate=function(e,t){var r=Uint8Array;if(3==e[0]&&0==e[1])return t||new r(0);var i=UZIP.F,o=i._bitsF,a=i._bitsE,s=i._decodeTiny,f=i.makeCodes,l=i.codes2map,c=i._get17,u=i.U,h=null==t;h&&(t=new r(e.length>>>2<<3));for(var d,A,g=0,p=0,m=0,w=0,v=0,b=0,y=0,E=0,F=0;0==g;)if(g=o(e,F,1),p=o(e,F+1,2),F+=3,0!=p){if(h&&(t=UZIP.F._check(t,E+(1<<17))),1==p&&(d=u.flmap,A=u.fdmap,b=511,y=31),2==p){m=a(e,F,5)+257,w=a(e,F+5,5)+1,v=a(e,F+10,4)+4,F+=14;for(var _=0;_<38;_+=2)u.itree[_]=0,u.itree[_+1]=0;var B=1;for(_=0;_<v;_++){var U=a(e,F+3*_,3);u.itree[1+(u.ordr[_]<<1)]=U,U>B&&(B=U);}F+=3*v,f(u.itree,B),l(u.itree,B,u.imap),d=u.lmap,A=u.dmap,F=s(u.imap,(1<<B)-1,m+w,e,F,u.ttree);var C=i._copyOut(u.ttree,0,m,u.ltree);b=(1<<C)-1;var I=i._copyOut(u.ttree,m,w,u.dtree);y=(1<<I)-1,f(u.ltree,C),l(u.ltree,C,d),f(u.dtree,I),l(u.dtree,I,A);}for(;;){var Q=d[c(e,F)&b];F+=15&Q;var M=Q>>>4;if(M>>>8==0)t[E++]=M;else {if(256==M)break;var x=E+M-254;if(M>264){var S=u.ldef[M-257];x=E+(S>>>3)+a(e,F,7&S),F+=7&S;}var R=A[c(e,F)&y];F+=15&R;var T=R>>>4,O=u.ddef[T],P=(O>>>4)+o(e,F,15&O);for(F+=15&O,h&&(t=UZIP.F._check(t,E+(1<<17)));E<x;)t[E]=t[E++-P],t[E]=t[E++-P],t[E]=t[E++-P],t[E]=t[E++-P];E=x;}}}else {0!=(7&F)&&(F+=8-(7&F));var H=4+(F>>>3),L=e[H-4]|e[H-3]<<8;h&&(t=UZIP.F._check(t,E+L)),t.set(new r(e.buffer,e.byteOffset+H,L),E),F=H+L<<3,E+=L;}return t.length==E?t:t.slice(0,E)},UZIP.F._check=function(e,t){var r=e.length;if(t<=r)return e;var i=new Uint8Array(Math.max(r<<1,t));return i.set(e,0),i},UZIP.F._decodeTiny=function(e,t,r,i,o,a){for(var s=UZIP.F._bitsE,f=UZIP.F._get17,l=0;l<r;){var c=e[f(i,o)&t];o+=15&c;var u=c>>>4;if(u<=15)a[l]=u,l++;else {var h=0,d=0;16==u?(d=3+s(i,o,2),o+=2,h=a[l-1]):17==u?(d=3+s(i,o,3),o+=3):18==u&&(d=11+s(i,o,7),o+=7);for(var A=l+d;l<A;)a[l]=h,l++;}}return o},UZIP.F._copyOut=function(e,t,r,i){for(var o=0,a=0,s=i.length>>>1;a<r;){var f=e[a+t];i[a<<1]=0,i[1+(a<<1)]=f,f>o&&(o=f),a++;}for(;a<s;)i[a<<1]=0,i[1+(a<<1)]=0,a++;return o},UZIP.F.makeCodes=function(e,t){for(var r,i,o,a,s=UZIP.F.U,f=e.length,l=s.bl_count,c=0;c<=t;c++)l[c]=0;for(c=1;c<f;c+=2)l[e[c]]++;var u=s.next_code;for(r=0,l[0]=0,i=1;i<=t;i++)r=r+l[i-1]<<1,u[i]=r;for(o=0;o<f;o+=2)0!=(a=e[o+1])&&(e[o]=u[a],u[a]++);},UZIP.F.codes2map=function(e,t,r){for(var i=e.length,o=UZIP.F.U.rev15,a=0;a<i;a+=2)if(0!=e[a+1])for(var s=a>>1,f=e[a+1],l=s<<4|f,c=t-f,u=e[a]<<c,h=u+(1<<c);u!=h;){r[o[u]>>>15-t]=l,u++;}},UZIP.F.revCodes=function(e,t){for(var r=UZIP.F.U.rev15,i=15-t,o=0;o<e.length;o+=2){var a=e[o]<<t-e[o+1];e[o]=r[a]>>>i;}},UZIP.F._putsE=function(e,t,r){r<<=7&t;var i=t>>>3;e[i]|=r,e[i+1]|=r>>>8;},UZIP.F._putsF=function(e,t,r){r<<=7&t;var i=t>>>3;e[i]|=r,e[i+1]|=r>>>8,e[i+2]|=r>>>16;},UZIP.F._bitsE=function(e,t,r){return (e[t>>>3]|e[1+(t>>>3)]<<8)>>>(7&t)&(1<<r)-1},UZIP.F._bitsF=function(e,t,r){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16)>>>(7&t)&(1<<r)-1},UZIP.F._get17=function(e,t){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16)>>>(7&t)},UZIP.F._get25=function(e,t){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16|e[3+(t>>>3)]<<24)>>>(7&t)},UZIP.F.U=(r=Uint16Array,i=Uint32Array,{next_code:new r(16),bl_count:new r(16),ordr:[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],of0:[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,999,999,999],exb:[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0],ldef:new r(32),df0:[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,65535,65535],dxb:[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0],ddef:new i(32),flmap:new r(512),fltree:[],fdmap:new r(32),fdtree:[],lmap:new r(32768),ltree:[],ttree:[],dmap:new r(32768),dtree:[],imap:new r(512),itree:[],rev15:new r(32768),lhst:new i(286),dhst:new i(30),ihst:new i(19),lits:new i(15e3),strt:new r(65536),prev:new r(32768)}),function(){for(var e=UZIP.F.U,t=0;t<32768;t++){var r=t;r=(4278255360&(r=(4042322160&(r=(3435973836&(r=(2863311530&r)>>>1|(1431655765&r)<<1))>>>2|(858993459&r)<<2))>>>4|(252645135&r)<<4))>>>8|(16711935&r)<<8,e.rev15[t]=(r>>>16|r<<16)>>>17;}function pushV(e,t,r){for(;0!=t--;)e.push(0,r);}for(t=0;t<32;t++)e.ldef[t]=e.of0[t]<<3|e.exb[t],e.ddef[t]=e.df0[t]<<4|e.dxb[t];pushV(e.fltree,144,8),pushV(e.fltree,112,9),pushV(e.fltree,24,7),pushV(e.fltree,8,8),UZIP.F.makeCodes(e.fltree,9),UZIP.F.codes2map(e.fltree,9,e.flmap),UZIP.F.revCodes(e.fltree,9),pushV(e.fdtree,32,5),UZIP.F.makeCodes(e.fdtree,5),UZIP.F.codes2map(e.fdtree,5,e.fdmap),UZIP.F.revCodes(e.fdtree,5),pushV(e.itree,19,0),pushV(e.ltree,286,0),pushV(e.dtree,30,0),pushV(e.ttree,320,0);}();}();var UZIP=_mergeNamespaces({__proto__:null,default:e},[e]);const UPNG=function(){var e={nextZero(e,t){for(;0!=e[t];)t++;return t},readUshort:(e,t)=>e[t]<<8|e[t+1],writeUshort(e,t,r){e[t]=r>>8&255,e[t+1]=255&r;},readUint:(e,t)=>16777216*e[t]+(e[t+1]<<16|e[t+2]<<8|e[t+3]),writeUint(e,t,r){e[t]=r>>24&255,e[t+1]=r>>16&255,e[t+2]=r>>8&255,e[t+3]=255&r;},readASCII(e,t,r){let i="";for(let o=0;o<r;o++)i+=String.fromCharCode(e[t+o]);return i},writeASCII(e,t,r){for(let i=0;i<r.length;i++)e[t+i]=r.charCodeAt(i);},readBytes(e,t,r){const i=[];for(let o=0;o<r;o++)i.push(e[t+o]);return i},pad:e=>e.length<2?`0${e}`:e,readUTF8(t,r,i){let o,a="";for(let o=0;o<i;o++)a+=`%${e.pad(t[r+o].toString(16))}`;try{o=decodeURIComponent(a);}catch(o){return e.readASCII(t,r,i)}return o}};function decodeImage(t,r,i,o){const a=r*i,s=_getBPP(o),f=Math.ceil(r*s/8),l=new Uint8Array(4*a),c=new Uint32Array(l.buffer),{ctype:u}=o,{depth:h}=o,d=e.readUshort;if(6==u){const e=a<<2;if(8==h)for(var A=0;A<e;A+=4)l[A]=t[A],l[A+1]=t[A+1],l[A+2]=t[A+2],l[A+3]=t[A+3];if(16==h)for(A=0;A<e;A++)l[A]=t[A<<1];}else if(2==u){const e=o.tabs.tRNS;if(null==e){if(8==h)for(A=0;A<a;A++){var g=3*A;c[A]=255<<24|t[g+2]<<16|t[g+1]<<8|t[g];}if(16==h)for(A=0;A<a;A++){g=6*A;c[A]=255<<24|t[g+4]<<16|t[g+2]<<8|t[g];}}else {var p=e[0];const r=e[1],i=e[2];if(8==h)for(A=0;A<a;A++){var m=A<<2;g=3*A;c[A]=255<<24|t[g+2]<<16|t[g+1]<<8|t[g],t[g]==p&&t[g+1]==r&&t[g+2]==i&&(l[m+3]=0);}if(16==h)for(A=0;A<a;A++){m=A<<2,g=6*A;c[A]=255<<24|t[g+4]<<16|t[g+2]<<8|t[g],d(t,g)==p&&d(t,g+2)==r&&d(t,g+4)==i&&(l[m+3]=0);}}}else if(3==u){const e=o.tabs.PLTE,s=o.tabs.tRNS,c=s?s.length:0;if(1==h)for(var w=0;w<i;w++){var v=w*f,b=w*r;for(A=0;A<r;A++){m=b+A<<2;var y=3*(E=t[v+(A>>3)]>>7-((7&A)<<0)&1);l[m]=e[y],l[m+1]=e[y+1],l[m+2]=e[y+2],l[m+3]=E<c?s[E]:255;}}if(2==h)for(w=0;w<i;w++)for(v=w*f,b=w*r,A=0;A<r;A++){m=b+A<<2,y=3*(E=t[v+(A>>2)]>>6-((3&A)<<1)&3);l[m]=e[y],l[m+1]=e[y+1],l[m+2]=e[y+2],l[m+3]=E<c?s[E]:255;}if(4==h)for(w=0;w<i;w++)for(v=w*f,b=w*r,A=0;A<r;A++){m=b+A<<2,y=3*(E=t[v+(A>>1)]>>4-((1&A)<<2)&15);l[m]=e[y],l[m+1]=e[y+1],l[m+2]=e[y+2],l[m+3]=E<c?s[E]:255;}if(8==h)for(A=0;A<a;A++){var E;m=A<<2,y=3*(E=t[A]);l[m]=e[y],l[m+1]=e[y+1],l[m+2]=e[y+2],l[m+3]=E<c?s[E]:255;}}else if(4==u){if(8==h)for(A=0;A<a;A++){m=A<<2;var F=t[_=A<<1];l[m]=F,l[m+1]=F,l[m+2]=F,l[m+3]=t[_+1];}if(16==h)for(A=0;A<a;A++){var _;m=A<<2,F=t[_=A<<2];l[m]=F,l[m+1]=F,l[m+2]=F,l[m+3]=t[_+2];}}else if(0==u)for(p=o.tabs.tRNS?o.tabs.tRNS:-1,w=0;w<i;w++){const e=w*f,i=w*r;if(1==h)for(var B=0;B<r;B++){var U=(F=255*(t[e+(B>>>3)]>>>7-(7&B)&1))==255*p?0:255;c[i+B]=U<<24|F<<16|F<<8|F;}else if(2==h)for(B=0;B<r;B++){U=(F=85*(t[e+(B>>>2)]>>>6-((3&B)<<1)&3))==85*p?0:255;c[i+B]=U<<24|F<<16|F<<8|F;}else if(4==h)for(B=0;B<r;B++){U=(F=17*(t[e+(B>>>1)]>>>4-((1&B)<<2)&15))==17*p?0:255;c[i+B]=U<<24|F<<16|F<<8|F;}else if(8==h)for(B=0;B<r;B++){U=(F=t[e+B])==p?0:255;c[i+B]=U<<24|F<<16|F<<8|F;}else if(16==h)for(B=0;B<r;B++){F=t[e+(B<<1)],U=d(t,e+(B<<1))==p?0:255;c[i+B]=U<<24|F<<16|F<<8|F;}}return l}function _decompress(e,r,i,o){const a=_getBPP(e),s=Math.ceil(i*a/8),f=new Uint8Array((s+1+e.interlace)*o);return r=e.tabs.CgBI?t(r,f):_inflate(r,f),0==e.interlace?r=_filterZero(r,e,0,i,o):1==e.interlace&&(r=function _readInterlace(e,t){const r=t.width,i=t.height,o=_getBPP(t),a=o>>3,s=Math.ceil(r*o/8),f=new Uint8Array(i*s);let l=0;const c=[0,0,4,0,2,0,1],u=[0,4,0,2,0,1,0],h=[8,8,8,4,4,2,2],d=[8,8,4,4,2,2,1];let A=0;for(;A<7;){const p=h[A],m=d[A];let w=0,v=0,b=c[A];for(;b<i;)b+=p,v++;let y=u[A];for(;y<r;)y+=m,w++;const E=Math.ceil(w*o/8);_filterZero(e,t,l,w,v);let F=0,_=c[A];for(;_<i;){let t=u[A],i=l+F*E<<3;for(;t<r;){var g;if(1==o)g=(g=e[i>>3])>>7-(7&i)&1,f[_*s+(t>>3)]|=g<<7-((7&t)<<0);if(2==o)g=(g=e[i>>3])>>6-(7&i)&3,f[_*s+(t>>2)]|=g<<6-((3&t)<<1);if(4==o)g=(g=e[i>>3])>>4-(7&i)&15,f[_*s+(t>>1)]|=g<<4-((1&t)<<2);if(o>=8){const r=_*s+t*a;for(let t=0;t<a;t++)f[r+t]=e[(i>>3)+t];}i+=o,t+=m;}F++,_+=p;}w*v!=0&&(l+=v*(1+E)),A+=1;}return f}(r,e)),r}function _inflate(e,r){return t(new Uint8Array(e.buffer,2,e.length-6),r)}var t=function(){const e={H:{}};return e.H.N=function(t,r){const i=Uint8Array;let o,a,s=0,f=0,l=0,c=0,u=0,h=0,d=0,A=0,g=0;if(3==t[0]&&0==t[1])return r||new i(0);const p=e.H,m=p.b,w=p.e,v=p.R,b=p.n,y=p.A,E=p.Z,F=p.m,_=null==r;for(_&&(r=new i(t.length>>>2<<5));0==s;)if(s=m(t,g,1),f=m(t,g+1,2),g+=3,0!=f){if(_&&(r=e.H.W(r,A+(1<<17))),1==f&&(o=F.J,a=F.h,h=511,d=31),2==f){l=w(t,g,5)+257,c=w(t,g+5,5)+1,u=w(t,g+10,4)+4,g+=14;let e=1;for(var B=0;B<38;B+=2)F.Q[B]=0,F.Q[B+1]=0;for(B=0;B<u;B++){const r=w(t,g+3*B,3);F.Q[1+(F.X[B]<<1)]=r,r>e&&(e=r);}g+=3*u,b(F.Q,e),y(F.Q,e,F.u),o=F.w,a=F.d,g=v(F.u,(1<<e)-1,l+c,t,g,F.v);const r=p.V(F.v,0,l,F.C);h=(1<<r)-1;const i=p.V(F.v,l,c,F.D);d=(1<<i)-1,b(F.C,r),y(F.C,r,o),b(F.D,i),y(F.D,i,a);}for(;;){const e=o[E(t,g)&h];g+=15&e;const i=e>>>4;if(i>>>8==0)r[A++]=i;else {if(256==i)break;{let e=A+i-254;if(i>264){const r=F.q[i-257];e=A+(r>>>3)+w(t,g,7&r),g+=7&r;}const o=a[E(t,g)&d];g+=15&o;const s=o>>>4,f=F.c[s],l=(f>>>4)+m(t,g,15&f);for(g+=15&f;A<e;)r[A]=r[A++-l],r[A]=r[A++-l],r[A]=r[A++-l],r[A]=r[A++-l];A=e;}}}}else {0!=(7&g)&&(g+=8-(7&g));const o=4+(g>>>3),a=t[o-4]|t[o-3]<<8;_&&(r=e.H.W(r,A+a)),r.set(new i(t.buffer,t.byteOffset+o,a),A),g=o+a<<3,A+=a;}return r.length==A?r:r.slice(0,A)},e.H.W=function(e,t){const r=e.length;if(t<=r)return e;const i=new Uint8Array(r<<1);return i.set(e,0),i},e.H.R=function(t,r,i,o,a,s){const f=e.H.e,l=e.H.Z;let c=0;for(;c<i;){const e=t[l(o,a)&r];a+=15&e;const i=e>>>4;if(i<=15)s[c]=i,c++;else {let e=0,t=0;16==i?(t=3+f(o,a,2),a+=2,e=s[c-1]):17==i?(t=3+f(o,a,3),a+=3):18==i&&(t=11+f(o,a,7),a+=7);const r=c+t;for(;c<r;)s[c]=e,c++;}}return a},e.H.V=function(e,t,r,i){let o=0,a=0;const s=i.length>>>1;for(;a<r;){const r=e[a+t];i[a<<1]=0,i[1+(a<<1)]=r,r>o&&(o=r),a++;}for(;a<s;)i[a<<1]=0,i[1+(a<<1)]=0,a++;return o},e.H.n=function(t,r){const i=e.H.m,o=t.length;let a,s,f;let l;const c=i.j;for(var u=0;u<=r;u++)c[u]=0;for(u=1;u<o;u+=2)c[t[u]]++;const h=i.K;for(a=0,c[0]=0,s=1;s<=r;s++)a=a+c[s-1]<<1,h[s]=a;for(f=0;f<o;f+=2)l=t[f+1],0!=l&&(t[f]=h[l],h[l]++);},e.H.A=function(t,r,i){const o=t.length,a=e.H.m.r;for(let e=0;e<o;e+=2)if(0!=t[e+1]){const o=e>>1,s=t[e+1],f=o<<4|s,l=r-s;let c=t[e]<<l;const u=c+(1<<l);for(;c!=u;){i[a[c]>>>15-r]=f,c++;}}},e.H.l=function(t,r){const i=e.H.m.r,o=15-r;for(let e=0;e<t.length;e+=2){const a=t[e]<<r-t[e+1];t[e]=i[a]>>>o;}},e.H.M=function(e,t,r){r<<=7&t;const i=t>>>3;e[i]|=r,e[i+1]|=r>>>8;},e.H.I=function(e,t,r){r<<=7&t;const i=t>>>3;e[i]|=r,e[i+1]|=r>>>8,e[i+2]|=r>>>16;},e.H.e=function(e,t,r){return (e[t>>>3]|e[1+(t>>>3)]<<8)>>>(7&t)&(1<<r)-1},e.H.b=function(e,t,r){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16)>>>(7&t)&(1<<r)-1},e.H.Z=function(e,t){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16)>>>(7&t)},e.H.i=function(e,t){return (e[t>>>3]|e[1+(t>>>3)]<<8|e[2+(t>>>3)]<<16|e[3+(t>>>3)]<<24)>>>(7&t)},e.H.m=function(){const e=Uint16Array,t=Uint32Array;return {K:new e(16),j:new e(16),X:[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],S:[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,999,999,999],T:[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0],q:new e(32),p:[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,65535,65535],z:[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0],c:new t(32),J:new e(512),_:[],h:new e(32),$:[],w:new e(32768),C:[],v:[],d:new e(32768),D:[],u:new e(512),Q:[],r:new e(32768),s:new t(286),Y:new t(30),a:new t(19),t:new t(15e3),k:new e(65536),g:new e(32768)}}(),function(){const t=e.H.m;for(var r=0;r<32768;r++){let e=r;e=(2863311530&e)>>>1|(1431655765&e)<<1,e=(3435973836&e)>>>2|(858993459&e)<<2,e=(4042322160&e)>>>4|(252645135&e)<<4,e=(4278255360&e)>>>8|(16711935&e)<<8,t.r[r]=(e>>>16|e<<16)>>>17;}function n(e,t,r){for(;0!=t--;)e.push(0,r);}for(r=0;r<32;r++)t.q[r]=t.S[r]<<3|t.T[r],t.c[r]=t.p[r]<<4|t.z[r];n(t._,144,8),n(t._,112,9),n(t._,24,7),n(t._,8,8),e.H.n(t._,9),e.H.A(t._,9,t.J),e.H.l(t._,9),n(t.$,32,5),e.H.n(t.$,5),e.H.A(t.$,5,t.h),e.H.l(t.$,5),n(t.Q,19,0),n(t.C,286,0),n(t.D,30,0),n(t.v,320,0);}(),e.H.N}();function _getBPP(e){return [1,null,3,1,2,null,4][e.ctype]*e.depth}function _filterZero(e,t,r,i,o){let a=_getBPP(t);const s=Math.ceil(i*a/8);let f,l;a=Math.ceil(a/8);let c=e[r],u=0;if(c>1&&(e[r]=[0,0,1][c-2]),3==c)for(u=a;u<s;u++)e[u+1]=e[u+1]+(e[u+1-a]>>>1)&255;for(let t=0;t<o;t++)if(f=r+t*s,l=f+t+1,c=e[l-1],u=0,0==c)for(;u<s;u++)e[f+u]=e[l+u];else if(1==c){for(;u<a;u++)e[f+u]=e[l+u];for(;u<s;u++)e[f+u]=e[l+u]+e[f+u-a];}else if(2==c)for(;u<s;u++)e[f+u]=e[l+u]+e[f+u-s];else if(3==c){for(;u<a;u++)e[f+u]=e[l+u]+(e[f+u-s]>>>1);for(;u<s;u++)e[f+u]=e[l+u]+(e[f+u-s]+e[f+u-a]>>>1);}else {for(;u<a;u++)e[f+u]=e[l+u]+_paeth(0,e[f+u-s],0);for(;u<s;u++)e[f+u]=e[l+u]+_paeth(e[f+u-a],e[f+u-s],e[f+u-a-s]);}return e}function _paeth(e,t,r){const i=e+t-r,o=i-e,a=i-t,s=i-r;return o*o<=a*a&&o*o<=s*s?e:a*a<=s*s?t:r}function _IHDR(t,r,i){i.width=e.readUint(t,r),r+=4,i.height=e.readUint(t,r),r+=4,i.depth=t[r],r++,i.ctype=t[r],r++,i.compress=t[r],r++,i.filter=t[r],r++,i.interlace=t[r],r++;}function _copyTile(e,t,r,i,o,a,s,f,l){const c=Math.min(t,o),u=Math.min(r,a);let h=0,d=0;for(let r=0;r<u;r++)for(let a=0;a<c;a++)if(s>=0&&f>=0?(h=r*t+a<<2,d=(f+r)*o+s+a<<2):(h=(-f+r)*t-s+a<<2,d=r*o+a<<2),0==l)i[d]=e[h],i[d+1]=e[h+1],i[d+2]=e[h+2],i[d+3]=e[h+3];else if(1==l){var A=e[h+3]*(1/255),g=e[h]*A,p=e[h+1]*A,m=e[h+2]*A,w=i[d+3]*(1/255),v=i[d]*w,b=i[d+1]*w,y=i[d+2]*w;const t=1-A,r=A+w*t,o=0==r?0:1/r;i[d+3]=255*r,i[d+0]=(g+v*t)*o,i[d+1]=(p+b*t)*o,i[d+2]=(m+y*t)*o;}else if(2==l){A=e[h+3],g=e[h],p=e[h+1],m=e[h+2],w=i[d+3],v=i[d],b=i[d+1],y=i[d+2];A==w&&g==v&&p==b&&m==y?(i[d]=0,i[d+1]=0,i[d+2]=0,i[d+3]=0):(i[d]=g,i[d+1]=p,i[d+2]=m,i[d+3]=A);}else if(3==l){A=e[h+3],g=e[h],p=e[h+1],m=e[h+2],w=i[d+3],v=i[d],b=i[d+1],y=i[d+2];if(A==w&&g==v&&p==b&&m==y)continue;if(A<220&&w>20)return false}return true}return {decode:function decode(r){const i=new Uint8Array(r);let o=8;const a=e,s=a.readUshort,f=a.readUint,l={tabs:{},frames:[]},c=new Uint8Array(i.length);let u,h=0,d=0;const A=[137,80,78,71,13,10,26,10];for(var g=0;g<8;g++)if(i[g]!=A[g])throw "The input is not a PNG file!";for(;o<i.length;){const e=a.readUint(i,o);o+=4;const r=a.readASCII(i,o,4);if(o+=4,"IHDR"==r)_IHDR(i,o,l);else if("iCCP"==r){for(var p=o;0!=i[p];)p++;a.readASCII(i,o,p-o);const s=i.slice(p+2,o+e);let f=null;try{f=_inflate(s);}catch(e){f=t(s);}l.tabs[r]=f;}else if("CgBI"==r)l.tabs[r]=i.slice(o,o+4);else if("IDAT"==r){for(g=0;g<e;g++)c[h+g]=i[o+g];h+=e;}else if("acTL"==r)l.tabs[r]={num_frames:f(i,o),num_plays:f(i,o+4)},u=new Uint8Array(i.length);else if("fcTL"==r){if(0!=d)(E=l.frames[l.frames.length-1]).data=_decompress(l,u.slice(0,d),E.rect.width,E.rect.height),d=0;const e={x:f(i,o+12),y:f(i,o+16),width:f(i,o+4),height:f(i,o+8)};let t=s(i,o+22);t=s(i,o+20)/(0==t?100:t);const r={rect:e,delay:Math.round(1e3*t),dispose:i[o+24],blend:i[o+25]};l.frames.push(r);}else if("fdAT"==r){for(g=0;g<e-4;g++)u[d+g]=i[o+g+4];d+=e-4;}else if("pHYs"==r)l.tabs[r]=[a.readUint(i,o),a.readUint(i,o+4),i[o+8]];else if("cHRM"==r){l.tabs[r]=[];for(g=0;g<8;g++)l.tabs[r].push(a.readUint(i,o+4*g));}else if("tEXt"==r||"zTXt"==r){null==l.tabs[r]&&(l.tabs[r]={});var m=a.nextZero(i,o),w=a.readASCII(i,o,m-o),v=o+e-m-1;if("tEXt"==r)y=a.readASCII(i,m+1,v);else {var b=_inflate(i.slice(m+2,m+2+v));y=a.readUTF8(b,0,b.length);}l.tabs[r][w]=y;}else if("iTXt"==r){null==l.tabs[r]&&(l.tabs[r]={});m=0,p=o;m=a.nextZero(i,p);w=a.readASCII(i,p,m-p);const t=i[p=m+1];var y;p+=2,m=a.nextZero(i,p),a.readASCII(i,p,m-p),p=m+1,m=a.nextZero(i,p),a.readUTF8(i,p,m-p);v=e-((p=m+1)-o);if(0==t)y=a.readUTF8(i,p,v);else {b=_inflate(i.slice(p,p+v));y=a.readUTF8(b,0,b.length);}l.tabs[r][w]=y;}else if("PLTE"==r)l.tabs[r]=a.readBytes(i,o,e);else if("hIST"==r){const e=l.tabs.PLTE.length/3;l.tabs[r]=[];for(g=0;g<e;g++)l.tabs[r].push(s(i,o+2*g));}else if("tRNS"==r)3==l.ctype?l.tabs[r]=a.readBytes(i,o,e):0==l.ctype?l.tabs[r]=s(i,o):2==l.ctype&&(l.tabs[r]=[s(i,o),s(i,o+2),s(i,o+4)]);else if("gAMA"==r)l.tabs[r]=a.readUint(i,o)/1e5;else if("sRGB"==r)l.tabs[r]=i[o];else if("bKGD"==r)0==l.ctype||4==l.ctype?l.tabs[r]=[s(i,o)]:2==l.ctype||6==l.ctype?l.tabs[r]=[s(i,o),s(i,o+2),s(i,o+4)]:3==l.ctype&&(l.tabs[r]=i[o]);else if("IEND"==r)break;o+=e,a.readUint(i,o),o+=4;}var E;return 0!=d&&((E=l.frames[l.frames.length-1]).data=_decompress(l,u.slice(0,d),E.rect.width,E.rect.height)),l.data=_decompress(l,c,l.width,l.height),delete l.compress,delete l.interlace,delete l.filter,l},toRGBA8:function toRGBA8(e){const t=e.width,r=e.height;if(null==e.tabs.acTL)return [decodeImage(e.data,t,r,e).buffer];const i=[];null==e.frames[0].data&&(e.frames[0].data=e.data);const o=t*r*4,a=new Uint8Array(o),s=new Uint8Array(o),f=new Uint8Array(o);for(let c=0;c<e.frames.length;c++){const u=e.frames[c],h=u.rect.x,d=u.rect.y,A=u.rect.width,g=u.rect.height,p=decodeImage(u.data,A,g,e);if(0!=c)for(var l=0;l<o;l++)f[l]=a[l];if(0==u.blend?_copyTile(p,A,g,a,t,r,h,d,0):1==u.blend&&_copyTile(p,A,g,a,t,r,h,d,1),i.push(a.buffer.slice(0)),0==u.dispose);else if(1==u.dispose)_copyTile(s,A,g,a,t,r,h,d,0);else if(2==u.dispose)for(l=0;l<o;l++)a[l]=f[l];}return i},_paeth:_paeth,_copyTile:_copyTile,_bin:e}}();!function(){const{_copyTile:e}=UPNG,{_bin:t}=UPNG,r=UPNG._paeth;var i={table:function(){const e=new Uint32Array(256);for(let t=0;t<256;t++){let r=t;for(let e=0;e<8;e++)1&r?r=3988292384^r>>>1:r>>>=1;e[t]=r;}return e}(),update(e,t,r,o){for(let a=0;a<o;a++)e=i.table[255&(e^t[r+a])]^e>>>8;return e},crc:(e,t,r)=>4294967295^i.update(4294967295,e,t,r)};function addErr(e,t,r,i){t[r]+=e[0]*i>>4,t[r+1]+=e[1]*i>>4,t[r+2]+=e[2]*i>>4,t[r+3]+=e[3]*i>>4;}function N(e){return Math.max(0,Math.min(255,e))}function D(e,t){const r=e[0]-t[0],i=e[1]-t[1],o=e[2]-t[2],a=e[3]-t[3];return r*r+i*i+o*o+a*a}function dither(e,t,r,i,o,a,s){null==s&&(s=1);const f=i.length,l=[];for(var c=0;c<f;c++){const e=i[c];l.push([e>>>0&255,e>>>8&255,e>>>16&255,e>>>24&255]);}for(c=0;c<f;c++){let e=4294967295;for(var u=0,h=0;h<f;h++){var d=D(l[c],l[h]);h!=c&&d<e&&(e=d,u=h);}}const A=new Uint32Array(o.buffer),g=new Int16Array(t*r*4),p=[0,8,2,10,12,4,14,6,3,11,1,9,15,7,13,5];for(c=0;c<p.length;c++)p[c]=255*((p[c]+.5)/16-.5);for(let o=0;o<r;o++)for(let w=0;w<t;w++){var m;c=4*(o*t+w);if(2!=s)m=[N(e[c]+g[c]),N(e[c+1]+g[c+1]),N(e[c+2]+g[c+2]),N(e[c+3]+g[c+3])];else {d=p[4*(3&o)+(3&w)];m=[N(e[c]+d),N(e[c+1]+d),N(e[c+2]+d),N(e[c+3]+d)];}u=0;let v=16777215;for(h=0;h<f;h++){const e=D(m,l[h]);e<v&&(v=e,u=h);}const b=l[u],y=[m[0]-b[0],m[1]-b[1],m[2]-b[2],m[3]-b[3]];1==s&&(w!=t-1&&addErr(y,g,c+4,7),o!=r-1&&(0!=w&&addErr(y,g,c+4*t-4,3),addErr(y,g,c+4*t,5),w!=t-1&&addErr(y,g,c+4*t+4,1))),a[c>>2]=u,A[c>>2]=i[u];}}function _main(e,r,o,a,s){null==s&&(s={});const{crc:f}=i,l=t.writeUint,c=t.writeUshort,u=t.writeASCII;let h=8;const d=e.frames.length>1;let A,g=false,p=33+(d?20:0);if(null!=s.sRGB&&(p+=13),null!=s.pHYs&&(p+=21),null!=s.iCCP&&(A=pako.deflate(s.iCCP),p+=21+A.length+4),3==e.ctype){for(var m=e.plte.length,w=0;w<m;w++)e.plte[w]>>>24!=255&&(g=true);p+=8+3*m+4+(g?8+1*m+4:0);}for(var v=0;v<e.frames.length;v++){d&&(p+=38),p+=(F=e.frames[v]).cimg.length+12,0!=v&&(p+=4);}p+=12;const b=new Uint8Array(p),y=[137,80,78,71,13,10,26,10];for(w=0;w<8;w++)b[w]=y[w];if(l(b,h,13),h+=4,u(b,h,"IHDR"),h+=4,l(b,h,r),h+=4,l(b,h,o),h+=4,b[h]=e.depth,h++,b[h]=e.ctype,h++,b[h]=0,h++,b[h]=0,h++,b[h]=0,h++,l(b,h,f(b,h-17,17)),h+=4,null!=s.sRGB&&(l(b,h,1),h+=4,u(b,h,"sRGB"),h+=4,b[h]=s.sRGB,h++,l(b,h,f(b,h-5,5)),h+=4),null!=s.iCCP){const e=13+A.length;l(b,h,e),h+=4,u(b,h,"iCCP"),h+=4,u(b,h,"ICC profile"),h+=11,h+=2,b.set(A,h),h+=A.length,l(b,h,f(b,h-(e+4),e+4)),h+=4;}if(null!=s.pHYs&&(l(b,h,9),h+=4,u(b,h,"pHYs"),h+=4,l(b,h,s.pHYs[0]),h+=4,l(b,h,s.pHYs[1]),h+=4,b[h]=s.pHYs[2],h++,l(b,h,f(b,h-13,13)),h+=4),d&&(l(b,h,8),h+=4,u(b,h,"acTL"),h+=4,l(b,h,e.frames.length),h+=4,l(b,h,null!=s.loop?s.loop:0),h+=4,l(b,h,f(b,h-12,12)),h+=4),3==e.ctype){l(b,h,3*(m=e.plte.length)),h+=4,u(b,h,"PLTE"),h+=4;for(w=0;w<m;w++){const t=3*w,r=e.plte[w],i=255&r,o=r>>>8&255,a=r>>>16&255;b[h+t+0]=i,b[h+t+1]=o,b[h+t+2]=a;}if(h+=3*m,l(b,h,f(b,h-3*m-4,3*m+4)),h+=4,g){l(b,h,m),h+=4,u(b,h,"tRNS"),h+=4;for(w=0;w<m;w++)b[h+w]=e.plte[w]>>>24&255;h+=m,l(b,h,f(b,h-m-4,m+4)),h+=4;}}let E=0;for(v=0;v<e.frames.length;v++){var F=e.frames[v];d&&(l(b,h,26),h+=4,u(b,h,"fcTL"),h+=4,l(b,h,E++),h+=4,l(b,h,F.rect.width),h+=4,l(b,h,F.rect.height),h+=4,l(b,h,F.rect.x),h+=4,l(b,h,F.rect.y),h+=4,c(b,h,a[v]),h+=2,c(b,h,1e3),h+=2,b[h]=F.dispose,h++,b[h]=F.blend,h++,l(b,h,f(b,h-30,30)),h+=4);const t=F.cimg;l(b,h,(m=t.length)+(0==v?0:4)),h+=4;const r=h;u(b,h,0==v?"IDAT":"fdAT"),h+=4,0!=v&&(l(b,h,E++),h+=4),b.set(t,h),h+=m,l(b,h,f(b,r,h-r)),h+=4;}return l(b,h,0),h+=4,u(b,h,"IEND"),h+=4,l(b,h,f(b,h-4,4)),h+=4,b.buffer}function compressPNG(e,t,r){for(let i=0;i<e.frames.length;i++){const o=e.frames[i];const a=o.rect.height,s=new Uint8Array(a*o.bpl+a);o.cimg=_filterZero(o.img,a,o.bpp,o.bpl,s,t,r);}}function compress(t,r,i,o,a){const s=a[0],f=a[1],l=a[2],c=a[3],u=a[4],h=a[5];let d=6,A=8,g=255;for(var p=0;p<t.length;p++){const e=new Uint8Array(t[p]);for(var m=e.length,w=0;w<m;w+=4)g&=e[w+3];}const v=255!=g,b=function framize(t,r,i,o,a,s){const f=[];for(var l=0;l<t.length;l++){const h=new Uint8Array(t[l]),A=new Uint32Array(h.buffer);var c;let g=0,p=0,m=r,w=i,v=o?1:0;if(0!=l){const b=s||o||1==l||0!=f[l-2].dispose?1:2;let y=0,E=1e9;for(let e=0;e<b;e++){var u=new Uint8Array(t[l-1-e]);const o=new Uint32Array(t[l-1-e]);let s=r,f=i,c=-1,h=-1;for(let e=0;e<i;e++)for(let t=0;t<r;t++){A[d=e*r+t]!=o[d]&&(t<s&&(s=t),t>c&&(c=t),e<f&&(f=e),e>h&&(h=e));} -1==c&&(s=f=c=h=0),a&&(1==(1&s)&&s--,1==(1&f)&&f--);const v=(c-s+1)*(h-f+1);v<E&&(E=v,y=e,g=s,p=f,m=c-s+1,w=h-f+1);}u=new Uint8Array(t[l-1-y]);1==y&&(f[l-1].dispose=2),c=new Uint8Array(m*w*4),e(u,r,i,c,m,w,-g,-p,0),v=e(h,r,i,c,m,w,-g,-p,3)?1:0,1==v?_prepareDiff(h,r,i,c,{x:g,y:p,width:m,height:w}):e(h,r,i,c,m,w,-g,-p,0);}else c=h.slice(0);f.push({rect:{x:g,y:p,width:m,height:w},img:c,blend:v,dispose:0});}if(o)for(l=0;l<f.length;l++){if(1==(A=f[l]).blend)continue;const e=A.rect,o=f[l-1].rect,s=Math.min(e.x,o.x),c=Math.min(e.y,o.y),u={x:s,y:c,width:Math.max(e.x+e.width,o.x+o.width)-s,height:Math.max(e.y+e.height,o.y+o.height)-c};f[l-1].dispose=1,l-1!=0&&_updateFrame(t,r,i,f,l-1,u,a),_updateFrame(t,r,i,f,l,u,a);}let h=0;if(1!=t.length)for(var d=0;d<f.length;d++){var A;h+=(A=f[d]).rect.width*A.rect.height;}return f}(t,r,i,s,f,l),y={},E=[],F=[];if(0!=o){const e=[];for(w=0;w<b.length;w++)e.push(b[w].img.buffer);const t=function concatRGBA(e){let t=0;for(var r=0;r<e.length;r++)t+=e[r].byteLength;const i=new Uint8Array(t);let o=0;for(r=0;r<e.length;r++){const t=new Uint8Array(e[r]),a=t.length;for(let e=0;e<a;e+=4){let r=t[e],a=t[e+1],s=t[e+2];const f=t[e+3];0==f&&(r=a=s=0),i[o+e]=r,i[o+e+1]=a,i[o+e+2]=s,i[o+e+3]=f;}o+=a;}return i.buffer}(e),r=quantize(t,o);for(w=0;w<r.plte.length;w++)E.push(r.plte[w].est.rgba);let i=0;for(w=0;w<b.length;w++){const e=(B=b[w]).img.length;var _=new Uint8Array(r.inds.buffer,i>>2,e>>2);F.push(_);const t=new Uint8Array(r.abuf,i,e);h&&dither(B.img,B.rect.width,B.rect.height,E,t,_),B.img.set(t),i+=e;}}else for(p=0;p<b.length;p++){var B=b[p];const e=new Uint32Array(B.img.buffer);var U=B.rect.width;m=e.length,_=new Uint8Array(m);F.push(_);for(w=0;w<m;w++){const t=e[w];if(0!=w&&t==e[w-1])_[w]=_[w-1];else if(w>U&&t==e[w-U])_[w]=_[w-U];else {let e=y[t];if(null==e&&(y[t]=e=E.length,E.push(t),E.length>=300))break;_[w]=e;}}}const C=E.length;C<=256&&0==u&&(A=C<=2?1:C<=4?2:C<=16?4:8,A=Math.max(A,c));for(p=0;p<b.length;p++){(B=b[p]).rect.x;U=B.rect.width;const e=B.rect.height;let t=B.img;let r=4*U,i=4;if(C<=256&&0==u){r=Math.ceil(A*U/8);var I=new Uint8Array(r*e);const o=F[p];for(let t=0;t<e;t++){w=t*r;const e=t*U;if(8==A)for(var Q=0;Q<U;Q++)I[w+Q]=o[e+Q];else if(4==A)for(Q=0;Q<U;Q++)I[w+(Q>>1)]|=o[e+Q]<<4-4*(1&Q);else if(2==A)for(Q=0;Q<U;Q++)I[w+(Q>>2)]|=o[e+Q]<<6-2*(3&Q);else if(1==A)for(Q=0;Q<U;Q++)I[w+(Q>>3)]|=o[e+Q]<<7-1*(7&Q);}t=I,d=3,i=1;}else if(0==v&&1==b.length){I=new Uint8Array(U*e*3);const o=U*e;for(w=0;w<o;w++){const e=3*w,r=4*w;I[e]=t[r],I[e+1]=t[r+1],I[e+2]=t[r+2];}t=I,d=2,i=3,r=3*U;}B.img=t,B.bpl=r,B.bpp=i;}return {ctype:d,depth:A,plte:E,frames:b}}function _updateFrame(t,r,i,o,a,s,f){const l=Uint8Array,c=Uint32Array,u=new l(t[a-1]),h=new c(t[a-1]),d=a+1<t.length?new l(t[a+1]):null,A=new l(t[a]),g=new c(A.buffer);let p=r,m=i,w=-1,v=-1;for(let e=0;e<s.height;e++)for(let t=0;t<s.width;t++){const i=s.x+t,f=s.y+e,l=f*r+i,c=g[l];0==c||0==o[a-1].dispose&&h[l]==c&&(null==d||0!=d[4*l+3])||(i<p&&(p=i),i>w&&(w=i),f<m&&(m=f),f>v&&(v=f));} -1==w&&(p=m=w=v=0),f&&(1==(1&p)&&p--,1==(1&m)&&m--),s={x:p,y:m,width:w-p+1,height:v-m+1};const b=o[a];b.rect=s,b.blend=1,b.img=new Uint8Array(s.width*s.height*4),0==o[a-1].dispose?(e(u,r,i,b.img,s.width,s.height,-s.x,-s.y,0),_prepareDiff(A,r,i,b.img,s)):e(A,r,i,b.img,s.width,s.height,-s.x,-s.y,0);}function _prepareDiff(t,r,i,o,a){e(t,r,i,o,a.width,a.height,-a.x,-a.y,2);}function _filterZero(e,t,r,i,o,a,s){const f=[];let l,c=[0,1,2,3,4];-1!=a?c=[a]:(t*i>5e5||1==r)&&(c=[0]),s&&(l={level:0});const u=UZIP;for(var h=0;h<c.length;h++){for(let a=0;a<t;a++)_filterLine(o,e,a,i,r,c[h]);f.push(u.deflate(o,l));}let d,A=1e9;for(h=0;h<f.length;h++)f[h].length<A&&(d=h,A=f[h].length);return f[d]}function _filterLine(e,t,i,o,a,s){const f=i*o;let l=f+i;if(e[l]=s,l++,0==s)if(o<500)for(var c=0;c<o;c++)e[l+c]=t[f+c];else e.set(new Uint8Array(t.buffer,f,o),l);else if(1==s){for(c=0;c<a;c++)e[l+c]=t[f+c];for(c=a;c<o;c++)e[l+c]=t[f+c]-t[f+c-a]+256&255;}else if(0==i){for(c=0;c<a;c++)e[l+c]=t[f+c];if(2==s)for(c=a;c<o;c++)e[l+c]=t[f+c];if(3==s)for(c=a;c<o;c++)e[l+c]=t[f+c]-(t[f+c-a]>>1)+256&255;if(4==s)for(c=a;c<o;c++)e[l+c]=t[f+c]-r(t[f+c-a],0,0)+256&255;}else {if(2==s)for(c=0;c<o;c++)e[l+c]=t[f+c]+256-t[f+c-o]&255;if(3==s){for(c=0;c<a;c++)e[l+c]=t[f+c]+256-(t[f+c-o]>>1)&255;for(c=a;c<o;c++)e[l+c]=t[f+c]+256-(t[f+c-o]+t[f+c-a]>>1)&255;}if(4==s){for(c=0;c<a;c++)e[l+c]=t[f+c]+256-r(0,t[f+c-o],0)&255;for(c=a;c<o;c++)e[l+c]=t[f+c]+256-r(t[f+c-a],t[f+c-o],t[f+c-a-o])&255;}}}function quantize(e,t){const r=new Uint8Array(e),i=r.slice(0),o=new Uint32Array(i.buffer),a=getKDtree(i,t),s=a[0],f=a[1],l=r.length,c=new Uint8Array(l>>2);let u;if(r.length<2e7)for(var h=0;h<l;h+=4){u=getNearest(s,d=r[h]*(1/255),A=r[h+1]*(1/255),g=r[h+2]*(1/255),p=r[h+3]*(1/255)),c[h>>2]=u.ind,o[h>>2]=u.est.rgba;}else for(h=0;h<l;h+=4){var d=r[h]*(1/255),A=r[h+1]*(1/255),g=r[h+2]*(1/255),p=r[h+3]*(1/255);for(u=s;u.left;)u=planeDst(u.est,d,A,g,p)<=0?u.left:u.right;c[h>>2]=u.ind,o[h>>2]=u.est.rgba;}return {abuf:i.buffer,inds:c,plte:f}}function getKDtree(e,t,r){null==r&&(r=1e-4);const i=new Uint32Array(e.buffer),o={i0:0,i1:e.length,bst:null,est:null,tdst:0,left:null,right:null};o.bst=stats(e,o.i0,o.i1),o.est=estats(o.bst);const a=[o];for(;a.length<t;){let t=0,o=0;for(var s=0;s<a.length;s++)a[s].est.L>t&&(t=a[s].est.L,o=s);if(t<r)break;const f=a[o],l=splitPixels(e,i,f.i0,f.i1,f.est.e,f.est.eMq255);if(f.i0>=l||f.i1<=l){f.est.L=0;continue}const c={i0:f.i0,i1:l,bst:null,est:null,tdst:0,left:null,right:null};c.bst=stats(e,c.i0,c.i1),c.est=estats(c.bst);const u={i0:l,i1:f.i1,bst:null,est:null,tdst:0,left:null,right:null};u.bst={R:[],m:[],N:f.bst.N-c.bst.N};for(s=0;s<16;s++)u.bst.R[s]=f.bst.R[s]-c.bst.R[s];for(s=0;s<4;s++)u.bst.m[s]=f.bst.m[s]-c.bst.m[s];u.est=estats(u.bst),f.left=c,f.right=u,a[o]=c,a.push(u);}a.sort(((e,t)=>t.bst.N-e.bst.N));for(s=0;s<a.length;s++)a[s].ind=s;return [o,a]}function getNearest(e,t,r,i,o){if(null==e.left)return e.tdst=function dist(e,t,r,i,o){const a=t-e[0],s=r-e[1],f=i-e[2],l=o-e[3];return a*a+s*s+f*f+l*l}(e.est.q,t,r,i,o),e;const a=planeDst(e.est,t,r,i,o);let s=e.left,f=e.right;a>0&&(s=e.right,f=e.left);const l=getNearest(s,t,r,i,o);if(l.tdst<=a*a)return l;const c=getNearest(f,t,r,i,o);return c.tdst<l.tdst?c:l}function planeDst(e,t,r,i,o){const{e:a}=e;return a[0]*t+a[1]*r+a[2]*i+a[3]*o-e.eMq}function splitPixels(e,t,r,i,o,a){for(i-=4;r<i;){for(;vecDot(e,r,o)<=a;)r+=4;for(;vecDot(e,i,o)>a;)i-=4;if(r>=i)break;const s=t[r>>2];t[r>>2]=t[i>>2],t[i>>2]=s,r+=4,i-=4;}for(;vecDot(e,r,o)>a;)r-=4;return r+4}function vecDot(e,t,r){return e[t]*r[0]+e[t+1]*r[1]+e[t+2]*r[2]+e[t+3]*r[3]}function stats(e,t,r){const i=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],o=[0,0,0,0],a=r-t>>2;for(let a=t;a<r;a+=4){const t=e[a]*(1/255),r=e[a+1]*(1/255),s=e[a+2]*(1/255),f=e[a+3]*(1/255);o[0]+=t,o[1]+=r,o[2]+=s,o[3]+=f,i[0]+=t*t,i[1]+=t*r,i[2]+=t*s,i[3]+=t*f,i[5]+=r*r,i[6]+=r*s,i[7]+=r*f,i[10]+=s*s,i[11]+=s*f,i[15]+=f*f;}return i[4]=i[1],i[8]=i[2],i[9]=i[6],i[12]=i[3],i[13]=i[7],i[14]=i[11],{R:i,m:o,N:a}}function estats(e){const{R:t}=e,{m:r}=e,{N:i}=e,a=r[0],s=r[1],f=r[2],l=r[3],c=0==i?0:1/i,u=[t[0]-a*a*c,t[1]-a*s*c,t[2]-a*f*c,t[3]-a*l*c,t[4]-s*a*c,t[5]-s*s*c,t[6]-s*f*c,t[7]-s*l*c,t[8]-f*a*c,t[9]-f*s*c,t[10]-f*f*c,t[11]-f*l*c,t[12]-l*a*c,t[13]-l*s*c,t[14]-l*f*c,t[15]-l*l*c],h=u,d=o;let A=[Math.random(),Math.random(),Math.random(),Math.random()],g=0,p=0;if(0!=i)for(let e=0;e<16&&(A=d.multVec(h,A),p=Math.sqrt(d.dot(A,A)),A=d.sml(1/p,A),!(0!=e&&Math.abs(p-g)<1e-9));e++)g=p;const m=[a*c,s*c,f*c,l*c];return {Cov:u,q:m,e:A,L:g,eMq255:d.dot(d.sml(255,m),A),eMq:d.dot(A,m),rgba:(Math.round(255*m[3])<<24|Math.round(255*m[2])<<16|Math.round(255*m[1])<<8|Math.round(255*m[0])<<0)>>>0}}var o={multVec:(e,t)=>[e[0]*t[0]+e[1]*t[1]+e[2]*t[2]+e[3]*t[3],e[4]*t[0]+e[5]*t[1]+e[6]*t[2]+e[7]*t[3],e[8]*t[0]+e[9]*t[1]+e[10]*t[2]+e[11]*t[3],e[12]*t[0]+e[13]*t[1]+e[14]*t[2]+e[15]*t[3]],dot:(e,t)=>e[0]*t[0]+e[1]*t[1]+e[2]*t[2]+e[3]*t[3],sml:(e,t)=>[e*t[0],e*t[1],e*t[2],e*t[3]]};UPNG.encode=function encode(e,t,r,i,o,a,s){null==i&&(i=0),null==s&&(s=false);const f=compress(e,t,r,i,[false,false,false,0,s,false]);return compressPNG(f,-1),_main(f,t,r,o,a)},UPNG.encodeLL=function encodeLL(e,t,r,i,o,a,s,f){const l={ctype:0+(1==i?0:2)+(0==o?0:4),depth:a,frames:[]},c=(i+o)*a,u=c*t;for(let i=0;i<e.length;i++)l.frames.push({rect:{x:0,y:0,width:t,height:r},img:new Uint8Array(e[i]),blend:0,dispose:1,bpp:Math.ceil(c/8),bpl:Math.ceil(u/8)});return compressPNG(l,0,true),_main(l,t,r,s,f)},UPNG.encode.compress=compress,UPNG.encode.dither=dither,UPNG.quantize=quantize,UPNG.quantize.getKDtree=getKDtree,UPNG.quantize.getNearest=getNearest;}();const r={toArrayBuffer(e,t){const i=e.width,o=e.height,a=i<<2,s=e.getContext("2d").getImageData(0,0,i,o),f=new Uint32Array(s.data.buffer),l=(32*i+31)/32<<2,c=l*o,u=122+c,h=new ArrayBuffer(u),d=new DataView(h),A=1<<20;let g,p,m,w,v=A,b=0,y=0,E=0;function set16(e){d.setUint16(y,e,true),y+=2;}function set32(e){d.setUint32(y,e,true),y+=4;}function seek(e){y+=e;}set16(19778),set32(u),seek(4),set32(122),set32(108),set32(i),set32(-o>>>0),set16(1),set16(32),set32(3),set32(c),set32(2835),set32(2835),seek(8),set32(16711680),set32(65280),set32(255),set32(4278190080),set32(1466527264),function convert(){for(;b<o&&v>0;){for(w=122+b*l,g=0;g<a;)v--,p=f[E++],m=p>>>24,d.setUint32(w+g,p<<8|m),g+=4;b++;}E<f.length?(v=A,setTimeout(convert,r._dly)):t(h);}();},toBlob(e,t){this.toArrayBuffer(e,(e=>{t(new Blob([e],{type:"image/bmp"}));}));},_dly:9};var i={CHROME:"CHROME",FIREFOX:"FIREFOX",DESKTOP_SAFARI:"DESKTOP_SAFARI",IE:"IE",IOS:"IOS",ETC:"ETC"},o={[i.CHROME]:16384,[i.FIREFOX]:11180,[i.DESKTOP_SAFARI]:16384,[i.IE]:8192,[i.IOS]:4096,[i.ETC]:8192};const a="undefined"!=typeof window,s="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,f=a&&window.cordova&&window.cordova.require&&window.cordova.require("cordova/modulemapper"),CustomFile=(a||s)&&(f&&f.getOriginalSymbol(window,"File")||"undefined"!=typeof File&&File),CustomFileReader=(a||s)&&(f&&f.getOriginalSymbol(window,"FileReader")||"undefined"!=typeof FileReader&&FileReader);function getFilefromDataUrl(e,t,r=Date.now()){return new Promise((i=>{const o=e.split(","),a=o[0].match(/:(.*?);/)[1],s=globalThis.atob(o[1]);let f=s.length;const l=new Uint8Array(f);for(;f--;)l[f]=s.charCodeAt(f);const c=new Blob([l],{type:a});c.name=t,c.lastModified=r,i(c);}))}function getDataUrlFromFile(e){return new Promise(((t,r)=>{const i=new CustomFileReader;i.onload=()=>t(i.result),i.onerror=e=>r(e),i.readAsDataURL(e);}))}function loadImage(e){return new Promise(((t,r)=>{const i=new Image;i.onload=()=>t(i),i.onerror=e=>r(e),i.src=e;}))}function getBrowserName(){if(void 0!==getBrowserName.cachedResult)return getBrowserName.cachedResult;let e=i.ETC;const{userAgent:t}=navigator;return /Chrom(e|ium)/i.test(t)?e=i.CHROME:/iP(ad|od|hone)/i.test(t)&&/WebKit/i.test(t)?e=i.IOS:/Safari/i.test(t)?e=i.DESKTOP_SAFARI:/Firefox/i.test(t)?e=i.FIREFOX:(/MSIE/i.test(t)||true==!!document.documentMode)&&(e=i.IE),getBrowserName.cachedResult=e,getBrowserName.cachedResult}function approximateBelowMaximumCanvasSizeOfBrowser(e,t){const r=getBrowserName(),i=o[r];let a=e,s=t,f=a*s;const l=a>s?s/a:a/s;for(;f>i*i;){const e=(i+a)/2,t=(i+s)/2;e<t?(s=t,a=t*l):(s=e*l,a=e),f=a*s;}return {width:a,height:s}}function getNewCanvasAndCtx(e,t){let r,i;try{if(r=new OffscreenCanvas(e,t),i=r.getContext("2d"),null===i)throw new Error("getContext of OffscreenCanvas returns null")}catch(e){r=document.createElement("canvas"),i=r.getContext("2d");}return r.width=e,r.height=t,[r,i]}function drawImageInCanvas(e,t){const{width:r,height:i}=approximateBelowMaximumCanvasSizeOfBrowser(e.width,e.height),[o,a]=getNewCanvasAndCtx(r,i);return t&&/jpe?g/.test(t)&&(a.fillStyle="white",a.fillRect(0,0,o.width,o.height)),a.drawImage(e,0,0,o.width,o.height),o}function isIOS(){return void 0!==isIOS.cachedResult||(isIOS.cachedResult=["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"undefined"!=typeof document&&"ontouchend"in document),isIOS.cachedResult}function drawFileInCanvas(e,t={}){return new Promise((function(r,o){let a,s;var $Try_2_Post=function(){try{return s=drawImageInCanvas(a,t.fileType||e.type),r([a,s])}catch(e){return o(e)}},$Try_2_Catch=function(t){try{var $Try_3_Catch=function(e){try{throw e}catch(e){return o(e)}};try{let t;return getDataUrlFromFile(e).then((function(e){try{return t=e,loadImage(t).then((function(e){try{return a=e,function(){try{return $Try_2_Post()}catch(e){return o(e)}}()}catch(e){return $Try_3_Catch(e)}}),$Try_3_Catch)}catch(e){return $Try_3_Catch(e)}}),$Try_3_Catch)}catch(e){$Try_3_Catch(e);}}catch(e){return o(e)}};try{if(isIOS()||[i.DESKTOP_SAFARI,i.MOBILE_SAFARI].includes(getBrowserName()))throw new Error("Skip createImageBitmap on IOS and Safari");return createImageBitmap(e).then((function(e){try{return a=e,$Try_2_Post()}catch(e){return $Try_2_Catch()}}),$Try_2_Catch)}catch(e){$Try_2_Catch();}}))}function canvasToFile(e,t,i,o,a=1){return new Promise((function(s,f){let l;if("image/png"===t){let c,u,h;return c=e.getContext("2d"),({data:u}=c.getImageData(0,0,e.width,e.height)),h=UPNG.encode([u.buffer],e.width,e.height,4096*a),l=new Blob([h],{type:t}),l.name=i,l.lastModified=o,$If_4.call(this)}{if("image/bmp"===t)return new Promise((t=>r.toBlob(e,t))).then(function(e){try{return l=e,l.name=i,l.lastModified=o,$If_5.call(this)}catch(e){return f(e)}}.bind(this),f);{if("function"==typeof OffscreenCanvas&&e instanceof OffscreenCanvas)return e.convertToBlob({type:t,quality:a}).then(function(e){try{return l=e,l.name=i,l.lastModified=o,$If_6.call(this)}catch(e){return f(e)}}.bind(this),f);{let d;return d=e.toDataURL(t,a),getFilefromDataUrl(d,i,o).then(function(e){try{return l=e,$If_6.call(this)}catch(e){return f(e)}}.bind(this),f)}function $If_6(){return $If_5.call(this)}}function $If_5(){return $If_4.call(this)}}function $If_4(){return s(l)}}))}function cleanupCanvasMemory(e){e.width=0,e.height=0;}function isAutoOrientationInBrowser(){return new Promise((function(e,t){let i,o,a,s;return void 0!==isAutoOrientationInBrowser.cachedResult?e(isAutoOrientationInBrowser.cachedResult):(getFilefromDataUrl("data:image/jpeg;base64,/9j/4QAiRXhpZgAATU0AKgAAAAgAAQESAAMAAAABAAYAAAAAAAD/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAf/AABEIAAEAAgMBEQACEQEDEQH/xABKAAEAAAAAAAAAAAAAAAAAAAALEAEAAAAAAAAAAAAAAAAAAAAAAQEAAAAAAAAAAAAAAAAAAAAAEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwA/8H//2Q==","test.jpg",Date.now()).then((function(r){try{return i=r,drawFileInCanvas(i).then((function(r){try{return o=r[1],canvasToFile(o,i.type,i.name,i.lastModified).then((function(r){try{return a=r,cleanupCanvasMemory(o),drawFileInCanvas(a).then((function(r){try{return s=r[0],isAutoOrientationInBrowser.cachedResult=1===s.width&&2===s.height,e(isAutoOrientationInBrowser.cachedResult)}catch(e){return t(e)}}),t)}catch(e){return t(e)}}),t)}catch(e){return t(e)}}),t)}catch(e){return t(e)}}),t))}))}function getExifOrientation(e){return new Promise(((t,r)=>{const i=new CustomFileReader;i.onload=e=>{const r=new DataView(e.target.result);if(65496!=r.getUint16(0,false))return t(-2);const i=r.byteLength;let o=2;for(;o<i;){if(r.getUint16(o+2,false)<=8)return t(-1);const e=r.getUint16(o,false);if(o+=2,65505==e){if(1165519206!=r.getUint32(o+=2,false))return t(-1);const e=18761==r.getUint16(o+=6,false);o+=r.getUint32(o+4,e);const i=r.getUint16(o,e);o+=2;for(let a=0;a<i;a++)if(274==r.getUint16(o+12*a,e))return t(r.getUint16(o+12*a+8,e))}else {if(65280!=(65280&e))break;o+=r.getUint16(o,false);}}return t(-1)},i.onerror=e=>r(e),i.readAsArrayBuffer(e);}))}function handleMaxWidthOrHeight(e,t){const{width:r}=e,{height:i}=e,{maxWidthOrHeight:o}=t;let a,s=e;return isFinite(o)&&(r>o||i>o)&&([s,a]=getNewCanvasAndCtx(r,i),r>i?(s.width=o,s.height=i/r*o):(s.width=r/i*o,s.height=o),a.drawImage(e,0,0,s.width,s.height),cleanupCanvasMemory(e)),s}function followExifOrientation(e,t){const{width:r}=e,{height:i}=e,[o,a]=getNewCanvasAndCtx(r,i);switch(t>4&&t<9?(o.width=i,o.height=r):(o.width=r,o.height=i),t){case 2:a.transform(-1,0,0,1,r,0);break;case 3:a.transform(-1,0,0,-1,r,i);break;case 4:a.transform(1,0,0,-1,0,i);break;case 5:a.transform(0,1,1,0,0,0);break;case 6:a.transform(0,1,-1,0,i,0);break;case 7:a.transform(0,-1,-1,0,i,r);break;case 8:a.transform(0,-1,1,0,0,r);}return a.drawImage(e,0,0,r,i),cleanupCanvasMemory(e),o}function compress(e,t,r=0){return new Promise((function(i,o){let a,s,f,l,c,u,h,d,A,g,p,m,w,v,b,y,E,F,_,B;function incProgress(e=5){if(t.signal&&t.signal.aborted)throw t.signal.reason;a+=e,t.onProgress(Math.min(a,100));}function setProgress(e){if(t.signal&&t.signal.aborted)throw t.signal.reason;a=Math.min(Math.max(e,a),100),t.onProgress(a);}return a=r,s=t.maxIteration||10,f=1024*t.maxSizeMB*1024,incProgress(),drawFileInCanvas(e,t).then(function(r){try{return [,l]=r,incProgress(),c=handleMaxWidthOrHeight(l,t),incProgress(),new Promise((function(r,i){var o;if(!(o=t.exifOrientation))return getExifOrientation(e).then(function(e){try{return o=e,$If_2.call(this)}catch(e){return i(e)}}.bind(this),i);function $If_2(){return r(o)}return $If_2.call(this)})).then(function(r){try{return u=r,incProgress(),isAutoOrientationInBrowser().then(function(r){try{return h=r?c:followExifOrientation(c,u),incProgress(),d=t.initialQuality||1,A=t.fileType||e.type,canvasToFile(h,A,e.name,e.lastModified,d).then(function(r){try{{if(g=r,incProgress(),p=g.size>f,m=g.size>e.size,!p&&!m)return setProgress(100),i(g);var a;function $Loop_3(){if(s--&&(b>f||b>w)){let t,r;return t=B?.95*_.width:_.width,r=B?.95*_.height:_.height,[E,F]=getNewCanvasAndCtx(t,r),F.drawImage(_,0,0,t,r),d*="image/png"===A?.85:.95,canvasToFile(E,A,e.name,e.lastModified,d).then((function(e){try{return y=e,cleanupCanvasMemory(_),_=E,b=y.size,setProgress(Math.min(99,Math.floor((v-b)/(v-f)*100))),$Loop_3}catch(e){return o(e)}}),o)}return [1]}return w=e.size,v=g.size,b=v,_=h,B=!t.alwaysKeepResolution&&p,(a=function(e){for(;e;){if(e.then)return void e.then(a,o);try{if(e.pop){if(e.length)return e.pop()?$Loop_3_exit.call(this):e;e=$Loop_3;}else e=e.call(this);}catch(e){return o(e)}}}.bind(this))($Loop_3);function $Loop_3_exit(){return cleanupCanvasMemory(_),cleanupCanvasMemory(E),cleanupCanvasMemory(c),cleanupCanvasMemory(h),cleanupCanvasMemory(l),setProgress(100),i(y)}}}catch(u){return o(u)}}.bind(this),o)}catch(e){return o(e)}}.bind(this),o)}catch(e){return o(e)}}.bind(this),o)}catch(e){return o(e)}}.bind(this),o)}))}const l="\nlet scriptImported = false\nself.addEventListener('message', async (e) => {\n const { file, id, imageCompressionLibUrl, options } = e.data\n options.onProgress = (progress) => self.postMessage({ progress, id })\n try {\n if (!scriptImported) {\n // console.log('[worker] importScripts', imageCompressionLibUrl)\n self.importScripts(imageCompressionLibUrl)\n scriptImported = true\n }\n // console.log('[worker] self', self)\n const compressedFile = await imageCompression(file, options)\n self.postMessage({ file: compressedFile, id })\n } catch (e) {\n // console.error('[worker] error', e)\n self.postMessage({ error: e.message + '\\n' + e.stack, id })\n }\n})\n";let c;function compressOnWebWorker(e,t){return new Promise(((r,i)=>{c||(c=function createWorkerScriptURL(e){const t=[];return t.push(e),URL.createObjectURL(new Blob(t))}(l));const o=new Worker(c);o.addEventListener("message",(function handler(e){if(t.signal&&t.signal.aborted)o.terminate();else if(void 0===e.data.progress){if(e.data.error)return i(new Error(e.data.error)),void o.terminate();r(e.data.file),o.terminate();}else t.onProgress(e.data.progress);})),o.addEventListener("error",i),t.signal&&t.signal.addEventListener("abort",(()=>{i(t.signal.reason),o.terminate();})),o.postMessage({file:e,imageCompressionLibUrl:t.libURL,options:{...t,onProgress:void 0,signal:void 0}});}))}function imageCompression(e,t){return new Promise((function(r,i){let o,a,s,f,l,c;if(o={...t},s=0,({onProgress:f}=o),o.maxSizeMB=o.maxSizeMB||Number.POSITIVE_INFINITY,l="boolean"!=typeof o.useWebWorker||o.useWebWorker,delete o.useWebWorker,o.onProgress=e=>{s=e,"function"==typeof f&&f(s);},!(e instanceof Blob||e instanceof CustomFile))return i(new Error("The file given is not an instance of Blob or File"));if(!/^image/.test(e.type))return i(new Error("The file given is not an image"));if(c="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,!l||"function"!=typeof Worker||c)return compress(e,o).then(function(e){try{return a=e,$If_4.call(this)}catch(e){return i(e)}}.bind(this),i);var u=function(){try{return $If_4.call(this)}catch(e){return i(e)}}.bind(this),$Try_1_Catch=function(t){try{return compress(e,o).then((function(e){try{return a=e,u()}catch(e){return i(e)}}),i)}catch(e){return i(e)}};try{return o.libURL=o.libURL||"https://cdn.jsdelivr.net/npm/browser-image-compression@2.0.2/dist/browser-image-compression.js",compressOnWebWorker(e,o).then((function(e){try{return a=e,u()}catch(e){return $Try_1_Catch()}}),$Try_1_Catch)}catch(e){$Try_1_Catch();}function $If_4(){try{a.name=e.name,a.lastModified=e.lastModified;}catch(e){}try{o.preserveExif&&"image/jpeg"===e.type&&(!o.fileType||o.fileType&&o.fileType===e.type)&&(a=copyExifWithoutOrientation(e,a));}catch(e){}return r(a)}}))}imageCompression.getDataUrlFromFile=getDataUrlFromFile,imageCompression.getFilefromDataUrl=getFilefromDataUrl,imageCompression.loadImage=loadImage,imageCompression.drawImageInCanvas=drawImageInCanvas,imageCompression.drawFileInCanvas=drawFileInCanvas,imageCompression.canvasToFile=canvasToFile,imageCompression.getExifOrientation=getExifOrientation,imageCompression.handleMaxWidthOrHeight=handleMaxWidthOrHeight,imageCompression.followExifOrientation=followExifOrientation,imageCompression.cleanupCanvasMemory=cleanupCanvasMemory,imageCompression.isAutoOrientationInBrowser=isAutoOrientationInBrowser,imageCompression.approximateBelowMaximumCanvasSizeOfBrowser=approximateBelowMaximumCanvasSizeOfBrowser,imageCompression.copyExifWithoutOrientation=copyExifWithoutOrientation,imageCompression.getBrowserName=getBrowserName,imageCompression.version="2.0.2";
2432
+
2433
+ class KritzelImageTool extends KritzelBaseTool {
2434
+ constructor(store) {
2435
+ super(store);
2436
+ this.fileInput = null;
2437
+ this.maxCompressionSize = 300;
2438
+ this.setupFileInput();
2439
+ }
2440
+ onActivate() {
2441
+ this.openFilePicker();
2442
+ }
2443
+ openFilePicker() {
2444
+ if (this._store.isDisabled) {
2445
+ return;
2446
+ }
2447
+ this.fileInput.click();
2448
+ }
2449
+ setupFileInput() {
2450
+ this.fileInput = document.createElement('input');
2451
+ this.fileInput.type = 'file';
2452
+ this.fileInput.accept = 'image/*';
2453
+ this.fileInput.style.display = 'none';
2454
+ this.fileInput.addEventListener('change', this.handleFileSelect.bind(this));
2455
+ this.fileInput.addEventListener('cancel', this.handleCancel.bind(this));
2456
+ document.body.appendChild(this.fileInput);
2457
+ }
2458
+ handleFileSelect(event) {
2459
+ const input = event.target;
2460
+ if (input.files && input.files[0]) {
2461
+ const file = input.files[0];
2462
+ imageCompression(file, {
2463
+ maxWidthOrHeight: this.maxCompressionSize,
2464
+ })
2465
+ .then(compressedFile => {
2466
+ this.readFile(compressedFile);
2467
+ })
2468
+ .catch(error => {
2469
+ console.error('Error during image compression or processing:', error);
2470
+ this.handleCancel();
2471
+ });
2472
+ }
2473
+ else {
2474
+ console.info('File selection cancelled by user.');
2475
+ this.handleCancel();
2476
+ }
2477
+ if (input) {
2478
+ input.value = '';
2479
+ }
2480
+ }
2481
+ readFile(file) {
2482
+ const reader = new FileReader();
2483
+ reader.onload = e => {
2484
+ var _a;
2485
+ const img = new Image();
2486
+ img.src = (_a = e.target) === null || _a === void 0 ? void 0 : _a.result;
2487
+ img.onload = () => this.createKritzelImage(img);
2488
+ };
2489
+ reader.readAsDataURL(file);
2490
+ }
2491
+ createKritzelImage(img) {
2492
+ const image = KritzelImage.create(this._store);
2493
+ const { scaledWidth, scaledHeight } = image.calculateScaledDimensions(img);
2494
+ image.src = img.src;
2495
+ image.width = scaledWidth;
2496
+ image.height = scaledHeight;
2497
+ image.zIndex = this._store.currentZIndex;
2498
+ image.centerInViewport();
2499
+ this.addImageToStore(image);
2500
+ return image;
2501
+ }
2502
+ addImageToStore(image) {
2503
+ const selectionGroup = KritzelSelectionGroup.create(this._store);
2504
+ selectionGroup.addOrRemove(image);
2505
+ selectionGroup.isSelected = true;
2506
+ const addImageCommand = new AddObjectCommand(this._store, this, image);
2507
+ const addSelectionGroupCommand = new AddSelectionGroupCommand(this._store, this, selectionGroup);
2508
+ this._store.history.executeCommand(new BatchCommand(this._store, this, [addImageCommand, addSelectionGroupCommand]));
2509
+ this._store.setState('activeTool', KritzelToolRegistry.getTool('selection'));
2510
+ }
2511
+ handleCancel() {
2512
+ this._store.setState('activeTool', KritzelToolRegistry.getTool('selection'));
2513
+ }
2514
+ }
2515
+
2516
+ const DEFAULT_BRUSH_CONFIG = {
2517
+ type: 'pen',
2518
+ color: '#000000',
2519
+ size: 16,
2520
+ palettes: {
2521
+ pen: [
2522
+ '#000000',
2523
+ '#ff5252',
2524
+ '#ffbc00',
2525
+ '#00c853',
2526
+ '#0000FF',
2527
+ '#d500f9',
2528
+ '#fafafa',
2529
+ '#a52714',
2530
+ '#ee8100',
2531
+ '#558b2f',
2532
+ '#01579b',
2533
+ '#8e24aa',
2534
+ '#90a4ae',
2535
+ '#ff4081',
2536
+ '#ff6e40',
2537
+ '#aeea00',
2538
+ '#304ffe',
2539
+ '#7c4dff',
2540
+ '#cfd8dc',
2541
+ '#f8bbd0',
2542
+ '#ffccbc',
2543
+ '#f0f4c3',
2544
+ '#9fa8da',
2545
+ '#d1c4e9',
2546
+ ],
2547
+ highlighter: [
2548
+ '#0000006e',
2549
+ '#ff52526e',
2550
+ '#ffbb006e',
2551
+ '#00c8536e',
2552
+ '#0000FF6e',
2553
+ '#d500f96e',
2554
+ '#fafafa6e',
2555
+ '#a527146e',
2556
+ '#ee81006e',
2557
+ '#558b2f6e',
2558
+ '#01579b6e',
2559
+ '#8e24aa6e',
2560
+ '#90a4ae6e',
2561
+ '#ff40816e',
2562
+ '#ff6e406e',
2563
+ '#aeea006e',
2564
+ '#304ffe6e',
2565
+ '#7c4dff6e',
2566
+ '#cfd8dc6e',
2567
+ '#f8bbd06e',
2568
+ '#ffccbc6e',
2569
+ '#f0f4c36e',
2570
+ '#9fa8da6e',
2571
+ '#d1c4e96e',
2572
+ ],
2573
+ },
2574
+ };
2575
+
2576
+ const DEFAULT_TEXT_CONFIG = {
2577
+ color: '#000000',
2578
+ size: 8,
2579
+ fontFamily: 'Arial',
2580
+ palette: [
2581
+ '#000000',
2582
+ '#ff5252',
2583
+ '#ffbc00',
2584
+ '#00c853',
2585
+ '#0000FF',
2586
+ '#d500f9',
2587
+ '#fafafa',
2588
+ '#a52714',
2589
+ '#ee8100',
2590
+ '#558b2f',
2591
+ '#01579b',
2592
+ '#8e24aa',
2593
+ '#90a4ae',
2594
+ '#ff4081',
2595
+ '#ff6e40',
2596
+ '#aeea00',
2597
+ '#304ffe',
2598
+ '#7c4dff',
2599
+ '#cfd8dc',
2600
+ '#f8bbd0',
2601
+ '#ffccbc',
2602
+ '#f0f4c3',
2603
+ '#9fa8da',
2604
+ '#d1c4e9',
2605
+ ],
2606
+ };
2607
+
2608
+ export { AddObjectCommand as A, BatchCommand as B, DEFAULT_BRUSH_CONFIG as D, KritzelBrushTool as K, ObjectHelper as O, RemoveSelectionGroupCommand as R, UpdateObjectCommand as U, KritzelTextTool as a, KritzelMouseButton as b, KritzelSelectionTool as c, KritzelEraserTool as d, DEFAULT_TEXT_CONFIG as e, KritzelImageTool as f, KritzelEventHelper as g, KritzelBaseCommand as h, KritzelSelectionGroup as i, KrtizelSelectionBox as j, KritzelReviver as k, RemoveObjectCommand as l, AddSelectionGroupCommand as m, KritzelToolRegistry as n, KritzelBaseHandler as o, KritzelBaseTool as p, KritzelKeyboardHelper as q, KritzelText as r, KritzelPath as s, KritzelImage as t };
2609
+ //# sourceMappingURL=index-J4NpPimy.js.map
2610
+
2611
+ //# sourceMappingURL=index-J4NpPimy.js.map