@vertexvis/ui 0.1.5-testing.0 → 1.0.0-testing.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (888) hide show
  1. package/dist/cjs/components.cjs.js +14 -84
  2. package/dist/cjs/{dom-a2c535e3.js → dom-v38DVhe2.js} +4 -4
  3. package/dist/cjs/icon-helper-ut8vR2Rk.js +559 -0
  4. package/dist/cjs/index-D-R2lvls.js +62 -0
  5. package/dist/cjs/index-DihxupoM.js +95 -0
  6. package/dist/cjs/index-DwS9D24e.js +2230 -0
  7. package/dist/cjs/index.cjs.js +91 -92
  8. package/dist/cjs/{lib-1bd1e383.js → lib-CCXuRx1c.js} +2 -2
  9. package/dist/cjs/loader.cjs.js +5 -15
  10. package/dist/cjs/slots-DEdmqbtw.js +29 -0
  11. package/dist/cjs/templates-C_WUWcnZ.js +230 -0
  12. package/dist/cjs/tslib.es6-AsLBQn5u.js +68 -0
  13. package/dist/cjs/vertex-auto-resize-textarea.cjs.entry.js +132 -5
  14. package/dist/cjs/vertex-avatar-group.cjs.entry.js +12 -5
  15. package/dist/cjs/vertex-avatar.cjs.entry.js +44 -6
  16. package/dist/cjs/vertex-badge.cjs.entry.js +21 -6
  17. package/dist/cjs/vertex-banner.cjs.entry.js +122 -7
  18. package/dist/cjs/vertex-button.cjs.entry.js +83 -6
  19. package/dist/cjs/vertex-card-group.cjs.entry.js +34 -6
  20. package/dist/cjs/vertex-card.cjs.entry.js +33 -5
  21. package/dist/cjs/vertex-chip.cjs.entry.js +28 -6
  22. package/dist/cjs/vertex-click-to-edit-textfield.cjs.entry.js +112 -7
  23. package/dist/cjs/vertex-collapsible.cjs.entry.js +22 -6
  24. package/dist/cjs/vertex-color-circle-picker.cjs.entry.js +142 -6
  25. package/dist/cjs/vertex-color-picker.cjs.entry.js +67 -7
  26. package/dist/cjs/vertex-color-swatch.cjs.entry.js +141 -7
  27. package/dist/cjs/vertex-context-menu.cjs.entry.js +91 -6
  28. package/dist/cjs/vertex-dialog.cjs.entry.js +226 -5
  29. package/dist/cjs/vertex-draggable-popover.cjs.entry.js +79 -6
  30. package/dist/cjs/vertex-dropdown-menu.cjs.entry.js +34 -6
  31. package/dist/cjs/vertex-expandable.cjs.entry.js +101 -6
  32. package/dist/cjs/vertex-help-tooltip.cjs.entry.js +36 -5
  33. package/dist/cjs/vertex-icon-button.cjs.entry.js +58 -7
  34. package/dist/cjs/vertex-icon.cjs.entry.js +29 -7
  35. package/dist/cjs/vertex-logo-loading.cjs.entry.js +12 -5
  36. package/dist/cjs/vertex-menu-divider.cjs.entry.js +12 -5
  37. package/dist/cjs/vertex-menu-item.cjs.entry.js +24 -6
  38. package/dist/cjs/vertex-menu.cjs.entry.js +80 -6
  39. package/dist/cjs/vertex-popover.cjs.entry.js +1894 -5
  40. package/dist/cjs/vertex-radio-group.cjs.entry.js +73 -5
  41. package/dist/cjs/vertex-radio.cjs.entry.js +29 -6
  42. package/dist/cjs/vertex-resizable.cjs.entry.js +439 -7
  43. package/dist/cjs/vertex-result-list.cjs.entry.js +300 -7
  44. package/dist/cjs/vertex-search-bar.cjs.entry.js +528 -7
  45. package/dist/cjs/vertex-select.cjs.entry.js +181 -6
  46. package/dist/cjs/vertex-slider.cjs.entry.js +55 -7
  47. package/dist/cjs/vertex-spinner.cjs.entry.js +32 -6
  48. package/dist/cjs/vertex-tab.cjs.entry.js +20 -6
  49. package/dist/cjs/vertex-tabs.cjs.entry.js +104 -6
  50. package/dist/cjs/vertex-textfield.cjs.entry.js +147 -7
  51. package/dist/cjs/vertex-toast.cjs.entry.js +109 -6
  52. package/dist/cjs/vertex-toggle.cjs.entry.js +47 -6
  53. package/dist/cjs/vertex-tooltip.cjs.entry.js +343 -8
  54. package/dist/collection/collection-manifest.json +44 -43
  55. package/dist/collection/components/auto-resize-textarea/auto-resize-textarea.js +222 -213
  56. package/dist/collection/components/auto-resize-textarea/utils.js +1 -1
  57. package/dist/collection/components/avatar/avatar.js +153 -137
  58. package/dist/collection/components/avatar-group/avatar-group.js +16 -16
  59. package/dist/collection/components/badge/badge.js +75 -66
  60. package/dist/collection/components/banner/banner.js +284 -247
  61. package/dist/collection/components/button/button.css +1 -1
  62. package/dist/collection/components/button/button.js +274 -230
  63. package/dist/collection/components/card/card.js +89 -76
  64. package/dist/collection/components/card-group/card-group.js +104 -89
  65. package/dist/collection/components/chip/chip.js +89 -73
  66. package/dist/collection/components/click-to-edit-text-field/click-to-edit-text-field.js +412 -373
  67. package/dist/collection/components/collapsible/collapsible.js +71 -65
  68. package/dist/collection/components/color-circle-picker/color-circle-picker.js +398 -312
  69. package/dist/collection/components/color-picker/color-picker.js +225 -186
  70. package/dist/collection/components/color-swatch/color-swatch.js +341 -272
  71. package/dist/collection/components/color-swatch/lib.js +2 -2
  72. package/dist/collection/components/context-menu/context-menu.js +168 -161
  73. package/dist/collection/components/dialog/dialog.js +332 -323
  74. package/dist/collection/components/dialog/lib.js +4 -4
  75. package/dist/collection/components/draggable-popover/draggable-popover.js +182 -175
  76. package/dist/collection/components/dropdown-menu/dropdown-menu.js +122 -108
  77. package/dist/collection/components/expandable/expandable.js +272 -224
  78. package/dist/collection/components/help-tooltip/help-tooltip.js +132 -118
  79. package/dist/collection/components/icon/icon-helper.js +414 -414
  80. package/dist/collection/components/icon/icon.js +91 -75
  81. package/dist/collection/components/icon/icons/adjustments.js +1 -1
  82. package/dist/collection/components/icon/icons/align-to-global.js +1 -1
  83. package/dist/collection/components/icon/icons/align-to-part.js +1 -1
  84. package/dist/collection/components/icon/icons/align-to-surface.js +1 -1
  85. package/dist/collection/components/icon/icons/align-view-to-plane.js +1 -1
  86. package/dist/collection/components/icon/icons/annotation.js +1 -1
  87. package/dist/collection/components/icon/icons/arrow-filled.js +1 -1
  88. package/dist/collection/components/icon/icons/arrow-left-circled.js +1 -1
  89. package/dist/collection/components/icon/icons/arrow-line-left.js +1 -1
  90. package/dist/collection/components/icon/icons/arrow-line-right.js +1 -1
  91. package/dist/collection/components/icon/icons/arrow-partial.js +1 -1
  92. package/dist/collection/components/icon/icons/arrow-right-circled.js +2 -2
  93. package/dist/collection/components/icon/icons/arrow-swap.js +1 -1
  94. package/dist/collection/components/icon/icons/arrow-triangle-left.js +1 -1
  95. package/dist/collection/components/icon/icons/arrow-triangle-right.js +1 -1
  96. package/dist/collection/components/icon/icons/arrow-up-circled.js +1 -1
  97. package/dist/collection/components/icon/icons/attachment.js +1 -1
  98. package/dist/collection/components/icon/icons/axis-x.js +1 -1
  99. package/dist/collection/components/icon/icons/axis-y.js +1 -1
  100. package/dist/collection/components/icon/icons/axis-z.js +1 -1
  101. package/dist/collection/components/icon/icons/back.js +1 -1
  102. package/dist/collection/components/icon/icons/box-cursor.js +1 -1
  103. package/dist/collection/components/icon/icons/box-select.js +1 -1
  104. package/dist/collection/components/icon/icons/camera-add.js +1 -1
  105. package/dist/collection/components/icon/icons/camera.js +1 -1
  106. package/dist/collection/components/icon/icons/caret-down.js +1 -1
  107. package/dist/collection/components/icon/icons/caret-left.js +1 -1
  108. package/dist/collection/components/icon/icons/caret-right.js +1 -1
  109. package/dist/collection/components/icon/icons/caret-up.js +1 -1
  110. package/dist/collection/components/icon/icons/caution.js +1 -1
  111. package/dist/collection/components/icon/icons/check-circle.js +1 -1
  112. package/dist/collection/components/icon/icons/check.js +1 -1
  113. package/dist/collection/components/icon/icons/chevron-down.js +1 -1
  114. package/dist/collection/components/icon/icons/chevron-left.js +1 -1
  115. package/dist/collection/components/icon/icons/chevron-right.js +1 -1
  116. package/dist/collection/components/icon/icons/chevron-up.js +1 -1
  117. package/dist/collection/components/icon/icons/circle-outline.js +1 -1
  118. package/dist/collection/components/icon/icons/close-circle-fill.js +1 -1
  119. package/dist/collection/components/icon/icons/close-circle.js +1 -1
  120. package/dist/collection/components/icon/icons/close.js +1 -1
  121. package/dist/collection/components/icon/icons/collapse-all.js +1 -1
  122. package/dist/collection/components/icon/icons/columns-add.js +1 -1
  123. package/dist/collection/components/icon/icons/columns.js +1 -1
  124. package/dist/collection/components/icon/icons/comment-add.js +1 -1
  125. package/dist/collection/components/icon/icons/comment-filled.js +1 -1
  126. package/dist/collection/components/icon/icons/comment-reopen.js +1 -1
  127. package/dist/collection/components/icon/icons/comment-resolve.js +1 -1
  128. package/dist/collection/components/icon/icons/comment-show.js +1 -1
  129. package/dist/collection/components/icon/icons/compare.js +1 -1
  130. package/dist/collection/components/icon/icons/compress.js +1 -1
  131. package/dist/collection/components/icon/icons/copy.js +1 -1
  132. package/dist/collection/components/icon/icons/cross-section.js +1 -1
  133. package/dist/collection/components/icon/icons/cube-orthographic.js +1 -1
  134. package/dist/collection/components/icon/icons/cube-perspective.js +1 -1
  135. package/dist/collection/components/icon/icons/cube-stack.js +1 -1
  136. package/dist/collection/components/icon/icons/delete.js +1 -1
  137. package/dist/collection/components/icon/icons/download.js +1 -1
  138. package/dist/collection/components/icon/icons/drag-indicator.js +1 -1
  139. package/dist/collection/components/icon/icons/ellipse.js +1 -1
  140. package/dist/collection/components/icon/icons/error-circle.js +1 -1
  141. package/dist/collection/components/icon/icons/expand-all.js +1 -1
  142. package/dist/collection/components/icon/icons/expand.js +1 -1
  143. package/dist/collection/components/icon/icons/export.js +1 -1
  144. package/dist/collection/components/icon/icons/file-folder.js +1 -1
  145. package/dist/collection/components/icon/icons/file-pdf.js +1 -1
  146. package/dist/collection/components/icon/icons/file.js +1 -1
  147. package/dist/collection/components/icon/icons/fit-all.js +1 -1
  148. package/dist/collection/components/icon/icons/fit-selected.js +1 -1
  149. package/dist/collection/components/icon/icons/flip.js +1 -1
  150. package/dist/collection/components/icon/icons/folder-plus.js +1 -1
  151. package/dist/collection/components/icon/icons/forward.js +1 -1
  152. package/dist/collection/components/icon/icons/gear.js +1 -1
  153. package/dist/collection/components/icon/icons/help.js +1 -1
  154. package/dist/collection/components/icon/icons/info.js +1 -1
  155. package/dist/collection/components/icon/icons/invert.js +1 -1
  156. package/dist/collection/components/icon/icons/label-off.js +1 -1
  157. package/dist/collection/components/icon/icons/label.js +1 -1
  158. package/dist/collection/components/icon/icons/line-dot-left.js +1 -1
  159. package/dist/collection/components/icon/icons/line-dot-right.js +1 -1
  160. package/dist/collection/components/icon/icons/line-hash-left.js +1 -1
  161. package/dist/collection/components/icon/icons/line-hash-right.js +1 -1
  162. package/dist/collection/components/icon/icons/line.js +1 -1
  163. package/dist/collection/components/icon/icons/locate.js +1 -1
  164. package/dist/collection/components/icon/icons/lock-closed.js +1 -1
  165. package/dist/collection/components/icon/icons/lock-open.js +1 -1
  166. package/dist/collection/components/icon/icons/markup.js +1 -1
  167. package/dist/collection/components/icon/icons/menu.js +1 -1
  168. package/dist/collection/components/icon/icons/notification.js +1 -1
  169. package/dist/collection/components/icon/icons/open-window.js +1 -1
  170. package/dist/collection/components/icon/icons/open.js +1 -1
  171. package/dist/collection/components/icon/icons/pan.js +1 -1
  172. package/dist/collection/components/icon/icons/paper-airplane.js +1 -1
  173. package/dist/collection/components/icon/icons/paste.js +1 -1
  174. package/dist/collection/components/icon/icons/pencil.js +1 -1
  175. package/dist/collection/components/icon/icons/person-height.js +1 -1
  176. package/dist/collection/components/icon/icons/person-run.js +1 -1
  177. package/dist/collection/components/icon/icons/person-short.js +1 -1
  178. package/dist/collection/components/icon/icons/person-tall.js +1 -1
  179. package/dist/collection/components/icon/icons/person-walk.js +1 -1
  180. package/dist/collection/components/icon/icons/pin-fill.js +1 -1
  181. package/dist/collection/components/icon/icons/pin-line.js +1 -1
  182. package/dist/collection/components/icon/icons/pin-text-fill.js +1 -1
  183. package/dist/collection/components/icon/icons/pin-text-square.js +1 -1
  184. package/dist/collection/components/icon/icons/pin-text.js +1 -1
  185. package/dist/collection/components/icon/icons/plus-with-arrow.js +1 -1
  186. package/dist/collection/components/icon/icons/plus.js +1 -1
  187. package/dist/collection/components/icon/icons/pmi.js +1 -1
  188. package/dist/collection/components/icon/icons/precise-measurement.js +1 -1
  189. package/dist/collection/components/icon/icons/rabbit.js +1 -1
  190. package/dist/collection/components/icon/icons/refresh.js +1 -1
  191. package/dist/collection/components/icon/icons/rename.js +1 -1
  192. package/dist/collection/components/icon/icons/report.js +1 -1
  193. package/dist/collection/components/icon/icons/reset.js +1 -1
  194. package/dist/collection/components/icon/icons/resize.js +1 -1
  195. package/dist/collection/components/icon/icons/rotate.js +1 -1
  196. package/dist/collection/components/icon/icons/ruler.js +1 -1
  197. package/dist/collection/components/icon/icons/scissors.js +1 -1
  198. package/dist/collection/components/icon/icons/search.js +1 -1
  199. package/dist/collection/components/icon/icons/show-only-nearby.js +1 -1
  200. package/dist/collection/components/icon/icons/snapshots.js +1 -1
  201. package/dist/collection/components/icon/icons/square-dot-outline.js +1 -1
  202. package/dist/collection/components/icon/icons/star.js +1 -1
  203. package/dist/collection/components/icon/icons/tag.js +1 -1
  204. package/dist/collection/components/icon/icons/tape-measure.js +1 -1
  205. package/dist/collection/components/icon/icons/teleport-and-align.js +1 -1
  206. package/dist/collection/components/icon/icons/teleport-toward.js +1 -1
  207. package/dist/collection/components/icon/icons/teleport.js +1 -1
  208. package/dist/collection/components/icon/icons/triad.js +1 -1
  209. package/dist/collection/components/icon/icons/turtle.js +1 -1
  210. package/dist/collection/components/icon/icons/update.js +1 -1
  211. package/dist/collection/components/icon/icons/version-history.js +1 -1
  212. package/dist/collection/components/icon/icons/views.js +1 -1
  213. package/dist/collection/components/icon/icons/visibility-hidden.js +1 -1
  214. package/dist/collection/components/icon/icons/visibility-partial.js +1 -1
  215. package/dist/collection/components/icon/icons/visibility-visible.js +1 -1
  216. package/dist/collection/components/icon/icons/workspace-add.js +1 -1
  217. package/dist/collection/components/icon/icons/zoom.js +1 -1
  218. package/dist/collection/components/icon-button/icon-button.css +5 -2
  219. package/dist/collection/components/icon-button/icon-button.js +190 -152
  220. package/dist/collection/components/logo-loading/logo-loading.js +16 -16
  221. package/dist/collection/components/menu/menu.js +286 -250
  222. package/dist/collection/components/menu-divider/menu-divider.js +16 -16
  223. package/dist/collection/components/menu-item/menu-item.js +54 -48
  224. package/dist/collection/components/popover/middleware.js +22 -22
  225. package/dist/collection/components/popover/popover.js +654 -567
  226. package/dist/collection/components/popover/util.js +7 -7
  227. package/dist/collection/components/radio/radio.js +157 -145
  228. package/dist/collection/components/radio-group/radio-group.js +135 -133
  229. package/dist/collection/components/resizable/resizable.js +758 -702
  230. package/dist/collection/components/result-list/lib.js +6 -6
  231. package/dist/collection/components/result-list/result-list.js +456 -431
  232. package/dist/collection/components/search-bar/dom.js +13 -13
  233. package/dist/collection/components/search-bar/lib.js +50 -50
  234. package/dist/collection/components/search-bar/search-bar.js +739 -661
  235. package/dist/collection/components/select/select.css +7 -2
  236. package/dist/collection/components/select/select.js +332 -303
  237. package/dist/collection/components/slider/slider.js +258 -220
  238. package/dist/collection/components/spinner/spinner.js +93 -77
  239. package/dist/collection/components/tab/tab.js +86 -83
  240. package/dist/collection/components/tab/util.js +1 -1
  241. package/dist/collection/components/tabs/tabs.js +150 -151
  242. package/dist/collection/components/text-field/text-field.js +637 -572
  243. package/dist/collection/components/toast/toast.js +266 -228
  244. package/dist/collection/components/toggle/toggle.js +139 -119
  245. package/dist/collection/components/tooltip/tooltip.js +280 -247
  246. package/dist/collection/types/icon.js +137 -137
  247. package/dist/collection/util/components/dom.js +5 -5
  248. package/dist/collection/util/components/slots.js +17 -17
  249. package/dist/collection/util/templates/binding.js +121 -121
  250. package/dist/collection/util/templates/element-pool.js +79 -79
  251. package/dist/collection/util/templates/templates.js +15 -15
  252. package/dist/components/components.esm.js +1 -1
  253. package/dist/components/index.d.ts +6 -42
  254. package/dist/components/index.esm.js +1 -1
  255. package/dist/components/index.js +1 -52
  256. package/dist/components/p-00eaa8d7.entry.js +1 -0
  257. package/dist/components/p-0180556d.entry.js +1 -0
  258. package/dist/components/p-091b9e27.entry.js +1 -0
  259. package/dist/components/p-0af9b71c.entry.js +1 -0
  260. package/dist/components/p-0bd4222b.entry.js +1 -0
  261. package/dist/components/p-0c389e6f.entry.js +1 -0
  262. package/dist/{esm/toggle-1fe22e4f.js → components/p-0f13f6f3.entry.js} +1 -38
  263. package/dist/components/p-1KuzBK7Z.js +1 -0
  264. package/dist/components/p-1c5e8df5.entry.js +1 -0
  265. package/dist/components/p-1e6ff76a.entry.js +1 -0
  266. package/dist/components/p-26f9abc0.entry.js +1 -0
  267. package/dist/components/p-28460604.entry.js +1 -0
  268. package/dist/components/p-2cdfe6bf.entry.js +1 -0
  269. package/dist/components/p-2e0ee616.entry.js +1 -0
  270. package/dist/components/p-34d8a04e.entry.js +1 -0
  271. package/dist/components/p-3ddb0c4e.entry.js +1 -0
  272. package/dist/components/p-4HdACFFW.js +1 -0
  273. package/dist/components/p-553d01af.entry.js +1 -0
  274. package/dist/components/p-595b8bd6.entry.js +1 -0
  275. package/dist/components/p-5c032b37.entry.js +1 -0
  276. package/dist/components/p-5e3fe5e7.entry.js +1 -0
  277. package/dist/components/p-61742c05.entry.js +1 -0
  278. package/dist/components/p-6b2db72c.entry.js +1 -0
  279. package/dist/components/p-6c6a2fc5.entry.js +1 -0
  280. package/dist/components/p-6d03a954.entry.js +1 -0
  281. package/dist/components/p-6qoO8Yf3.js +1 -0
  282. package/dist/components/p-705d25f3.entry.js +1 -0
  283. package/dist/components/p-7f768637.entry.js +1 -0
  284. package/dist/components/p-8358ad1c.entry.js +1 -0
  285. package/dist/components/p-88781e72.entry.js +1 -0
  286. package/dist/components/p-B-yvbsY0.js +1 -0
  287. package/dist/components/p-B23i1cwy.js +1 -0
  288. package/dist/components/p-B2oECB2P.js +1 -0
  289. package/dist/components/p-B9qe9CNv.js +1 -0
  290. package/dist/components/p-BAfJR2VF.js +1 -0
  291. package/dist/components/p-BHmM6WC-.js +1 -0
  292. package/dist/components/p-BLc3P-0q.js +1 -0
  293. package/dist/components/{p-1356f525.js → p-BSoicxl1.js} +1 -1
  294. package/dist/components/p-BZ5oF5Ci.js +1 -0
  295. package/dist/components/p-BZutc-CC.js +1 -0
  296. package/dist/components/p-BbDaHMlz.js +1 -0
  297. package/dist/components/p-BdR40EV2.js +1 -0
  298. package/dist/components/p-Beav1bNT.js +6 -0
  299. package/dist/components/p-Bo65Viuh.js +1 -0
  300. package/dist/components/p-ByQGREpQ.js +1 -0
  301. package/dist/components/p-C1H5-_5m.js +1 -0
  302. package/dist/components/p-C1qwHMcr.js +1 -0
  303. package/dist/components/p-C27tS7nl.js +2 -0
  304. package/dist/components/p-C7VaFE8W.js +1 -0
  305. package/dist/components/p-CAFdRyLE.js +1 -0
  306. package/dist/components/p-CDYHYPYF.js +1 -0
  307. package/dist/components/p-CFaiLAq0.js +1 -0
  308. package/dist/components/{p-59032668.js → p-CIs0DJX1.js} +1 -1
  309. package/dist/components/p-CZ1Qa_xv.js +1 -0
  310. package/dist/components/p-CZyp2id8.js +1 -0
  311. package/dist/components/p-Ci26QjYl.js +1 -0
  312. package/dist/components/p-D1P5FeY6.js +1 -0
  313. package/dist/components/p-D3BXoJJN.js +1 -0
  314. package/dist/components/p-DEpMfvdS.js +1 -0
  315. package/dist/components/p-DGZHaSjz.js +1 -0
  316. package/dist/components/p-DHNuRvq0.js +1 -0
  317. package/dist/components/p-DMLgHhJc.js +1 -0
  318. package/dist/components/p-DO6VjClS.js +1 -0
  319. package/dist/components/p-DPgx10Cw.js +1 -0
  320. package/dist/components/p-DXQBJLz-.js +1 -0
  321. package/dist/components/p-D_mp9WMh.js +1 -0
  322. package/dist/components/p-De54LBPx.js +1 -0
  323. package/dist/components/p-DjrAIJhB.js +1 -0
  324. package/dist/components/p-DsAkiOMC.js +1 -0
  325. package/dist/components/p-Dw5WRKyY.js +1 -0
  326. package/dist/components/p-ILu24ZUX.js +1 -0
  327. package/dist/components/p-K5a7HQMt.js +1 -0
  328. package/dist/components/p-KilWQmEJ.js +1 -0
  329. package/dist/components/p-Mnv_zHXq.js +1 -0
  330. package/dist/components/p-RaMDrnzd.js +1 -0
  331. package/dist/components/p-TLO_pywp.js +1 -0
  332. package/dist/components/p-_3Hgy0Z4.js +1 -0
  333. package/dist/components/p-a287d016.entry.js +1 -0
  334. package/dist/components/p-a886721b.entry.js +1 -0
  335. package/dist/components/p-a8e75bdc.entry.js +1 -0
  336. package/dist/components/p-al_CUADF.js +1 -0
  337. package/dist/components/p-b5921385.entry.js +1 -0
  338. package/dist/components/p-c2f3cf8b.entry.js +1 -0
  339. package/dist/components/p-ca6a4b08.entry.js +1 -0
  340. package/dist/components/p-e311af0e.entry.js +1 -0
  341. package/dist/components/p-eYTN_sVb.js +1 -0
  342. package/dist/components/p-edfd86c9.entry.js +1 -0
  343. package/dist/components/p-ef419ddf.entry.js +1 -0
  344. package/dist/components/p-efd0223b.entry.js +1 -0
  345. package/dist/components/p-f1abef98.entry.js +1 -0
  346. package/dist/components/p-f23df530.entry.js +1 -0
  347. package/dist/components/p-f37dc3c4.entry.js +1 -0
  348. package/dist/components/p-f793f80a.entry.js +1 -0
  349. package/dist/components/p-y4p55dbx.js +1 -0
  350. package/dist/components/vertex-auto-resize-textarea.d.ts +2 -2
  351. package/dist/components/vertex-auto-resize-textarea.js +1 -6
  352. package/dist/components/vertex-avatar-group.d.ts +2 -2
  353. package/dist/components/vertex-avatar-group.js +1 -34
  354. package/dist/components/vertex-avatar.d.ts +2 -2
  355. package/dist/components/vertex-avatar.js +1 -68
  356. package/dist/components/vertex-badge.d.ts +2 -2
  357. package/dist/components/vertex-badge.js +1 -43
  358. package/dist/components/vertex-banner.d.ts +2 -2
  359. package/dist/components/vertex-banner.js +1 -141
  360. package/dist/components/vertex-button.d.ts +2 -2
  361. package/dist/components/vertex-button.js +1 -96
  362. package/dist/components/vertex-card-group.d.ts +2 -2
  363. package/dist/components/vertex-card-group.js +1 -51
  364. package/dist/components/vertex-card.d.ts +2 -2
  365. package/dist/components/vertex-card.js +1 -49
  366. package/dist/components/vertex-chip.d.ts +2 -2
  367. package/dist/components/vertex-chip.js +1 -45
  368. package/dist/components/vertex-click-to-edit-textfield.d.ts +2 -2
  369. package/dist/components/vertex-click-to-edit-textfield.js +1 -156
  370. package/dist/components/vertex-collapsible.d.ts +2 -2
  371. package/dist/components/vertex-collapsible.js +1 -63
  372. package/dist/components/vertex-color-circle-picker.d.ts +2 -2
  373. package/dist/components/vertex-color-circle-picker.js +1 -131
  374. package/dist/components/vertex-color-picker.d.ts +2 -2
  375. package/dist/components/vertex-color-picker.js +1 -75
  376. package/dist/components/vertex-color-swatch.d.ts +2 -2
  377. package/dist/components/vertex-color-swatch.js +1 -6
  378. package/dist/components/vertex-context-menu.d.ts +2 -2
  379. package/dist/components/vertex-context-menu.js +1 -125
  380. package/dist/components/vertex-dialog.d.ts +2 -2
  381. package/dist/components/vertex-dialog.js +1 -265
  382. package/dist/components/vertex-draggable-popover.d.ts +2 -2
  383. package/dist/components/vertex-draggable-popover.js +1 -119
  384. package/dist/components/vertex-dropdown-menu.d.ts +2 -2
  385. package/dist/components/vertex-dropdown-menu.js +1 -64
  386. package/dist/components/vertex-expandable.d.ts +2 -2
  387. package/dist/components/vertex-expandable.js +1 -6
  388. package/dist/components/vertex-help-tooltip.d.ts +2 -2
  389. package/dist/components/vertex-help-tooltip.js +1 -67
  390. package/dist/components/vertex-icon-button.d.ts +2 -2
  391. package/dist/components/vertex-icon-button.js +1 -6
  392. package/dist/components/vertex-icon.d.ts +2 -2
  393. package/dist/components/vertex-icon.js +1 -6
  394. package/dist/components/vertex-logo-loading.d.ts +2 -2
  395. package/dist/components/vertex-logo-loading.js +1 -34
  396. package/dist/components/vertex-menu-divider.d.ts +2 -2
  397. package/dist/components/vertex-menu-divider.js +1 -34
  398. package/dist/components/vertex-menu-item.d.ts +2 -2
  399. package/dist/components/vertex-menu-item.js +1 -44
  400. package/dist/components/vertex-menu.d.ts +2 -2
  401. package/dist/components/vertex-menu.js +1 -6
  402. package/dist/components/vertex-popover.d.ts +2 -2
  403. package/dist/components/vertex-popover.js +1 -6
  404. package/dist/components/vertex-radio-group.d.ts +2 -2
  405. package/dist/components/vertex-radio-group.js +1 -98
  406. package/dist/components/vertex-radio.d.ts +2 -2
  407. package/dist/components/vertex-radio.js +1 -56
  408. package/dist/components/vertex-resizable.d.ts +2 -2
  409. package/dist/components/vertex-resizable.js +1 -463
  410. package/dist/components/vertex-result-list.d.ts +2 -2
  411. package/dist/components/vertex-result-list.js +1 -6
  412. package/dist/components/vertex-search-bar.d.ts +2 -2
  413. package/dist/components/vertex-search-bar.js +1 -568
  414. package/dist/components/vertex-select.d.ts +2 -2
  415. package/dist/components/vertex-select.js +1 -202
  416. package/dist/components/vertex-slider.d.ts +2 -2
  417. package/dist/components/vertex-slider.js +1 -81
  418. package/dist/components/vertex-spinner.d.ts +2 -2
  419. package/dist/components/vertex-spinner.js +1 -49
  420. package/dist/components/vertex-tab.d.ts +2 -2
  421. package/dist/components/vertex-tab.js +1 -46
  422. package/dist/components/vertex-tabs.d.ts +2 -2
  423. package/dist/components/vertex-tabs.js +1 -133
  424. package/dist/components/vertex-textfield.d.ts +2 -2
  425. package/dist/components/vertex-textfield.js +1 -6
  426. package/dist/components/vertex-toast.d.ts +2 -2
  427. package/dist/components/vertex-toast.js +1 -127
  428. package/dist/components/vertex-toggle.d.ts +2 -2
  429. package/dist/components/vertex-toggle.js +1 -67
  430. package/dist/components/vertex-tooltip.d.ts +2 -2
  431. package/dist/components/vertex-tooltip.js +1 -6
  432. package/dist/esm/components.js +14 -83
  433. package/dist/{components/dom.js → esm/dom-Oz9KwTs0.js} +4 -4
  434. package/dist/esm/icon-helper-Dw0fFePg.js +557 -0
  435. package/dist/esm/index-Beav1bNT.js +92 -0
  436. package/dist/esm/index-C27tS7nl.js +2219 -0
  437. package/dist/esm/index-DYRkgxax.js +60 -0
  438. package/dist/esm/index.js +50 -49
  439. package/dist/esm/{lib-73fbca8b.js → lib-DgySd_r0.js} +2 -2
  440. package/dist/esm/loader.js +6 -14
  441. package/dist/esm/slots-DXuCPm6v.js +26 -0
  442. package/dist/esm/templates-DZ8xV3--.js +228 -0
  443. package/dist/esm/tslib.es6-CIs0DJX1.js +65 -0
  444. package/dist/esm/vertex-auto-resize-textarea.entry.js +136 -3
  445. package/dist/esm/vertex-avatar-group.entry.js +15 -2
  446. package/dist/esm/vertex-avatar.entry.js +47 -3
  447. package/dist/esm/vertex-badge.entry.js +24 -3
  448. package/dist/esm/vertex-banner.entry.js +125 -4
  449. package/dist/esm/vertex-button.entry.js +86 -3
  450. package/dist/esm/vertex-card-group.entry.js +37 -3
  451. package/dist/esm/vertex-card.entry.js +36 -2
  452. package/dist/esm/vertex-chip.entry.js +31 -3
  453. package/dist/esm/vertex-click-to-edit-textfield.entry.js +114 -3
  454. package/dist/esm/vertex-collapsible.entry.js +25 -3
  455. package/dist/esm/vertex-color-circle-picker.entry.js +145 -3
  456. package/dist/esm/vertex-color-picker.entry.js +70 -4
  457. package/dist/esm/vertex-color-swatch.entry.js +144 -4
  458. package/dist/esm/vertex-context-menu.entry.js +93 -2
  459. package/dist/esm/vertex-dialog.entry.js +230 -3
  460. package/dist/esm/vertex-draggable-popover.entry.js +82 -3
  461. package/dist/esm/vertex-dropdown-menu.entry.js +36 -2
  462. package/dist/esm/vertex-expandable.entry.js +104 -3
  463. package/dist/esm/vertex-help-tooltip.entry.js +39 -2
  464. package/dist/esm/vertex-icon-button.entry.js +61 -4
  465. package/dist/esm/vertex-icon.entry.js +32 -4
  466. package/dist/esm/vertex-logo-loading.entry.js +15 -2
  467. package/dist/esm/vertex-menu-divider.entry.js +15 -2
  468. package/dist/esm/vertex-menu-item.entry.js +27 -3
  469. package/dist/esm/vertex-menu.entry.js +83 -3
  470. package/dist/esm/vertex-popover.entry.js +1898 -3
  471. package/dist/esm/vertex-radio-group.entry.js +76 -2
  472. package/dist/esm/vertex-radio.entry.js +32 -3
  473. package/dist/esm/vertex-resizable.entry.js +442 -4
  474. package/dist/esm/vertex-result-list.entry.js +304 -5
  475. package/dist/esm/vertex-search-bar.entry.js +532 -5
  476. package/dist/esm/vertex-select.entry.js +184 -3
  477. package/dist/esm/vertex-slider.entry.js +58 -4
  478. package/dist/esm/vertex-spinner.entry.js +35 -3
  479. package/dist/esm/vertex-tab.entry.js +23 -3
  480. package/dist/esm/vertex-tabs.entry.js +108 -4
  481. package/dist/esm/vertex-textfield.entry.js +149 -3
  482. package/dist/esm/vertex-toast.entry.js +112 -3
  483. package/dist/esm/vertex-toggle.entry.js +50 -3
  484. package/dist/esm/vertex-tooltip.entry.js +347 -6
  485. package/dist/types/components/auto-resize-textarea/auto-resize-textarea.d.ts +43 -43
  486. package/dist/types/components/avatar/avatar.d.ts +33 -33
  487. package/dist/types/components/avatar-group/avatar-group.d.ts +1 -1
  488. package/dist/types/components/badge/badge.d.ts +10 -10
  489. package/dist/types/components/banner/banner.d.ts +50 -50
  490. package/dist/types/components/button/button.d.ts +52 -52
  491. package/dist/types/components/card/card.d.ts +19 -19
  492. package/dist/types/components/card-group/card-group.d.ts +13 -13
  493. package/dist/types/components/chip/chip.d.ts +11 -11
  494. package/dist/types/components/click-to-edit-text-field/click-to-edit-text-field.d.ts +78 -78
  495. package/dist/types/components/collapsible/collapsible.d.ts +10 -10
  496. package/dist/types/components/color-circle-picker/color-circle-picker.d.ts +89 -89
  497. package/dist/types/components/color-picker/color-picker.d.ts +46 -46
  498. package/dist/types/components/color-swatch/color-swatch.d.ts +69 -69
  499. package/dist/types/components/context-menu/context-menu.d.ts +33 -33
  500. package/dist/types/components/dialog/dialog.d.ts +55 -55
  501. package/dist/types/components/draggable-popover/draggable-popover.d.ts +32 -32
  502. package/dist/types/components/dropdown-menu/dropdown-menu.d.ts +22 -22
  503. package/dist/types/components/expandable/expandable.d.ts +58 -58
  504. package/dist/types/components/help-tooltip/help-tooltip.d.ts +22 -22
  505. package/dist/types/components/icon/icon.d.ts +15 -15
  506. package/dist/types/components/icon/icons/adjustments.d.ts +0 -1
  507. package/dist/types/components/icon/icons/align-to-global.d.ts +0 -1
  508. package/dist/types/components/icon/icons/align-to-part.d.ts +0 -1
  509. package/dist/types/components/icon/icons/align-to-surface.d.ts +0 -1
  510. package/dist/types/components/icon/icons/align-view-to-plane.d.ts +0 -1
  511. package/dist/types/components/icon/icons/annotation.d.ts +0 -1
  512. package/dist/types/components/icon/icons/arrow-filled.d.ts +0 -1
  513. package/dist/types/components/icon/icons/arrow-left-circled.d.ts +0 -1
  514. package/dist/types/components/icon/icons/arrow-line-left.d.ts +0 -1
  515. package/dist/types/components/icon/icons/arrow-line-right.d.ts +0 -1
  516. package/dist/types/components/icon/icons/arrow-partial.d.ts +0 -1
  517. package/dist/types/components/icon/icons/arrow-right-circled.d.ts +0 -1
  518. package/dist/types/components/icon/icons/arrow-swap.d.ts +0 -1
  519. package/dist/types/components/icon/icons/arrow-triangle-left.d.ts +0 -1
  520. package/dist/types/components/icon/icons/arrow-triangle-right.d.ts +0 -1
  521. package/dist/types/components/icon/icons/arrow-up-circled.d.ts +0 -1
  522. package/dist/types/components/icon/icons/attachment.d.ts +0 -1
  523. package/dist/types/components/icon/icons/axis-x.d.ts +0 -1
  524. package/dist/types/components/icon/icons/axis-y.d.ts +0 -1
  525. package/dist/types/components/icon/icons/axis-z.d.ts +0 -1
  526. package/dist/types/components/icon/icons/back.d.ts +0 -1
  527. package/dist/types/components/icon/icons/box-cursor.d.ts +0 -1
  528. package/dist/types/components/icon/icons/box-select.d.ts +0 -1
  529. package/dist/types/components/icon/icons/camera-add.d.ts +0 -1
  530. package/dist/types/components/icon/icons/camera.d.ts +0 -1
  531. package/dist/types/components/icon/icons/caret-down.d.ts +0 -1
  532. package/dist/types/components/icon/icons/caret-left.d.ts +0 -1
  533. package/dist/types/components/icon/icons/caret-right.d.ts +0 -1
  534. package/dist/types/components/icon/icons/caret-up.d.ts +0 -1
  535. package/dist/types/components/icon/icons/caution.d.ts +0 -1
  536. package/dist/types/components/icon/icons/check-circle.d.ts +0 -1
  537. package/dist/types/components/icon/icons/check.d.ts +0 -1
  538. package/dist/types/components/icon/icons/chevron-down.d.ts +0 -1
  539. package/dist/types/components/icon/icons/chevron-left.d.ts +0 -1
  540. package/dist/types/components/icon/icons/chevron-right.d.ts +0 -1
  541. package/dist/types/components/icon/icons/chevron-up.d.ts +0 -1
  542. package/dist/types/components/icon/icons/circle-outline.d.ts +0 -1
  543. package/dist/types/components/icon/icons/close-circle-fill.d.ts +0 -1
  544. package/dist/types/components/icon/icons/close-circle.d.ts +0 -1
  545. package/dist/types/components/icon/icons/close.d.ts +0 -1
  546. package/dist/types/components/icon/icons/collapse-all.d.ts +0 -1
  547. package/dist/types/components/icon/icons/columns-add.d.ts +0 -1
  548. package/dist/types/components/icon/icons/columns.d.ts +0 -1
  549. package/dist/types/components/icon/icons/comment-add.d.ts +0 -1
  550. package/dist/types/components/icon/icons/comment-filled.d.ts +0 -1
  551. package/dist/types/components/icon/icons/comment-reopen.d.ts +0 -1
  552. package/dist/types/components/icon/icons/comment-resolve.d.ts +0 -1
  553. package/dist/types/components/icon/icons/comment-show.d.ts +0 -1
  554. package/dist/types/components/icon/icons/compare.d.ts +0 -1
  555. package/dist/types/components/icon/icons/compress.d.ts +0 -1
  556. package/dist/types/components/icon/icons/copy.d.ts +0 -1
  557. package/dist/types/components/icon/icons/cross-section.d.ts +0 -1
  558. package/dist/types/components/icon/icons/cube-orthographic.d.ts +0 -1
  559. package/dist/types/components/icon/icons/cube-perspective.d.ts +0 -1
  560. package/dist/types/components/icon/icons/cube-stack.d.ts +0 -1
  561. package/dist/types/components/icon/icons/delete.d.ts +0 -1
  562. package/dist/types/components/icon/icons/download.d.ts +0 -1
  563. package/dist/types/components/icon/icons/drag-indicator.d.ts +0 -1
  564. package/dist/types/components/icon/icons/ellipse.d.ts +0 -1
  565. package/dist/types/components/icon/icons/error-circle.d.ts +0 -1
  566. package/dist/types/components/icon/icons/expand-all.d.ts +0 -1
  567. package/dist/types/components/icon/icons/expand.d.ts +0 -1
  568. package/dist/types/components/icon/icons/export.d.ts +0 -1
  569. package/dist/types/components/icon/icons/file-folder.d.ts +0 -1
  570. package/dist/types/components/icon/icons/file-pdf.d.ts +0 -1
  571. package/dist/types/components/icon/icons/file.d.ts +0 -1
  572. package/dist/types/components/icon/icons/fit-all.d.ts +0 -1
  573. package/dist/types/components/icon/icons/fit-selected.d.ts +0 -1
  574. package/dist/types/components/icon/icons/flip.d.ts +0 -1
  575. package/dist/types/components/icon/icons/folder-plus.d.ts +0 -1
  576. package/dist/types/components/icon/icons/forward.d.ts +0 -1
  577. package/dist/types/components/icon/icons/gear.d.ts +0 -1
  578. package/dist/types/components/icon/icons/help.d.ts +0 -1
  579. package/dist/types/components/icon/icons/info.d.ts +0 -1
  580. package/dist/types/components/icon/icons/invert.d.ts +0 -1
  581. package/dist/types/components/icon/icons/label-off.d.ts +0 -1
  582. package/dist/types/components/icon/icons/label.d.ts +0 -1
  583. package/dist/types/components/icon/icons/line-dot-left.d.ts +0 -1
  584. package/dist/types/components/icon/icons/line-dot-right.d.ts +0 -1
  585. package/dist/types/components/icon/icons/line-hash-left.d.ts +0 -1
  586. package/dist/types/components/icon/icons/line-hash-right.d.ts +0 -1
  587. package/dist/types/components/icon/icons/line.d.ts +0 -1
  588. package/dist/types/components/icon/icons/locate.d.ts +0 -1
  589. package/dist/types/components/icon/icons/lock-closed.d.ts +0 -1
  590. package/dist/types/components/icon/icons/lock-open.d.ts +0 -1
  591. package/dist/types/components/icon/icons/markup.d.ts +0 -1
  592. package/dist/types/components/icon/icons/menu.d.ts +0 -1
  593. package/dist/types/components/icon/icons/notification.d.ts +0 -1
  594. package/dist/types/components/icon/icons/open-window.d.ts +0 -1
  595. package/dist/types/components/icon/icons/open.d.ts +0 -1
  596. package/dist/types/components/icon/icons/pan.d.ts +0 -1
  597. package/dist/types/components/icon/icons/paper-airplane.d.ts +0 -1
  598. package/dist/types/components/icon/icons/paste.d.ts +0 -1
  599. package/dist/types/components/icon/icons/pencil.d.ts +0 -1
  600. package/dist/types/components/icon/icons/person-height.d.ts +0 -1
  601. package/dist/types/components/icon/icons/person-run.d.ts +0 -1
  602. package/dist/types/components/icon/icons/person-short.d.ts +0 -1
  603. package/dist/types/components/icon/icons/person-tall.d.ts +0 -1
  604. package/dist/types/components/icon/icons/person-walk.d.ts +0 -1
  605. package/dist/types/components/icon/icons/pin-fill.d.ts +0 -1
  606. package/dist/types/components/icon/icons/pin-line.d.ts +0 -1
  607. package/dist/types/components/icon/icons/pin-text-fill.d.ts +0 -1
  608. package/dist/types/components/icon/icons/pin-text-square.d.ts +0 -1
  609. package/dist/types/components/icon/icons/pin-text.d.ts +0 -1
  610. package/dist/types/components/icon/icons/plus-with-arrow.d.ts +0 -1
  611. package/dist/types/components/icon/icons/plus.d.ts +0 -1
  612. package/dist/types/components/icon/icons/pmi.d.ts +0 -1
  613. package/dist/types/components/icon/icons/precise-measurement.d.ts +0 -1
  614. package/dist/types/components/icon/icons/rabbit.d.ts +0 -1
  615. package/dist/types/components/icon/icons/refresh.d.ts +0 -1
  616. package/dist/types/components/icon/icons/rename.d.ts +0 -1
  617. package/dist/types/components/icon/icons/report.d.ts +0 -1
  618. package/dist/types/components/icon/icons/reset.d.ts +0 -1
  619. package/dist/types/components/icon/icons/resize.d.ts +0 -1
  620. package/dist/types/components/icon/icons/rotate.d.ts +0 -1
  621. package/dist/types/components/icon/icons/ruler.d.ts +0 -1
  622. package/dist/types/components/icon/icons/scissors.d.ts +0 -1
  623. package/dist/types/components/icon/icons/search.d.ts +0 -1
  624. package/dist/types/components/icon/icons/show-only-nearby.d.ts +0 -1
  625. package/dist/types/components/icon/icons/snapshots.d.ts +0 -1
  626. package/dist/types/components/icon/icons/square-dot-outline.d.ts +0 -1
  627. package/dist/types/components/icon/icons/star.d.ts +0 -1
  628. package/dist/types/components/icon/icons/tag.d.ts +0 -1
  629. package/dist/types/components/icon/icons/tape-measure.d.ts +0 -1
  630. package/dist/types/components/icon/icons/teleport-and-align.d.ts +0 -1
  631. package/dist/types/components/icon/icons/teleport-toward.d.ts +0 -1
  632. package/dist/types/components/icon/icons/teleport.d.ts +0 -1
  633. package/dist/types/components/icon/icons/triad.d.ts +0 -1
  634. package/dist/types/components/icon/icons/turtle.d.ts +0 -1
  635. package/dist/types/components/icon/icons/update.d.ts +0 -1
  636. package/dist/types/components/icon/icons/version-history.d.ts +0 -1
  637. package/dist/types/components/icon/icons/views.d.ts +0 -1
  638. package/dist/types/components/icon/icons/visibility-hidden.d.ts +0 -1
  639. package/dist/types/components/icon/icons/visibility-partial.d.ts +0 -1
  640. package/dist/types/components/icon/icons/visibility-visible.d.ts +0 -1
  641. package/dist/types/components/icon/icons/workspace-add.d.ts +0 -1
  642. package/dist/types/components/icon/icons/zoom.d.ts +0 -1
  643. package/dist/types/components/icon-button/icon-button.d.ts +36 -36
  644. package/dist/types/components/logo-loading/logo-loading.d.ts +1 -1
  645. package/dist/types/components/menu/menu.d.ts +53 -53
  646. package/dist/types/components/menu-divider/menu-divider.d.ts +1 -1
  647. package/dist/types/components/menu-item/menu-item.d.ts +6 -6
  648. package/dist/types/components/popover/popover.d.ts +156 -156
  649. package/dist/types/components/radio/radio.d.ts +28 -28
  650. package/dist/types/components/radio-group/radio-group.d.ts +23 -23
  651. package/dist/types/components/resizable/resizable.d.ts +161 -161
  652. package/dist/types/components/result-list/result-list.d.ts +42 -42
  653. package/dist/types/components/result-list/types.d.ts +2 -2
  654. package/dist/types/components/search-bar/lib.d.ts +5 -5
  655. package/dist/types/components/search-bar/search-bar.d.ts +144 -144
  656. package/dist/types/components/select/select.d.ts +65 -65
  657. package/dist/types/components/slider/slider.d.ts +44 -44
  658. package/dist/types/components/spinner/spinner.d.ts +11 -11
  659. package/dist/types/components/tab/tab.d.ts +8 -8
  660. package/dist/types/components/tabs/tabs.d.ts +20 -20
  661. package/dist/types/components/text-field/text-field.d.ts +112 -112
  662. package/dist/types/components/toast/toast.d.ts +50 -50
  663. package/dist/types/components/toggle/toggle.d.ts +17 -17
  664. package/dist/types/components/tooltip/tooltip.d.ts +60 -60
  665. package/dist/types/components.d.ts +970 -90
  666. package/dist/types/stencil-public-runtime.d.ts +257 -34
  667. package/dist/types/types/icon.d.ts +137 -137
  668. package/dist/types/types/point.d.ts +2 -2
  669. package/dist/types/util/components/slots.d.ts +3 -3
  670. package/dist/types/util/templates/binding.d.ts +20 -20
  671. package/dist/types/util/templates/disposable.d.ts +4 -4
  672. package/dist/types/util/templates/element-pool.d.ts +19 -19
  673. package/dist/types/util/templates/templates.d.ts +2 -2
  674. package/loader/cdn.js +1 -3
  675. package/loader/index.cjs.js +1 -3
  676. package/loader/index.d.ts +5 -2
  677. package/loader/index.es2017.js +1 -3
  678. package/loader/index.js +1 -3
  679. package/package.json +32 -32
  680. package/dist/cjs/auto-resize-textarea-deb05359.js +0 -137
  681. package/dist/cjs/avatar-e69bb687.js +0 -45
  682. package/dist/cjs/avatar-group-d2af53e4.js +0 -17
  683. package/dist/cjs/badge-d39ac1fc.js +0 -23
  684. package/dist/cjs/banner-8325d5ca.js +0 -104
  685. package/dist/cjs/button-e63d25b1.js +0 -70
  686. package/dist/cjs/card-ae9e8a8f.js +0 -30
  687. package/dist/cjs/card-group-da93e610.js +0 -30
  688. package/dist/cjs/chip-a3b2e8e0.js +0 -25
  689. package/dist/cjs/click-to-edit-text-field-2c87ee66.js +0 -105
  690. package/dist/cjs/collapsible-50ea984c.js +0 -25
  691. package/dist/cjs/color-circle-picker-b0927289.js +0 -82
  692. package/dist/cjs/color-picker-6aa97d3b.js +0 -47
  693. package/dist/cjs/color-swatch-6d98da5f.js +0 -95
  694. package/dist/cjs/context-menu-664922cd.js +0 -91
  695. package/dist/cjs/dialog-34244fe1.js +0 -225
  696. package/dist/cjs/dom-ff96a4bc.js +0 -75
  697. package/dist/cjs/draggable-popover-125717a7.js +0 -83
  698. package/dist/cjs/dropdown-menu-5ae03a72.js +0 -31
  699. package/dist/cjs/expandable-b1cd4f0b.js +0 -72
  700. package/dist/cjs/help-tooltip-f72eccc7.js +0 -34
  701. package/dist/cjs/icon-ab3e2b83.js +0 -26
  702. package/dist/cjs/icon-button-9a6314cd.js +0 -43
  703. package/dist/cjs/icon-helper-b2117772.js +0 -785
  704. package/dist/cjs/index-6a92256c.js +0 -2152
  705. package/dist/cjs/index-e1b40fa6.js +0 -91
  706. package/dist/cjs/logo-loading-4d49fedf.js +0 -17
  707. package/dist/cjs/menu-bfc03108.js +0 -74
  708. package/dist/cjs/menu-divider-5bdebe5d.js +0 -17
  709. package/dist/cjs/menu-item-d213fd4d.js +0 -25
  710. package/dist/cjs/popover-942209b8.js +0 -1706
  711. package/dist/cjs/radio-bff991d2.js +0 -34
  712. package/dist/cjs/radio-group-11ecf8bf.js +0 -78
  713. package/dist/cjs/resizable-c0a69532.js +0 -423
  714. package/dist/cjs/result-list-241ffe8d.js +0 -304
  715. package/dist/cjs/search-bar-2e7ee35a.js +0 -527
  716. package/dist/cjs/select-554f3c11.js +0 -163
  717. package/dist/cjs/shadow-css-8eb74fbb.js +0 -389
  718. package/dist/cjs/slider-7714cccb.js +0 -44
  719. package/dist/cjs/slots-fb5ac359.js +0 -29
  720. package/dist/cjs/spinner-bb990a42.js +0 -29
  721. package/dist/cjs/tab-4335cd8f.js +0 -26
  722. package/dist/cjs/tabs-6f3e76e1.js +0 -111
  723. package/dist/cjs/templates-e7b3ffbb.js +0 -230
  724. package/dist/cjs/text-field-bccbde1f.js +0 -133
  725. package/dist/cjs/toast-bee7f47b.js +0 -90
  726. package/dist/cjs/toggle-a5dde469.js +0 -40
  727. package/dist/cjs/tooltip-634eb8c9.js +0 -333
  728. package/dist/cjs/tslib.es6-838fd860.js +0 -68
  729. package/dist/components/auto-resize-textarea.js +0 -157
  730. package/dist/components/color-swatch.js +0 -124
  731. package/dist/components/expandable.js +0 -100
  732. package/dist/components/icon-button.js +0 -63
  733. package/dist/components/icon-helper.js +0 -783
  734. package/dist/components/icon.js +0 -43
  735. package/dist/components/index2.js +0 -89
  736. package/dist/components/menu.js +0 -103
  737. package/dist/components/p-01d4be1d.entry.js +0 -1
  738. package/dist/components/p-0541e2b0.js +0 -1
  739. package/dist/components/p-09ba50c3.js +0 -1
  740. package/dist/components/p-0b4406fa.entry.js +0 -1
  741. package/dist/components/p-0de26b21.entry.js +0 -1
  742. package/dist/components/p-0e628c05.js +0 -1
  743. package/dist/components/p-16fc9e9a.entry.js +0 -1
  744. package/dist/components/p-18ed73e9.js +0 -1
  745. package/dist/components/p-1e645c1f.js +0 -1
  746. package/dist/components/p-211c1186.entry.js +0 -1
  747. package/dist/components/p-226e83a6.entry.js +0 -1
  748. package/dist/components/p-22ec9b78.entry.js +0 -1
  749. package/dist/components/p-24c72960.entry.js +0 -1
  750. package/dist/components/p-2930bcb0.entry.js +0 -1
  751. package/dist/components/p-29d7697f.js +0 -1
  752. package/dist/components/p-2ae8175d.entry.js +0 -1
  753. package/dist/components/p-2cff3285.js +0 -1
  754. package/dist/components/p-33400eed.entry.js +0 -1
  755. package/dist/components/p-3508048d.js +0 -12
  756. package/dist/components/p-36c853c4.js +0 -1
  757. package/dist/components/p-39133bc7.js +0 -1
  758. package/dist/components/p-3b794014.entry.js +0 -1
  759. package/dist/components/p-3dd08a0f.js +0 -1
  760. package/dist/components/p-406e73da.entry.js +0 -1
  761. package/dist/components/p-407430fe.entry.js +0 -1
  762. package/dist/components/p-41ced35c.entry.js +0 -1
  763. package/dist/components/p-43b1b3f9.js +0 -1
  764. package/dist/components/p-48629bf1.js +0 -1
  765. package/dist/components/p-4e3ba3df.entry.js +0 -1
  766. package/dist/components/p-53515813.entry.js +0 -1
  767. package/dist/components/p-5366a759.entry.js +0 -1
  768. package/dist/components/p-573b8ec6.entry.js +0 -1
  769. package/dist/components/p-59fb829f.js +0 -1
  770. package/dist/components/p-5fb1724f.js +0 -1
  771. package/dist/components/p-606596de.entry.js +0 -1
  772. package/dist/components/p-65f9817e.js +0 -1
  773. package/dist/components/p-6834631c.js +0 -2
  774. package/dist/components/p-69375605.entry.js +0 -1
  775. package/dist/components/p-6a49c365.entry.js +0 -1
  776. package/dist/components/p-6a640a2c.js +0 -1
  777. package/dist/components/p-6b6c2260.js +0 -1
  778. package/dist/components/p-6b862967.js +0 -1
  779. package/dist/components/p-6d4f055b.entry.js +0 -1
  780. package/dist/components/p-756c9977.entry.js +0 -1
  781. package/dist/components/p-7ace7800.entry.js +0 -1
  782. package/dist/components/p-7e6ca4fb.entry.js +0 -1
  783. package/dist/components/p-80c989fa.entry.js +0 -1
  784. package/dist/components/p-817bf6ff.js +0 -1
  785. package/dist/components/p-81cb4da4.js +0 -1
  786. package/dist/components/p-8a52767f.js +0 -1
  787. package/dist/components/p-8b211d6f.js +0 -1
  788. package/dist/components/p-8c69bb83.js +0 -1
  789. package/dist/components/p-8d83dfff.entry.js +0 -1
  790. package/dist/components/p-8fe0084d.js +0 -1
  791. package/dist/components/p-90931a94.js +0 -1
  792. package/dist/components/p-90b4e04b.js +0 -1
  793. package/dist/components/p-90cf31d2.js +0 -1
  794. package/dist/components/p-91123ff6.entry.js +0 -1
  795. package/dist/components/p-95358d00.entry.js +0 -1
  796. package/dist/components/p-96f55673.js +0 -1
  797. package/dist/components/p-988058f9.js +0 -1
  798. package/dist/components/p-9c384f6c.entry.js +0 -1
  799. package/dist/components/p-a2018217.entry.js +0 -1
  800. package/dist/components/p-a3c04bbd.js +0 -1
  801. package/dist/components/p-a6614625.js +0 -1
  802. package/dist/components/p-bca6275a.entry.js +0 -1
  803. package/dist/components/p-bec53c3a.js +0 -1
  804. package/dist/components/p-c2706288.js +0 -1
  805. package/dist/components/p-c2c076f1.js +0 -1
  806. package/dist/components/p-c3ec6642.js +0 -19
  807. package/dist/components/p-c8ab09fb.js +0 -1
  808. package/dist/components/p-c939fa4e.js +0 -1
  809. package/dist/components/p-c9a967d9.js +0 -1
  810. package/dist/components/p-cc2e3192.entry.js +0 -1
  811. package/dist/components/p-d7c0c287.entry.js +0 -1
  812. package/dist/components/p-dfe98f07.entry.js +0 -1
  813. package/dist/components/p-e3d0c2d1.entry.js +0 -1
  814. package/dist/components/p-e3ea44b2.js +0 -1
  815. package/dist/components/p-ea8f3750.entry.js +0 -1
  816. package/dist/components/p-ec7be8df.js +0 -1
  817. package/dist/components/p-ee496965.entry.js +0 -1
  818. package/dist/components/p-f2bc7ec5.js +0 -1
  819. package/dist/components/p-f55574fb.js +0 -1
  820. package/dist/components/p-f6f2bc86.entry.js +0 -1
  821. package/dist/components/p-fe062eb0.js +0 -7
  822. package/dist/components/p-fe7e7a74.entry.js +0 -1
  823. package/dist/components/p-fedcc21e.js +0 -1
  824. package/dist/components/p-ff4a1c3a.js +0 -1
  825. package/dist/components/popover.js +0 -1737
  826. package/dist/components/result-list.js +0 -565
  827. package/dist/components/slots.js +0 -26
  828. package/dist/components/text-field.js +0 -171
  829. package/dist/components/tooltip.js +0 -360
  830. package/dist/components/tslib.es6.js +0 -65
  831. package/dist/esm/auto-resize-textarea-087fecdb.js +0 -135
  832. package/dist/esm/avatar-775455a5.js +0 -43
  833. package/dist/esm/avatar-group-e5ca86bf.js +0 -15
  834. package/dist/esm/badge-6d27ca92.js +0 -21
  835. package/dist/esm/banner-b292060d.js +0 -102
  836. package/dist/esm/button-81207236.js +0 -68
  837. package/dist/esm/card-1e8790aa.js +0 -28
  838. package/dist/esm/card-group-4e8e0421.js +0 -28
  839. package/dist/esm/chip-4e568eee.js +0 -23
  840. package/dist/esm/click-to-edit-text-field-d9b27cd0.js +0 -103
  841. package/dist/esm/collapsible-b52960e6.js +0 -23
  842. package/dist/esm/color-circle-picker-c4e92fea.js +0 -80
  843. package/dist/esm/color-picker-b292ad8d.js +0 -45
  844. package/dist/esm/color-swatch-ab647632.js +0 -93
  845. package/dist/esm/context-menu-12f1afe1.js +0 -89
  846. package/dist/esm/dialog-c69d9152.js +0 -223
  847. package/dist/esm/dom-64053c71.js +0 -73
  848. package/dist/esm/dom-9d0f7bf4.js +0 -13
  849. package/dist/esm/draggable-popover-9f9b7c97.js +0 -81
  850. package/dist/esm/dropdown-menu-1598ba20.js +0 -29
  851. package/dist/esm/expandable-b487cb00.js +0 -70
  852. package/dist/esm/help-tooltip-c2f0d996.js +0 -32
  853. package/dist/esm/icon-390b9402.js +0 -24
  854. package/dist/esm/icon-button-552e31fe.js +0 -41
  855. package/dist/esm/icon-helper-7437b548.js +0 -783
  856. package/dist/esm/index-72f28b71.js +0 -2118
  857. package/dist/esm/index-9c609209.js +0 -89
  858. package/dist/esm/logo-loading-3c7fa23d.js +0 -15
  859. package/dist/esm/menu-49420f98.js +0 -72
  860. package/dist/esm/menu-divider-87c888cb.js +0 -15
  861. package/dist/esm/menu-item-c33aa9dd.js +0 -23
  862. package/dist/esm/polyfills/core-js.js +0 -11
  863. package/dist/esm/polyfills/css-shim.js +0 -1
  864. package/dist/esm/polyfills/dom.js +0 -79
  865. package/dist/esm/polyfills/es5-html-element.js +0 -1
  866. package/dist/esm/polyfills/index.js +0 -34
  867. package/dist/esm/polyfills/system.js +0 -6
  868. package/dist/esm/popover-6e806354.js +0 -1704
  869. package/dist/esm/radio-39c11ba4.js +0 -32
  870. package/dist/esm/radio-group-2f5467b5.js +0 -76
  871. package/dist/esm/resizable-833336bf.js +0 -421
  872. package/dist/esm/result-list-16c6afbd.js +0 -302
  873. package/dist/esm/search-bar-8d18626e.js +0 -525
  874. package/dist/esm/select-66bb59f8.js +0 -161
  875. package/dist/esm/shadow-css-008a49f5.js +0 -387
  876. package/dist/esm/slider-3d8545e3.js +0 -42
  877. package/dist/esm/slots-fbb5afb3.js +0 -26
  878. package/dist/esm/spinner-afccea51.js +0 -27
  879. package/dist/esm/tab-c76332b0.js +0 -24
  880. package/dist/esm/tabs-e9f6dcbe.js +0 -109
  881. package/dist/esm/templates-797420bf.js +0 -228
  882. package/dist/esm/text-field-32ac877e.js +0 -131
  883. package/dist/esm/toast-255648ff.js +0 -88
  884. package/dist/esm/tooltip-bed548f4.js +0 -331
  885. package/dist/esm/tslib.es6-99cd0de8.js +0 -65
  886. package/loader/package.json +0 -11
  887. /package/dist/components/{p-b2c7b113.js → p-DXuCPm6v.js} +0 -0
  888. /package/dist/components/{p-3438c441.js → p-DgySd_r0.js} +0 -0
