@jacktea/pdf-viewer-component 0.1.5

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 (285) hide show
  1. package/README.md +45 -0
  2. package/dist/annotations/annotation-layer.d.ts +40 -0
  3. package/dist/annotations/annotation-layer.d.ts.map +1 -0
  4. package/dist/annotations/annotation-layer.test.d.ts +2 -0
  5. package/dist/annotations/annotation-layer.test.d.ts.map +1 -0
  6. package/dist/annotations/interaction/annotation-interaction-controller.d.ts +59 -0
  7. package/dist/annotations/interaction/annotation-interaction-controller.d.ts.map +1 -0
  8. package/dist/annotations/interaction/tool-utils.d.ts +11 -0
  9. package/dist/annotations/interaction/tool-utils.d.ts.map +1 -0
  10. package/dist/annotations/rendering/annotation-svg-renderer.d.ts +28 -0
  11. package/dist/annotations/rendering/annotation-svg-renderer.d.ts.map +1 -0
  12. package/dist/annotations/rendering/annotation-svg-renderer.test.d.ts +2 -0
  13. package/dist/annotations/rendering/annotation-svg-renderer.test.d.ts.map +1 -0
  14. package/dist/annotations/rendering/geometry-utils.d.ts +6 -0
  15. package/dist/annotations/rendering/geometry-utils.d.ts.map +1 -0
  16. package/dist/annotations/rendering/hit-testing.d.ts +10 -0
  17. package/dist/annotations/rendering/hit-testing.d.ts.map +1 -0
  18. package/dist/annotations/rendering/index.d.ts +3 -0
  19. package/dist/annotations/rendering/index.d.ts.map +1 -0
  20. package/dist/annotations/settings.d.ts +46 -0
  21. package/dist/annotations/settings.d.ts.map +1 -0
  22. package/dist/annotations/types.d.ts +3 -0
  23. package/dist/annotations/types.d.ts.map +1 -0
  24. package/dist/annotations/ui/annotation-metadata.d.ts +12 -0
  25. package/dist/annotations/ui/annotation-metadata.d.ts.map +1 -0
  26. package/dist/annotations/ui/appearance-editor.d.ts +16 -0
  27. package/dist/annotations/ui/appearance-editor.d.ts.map +1 -0
  28. package/dist/annotations/ui/arrow-style-editor.d.ts +17 -0
  29. package/dist/annotations/ui/arrow-style-editor.d.ts.map +1 -0
  30. package/dist/annotations/ui/header-card.d.ts +4 -0
  31. package/dist/annotations/ui/header-card.d.ts.map +1 -0
  32. package/dist/annotations/ui/index.d.ts +8 -0
  33. package/dist/annotations/ui/index.d.ts.map +1 -0
  34. package/dist/annotations/ui/popup-toolbar.d.ts +53 -0
  35. package/dist/annotations/ui/popup-toolbar.d.ts.map +1 -0
  36. package/dist/annotations/ui/popup-toolbar.test.d.ts +2 -0
  37. package/dist/annotations/ui/popup-toolbar.test.d.ts.map +1 -0
  38. package/dist/annotations/ui/stroke-style-editor.d.ts +16 -0
  39. package/dist/annotations/ui/stroke-style-editor.d.ts.map +1 -0
  40. package/dist/annotations/ui/style-pickers.d.ts +82 -0
  41. package/dist/annotations/ui/style-pickers.d.ts.map +1 -0
  42. package/dist/annotations/ui/text-style-editor.d.ts +22 -0
  43. package/dist/annotations/ui/text-style-editor.d.ts.map +1 -0
  44. package/dist/annotations/ui/tool-selector.d.ts +8 -0
  45. package/dist/annotations/ui/tool-selector.d.ts.map +1 -0
  46. package/dist/components/popover.d.ts +25 -0
  47. package/dist/components/popover.d.ts.map +1 -0
  48. package/dist/components/tooltip.d.ts +28 -0
  49. package/dist/components/tooltip.d.ts.map +1 -0
  50. package/dist/coordinators/annotation-coordinator.d.ts +281 -0
  51. package/dist/coordinators/annotation-coordinator.d.ts.map +1 -0
  52. package/dist/coordinators/annotation-coordinator.test.d.ts +2 -0
  53. package/dist/coordinators/annotation-coordinator.test.d.ts.map +1 -0
  54. package/dist/coordinators/event-dispatcher.d.ts +93 -0
  55. package/dist/coordinators/event-dispatcher.d.ts.map +1 -0
  56. package/dist/coordinators/index.d.ts +20 -0
  57. package/dist/coordinators/index.d.ts.map +1 -0
  58. package/dist/coordinators/mode-coordinator.d.ts +74 -0
  59. package/dist/coordinators/mode-coordinator.d.ts.map +1 -0
  60. package/dist/coordinators/panel-coordinator-v2.d.ts +138 -0
  61. package/dist/coordinators/panel-coordinator-v2.d.ts.map +1 -0
  62. package/dist/coordinators/state-sync-manager.d.ts +37 -0
  63. package/dist/coordinators/state-sync-manager.d.ts.map +1 -0
  64. package/dist/coordinators/state-tracker.d.ts +48 -0
  65. package/dist/coordinators/state-tracker.d.ts.map +1 -0
  66. package/dist/coordinators/state-types.d.ts +56 -0
  67. package/dist/coordinators/state-types.d.ts.map +1 -0
  68. package/dist/coordinators/ui-initializer.d.ts +130 -0
  69. package/dist/coordinators/ui-initializer.d.ts.map +1 -0
  70. package/dist/di/container.d.ts +77 -0
  71. package/dist/di/container.d.ts.map +1 -0
  72. package/dist/di/container.test.d.ts +5 -0
  73. package/dist/di/container.test.d.ts.map +1 -0
  74. package/dist/di/index.d.ts +11 -0
  75. package/dist/di/index.d.ts.map +1 -0
  76. package/dist/di/tokens.d.ts +88 -0
  77. package/dist/di/tokens.d.ts.map +1 -0
  78. package/dist/domains/annotation/index.d.ts +9 -0
  79. package/dist/domains/annotation/index.d.ts.map +1 -0
  80. package/dist/domains/annotation/styles.d.ts +23 -0
  81. package/dist/domains/annotation/styles.d.ts.map +1 -0
  82. package/dist/domains/annotation/sync.d.ts +68 -0
  83. package/dist/domains/annotation/sync.d.ts.map +1 -0
  84. package/dist/domains/annotation/sync.test.d.ts +2 -0
  85. package/dist/domains/annotation/sync.test.d.ts.map +1 -0
  86. package/dist/domains/export/index.d.ts +10 -0
  87. package/dist/domains/export/index.d.ts.map +1 -0
  88. package/dist/domains/export/metadata.d.ts +31 -0
  89. package/dist/domains/export/metadata.d.ts.map +1 -0
  90. package/dist/domains/export/metadata.test.d.ts +2 -0
  91. package/dist/domains/export/metadata.test.d.ts.map +1 -0
  92. package/dist/domains/export/pdf-export.d.ts +70 -0
  93. package/dist/domains/export/pdf-export.d.ts.map +1 -0
  94. package/dist/domains/export/pdf-export.test.d.ts +2 -0
  95. package/dist/domains/export/pdf-export.test.d.ts.map +1 -0
  96. package/dist/domains/export/watermark.d.ts +24 -0
  97. package/dist/domains/export/watermark.d.ts.map +1 -0
  98. package/dist/domains/export/watermark.test.d.ts +2 -0
  99. package/dist/domains/export/watermark.test.d.ts.map +1 -0
  100. package/dist/domains/index.d.ts +18 -0
  101. package/dist/domains/index.d.ts.map +1 -0
  102. package/dist/domains/ui/dialogs.d.ts +49 -0
  103. package/dist/domains/ui/dialogs.d.ts.map +1 -0
  104. package/dist/domains/ui/dialogs.test.d.ts +2 -0
  105. package/dist/domains/ui/dialogs.test.d.ts.map +1 -0
  106. package/dist/domains/ui/editors.d.ts +120 -0
  107. package/dist/domains/ui/editors.d.ts.map +1 -0
  108. package/dist/domains/ui/index.d.ts +9 -0
  109. package/dist/domains/ui/index.d.ts.map +1 -0
  110. package/dist/domains/viewer/actions.d.ts +90 -0
  111. package/dist/domains/viewer/actions.d.ts.map +1 -0
  112. package/dist/domains/viewer/actions.test.d.ts +2 -0
  113. package/dist/domains/viewer/actions.test.d.ts.map +1 -0
  114. package/dist/domains/viewer/index.d.ts +10 -0
  115. package/dist/domains/viewer/index.d.ts.map +1 -0
  116. package/dist/domains/viewer/persistence.d.ts +122 -0
  117. package/dist/domains/viewer/persistence.d.ts.map +1 -0
  118. package/dist/domains/viewer/persistence.test.d.ts +2 -0
  119. package/dist/domains/viewer/persistence.test.d.ts.map +1 -0
  120. package/dist/domains/viewer/types.d.ts +42 -0
  121. package/dist/domains/viewer/types.d.ts.map +1 -0
  122. package/dist/i18n/index.d.ts +77 -0
  123. package/dist/i18n/index.d.ts.map +1 -0
  124. package/dist/i18n/locales/en.d.ts +3 -0
  125. package/dist/i18n/locales/en.d.ts.map +1 -0
  126. package/dist/i18n/locales/zh-CN.d.ts +3 -0
  127. package/dist/i18n/locales/zh-CN.d.ts.map +1 -0
  128. package/dist/i18n/types.d.ts +231 -0
  129. package/dist/i18n/types.d.ts.map +1 -0
  130. package/dist/icons/icon-registry.d.ts +69 -0
  131. package/dist/icons/icon-registry.d.ts.map +1 -0
  132. package/dist/icons/toolbar-icons.d.ts +38 -0
  133. package/dist/icons/toolbar-icons.d.ts.map +1 -0
  134. package/dist/index.d.ts +14 -0
  135. package/dist/index.d.ts.map +1 -0
  136. package/dist/index.es.js +1 -0
  137. package/dist/layers/canvas-layer.d.ts +44 -0
  138. package/dist/layers/canvas-layer.d.ts.map +1 -0
  139. package/dist/layers/canvas-layer.test.d.ts +2 -0
  140. package/dist/layers/canvas-layer.test.d.ts.map +1 -0
  141. package/dist/layers/canvas-utils.d.ts +80 -0
  142. package/dist/layers/canvas-utils.d.ts.map +1 -0
  143. package/dist/layers/template-layer.d.ts +41 -0
  144. package/dist/layers/template-layer.d.ts.map +1 -0
  145. package/dist/panels/annotation-comments-panel.d.ts +80 -0
  146. package/dist/panels/annotation-comments-panel.d.ts.map +1 -0
  147. package/dist/panels/annotation-settings-panel.d.ts +60 -0
  148. package/dist/panels/annotation-settings-panel.d.ts.map +1 -0
  149. package/dist/panels/annotation-summary-panel.d.ts +127 -0
  150. package/dist/panels/annotation-summary-panel.d.ts.map +1 -0
  151. package/dist/panels/annotation-summary-panel.test.d.ts +2 -0
  152. package/dist/panels/annotation-summary-panel.test.d.ts.map +1 -0
  153. package/dist/panels/comment-input.d.ts +34 -0
  154. package/dist/panels/comment-input.d.ts.map +1 -0
  155. package/dist/panels/comment-input.test.d.ts +2 -0
  156. package/dist/panels/comment-input.test.d.ts.map +1 -0
  157. package/dist/panels/container-panel.d.ts +136 -0
  158. package/dist/panels/container-panel.d.ts.map +1 -0
  159. package/dist/panels/content-panel.d.ts +95 -0
  160. package/dist/panels/content-panel.d.ts.map +1 -0
  161. package/dist/panels/document-properties-panel.d.ts +54 -0
  162. package/dist/panels/document-properties-panel.d.ts.map +1 -0
  163. package/dist/panels/index.d.ts +26 -0
  164. package/dist/panels/index.d.ts.map +1 -0
  165. package/dist/panels/outline-panel.d.ts +32 -0
  166. package/dist/panels/outline-panel.d.ts.map +1 -0
  167. package/dist/panels/panel-factory.d.ts +37 -0
  168. package/dist/panels/panel-factory.d.ts.map +1 -0
  169. package/dist/panels/panel-integration-example.d.ts +49 -0
  170. package/dist/panels/panel-integration-example.d.ts.map +1 -0
  171. package/dist/panels/panel-manager.d.ts +98 -0
  172. package/dist/panels/panel-manager.d.ts.map +1 -0
  173. package/dist/panels/template-field-panel.d.ts +27 -0
  174. package/dist/panels/template-field-panel.d.ts.map +1 -0
  175. package/dist/panels/template-property-panel.d.ts +30 -0
  176. package/dist/panels/template-property-panel.d.ts.map +1 -0
  177. package/dist/panels/template-ui-helpers.d.ts +32 -0
  178. package/dist/panels/template-ui-helpers.d.ts.map +1 -0
  179. package/dist/panels/thumbnail-panel.d.ts +49 -0
  180. package/dist/panels/thumbnail-panel.d.ts.map +1 -0
  181. package/dist/pdfjs.d.ts +15 -0
  182. package/dist/pdfjs.d.ts.map +1 -0
  183. package/dist/plugins/examples/custom-tool-plugin.d.ts +12 -0
  184. package/dist/plugins/examples/custom-tool-plugin.d.ts.map +1 -0
  185. package/dist/plugins/index.d.ts +9 -0
  186. package/dist/plugins/index.d.ts.map +1 -0
  187. package/dist/plugins/plugin-manager.d.ts +108 -0
  188. package/dist/plugins/plugin-manager.d.ts.map +1 -0
  189. package/dist/plugins/plugin-manager.test.d.ts +5 -0
  190. package/dist/plugins/plugin-manager.test.d.ts.map +1 -0
  191. package/dist/plugins/types.d.ts +167 -0
  192. package/dist/plugins/types.d.ts.map +1 -0
  193. package/dist/render/page-renderer.d.ts +16 -0
  194. package/dist/render/page-renderer.d.ts.map +1 -0
  195. package/dist/render/scale.d.ts +3 -0
  196. package/dist/render/scale.d.ts.map +1 -0
  197. package/dist/render/text-layer.d.ts +4 -0
  198. package/dist/render/text-layer.d.ts.map +1 -0
  199. package/dist/render/thumb-renderer.d.ts +3 -0
  200. package/dist/render/thumb-renderer.d.ts.map +1 -0
  201. package/dist/toolbar/button-registry.d.ts +56 -0
  202. package/dist/toolbar/button-registry.d.ts.map +1 -0
  203. package/dist/toolbar/toolbar-helpers.d.ts +168 -0
  204. package/dist/toolbar/toolbar-helpers.d.ts.map +1 -0
  205. package/dist/toolbar/toolbar-icons.d.ts +3 -0
  206. package/dist/toolbar/toolbar-icons.d.ts.map +1 -0
  207. package/dist/toolbar/toolbar.d.ts +116 -0
  208. package/dist/toolbar/toolbar.d.ts.map +1 -0
  209. package/dist/ui/color-picker.d.ts +72 -0
  210. package/dist/ui/color-picker.d.ts.map +1 -0
  211. package/dist/ui/slider.d.ts +25 -0
  212. package/dist/ui/slider.d.ts.map +1 -0
  213. package/dist/utils/annotation-utils.d.ts +13 -0
  214. package/dist/utils/annotation-utils.d.ts.map +1 -0
  215. package/dist/utils/color-utils.d.ts +42 -0
  216. package/dist/utils/color-utils.d.ts.map +1 -0
  217. package/dist/utils/confirm-dialog.d.ts +10 -0
  218. package/dist/utils/confirm-dialog.d.ts.map +1 -0
  219. package/dist/utils/deep-equal.d.ts +2 -0
  220. package/dist/utils/deep-equal.d.ts.map +1 -0
  221. package/dist/utils/deep-equal.test.d.ts +2 -0
  222. package/dist/utils/deep-equal.test.d.ts.map +1 -0
  223. package/dist/utils/document-utils.d.ts +63 -0
  224. package/dist/utils/document-utils.d.ts.map +1 -0
  225. package/dist/utils/id-generator.d.ts +41 -0
  226. package/dist/utils/id-generator.d.ts.map +1 -0
  227. package/dist/utils/image-preview.d.ts +7 -0
  228. package/dist/utils/image-preview.d.ts.map +1 -0
  229. package/dist/utils/timestamp.d.ts +3 -0
  230. package/dist/utils/timestamp.d.ts.map +1 -0
  231. package/dist/viewer/collaboration-runtime.d.ts +29 -0
  232. package/dist/viewer/collaboration-runtime.d.ts.map +1 -0
  233. package/dist/viewer/config.d.ts +481 -0
  234. package/dist/viewer/config.d.ts.map +1 -0
  235. package/dist/viewer/document-load-pipeline.d.ts +43 -0
  236. package/dist/viewer/document-load-pipeline.d.ts.map +1 -0
  237. package/dist/viewer/document-load-pipeline.test.d.ts +2 -0
  238. package/dist/viewer/document-load-pipeline.test.d.ts.map +1 -0
  239. package/dist/viewer/element.d.ts +174 -0
  240. package/dist/viewer/element.d.ts.map +1 -0
  241. package/dist/viewer/element.test.d.ts +2 -0
  242. package/dist/viewer/element.test.d.ts.map +1 -0
  243. package/dist/viewer/events.d.ts +212 -0
  244. package/dist/viewer/events.d.ts.map +1 -0
  245. package/dist/viewer/export-orchestrator.d.ts +9 -0
  246. package/dist/viewer/export-orchestrator.d.ts.map +1 -0
  247. package/dist/viewer/headless.d.ts +108 -0
  248. package/dist/viewer/headless.d.ts.map +1 -0
  249. package/dist/viewer/internal-event-bindings.d.ts +26 -0
  250. package/dist/viewer/internal-event-bindings.d.ts.map +1 -0
  251. package/dist/viewer/internal-event-bindings.test.d.ts +2 -0
  252. package/dist/viewer/internal-event-bindings.test.d.ts.map +1 -0
  253. package/dist/viewer/modal.d.ts +22 -0
  254. package/dist/viewer/modal.d.ts.map +1 -0
  255. package/dist/viewer/page-indicator.d.ts +56 -0
  256. package/dist/viewer/page-indicator.d.ts.map +1 -0
  257. package/dist/viewer/pdfjs-resources.d.ts +12 -0
  258. package/dist/viewer/pdfjs-resources.d.ts.map +1 -0
  259. package/dist/viewer/server-writeback.d.ts +23 -0
  260. package/dist/viewer/server-writeback.d.ts.map +1 -0
  261. package/dist/viewer/server-writeback.test.d.ts +2 -0
  262. package/dist/viewer/server-writeback.test.d.ts.map +1 -0
  263. package/dist/viewer/ui-handler-helpers.d.ts +19 -0
  264. package/dist/viewer/ui-handler-helpers.d.ts.map +1 -0
  265. package/dist/viewer/ui-handler-helpers.test.d.ts +2 -0
  266. package/dist/viewer/ui-handler-helpers.test.d.ts.map +1 -0
  267. package/dist/viewer/viewer-header.d.ts +67 -0
  268. package/dist/viewer/viewer-header.d.ts.map +1 -0
  269. package/dist/virtual/page-position-cache.d.ts +24 -0
  270. package/dist/virtual/page-position-cache.d.ts.map +1 -0
  271. package/dist/virtual/render-pool.d.ts +23 -0
  272. package/dist/virtual/render-pool.d.ts.map +1 -0
  273. package/dist/virtual/render-pool.test.d.ts +2 -0
  274. package/dist/virtual/render-pool.test.d.ts.map +1 -0
  275. package/dist/virtual/types.d.ts +16 -0
  276. package/dist/virtual/types.d.ts.map +1 -0
  277. package/dist/virtual/virtual-page-manager.d.ts +54 -0
  278. package/dist/virtual/virtual-page-manager.d.ts.map +1 -0
  279. package/dist/watermark/watermark-layer.d.ts +58 -0
  280. package/dist/watermark/watermark-layer.d.ts.map +1 -0
  281. package/dist/watermark/watermark-settings.d.ts +79 -0
  282. package/dist/watermark/watermark-settings.d.ts.map +1 -0
  283. package/dist/watermark/watermark-ui-helpers.d.ts +78 -0
  284. package/dist/watermark/watermark-ui-helpers.d.ts.map +1 -0
  285. package/package.json +29 -0
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Toolbar icon definitions
3
+ * Extracted from toolbar.ts for better modularity
4
+ */
5
+ export declare const toolbarIcons: {
6
+ readonly open: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M3 7h6l2 2h10v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linejoin=\"round\"/>\n <path d=\"M3 7a2 2 0 0 1 2-2h4l2 2\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
7
+ readonly panel: "\n <svg viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M128 192a64 64 0 0 1 64-64h640a64 64 0 0 1 64 64v640a64 64 0 0 1-64 64H192a64 64 0 0 1-64-64V192z m512 0v640h192V192h-192zM576 192H192v640h384V192z\" fill=\"currentColor\"></path><path d=\"M304 512L448 401.152v221.696L304 512z\" fill=\"currentColor\"></path></svg>\n ";
8
+ readonly cloud: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" version=\"1.1\" p-id=\"2920\" width=\"32\" height=\"32\"><path d=\"M811.4 418.7C765.6 297.9 648.9 212 512.2 212S258.8 297.8 213 418.6C127.3 441.1 64 519.1 64 612c0 110.5 89.5 200 199.9 200h496.2C870.5 812 960 722.5 960 612c0-92.7-63.1-170.7-148.6-193.3z m36.3 281c-23.4 23.4-54.5 36.3-87.6 36.3H263.9c-33.1 0-64.2-12.9-87.6-36.3-23.4-23.4-36.3-54.6-36.3-87.7 0-28 9.1-54.3 26.2-76.3 16.7-21.3 40.2-36.8 66.1-43.7l37.9-9.9 13.9-36.6c8.6-22.8 20.6-44.1 35.7-63.4 14.9-19.2 32.6-35.9 52.4-49.9 41.1-28.9 89.5-44.2 140-44.2s98.9 15.3 140 44.2c19.9 14 37.5 30.8 52.4 49.9 15.1 19.3 27.1 40.7 35.7 63.4l13.8 36.5 37.8 10c54.3 14.5 92.1 63.8 92.1 120 0 33.1-12.9 64.3-36.3 87.7z\" fill=\"currentColor\"></path></svg>\n ";
9
+ readonly zoomIn: "\n <svg viewBox=\"0 0 1024 1024\" width=\"32\" height=\"32\"><path d=\"M476.672 761.28a284.672 284.672 0 1 1 0-569.28 284.672 284.672 0 0 1 0 569.28z m268.16-61.76a348.672 348.672 0 1 0-45.248 45.248l151.232 151.296 45.248-45.248-151.296-151.296zM448 512v96h64V512h96V448H512V352H448V448H352v64H448z\" fill=\"currentColor\"></path></svg>\n ";
10
+ readonly zoomOut: "\n <svg viewBox=\"0 0 1024 1024\" width=\"32\" height=\"32\"><path d=\"M476.672 761.28a284.672 284.672 0 1 0 0-569.28 284.672 284.672 0 0 0 0 569.28z m268.16-61.76L896 850.816l-45.248 45.248-151.296-151.296a348.672 348.672 0 1 1 45.248-45.248zM608 512V448h-256v64h256z\" fill=\"currentColor\"></path></svg>\n ";
11
+ readonly rotate: "\n <svg viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M854.528 420.032a64 64 0 0 1 64 64v320l-0.256 6.592c-3.072 30.08-27.072 54.08-57.152 57.088l-6.592 0.32h-448l-6.528-0.32a64 64 0 0 1-57.408-63.68v-320a64 64 0 0 1 64-64h448z m-448 384h448v-320h-448v320z\" fill=\"currentColor\"></path><path d=\"M464.064 56.768a6.4 6.4 0 0 1 10.112-5.12l174.72 125.952a6.4 6.4 0 0 1 0 10.432l-174.72 126.016a6.4 6.4 0 0 1-10.112-5.184v-93.44a346.304 346.304 0 0 0-326.336 345.664h-64a410.368 410.368 0 0 1 390.336-409.792V56.768z\" fill=\"currentColor\"></path></svg>\n ";
12
+ readonly fitWidth: "\n <svg viewBox=\"0 0 1024 1024\" width=\"32\" height=\"32\"><path d=\"M836.032 840V184c0-4.416 3.584-8 7.936-8h60.032c4.416 0 8 3.584 8 8v656a8 8 0 0 1-8 8h-60.032a8 8 0 0 1-7.936-8z m-724.032 0V184c0-4.416 3.584-8 8-8h60.032c4.352 0 7.936 3.584 7.936 8v656a8 8 0 0 1-7.936 8h-60.032a8 8 0 0 1-8-8z m265.984-229.184c0 5.952-7.04 9.408-11.712 5.696L238.72 515.712a7.168 7.168 0 0 1 0-11.328l127.552-100.8a7.232 7.232 0 0 1 11.712 5.76v66.688h268.032v-62.848c0-6.016 7.04-9.408 11.712-5.696l127.488 100.8a7.168 7.168 0 0 1 0 11.328l-127.488 100.8a7.232 7.232 0 0 1-11.712-5.76V548.096H377.984v62.72z\" fill=\"currentColor\"></path></svg>\n ";
13
+ readonly fitPage: "\n <svg viewBox=\"0 0 1024 1024\" width=\"32\" height=\"32\"><path d=\"M480 736h-192v-64h192v64zM608 544h-320v-64h320v64z\" fill=\"currentColor\"></path><path d=\"M641.344 53.44a31.872 31.872 0 0 1 21.568 9.6l212.48 212.416c6.144 5.76 10.048 14.08 10.048 23.168V896c0 41.216-33.472 74.624-74.688 74.624H213.44A74.688 74.688 0 0 1 138.752 896V128c0-41.216 33.472-74.688 74.688-74.688h426.624l1.28 0.128z m-427.904 63.872A10.688 10.688 0 0 0 202.752 128v768c0 5.888 4.8 10.624 10.688 10.624h597.312a10.688 10.688 0 0 0 10.688-10.624V330.624h-181.376a32 32 0 0 1-32-32V117.312H213.44z m458.624 149.312h104l-104-104v104z\" fill=\"currentColor\"></path></svg>\n ";
14
+ readonly fitActual: "\n <svg viewBox=\"0 0 1024 1024\" version=\"1.1\" width=\"32\" height=\"32\"><path d=\"M191.744 824.64c0 3.968 3.2 7.168 7.104 7.168h156.48v64H198.848a71.104 71.104 0 0 1-71.04-71.168v-156.416h64v156.416zM895.808 824.64c0 39.296-31.872 71.104-71.104 71.168H668.16v-64h156.48c3.904 0 7.104-3.2 7.104-7.168v-156.416h64v156.416zM355.328 191.808H198.848a7.104 7.104 0 0 0-7.04 7.04v156.48h-64V198.912c0-39.296 31.808-71.104 71.04-71.104h156.48v64zM824.704 127.808c39.232 0 71.104 31.808 71.104 71.04v156.48h-64V198.912a7.168 7.168 0 0 0-7.104-7.104H668.16v-64h156.48zM560.704 642.432h-64v-64h64v64zM560.704 482.432h-64v-64h64v64zM403.648 711.808h-57.6V401.28l-57.536 36.48-15.36-24.32-15.488-24.32 145.984-92.544v415.232zM749.888 711.808h-57.6V401.28l-57.472 36.48-15.488-24.32-15.36-24.32 145.92-92.544v415.232z\" fill=\"currentColor\"></path></svg>\n ";
15
+ readonly undo: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" version=\"1.1\" width=\"32\" height=\"32\"><path d=\"M448 388.266667c106.666667 8.533333 192 42.666667 256 102.4 68.266667 64 110.933333 149.333333 128 256h-8.533333c0 4.266667 0 8.533333-4.266667 8.533333s-4.266667 0-8.533333-4.266667c-55.466667-64-115.2-110.933333-174.933334-132.266666-55.466667-21.333333-119.466667-29.866667-187.733333-21.333334v102.4c0 12.8-8.533333 21.333333-21.333333 21.333334-4.266667 0-8.533333 0-12.8-4.266667l-256-213.333333c-8.533333-8.533333-8.533333-21.333333-4.266667-29.866667l4.266667-4.266667 256-213.333333c8.533333-8.533333 21.333333-4.266667 29.866666 4.266667 4.266667 4.266667 4.266667 8.533333 4.266667 12.8v115.2z\" fill=\"#8a8a8a\" p-id=\"8636\"></path></svg>\n ";
16
+ readonly redo: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" version=\"1.1\" width=\"32\" height=\"32\"><path d=\"M576 388.266667c-106.666667 8.533333-192 42.666667-256 102.4-68.266667 64-110.933333 149.333333-128 256h8.533333c0 4.266667 0 8.533333 4.266667 8.533333s4.266667 0 8.533333-4.266667c55.466667-64 115.2-110.933333 174.933334-132.266666 55.466667-21.333333 119.466667-29.866667 187.733333-21.333334v102.4c0 12.8 8.533333 21.333333 21.333333 21.333334 4.266667 0 8.533333 0 12.8-4.266667l256-213.333333c8.533333-8.533333 8.533333-21.333333 4.266667-29.866667l-4.266667-4.266667-256-213.333333c-8.533333-8.533333-21.333333-4.266667-29.866666 4.266667-4.266667 4.266667-4.266667 8.533333-4.266667 12.8v115.2z\" fill=\"#8a8a8a\" p-id=\"8934\"></path></svg>\n ";
17
+ readonly select: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" version=\"1.1\" width=\"32\" height=\"32\"><path d=\"M852.096 385.664L132.608 132.864l252.8 719.488 144.064-201.728 246.4 246.336 120.64-120.704-246.4-246.4 201.984-144.192z\" p-id=\"11591\" fill=\"currentColor\"></path></svg>\n ";
18
+ readonly cursor: "\n <svg viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M152.32 101.888a32 32 0 0 1 33.664-1.984l746.688 405.312a32 32 0 0 1-11.904 59.968l-389.248 40.896-205.312 348.8a32 32 0 0 1-59.2-11.264L139.136 132.992a32 32 0 0 1 13.184-31.104zM316.352 845.44L484.48 559.744a32 32 0 0 1 24.192-15.552l302.848-31.936L212.48 187.008 316.352 845.44z\" fill=\"currentColor\"></path></svg>\n ";
19
+ readonly pan: "\n <svg viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M406.784 143.36a89.024 89.024 0 0 1 57.664 19.84l6.656 5.952a90.624 90.624 0 0 1 26.56 64.256v72.64c10.624-3.84 21.888-5.76 33.28-5.696a89.792 89.792 0 0 1 82.752 53.12c13.12-6.208 27.392-9.728 41.984-9.728a89.152 89.152 0 0 1 82.88 52.928c10.816-5.376 22.528-8.512 34.56-9.152V387.2l4.736-0.064h2.752a89.216 89.216 0 0 1 57.472 19.84l6.656 5.888a91.008 91.008 0 0 1 26.624 64.256v165.12c0 78.08-5.504 159.488-42.688 221.312-37.76 62.72-107.008 103.744-230.4 103.744-103.808 0-203.712 6.72-280.512-87.68-26.944-33.088-145.728-196.48-183.872-247.872-20.032-27.136-26.496-52.928-23.424-76.032a97.28 97.28 0 0 1 30.464-56.96c16-15.232 40.064-23.872 64.256-24.512 24.256-0.64 49.664 6.72 68.16 24.576l28.16 26.88 1.6 1.152a7.04 7.04 0 0 0 5.888 0.128l1.728-1.024a7.424 7.424 0 0 0 2.56-5.312V233.28c0.704-24.448 11.008-47.616 28.544-64.384a91.52 91.52 0 0 1 64.96-25.536z m-0.128 67.2a32 32 0 0 0-12.352 1.984v0.064a32.832 32.832 0 0 0-20.672 29.696v291.648a60.736 60.736 0 0 1-71.296 60.48 60.736 60.736 0 0 1-31.232-15.936l-0.128-0.128c-10.88-10.944-22.08-21.12-33.152-31.936a40.96 40.96 0 0 0-52.8 1.408l-0.256 0.192a32.128 32.128 0 0 0-8.576 10.752v0.064a32.128 32.128 0 0 0 3.84 34.432l3.584 3.84 0.512 0.448 0.512 0.64 178.048 244.864c22.912 32 57.6 53.632 96.384 60.16 46.016 5.44 92.352 7.552 138.56 6.272h0.192c54.144 0 94.08-8.832 123.712-23.488 29.44-14.656 49.024-35.392 62.08-60.096 26.56-49.984 26.816-116.48 26.816-183.104l-0.448-160.256v-0.32a30.656 30.656 0 0 0-2.112-12.352l-0.064-0.064a29.696 29.696 0 0 0-29.568-18.944h-0.64a30.912 30.912 0 0 0-29.312 19.392 31.808 31.808 0 0 0-2.368 12.224V576h-0.192a28.928 28.928 0 0 1-18.048 23.936l-0.128 0.064a30.08 30.08 0 0 1-27.648-2.56 29.888 29.888 0 0 1-9.728-10.56 29.44 29.44 0 0 1-3.264-10.944h-0.448V442.432a27.776 27.776 0 0 0-16.256-26.624 49.408 49.408 0 0 0-16.128-4.864l-0.96-0.128a30.528 30.528 0 0 0-17.408 5.12l-4.736 3.84a31.36 31.36 0 0 0-8.96 22.528V550.4h-0.384a30.016 30.016 0 0 1-50.56 17.664 30.528 30.528 0 0 1-9.088-17.664h-0.384V398.976a32.128 32.128 0 0 0-4.992-18.56 27.136 27.136 0 0 0-10.88-9.088 42.048 42.048 0 0 0-15.552-3.968h-1.216v-7.488l-0.192 7.488a30.72 30.72 0 0 0-22.208 8.96 31.36 31.36 0 0 0-8.96 22.464v116.288H497.28a29.696 29.696 0 0 1-8.96 17.984 29.824 29.824 0 0 1-21.12 8.064v0.064h-0.32a29.632 29.632 0 0 1-29.312-26.112h-0.32v-273.28a30.4 30.4 0 0 0-1.92-11.968L435.2 229.696a29.44 29.44 0 0 0-28.16-19.2h-0.384z\" fill=\"currentColor\"></path><path d=\"M405.952 56.576c100.48 0 182.592 78.336 182.592 176.32 0 1.856-0.192 3.584-0.32 4.864a34.752 34.752 0 0 0-0.192 3.392v0.64a32.64 32.64 0 0 1-4.352 13.44 32.064 32.064 0 0 1-15.744 13.76 32 32 0 0 1-19.648 1.28h-0.768L546.56 270.08a26.112 26.112 0 0 1-18.816-27.776c0.32-2.88 0.448-6.016 0.448-9.152l-0.832-11.968a120.96 120.96 0 0 0-28.032-64.128l-8.192-8.704a119.04 119.04 0 0 0-85.568-33.408h-0.256a119.68 119.68 0 0 0-76.672 25.664l-8.832 7.744c-23.04 22.336-36.352 52.736-37.12 84.8 0 14.144 2.816 28.16 8.128 41.344a47.232 47.232 0 0 1 3.456 17.792l-3.648 14.4a28.8 28.8 0 0 1-18.56 14.208H272a28.992 28.992 0 0 1-32.64-15.616l-0.064-0.128a173.568 173.568 0 0 1-16-72.128c0-97.6 82.176-176.448 182.656-176.448z\" fill=\"currentColor\"></path></svg>\n ";
20
+ readonly info: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <circle cx=\"12\" cy=\"12\" r=\"9\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\"/>\n <path d=\"M12 10v6M12 7h0\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
21
+ readonly eye: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M2 12s4-6 10-6 10 6 10 6-4 6-10 6S2 12 2 12z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linejoin=\"round\"/>\n <circle cx=\"12\" cy=\"12\" r=\"3\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\"/>\n </svg>\n ";
22
+ readonly watermark: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M12 3c3 3 5 6 5 9a5 5 0 0 1-10 0c0-3 2-6 5-9z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
23
+ readonly download: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M12 3v12M12 15l-4-4M12 15l4-4\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4 17v3h16v-3\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
24
+ readonly save: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M6 4h10l2 2v14H6z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linejoin=\"round\"/>\n <path d=\"M8 4v6h8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n <path d=\"M8 18h8\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
25
+ readonly highlight: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M913.92 923.008H96v-64h817.92v64z m11.072-475.072l-192.96 193.088-5.44 5.312-230.4 76.8-8.32-8.448-80.256 80.256-21.44-12.8-205.568-123.392 28.992-28.928 96.64-96.64-8.32-8.448 76.8-230.4 5.248-5.312L573.056 96l352 351.936zM283.84 646.08l113.792 68.288 44.928-44.928-91.072-91.072-67.648 67.712z m87.232-138.624l142.4 142.4 111.104-37.056-216.512-216.512-36.992 111.168z m59.776-178.816l261.44 261.44 142.208-142.144-261.44-261.44-142.208 142.08z\" fill=\"currentColor\"></path></svg>\n ";
26
+ readonly underline: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M853.44 906.688H170.752v-64h682.688v64zM266.752 469.312a245.376 245.376 0 1 0 490.688 0v-339.2h64v339.2a309.376 309.376 0 0 1-618.688 0v-339.2h64v339.2z\" p-id=\"1902\" fill=\"currentColor\"></path></svg>\n ";
27
+ readonly strike: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M876.864 544H637.76c77.12 59.712 105.728 135.744 92.864 208.768-17.216 97.536-107.904 175.232-218.752 175.232-105.856 0-172.032-42.88-211.2-87.744a251.776 251.776 0 0 1-39.232-60.48 216.448 216.448 0 0 1-10.24-26.688l-0.448-1.92-0.192-0.64v-0.192c-0.064 0-0.128-0.192 30.912-7.936l31.04-7.744 0.192 0.512 1.088 3.584a188.288 188.288 0 0 0 35.008 59.392c27.968 31.936 76.992 65.856 163.072 65.856 81.152 0 144.128-56.704 155.712-122.368 10.688-60.608-21.568-143.36-161.856-197.632H147.264v-64h729.6v64zM511.936 96c97.152 0 162.752 43.584 203.392 86.912a307.136 307.136 0 0 1 53.312 78.848l2.56 5.952 0.704 1.728c0.128 0.192 0.256 0.384 0.256 0.576l0.064 0.256h0.064s0 0.128-29.952 11.328l-29.952 11.264-0.32-0.832a196.672 196.672 0 0 0-9.344-18.752 243.84 243.84 0 0 0-34.176-46.592C637.184 193.216 587.584 160 512 160c-77.12 0-125.376 32.064-147.392 71.808-22.144 40.064-21.44 94.592 13.056 147.52l-53.568 34.944c-45.568-69.952-50.688-149.824-15.488-213.44C343.936 136.896 416.256 96 512 96z\" fill=\"currentColor\"></path></svg>\n ";
28
+ readonly rect: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M690.56 537.536h109.44a32 32 0 0 0 32-32v-384a32 32 0 0 0-32-32h-640a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h212.032l68.096 425.6a32 32 0 0 0 59.072 11.328l138.112-231.616 262.016-27.2a32 32 0 0 0 11.776-60.032L690.624 537.6z m-498.56-384h576v320H571.136l-172.032-92.16a32 32 0 0 0-46.72 33.28l9.408 58.88H192v-320zM489.344 865.92l-63.552-397.696 363.136 194.56-174.208 18.048a32 32 0 0 0-24.128 15.36l-101.248 169.728z\" fill=\"currentColor\"></path></svg>\n ";
29
+ readonly ellipse: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M732.992 529.6a320 320 0 1 0-273.92 174.208l41.792 261.248a32 32 0 0 0 59.072 11.328l138.112-231.616 262.016-27.2a32 32 0 0 0 11.776-60.032l-238.848-127.936zM448 640a256 256 0 1 1 228.608-140.608L459.776 383.296a32 32 0 0 0-46.72 33.28L448.896 640H448z m102.144 227.84l-63.616-397.632 363.136 194.56-174.144 18.048a32 32 0 0 0-24.192 15.424l-101.184 169.6z\" fill=\"currentColor\"></path></svg>\n ";
30
+ readonly draw: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M358.4 544H224a64 64 0 0 0 0 128h576a128 128 0 0 1 0 256H396.8v-64h403.2a64 64 0 0 0 0-128h-576a128 128 0 0 1 0-256h134.4v64z\" fill=\"currentColor\"></path><path d=\"M782.4 101.248a32 32 0 0 1 40.256 4.096l96 96a32 32 0 0 1 0 45.248l-288 288A32 32 0 0 1 608 544H512a32 32 0 0 1-32-32V416a32 32 0 0 1 9.344-22.656l288-288 5.056-4.096zM544 429.248V480h50.752l256-256-50.752-50.752-256 256z\" fill=\"currentColor\"></path></svg>\n ";
31
+ readonly arrow: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"5\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n <polyline points=\"5 12 12 5 19 12\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n ";
32
+ readonly text: "\n <svg class=\"icon\" viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M853.44 96a32 32 0 0 1 32 32v105.28a32 32 0 0 1-64 0V160H544v704h138.816a32 32 0 1 1 0 64H341.504a32 32 0 0 1 0-64H480v-704H202.752v73.28a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32h682.688z\" fill=\"currentColor\"></path></svg>\n ";
33
+ readonly erase: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <path d=\"M4 15l7-7 5 5-7 7H4z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>\n <path d=\"M14 20h6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linecap=\"round\"/>\n </svg>\n ";
34
+ readonly settings: "\n <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n <circle cx=\"12\" cy=\"12\" r=\"3\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\"/>\n <path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\" stroke-linejoin=\"round\"/>\n </svg>\n ";
35
+ readonly fullScreen: "\n <svg viewBox=\"0 0 1024 1024\" width=\"24\" height=\"24\"><path d=\"M607.04 576.192a5.888 5.888 0 0 1 8.32 0l97.216 97.152 31.744-31.808a5.824 5.824 0 0 1 9.856 3.456l13.76 116.48a5.76 5.76 0 0 1-6.4 6.464l-116.608-13.76a5.76 5.76 0 0 1-3.392-9.856l32-32-97.28-97.152a5.888 5.888 0 0 1 0-8.256l30.784-30.72zM408.704 576.192a5.888 5.888 0 0 1 8.256 0l30.784 30.848a5.76 5.76 0 0 1 0 8.192l-97.28 97.152 32 31.872a5.76 5.76 0 0 1-3.392 9.856l-116.544 13.76a5.76 5.76 0 0 1-6.464-6.4l13.76-116.48c0.576-4.8 6.4-6.848 9.856-3.456l31.744 31.872 97.28-97.28zM379.072 269.824a5.76 5.76 0 0 1 3.392 9.856l-32 32 97.28 97.152a5.888 5.888 0 0 1 0 8.256l-30.784 30.72a5.888 5.888 0 0 1-8.32 0L311.488 350.72l-31.744 31.808a5.824 5.824 0 0 1-9.856-3.456L256 262.528a5.76 5.76 0 0 1 6.4-6.464l116.608 13.76zM761.472 256.128a5.76 5.76 0 0 1 6.464 6.4l-13.76 116.48a5.824 5.824 0 0 1-9.856 3.456l-31.744-31.808-97.28 97.152a5.888 5.888 0 0 1-8.256 0l-30.784-30.848a5.76 5.76 0 0 1 0-8.192l97.28-97.088-32-31.936a5.76 5.76 0 0 1 3.392-9.856l116.544-13.76z\" fill=\"currentColor\"></path><path d=\"M832 128a64 64 0 0 1 64 64v640a64 64 0 0 1-64 64H192a64 64 0 0 1-64-64V192a64 64 0 0 1 64-64h640zM192 832h640V192H192v640z\" fill=\"currentColor\"></path></svg>\n ";
36
+ };
37
+ export type ToolbarIconKey = keyof typeof toolbarIcons;
38
+ //# sourceMappingURL=toolbar-icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toolbar-icons.d.ts","sourceRoot":"","sources":["../../src/icons/toolbar-icons.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsHf,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,YAAY,CAAC"}
@@ -0,0 +1,14 @@
1
+ import { PdfViewerElement } from './viewer/element';
2
+ export { setPdfJsResources, getPdfJsResources } from './viewer/pdfjs-resources';
3
+ export type { PdfJsResourceOptions } from './viewer/pdfjs-resources';
4
+ export type { AnnotationServerWriteback, CommentServerWriteback, ServerWritebackPayload, ServerWritebackResult, } from './viewer/server-writeback';
5
+ export type { LayoutModeConfig, LayoutMode, PageIndicatorConfig, PageIndicatorItem, ToolbarButtonConfig, ModeLayoutConfig, HeaderConfig, PanelConfig, PanelTabConfig, PdfViewerConfig, PdfViewerCallbacks, PermissionConfig, AnnotationConfig, AnnotationCreateInput, AnnotationFilter, PdfViewerImageAdapter, CommentImageUploadResult, } from './viewer/config';
6
+ export type { UserInfo } from '@jacktea/pdf-viewer-core';
7
+ export type { DocumentMode, PolicySet } from '@jacktea/pdf-viewer-core';
8
+ export type { AnnotationSettings, AnnotationTool, ShapeToolSettings, HighlightSettings, LineMarkSettings, TextToolSettings, LineStyle, } from './annotations/settings';
9
+ export { t, setLocale, getLocale, onLocaleChange, registerLocale, setCustomTranslations, getAvailableLocales, } from './i18n';
10
+ export type { Translations, LocaleCode, LocaleChangeEvent } from './i18n';
11
+ export type { Annotation, AnnotationComment, CommentThread, PdfData, Watermark, } from '@jacktea/pdf-viewer-core';
12
+ export declare function definePdfViewer(): void;
13
+ export { PdfViewerElement };
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAChF,YAAY,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AACrE,YAAY,EACV,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,2BAA2B,CAAC;AACnC,YAAY,EACV,gBAAgB,EAChB,UAAU,EACV,mBAAmB,EACnB,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EACrB,gBAAgB,EAChB,qBAAqB,EACrB,wBAAwB,GACzB,MAAM,iBAAiB,CAAC;AAEzB,YAAY,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,YAAY,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAExE,YAAY,EACV,kBAAkB,EAClB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,SAAS,GACV,MAAM,wBAAwB,CAAC;AAGhC,OAAO,EACL,CAAC,EACD,SAAS,EACT,SAAS,EACT,cAAc,EACd,cAAc,EACd,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,QAAQ,CAAC;AAChB,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAE1E,YAAY,EACV,UAAU,EACV,iBAAiB,EACjB,aAAa,EACb,OAAO,EACP,SAAS,GACV,MAAM,0BAA0B,CAAC;AAElC,wBAAgB,eAAe,SAI9B;AAID,OAAO,EAAE,gBAAgB,EAAE,CAAC"}