@@ -1,785 +0,0 @@
1
- 'use strict';
2
-
3
- const index = require('./index-6a92256c.js');
4
-
5
- //From - https://heroicons.com/
6
- const Adjustments = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "data-testid": "adjustments", stroke: "currentColor" },
7
- index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5", d: "M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4" })));
8
-
9
- const AlignToGlobal = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "align-to-global" },
10
- index.h("path", { d: "M8,1,7.51,1V8.21h0V10H5.18A11.21,11.21,0,0,1,5,8.21H4A11.44,11.44,0,0,0,4.18,10H2.35A5.86,5.86,0,0,1,2,8.21H1A7,7,0,1,0,8,1ZM3.76,12.24A6,6,0,0,1,2.81,11H4.39a8.93,8.93,0,0,0,.69,1.83,4.59,4.59,0,0,0,.4.61A5.91,5.91,0,0,1,3.76,12.24ZM7.5,13.91A2.19,2.19,0,0,1,7,13.6a4.73,4.73,0,0,1-1.38-2.14c-.06-.14-.1-.3-.15-.46H7.5ZM12.24,3.76A6,6,0,0,1,13.19,5H11.61a8.93,8.93,0,0,0-.69-1.83,4.59,4.59,0,0,0-.4-.61A5.91,5.91,0,0,1,12.24,3.76ZM8.5,2.09a2.19,2.19,0,0,1,.55.31,4.73,4.73,0,0,1,1.38,2.14c.06.14.1.3.15.46H8.5ZM8.5,6h2.32A11.62,11.62,0,0,1,11,8a11.51,11.51,0,0,1-.19,2H8.5Zm.55,7.6a2.19,2.19,0,0,1-.55.31V11h2.07A6.76,6.76,0,0,1,10,12.36,4,4,0,0,1,9.05,13.6Zm3.19-1.36a6.13,6.13,0,0,1-1.7,1.19,6.85,6.85,0,0,0,.83-1.62,6.94,6.94,0,0,0,.25-.81h1.57A6,6,0,0,1,12.24,12.24ZM11.84,10A12.86,12.86,0,0,0,12,8a11.71,11.71,0,0,0-.18-2h1.83a5.89,5.89,0,0,1,0,4ZM3.49,4.73,2.56,5.9l3.94.6L5.05,2.78,4.11,4,1.81,2.11a.5.5,0,0,0-.62.78Z" })));
11
-
12
- const AlignToPart = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "align-to-part" },
13
- index.h("path", { d: "M5,8A3,3,0,1,0,8,5V6A2,2,0,1,1,6,8Zm9.85-1.85A.47.47,0,0,0,14.5,6h-.86a5.89,5.89,0,0,0-.24-.58l.61-.6a.5.5,0,0,0,0-.71L11.89,2a.51.51,0,0,0-.35-.15.51.51,0,0,0-.36.15l-.6.61A5.89,5.89,0,0,0,10,2.36V1.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,9.5,1H8V2H9v.71a.5.5,0,0,0,.36.48,5.13,5.13,0,0,1,1.08.45A.5.5,0,0,0,11,3.55l.51-.5L13,4.46l-.5.51a.5.5,0,0,0-.09.59,5.13,5.13,0,0,1,.45,1.08.5.5,0,0,0,.48.36H14V9h-.71a.5.5,0,0,0-.48.36,5.13,5.13,0,0,1-.45,1.08.5.5,0,0,0,.09.59l.5.51L11.54,13l-.51-.5a.5.5,0,0,0-.59-.09,5.13,5.13,0,0,1-1.08.45.5.5,0,0,0-.36.48V14H7v-.71a.5.5,0,0,0-.36-.48,5.13,5.13,0,0,1-1.08-.45.5.5,0,0,0-.59.09l-.51.5L3.05,11.54l.5-.51a.5.5,0,0,0,.09-.59,5.13,5.13,0,0,1-.45-1.08A.5.5,0,0,0,2.71,9H2V8H1V9.5a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,10h.86a5.89,5.89,0,0,0,.24.58l-.61.6a.5.5,0,0,0,0,.71L4.11,14a.51.51,0,0,0,.35.15A.53.53,0,0,0,4.82,14l.6-.61a5.89,5.89,0,0,0,.58.24v.86a.51.51,0,0,0,.5.5h3a.51.51,0,0,0,.5-.5v-.86a5.89,5.89,0,0,0,.58-.24l.6.61a.51.51,0,0,0,.36.15.51.51,0,0,0,.35-.15L14,11.89a.5.5,0,0,0,0-.71l-.61-.6a5.89,5.89,0,0,0,.24-.58h.86a.51.51,0,0,0,.5-.5v-3A.47.47,0,0,0,14.85,6.15ZM3.49,4.73,2.56,5.9l3.94.6L5.05,2.78,4.11,4,1.81,2.11a.5.5,0,0,0-.62.78Z" })));
14
-
15
- const AlignToSurface = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "align-to-surface" },
16
- index.h("path", { class: "cls-1", d: "M10,9.05H8.5V1.5a.5.5,0,0,0-1,0V9.05H6L8,12.5Zm4.91,5.31-2-7A.5.5,0,0,0,12.42,7H11V8h1.05l1.71,6H2.09L3.8,8H5V7H3.42a.5.5,0,0,0-.48.36l-2,7A.53.53,0,0,0,1,14.8a.51.51,0,0,0,.4.2h13a.48.48,0,0,0,.4-.2A.46.46,0,0,0,14.9,14.36Z" })));
17
-
18
- const AlignViewToPlane = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "align-view-to-plane" },
19
- index.h("path", { d: "M8,8a16,16,0,0,0-.3-3.29,4.77,4.77,0,0,0-.37-1.09,1.74,1.74,0,0,0-.11-.18l.62-.57a.5.5,0,1,0-.68-.74L6,3.2l0,0,0,0L1.16,7.63a.51.51,0,0,0,0,.74l4.76,4.36,0,0,0,0,1.16,1.07a.5.5,0,0,0,.68-.74l-.63-.57A2.74,2.74,0,0,0,7.49,12,13,13,0,0,0,8,8ZM5.2,10.71,2.24,8l3-2.72A16.71,16.71,0,0,0,5,8,16.67,16.67,0,0,0,5.2,10.71Zm1.52.36a4.37,4.37,0,0,1-.22.71l0-.09A12.53,12.53,0,0,1,6,8a15,15,0,0,1,.28-3.07,4.37,4.37,0,0,1,.22-.71l0,.09A12.53,12.53,0,0,1,7,8,15,15,0,0,1,6.72,11.07ZM12.5,7.5a.51.51,0,1,0,.35.15A.47.47,0,0,0,12.5,7.5Zm-3,0a.51.51,0,1,0,.35.15A.47.47,0,0,0,9.5,7.5Zm5-4.5a.5.5,0,0,0-.5.5v9a.5.5,0,0,0,1,0v-9A.5.5,0,0,0,14.5,3ZM11,7.5h0a.5.5,0,0,0,0,1h0a.5.5,0,0,0,0-1Z" })));
20
-
21
- const Annotation = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "annotation" },
22
- index.h("path", { d: "M14.5,14h-9a4.08,4.08,0,0,0,1-.71L14,5.75A1.73,1.73,0,0,0,14,3.3L12.7,2a1.73,1.73,0,0,0-2.45,0L2.71,9.55a3.93,3.93,0,0,0-1,1.83h0L1,14l0,.2a.81.81,0,0,0,.81.81H14.5a.5.5,0,0,0,0-1ZM11,2.73a.7.7,0,0,1,.51-.22.72.72,0,0,1,.52.22L13.27,4a.72.72,0,0,1,.22.52.7.7,0,0,1-.22.51l-.78.78L10.21,3.47ZM4.2,13.39,2.61,11.8l0-.18h0a3,3,0,0,1,.78-1.36L9.5,4.19l2.28,2.35-6,6a3,3,0,0,1-1.36.78h0Z" })));
23
-
24
- const ArrowFilled = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-filled" },
25
- index.h("path", { d: "M6,3,9.15,6.15l-8,8a.48.48,0,0,0,0,.7.48.48,0,0,0,.7,0l8-8L13,10l2-9Z" })));
26
-
27
- const ArrowLeftCircled = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-left-circled" },
28
- index.h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1" },
29
- index.h("path", { d: "m4.247 8 3.6867-3.1402z" }),
30
- index.h("path", { d: "m4.247 8h7.553z" }),
31
- index.h("path", { d: "m4.247 8 3.6867 3.1402z" })),
32
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
33
-
34
- const ArrowLineLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-line-left" },
35
- index.h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" },
36
- index.h("path", { d: "m1.2594 8 3.6867-4.1402z" }),
37
- index.h("path", { d: "m1.2594 8h13.553z" }),
38
- index.h("path", { d: "m1.2594 8 3.6867 4.1402z" }))));
39
-
40
- const ArrowLineRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-line-right" },
41
- index.h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" },
42
- index.h("path", { d: "m14.753 8-3.6867-4.1402z" }),
43
- index.h("path", { d: "m14.753 8h-13.553z" }),
44
- index.h("path", { d: "m14.753 8-3.6867 4.1402z" }))));
45
-
46
- const ArrowPartial = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", "data-testid": "arrow-partial" },
47
- index.h("path", { d: "m150.8 41.9-3.3 2.9-.3 23.1-.3 23.1h-27.4c-19.1 0-28.2.4-30 1.2-7.1 3.2-7.1 15.4 0 18.6 1.8.9 12.6 1.2 37.6 1.2 37 0 39.4-.3 41.5-4.7.5-1 1.1-8.9 1.4-17.5l.5-15.7 27.8 23.5 27.7 23.6-2.4 2.8c-1.3 1.6-13.8 15.3-27.8 30.5l-25.3 27.6-.5-11.8c-.3-6.5-.9-12.6-1.4-13.6-1.9-4.1-5.5-4.7-27.1-4.7-15.9 0-21.2.3-23.4 1.4-6.8 3.6-6.8 15.6 0 19.2 2 1 6.5 1.4 15.9 1.4h13v18c0 11.7.4 18.8 1.2 20.5 2.6 5.7 12 7.2 19.4 3.2 2.8-1.5 15.9-15 39.9-41.2 43.5-47.4 44.5-48.7 44.5-54 0-5.2 1.3-4-49.4-46.9C164.4 41.3 161.4 39 157.9 39c-2.9 0-4.7.8-7.1 2.9zM10.1 92.4c-6.8 3.8-6.6 15.2.4 18.4 1.7.8 8.7 1.2 20.5 1.2 19.5 0 22.2-.6 24.6-5.1 2.8-5.5.9-12.5-4.1-14.7-3.8-1.7-38.2-1.6-41.4.2zM16.1 153.4c-6.9 3.8-6.7 16.2.4 19.4 4.1 1.9 58.7 1.7 62.4-.2 6.8-3.6 6.8-15.6 0-19.2-3.9-2-59.2-2-62.8 0z" })));
48
-
49
- const ArrowRightCircled = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-right-circled" },
50
- index.h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1" },
51
- index.h("path", { d: "m11.753 8-3.6867-3.1402z" }),
52
- index.h("path", { d: "m11.753 8h-7.553z" }),
53
- index.h("path", { d: "m11.753 8-3.6867 3.1402z" })),
54
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
55
-
56
- const ArrowSwap = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-swap" },
57
- index.h("path", { d: "m2.59 10.63 1.74 1.74c.09.09.14.21.15.34 0 .13-.04.26-.15.37-.11.11-.23.17-.36.17-.13 0-.25-.06-.36-.17L1.23 10.7a.708.708 0 0 1-.18-.27.729.729 0 0 1-.05-.3c0-.11.02-.21.05-.3.04-.09.1-.18.18-.27l2.39-2.39c.1-.1.21-.15.34-.15.13 0 .25.05.36.16.11.11.16.23.16.35 0 .13-.05.24-.16.35L2.58 9.62h6.89c.14 0 .26.05.36.14.1.1.14.21.14.36 0 .14-.05.26-.14.36-.1.1-.21.14-.36.14H2.59v.01ZM13.4 5.62H6.51c-.14 0-.26-.05-.36-.14-.1-.1-.14-.21-.14-.36 0-.14.05-.26.14-.36.1-.1.21-.14.36-.14h6.89l-1.74-1.74a.532.532 0 0 1-.15-.34c0-.13.04-.26.15-.37.11-.11.23-.17.36-.17.13 0 .25.06.36.17l2.38 2.38c.09.09.15.18.18.27.04.09.05.19.05.3 0 .11-.02.21-.05.3-.04.09-.1.18-.18.27l-2.39 2.39c-.1.1-.21.15-.34.15-.13 0-.25-.05-.36-.16a.491.491 0 0 1-.16-.35c0-.13.05-.24.16-.35l1.74-1.74-.01-.01Z" })));
58
-
59
- const ArrowTriangleLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-triangle-left" },
60
- index.h("g", { transform: "matrix(1.0411 0 0 1 -.53826 .29031)" },
61
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
62
- index.h("path", { d: "m6.1674 13.421-6.1333-5.4456 6.1333-5.4456z", "stroke-linejoin": "round", "stroke-width": ".9" })));
63
-
64
- const ArrowTriangleRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-triangle-right" },
65
- index.h("g", { transform: "matrix(-1.0411 0 0 1 16.546 .29031)" },
66
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
67
- index.h("path", { d: "m9.8407 13.421 6.1333-5.4456-6.1333-5.4456z", "stroke-linejoin": "round", "stroke-width": ".9" })));
68
-
69
- const ArrowUpCircled = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-up-circled" },
70
- index.h("path", { d: "M8.33,4.12l-.08,0L8.18,4A.47.47,0,0,0,8,4H8a.47.47,0,0,0-.17,0l-.07,0-.08,0-3.5,3a.5.5,0,0,0,.66.76L7.5,5.59V11.5a.5.5,0,0,0,1,0V5.59l2.67,2.29a.5.5,0,1,0,.66-.76ZM8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
71
-
72
- const Attachment = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "attachment" },
73
- index.h("path", { d: "M9,1A3,3,0,0,0,6,4v7a2,2,0,0,0,4,0V5.5a.5.5,0,0,0-1,0V11a1,1,0,0,1-2,0V4a2,2,0,0,1,4,0v7a3,3,0,0,1-6,0V5.5a.5.5,0,0,0-1,0V11a4,4,0,0,0,8,0V4A3,3,0,0,0,9,1Z" })));
74
-
75
- const AxisX = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "axis-x" },
76
- index.h("path", { d: "M10,11.19l-5,2.5V4.81l5-2.5V6h1V1.5a.52.52,0,0,0-.24-.43.51.51,0,0,0-.48,0l-6,3A.51.51,0,0,0,4,4.5v10a.52.52,0,0,0,.24.43.51.51,0,0,0,.48,0l6-3A.51.51,0,0,0,11,11.5V10H10ZM14,8l-2.59-1.5v1H7a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h4.41v1Z" })));
77
-
78
- const AxisY = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "axis-y" },
79
- index.h("path", { d: "M7.49,8.5A.5.5,0,0,0,8,9a.5.5,0,0,0,.5-.5V4.09h1L8,1.5,6.51,4.09h1Zm7.44-3.26A.52.52,0,0,0,14.5,5H10V6h3.69l-2.5,5H2.31l2.5-5H6V5H4.5a.51.51,0,0,0-.45.28l-3,6a.51.51,0,0,0,0,.48A.52.52,0,0,0,1.5,12h10a.51.51,0,0,0,.45-.28l3-6A.51.51,0,0,0,14.93,5.24Z" })));
80
-
81
- const AxisZ = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "axis-z" },
82
- index.h("path", { d: "M13.85,2.15A.47.47,0,0,0,13.5,2H2.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,2,2.5v11a.47.47,0,0,0,.15.35A.47.47,0,0,0,2.5,14h11a.51.51,0,0,0,.5-.5V2.5A.47.47,0,0,0,13.85,2.15ZM13,13H3V3H13ZM7.44,10.06,9.33,7.69A.5.5,0,0,0,9.25,7a.49.49,0,0,0-.7.07L6.65,9.44l-.77-.62-.45,2.95,2.78-1.09Z" })));
83
-
84
- const Back = () => (index.h("svg", { "data-testid": "back", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
85
- index.h("path", { d: "M13.5,8H3.5L5.9,4.8a.5.5,0,0,0-.8-.6l-3,4s0,0,0,0a.45.45,0,0,0,0,.54s0,0,0,0l3,4a.5.5,0,1,0,.8-.6L3.5,9h10a.5.5,0,0,0,0-1Z" })));
86
-
87
- const BoxCursor = () => (index.h("svg", { "data-testid": "box-cursor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
88
- index.h("path", { d: "M0,2h1v-1h1v-1h-1a1,1,0,0,0,-1,1ZM0,3.2h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2ZM3.2,1h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0ZM14,1h1v1h1v-1a1,1,0,0,0,-1,-1h-1ZM15,3.2h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2ZM0,14h1v1h1v1h-1a1,1,0,0,1,-1,-1ZM3.2,16h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0ZM16,14h-1v1h-1v1h1a1,1,0,0,0,1,-1Z" }),
89
- index.h("path", { d: "M10.438,12.976L8.955,13.6L6.458,7.632L7.94,7.001L10.438,12.976Z" }),
90
- index.h("path", { d: "M5,1.972L5,11.033L7.417,8.709L7.763,8.596L11.598,8.596L5,1.972Z" })));
91
-
92
- const BoxSelect = () => (index.h("svg", { "data-testid": "box-select", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
93
- index.h("path", { d: "M0,2h1v-1h1v-1h-1a1,1,0,0,0,-1,1ZM0,3.2h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2ZM3.2,1h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0ZM14,1h1v1h1v-1a1,1,0,0,0,-1,-1h-1ZM15,3.2h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2Zm0,.7h1v1.5h-1v-1.5m0,2ZM0,14h1v1h1v1h-1a1,1,0,0,1,-1,-1ZM3.2,16h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0Zm.7,0h1.5v-1h-1.5v1m2,0ZM16,14h-1v1h-1v1h1a1,1,0,0,0,1,-1Z" }),
94
- index.h("path", { d: "M13.72,4.05l-6-3a.49.49,0,0,0-.44,0l-6,3A.51.51,0,0,0,1,4.5v7a.51.51,0,0,0,.28.45l6,3a.49.49,0,0,0,.44,0l6-3A.51.51,0,0,0,14,11.5v-7A.51.51,0,0,0,13.72,4.05ZM7,13.69l-5-2.5V5.31l5,2.5Zm.5-6.75L2.62,4.5,7.5,2.06,12.38,4.5ZM13,11.19l-5,2.5V7.81l5-2.5Z", transform: "scale(0.8) translate(2.5,2)" })));
95
-
96
- const Camera = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "camera" },
97
- index.h("path", { d: "M8,6a3,3,0,1,0,3,3A3,3,0,0,0,8,6ZM4.5,6a.5.5,0,1,0,.5.5A.5.5,0,0,0,4.5,6ZM14.85,4.15A.47.47,0,0,0,14.5,4H11.81L11,2.28A.51.51,0,0,0,10.5,2h-5a.51.51,0,0,0-.45.28L4.19,4H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,4.5v9a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,14h13a.51.51,0,0,0,.5-.5v-9A.47.47,0,0,0,14.85,4.15ZM14,13H2V5H4.5A.51.51,0,0,0,5,4.72L5.81,3h4.38l.86,1.72A.51.51,0,0,0,11.5,5H14Z" })));
98
-
99
- const CameraAdd = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "camera-add" },
100
- index.h("path", { d: "M10.5 8.002h-2v-2a.5.5 0 1 0-1 0v2h-2a.5.5 0 1 0 0 1h2v2a.5.5 0 1 0 1 0v-2h2a.5.5 0 1 0 0-1Zm4.35-3.85a.47.47 0 0 0-.35-.15h-2.69L11 2.282a.51.51 0 0 0-.5-.28h-5a.51.51 0 0 0-.45.28l-.86 1.72H1.5a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v9a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h13a.51.51 0 0 0 .5-.5v-9a.47.47 0 0 0-.15-.35Zm-.85 8.85H2v-8h2.5a.51.51 0 0 0 .5-.28l.81-1.72h4.38l.86 1.72a.51.51 0 0 0 .45.28H14v8Z" })));
101
-
102
- const CaretDown = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-down" },
103
- index.h("path", { d: "M8,9.7,3.8,5.1a.62.62,0,0,0-.7.1.64.64,0,0,0,0,.6l4.5,5a.48.48,0,0,0,.7,0h0l4.5-5a.49.49,0,0,0-.1-.7.64.64,0,0,0-.6,0Z" })));
104
-
105
- const CaretLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-left" },
106
- index.h("path", { d: "M6.25,8l4.58-4.13a.5.5,0,0,0-.66-.74l-5,4.5a.49.49,0,0,0,0,.74l5,4.5a.5.5,0,0,0,.66-.74Z" })));
107
-
108
- const CaretRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-right" },
109
- index.h("path", { d: "M10.83,7.63l-5-4.5a.5.5,0,0,0-.66.74L9.75,8,5.17,12.13a.5.5,0,1,0,.66.74l5-4.5a.49.49,0,0,0,0-.74Z" })));
110
-
111
- const CaretUp = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-up" },
112
- index.h("path", { d: "M7.93,6.28l4.2,4.6a.62.62,0,0,0,.7-.1.64.64,0,0,0,0-.6l-4.5-5a.48.48,0,0,0-.7,0h0l-4.5,5a.49.49,0,0,0,.1.7.64.64,0,0,0,.6,0Z" })));
113
-
114
- const Caution = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caution" },
115
- index.h("path", { d: "M8,11a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,11Zm6.65,1.29ZM8,6a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,1,0v-3A.5.5,0,0,0,8,6Zm6.65,6.29L9.32,2.4h0a1.5,1.5,0,0,0-2.64,0L1.35,12.29h0a1.53,1.53,0,0,0-.18.71,1.5,1.5,0,0,0,1.5,1.5H13.33a1.5,1.5,0,0,0,1.5-1.5A1.53,1.53,0,0,0,14.65,12.29Zm-1,1.06a.47.47,0,0,1-.35.15H2.67a.47.47,0,0,1-.35-.15A.51.51,0,0,1,2.17,13l.06-.24h0L7.56,2.87h0a.5.5,0,0,1,.88,0l5.33,9.89h0l.06.24A.51.51,0,0,1,13.68,13.35Z" })));
116
-
117
- const Check = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "check" },
118
- index.h("path", { d: "M13.85,4.15a.48.48,0,0,0-.7,0L6.5,10.79,2.85,7.15a.49.49,0,0,0-.7.7l4,4a.48.48,0,0,0,.7,0l7-7A.48.48,0,0,0,13.85,4.15Z" })));
119
-
120
- const CheckCircle = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "check-circle" },
121
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.27,11.23A6,6,0,1,1,14,8,6,6,0,0,1,12.27,12.27ZM11.15,5.4,7,9.54,4.85,7.4a.49.49,0,0,0-.7.7l2.5,2.5a.48.48,0,0,0,.7,0l4.5-4.5a.49.49,0,0,0-.7-.7Z" })));
122
-
123
- const ChevronDown = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "chevron-down" },
124
- index.h("path", { d: "M12,6.29A.51.51,0,0,0,11.5,6h-7a.5.5,0,0,0-.38.83l3.5,4a.51.51,0,0,0,.76,0l3.5-4A.51.51,0,0,0,12,6.29Z" })));
125
-
126
- const ChevronLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "chevron-left" },
127
- index.h("path", { d: "M9.71,4a.51.51,0,0,0-.54.08l-4,3.5a.51.51,0,0,0,0,.76l4,3.5A.5.5,0,0,0,10,11.5v-7A.51.51,0,0,0,9.71,4Z" })));
128
-
129
- const ChevronRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "chevron-right" },
130
- index.h("path", { d: "M10.83,7.62l-4-3.5A.5.5,0,0,0,6,4.5v7a.5.5,0,0,0,.83.38l4-3.5a.51.51,0,0,0,0-.76Z" })));
131
-
132
- const ChevronUp = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "chevron-up" },
133
- index.h("path", { d: "M11.88,9.17l-3.5-4a.51.51,0,0,0-.76,0l-3.5,4A.5.5,0,0,0,4.5,10h7a.5.5,0,0,0,.38-.83Z" })));
134
-
135
- const CircleOutline = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "circle-outline" },
136
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
137
-
138
- const Close = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "close" },
139
- index.h("path", { d: "M8.71,8l4.14-4.15a.49.49,0,0,0-.7-.7L8,7.29,3.85,3.15a.49.49,0,0,0-.7.7L7.29,8,3.15,12.15a.49.49,0,0,0,.7.7L8,8.71l4.15,4.14a.49.49,0,0,0,.7-.7Z" })));
140
-
141
- const CloseCircle = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "close-circle" },
142
- index.h("path", { d: "M10.85,5.15a.48.48,0,0,0-.7,0L8,7.29,5.85,5.15a.49.49,0,0,0-.7.7L7.29,8,5.15,10.15a.49.49,0,0,0,.7.7L8,8.71l2.15,2.14a.49.49,0,0,0,.7-.7L8.71,8l2.14-2.15A.48.48,0,0,0,10.85,5.15ZM8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
143
-
144
- const CloseCircleFill = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "close-circle-fill" },
145
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm2.85,9.15a.49.49,0,0,1-.7.7L8,8.71,5.85,10.85a.49.49,0,0,1-.7-.7L7.29,8,5.15,5.85a.49.49,0,0,1,.7-.7L8,7.29l2.15-2.14a.49.49,0,0,1,.7.7L8.71,8Z" })));
146
-
147
- const CollapseAll = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "collapse-all" },
148
- index.h("path", { d: "M2.85,8.15A.47.47,0,0,0,2.31,8,.5.5,0,0,0,2,8.5v2a.5.5,0,0,0,.31.46.47.47,0,0,0,.54-.11l1-1a.48.48,0,0,0,0-.7Zm0-6A.47.47,0,0,0,2.31,2,.5.5,0,0,0,2,2.5v2A.5.5,0,0,0,2.31,5a.47.47,0,0,0,.54-.11l1-1a.48.48,0,0,0,0-.7ZM5.5,4h9a.5.5,0,0,0,0-1h-9a.5.5,0,0,0,0,1Zm9,2h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0,3h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0,3h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Z" })));
149
-
150
- const Columns = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "columns", fill: "currentColor" },
151
- index.h("path", { d: "m 8,1.0608391 c -4.3636674,0 -7.90079064,0.023094 -7.90079064,0.051051 V 2.225294 c 0,0.027957 3.53712324,0.051051 7.90079064,0.051051 4.363668,0 7.900791,-0.023094 7.900791,-0.051051 V 1.1118903 C 15.900791,1.0839333 12.363668,1.0608393 8,1.0608391 Z M 8,13.823655 c -4.3636674,0 -7.90079064,0.0231 -7.90079064,0.05105 v 1.113404 c 0,0.02796 3.53712324,0.05104 7.90079064,0.05104 4.363668,0 7.900791,-0.0231 7.900791,-0.05104 v -1.113404 c 0,-0.02796 -3.537123,-0.05105 -7.900791,-0.05105 z M 9.8232594,2.3371206 V 14.370632 c 0,0.369514 0.2722736,0.668529 0.6077526,0.668529 0.335481,0 0.607754,-0.299015 0.607754,-0.668529 V 2.3371206 c 0,-0.3695139 -0.272273,-0.6685284 -0.607754,-0.6685284 -0.335479,0 -0.6077526,0.2990145 -0.6077526,0.6685284 z m -4.862025,0 V 14.370632 c 0,0.369514 0.2722734,0.668529 0.6077531,0.668529 0.3354797,0 0.6077531,-0.299015 0.6077531,-0.668529 V 2.3371206 c 0,-0.3695139 -0.2722734,-0.6685284 -0.6077531,-0.6685284 -0.3354797,0 -0.6077531,0.2990145 -0.6077531,0.6685284 z m -4.86202504,0 V 14.370632 c 0,0.369514 0.2722734,0.668529 0.60775313,0.668529 0.33547971,0 0.60775311,-0.299015 0.60775311,-0.668529 V 2.3371206 c 0,-0.3695139 -0.2722734,-0.6685284 -0.60775311,-0.6685284 -0.33547973,0 -0.60775313,0.2990145 -0.60775313,0.6685284 z m 14.58607564,0 V 14.370632 c 0,0.369514 0.272273,0.668529 0.607752,0.668529 0.335481,0 0.607754,-0.299015 0.607754,-0.668529 V 2.3371206 c 0,-0.3695139 -0.272273,-0.6685284 -0.607754,-0.6685284 -0.335479,0 -0.607752,0.2990145 -0.607752,0.6685284 z" })));
152
-
153
- const ColumnsAdd = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "columns-add" },
154
- index.h("g", null,
155
- index.h("path", { d: "M13.45 12.04c-.28 0-.5.22-.5.5v.99c0 .27-.22.49-.5.49H7.99V2h4.46c.28 0 .5.22.5.5v.99c0 .28.22.5.5.5s.5-.22.5-.5V2.5c0-.82-.67-1.5-1.5-1.5H2.5C1.67 1 1 1.67 1 2.5v11.01c0 .83.67 1.5 1.5 1.5h9.96c.83 0 1.5-.67 1.5-1.49v-.99c0-.28-.22-.5-.5-.5l-.01.01ZM2 13.51V2.5c0-.28.22-.5.5-.5h4.49v12.01H2.5c-.28 0-.5-.22-.5-.5Z" }),
156
- index.h("path", { d: "M15.01 7.5h-1.02V6.48c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7.5h-1.02c-.28 0-.5.22-.5.5s.22.5.5.5h1.02v1.02c0 .28.22.5.5.5s.5-.22.5-.5V8.5h1.02c.28 0 .5-.22.5-.5s-.22-.5-.5-.5Z" }))));
157
-
158
- const CommentAdd = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-add" },
159
- index.h("path", { d: "M10.5,6.7h-5c-.3,0-.5.2-.5.5s.2.5.5.5h5c.3,0,.5-.2.5-.5s-.2-.5-.5-.5ZM7.5,5v4.4c0,.3.2.5.5.5s.5-.2.5-.5v-4.4c0-.3-.2-.5-.5-.5s-.5.2-.5.5ZM13.5,2H2.5c-.8,0-1.5.7-1.5,1.5v7c0,.8.7,1.5,1.5,1.5h5.8l2.9,2.9c.1.1.4.2.5.1.2,0,.3-.3.3-.5v-2.5h1.5c.8,0,1.5-.7,1.5-1.5V3.5c0-.8-.7-1.5-1.5-1.5ZM14,10.5c0,.3-.2.5-.5.5h-2c-.3,0-.5.2-.5.5v1.8l-2.1-2.1s-.2-.2-.4-.1H2.5c-.3,0-.5-.2-.5-.5V3.5c0-.3.2-.5.5-.5h11c.3,0,.5.2.5.5v7Z" })));
160
-
161
- const CommentFilled = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-filled" },
162
- index.h("path", { d: "M2.5 2A1.5 1.5 0 0 0 1 3.5v7A1.5 1.5 0 0 0 2.5 12h5.79l2.86 2.85a.47.47 0 0 0 .54.11.5.5 0 0 0 .31-.46V12h1.5a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 13.5 2Zm0 1h11a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-2a.51.51 0 0 0-.5.5v1.79l-2.15-2.14A.47.47 0 0 0 8.5 11h-6a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5Z" }),
163
- index.h("path", { d: "M11.306 14.941c-.085-.042-.422-.367-1.55-1.497L8.314 12H5.431c-1.806 0-2.955-.009-3.075-.022a1.49 1.49 0 0 1-1.257-.98l-.07-.18-.005-3.756c-.006-4.202-.018-3.888.152-4.233a1.18 1.18 0 0 1 .276-.369c.204-.204.374-.307.651-.393l.163-.05h11.468l.163.05c.271.085.448.19.64.383s.288.34.375.578l.058.159v7.631l-.069.18c-.168.436-.495.76-.911.905-.225.078-.465.097-1.269.097h-.73l-.007 1.319-.006 1.319-.065.106c-.135.217-.394.301-.607.197zm-.223-3.68a.527.527 0 0 1 .31-.235c.056-.015.46-.023 1.155-.023 1.178 0 1.157.002 1.303-.137a.616.616 0 0 0 .113-.156c.039-.083.04-.227.04-3.708l.001-3.622-.057-.115a.476.476 0 0 0-.335-.26c-.152-.033-11.074-.033-11.226 0a.476.476 0 0 0-.335.26l-.057.115v3.617c0 3.994-.011 3.697.136 3.85.15.158-.147.144 3.343.156 3.026.01 3.147.012 3.22.051.042.023.578.54 1.192 1.15l1.117 1.108.01-.976.011-.976z", stroke: "currentColor", "stroke-width": ".0216802" }),
164
- index.h("path", { d: "M9.888 12.26c-.799-.783-1.159-1.121-1.23-1.156l-.103-.05-3.264-.01-3.265-.011-.106-.062a.477.477 0 0 1-.17-.166l-.062-.104V3.238l.068-.096a.722.722 0 0 1 .179-.162l.11-.067h11.729l.093.049a.58.58 0 0 1 .25.266c.024.058.03.714.03 3.75v3.68l-.058.114a.527.527 0 0 1-.247.24c-.025.011-.58.025-1.231.031-1.167.011-1.188.012-1.279.06a.697.697 0 0 0-.265.27c-.018.04-.03.35-.038 1.026l-.011.968z", stroke: "currentColor", "stroke-width": "2.36182", "stroke-miterlimit": "4", "stroke-dasharray": "none" })));
165
-
166
- const CommentReopen = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-reopen" },
167
- index.h("path", { d: "M13.5,2H11.81l.57,1H13.5a.5.5,0,0,1,.5.5v7a.5.5,0,0,1-.5.5h-2a.51.51,0,0,0-.5.5v1.79L8.85,11.15A.47.47,0,0,0,8.5,11h-6a.5.5,0,0,1-.5-.5v-7A.5.5,0,0,1,2.5,3H8.62l.57-1H2.5A1.5,1.5,0,0,0,1,3.5v7A1.5,1.5,0,0,0,2.5,12H8.29l2.86,2.85a.47.47,0,0,0,.54.11A.5.5,0,0,0,12,14.5V12h1.5A1.5,1.5,0,0,0,15,10.5v-7A1.5,1.5,0,0,0,13.5,2ZM7.11,5.21a.5.5,0,0,0,.22-.67.49.49,0,0,0-.67-.22A3,3,0,1,0,11,7V5.08h1.49l-2-3.45-2,3.45H10V7A2,2,0,1,1,7.11,5.21Z" })));
168
-
169
- const CommentResolve = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-resolve" },
170
- index.h("path", { d: "M10.1,4.75,7.45,8.29,5.85,6.7a.48.48,0,0,0-.7,0,.5.5,0,0,0,0,.71l2,2a.5.5,0,0,0,.39.14.49.49,0,0,0,.36-.2l3-4a.5.5,0,0,0-.1-.7A.51.51,0,0,0,10.1,4.75ZM13.5,2H2.5A1.5,1.5,0,0,0,1,3.5v7A1.5,1.5,0,0,0,2.5,12H8.29l2.86,2.85a.47.47,0,0,0,.54.11A.5.5,0,0,0,12,14.5V12h1.5A1.5,1.5,0,0,0,15,10.5v-7A1.5,1.5,0,0,0,13.5,2Zm.5,8.5a.5.5,0,0,1-.5.5h-2a.51.51,0,0,0-.5.5v1.79L8.85,11.15A.47.47,0,0,0,8.5,11h-6a.5.5,0,0,1-.5-.5v-7A.5.5,0,0,1,2.5,3h11a.5.5,0,0,1,.5.5Z" })));
171
-
172
- const CommentShow = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-show" },
173
- index.h("path", { d: "M11.5,8h-7a.5.5,0,0,0,0,1h7a.5.5,0,0,0,0-1Zm0-3h-7a.5.5,0,0,0,0,1h7a.5.5,0,0,0,0-1Zm2-3H2.5A1.5,1.5,0,0,0,1,3.5v7A1.5,1.5,0,0,0,2.5,12H8.29l2.86,2.85a.47.47,0,0,0,.54.11A.5.5,0,0,0,12,14.5V12h1.5A1.5,1.5,0,0,0,15,10.5v-7A1.5,1.5,0,0,0,13.5,2Zm.5,8.5a.5.5,0,0,1-.5.5h-2a.51.51,0,0,0-.5.5v1.79L8.85,11.15A.47.47,0,0,0,8.5,11h-6a.5.5,0,0,1-.5-.5v-7A.5.5,0,0,1,2.5,3h11a.5.5,0,0,1,.5.5Z" })));
174
-
175
- const Compare = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "compare" },
176
- index.h("path", { d: "M8.27 9.94 5.89 7.56c-.11-.11-.23-.17-.36-.17s-.25.06-.36.17c-.11.11-.16.23-.15.37 0 .13.06.25.15.34l1.74 1.74H1.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h5.42l-1.74 1.74c-.11.11-.16.23-.16.35 0 .13.06.24.16.35.11.11.23.16.36.16.13 0 .25-.06.34-.15l2.39-2.39c.09-.09.15-.18.18-.27.04-.09.05-.19.05-.3s-.02-.21-.05-.3c-.04-.09-.1-.18-.18-.27Zm6.59-4.79c-.1-.1-.21-.14-.36-.14H9.11l1.74-1.74c.11-.11.16-.23.16-.35 0-.13-.06-.24-.16-.35a.495.495 0 0 0-.36-.16c-.13 0-.25.06-.34.15L7.76 4.95c-.09.09-.15.18-.18.27-.04.09-.05.19-.05.3s.02.21.05.3c.04.09.1.18.18.27l2.38 2.38c.11.11.23.17.36.17s.25-.06.36-.17c.11-.11.16-.23.15-.37 0-.13-.06-.25-.15-.34L9.12 6.02h5.39c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36Z" })));
177
-
178
- const Compress = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "compress" },
179
- index.h("path", { d: "M13.49 8.47H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14ZM2.5 7.47h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14ZM8.35 10.62c-.2-.2-.51-.2-.71 0l-2.12 2.12c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.24-1.24v2.32c0 .28.22.5.5.5s.5-.22.5-.5v-2.38l1.29 1.29c.2.2.51.2.71 0 .2-.2.2-.51 0-.71l-2.12-2.12v.01ZM7.63 5.41c.2.2.51.2.71 0l2.12-2.12c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0L8.51 3.82V1.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.38L6.22 2.59c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l2.12 2.12v-.01Z" })));
180
-
181
- const Copy = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "copy" },
182
- index.h("path", { d: "M13.51,1h-8A1.51,1.51,0,0,0,4,2.52V4H2.51A1.5,1.5,0,0,0,1,5.5v8A1.5,1.5,0,0,0,2.51,15h8A1.5,1.5,0,0,0,12,13.5V12h1.51a1.5,1.5,0,0,0,1.5-1.5v-8A1.5,1.5,0,0,0,13.51,1ZM11,13.5a.5.5,0,0,1-.5.5h-8a.5.5,0,0,1-.5-.5v-8a.5.5,0,0,1,.5-.5h8a.5.5,0,0,1,.5.5Zm3-3a.51.51,0,0,1-.5.5H12V5.5A1.5,1.5,0,0,0,10.5,4H5V2.52a.51.51,0,0,1,.5-.5h8a.51.51,0,0,1,.5.5Z" })));
183
-
184
- const CrossSection = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cross-section" },
185
- index.h("path", { d: "M4.5,13a.51.51,0,1,0,.35.15A.47.47,0,0,0,4.5,13ZM4.35,4.35a.49.49,0,0,0-.7-.7h0a.5.5,0,0,0,.71.71ZM4.5,5a.5.5,0,0,0-.35.85.5.5,0,1,0,.7-.7A.47.47,0,0,0,4.5,5ZM5.85,2.15a.48.48,0,0,0-.7,0,.48.48,0,0,0,0,.7A.5.5,0,0,0,6,2.5.47.47,0,0,0,5.85,2.15ZM9.67,2,10,1.67A.52.52,0,0,0,10.5,2a.5.5,0,0,0,.5-.5V.5a.41.41,0,0,0,0-.19A.51.51,0,0,0,10.69,0a.5.5,0,0,0-.38,0,.36.36,0,0,0-.16.11h0L8,2.34A.5.5,0,1,0,7.33,3L6.15,4.15A.47.47,0,0,0,6,4.5v11H6a.41.41,0,0,0,0,.19.51.51,0,0,0,.27.27.41.41,0,0,0,.19,0h0a.41.41,0,0,0,.19,0,.36.36,0,0,0,.16-.11l2-2a.5.5,0,1,0-.71-.71L7,14.29V4.71l2-2A.5.5,0,1,0,9.67,2ZM2.5,5a.47.47,0,0,0-.35.15.48.48,0,0,0,0,.7.48.48,0,0,0,.7,0A.5.5,0,0,0,2.5,5Zm0,2a.5.5,0,1,0,.5.5A.5.5,0,0,0,2.5,7ZM8.15,5.15A.48.48,0,1,0,8.5,5,.47.47,0,0,0,8.15,5.15ZM13.5,3h0a.51.51,0,0,0,.5-.5.47.47,0,0,0-.15-.35A.47.47,0,0,0,13.52,2h0a.47.47,0,0,0-.35.15.48.48,0,0,0,0,.7A.47.47,0,0,0,13.5,3ZM2.5,13a.47.47,0,0,0-.35.15.48.48,0,0,0,0,.7.48.48,0,0,0,.7,0A.5.5,0,0,0,2.5,13Zm0-4a.5.5,0,1,0,.5.5A.5.5,0,0,0,2.5,9Zm0,2a.5.5,0,1,0,.5.5A.5.5,0,0,0,2.5,11Zm11-3a.5.5,0,0,0-.5.5.49.49,0,0,0,.49.5.5.5,0,1,0,0-1Zm-3,5h0a.5.5,0,0,0,0,1h0a.5.5,0,0,0,0-1Zm3-3a.51.51,0,1,0,.35.15A.47.47,0,0,0,13.48,10Zm0-4a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5.5.5,0,0,0,0-1Zm0-2a.5.5,0,0,0-.5.5.49.49,0,0,0,.49.5.5.5,0,1,0,0-1Zm-1.87,7.65h0a.49.49,0,0,0,.7.7h0a.5.5,0,0,0-.71-.71Zm0-8h0a.48.48,0,0,0,0,.7.49.49,0,0,0,.7,0h0a.5.5,0,0,0,0-.71A.48.48,0,0,0,11.67,3.64ZM10.5,9a.5.5,0,1,0,.5.5A.5.5,0,0,0,10.5,9Zm0,2a.5.5,0,1,0,.5.5A.5.5,0,0,0,10.5,11Zm0-4a.5.5,0,1,0,.5.5A.5.5,0,0,0,10.5,7ZM12,2.5a.5.5,0,1,0-.5.5A.5.5,0,0,0,12,2.5ZM10.5,5a.5.5,0,0,0-.35.85.5.5,0,1,0,.7-.7A.47.47,0,0,0,10.5,5Z" })));
186
-
187
- const CubeOrthographic = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cube-orthographic" },
188
- index.h("path", { d: "M14.85,1.15A.47.47,0,0,0,14.5,1H4.5a.47.47,0,0,0-.35.15l-3,3A.47.47,0,0,0,1,4.5v10a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,15h10a.47.47,0,0,0,.35-.15l3-3A.47.47,0,0,0,15,11.5V1.5A.47.47,0,0,0,14.85,1.15ZM11,14H2V5h9Zm.29-10H2.71l2-2h8.58ZM14,11.29l-2,2V4.71l2-2Z" })));
189
-
190
- const CubePerspective = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cube-perspective" },
191
- index.h("path", { d: "M13.72,4.05l-6-3a.49.49,0,0,0-.44,0l-6,3A.51.51,0,0,0,1,4.5v7a.51.51,0,0,0,.28.45l6,3a.49.49,0,0,0,.44,0l6-3A.51.51,0,0,0,14,11.5v-7A.51.51,0,0,0,13.72,4.05ZM7,13.69l-5-2.5V5.31l5,2.5Zm.5-6.75L2.62,4.5,7.5,2.06,12.38,4.5ZM13,11.19l-5,2.5V7.81l5-2.5Z" })));
192
-
193
- const CubeStack = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cube-stack" },
194
- index.h("path", { d: "M13.72 2.52 10.22.77a.508.508 0 0 0-.45 0l-3.5 1.75a.5.5 0 0 0-.28.45v3.81c-.08 0-.15.02-.22.05l-3.5 1.75a.5.5 0 0 0-.28.45v4.08c0 .19.11.36.28.45l3.5 1.75c.07.04.15.05.22.05s.16-.02.23-.05l7.52-3.82c.15-.1.25-.25.25-.43V2.97c0-.19-.11-.36-.28-.45ZM13 6.74l-2.46 1.23V5.03L13 3.8v2.94Zm-7.46 7.33L3 12.8V9.82l2.54 1.27v2.98Zm.5-3.85-2.4-1.2 2.37-1.18 2.4 1.2-2.37 1.18ZM9 12.78l-2.46 1.25v-2.94L9 9.86v2.92Zm.54-4.77L7 6.74V3.76l2.54 1.27v2.98ZM7.63 2.96 10 1.78l2.4 1.2-2.37 1.18-2.4-1.2Zm2.91 6.13L13 7.86v2.88l-2.46 1.25v-2.9Z" })));
195
-
196
- const Delete = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "delete" },
197
- index.h("path", { d: "M6.5,12a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-1,0v5A.5.5,0,0,0,6.5,12Zm3,0a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-1,0v5A.5.5,0,0,0,9.5,12Zm4-10H10V1.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,9.5,1h-3a.47.47,0,0,0-.35.15A.47.47,0,0,0,6,1.5V2H2.5a.5.5,0,0,0,0,1H3v9.5A2.5,2.5,0,0,0,5.5,15h5A2.5,2.5,0,0,0,13,12.5V3h.5a.5.5,0,0,0,0-1ZM12,12.5A1.5,1.5,0,0,1,10.5,14h-5A1.5,1.5,0,0,1,4,12.5V4h8Z" })));
198
-
199
- const Download = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "download" },
200
- index.h("path", { d: "M11,7H8V2.5a.5.5,0,0,0-1,0V7H4l3.5,5Zm2.5,4a.5.5,0,0,0-.5.5v2.33a.16.16,0,0,1-.17.17H2.17A.16.16,0,0,1,2,13.83V11.5a.5.5,0,0,0-1,0v2.33A1.17,1.17,0,0,0,2.17,15H12.83A1.17,1.17,0,0,0,14,13.83V11.5A.5.5,0,0,0,13.5,11Z" })));
201
-
202
- const DragIndicator = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "drag-indicator" },
203
- index.h("path", { d: "M6.5,7h-1a.51.51,0,0,0-.5.5v1a.51.51,0,0,0,.5.5h1A.51.51,0,0,0,7,8.5v-1A.51.51,0,0,0,6.5,7Zm0,5h-1a.51.51,0,0,0-.5.5v1a.51.51,0,0,0,.5.5h1a.51.51,0,0,0,.5-.5v-1a.51.51,0,0,0-.5-.5Zm0-10h-1a.47.47,0,0,0-.35.15A.47.47,0,0,0,5,2.5v1a.51.51,0,0,0,.5.5h1A.51.51,0,0,0,7,3.5v-1a.47.47,0,0,0-.15-.35A.47.47,0,0,0,6.5,2Zm4.35.15A.47.47,0,0,0,10.5,2h-1a.47.47,0,0,0-.35.15A.47.47,0,0,0,9,2.5v1a.51.51,0,0,0,.5.5h1a.51.51,0,0,0,.5-.5v-1A.47.47,0,0,0,10.85,2.15ZM10.5,7h-1a.51.51,0,0,0-.5.5v1a.51.51,0,0,0,.5.5h1a.51.51,0,0,0,.5-.5v-1a.51.51,0,0,0-.5-.5Zm0,5h-1a.51.51,0,0,0-.5.5v1a.51.51,0,0,0,.5.5h1a.51.51,0,0,0,.5-.5v-1a.51.51,0,0,0-.5-.5Z" })));
204
-
205
- const Ellipse = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "ellipse" },
206
- index.h("path", { d: "M3,7A1,1,0,1,0,4,8,1,1,0,0,0,3,7ZM8,7A1,1,0,1,0,9,8,1,1,0,0,0,8,7Zm5,0a1,1,0,1,0,1,1A1,1,0,0,0,13,7Z" })));
207
-
208
- const ErrorCircle = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "error-circle" },
209
- index.h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.27,11.23A6,6,0,1,1,14,8,6,6,0,0,1,12.27,12.27ZM8,4a.5.5,0,0,0-.5.5v5a.5.5,0,0,0,1,0v-5A.5.5,0,0,0,8,4Zm0,7a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,11Z" })));
210
-
211
- const Expand = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "expand" },
212
- index.h("path", { d: "M13.49 13.98H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14ZM2.5 2h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14ZM9.76 5.97c.2.2.51.2.71 0 .2-.2.2-.51 0-.71L8.36 3.14c-.2-.2-.51-.2-.71 0L5.53 5.26c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.24-1.24v6.53l-1.24-1.24c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l2.12 2.12c.2.2.51.2.71 0l2.12-2.12c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.29 1.29V4.67l1.29 1.29-.01.01Z" })));
213
-
214
- const ExpandAll = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "expand-all" },
215
- index.h("path", { d: "M14.5,6h-5a.5.5,0,0,0,0,1h5a.5.5,0,0,0,0-1ZM4,2.5H2a.5.5,0,0,0-.46.31.47.47,0,0,0,.11.54l1,1a.48.48,0,0,0,.7,0l1-1a.47.47,0,0,0,.11-.54A.5.5,0,0,0,4,2.5ZM5.5,4h9a.5.5,0,0,0,0-1h-9a.5.5,0,0,0,0,1ZM4,8.5H2a.5.5,0,0,0-.46.31.47.47,0,0,0,.11.54l1,1a.48.48,0,0,0,.7,0l1-1a.47.47,0,0,0,.11-.54A.5.5,0,0,0,4,8.5ZM14.5,9h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0,3h-5a.5.5,0,0,0,0,1h5a.5.5,0,0,0,0-1Z" })));
216
-
217
- const Export = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "export" },
218
- index.h("path", { d: "M15,8.5,10,5V8H5.5a.5.5,0,0,0,0,1H10v3ZM13,14H2V3H13V5.7l1,.7V2.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,13.5,2H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,2.5v12a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,15h12a.51.51,0,0,0,.5-.5V10.6l-1,.7Z" })));
219
-
220
- const File = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file" },
221
- index.h("path", { d: "M13.85,4.14l-3-3l0,0L10.69,1H10.5h-8C2.37,1,2.24,1.05,2.15,1.15C2.05,1.24,2,1.37,2,1.5v13\n\tc0,0.13,0.05,0.26,0.15,0.35C2.24,14.95,2.37,15,2.5,15h11c0.27-0.01,0.49-0.23,0.5-0.5v-10C14,4.36,13.95,4.23,13.85,4.14z\n\t M11,2.71L12.3,4H11V2.71z M13,14H3V2h7v2.5c0.01,0.27,0.23,0.49,0.5,0.5H13V14z" })));
222
-
223
- const FileFolder = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file-folder" },
224
- index.h("path", { d: "M3.5 3a.5.5 0 0 0 .5-.5V2h8v.5a.5.5 0 1 0 1 0v-1a.47.47 0 0 0-.15-.35.47.47 0 0 0-.35-.15h-9a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v1a.5.5 0 0 0 .5.5Zm-1 3a.5.5 0 0 0 .5-.5V5h10v.5a.5.5 0 1 0 1 0v-1a.51.51 0 0 0-.5-.5h-11a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v1a.5.5 0 0 0 .5.5Zm12.35 1.15A.47.47 0 0 0 14.5 7h-13a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v7a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h13a.51.51 0 0 0 .5-.5v-7a.47.47 0 0 0-.15-.35ZM14 14H2V8h12v6Z" })));
225
-
226
- const FilePdf = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file-pdf" },
227
- index.h("path", { d: "M3.88,8.5A1.4,1.4,0,0,0,2.5,7.12H1.12v4.76h.76v-2H2.5A1.4,1.4,0,0,0,3.88,8.5ZM2.5,9.12H1.88V7.88H2.5a.62.62,0,1,1,0,1.24Zm9.38-1.24V7.12H9.12v4.76h.76v-2h2V9.12h-2V7.88ZM7.8,10.5v-2A1.38,1.38,0,0,0,6.43,7.12H5.05v4.76H6.43A1.38,1.38,0,0,0,7.8,10.5Zm-.75,0a.62.62,0,0,1-.62.62H5.8V7.88h.63a.62.62,0,0,1,.62.62ZM15,4.31a.36.36,0,0,0-.11-.16l-3-3A.36.36,0,0,0,11.69,1a.41.41,0,0,0-.19,0h-8a.47.47,0,0,0-.35.15A.47.47,0,0,0,3,1.5V6H4V2h7V4.5a.51.51,0,0,0,.5.5H14v9H4V13H3V14.5a.51.51,0,0,0,.5.5h11a.51.51,0,0,0,.5-.5V4.5A.41.41,0,0,0,15,4.31ZM12,4V2.71L13.29,4Z" })));
228
-
229
- const FitAll = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "fit-all" },
230
- index.h("path", { d: "M6.15,9.15l-2.5,2.5L2,10v4H6L4.35,12.35l2.5-2.5a.49.49,0,0,0-.7-.7Zm-1.8-5.5L6,2H2V6L3.65,4.35l2.5,2.5a.49.49,0,0,0,.7-.7ZM10,2l1.65,1.65-2.5,2.5a.49.49,0,0,0,.7.7l2.5-2.5L14,6V2ZM9.85,9.15a.49.49,0,0,0-.7.7l2.5,2.5L10,14h4V10l-1.65,1.65Z" })));
231
-
232
- const FitSelected = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "fit-selected" },
233
- index.h("path", { d: "M9.51,11h-3A1.5,1.5,0,0,1,5,9.5v-3A1.5,1.5,0,0,1,6.51,5h3A1.5,1.5,0,0,1,11,6.5v3A1.5,1.5,0,0,1,9.51,11Zm-3-5a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Z" }),
234
- index.h("path", { d: "M3.5,4a.47.47,0,0,1-.35-.15l-1.5-1.5a.49.49,0,0,1,.7-.7l1.5,1.5a.48.48,0,0,1,0,.7A.47.47,0,0,1,3.5,4Z" }),
235
- index.h("polyline", { points: "5 2 5 5 2 5" }),
236
- index.h("path", { d: "M2,14.5a.47.47,0,0,1-.35-.15.48.48,0,0,1,0-.7l1.5-1.5a.49.49,0,1,1,.7.7l-1.5,1.5A.47.47,0,0,1,2,14.5Z" }),
237
- index.h("polyline", { points: "2 11 5 11 5 14" }),
238
- index.h("path", { d: "M12.5,4a.47.47,0,0,1-.35-.15.48.48,0,0,1,0-.7l1.5-1.5a.49.49,0,0,1,.7.7l-1.5,1.5A.47.47,0,0,1,12.5,4Z" }),
239
- index.h("polyline", { points: "11 2 11 5 14 5" }),
240
- index.h("path", { d: "M14,14.5a.47.47,0,0,1-.35-.15l-1.5-1.5a.49.49,0,0,1,.7-.7l1.5,1.5a.48.48,0,0,1,0,.7A.47.47,0,0,1,14,14.5Z" }),
241
- index.h("polyline", { points: "14 11 11 11 11 14" })));
242
-
243
- const Flip = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "flip" },
244
- index.h("path", { d: "M8,9.39a.5.5,0,0,0-.5.5.5.5,0,0,0,1,0A.5.5,0,0,0,8,9.39Zm0,3.89a.5.5,0,0,0-.35.14.51.51,0,0,0-.15.36.47.47,0,0,0,.15.35.48.48,0,0,0,.7,0,.47.47,0,0,0,.15-.35.51.51,0,0,0-.15-.36A.5.5,0,0,0,8,13.28Zm0-2a.5.5,0,0,0-.5.5.5.5,0,0,0,1,0A.5.5,0,0,0,8,11.3ZM5.63,4a.5.5,0,0,0-.56.23l-4,7a.5.5,0,0,0,0,.5A.48.48,0,0,0,1.5,12h4a.51.51,0,0,0,.5-.5v-7A.48.48,0,0,0,5.63,4Zm9.3,7.23-4-7A.5.5,0,0,0,10.37,4,.48.48,0,0,0,10,4.5v7a.5.5,0,0,0,.5.5h4a.48.48,0,0,0,.43-.25A.5.5,0,0,0,14.93,11.25ZM11,11V6.38L13.64,11ZM8,7.47a.5.5,0,1,0,.5.5A.5.5,0,0,0,8,7.47ZM8,3.64a.5.5,0,0,0-.5.5.5.5,0,1,0,1,0A.5.5,0,0,0,8,3.64ZM8,1.72a.51.51,0,0,0-.35.15.47.47,0,0,0-.15.35.51.51,0,0,0,.15.36.51.51,0,0,0,.7,0,.51.51,0,0,0,.15-.36.47.47,0,0,0-.15-.35A.51.51,0,0,0,8,1.72ZM8,5.55a.5.5,0,0,0-.5.5.5.5,0,1,0,1,0A.5.5,0,0,0,8,5.55Z" })));
245
-
246
- const FolderPlus = () => (index.h("svg", { "data-testid": "folder-plus", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
247
- index.h("path", { d: "M14.85,3.15A.47.47,0,0,0,14.5,3H6.79l-.44-.75A.48.48,0,0,0,5.92,2H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,2.5v11a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,14h13a.51.51,0,0,0,.5-.5V3.5A.47.47,0,0,0,14.85,3.15ZM14,13H2V4H14ZM12.36,8H8.5V6.14a.5.5,0,0,0-1,0V8H5.64a.5.5,0,0,0,0,1H7.5v1.86a.5.5,0,0,0,1,0V9h1.86a.5.5,0,0,0,0-1Z" })));
248
-
249
- const Forward = () => (index.h("svg", { "data-testid": "forward", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
250
- index.h("path", { d: "M2,8.5a.5.5,0,0,0,.5.5h10l-2.4,3.14h0a.5.5,0,0,0,.8.6l3-4h0a.45.45,0,0,0,0-.54h0l-3-4a.5.5,0,0,0-.8.6L12.51,8h-10A.5.5,0,0,0,2,8.5Z" })));
251
-
252
- const Gear = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "gear" },
253
- index.h("path", { d: "M8,5a3,3,0,1,0,3,3A3,3,0,0,0,8,5Zm0,5a2,2,0,1,1,2-2A2,2,0,0,1,8,10Zm6.85-3.85A.47.47,0,0,0,14.5,6h-.86a5.89,5.89,0,0,0-.24-.58l.61-.6a.5.5,0,0,0,0-.71L11.89,2a.51.51,0,0,0-.35-.15.51.51,0,0,0-.36.15l-.6.61A5.89,5.89,0,0,0,10,2.36V1.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,9.5,1h-3a.47.47,0,0,0-.35.15A.47.47,0,0,0,6,1.5v.86a5.89,5.89,0,0,0-.58.24L4.82,2a.5.5,0,0,0-.71,0L2,4.11a.5.5,0,0,0,0,.71l.61.6A5.89,5.89,0,0,0,2.36,6H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,6.5v3a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,10h.86a5.89,5.89,0,0,0,.24.58l-.61.6a.5.5,0,0,0,0,.71L4.11,14a.51.51,0,0,0,.35.15A.53.53,0,0,0,4.82,14l.6-.61a5.89,5.89,0,0,0,.58.24v.86a.51.51,0,0,0,.5.5h3a.51.51,0,0,0,.5-.5v-.86a5.89,5.89,0,0,0,.58-.24l.6.61a.51.51,0,0,0,.36.15.51.51,0,0,0,.35-.15L14,11.89a.5.5,0,0,0,0-.71l-.61-.6a5.89,5.89,0,0,0,.24-.58h.86a.51.51,0,0,0,.5-.5v-3A.47.47,0,0,0,14.85,6.15ZM14,9h-.71a.5.5,0,0,0-.48.36,5.13,5.13,0,0,1-.45,1.08.5.5,0,0,0,.09.59l.5.51L11.54,13l-.51-.5a.5.5,0,0,0-.59-.09,5.13,5.13,0,0,1-1.08.45.5.5,0,0,0-.36.48V14H7v-.71a.5.5,0,0,0-.36-.48,5.13,5.13,0,0,1-1.08-.45.5.5,0,0,0-.59.09l-.51.5L3.05,11.54l.5-.51a.5.5,0,0,0,.09-.59,5.13,5.13,0,0,1-.45-1.08A.5.5,0,0,0,2.71,9H2V7h.71a.5.5,0,0,0,.48-.36,5.13,5.13,0,0,1,.45-1.08A.5.5,0,0,0,3.55,5l-.5-.51L4.46,3.05l.51.5a.5.5,0,0,0,.59.09,5.13,5.13,0,0,1,1.08-.45A.5.5,0,0,0,7,2.71V2H9v.71a.5.5,0,0,0,.36.48,5.13,5.13,0,0,1,1.08.45A.5.5,0,0,0,11,3.55l.51-.5L13,4.46l-.5.51a.5.5,0,0,0-.09.59,5.13,5.13,0,0,1,.45,1.08.5.5,0,0,0,.48.36H14Z" })));
254
-
255
- const Help = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "help" },
256
- index.h("path", { d: "M7.5,11a.51.51,0,1,0,.35.15A.47.47,0,0,0,7.5,11Zm0-9.5A6.5,6.5,0,1,0,14,8,6.5,6.5,0,0,0,7.5,1.5Zm3.89,10.39A5.5,5.5,0,1,1,13,8,5.47,5.47,0,0,1,11.39,11.89Zm-1.1-6.21A2.73,2.73,0,0,0,8,3.65H8a2.89,2.89,0,0,0-.5,0,3,3,0,0,0-2,.72,2.41,2.41,0,0,0-.85,1.82.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5,1.38,1.38,0,0,1,.51-1.06A2,2,0,0,1,7.5,4.61l.35,0A1.73,1.73,0,0,1,9.31,5.88h0a2.65,2.65,0,0,1,0,.27,1.53,1.53,0,0,1-.92,1.34h0a2.71,2.71,0,0,0-1,.8A2.05,2.05,0,0,0,7,9.5H7a.5.5,0,0,0,1,0H8a1,1,0,0,1,.21-.61,1.79,1.79,0,0,1,.63-.5h0a2.5,2.5,0,0,0,1.49-2.24,2.56,2.56,0,0,0,0-.47Z" })));
257
-
258
- const Info = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "info" },
259
- index.h("path", { d: "M8,15A7,7,0,1,0,1,8,7,7,0,0,0,8,15ZM3.73,3.77A6,6,0,1,1,2,8,6,6,0,0,1,3.73,3.77ZM8,12a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-1,0v5A.5.5,0,0,0,8,12ZM8,5a.51.51,0,1,0-.35-.15A.47.47,0,0,0,8,5Z" })));
260
-
261
- const Invert = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "invert" },
262
- index.h("g", { transform: "translate(3.5, 2.2)" },
263
- index.h("path", { d: "M11,7H8V0.6a.5.5,0,0,0-1,0V7H4l3.5,5Zm2.5,4" })),
264
- index.h("g", { transform: "translate(-2.5, -0.2)" },
265
- index.h("path", { d: "M7,14a.5.5,0,0,0,1,0V7.5h3l-3.5-5L4,7.5H7Zm6.5-1" }))));
266
-
267
- const Label = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "label" },
268
- index.h("g", { transform: "translate(1.5, 3)" },
269
- index.h("path", { d: "M1.23688158,10 C0.896714912,10 0.605526316,9.882 0.363315789,9.646 C0.121105263,9.41 0,9.12627778 0,8.79483333 L0,1.20516667 C0,0.873722222 0.121105263,0.59 0.363315789,0.354 C0.605526316,0.118 0.896714912,0 1.23688158,0 L8.49344737,0 C8.68924561,0 8.8747807,0.0421111111 9.05005263,0.126333333 C9.22521053,0.210555556 9.36946491,0.327 9.48281579,0.475666667 L13,5 L9.48281579,9.52433333 C9.36946491,9.673 9.22521053,9.78944444 9.05005263,9.87366667 C8.8747807,9.95788889 8.68924561,10 8.49344737,10 L1.23688158,10 Z M1.23688158,9 L8.49344737,9 C8.52857018,9 8.56038596,8.99361111 8.58889474,8.98083333 C8.61740351,8.96794444 8.64260526,8.94866667 8.6645,8.923 L11.7171053,5 L8.6645,1.077 C8.64260526,1.05133333 8.61740351,1.03205556 8.58889474,1.01916667 C8.56038596,1.00638889 8.52857018,1 8.49344737,1 L1.23688158,1 C1.17541667,1 1.12495614,1.01922222 1.0855,1.05766667 C1.04604386,1.09611111 1.02631579,1.14527778 1.02631579,1.20516667 L1.02631579,8.79483333 C1.02631579,8.85472222 1.04604386,8.90388889 1.0855,8.94233333 C1.12495614,8.98077778 1.17541667,9 1.23688158,9 Z" }))));
270
-
271
- const LabelOff = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "label-off" },
272
- index.h("g", { transform: "translate(0.5, 1.621)" },
273
- index.h("path", { d: "M11.8349218,9.20762453 L11.1170893,8.489792 L12.705149,6.41383444 L9.70995624,2.46332194 C9.6884733,2.43747527 9.66374553,2.4180623 9.63577294,2.40508302 C9.60780036,2.39221563 9.57658295,2.38578193 9.54212072,2.38578193 L5.05184919,2.38578193 L4.04483606,1.37876881 L9.54212072,1.37876881 C9.73311754,1.37876881 9.91516314,1.42095147 10.0882575,1.50531679 C10.26124,1.58968211 10.4027813,1.70716698 10.5128814,1.85777138 L13.9639154,6.41383444 L11.8349218,9.20762453 Z M2.42203441,10.441887 L9.73446023,10.441887 L2.21542888,2.9228556 L2.21542888,10.2352814 C2.21542888,10.2955903 2.23478591,10.3451018 2.27349997,10.3838159 C2.31221403,10.4225299 2.36172551,10.441887 2.42203441,10.441887 Z M13.2925733,14 L10.4044596,11.1118864 C10.3226678,11.2186297 10.2239246,11.3014845 10.1082299,11.3604508 C9.99242343,11.419417 9.86526005,11.4489001 9.7267398,11.4489001 L2.42203441,11.4489001 C2.08725849,11.4489001 1.80126676,11.3303523 1.56405922,11.0932566 C1.32696358,10.8560491 1.20841575,10.5700573 1.20841575,10.2352814 L1.20841575,2.59238746 C1.20841575,2.49079102 1.22027613,2.39439749 1.24399688,2.30320686 C1.26760575,2.21190433 1.30094907,2.12798657 1.34402685,2.05145358 L0,0.707426722 L0.707426722,0 L14,13.2925733 L13.2925733,14 Z" }))));
274
-
275
- const Line = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "line" },
276
- index.h("g", { transform: "matrix(-1.0017 0 0 1 16.523 .3149)" },
277
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" }))));
278
-
279
- const LineDotLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "line-dot-left" },
280
- index.h("g", { transform: "matrix(-1.0424 0 0 1 16.996 .3149)" },
281
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
282
- index.h("circle", { cx: "2.8494", cy: "8", r: "1.3961", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "2.0458" })));
283
-
284
- const LineDotRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "line-dot-right" },
285
- index.h("g", { transform: "matrix(1.0424 0 0 1 -.95769 .3149)" },
286
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
287
- index.h("circle", { transform: "scale(-1,1)", cx: "-13.189", cy: "8", r: "1.3961", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "2.0458" })));
288
-
289
- const LineHashLeft = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "line-hash-left" },
290
- index.h("g", { transform: "matrix(-.94826 0 0 .99941 16.451 .31944)" },
291
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
292
- index.h("g", { transform: "matrix(0 .61897 1.0424 0 -5.8691 2.7337)" },
293
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" }))));
294
-
295
- const LineHashRight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "line-hash-right" },
296
- index.h("g", { transform: "matrix(.94826 0 0 .99941 -.55498 .31944)" },
297
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
298
- index.h("g", { transform: "matrix(0 .61897 -1.0424 0 21.765 2.7337)" },
299
- index.h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" }))));
300
-
301
- const Locate = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "locate" },
302
- index.h("path", { d: "M8,2a6,6,0,0,1,6,6,6,6,0,0,1,-6,6,6,6,0,0,1,-6,-6,6,6,0,0,1,6,-6ZM8,13a5,5,0,0,0,5,-5,5,5,0,0,0,-5,-5,5,5,0,0,0,-5,5,5,5,0,0,0,5,5ZM8,5a3,3,0,0,1,3,3,3,3,0,0,1,-3,3,3,3,0,0,1,-3,-3,3,3,0,0,1,3,-3ZM7.5,2v-1.5a.3,.3,0,0,1,1,0v1.5ZM7.5,14v1.5a.3,.3,0,0,0,1,0v-1.5ZM14,7.5h1.5a.3,.3,0,0,1,0,1h-1.5ZM2,7.5h-1.5a.3,.3,0,0,0,0,1h1.5ZM8,16v-5ZM16,8h-5ZM0,8h4Z" })));
303
-
304
- const LockClosed = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "lock-closed" },
305
- index.h("path", { d: "M13.85 6.15A.47.47 0 0 0 13.5 6H12V5a4 4 0 1 0-8 0v1H2.5a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v8a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h11a.51.51 0 0 0 .5-.5v-8a.47.47 0 0 0-.15-.35ZM5 5a3 3 0 1 1 6 0v1H5V5Zm8 9H3V7h10v7Zm-5.5-3.15V12a.5.5 0 1 0 1 0v-1.15a1 1 0 1 0-1 0Z" })));
306
-
307
- const LockOpen = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "lock-open" },
308
- index.h("path", { d: "M7.5 10.85V12a.5.5 0 1 0 1 0v-1.15a1 1 0 1 0-1 0Zm6.35-4.7A.47.47 0 0 0 13.5 6H5V5a3 3 0 0 1 5.1-2.14.502.502 0 0 0 .7-.72A4 4 0 0 0 4 5v1H2.5a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v8a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h11a.51.51 0 0 0 .5-.5v-8a.47.47 0 0 0-.15-.35ZM13 14H3V7h10v7Z" })));
309
-
310
- const Markup = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "markup" },
311
- index.h("path", { d: "M14.85,1.15A.47.47,0,0,0,14.5,1h-8a.47.47,0,0,0-.35.15A.47.47,0,0,0,6,1.5V4a6.64,6.64,0,0,1,1,.09V2h7V9H11.91A6.64,6.64,0,0,1,12,10h2.5a.51.51,0,0,0,.5-.5v-8A.47.47,0,0,0,14.85,1.15ZM6,5a5,5,0,1,0,5,5A5,5,0,0,0,6,5Zm2.83,7.83A4,4,0,1,1,10,10,4,4,0,0,1,8.83,12.83Z" })));
312
-
313
- const Menu = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "menu" },
314
- index.h("path", { d: "M14,3.5a.5.5,0,0,0-.5-.5H2.5a.5.5,0,0,0,0,1h11A.5.5,0,0,0,14,3.5ZM13.5,12h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0-6h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0,3h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Z" })));
315
-
316
- const Notification = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "notification" },
317
- index.h("path", { d: "M14,11.31a.36.36,0,0,0-.11-.16A3,3,0,0,1,13,9.09V7A5,5,0,0,0,8.5,2.05V1.5a.5.5,0,0,0-1,0v.55A5,5,0,0,0,3,7V9.09a3,3,0,0,1-.85,2.06.36.36,0,0,0-.11.16.41.41,0,0,0,0,.19H2a.41.41,0,0,0,0,.19.51.51,0,0,0,.27.27.41.41,0,0,0,.19,0H5a3,3,0,0,0,6,0h2.5a.41.41,0,0,0,.19,0,.51.51,0,0,0,.27-.27.41.41,0,0,0,0-.19h0A.41.41,0,0,0,14,11.31ZM8,14a2,2,0,0,1-2-2h4A2,2,0,0,1,8,14ZM3.48,11A3.85,3.85,0,0,0,4,9.09V7a4,4,0,1,1,8,0V9.09A3.85,3.85,0,0,0,12.52,11Z" })));
318
-
319
- const Open = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "open" },
320
- index.h("path", { d: "M6,4,8.65,6.65l-5.5,5.5a.49.49,0,0,0,.7.7l5.5-5.5L12,10l1-7Z" })));
321
-
322
- const OpenWindow = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "open-window" },
323
- index.h("path", { d: "M6.85,9.85l4-4L13,8l1-6L8,3l2.15,2.15-4,4a.49.49,0,0,0,.7.7ZM13,14H2V3H5V2H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,2.5v12a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,15h12a.51.51,0,0,0,.5-.5V10.89H13Z" })));
324
-
325
- const Pan = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pan" },
326
- index.h("polygon", { points: "15 8 13 6 13 7.5 8.5 7.5 8.5 3 10 3 8 1 6 3 7.5 3 7.5 7.5 3 7.5 3 6 1 8 3 10 3 8.5 7.5 8.5 7.5 13 6 13 8 15 10 13 8.5 13 8.5 8.5 13 8.5 13 10 15 8" })));
327
-
328
- const PaperAirplane = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "paper-airplane" },
329
- index.h("path", { d: "M10.173 15.005c-.17 0-.33-.09-.42-.23l-3.31-5.2-5.21-3.32a.507.507 0 0 1-.23-.48c.02-.19.16-.35.34-.41l13-4.34c.18-.06.38-.01.51.12s.18.33.12.51l-4.33 13c-.06.18-.22.31-.41.34h-.06v.01Zm-2.74-5.73 2.59 4.07 3.69-11.06-11.06 3.7 4.07 2.59 3.57-3.57c.2-.2.51-.2.71 0 .2.2.2.51 0 .71l-3.57 3.57v-.01Z" })));
330
-
331
- const Paste = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "paste" },
332
- index.h("path", { d: "M3.61 15c-.44 0-.82-.16-1.14-.47-.32-.32-.47-.7-.47-1.14V4.03c0-.44.16-.82.47-1.14.32-.32.7-.47 1.14-.47l2.63-.03c.09-.39.3-.72.62-.99s.7-.4 1.13-.4c.43 0 .81.13 1.13.4.32.27.53.59.62.99h2.62c.44 0 .82.16 1.14.47.32.31.47.7.47 1.14v9.35c0 .44-.16.82-.47 1.14-.32.32-.7.47-1.14.47l-8.75.03V15Zm0-1 8.75-.03c.15 0 .3-.06.42-.19.13-.13.19-.27.19-.42V4c0-.15-.06-.3-.19-.42a.581.581 0 0 0-.42-.19h-1.38v1.42c0 .23-.08.42-.23.58-.15.15-.34.23-.57.23h-4.4c-.23 0-.42-.08-.57-.23a.8.8 0 0 1-.23-.58V3.39l-1.38.03c-.15 0-.3.06-.42.19-.13.13-.19.27-.19.42v9.35c0 .15.06.3.19.42.13.13.27.19.42.19l.01.01ZM7.99 3.62c.23 0 .42-.08.57-.23.15-.16.23-.35.23-.58 0-.23-.08-.42-.23-.57a.816.816 0 0 0-.58-.23c-.23 0-.42.08-.57.23-.15.16-.23.35-.23.58 0 .23.08.42.23.57.16.15.35.23.58.23Z" })));
333
-
334
- const Pencil = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pencil" },
335
- index.h("path", { d: "M14,3.28,12.72,2a1.71,1.71,0,0,0-2.44,0L2.81,9.48a3.9,3.9,0,0,0-1,1.81h0l-.65,2.59h0l0,.2a.79.79,0,0,0,.8.8l.2,0,2.59-.65h0a3.9,3.9,0,0,0,1.81-1L14,5.72a1.71,1.71,0,0,0,0-2.44Zm-8.18,9.2a2.85,2.85,0,0,1-1.35.76h0l-.17,0L2.71,11.71l0-.17h0a2.85,2.85,0,0,1,.76-1.35l6-6L11.8,6.49ZM13.28,5l-.77.78L10.25,3.46,11,2.72a.7.7,0,0,1,1,0L13.28,4a.7.7,0,0,1,0,1Z" })));
336
-
337
- const PersonHeight = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "person-height" },
338
- index.h("g", { fill: "none", stroke: "currentColor" },
339
- index.h("path", { "stroke-linejoin": "round", d: "M1.03 1.152h7.804ZM1.03 14.91h7.804ZM6.77 12.088l-1.526 1.525ZM3.671 12.075 5.196 13.6Z" }),
340
- index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "m12.072 11.029-1.846 3.196zM12.072 11.029l1.845 3.196zM12.072 6.266l-1.846 3.196ZM12.072 6.266l1.845 3.196Z" }),
341
- index.h("ellipse", { cx: "12.049", cy: "3.094", "paint-order": "markers stroke fill", rx: "1.104", ry: "1.075" }),
342
- index.h("path", { "stroke-linejoin": "round", d: "M6.77 3.957 5.243 2.432ZM3.671 3.97l1.525-1.525ZM5.222 2.987v10.14ZM12.072 10.967v-5.23Z" }))));
343
-
344
- const PersonRun = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "person-run" },
345
- index.h("path", { d: "M12.5,4A1.5,1.5,0,1,0,11,2.5,1.5,1.5,0,0,0,12.5,4Zm0-2a.5.5,0,1,1-.5.5A.5.5,0,0,1,12.5,2Zm-8,1h4a.5.5,0,0,0,0-1h-4a.5.5,0,0,0,0,1Zm0,3h2a.5.5,0,0,0,0-1h-2a.5.5,0,0,0,0,1Zm8.16,4-2.45-.82L12,5.72a.51.51,0,0,0,0-.48A.52.52,0,0,0,11.5,5h-2a.47.47,0,0,0-.35.15l-2,2a.49.49,0,0,0,.7.7L9.71,6h1L9.05,9.28a.49.49,0,0,0,0,.41.44.44,0,0,0,.3.28l2.66.89V14.5a.5.5,0,0,0,1,0v-4A.49.49,0,0,0,12.66,10Zm2.19-3.88a.48.48,0,0,0-.7,0l-.65.64-.65-.64a.49.49,0,0,0-.7.7l1,1a.48.48,0,0,0,.7,0l1-1A.48.48,0,0,0,14.85,6.15Zm-6.7,4L7.29,11H4.5a.5.5,0,0,0,0,1h3a.47.47,0,0,0,.35-.15l1-1a.49.49,0,0,0-.7-.7ZM4.5,9h1a.5.5,0,0,0,0-1h-1a.5.5,0,0,0,0,1Z" })));
346
-
347
- const PersonShort = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "person-short" },
348
- index.h("g", { fill: "none", stroke: "currentColor" },
349
- index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "m8.293 12.86-2.158 2.374ZM8.293 12.86l2.157 2.374zM8.293 9.325l-2.158 2.373ZM8.293 9.325l2.157 2.373Z" }),
350
- index.h("path", { "stroke-linejoin": "round", d: "M8.293 12.815V8.932Z" }),
351
- index.h("ellipse", { cx: "8.242", cy: "6.771", "paint-order": "markers stroke fill", rx: ".981", ry: ".956" }))));
352
-
353
- const PersonTall = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "person-tall" },
354
- index.h("g", { fill: "none", stroke: "currentColor" },
355
- index.h("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "m8.074 11.39-2.158 3.736ZM8.074 11.39l2.157 3.736zM8.074 5.82 5.916 9.559ZM8.074 5.82l2.157 3.738Z" }),
356
- index.h("ellipse", { cx: "8.047", cy: "2.448", "paint-order": "markers stroke fill", rx: "1.29", ry: "1.256" }),
357
- index.h("path", { "stroke-linejoin": "round", d: "M8.074 11.317V5.202Z" }))));
358
-
359
- const PersonWalk = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "person-walk" },
360
- index.h("path", { d: "M9,7.71l1.15,1.14a.49.49,0,0,0,.7-.7L9,6.29ZM7.5,4A1.5,1.5,0,1,0,6,2.5,1.5,1.5,0,0,0,7.5,4Zm0-2a.5.5,0,1,1-.5.5A.5.5,0,0,1,7.5,2ZM10,11.34l-.12-.19L8,9.29v-4l-.15-.14-.06,0,0,0h0L7.56,5h0l-.22,0h0l-2,1a.51.51,0,0,0-.23.23l-1,2a.5.5,0,0,0,.9.44l.92-1.85L7,6.31V9.5a.52.52,0,0,0,.14.35l1.07,1.06h0l.85.85,1,2.89a.5.5,0,0,0,.94-.32ZM4.1,14.2a.5.5,0,0,0,.8.6l2.48-3.3-.72-.72Z" })));
361
-
362
- const PinFill = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-fill" },
363
- index.h("path", { d: "M8,.55A5.9,5.9,0,0,0,2.1,6.44a9.14,9.14,0,0,0,2.66,6.24,11.44,11.44,0,0,0,1.93,1.65,7.43,7.43,0,0,0,.73.44l.28.12a.78.78,0,0,0,.6,0,6.65,6.65,0,0,0,1.34-.79,11.79,11.79,0,0,0,2.76-2.88,8.59,8.59,0,0,0,1.5-4.78A5.9,5.9,0,0,0,8,.55ZM8,8.44a2,2,0,1,1,2-2A2,2,0,0,1,8,8.44Z" })));
364
-
365
- const PinLine = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-line" },
366
- index.h("path", { d: "M8,.55A5.9,5.9,0,0,0,2.1,6.44a9.14,9.14,0,0,0,2.66,6.24,11.82,11.82,0,0,0,1.92,1.65c.29.19.53.33.74.44l.28.12a.78.78,0,0,0,.6,0,6.65,6.65,0,0,0,1.34-.79,11.79,11.79,0,0,0,2.76-2.88,8.59,8.59,0,0,0,1.5-4.78A5.9,5.9,0,0,0,8,.55Zm2.58,11.51a11.48,11.48,0,0,1-1.77,1.52,6.89,6.89,0,0,1-.64.38L8,14l-.29-.13a10.36,10.36,0,0,1-2.85-2.49A7.93,7.93,0,0,1,3,6.44a5,5,0,1,1,10,0A8.24,8.24,0,0,1,10.58,12.06ZM8,4.44a2,2,0,1,0,2,2A2,2,0,0,0,8,4.44Z" })));
367
-
368
- const PinText = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-text" },
369
- index.h("path", { d: "M10.52,9H9.42L9,7.86H7L6.58,9H5.51L7.45,4H8.52ZM8.66,7,8,5.17,7.3,7Z" }),
370
- index.h("path", { d: "M8,15H8a.5.5,0,0,1-.42-.23L5.72,12H3.48A1.5,1.5,0,0,1,2,10.5v-8A1.5,1.5,0,0,1,3.48,1h9A1.5,1.5,0,0,1,14,2.5v8a1.5,1.5,0,0,1-1.5,1.5H10.19L8.37,14.8A.52.52,0,0,1,8,15ZM3.48,2a.5.5,0,0,0-.5.5v8a.51.51,0,0,0,.5.5H6a.48.48,0,0,1,.42.23L8,13.61,9.5,11.22A.51.51,0,0,1,9.92,11h2.56a.5.5,0,0,0,.5-.5v-8a.5.5,0,0,0-.5-.5Z" }),
371
- ' '));
372
-
373
- const PinTextFill = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-text-fill" },
374
- index.h("path", { d: "M8,15H8a.5.5,0,0,1-.42-.23L5.72,12H3.48A1.5,1.5,0,0,1,2,10.5v-8A1.5,1.5,0,0,1,3.48,1h9A1.5,1.5,0,0,1,14,2.5v8a1.5,1.5,0,0,1-1.5,1.5H10.19L8.37,14.8A.52.52,0,0,1,8,15Z" })));
375
-
376
- const PinTextSquare = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-text-square" },
377
- index.h("path", { d: "M13.51 14.97H2.5c-.83 0-1.5-.67-1.5-1.5V2.5C1 1.67 1.67 1 2.5 1h11.01c.83 0 1.5.67 1.5 1.5v10.97c0 .83-.67 1.5-1.5 1.5ZM2.5 2c-.28 0-.5.22-.5.5v10.97c0 .28.22.5.5.5h11.01c.28 0 .5-.22.5-.5V2.5c0-.28-.22-.5-.5-.5H2.5Z" }),
378
- index.h("path", { d: "m3.98 11.97 3.3-8h1.37l3.37 8h-1.04l-.88-2.01H5.9l-.91 2.01H3.98Zm4.02-7-1.76 4h3.42L8 4.97Z" })));
379
-
380
- const Plus = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "plus" },
381
- index.h("path", { d: "M14.36,7.5H8.5V1.64a.5.5,0,0,0-1,0V7.5H1.64a.5.5,0,0,0,0,1H7.5v5.86a.5.5,0,0,0,1,0V8.5h5.86a.5.5,0,0,0,0-1Z" })));
382
-
383
- const PlusWithArrow = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "plus-with-arrow" },
384
- index.h("path", { d: "M8.58 1.46c-3.58 0-6.5 2.92-6.5 6.5H.59l2 3 2-3h-1.5c0-3.03 2.47-5.5 5.5-5.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5c-1.19 0-2.32-.37-3.27-1.08a.505.505 0 0 0-.7.1c-.17.22-.12.53.1.7 1.13.84 2.46 1.28 3.87 1.28 3.58 0 6.5-2.92 6.5-6.5s-2.92-6.5-6.51-6.5Z" }),
385
- index.h("path", { d: "M8.5 5.53c-.28 0-.5.22-.5.5v1.49H6.51c-.28 0-.5.22-.5.5s.22.5.5.5H8v1.51c0 .28.22.5.5.5s.5-.22.5-.5V8.52h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H9V6.03c0-.28-.22-.5-.5-.5Z" })));
386
-
387
- const PMI = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pmi" },
388
- index.h("path", { d: "M14.49 6.03 4.5 6c-.28 0-.5-.22-.5-.5v-3c0-.13.05-.26.15-.35A.51.51 0 0 1 4.5 2l9.99.03c.28 0 .5.22.5.5v3c0 .13-.05.26-.15.35a.51.51 0 0 1-.35.15ZM5 5l8.99.03v-2L5 3v2Z" }),
389
- index.h("path", { d: "M9.5 12.01H4.55c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H9V6.02c0-.28.22-.5.5-.5s.5.22.5.5v5.49c0 .28-.22.5-.5.5Z" }),
390
- index.h("path", { d: "M3.46 15.04c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm2.01-.01h-.01c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.51.22.51.5-.22.5-.5.5Zm-3.99-.01c-.28 0-.5-.22-.5-.49 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm6-.01c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm-6-2c-.28 0-.5-.22-.5-.5 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm0-2.01c-.28 0-.5-.22-.5-.5 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm6-1.97c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5c0 .29-.22.51-.5.51Zm-5.97-.02c-.28 0-.51-.22-.51-.5s.22-.5.5-.5h.01c.28 0 .5.22.5.5s-.22.5-.5.5ZM3.52 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm2.01-.02c-.28 0-.51-.22-.51-.5s.22-.5.5-.5h.01c.28 0 .5.22.5.5s-.22.5-.5.5Z" }),
391
- index.h("circle", { cx: "4.49", cy: "11.53", r: "1.5" })));
392
-
393
- const PreciseMeasurement = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "precise-measurement" },
394
- index.h("path", { d: "m1.91 1.54 4.13 2.1c.05.03.09.07.13.11.04.04.08.09.11.15.02.05.05.11.06.18.02.06.02.13.02.19v2.02h-.64V4.27L2.1 2.53l.05 11.1 3.57-1.95V9.67h.64v2.01c0 .07 0 .13-.02.2-.01.06-.04.12-.06.18-.03.06-.07.11-.11.15-.04.04-.08.08-.13.11l-3.82 2.17c-.06.03-.14.05-.2.06-.08 0-.15-.02-.21-.05-.05-.02-.1-.06-.15-.1-.04-.05-.08-.1-.11-.16l-.05-.19-.04-11.94c0-.1.01-.19.04-.27.02-.09.07-.16.11-.23l.13-.16.17.09zM13.9 2.53l-3.62 1.74v2.02h-.64V4.27c0-.06 0-.13.02-.19.01-.07.04-.13.06-.18.03-.06.07-.11.11-.15.04-.04.08-.08.13-.11h.01l4.29-2.19.13.16c.04.07.09.14.11.23.03.08.04.17.04.26l-.04 11.95-.05.19c-.03.06-.07.11-.11.16-.05.04-.1.08-.15.1-.06.03-.13.05-.21.05a.762.762 0 0 1-.2-.06l-3.82-2.17c-.05-.03-.09-.07-.13-.11a.583.583 0 0 1-.11-.15c-.02-.06-.05-.12-.06-.18-.02-.07-.02-.13-.02-.2V9.67h.64v2.01l3.57 1.95.05-11.1z" }),
395
- index.h("path", { d: "m13.31 7.98-2.34-2.69v1.99H5.03V5.29L2.79 7.98l2.24 2.69v-2h5.94v2z" })));
396
-
397
- const Rabbit = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "rabbit" },
398
- index.h("path", { d: "M13.5,7a.51.51,0,1,0,.35.15A.47.47,0,0,0,13.5,7Zm1.58-1.27-1.25-.62L10.9,1.2A.51.51,0,0,0,10.39,1,.52.52,0,0,0,10,1.4a9.84,9.84,0,0,0-.21,2,3.61,3.61,0,0,0,1.31,3.16l0,0H11A1.29,1.29,0,0,1,9.92,6h0A7.12,7.12,0,0,0,8.11,3.78,4.28,4.28,0,0,0,5.5,3a3.39,3.39,0,0,0-1.73.54A9.68,9.68,0,0,0,1.24,6H.5A.5.5,0,0,0,0,6.31a.47.47,0,0,0,.11.54L1,7.73A2.4,2.4,0,0,0,2,9.59a3.47,3.47,0,0,0,1.85.56h0a5.49,5.49,0,0,1,2.2.59L5.37,11A2.51,2.51,0,0,0,3,13.5a.51.51,0,0,0,.5.5h1a1.64,1.64,0,0,0,.65-.17,8.83,8.83,0,0,0,.91-.5c.28-.17.54-.33.64-.37l1.21-.48h0l.1.18,0,0h0a.51.51,0,0,0,.23.23l2,1a.49.49,0,0,0,.57-.1,1.35,1.35,0,0,0,.43-.94,1.48,1.48,0,0,0-.29-.84,2,2,0,0,0-.19-.22,3,3,0,0,0,1.73-1,2.16,2.16,0,0,0,.25-.43l.07.05A3.16,3.16,0,0,0,14.5,11a1.58,1.58,0,0,0,.86-.24,1.5,1.5,0,0,0,.57-.8A1.74,1.74,0,0,0,16,9.5V7.21A1.65,1.65,0,0,0,15.08,5.73ZM6.31,12h0c-.28.14-.65.38-1,.6a3.67,3.67,0,0,1-.51.27L4.56,13H4.09A1.51,1.51,0,0,1,5.5,12l.2,0L7,11.4a3.45,3.45,0,0,1,.28.26ZM15,9.5a.93.93,0,0,1-.08.3l-.13.13a.44.44,0,0,1-.29.07,2.1,2.1,0,0,1-1.1-.42,4.58,4.58,0,0,1-.4-.3l-.11-.1,0,0h0A.47.47,0,0,0,12.31,9,.5.5,0,0,0,12,9.5h0a1.42,1.42,0,0,1-.33.77,2.26,2.26,0,0,1-1.52.69,4,4,0,0,0,0-.68A4.8,4.8,0,0,0,9,7.2a6.53,6.53,0,0,0-1.2-1.12.5.5,0,1,0-.56.84h0A5.59,5.59,0,0,1,8.31,8a3.68,3.68,0,0,1,.89,2.32A3.49,3.49,0,0,1,9,11.34a.22.22,0,0,0,0,.11s0,0,0,.05H9a.37.37,0,0,0,0,.18v0a1,1,0,0,0,.09.13l.06,0,.08.06h0a3.63,3.63,0,0,1,.6.4,1.58,1.58,0,0,1,.31.33.37.37,0,0,1,.07.14l-1.4-.7s0-.08-.08-.15h0l-.21-.29h0a.37.37,0,0,0-.13-.17A6.08,6.08,0,0,0,3.86,9.15h0a2.5,2.5,0,0,1-1.31-.37A1.44,1.44,0,0,1,2,7.5a.47.47,0,0,0-.15-.35L1.67,7a.56.56,0,0,0,.25-.18v0A11.44,11.44,0,0,1,3.24,5.22,3.68,3.68,0,0,1,5.5,4a3.21,3.21,0,0,1,2,.59A6.3,6.3,0,0,1,9.07,6.47h0A2.27,2.27,0,0,0,11,7.54a2.14,2.14,0,0,0,1-.23h0L12.72,7a.5.5,0,0,0-.22-1h0a1.62,1.62,0,0,1-.89-.36,2.7,2.7,0,0,1-.81-2.29c0-.17,0-.38,0-.58l2.27,3,.18.15,1.36.68a.66.66,0,0,1,.36.58Z" })));
399
-
400
- const Refresh = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "refresh" },
401
- index.h("g", { stroke: "none", "stroke-width": "1", fill: "none", "fill-rule": "evenodd" },
402
- index.h("g", { transform: "translate(1, 2)", fill: "currentColor", "fill-rule": "nonzero" },
403
- index.h("path", { d: "M2.94567906,1.06567906 C5.94567906,-0.904320941 9.97567906,-0.0643209409 11.9456791,2.93567906 L13.1956791,2.11567906 L13.1656791,5.72567906 L9.84567906,4.31567906 L11.0956791,3.49567906 C9.43567906,0.955679059 6.01567906,0.245679059 3.47567906,1.91567906 C0.935679059,3.58567906 0.225679059,6.99567906 1.89567906,9.53567906 C3.56567906,12.0756791 6.97567906,12.7856791 9.51567906,11.1156791 C10.5056791,10.4656791 11.2556791,9.52567906 11.6656791,8.41567906 C11.7556791,8.15567906 12.0456791,8.02567906 12.3056791,8.11567906 C12.5656791,8.20567906 12.6956791,8.49567906 12.6056791,8.75567906 C12.1256791,10.0756791 11.2456791,11.1756791 10.0656791,11.9456791 C7.06567906,13.9156791 3.03567906,13.0756791 1.06567906,10.0756791 C-0.904320941,7.07567906 -0.0643209409,3.04567906 2.93567906,1.07567906 L2.94567906,1.06567906 Z" })))));
404
-
405
- const Rename = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "rename" },
406
- index.h("path", { d: "M14.85 6.15A.47.47 0 0 0 14.5 6h-2v1H14v2h-1.5v1h2a.51.51 0 0 0 .5-.5v-3a.47.47 0 0 0-.15-.35ZM8.5 9H2V7h6.5V6h-7a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v3a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h7V9Zm2.5 2V5a1.5 1.5 0 0 1 1.5-1.5v-1a2.5 2.5 0 0 0-2 1 2.5 2.5 0 0 0-2-1v1A1.5 1.5 0 0 1 10 5v6a1.5 1.5 0 0 1-1.5 1.5v1a2.5 2.5 0 0 0 2-1 2.5 2.5 0 0 0 2 1v-1A1.5 1.5 0 0 1 11 11Z" })));
407
-
408
- const Report = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "report" },
409
- index.h("g", { stroke: "none", "stroke-width": "1", fill: "none", "fill-rule": "evenodd" },
410
- index.h("g", { transform: "translate(2, 2)", fill: "currentColor", "fill-rule": "nonzero" },
411
- index.h("path", { d: "M10.99,0 L1,0 C0.45,0 0,0.45 0,1 L0,11 C0,11.55 0.45,12 1,12 L10.99,12 C11.54,12 11.99,11.55 11.99,11 L11.99,1 C11.99,0.45 11.54,0 10.99,0 L10.99,0 Z M10.99,11 L1,11 L1,1 L10.99,1 L10.99,11 Z" }),
412
- index.h("path", { d: "M8.49,7.02 C8.77,7.02 8.99,6.8 8.99,6.52 L8.99,2.93 C8.99,2.65 8.77,2.43 8.49,2.43 C8.21,2.43 7.99,2.65 7.99,2.93 L7.99,6.52 C7.99,6.8 8.21,7.02 8.49,7.02 Z" }),
413
- index.h("path", { d: "M5.99,3.51 C5.99,3.23 5.77,3.01 5.49,3.01 L3.46,3.01 C3.18,3.01 2.96,3.23 2.96,3.51 C2.96,3.79 3.18,4.01 3.46,4.01 L5.49,4.01 C5.77,4.01 5.99,3.79 5.99,3.51 Z" }),
414
- index.h("path", { d: "M5.99,6.01 C5.99,5.73 5.77,5.51 5.49,5.51 L3.46,5.51 C3.18,5.51 2.96,5.73 2.96,6.01 C2.96,6.29 3.18,6.51 3.46,6.51 L5.49,6.51 C5.77,6.51 5.99,6.29 5.99,6.01 Z" }),
415
- index.h("path", { d: "M5.99,8.51 C5.99,8.23 5.77,8.01 5.49,8.01 L3.46,8.01 C3.18,8.01 2.96,8.23 2.96,8.51 C2.96,8.79 3.18,9.01 3.46,9.01 L5.49,9.01 C5.77,9.01 5.99,8.79 5.99,8.51 Z" }),
416
- index.h("path", { d: "M8.53,9.59 C8.7,9.59 8.85,9.53 8.97,9.41 C9.09,9.29 9.15,9.15 9.15,8.97 C9.15,8.79 9.09,8.65 8.97,8.53 C8.85,8.41 8.71,8.35 8.53,8.35 C8.35,8.35 8.21,8.41 8.09,8.53 C7.97,8.65 7.91,8.79 7.91,8.97 C7.91,9.15 7.97,9.29 8.09,9.41 C8.21,9.53 8.35,9.59 8.53,9.59 Z" })))));
417
-
418
- const Reset = () => (index.h("svg", { "data-testid": "reset", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
419
- index.h("path", { d: "M8,2A6,6,0,0,0,2,8H0l2.5,3.5L5,8H3A5,5,0,1,1,13,8a.41.41,0,0,0,0,.19.54.54,0,0,0,.1.16h0a.54.54,0,0,0,.16.1.47.47,0,0,0,.38,0A.51.51,0,0,0,14,8.19.41.41,0,0,0,14,8,6,6,0,0,0,8,2ZM9.93,12.62h0a.5.5,0,0,0,.38.92h0a.5.5,0,0,0,.27-.66A.49.49,0,0,0,9.93,12.62ZM8,13a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,13Zm5.28-3.37a.51.51,0,0,0-.66.28h0a.51.51,0,0,0,.27.66.5.5,0,0,0,.65-.27h0A.52.52,0,0,0,13.28,9.63Zm-1.74,1.9h0a.5.5,0,0,0,0,.71.48.48,0,0,0,.7,0h0a.48.48,0,0,0,0-.7A.5.5,0,0,0,11.54,11.53Z" })));
420
-
421
- const Resize = () => (index.h("svg", { "data-testid": "resize", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
422
- index.h("path", { d: "\n M14.5,14.5\n l1-1\n a.2.2,0,0,0-.75-.75\n L13.75,13.75\n l-1,1\n a.2.2,0,0,0.75.75Z\n M14.5,10.5\n l1-1\n a.2.2,0,0,0-.75-.75\n L9.75,13.75\n l-1,1\n a.2.2,0,0,0.75.75Z\n M14.5,6.5\n l1-1\n a.2.2,0,0,0-.75-.75\n L5.75,13.75\n l-1,1\n a.2.2,0,0,0.75.75Z\n M14.5,2.5\n l1-1\n a.2.2,0,0,0-.75-.75\n L1.75,13.75\n l-1,1\n a.2.2,0,0,0.75.75Z" })));
423
-
424
- const Rotate = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "rotate" },
425
- index.h("path", { d: "M10.5,14H5a2.5,2.5,0,0,1-2.5-2.5V11H4L2,8,0,11H1.5v.5A3.5,3.5,0,0,0,5,15h5.5a.5.5,0,0,0,0-1Zm4-9V4.5A3.5,3.5,0,0,0,11,1H5.5a.5.5,0,0,0,0,1H11a2.5,2.5,0,0,1,2.5,2.5V5H12l2,3,2-3Zm-5,0h-3A1.5,1.5,0,0,0,5,6.5v3A1.5,1.5,0,0,0,6.5,11h3A1.5,1.5,0,0,0,11,9.5v-3A1.5,1.5,0,0,0,9.5,5ZM10,9.5a.5.5,0,0,1-.5.5h-3A.5.5,0,0,1,6,9.5v-3A.5.5,0,0,1,6.5,6h3a.5.5,0,0,1,.5.5Z" })));
426
-
427
- const Ruler = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "ruler" },
428
- index.h("path", { d: "M14.85,4.15l-3-3a.48.48,0,0,0-.7,0l-10,10a.48.48,0,0,0,0,.7l3,3a.48.48,0,0,0,.7,0l10-10a.48.48,0,0,0,0-.7ZM4.5,13.79,2.21,11.5,4,9.67a.44.44,0,0,0,.12.18l1,1a.49.49,0,0,0,.7-.7l-1-1A.44.44,0,0,0,4.67,9L6,7.67a.44.44,0,0,0,.12.18l1,1a.49.49,0,0,0,.7-.7l-1-1A.44.44,0,0,0,6.67,7L8,5.67a.44.44,0,0,0,.12.18l1,1a.49.49,0,0,0,.7-.7l-1-1A.44.44,0,0,0,8.67,5L10,3.67a.44.44,0,0,0,.12.18l1,1a.49.49,0,0,0,.7-.7l-1-1A.44.44,0,0,0,10.67,3l.83-.82L13.79,4.5Z" })));
429
-
430
- const Scissors = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "scissors" },
431
- index.h("path", { d: "m8.29 8.91-2.44 2.34c.11.19.2.39.25.59.05.21.08.42.08.65 0 .68-.25 1.27-.76 1.76s-1.12.73-1.83.73-1.32-.24-1.83-.73S1 13.18 1 12.5c0-.68.25-1.27.76-1.76s1.12-.73 1.83-.73c.23 0 .46.03.67.08.22.05.42.13.62.24l2.44-2.34-2.44-2.34c-.2.11-.4.19-.62.24-.22.05-.44.08-.67.08-.71 0-1.32-.24-1.83-.73S1 4.17 1 3.49c0-.68.25-1.27.76-1.76S2.88 1 3.59 1s1.32.24 1.83.73.76 1.07.76 1.76c0 .22-.03.44-.08.65-.05.21-.14.41-.25.59l8.94 8.58c.22.21.27.45.15.71-.12.26-.34.4-.64.4-.09 0-.17-.02-.26-.05a.636.636 0 0 1-.22-.14l-5.53-5.3v-.02ZM10.28 7l-.96-.93 4.5-4.31c.06-.06.14-.11.22-.14.08-.03.17-.05.26-.05.31 0 .52.13.64.4.12.26.07.5-.15.72l-4.5 4.32-.01-.01ZM3.59 5.21c.5 0 .92-.17 1.28-.51.35-.34.53-.75.53-1.22s-.18-.89-.53-1.22c-.35-.34-.78-.51-1.28-.51s-.92.17-1.28.51c-.35.34-.53.75-.53 1.22s.18.89.53 1.22c.35.34.78.51 1.28.51Zm0 9.02c.5 0 .92-.17 1.28-.51.35-.34.53-.75.53-1.22s-.18-.89-.53-1.22c-.35-.33-.78-.51-1.28-.51s-.92.17-1.28.51c-.35.34-.53.75-.53 1.22s.18.89.53 1.22c.35.34.78.51 1.28.51Z" })));
432
-
433
- const Search = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "search" },
434
- index.h("path", { d: "M14.85,14.15l-4-4a.37.37,0,0,0-.2-.12,5.45,5.45,0,1,0-.62.62.37.37,0,0,0,.12.2l4,4a.49.49,0,0,0,.7-.7ZM9.71,9.71a4.51,4.51,0,0,1-6.42,0,4.51,4.51,0,0,1,0-6.42,4.51,4.51,0,0,1,6.42,0,4.51,4.51,0,0,1,0,6.42Z" })));
435
-
436
- const ShowOnlyNearby = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "show-only-nearby" },
437
- index.h("path", { d: "M3.5,10a.5.5,0,0,0-.5.5H3a.5.5,0,0,0,1,0H4A.5.5,0,0,0,3.5,10Zm0,2a.5.5,0,1,0,.35.85A.5.5,0,0,0,3.5,12Zm7-8h0a.5.5,0,0,0,0-1h0a.5.5,0,0,0,0,1Zm2,0a.51.51,0,0,0,.5-.5.5.5,0,1,0-.85.35A.47.47,0,0,0,12.5,4Zm0,2a.5.5,0,0,0,.5-.5h0a.5.5,0,0,0-1,0h0A.5.5,0,0,0,12.5,6Zm0,2a.51.51,0,1,0-.35-.15A.47.47,0,0,0,12.5,8ZM8.85,3.15A.5.5,0,0,0,8,3.5a.5.5,0,1,0,.85-.35ZM3.5,8a.5.5,0,1,0,.35.85A.5.5,0,0,0,3.5,8Zm4,4a.51.51,0,1,0,.35.15A.47.47,0,0,0,7.5,12Zm7.35-2.85A.47.47,0,0,0,14.5,9h-5a.51.51,0,0,0-.5.5v5a.51.51,0,0,0,.5.5h5a.51.51,0,0,0,.5-.5v-5A.47.47,0,0,0,14.85,9.15ZM14,14H10V10h4ZM7,1.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,6.5,1h-5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,1.5v5a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,7h5A.51.51,0,0,0,7,6.5ZM6,6H2V2H6Zm-.5,6h0a.5.5,0,0,0,0,1h0a.5.5,0,0,0,0-1Z" })));
438
-
439
- const Snapshots = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "snapshots" },
440
- index.h("path", { d: "M13.5,2h-3A1.5,1.5,0,0,0,9,3.5v2A1.5,1.5,0,0,0,10.5,7h3A1.5,1.5,0,0,0,15,5.5v-2A1.5,1.5,0,0,0,13.5,2ZM14,5.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM13.5,9h-3A1.5,1.5,0,0,0,9,10.5v2A1.5,1.5,0,0,0,10.5,14h3A1.5,1.5,0,0,0,15,12.5v-2A1.5,1.5,0,0,0,13.5,9Zm.5,3.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM5.5,9h-3A1.5,1.5,0,0,0,1,10.5v2A1.5,1.5,0,0,0,2.5,14h3A1.5,1.5,0,0,0,7,12.5v-2A1.5,1.5,0,0,0,5.5,9ZM6,12.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM5.5,2h-3A1.5,1.5,0,0,0,1,3.5v2A1.5,1.5,0,0,0,2.5,7h3A1.5,1.5,0,0,0,7,5.5v-2A1.5,1.5,0,0,0,5.5,2ZM6,5.5a.5.5,0,0,1-.5.5h-3A.5.5,0,0,1,2,5.5v-2A.5.5,0,0,1,2.5,3h3a.5.5,0,0,1,.5.5Z" })));
441
-
442
- const SquareDotOutline = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "square-dot-outline" },
443
- index.h("path", { d: "M11 4.53c0-.28-.22-.5-.5-.5L4.51 4a.47.47 0 0 0-.35.15.51.51 0 0 0-.15.35v6.02c0 .28.22.5.5.5l5.99.03c.13 0 .26-.05.35-.15a.51.51 0 0 0 .15-.35V4.53Zm-1 5.52-4.99-.03V5l4.99.03v5.02ZM3.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM5.49 13c-.28 0-.5.22-.5.5s.22.5.5.5h.01c.28 0 .5-.22.5-.5s-.23-.5-.51-.5ZM1.5 7c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 9c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 11c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 13c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM7.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM9.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM11.49 13c-.28 0-.5.22-.5.5s.22.5.5.5h.01c.28 0 .5-.22.5-.5s-.23-.5-.51-.5ZM13.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM1.5 5c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 3c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 7c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 9c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 11c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 5c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 3c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM7.5 2c.28 0 .5-.22.5-.5 0-.29-.22-.5-.5-.5s-.5.23-.5.5.22.5.5.5ZM1.51 1H1.5c-.28 0-.5.22-.5.5s.23.5.51.5.5-.22.5-.5-.22-.5-.5-.5ZM3.5 1c-.28 0-.5.22-.5.5s.23.5.5.5.5-.22.5-.5-.22-.5-.5-.5ZM5.51 2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H5.5c-.28 0-.5.22-.5.5s.23.5.51.5ZM13.5 1c-.28 0-.5.23-.5.5s.22.5.5.5.5-.22.5-.5c0-.29-.22-.5-.5-.5ZM9.5 2c.28 0 .5-.22.5-.5S9.78 1 9.5 1s-.5.22-.5.5.23.5.5.5ZM11.5 1h-.01c-.28 0-.5.22-.5.5s.23.5.51.5.5-.22.5-.5-.22-.5-.5-.5Z" })));
444
-
445
- const Star = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "star" },
446
- index.h("path", { d: "M14.78,6.43a.49.49,0,0,0-.4-.34l-4.1-.6L8.45,1.78a.5.5,0,0,0-.9,0L5.72,5.49l-4.1.6a.49.49,0,0,0-.4.34.5.5,0,0,0,.12.51l3,2.89-.7,4.09a.48.48,0,0,0,.2.48.47.47,0,0,0,.52,0L8,12.52l3.67,1.92a.47.47,0,0,0,.52,0,.48.48,0,0,0,.2-.48l-.7-4.09,3-2.89A.5.5,0,0,0,14.78,6.43Zm-4,2.87a.49.49,0,0,0-.15.44l.57,3.35-3-1.58a.47.47,0,0,0-.46,0l-3,1.58.57-3.35a.49.49,0,0,0-.15-.44L2.77,6.93l3.35-.48a.52.52,0,0,0,.38-.28l1.5-3,1.5,3a.52.52,0,0,0,.38.28l3.35.48Z" })));
447
-
448
- const Tag = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "tag" },
449
- index.h("g", { transform: "translate(1, 1)" },
450
- index.h("path", { d: "M6.3200002 13.68C6.1500001 13.68 5.9899998 13.65 5.8200002 13.58C5.6500001 13.51 5.5 13.42 5.3699999 13.29L0.38999999 8.4200001C0.25 8.29 0.16 8.1400003 0.090000004 7.98C0.029999999 7.8200002 0 7.6599998 0 7.5C0 7.3400002 0.029999999 7.1700001 0.090000004 7.0100002C0.15000001 6.8499999 0.25 6.6999998 0.38999999 6.5700002L6.6999998 0.38999999C6.8200002 0.27000001 6.9699998 0.18000001 7.1300001 0.11C7.3000002 0.039999999 7.4699998 0 7.6500001 0L12.65 0C13.02 0 13.34 0.13 13.6 0.38C13.86 0.63999999 13.99 0.94 13.99 1.3L13.99 6.1799998C13.99 6.3600001 13.96 6.52 13.89 6.6799998C13.82 6.8400002 13.73 6.98 13.6 7.0999999L7.27 13.28C7.1399999 13.41 6.9899998 13.51 6.8200002 13.57C6.6500001 13.64 6.4899998 13.67 6.3200002 13.67L6.3200002 13.68ZM6.1500001 12.53C6.1500001 12.53 6.25 12.6 6.3200002 12.6C6.3899999 12.6 6.4400001 12.58 6.4899998 12.53L12.82 6.3400002C12.82 6.3400002 12.86 6.29 12.87 6.2600002C12.87 6.23 12.88 6.1999998 12.88 6.1799998L12.88 1.3099999C12.88 1.25 12.86 1.1900001 12.81 1.15C12.77 1.11 12.71 1.09 12.64 1.09L7.5599999 1.09L1.16 7.3400002C1.16 7.3400002 1.09 7.4400001 1.09 7.5C1.09 7.5599999 1.11 7.6199999 1.16 7.6599998C1.16 7.6599998 6.1399999 12.52 6.1399999 12.52L6.1500001 12.53ZM11.02 3.8C11.28 3.8 11.5 3.71 11.68 3.54C11.86 3.3699999 11.95 3.1500001 11.95 2.9000001C11.95 2.6500001 11.86 2.4300001 11.68 2.26C11.5 2.0799999 11.28 2 11.02 2C10.76 2 10.54 2.0899999 10.37 2.26C10.19 2.4400001 10.1 2.6500001 10.1 2.9000001C10.1 3.1500001 10.19 3.3599999 10.37 3.54C10.55 3.72 10.77 3.8 11.02 3.8L11.02 3.8Z" }))));
451
-
452
- const TapeMeasure = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "tape-measure" },
453
- index.h("path", { d: "M6 6a2 2 0 1 1-2 2 2 2 0 0 1 2-2m0-1a3 3 0 1 0 3 3 3 3 0 0 0-3-3Z" }),
454
- index.h("path", { d: "M7 8.51a.5.5 0 0 1-.5-.5.46.46 0 0 0-.5-.45.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5A1.46 1.46 0 0 1 7.47 8a.5.5 0 0 1-.47.51Z" }),
455
- index.h("path", { d: "M15 11.86V11a1 1 0 0 0-1-1h-3V8h.47a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-.66A3 3 0 0 0 8 3H4a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h10v.49a.5.5 0 0 0 .5.5.51.51 0 0 0 .5-.5V11.86ZM2 10V6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Zm12 2h-3.76a3 3 0 0 0 .61-1H12v.07a.5.5 0 1 0 1 0V11h1Z" })));
456
-
457
- const Teleport = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "teleport" },
458
- index.h("path", { d: "M13.53,11.5a4.13,4.13,0,0,0-1.65-.93,11.17,11.17,0,0,0-1.84-.4l.88-1.4a.49.49,0,0,0,0-.51A.51.51,0,0,0,10.5,8h-2V1.5a.5.5,0,0,0-1,0V8h-2a.51.51,0,0,0-.44.26.49.49,0,0,0,0,.51L6,10.16a8.92,8.92,0,0,0-2.43.65,3.39,3.39,0,0,0-1,.67,1.49,1.49,0,0,0-.46,1,1.51,1.51,0,0,0,.6,1.14,5.3,5.3,0,0,0,2.19,1A13.4,13.4,0,0,0,8,15a12.38,12.38,0,0,0,4.05-.61,4.19,4.19,0,0,0,1.33-.73A1.51,1.51,0,0,0,14,12.5,1.45,1.45,0,0,0,13.53,11.5ZM9.6,9,8,11.56,6.4,9Zm3.15,3.91a4.45,4.45,0,0,1-1.79.78A12.39,12.39,0,0,1,8,14a11.25,11.25,0,0,1-3.72-.56,3,3,0,0,1-1-.55C3,12.72,3,12.59,3,12.5s0-.18.19-.34a3.33,3.33,0,0,1,1.33-.7,10.19,10.19,0,0,1,2-.4l1.07,1.71a.5.5,0,0,0,.84,0l1.07-1.71a8.78,8.78,0,0,1,2.64.64,2.28,2.28,0,0,1,.71.47.47.47,0,0,1,.18.33C13,12.59,13,12.72,12.75,12.91Z" })));
459
-
460
- const TeleportAndAlign = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "teleport-and-align" },
461
- index.h("path", { d: "M13.5,13H2.5a.48.48,0,0,0,0,1h11a.48.48,0,0,0,0-1Zm-5.92-.25a.5.5,0,0,0,.84,0l2.5-4a.49.49,0,0,0,0-.51A.51.51,0,0,0,10.5,8h-2V1.5a.5.5,0,0,0-1,0V8h-2a.51.51,0,0,0-.44.26.49.49,0,0,0,0,.51ZM9.6,9,8,11.56,6.4,9Z" })));
462
-
463
- const TeleportToward = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "teleport-toward" },
464
- index.h("path", { d: "M13.53,11.5a4.13,4.13,0,0,0-1.65-.93,11.17,11.17,0,0,0-1.84-.4l.88-1.4a.49.49,0,0,0,0-.51A.51.51,0,0,0,10.5,8h-2a.5.5,0,0,0-1,0V8h-2a.51.51,0,0,0-.44.26.49.49,0,0,0,0,.51L6,10.16a8.92,8.92,0,0,0-2.43.65,3.39,3.39,0,0,0-1,.67,1.49,1.49,0,0,0-.46,1,1.51,1.51,0,0,0,.6,1.14,5.3,5.3,0,0,0,2.19,1A13.4,13.4,0,0,0,8,15a12.38,12.38,0,0,0,4.05-.61,4.19,4.19,0,0,0,1.33-.73A1.51,1.51,0,0,0,14,12.5,1.45,1.45,0,0,0,13.53,11.5ZM8.5,6V5a.5.5,0,0,0,-1,0V6a.5.5,0,0,0,1,0ZM8.5,3V2a.5.5,0,0,0,-1,0V3a.5.5,0,0,0,1,0ZM9.6,9,8,11.56,6.4,9Zm3.15,3.91a4.45,4.45,0,0,1-1.79.78A12.39,12.39,0,0,1,8,14a11.25,11.25,0,0,1-3.72-.56,3,3,0,0,1-1-.55C3,12.72,3,12.59,3,12.5s0-.18.19-.34a3.33,3.33,0,0,1,1.33-.7,10.19,10.19,0,0,1,2-.4l1.07,1.71a.5.5,0,0,0,.84,0l1.07-1.71a8.78,8.78,0,0,1,2.64.64,2.28,2.28,0,0,1,.71.47.47.47,0,0,1,.18.33C13,12.59,13,12.72,12.75,12.91Z" })));
465
-
466
- const Triad = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "triad" },
467
- index.h("g", { transform: "translate(1, 1)" },
468
- index.h("path", { d: "M13.9724599,11.54 L13.8224599,11.07 L13.5124599,10.12 L13.2024599,9.16 C13.1224599,8.9 12.8324599,8.75 12.5724599,8.84 C12.3124599,8.92 12.1624599,9.21 12.2524599,9.47 L12.5624599,10.43 L12.6524599,10.7 L12.2924599,10.51 L7.4924599,8.09 C7.4924599,8.09 7.4924599,8.09 7.4924599,8.09 L7.4924599,1.72 L7.6924599,1.92 L8.1124599,2.34 C8.3124599,2.54 8.6224599,2.54 8.8224599,2.34 C9.0224599,2.14 9.0224599,1.83 8.8224599,1.63 L8.4024599,1.21 L7.6924599,0.5 L7.3424599,0.15 C7.1424599,-0.05 6.8324599,-0.05 6.6324599,0.15 L6.2424599,0.54 L5.5324599,1.25 L5.1524599,1.63 C4.9524599,1.83 4.9524599,2.14 5.1524599,2.34 C5.3524599,2.54 5.6624599,2.54 5.8624599,2.34 L6.2424599,1.96 L6.4824599,1.72 L6.4824599,8.11 L1.7024599,10.52 L1.3424599,10.71 L1.4324599,10.44 L1.7424599,9.48 C1.8224599,9.22 1.6824599,8.94 1.4224599,8.85 C1.1624599,8.77 0.8824599,8.91 0.7924599,9.17 L0.4824599,10.13 L0.1724599,11.08 L0.0224599004,11.55 C-0.0575400996,11.81 0.0824599004,12.09 0.3424599,12.18 L0.8624599,12.35 L1.8124599,12.66 L2.7224599,12.95 C2.9824599,13.03 3.2624599,12.89 3.3524599,12.63 C3.4324599,12.37 3.2924599,12.09 3.0324599,12 L2.1324599,11.71 L1.8024599,11.6 L2.2324599,11.38 L6.9624599,9 C6.9624599,9 6.9824599,8.98 7.0024599,8.97 C7.0024599,8.97 7.0024599,8.97 7.0024599,8.97 C7.0124599,8.97 7.0224599,8.99 7.0424599,9 L11.7724599,11.38 L12.2024599,11.6 L11.8724599,11.71 L10.9724599,12 C10.7124599,12.08 10.5624599,12.37 10.6524599,12.63 C10.7324599,12.89 11.0224599,13.04 11.2824599,12.95 L12.1924599,12.66 L13.1424599,12.35 L13.6624599,12.18 C13.9224599,12.1 14.0724599,11.81 13.9824599,11.55 L13.9724599,11.54 Z" }))));
469
-
470
- const Turtle = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "turtle" },
471
- index.h("path", { d: "M13.5,5a.5.5,0,0,0-.35.85.5.5,0,1,0,.7-.7A.47.47,0,0,0,13.5,5Zm2.18-.92a2.15,2.15,0,0,0-.43-.74A1.08,1.08,0,0,0,14.5,3h-2a1.08,1.08,0,0,0-.75.34,2.67,2.67,0,0,0-.57,1.22c0,.06,0,.15,0,.22a3.85,3.85,0,0,0-1.06-1.07A4.62,4.62,0,0,0,7.5,3a4.93,4.93,0,0,0-3.2,1,6.24,6.24,0,0,0-2,3.43A9.75,9.75,0,0,0,2,9.18l-1.73.87A.5.5,0,0,0,.5,11H3.33l.27.18-.55,1.1a.51.51,0,0,0,0,.48A.52.52,0,0,0,3.5,13h2a.51.51,0,0,0,.5-.5v-.6a11,11,0,0,0,1.5.1,7.78,7.78,0,0,0,2.5-.38v.88a.51.51,0,0,0,.5.5h2a.52.52,0,0,0,.43-.24.51.51,0,0,0,0-.48l-.89-1.78A6.11,6.11,0,0,0,13.86,8H15.5a.51.51,0,0,0,.5-.5v-1A7.36,7.36,0,0,0,15.68,4.08ZM3,9.17H3A8,8,0,0,1,3.7,6.43,4.48,4.48,0,0,1,5,4.74,4,4,0,0,1,7.5,4a3.55,3.55,0,0,1,2,.54,3.27,3.27,0,0,1,1.27,1.84,4.72,4.72,0,0,1,.17.81,1.7,1.7,0,0,1,0,.21,3.75,3.75,0,0,1-1.72,2,5.38,5.38,0,0,1-2.47.53A10.75,10.75,0,0,1,4,9.46C3.57,9.36,3.25,9.25,3,9.17ZM5,12H4.31l.21-.42.48.14Zm6,0v-.72a.24.24,0,0,0,0-.08l.24-.13.46.93Zm4-5H13.5a.51.51,0,0,0-.49.38h0a4.78,4.78,0,0,1-1.09,1.88A5.71,5.71,0,0,1,7.5,11a8.87,8.87,0,0,1-2.1-.22,9.13,9.13,0,0,0,1.4.11,6.27,6.27,0,0,0,2.94-.65A4.78,4.78,0,0,0,12,7.7h0l0-.19v-1a6.55,6.55,0,0,1,.26-2.08A1.38,1.38,0,0,1,12.47,4l0,0h2a.41.41,0,0,1,.11.12A5.06,5.06,0,0,1,15,6.5Z" })));
472
-
473
- const Update = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "update" },
474
- index.h("path", { d: "M11.27 12.42A5.5 5.5 0 0 1 2.5 8H4L2 5 0 8h1.5A6.5 6.5 0 0 0 8 14.5a6.42 6.42 0 0 0 3.87-1.28.5.5 0 1 0-.6-.8ZM14.5 8A6.5 6.5 0 0 0 8 1.5a6.42 6.42 0 0 0-3.87 1.28.5.5 0 0 0 .6.8A5.5 5.5 0 0 1 13.5 8H12l2 3 2-3h-1.5Z" })));
475
-
476
- const VersionHistory = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "version-history" },
477
- index.h("path", { d: "M7.91,5.5a.5.5,0,0,0-.5.5V8.94l1.21,1.39a.5.5,0,0,0,.76-.66l-1-1.11V6A.5.5,0,0,0,7.91,5.5ZM8,1.5A6.5,6.5,0,0,0,1.5,8H0l2,3L4,8H2.5a5.5,5.5,0,1,1,2.23,4.42.5.5,0,0,0-.7.1.5.5,0,0,0,.1.7A6.42,6.42,0,0,0,8,14.5a6.5,6.5,0,0,0,0-13Z" })));
478
-
479
- const Views = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "views" },
480
- index.h("path", { d: "M12.49 5.97v-.03c0-.07-.02-.13-.05-.19a.27.27 0 0 0-.07-.08.284.284 0 0 0-.1-.09c-.02-.01-.02-.03-.04-.04L8.27 3.56a.508.508 0 0 0-.45 0L3.9 5.51c-.11.03-.21.11-.28.22l-.02.02-.01.02c-.03.07-.05.13-.05.2 0 .01-.01.02-.01.04v4.63c0 .19.11.36.28.45l4 1.99h.01a.465.465 0 0 0 .42 0h.01l3.97-1.96a.5.5 0 0 0 .28-.45L12.48 6l.01-.03ZM8.04 4.55l2.84 1.42-2.83 1.45-2.88-1.44 2.87-1.43ZM4.53 6.78l3 1.5v3.52l-3-1.5V6.77v.01Zm4.01 5.02V8.29l2.96-1.51v3.55L8.54 11.8ZM1.5 5c-.28 0-.5-.22-.5-.5V1h3.5c.28 0 .5.22.5.5s-.22.5-.5.5H2v2.5c0 .28-.22.5-.5.5Zm0 5.99c-.28 0-.5.22-.5.5v3.5h3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H2v-2.5c0-.28-.22-.5-.5-.5ZM14.5 5c.28 0 .5-.22.5-.5V1h-3.5c-.28 0-.5.22-.5.5s.22.5.5.5H14v2.5c0 .28.22.5.5.5Zm0 5.99c.28 0 .5.22.5.5v3.5h-3.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H14v-2.5c0-.28.22-.5.5-.5Z" })));
481
-
482
- const VisibilityHidden = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "visibility-hidden" },
483
- index.h("path", { d: "M13.35,2.65a.48.48,0,0,0-.7,0l-.78.77a8.71,8.71,0,0,0-8.52.41A6.57,6.57,0,0,0,.51,7.89v.22a6.58,6.58,0,0,0,2.71,4l-.57.58a.49.49,0,0,0,.7.7l10-10A.48.48,0,0,0,13.35,2.65ZM9.73,5.56A3,3,0,0,0,5.56,9.73L3.94,11.35l0,0A5.49,5.49,0,0,1,1.53,8,5.49,5.49,0,0,1,3.9,4.67,7.52,7.52,0,0,1,8,3.5a7.67,7.67,0,0,1,3.12.67Zm3.61-1.2-.72.72A5.45,5.45,0,0,1,14.47,8a5.49,5.49,0,0,1-2.37,3.33A7.52,7.52,0,0,1,8,12.5a8.15,8.15,0,0,1-2.41-.38l-.78.78A8.9,8.9,0,0,0,8,13.5a8.53,8.53,0,0,0,4.65-1.33,6.57,6.57,0,0,0,2.84-4.06V7.89A6.56,6.56,0,0,0,13.34,4.36Z" })));
484
-
485
- const VisibilityPartial = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "visibility-partial" },
486
- index.h("path", { d: "M4.12,11.46A5.62,5.62,0,0,1,1.52,8,5.57,5.57,0,0,1,3.9,4.67,7.52,7.52,0,0,1,8,3.5a7.7,7.7,0,0,1,3.33.75l.74-.74A8.67,8.67,0,0,0,8,2.5,8.53,8.53,0,0,0,3.35,3.83,6.57,6.57,0,0,0,.51,7.89v.22a6.54,6.54,0,0,0,2.88,4.08Z" }),
487
- index.h("path", { d: "M8,5A3,3,0,0,0,5,8a3,3,0,0,0,.69,1.89l4.2-4.2A3,3,0,0,0,8,5Z" }),
488
- index.h("polygon", { points: "5.88 5.88 5.88 5.88 5.88 5.88 5.88 5.88" }),
489
- index.h("path", { d: "M9.2,12.41h0a.51.51,0,0,0-.42.57.5.5,0,0,0,.56.42h0a.5.5,0,0,0,.43-.57A.51.51,0,0,0,9.2,12.41Z" }),
490
- index.h("path", { d: "M6.77,12.41h0a.5.5,0,0,0-.57.42.49.49,0,0,0,.41.57h0a.5.5,0,1,0,.15-1Z" }),
491
- index.h("path", { d: "M14.48,5.61h0a.5.5,0,0,0-.7-.12.49.49,0,0,0-.12.69h0a.5.5,0,0,0,.82-.57Z" }),
492
- index.h("path", { d: "M11.5,11.68h0a.5.5,0,0,0-.22.67.51.51,0,0,0,.68.22h0a.5.5,0,0,0-.46-.89Z" }),
493
- index.h("path", { d: "M15.07,7.77a.52.52,0,0,0-.62.35h0a.51.51,0,0,0,.35.62.5.5,0,0,0,.61-.35h0A.52.52,0,0,0,15.07,7.77Z" }),
494
- index.h("path", { d: "M13.36,10.21h0a.5.5,0,1,0,.76.64h0a.49.49,0,0,0-.06-.7A.51.51,0,0,0,13.36,10.21Z" })));
495
-
496
- const VisibilityVisible = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "visibility-visible" },
497
- index.h("path", { d: "M8,5a3,3,0,1,0,3,3A3,3,0,0,0,8,5Zm4.65-1.17A8.53,8.53,0,0,0,8,2.5,8.53,8.53,0,0,0,3.35,3.83,6.57,6.57,0,0,0,.51,7.89v.22a6.57,6.57,0,0,0,2.84,4.06A8.53,8.53,0,0,0,8,13.5a8.53,8.53,0,0,0,4.65-1.33,6.57,6.57,0,0,0,2.84-4.06V7.89A6.57,6.57,0,0,0,12.65,3.83Zm-.55,7.5A7.52,7.52,0,0,1,8,12.5a7.52,7.52,0,0,1-4.1-1.17A5.49,5.49,0,0,1,1.53,8,5.49,5.49,0,0,1,3.9,4.67,7.52,7.52,0,0,1,8,3.5a7.52,7.52,0,0,1,4.1,1.17A5.49,5.49,0,0,1,14.47,8,5.49,5.49,0,0,1,12.1,11.33Z" })));
498
-
499
- const WorkspaceAdd = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "workspace-add" },
500
- index.h("path", { d: "M14.53 13.23c.07-.12.15-.25.2-.38.05-.11.07-.23.11-.34.03-.1.07-.2.09-.31.05-.23.07-.46.07-.7 0-.24-.02-.47-.07-.7-.02-.1-.06-.2-.09-.3-.04-.12-.06-.24-.11-.35-.06-.13-.13-.25-.2-.38-.04-.07-.07-.14-.11-.21-.09-.13-.19-.24-.29-.36-.04-.05-.08-.11-.12-.15a3.498 3.498 0 0 0-2.5-1.06c-1.93 0-3.5 1.57-3.5 3.5 0 .98.41 1.86 1.06 2.5 0 0 .1.08.14.12.12.1.23.21.37.3.06.04.13.07.2.11.13.07.25.15.39.21.11.05.22.07.34.11.1.03.2.07.31.1.23.05.46.07.7.07.24 0 .47-.02.7-.07.11-.02.21-.06.31-.09.11-.03.23-.06.34-.11.14-.06.26-.13.39-.21.07-.04.14-.07.2-.11.13-.09.25-.19.37-.3.05-.04.1-.07.14-.12l.06-.06.12-.15c.1-.12.2-.23.29-.36.04-.07.07-.14.11-.21l-.02.01ZM12 12v2h-1v-2H9v-1h2V9h1v2h2v1h-2Z" }),
501
- index.h("path", { d: "M14.5 1h-13c-.28 0-.5.22-.5.5v13c0 .28.22.5.5.5h7.21c-.36-.29-.69-.62-.94-1H2V4.02h12v3.74c.38.26.71.58 1 .94V1.5c0-.28-.22-.5-.5-.5ZM14 3.02H2V2h12v1.02Z" })));
502
-
503
- const Zoom = () => (index.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "zoom" },
504
- index.h("path", { d: "M6.85,3.15a.48.48,0,0,0-.7,0l-2,2a.49.49,0,0,0,.7.7L6.5,4.21,8.15,5.85a.49.49,0,0,0,.7-.7Zm1.3,4L6.5,8.79,4.85,7.15a.49.49,0,0,0-.7.7l2,2a.48.48,0,0,0,.7,0l2-2a.49.49,0,0,0-.7-.7Zm6.7,7-4-4a.37.37,0,0,0-.2-.12,5.45,5.45,0,1,0-.62.62.37.37,0,0,0,.12.2l4,4a.49.49,0,0,0,.7-.7ZM9.71,9.71a4.51,4.51,0,0,1-6.42,0,4.51,4.51,0,0,1,0-6.42,4.51,4.51,0,0,1,6.42,0,4.51,4.51,0,0,1,0,6.42Z" })));
505
-
506
- function getSvg(name) {
507
- switch (name) {
508
- case 'adjustments':
509
- return index.h(Adjustments, null);
510
- case 'align-to-global':
511
- return index.h(AlignToGlobal, null);
512
- case 'align-to-part':
513
- return index.h(AlignToPart, null);
514
- case 'align-to-surface':
515
- return index.h(AlignToSurface, null);
516
- case 'align-view-to-plane':
517
- return index.h(AlignViewToPlane, null);
518
- case 'annotation':
519
- return index.h(Annotation, null);
520
- case 'arrow-filled':
521
- return index.h(ArrowFilled, null);
522
- case 'arrow-left-circled':
523
- return index.h(ArrowLeftCircled, null);
524
- case 'arrow-line-left':
525
- return index.h(ArrowLineLeft, null);
526
- case 'arrow-line-right':
527
- return index.h(ArrowLineRight, null);
528
- case 'arrow-partial':
529
- return index.h(ArrowPartial, null);
530
- case 'arrow-right-circled':
531
- return index.h(ArrowRightCircled, null);
532
- case 'arrow-swap':
533
- return index.h(ArrowSwap, null);
534
- case 'arrow-triangle-left':
535
- return index.h(ArrowTriangleLeft, null);
536
- case 'arrow-triangle-right':
537
- return index.h(ArrowTriangleRight, null);
538
- case 'arrow-up-circled':
539
- return index.h(ArrowUpCircled, null);
540
- case 'attachment':
541
- return index.h(Attachment, null);
542
- case 'axis-x':
543
- return index.h(AxisX, null);
544
- case 'axis-y':
545
- return index.h(AxisY, null);
546
- case 'axis-z':
547
- return index.h(AxisZ, null);
548
- case 'back':
549
- return index.h(Back, null);
550
- case 'box-cursor':
551
- return index.h(BoxCursor, null);
552
- case 'box-select':
553
- return index.h(BoxSelect, null);
554
- case 'camera':
555
- return index.h(Camera, null);
556
- case 'camera-add':
557
- return index.h(CameraAdd, null);
558
- case 'caret-down':
559
- return index.h(CaretDown, null);
560
- case 'caret-left':
561
- return index.h(CaretLeft, null);
562
- case 'caret-right':
563
- return index.h(CaretRight, null);
564
- case 'caret-up':
565
- return index.h(CaretUp, null);
566
- case 'caution':
567
- return index.h(Caution, null);
568
- case 'check':
569
- return index.h(Check, null);
570
- case 'check-circle':
571
- return index.h(CheckCircle, null);
572
- case 'chevron-down':
573
- return index.h(ChevronDown, null);
574
- case 'chevron-left':
575
- return index.h(ChevronLeft, null);
576
- case 'chevron-right':
577
- return index.h(ChevronRight, null);
578
- case 'chevron-up':
579
- return index.h(ChevronUp, null);
580
- case 'circle-outline':
581
- return index.h(CircleOutline, null);
582
- case 'close':
583
- return index.h(Close, null);
584
- case 'close-circle-fill':
585
- return index.h(CloseCircleFill, null);
586
- case 'close-circle':
587
- return index.h(CloseCircle, null);
588
- case 'collapse-all':
589
- return index.h(CollapseAll, null);
590
- case 'columns':
591
- return index.h(Columns, null);
592
- case 'columns-add':
593
- return index.h(ColumnsAdd, null);
594
- case 'comment-add':
595
- return index.h(CommentAdd, null);
596
- case 'comment-filled':
597
- return index.h(CommentFilled, null);
598
- case 'comment-reopen':
599
- return index.h(CommentReopen, null);
600
- case 'comment-resolve':
601
- return index.h(CommentResolve, null);
602
- case 'comment-show':
603
- return index.h(CommentShow, null);
604
- case 'compare':
605
- return index.h(Compare, null);
606
- case 'compress':
607
- return index.h(Compress, null);
608
- case 'copy':
609
- return index.h(Copy, null);
610
- case 'cross-section':
611
- return index.h(CrossSection, null);
612
- case 'cube-orthographic':
613
- return index.h(CubeOrthographic, null);
614
- case 'cube-perspective':
615
- return index.h(CubePerspective, null);
616
- case 'cube-stack':
617
- return index.h(CubeStack, null);
618
- case 'delete':
619
- return index.h(Delete, null);
620
- case 'download':
621
- return index.h(Download, null);
622
- case 'drag-indicator':
623
- return index.h(DragIndicator, null);
624
- case 'ellipse':
625
- return index.h(Ellipse, null);
626
- case 'error-circle':
627
- return index.h(ErrorCircle, null);
628
- case 'expand':
629
- return index.h(Expand, null);
630
- case 'expand-all':
631
- return index.h(ExpandAll, null);
632
- case 'export':
633
- return index.h(Export, null);
634
- case 'file':
635
- return index.h(File, null);
636
- case 'file-folder':
637
- return index.h(FileFolder, null);
638
- case 'file-pdf':
639
- return index.h(FilePdf, null);
640
- case 'fit-all':
641
- return index.h(FitAll, null);
642
- case 'fit-selected':
643
- return index.h(FitSelected, null);
644
- case 'flip':
645
- return index.h(Flip, null);
646
- case 'folder-plus':
647
- return index.h(FolderPlus, null);
648
- case 'forward':
649
- return index.h(Forward, null);
650
- case 'gear':
651
- return index.h(Gear, null);
652
- case 'help':
653
- return index.h(Help, null);
654
- case 'info':
655
- return index.h(Info, null);
656
- case 'invert':
657
- return index.h(Invert, null);
658
- case 'label':
659
- return index.h(Label, null);
660
- case 'label-off':
661
- return index.h(LabelOff, null);
662
- case 'line':
663
- return index.h(Line, null);
664
- case 'line-dot-left':
665
- return index.h(LineDotLeft, null);
666
- case 'line-dot-right':
667
- return index.h(LineDotRight, null);
668
- case 'line-hash-left':
669
- return index.h(LineHashLeft, null);
670
- case 'line-hash-right':
671
- return index.h(LineHashRight, null);
672
- case 'locate':
673
- return index.h(Locate, null);
674
- case 'lock-closed':
675
- return index.h(LockClosed, null);
676
- case 'lock-open':
677
- return index.h(LockOpen, null);
678
- case 'markup':
679
- return index.h(Markup, null);
680
- case 'menu':
681
- return index.h(Menu, null);
682
- case 'notification':
683
- return index.h(Notification, null);
684
- case 'open':
685
- return index.h(Open, null);
686
- case 'open-window':
687
- return index.h(OpenWindow, null);
688
- case 'pan':
689
- return index.h(Pan, null);
690
- case 'paper-airplane':
691
- return index.h(PaperAirplane, null);
692
- case 'paste':
693
- return index.h(Paste, null);
694
- case 'pencil':
695
- return index.h(Pencil, null);
696
- case 'person-height':
697
- return index.h(PersonHeight, null);
698
- case 'person-run':
699
- return index.h(PersonRun, null);
700
- case 'person-short':
701
- return index.h(PersonShort, null);
702
- case 'person-tall':
703
- return index.h(PersonTall, null);
704
- case 'person-walk':
705
- return index.h(PersonWalk, null);
706
- case 'pin-fill':
707
- return index.h(PinFill, null);
708
- case 'pin-line':
709
- return index.h(PinLine, null);
710
- case 'pin-text':
711
- return index.h(PinText, null);
712
- case 'pin-text-fill':
713
- return index.h(PinTextFill, null);
714
- case 'pin-text-square':
715
- return index.h(PinTextSquare, null);
716
- case 'plus':
717
- return index.h(Plus, null);
718
- case 'plus-with-arrow':
719
- return index.h(PlusWithArrow, null);
720
- case 'pmi':
721
- return index.h(PMI, null);
722
- case 'precise-measurement':
723
- return index.h(PreciseMeasurement, null);
724
- case 'rabbit':
725
- return index.h(Rabbit, null);
726
- case 'refresh':
727
- return index.h(Refresh, null);
728
- case 'rename':
729
- return index.h(Rename, null);
730
- case 'report':
731
- return index.h(Report, null);
732
- case 'reset':
733
- return index.h(Reset, null);
734
- case 'resize':
735
- return index.h(Resize, null);
736
- case 'rotate':
737
- return index.h(Rotate, null);
738
- case 'ruler':
739
- return index.h(Ruler, null);
740
- case 'scissors':
741
- return index.h(Scissors, null);
742
- case 'search':
743
- return index.h(Search, null);
744
- case 'show-only-nearby':
745
- return index.h(ShowOnlyNearby, null);
746
- case 'snapshots':
747
- return index.h(Snapshots, null);
748
- case 'star':
749
- return index.h(Star, null);
750
- case 'square-dot-outline':
751
- return index.h(SquareDotOutline, null);
752
- case 'tag':
753
- return index.h(Tag, null);
754
- case 'tape-measure':
755
- return index.h(TapeMeasure, null);
756
- case 'teleport':
757
- return index.h(Teleport, null);
758
- case 'teleport-and-align':
759
- return index.h(TeleportAndAlign, null);
760
- case 'teleport-toward':
761
- return index.h(TeleportToward, null);
762
- case 'triad':
763
- return index.h(Triad, null);
764
- case 'turtle':
765
- return index.h(Turtle, null);
766
- case 'update':
767
- return index.h(Update, null);
768
- case 'version-history':
769
- return index.h(VersionHistory, null);
770
- case 'views':
771
- return index.h(Views, null);
772
- case 'visibility-hidden':
773
- return index.h(VisibilityHidden, null);
774
- case 'visibility-partial':
775
- return index.h(VisibilityPartial, null);
776
- case 'visibility-visible':
777
- return index.h(VisibilityVisible, null);
778
- case 'workspace-add':
779
- return index.h(WorkspaceAdd, null);
780
- case 'zoom':
781
- return index.h(Zoom, null);
782
- }
783
- }
784
-
785
- exports.getSvg = getSvg;