@vertexvis/ui 0.1.0-testing.8 → 0.1.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 (185) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/{color-circle-picker-13396ec4.js → color-circle-picker-d0403f1c.js} +2 -2
  3. package/dist/cjs/color-picker-2a4820fa.js +46 -0
  4. package/dist/cjs/{color-circle-05be54bf.js → color-swatch-8aaf6c0b.js} +42 -17
  5. package/dist/cjs/components.cjs.js +1 -1
  6. package/dist/cjs/{dialog-88e2308a.js → dialog-34f1dd6e.js} +1 -1
  7. package/dist/cjs/dom-a2c535e3.js +17 -0
  8. package/dist/cjs/{icon-460fd0f5.js → icon-3b1349ea.js} +1 -1
  9. package/dist/cjs/{icon-button-786427d6.js → icon-button-19061994.js} +1 -1
  10. package/dist/cjs/{icon-helper-ba408f49.js → icon-helper-cb479ba1.js} +107 -0
  11. package/dist/cjs/index.cjs.js +18 -12
  12. package/dist/cjs/lib-1bd1e383.js +9 -0
  13. package/dist/cjs/loader.cjs.js +1 -1
  14. package/dist/cjs/{search-bar-91cbcd07.js → search-bar-2e7ee35a.js} +130 -24
  15. package/dist/cjs/{select-5f8aecfe.js → select-2b2bdb97.js} +1 -1
  16. package/dist/cjs/{slider-13594e49.js → slider-7714cccb.js} +7 -1
  17. package/dist/cjs/tab-4335cd8f.js +26 -0
  18. package/dist/cjs/tabs-6f3e76e1.js +111 -0
  19. package/dist/cjs/{tooltip-e9f63631.js → tooltip-9d097c55.js} +2 -5
  20. package/dist/cjs/vertex-color-circle-picker.cjs.entry.js +1 -1
  21. package/dist/cjs/vertex-color-picker.cjs.entry.js +2 -1
  22. package/dist/cjs/vertex-color-swatch.cjs.entry.js +12 -0
  23. package/dist/cjs/vertex-dialog.cjs.entry.js +1 -1
  24. package/dist/cjs/vertex-icon-button.cjs.entry.js +2 -2
  25. package/dist/cjs/vertex-icon.cjs.entry.js +2 -2
  26. package/dist/cjs/vertex-search-bar.cjs.entry.js +1 -1
  27. package/dist/cjs/vertex-select.cjs.entry.js +1 -1
  28. package/dist/cjs/vertex-slider.cjs.entry.js +2 -1
  29. package/dist/cjs/{vertex-color-circle.cjs.entry.js → vertex-tab.cjs.entry.js} +3 -2
  30. package/dist/cjs/vertex-tabs.cjs.entry.js +12 -0
  31. package/dist/cjs/vertex-tooltip.cjs.entry.js +2 -1
  32. package/dist/collection/collection-manifest.json +4 -2
  33. package/dist/collection/components/color-circle-picker/color-circle-picker.js +8 -8
  34. package/dist/collection/components/color-picker/color-picker.css +95 -15
  35. package/dist/collection/components/color-picker/color-picker.js +57 -3
  36. package/dist/collection/components/color-swatch/color-swatch.css +43 -0
  37. package/dist/collection/components/{color-circle/color-circle.js → color-swatch/color-swatch.js} +96 -23
  38. package/dist/collection/components/color-swatch/lib.js +5 -0
  39. package/dist/collection/components/dialog/dialog.css +0 -1
  40. package/dist/collection/components/icon/icon-helper.js +51 -0
  41. package/dist/collection/components/icon/icon.js +1 -1
  42. package/dist/collection/components/icon/icons/arrow-left-circled.js +2 -0
  43. package/dist/collection/components/icon/icons/arrow-right-circled.js +2 -0
  44. package/dist/collection/components/icon/icons/camera-add.js +2 -0
  45. package/dist/collection/components/icon/icons/caution.js +2 -0
  46. package/dist/collection/components/icon/icons/columns-add.js +2 -0
  47. package/dist/collection/components/icon/icons/compare.js +2 -0
  48. package/dist/collection/components/icon/icons/compress.js +2 -0
  49. package/dist/collection/components/icon/icons/cube-stack.js +2 -0
  50. package/dist/collection/components/icon/icons/expand.js +2 -0
  51. package/dist/collection/components/icon/icons/file-folder.js +2 -0
  52. package/dist/collection/components/icon/icons/pin-text-square.js +2 -0
  53. package/dist/collection/components/icon/icons/plus-with-arrow.js +2 -0
  54. package/dist/collection/components/icon/icons/pmi.js +2 -0
  55. package/dist/collection/components/icon/icons/report.js +2 -0
  56. package/dist/collection/components/icon/icons/square-dot-outline.js +2 -0
  57. package/dist/collection/components/icon/icons/update.js +2 -0
  58. package/dist/collection/components/icon/icons/views.js +2 -0
  59. package/dist/collection/components/icon-button/icon-button.js +1 -1
  60. package/dist/collection/components/index.js +3 -1
  61. package/dist/collection/components/search-bar/dom.js +17 -0
  62. package/dist/collection/components/search-bar/lib.js +45 -4
  63. package/dist/collection/components/search-bar/search-bar.js +76 -23
  64. package/dist/collection/components/select/select.css +8 -0
  65. package/dist/collection/components/slider/slider.js +8 -2
  66. package/dist/collection/components/tab/tab.css +16 -0
  67. package/dist/collection/components/tab/tab.js +85 -0
  68. package/dist/collection/components/tab/util.js +3 -0
  69. package/dist/collection/components/tabs/tabs.css +67 -0
  70. package/dist/collection/components/tabs/tabs.js +159 -0
  71. package/dist/collection/types/icon.js +17 -0
  72. package/dist/collection/util/components/dom.js +3 -0
  73. package/dist/components/components.css +1 -1
  74. package/dist/components/components.esm.js +1 -1
  75. package/dist/components/index.esm.js +1 -1
  76. package/dist/components/p-01d4be1d.entry.js +1 -0
  77. package/dist/components/{p-165aed7d.js → p-0d4a0d61.js} +1 -1
  78. package/dist/components/p-18ed73e9.js +1 -0
  79. package/dist/components/p-1d08dd79.entry.js +1 -0
  80. package/dist/components/p-2ae8175d.entry.js +1 -0
  81. package/dist/components/p-2b4aedaa.entry.js +1 -0
  82. package/dist/components/p-3438c441.js +1 -0
  83. package/dist/components/{p-912f6e24.js → p-4327deea.js} +1 -1
  84. package/dist/components/p-45848878.js +1 -0
  85. package/dist/components/p-48629bf1.js +1 -0
  86. package/dist/components/{p-103249b4.js → p-5384f198.js} +1 -1
  87. package/dist/components/p-655053df.js +1 -0
  88. package/dist/components/p-65f9817e.js +1 -0
  89. package/dist/components/p-6a49c365.entry.js +1 -0
  90. package/dist/components/p-6b6c2260.js +1 -0
  91. package/dist/components/p-6ff20817.js +1 -0
  92. package/dist/components/{p-ca52a423.js → p-7bd92281.js} +1 -1
  93. package/dist/components/p-8bbc344d.entry.js +1 -0
  94. package/dist/components/p-8d83dfff.entry.js +1 -0
  95. package/dist/components/p-96f55673.js +1 -0
  96. package/dist/components/{p-9374ef6c.js → p-b9dab446.js} +1 -1
  97. package/dist/components/p-c6841378.entry.js +1 -0
  98. package/dist/components/p-cbfc041e.entry.js +1 -0
  99. package/dist/components/p-d2d75bcf.entry.js +1 -0
  100. package/dist/components/p-d539f530.js +1 -0
  101. package/dist/components/p-decf635f.entry.js +1 -0
  102. package/dist/components/p-e35057b5.entry.js +1 -0
  103. package/dist/esm/{color-circle-picker-998a7e9c.js → color-circle-picker-35ad3b3e.js} +2 -2
  104. package/dist/esm/color-picker-1d67effe.js +44 -0
  105. package/dist/esm/{color-circle-842f3321.js → color-swatch-0e62d13d.js} +42 -17
  106. package/dist/esm/components.js +1 -1
  107. package/dist/esm/{dialog-e3f49527.js → dialog-1cef715c.js} +1 -1
  108. package/dist/esm/dom-9d0f7bf4.js +13 -0
  109. package/dist/esm/{icon-d37150b4.js → icon-bf8df898.js} +1 -1
  110. package/dist/esm/{icon-button-aad3c0e7.js → icon-button-a4bdeabc.js} +1 -1
  111. package/dist/esm/{icon-helper-83f10f73.js → icon-helper-94d45002.js} +107 -0
  112. package/dist/esm/index.js +15 -11
  113. package/dist/esm/lib-73fbca8b.js +7 -0
  114. package/dist/esm/loader.js +1 -1
  115. package/dist/esm/{search-bar-f12a3599.js → search-bar-8d18626e.js} +130 -24
  116. package/dist/esm/{select-d4e135b7.js → select-78aeff96.js} +1 -1
  117. package/dist/esm/{slider-dcdb388f.js → slider-3d8545e3.js} +8 -2
  118. package/dist/esm/tab-c76332b0.js +24 -0
  119. package/dist/esm/tabs-e9f6dcbe.js +109 -0
  120. package/dist/esm/{tooltip-933da261.js → tooltip-db8ebd41.js} +1 -4
  121. package/dist/esm/vertex-color-circle-picker.entry.js +1 -1
  122. package/dist/esm/vertex-color-picker.entry.js +2 -1
  123. package/dist/esm/vertex-color-swatch.entry.js +4 -0
  124. package/dist/esm/vertex-dialog.entry.js +1 -1
  125. package/dist/esm/vertex-icon-button.entry.js +2 -2
  126. package/dist/esm/vertex-icon.entry.js +2 -2
  127. package/dist/esm/vertex-search-bar.entry.js +1 -1
  128. package/dist/esm/vertex-select.entry.js +1 -1
  129. package/dist/esm/vertex-slider.entry.js +2 -1
  130. package/dist/esm/vertex-tab.entry.js +3 -0
  131. package/dist/esm/vertex-tabs.entry.js +4 -0
  132. package/dist/esm/vertex-tooltip.entry.js +2 -1
  133. package/dist/types/components/color-circle-picker/color-circle-picker.d.ts +7 -7
  134. package/dist/types/components/color-picker/color-picker.d.ts +19 -0
  135. package/dist/types/components/{color-circle/color-circle.d.ts → color-swatch/color-swatch.d.ts} +23 -5
  136. package/dist/types/components/color-swatch/lib.d.ts +1 -0
  137. package/dist/types/components/icon/icons/arrow-left-circled.d.ts +3 -0
  138. package/dist/types/components/icon/icons/arrow-right-circled.d.ts +3 -0
  139. package/dist/types/components/icon/icons/camera-add.d.ts +3 -0
  140. package/dist/types/components/icon/icons/caution.d.ts +3 -0
  141. package/dist/types/components/icon/icons/columns-add.d.ts +3 -0
  142. package/dist/types/components/icon/icons/compare.d.ts +3 -0
  143. package/dist/types/components/icon/icons/compress.d.ts +3 -0
  144. package/dist/types/components/icon/icons/cube-stack.d.ts +3 -0
  145. package/dist/types/components/icon/icons/expand.d.ts +3 -0
  146. package/dist/types/components/icon/icons/file-folder.d.ts +3 -0
  147. package/dist/types/components/icon/icons/pin-text-square.d.ts +3 -0
  148. package/dist/types/components/icon/icons/plus-with-arrow.d.ts +3 -0
  149. package/dist/types/components/icon/icons/pmi.d.ts +3 -0
  150. package/dist/types/components/icon/icons/report.d.ts +3 -0
  151. package/dist/types/components/icon/icons/square-dot-outline.d.ts +3 -0
  152. package/dist/types/components/icon/icons/update.d.ts +3 -0
  153. package/dist/types/components/icon/icons/views.d.ts +3 -0
  154. package/dist/types/components/index.d.ts +3 -1
  155. package/dist/types/components/search-bar/dom.d.ts +5 -0
  156. package/dist/types/components/search-bar/lib.d.ts +9 -2
  157. package/dist/types/components/search-bar/search-bar.d.ts +1 -0
  158. package/dist/types/components/slider/slider.d.ts +1 -0
  159. package/dist/types/components/tab/tab.d.ts +11 -0
  160. package/dist/types/components/tab/util.d.ts +1 -0
  161. package/dist/types/components/tabs/tabs.d.ts +23 -0
  162. package/dist/types/components.d.ts +162 -76
  163. package/dist/types/types/icon.d.ts +17 -0
  164. package/dist/types/util/components/dom.d.ts +1 -0
  165. package/package.json +2 -2
  166. package/dist/cjs/color-picker-876ace00.js +0 -37
  167. package/dist/collection/components/color-circle/color-circle.css +0 -18
  168. package/dist/components/p-03dbb28c.js +0 -1
  169. package/dist/components/p-0b1cdc8a.entry.js +0 -1
  170. package/dist/components/p-0f8b9ede.entry.js +0 -1
  171. package/dist/components/p-16719272.entry.js +0 -1
  172. package/dist/components/p-20a74d5d.entry.js +0 -1
  173. package/dist/components/p-35e7ab78.entry.js +0 -1
  174. package/dist/components/p-7cfb3736.entry.js +0 -1
  175. package/dist/components/p-7dba2574.entry.js +0 -1
  176. package/dist/components/p-7f64b251.entry.js +0 -1
  177. package/dist/components/p-8434602f.js +0 -1
  178. package/dist/components/p-92930f2a.js +0 -1
  179. package/dist/components/p-cd6ddb10.js +0 -1
  180. package/dist/components/p-cfe369bf.entry.js +0 -1
  181. package/dist/components/p-d9b9aebe.js +0 -1
  182. package/dist/components/p-db34f10c.js +0 -1
  183. package/dist/components/p-f71fc166.entry.js +0 -1
  184. package/dist/esm/color-picker-2e3b51fa.js +0 -35
  185. package/dist/esm/vertex-color-circle.entry.js +0 -2
@@ -1,2 +1,2 @@
1
- .sc-vertex-textfield-h{display:block}.txt-wrapper{display:flex;align-items:center;width:100%;box-sizing:border-box;background:none;font-family:var(--vertex-ui-font-family);line-height:1.4}.txt-wrapper-border{border:1px solid transparent;border-radius:4px}.txt-slot{padding-bottom:1px}.txt{width:100%;box-sizing:border-box;padding:6px 0.5em 7px;border:1px solid transparent;border-radius:4px;background:none;font-family:var(--vertex-ui-font-family);font-weight:var(--vertex-ui-font-weight-base);line-height:1.4;text-overflow:ellipsis}.txt:focus{outline:none}.txt-textarea{overflow:hidden;outline:none;box-shadow:none;resize:none}@keyframes onAutoFillStart{from{}to{}}@keyframes onAutoFillCancel{from{}to{}}.txt:-webkit-autofill{animation-name:onAutoFillStart}.txt:not(.txt:-webkit-autofill){animation-name:onAutoFillCancel}.txt-standard{border-color:var(--vertex-ui-neutral-400);color:var(--vertex-ui-neutral-800)}.txt-standard .txt::placeholder{color:var(--vertex-ui-neutral-500)}.txt-standard:hover:not(.disabled),.txt-standard:focus{border-color:var(--vertex-ui-neutral-500)}.txt-standard.disabled{border-color:var(--vertex-ui-neutral-200)}.txt-standard.disabled,.txt-standard.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-blank{color:var(--vertex-ui-neutral-800)}.txt-blank:not(:hover) .txt:focus{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.txt-blank .txt::placeholder{color:var(--vertex-ui-neutral-500)}.txt-blank:hover:not(.disabled) .txt{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.txt-filled{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);color:var(--vertex-ui-neutral-800)}.txt-filled.disabled,.txt-filled.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-filled .txt::placeholder{color:var(--vertex-ui-neutral-700)}.txt-filled:hover:not(.disabled),.txt-filled:focus{border-bottom-color:var(--vertex-ui-blue-600)}.txt-filled.disabled{border-color:var(--vertex-ui-neutral-100)}.txt-filled.disabled,.txt-filled.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined{background-color:var(--vertex-ui-white);border-color:var(--vertex-ui-white) var(--vertex-ui-white) var(--vertex-ui-neutral-400) var(--vertex-ui-white);color:var(--vertex-ui-neutral-800)}.txt-underlined.disabled,.txt-underlined.disabled::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined::placeholder{color:var(--vertex-ui-neutral-700)}.txt-underlined:hover:not(.disabled),.txt-underlined:focus{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);border-bottom-color:var(--vertex-ui-blue-600)}.txt-underlined.disabled{border-bottom-color:var(--vertex-ui-neutral-200)}.txt-underlined.disabled,.txt-underlined.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined.has-error{border-bottom-color:var(--vertex-ui-red-600)}.txt-filled.has-error,.txt-blank.has-error,.txt-standard.has-error{border-color:var(--vertex-ui-red-600)}.txt-size-standard{font-size:var(--vertex-ui-text-base)}.txt-size-sm{font-size:var(--vertex-ui-text-sm)}.txt-size-md{font-size:var(--vertex-ui-text-md)}.txt-size-lg{font-size:var(--vertex-ui-text-lg)}.txt-size-xl{font-size:var(--vertex-ui-text-xl)}.txt-size-xxl{font-size:var(--vertex-ui-text-xxl)}.click-to-edit{display:flex;flex-direction:row}.click-to-edit-text{width:100%}.icon-visibility{display:none}.click-to-edit:not(.disabled):hover .icon-visibility{display:block}.click-to-edit-icon-wrapper{display:flex;align-items:center;flex-shrink:0;vertical-align:middle;margin-left:5px}.hover-icon slot::slotted(*){height:1rem;width:1rem;padding-left:0.5rem}.click-to-edit-button{border-radius:4px;background-color:var(--neutral-200);color:var(--green-700)}.click-to-edit-button:hover{background-color:var(--neutral-300);color:var(--green-800)}vertex-tooltip:not(.hydrated){display:none}.vertex-tooltip-popover{width:100%;height:100%}.vertex-tooltip-content{display:flex;justify-content:center;text-align:center;width:var(--tooltip-width);font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-xxs);background-color:var(--vertex-ui-neutral-700);color:var(--vertex-ui-white);padding:0.25rem 0.5rem;border-radius:4px;pointer-events:none;white-space:var(--tooltip-white-space);user-select:none}:root{--vertex-ui-white:#ffffff;--vertex-ui-black:#000000}:root{--vertex-ui-neutral-050:#fafafa;--vertex-ui-neutral-100:#f5f5f5;--vertex-ui-neutral-200:#eeeeee;--vertex-ui-neutral-300:#e0e0e0;--vertex-ui-neutral-400:#bdbdbd;--vertex-ui-neutral-500:#9e9e9e;--vertex-ui-neutral-600:#757575;--vertex-ui-neutral-700:#616161;--vertex-ui-neutral-800:#444444;--vertex-ui-neutral-900:#212121}:root{--vertex-ui-red-050:#fff7f7;--vertex-ui-red-100:#ffefef;--vertex-ui-red-200:#ffe0e0;--vertex-ui-red-300:#ffb3b3;--vertex-ui-red-400:#ff4d4d;--vertex-ui-red-500:#ff0000;--vertex-ui-red-600:#eb0000;--vertex-ui-red-700:#d90000;--vertex-ui-red-800:#c40000;--vertex-ui-red-900:#990000}:root{--vertex-ui-orange-050:#fffcf7;--vertex-ui-orange-100:#fff9ef;--vertex-ui-orange-200:#fff3e0;--vertex-ui-orange-300:#ffe0b3;--vertex-ui-orange-400:#ffb84d;--vertex-ui-orange-500:#ff9900;--vertex-ui-orange-600:#ff8400;--vertex-ui-orange-700:#ff7300;--vertex-ui-orange-800:#e05d00;--vertex-ui-orange-900:#993b00}:root{--vertex-ui-yellow-050:#fffef7;--vertex-ui-yellow-100:#fffdef;--vertex-ui-yellow-200:#fffbe0;--vertex-ui-yellow-300:#fff5b3;--vertex-ui-yellow-400:#ffee6e;--vertex-ui-yellow-500:#ffe600;--vertex-ui-yellow-600:#ffd300;--vertex-ui-yellow-700:#ffc500;--vertex-ui-yellow-800:#cc8f00;--vertex-ui-yellow-900:#995c00}:root{--vertex-ui-green-050:#f7fdf7;--vertex-ui-green-100:#effcef;--vertex-ui-green-200:#e0f9e0;--vertex-ui-green-300:#b3f0b3;--vertex-ui-green-400:#4ddb4d;--vertex-ui-green-500:#00cc00;--vertex-ui-green-600:#00c000;--vertex-ui-green-700:#00ad00;--vertex-ui-green-800:#008000;--vertex-ui-green-900:#004d00}:root{--vertex-ui-teal-050:#f8fdfc;--vertex-ui-teal-100:#f1fbfa;--vertex-ui-teal-200:#e4f7f5;--vertex-ui-teal-300:#bcece7;--vertex-ui-teal-400:#62d2c7;--vertex-ui-teal-500:#1fbeaf;--vertex-ui-teal-600:#17af9f;--vertex-ui-teal-700:#0a9986;--vertex-ui-teal-800:#07705f;--vertex-ui-teal-900:#054d43}:root{--vertex-ui-blue-050:#f7fcfd;--vertex-ui-blue-100:#eff9fc;--vertex-ui-blue-200:#e0f3f9;--vertex-ui-blue-300:#b3e0f0;--vertex-ui-blue-400:#4db8db;--vertex-ui-blue-500:#0099cc;--vertex-ui-blue-600:#0086c0;--vertex-ui-blue-700:#006bad;--vertex-ui-blue-800:#004f80;--vertex-ui-blue-900:#002f4d}:root{--vertex-ui-purple-050:#fdf9fc;--vertex-ui-purple-100:#faf2f8;--vertex-ui-purple-200:#f6e6f2;--vertex-ui-purple-300:#e9c2e0;--vertex-ui-purple-400:#cb70b6;--vertex-ui-purple-500:#b43296;--vertex-ui-purple-600:#a42683;--vertex-ui-purple-700:#8c1368;--vertex-ui-purple-800:#66124b;--vertex-ui-purple-900:#4d0b39}:root{--vertex-ui-text-t:0.5625rem;--vertex-ui-text-xxs:0.625rem;--vertex-ui-text-xs:0.75rem;--vertex-ui-text-sm:0.8125rem;--vertex-ui-text-base:0.875rem;--vertex-ui-text-md:0.9375rem;--vertex-ui-text-lg:1rem;--vertex-ui-text-xl:1.125rem;--vertex-ui-text-xxl:1.25rem}:root{--vertex-ui-font-weight-light:300;--vertex-ui-font-weight-base:400;--vertex-ui-font-weight-medium:500;--vertex-ui-font-weight-bold:700}:root{--vertex-ui-font-family:'Roboto', 'Helvetica Neue', Helvetica, sans-serif}:root{--vertex-ui-popover-layer:2000;--vertex-ui-context-menu-layer:11000;--vertex-ui-dialog-layer:15000}:root{--vertex-ui-overlay-shadow:-1px 0 2px rgba(0, 0, 0, 0.12),
1
+ .sc-vertex-textfield-h{display:block}.txt-wrapper{display:flex;align-items:center;width:100%;box-sizing:border-box;background:none;font-family:var(--vertex-ui-font-family);line-height:1.4}.txt-wrapper-border{border:1px solid transparent;border-radius:4px}.txt-slot{padding-bottom:1px}.txt{width:100%;box-sizing:border-box;padding:6px 0.5em 7px;border:1px solid transparent;border-radius:4px;background:none;font-family:var(--vertex-ui-font-family);font-weight:var(--vertex-ui-font-weight-base);line-height:1.4;text-overflow:ellipsis}.txt:focus{outline:none}.txt-textarea{overflow:hidden;outline:none;box-shadow:none;resize:none}@keyframes onAutoFillStart{from{}to{}}@keyframes onAutoFillCancel{from{}to{}}.txt:-webkit-autofill{animation-name:onAutoFillStart}.txt:not(.txt:-webkit-autofill){animation-name:onAutoFillCancel}.txt-standard{border-color:var(--vertex-ui-neutral-400);color:var(--vertex-ui-neutral-800)}.txt-standard .txt::placeholder{color:var(--vertex-ui-neutral-500)}.txt-standard:hover:not(.disabled),.txt-standard:focus{border-color:var(--vertex-ui-neutral-500)}.txt-standard.disabled{border-color:var(--vertex-ui-neutral-200)}.txt-standard.disabled,.txt-standard.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-blank{color:var(--vertex-ui-neutral-800)}.txt-blank:not(:hover) .txt:focus{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.txt-blank .txt::placeholder{color:var(--vertex-ui-neutral-500)}.txt-blank:hover:not(.disabled) .txt{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.txt-filled{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);color:var(--vertex-ui-neutral-800)}.txt-filled.disabled,.txt-filled.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-filled .txt::placeholder{color:var(--vertex-ui-neutral-700)}.txt-filled:hover:not(.disabled),.txt-filled:focus{border-bottom-color:var(--vertex-ui-blue-600)}.txt-filled.disabled{border-color:var(--vertex-ui-neutral-100)}.txt-filled.disabled,.txt-filled.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined{background-color:var(--vertex-ui-white);border-color:var(--vertex-ui-white) var(--vertex-ui-white) var(--vertex-ui-neutral-400) var(--vertex-ui-white);color:var(--vertex-ui-neutral-800)}.txt-underlined.disabled,.txt-underlined.disabled::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined::placeholder{color:var(--vertex-ui-neutral-700)}.txt-underlined:hover:not(.disabled),.txt-underlined:focus{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);border-bottom-color:var(--vertex-ui-blue-600)}.txt-underlined.disabled{border-bottom-color:var(--vertex-ui-neutral-200)}.txt-underlined.disabled,.txt-underlined.disabled .txt::placeholder{color:var(--vertex-ui-neutral-400)}.txt-underlined.has-error{border-bottom-color:var(--vertex-ui-red-600)}.txt-filled.has-error,.txt-blank.has-error,.txt-standard.has-error{border-color:var(--vertex-ui-red-600)}.txt-size-standard{font-size:var(--vertex-ui-text-base)}.txt-size-sm{font-size:var(--vertex-ui-text-sm)}.txt-size-md{font-size:var(--vertex-ui-text-md)}.txt-size-lg{font-size:var(--vertex-ui-text-lg)}.txt-size-xl{font-size:var(--vertex-ui-text-xl)}.txt-size-xxl{font-size:var(--vertex-ui-text-xxl)}.click-to-edit{display:flex;flex-direction:row}.click-to-edit-text{width:100%}.icon-visibility{display:none}.click-to-edit:not(.disabled):hover .icon-visibility{display:block}.click-to-edit-icon-wrapper{display:flex;align-items:center;flex-shrink:0;vertical-align:middle;margin-left:5px}.hover-icon slot::slotted(*){height:1rem;width:1rem;padding-left:0.5rem}.click-to-edit-button{border-radius:4px;background-color:var(--neutral-200);color:var(--green-700)}.click-to-edit-button:hover{background-color:var(--neutral-300);color:var(--green-800)}vertex-tooltip:not(.hydrated){display:none}.vertex-tooltip-popover{width:100%;height:100%}.vertex-tooltip-content{display:flex;justify-content:center;text-align:center;width:var(--tooltip-width);font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-xxs);background-color:var(--vertex-ui-neutral-700);color:var(--vertex-ui-white);padding:0.25rem 0.5rem;border-radius:4px;pointer-events:none;white-space:var(--tooltip-white-space);user-select:none}:root{--vertex-ui-white:#ffffff;--vertex-ui-black:#000000}:root{--vertex-ui-neutral-050:#fafafa;--vertex-ui-neutral-100:#f5f5f5;--vertex-ui-neutral-200:#eeeeee;--vertex-ui-neutral-300:#e0e0e0;--vertex-ui-neutral-400:#bdbdbd;--vertex-ui-neutral-500:#9e9e9e;--vertex-ui-neutral-600:#757575;--vertex-ui-neutral-700:#616161;--vertex-ui-neutral-800:#444444;--vertex-ui-neutral-900:#212121}:root{--vertex-ui-red-050:#fff7f7;--vertex-ui-red-100:#ffefef;--vertex-ui-red-200:#ffe0e0;--vertex-ui-red-300:#ffb3b3;--vertex-ui-red-400:#ff4d4d;--vertex-ui-red-500:#ff0000;--vertex-ui-red-600:#eb0000;--vertex-ui-red-700:#d90000;--vertex-ui-red-800:#c40000;--vertex-ui-red-900:#990000}:root{--vertex-ui-orange-050:#fffcf7;--vertex-ui-orange-100:#fff9ef;--vertex-ui-orange-200:#fff3e0;--vertex-ui-orange-300:#ffe0b3;--vertex-ui-orange-400:#ffb84d;--vertex-ui-orange-500:#ff9900;--vertex-ui-orange-600:#ff8400;--vertex-ui-orange-700:#ff7300;--vertex-ui-orange-800:#e05d00;--vertex-ui-orange-900:#993b00}:root{--vertex-ui-yellow-050:#fffef7;--vertex-ui-yellow-100:#fffdef;--vertex-ui-yellow-200:#fffbe0;--vertex-ui-yellow-300:#fff5b3;--vertex-ui-yellow-400:#ffee6e;--vertex-ui-yellow-500:#ffe600;--vertex-ui-yellow-600:#ffd300;--vertex-ui-yellow-700:#ffc500;--vertex-ui-yellow-800:#cc8f00;--vertex-ui-yellow-900:#995c00}:root{--vertex-ui-green-050:#f7fdf7;--vertex-ui-green-100:#effcef;--vertex-ui-green-200:#e0f9e0;--vertex-ui-green-300:#b3f0b3;--vertex-ui-green-400:#4ddb4d;--vertex-ui-green-500:#00cc00;--vertex-ui-green-600:#00c000;--vertex-ui-green-700:#00ad00;--vertex-ui-green-800:#008000;--vertex-ui-green-900:#004d00}:root{--vertex-ui-teal-050:#f8fdfc;--vertex-ui-teal-100:#f1fbfa;--vertex-ui-teal-200:#e4f7f5;--vertex-ui-teal-300:#bcece7;--vertex-ui-teal-400:#62d2c7;--vertex-ui-teal-500:#1fbeaf;--vertex-ui-teal-600:#17af9f;--vertex-ui-teal-700:#0a9986;--vertex-ui-teal-800:#07705f;--vertex-ui-teal-900:#054d43}:root{--vertex-ui-blue-050:#f7fcfd;--vertex-ui-blue-100:#eff9fc;--vertex-ui-blue-200:#e0f3f9;--vertex-ui-blue-300:#b3e0f0;--vertex-ui-blue-400:#4db8db;--vertex-ui-blue-500:#0099cc;--vertex-ui-blue-600:#0086c0;--vertex-ui-blue-700:#006bad;--vertex-ui-blue-800:#004f80;--vertex-ui-blue-900:#002f4d}:root{--vertex-ui-purple-050:#fdf9fc;--vertex-ui-purple-100:#faf2f8;--vertex-ui-purple-200:#f6e6f2;--vertex-ui-purple-300:#e9c2e0;--vertex-ui-purple-400:#cb70b6;--vertex-ui-purple-500:#b43296;--vertex-ui-purple-600:#a42683;--vertex-ui-purple-700:#8c1368;--vertex-ui-purple-800:#66124b;--vertex-ui-purple-900:#4d0b39}:root{--vertex-ui-text-t:0.5625rem;--vertex-ui-text-xxs:0.625rem;--vertex-ui-text-xs:0.75rem;--vertex-ui-text-sm:0.8125rem;--vertex-ui-text-base:0.875rem;--vertex-ui-text-md:0.9375rem;--vertex-ui-text-lg:1rem;--vertex-ui-text-xl:1.125rem;--vertex-ui-text-xxl:1.25rem}:root{--vertex-ui-font-weight-light:300;--vertex-ui-font-weight-base:400;--vertex-ui-font-weight-medium:500;--vertex-ui-font-weight-bold:700}:root{--vertex-ui-font-family:'Roboto', 'Helvetica Neue', Helvetica, sans-serif;--vertex-ui-font-family-monospace:'Roboto Mono', 'Helvetica Monospaced', monospace}:root{--vertex-ui-popover-layer:2000;--vertex-ui-context-menu-layer:11000;--vertex-ui-dialog-layer:15000}:root{--vertex-ui-overlay-shadow:-1px 0 2px rgba(0, 0, 0, 0.12),
2
2
  1px 0 2px rgba(0, 0, 0, 0.13)}@media (min-width: 812px){:root{--vertex-ui-min-dialog-width:700px;--vertex-ui-min-dialog-height:500px}}
@@ -1 +1 @@
1
- import{d as e,N as t,w as a,p as o,a as r,b as i}from"./p-6834631c.js";export{s as setNonce}from"./p-6834631c.js";(()=>{const i=Array.from(e.querySelectorAll("script")).find((e=>new RegExp(`/${t}(\\.esm)?\\.js($|\\?|#)`).test(e.src)||e.getAttribute("data-stencil-namespace")===t)),n={};return n.resourcesUrl=new URL(".",new URL(i.getAttribute("data-resources-url")||i.src,a.location.href)).href,((o,i)=>{const n=`__sc_import_${t.replace(/\s|-/g,"_")}`;try{a[n]=new Function("w",`return import(w);//${Math.random()}`)}catch(t){const l=new Map;a[n]=t=>{var c;const s=new URL(t,o).href;let p=l.get(s);if(!p){const t=e.createElement("script");t.type="module",t.crossOrigin=i.crossOrigin,t.src=URL.createObjectURL(new Blob([`import * as m from '${s}'; window.${n}.m = m;`],{type:"application/javascript"}));const o=null!==(c=r.t)&&void 0!==c?c:function(e){var t,a,o;return null!==(o=null===(a=null===(t=e.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===a?void 0:a.getAttribute("content"))&&void 0!==o?o:void 0}(e);null!=o&&t.setAttribute("nonce",o),p=new Promise((e=>{t.onload=()=>{e(a[n].m),t.remove()}})),l.set(s,p),e.head.appendChild(t)}return p}}})(n.resourcesUrl,i),a.customElements?o(n):__sc_import_components("./p-c3ec6642.js").then((()=>n))})().then((e=>i([["p-24c72960",[[6,"vertex-click-to-edit-textfield",{placeholder:[1],fontSize:[1,"font-size"],disabled:[516],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],value:[1032],autoFocus:[4,"auto-focus"],editing:[1540],hasError:[4,"has-error"]}]]],["p-226e83a6",[[1,"vertex-collapsible",{label:[1],open:[1540]}]]],["p-41ced35c",[[1,"vertex-context-menu",{targetSelector:[1,"target-selector"],animated:[4],position:[32],open:[32]}]]],["p-0f8b9ede",[[1,"vertex-dialog",{open:[1540],fullscreen:[4],resizable:[4],width:[32],height:[32],minWidth:[32],minHeight:[32],maxWidth:[32],maxHeight:[32],isResizing:[32]},[[4,"keydown","keyDownListener"]]]]],["p-e7336466",[[1,"vertex-draggable-popover",{position:[1],boundarySelector:[1,"boundary-selector"],boundaryPadding:[2,"boundary-padding"],anchorPosition:[32],lastPosition:[32],dragging:[32]}]]],["p-e3d0c2d1",[[1,"vertex-dropdown-menu",{animated:[4],placement:[1],open:[32]}]]],["p-fe7e7a74",[[1,"vertex-help-tooltip",{animated:[4],placement:[1],open:[32]}]]],["p-cfe369bf",[[6,"vertex-search-bar",{variant:[1],disabled:[4],triggerCharacter:[1,"trigger-character"],breakCharacters:[16],resultItems:[16],placement:[1],value:[1],placeholder:[1],replacements:[1040],replacementUriType:[1,"replacement-uri-type"],cursorPosition:[32],displayedElements:[32],hasTriggered:[32]}]]],["p-7cfb3736",[[1,"vertex-select",{value:[513],placeholder:[513],disabled:[516],animated:[4],hideSelected:[4,"hide-selected"],resizeObserverFactory:[16],open:[32],position:[32],displayValue:[32]}]]],["p-16719272",[[1,"vertex-slider",{min:[2],max:[2],valueLabelDisplay:[1,"value-label-display"],step:[8],size:[1],value:[1026],disabled:[4]}]]],["p-756c9977",[[1,"vertex-toast",{content:[1],placement:[1],duration:[2],animated:[4],open:[4],type:[1],isOpen:[32]}]]],["p-7f64b251",[[1,"vertex-color-circle-picker",{colors:[1],supplementalColors:[1,"supplemental-colors"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],selected:[1537],direction:[1]}]]],["p-35e7ab78",[[1,"vertex-color-picker",{value:[1537],disabled:[4]}]]],["p-53515813",[[1,"vertex-toggle",{variant:[1],disabled:[4],checked:[1540]}]]],["p-bca6275a",[[1,"vertex-avatar",{firstName:[1,"first-name"],lastName:[1,"last-name"],value:[1],active:[4],variant:[1]}]]],["p-91123ff6",[[1,"vertex-avatar-group"]]],["p-0b4406fa",[[1,"vertex-badge",{badgeText:[1,"badge-text"],badgeColor:[1,"badge-color"]}]]],["p-fca52578",[[1,"vertex-button",{type:[1],color:[1],variant:[1],size:[1],expand:[1],href:[1],target:[1],disabled:[516]}]]],["p-6d4f055b",[[1,"vertex-card",{mode:[1]}]]],["p-211c1186",[[1,"vertex-card-group",{selected:[516],hovered:[516],expanded:[516]}]]],["p-d7c0c287",[[1,"vertex-chip",{variant:[1],color:[1]}]]],["p-a2018217",[[1,"vertex-logo-loading"]]],["p-cc2e3192",[[1,"vertex-menu-divider"]]],["p-573b8ec6",[[1,"vertex-menu-item",{disabled:[516]}]]],["p-33400eed",[[2,"vertex-radio",{disabled:[516],value:[513],label:[513],name:[513],checked:[516]}]]],["p-8b85ea4a",[[1,"vertex-radio-group",{name:[513],value:[1537]}]]],["p-ea4a2f74",[[1,"vertex-resizable",{horizontalDirection:[1,"horizontal-direction"],verticalDirection:[1,"vertical-direction"],initialHorizontalScale:[2,"initial-horizontal-scale"],initialVerticalScale:[2,"initial-vertical-scale"],initializeWithOffset:[4,"initialize-with-offset"],parentSelector:[1,"parent-selector"],verticalSiblingSelector:[1,"vertical-sibling-selector"],horizontalSiblingSelector:[1,"horizontal-sibling-selector"],contentSelector:[1,"content-selector"],position:[1],dimensionsComputed:[1540,"dimensions-computed"],width:[32],minWidth:[32],maxWidth:[32],height:[32],minHeight:[32],maxHeight:[32],left:[32],top:[32],hoveredLocation:[32],dragStartLocation:[32],updateDimensions:[64]}]]],["p-69375605",[[1,"vertex-spinner",{color:[1],size:[1]}]]],["p-80c989fa",[[1,"vertex-expandable",{expanded:[1540],expanding:[1540],collapsing:[1540],controlled:[516],expandType:[513,"expand-type"],animated:[4],contentScrollHeight:[32]}]]],["p-ee496965",[[1,"vertex-result-list",{items:[16],itemsJson:[1,"items"],viewportStartIndex:[1026,"viewport-start-index"],viewportEndIndex:[1026,"viewport-end-index"],resultHeight:[1026,"result-height"],overScanCount:[2,"over-scan-count"],placement:[1],position:[1],open:[4],listHeight:[32],parsedResults:[32],scrollTop:[32],lastStartIndex:[32],lastFocusedIndex:[32],stateMap:[32]}]]],["p-406e73da",[[6,"vertex-textfield",{type:[1],name:[1],variant:[1],fontSize:[1,"font-size"],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],placeholder:[1],autoFocus:[4,"auto-focus"],autoComplete:[1,"auto-complete"],autoCorrect:[1,"auto-correct"],value:[1032],disabled:[516],hasError:[4,"has-error"],updateInput:[64],blurInput:[64],getInputValue:[64],selectAll:[64]}]]],["p-0b1cdc8a",[[1,"vertex-tooltip",{content:[1],disabled:[4],placement:[1],delay:[2],animated:[4],open:[32]}]]],["p-20a74d5d",[[1,"vertex-color-circle",{color:[513],supplementalColor:[513,"supplemental-color"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],lightened:[1537],darkened:[1537]}]]],["p-9c384f6c",[[1,"vertex-auto-resize-textarea",{textareaSelector:[1,"textarea-selector"],initialValue:[1,"initial-value"],minRows:[514,"min-rows"],maxRows:[514,"max-rows"],textValue:[32]}]]],["p-0517ca62",[[1,"vertex-menu",{animated:[4],open:[1540],placement:[1],fallbackPlacements:[16],backdrop:[4],position:[1040],popoverProps:[16]}]]],["p-f71fc166",[[1,"vertex-icon-button",{iconName:[1,"icon-name"],disabled:[516],variant:[1],iconColor:[1,"icon-color"],iconSize:[1,"icon-size"]}]]],["p-7dba2574",[[1,"vertex-icon",{name:[1],size:[1]}]]],["p-606596de",[[1,"vertex-popover",{open:[1540],placement:[1],position:[1025],anchorBounds:[16],backdrop:[4],animated:[4],anchorSelector:[1,"anchor-selector"],boundarySelector:[1,"boundary-selector"],resizeBehavior:[1,"resize-behavior"],overflowBehavior:[16],flipBehavior:[16],offsetBehavior:[2,"offset-behavior"],updateOnResize:[4,"update-on-resize"],resizeObserverFactory:[16],opened:[32],computedPlacement:[32]}]]]],e)));
1
+ import{d as e,N as t,w as a,p as o,a as r,b as i}from"./p-6834631c.js";export{s as setNonce}from"./p-6834631c.js";(()=>{const i=Array.from(e.querySelectorAll("script")).find((e=>new RegExp(`/${t}(\\.esm)?\\.js($|\\?|#)`).test(e.src)||e.getAttribute("data-stencil-namespace")===t)),n={};return n.resourcesUrl=new URL(".",new URL(i.getAttribute("data-resources-url")||i.src,a.location.href)).href,((o,i)=>{const n=`__sc_import_${t.replace(/\s|-/g,"_")}`;try{a[n]=new Function("w",`return import(w);//${Math.random()}`)}catch(t){const l=new Map;a[n]=t=>{var c;const s=new URL(t,o).href;let p=l.get(s);if(!p){const t=e.createElement("script");t.type="module",t.crossOrigin=i.crossOrigin,t.src=URL.createObjectURL(new Blob([`import * as m from '${s}'; window.${n}.m = m;`],{type:"application/javascript"}));const o=null!==(c=r.t)&&void 0!==c?c:function(e){var t,a,o;return null!==(o=null===(a=null===(t=e.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===a?void 0:a.getAttribute("content"))&&void 0!==o?o:void 0}(e);null!=o&&t.setAttribute("nonce",o),p=new Promise((e=>{t.onload=()=>{e(a[n].m),t.remove()}})),l.set(s,p),e.head.appendChild(t)}return p}}})(n.resourcesUrl,i),a.customElements?o(n):__sc_import_components("./p-c3ec6642.js").then((()=>n))})().then((e=>i([["p-24c72960",[[6,"vertex-click-to-edit-textfield",{placeholder:[1],fontSize:[1,"font-size"],disabled:[516],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],value:[1032],autoFocus:[4,"auto-focus"],editing:[1540],hasError:[4,"has-error"]}]]],["p-226e83a6",[[1,"vertex-collapsible",{label:[1],open:[1540]}]]],["p-41ced35c",[[1,"vertex-context-menu",{targetSelector:[1,"target-selector"],animated:[4],position:[32],open:[32]}]]],["p-e35057b5",[[1,"vertex-dialog",{open:[1540],fullscreen:[4],resizable:[4],width:[32],height:[32],minWidth:[32],minHeight:[32],maxWidth:[32],maxHeight:[32],isResizing:[32]},[[4,"keydown","keyDownListener"]]]]],["p-e7336466",[[1,"vertex-draggable-popover",{position:[1],boundarySelector:[1,"boundary-selector"],boundaryPadding:[2,"boundary-padding"],anchorPosition:[32],lastPosition:[32],dragging:[32]}]]],["p-e3d0c2d1",[[1,"vertex-dropdown-menu",{animated:[4],placement:[1],open:[32]}]]],["p-fe7e7a74",[[1,"vertex-help-tooltip",{animated:[4],placement:[1],open:[32]}]]],["p-6a49c365",[[6,"vertex-search-bar",{variant:[1],disabled:[4],triggerCharacter:[1,"trigger-character"],breakCharacters:[16],resultItems:[16],placement:[1],value:[1],placeholder:[1],replacements:[1040],replacementUriType:[1,"replacement-uri-type"],cursorPosition:[32],displayedElements:[32],hasTriggered:[32]}]]],["p-1d08dd79",[[1,"vertex-select",{value:[513],placeholder:[513],disabled:[516],animated:[4],hideSelected:[4,"hide-selected"],resizeObserverFactory:[16],open:[32],position:[32],displayValue:[32]}]]],["p-01d4be1d",[[1,"vertex-slider",{min:[2],max:[2],valueLabelDisplay:[1,"value-label-display"],step:[8],size:[1],value:[1026],disabled:[4]}]]],["p-756c9977",[[1,"vertex-toast",{content:[1],placement:[1],duration:[2],animated:[4],open:[4],type:[1],isOpen:[32]}]]],["p-d2d75bcf",[[1,"vertex-color-circle-picker",{colors:[1],supplementalColors:[1,"supplemental-colors"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],selected:[1537],direction:[1]}]]],["p-2b4aedaa",[[1,"vertex-color-picker",{value:[1537],size:[513],variant:[513],disabled:[4]}]]],["p-53515813",[[1,"vertex-toggle",{variant:[1],disabled:[4],checked:[1540]}]]],["p-bca6275a",[[1,"vertex-avatar",{firstName:[1,"first-name"],lastName:[1,"last-name"],value:[1],active:[4],variant:[1]}]]],["p-91123ff6",[[1,"vertex-avatar-group"]]],["p-0b4406fa",[[1,"vertex-badge",{badgeText:[1,"badge-text"],badgeColor:[1,"badge-color"]}]]],["p-fca52578",[[1,"vertex-button",{type:[1],color:[1],variant:[1],size:[1],expand:[1],href:[1],target:[1],disabled:[516]}]]],["p-6d4f055b",[[1,"vertex-card",{mode:[1]}]]],["p-211c1186",[[1,"vertex-card-group",{selected:[516],hovered:[516],expanded:[516]}]]],["p-d7c0c287",[[1,"vertex-chip",{variant:[1],color:[1]}]]],["p-a2018217",[[1,"vertex-logo-loading"]]],["p-cc2e3192",[[1,"vertex-menu-divider"]]],["p-573b8ec6",[[1,"vertex-menu-item",{disabled:[516]}]]],["p-33400eed",[[2,"vertex-radio",{disabled:[516],value:[513],label:[513],name:[513],checked:[516]}]]],["p-8b85ea4a",[[1,"vertex-radio-group",{name:[513],value:[1537]}]]],["p-ea4a2f74",[[1,"vertex-resizable",{horizontalDirection:[1,"horizontal-direction"],verticalDirection:[1,"vertical-direction"],initialHorizontalScale:[2,"initial-horizontal-scale"],initialVerticalScale:[2,"initial-vertical-scale"],initializeWithOffset:[4,"initialize-with-offset"],parentSelector:[1,"parent-selector"],verticalSiblingSelector:[1,"vertical-sibling-selector"],horizontalSiblingSelector:[1,"horizontal-sibling-selector"],contentSelector:[1,"content-selector"],position:[1],dimensionsComputed:[1540,"dimensions-computed"],width:[32],minWidth:[32],maxWidth:[32],height:[32],minHeight:[32],maxHeight:[32],left:[32],top:[32],hoveredLocation:[32],dragStartLocation:[32],updateDimensions:[64]}]]],["p-69375605",[[1,"vertex-spinner",{color:[1],size:[1]}]]],["p-2ae8175d",[[1,"vertex-tab",{label:[1],active:[4]}]]],["p-8d83dfff",[[1,"vertex-tabs",{active:[1025],labels:[32],activeBounds:[32],activeButtonEl:[32]}]]],["p-80c989fa",[[1,"vertex-expandable",{expanded:[1540],expanding:[1540],collapsing:[1540],controlled:[516],expandType:[513,"expand-type"],animated:[4],contentScrollHeight:[32]}]]],["p-ee496965",[[1,"vertex-result-list",{items:[16],itemsJson:[1,"items"],viewportStartIndex:[1026,"viewport-start-index"],viewportEndIndex:[1026,"viewport-end-index"],resultHeight:[1026,"result-height"],overScanCount:[2,"over-scan-count"],placement:[1],position:[1],open:[4],listHeight:[32],parsedResults:[32],scrollTop:[32],lastStartIndex:[32],lastFocusedIndex:[32],stateMap:[32]}]]],["p-9c384f6c",[[1,"vertex-auto-resize-textarea",{textareaSelector:[1,"textarea-selector"],initialValue:[1,"initial-value"],minRows:[514,"min-rows"],maxRows:[514,"max-rows"],textValue:[32]}]]],["p-406e73da",[[6,"vertex-textfield",{type:[1],name:[1],variant:[1],fontSize:[1,"font-size"],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],placeholder:[1],autoFocus:[4,"auto-focus"],autoComplete:[1,"auto-complete"],autoCorrect:[1,"auto-correct"],value:[1032],disabled:[516],hasError:[4,"has-error"],updateInput:[64],blurInput:[64],getInputValue:[64],selectAll:[64]}]]],["p-606596de",[[1,"vertex-popover",{open:[1540],placement:[1],position:[1025],anchorBounds:[16],backdrop:[4],animated:[4],anchorSelector:[1,"anchor-selector"],boundarySelector:[1,"boundary-selector"],resizeBehavior:[1,"resize-behavior"],overflowBehavior:[16],flipBehavior:[16],offsetBehavior:[2,"offset-behavior"],updateOnResize:[4,"update-on-resize"],resizeObserverFactory:[16],opened:[32],computedPlacement:[32]}]]],["p-cbfc041e",[[1,"vertex-tooltip",{content:[1],disabled:[4],placement:[1],delay:[2],animated:[4],open:[32]}]]],["p-8bbc344d",[[1,"vertex-color-swatch",{variant:[513],size:[513],color:[513],supplementalColor:[513,"supplemental-color"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],lightened:[1537],darkened:[1537]}]]],["p-0517ca62",[[1,"vertex-menu",{animated:[4],open:[1540],placement:[1],fallbackPlacements:[16],backdrop:[4],position:[1040],popoverProps:[16]}]]],["p-decf635f",[[1,"vertex-icon-button",{iconName:[1,"icon-name"],disabled:[516],variant:[1],iconColor:[1,"icon-color"],iconSize:[1,"icon-size"]}]]],["p-c6841378",[[1,"vertex-icon",{name:[1],size:[1]}]]]],e)));
@@ -1 +1 @@
1
- export{A as AutoResizeTextArea}from"./p-bec53c3a.js";export{A as Avatar}from"./p-c2c076f1.js";export{A as AvatarGroup}from"./p-81cb4da4.js";export{B as Badge}from"./p-29d7697f.js";export{B as Button}from"./p-64e8b92c.js";export{C as Card}from"./p-a3c04bbd.js";export{C as CardGroup}from"./p-ff4a1c3a.js";export{C as Chip}from"./p-a6614625.js";export{C as ClickToEditTextField}from"./p-0e628c05.js";export{C as Collapsible}from"./p-8fe0084d.js";export{C as ColorCircle}from"./p-d9b9aebe.js";export{C as ColorCirclePicker}from"./p-9374ef6c.js";export{C as ColorPicker}from"./p-8434602f.js";export{C as ContextMenu}from"./p-f2bc7ec5.js";export{D as Dialog}from"./p-165aed7d.js";export{D as DraggablePopover}from"./p-41a7564c.js";export{D as DropdownMenu}from"./p-39133bc7.js";export{E as Expandable}from"./p-6a640a2c.js";export{H as HelpTooltip}from"./p-2cff3285.js";export{I as Icon}from"./p-ca52a423.js";export{I as IconButton}from"./p-103249b4.js";export{L as LogoLoading}from"./p-817bf6ff.js";export{M as Menu}from"./p-7b75e004.js";export{M as MenuDivider}from"./p-c939fa4e.js";export{M as MenuItem}from"./p-988058f9.js";export{P as Popover}from"./p-c2706288.js";export{R as Radio}from"./p-36c853c4.js";export{R as RadioGroup}from"./p-f693e6f8.js";export{R as Resizable}from"./p-6ec189d2.js";export{R as ResultList}from"./p-6b862967.js";export{S as SearchBar}from"./p-db34f10c.js";export{S as Select}from"./p-912f6e24.js";export{S as Slider}from"./p-cd6ddb10.js";export{S as Spinner}from"./p-09ba50c3.js";export{T as TextField}from"./p-43b1b3f9.js";export{T as Toast}from"./p-3dd08a0f.js";export{T as Toggle}from"./p-59fb829f.js";export{T as Tooltip}from"./p-92930f2a.js";import"./p-6834631c.js";import"./p-b2c7b113.js";import"./p-fe062eb0.js";import"./p-03dbb28c.js";import"./p-1356f525.js";import"./p-59032668.js";
1
+ export{A as AutoResizeTextArea}from"./p-bec53c3a.js";export{A as Avatar}from"./p-c2c076f1.js";export{A as AvatarGroup}from"./p-81cb4da4.js";export{B as Badge}from"./p-29d7697f.js";export{B as Button}from"./p-64e8b92c.js";export{C as Card}from"./p-a3c04bbd.js";export{C as CardGroup}from"./p-ff4a1c3a.js";export{C as Chip}from"./p-a6614625.js";export{C as ClickToEditTextField}from"./p-0e628c05.js";export{C as Collapsible}from"./p-8fe0084d.js";export{C as ColorCirclePicker}from"./p-b9dab446.js";export{C as ColorPicker}from"./p-655053df.js";export{C as ColorSwatch}from"./p-d539f530.js";export{C as ContextMenu}from"./p-f2bc7ec5.js";export{D as Dialog}from"./p-0d4a0d61.js";export{D as DraggablePopover}from"./p-41a7564c.js";export{D as DropdownMenu}from"./p-39133bc7.js";export{E as Expandable}from"./p-6a640a2c.js";export{H as HelpTooltip}from"./p-2cff3285.js";export{I as Icon}from"./p-7bd92281.js";export{I as IconButton}from"./p-5384f198.js";export{L as LogoLoading}from"./p-817bf6ff.js";export{M as Menu}from"./p-7b75e004.js";export{M as MenuDivider}from"./p-c939fa4e.js";export{M as MenuItem}from"./p-988058f9.js";export{P as Popover}from"./p-c2706288.js";export{R as Radio}from"./p-36c853c4.js";export{R as RadioGroup}from"./p-f693e6f8.js";export{R as Resizable}from"./p-6ec189d2.js";export{R as ResultList}from"./p-6b862967.js";export{S as SearchBar}from"./p-6b6c2260.js";export{S as Select}from"./p-4327deea.js";export{S as Slider}from"./p-18ed73e9.js";export{S as Spinner}from"./p-09ba50c3.js";export{T as Tab}from"./p-96f55673.js";export{T as Tabs}from"./p-48629bf1.js";export{T as TextField}from"./p-43b1b3f9.js";export{T as Toast}from"./p-3dd08a0f.js";export{T as Toggle}from"./p-59fb829f.js";export{T as Tooltip}from"./p-45848878.js";import"./p-6834631c.js";import"./p-b2c7b113.js";import"./p-fe062eb0.js";import"./p-3438c441.js";import"./p-6ff20817.js";import"./p-1356f525.js";import"./p-59032668.js";import"./p-65f9817e.js";
@@ -0,0 +1 @@
1
+ export{S as vertex_slider}from"./p-18ed73e9.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-65f9817e.js";
@@ -1 +1 @@
1
- import{c as i,r as t,e as s,h as e,g as o}from"./p-6834631c.js";import{c as h}from"./p-fe062eb0.js";function n(t){i(t)}function r(i){return i.getBoundingClientRect()}const l=class{constructor(i){t(this,i),this.backdropClick=s(this,"backdropClick",7),this.closed=s(this,"closed",7),this.handleKeyDown=()=>{this.open&&(this.open=!1)},this.handlePointerDown=()=>{this.isResizing=!0,n((()=>{if(null!=this.dialogElement){const i=r(this.dialogElement);this.initialDialogBoundingRect=i,this.lastPointerPosition={x:i.right,y:i.bottom}}})),window.addEventListener("pointermove",this.handlePointerMove),window.addEventListener("pointerup",this.handlePointerUp)},this.handlePointerMove=i=>{if(null!=this.lastPointerPosition&&null!=this.initialDialogBoundingRect&&null!=this.width&&null!=this.height){const t=this.height+2*(i.clientY-this.lastPointerPosition.y);this.width=this.constrainDimension(this.width+2*(i.clientX-this.lastPointerPosition.x),this.getMinWidth(),this.getMaxWidth()),this.height=this.constrainDimension(t,this.getMinHeight(),this.getMaxHeight()),this.lastPointerPosition={x:this.constrainX(i.clientX,this.width,this.initialDialogBoundingRect),y:this.constrainY(i.clientY,this.height,this.initialDialogBoundingRect)}}},this.handlePointerUp=()=>{this.lastPointerPosition=void 0,this.initialDialogBoundingRect=void 0,this.isResizing=!1,window.removeEventListener("pointermove",this.handlePointerMove),window.removeEventListener("pointerup",this.handlePointerUp)},this.constrainDimension=(i,t,s)=>Math.min(Math.max(i,t),s),this.constrainX=(i,t,s)=>t<=this.getMinWidth()?s.right:t>=this.getMinHeight()?s.right+(t-s.width)/2:i,this.constrainY=(i,t,s)=>t<=this.getMinHeight()?s.bottom:t>=this.getMaxHeight()?s.bottom+(t-s.height)/2:i,this.getMaxWidth=()=>{var i;return null!==(i=this.maxWidth)&&void 0!==i?i:Number.POSITIVE_INFINITY},this.getMaxHeight=()=>{var i;return null!==(i=this.maxHeight)&&void 0!==i?i:Number.POSITIVE_INFINITY},this.getMinWidth=()=>{var i;return null!==(i=this.minWidth)&&void 0!==i?i:Number.NEGATIVE_INFINITY},this.getMinHeight=()=>{var i;return null!==(i=this.minHeight)&&void 0!==i?i:Number.NEGATIVE_INFINITY},this.resize=()=>{n((()=>{if(null!=this.backdropElement){const i=window.getComputedStyle(this.backdropElement),t=parseFloat(i.padding);this.boundaryPadding=isNaN(t)?0:t,this.maxHeight=window.innerHeight-2*this.boundaryPadding,this.maxWidth=window.innerWidth-2*this.boundaryPadding,this.width=null!=this.width?Math.min(this.maxWidth,this.width):void 0,this.height=null!=this.height?Math.min(this.maxHeight,this.height):void 0}}))},this.open=!1,this.fullscreen=!1,this.resizable=!1,this.width=void 0,this.height=void 0,this.minWidth=void 0,this.minHeight=void 0,this.maxWidth=void 0,this.maxHeight=void 0,this.isResizing=!1,this.handleKeyDown=this.handleKeyDown.bind(this),this.mutationObserver=new MutationObserver(this.resize),this.resizeObserver=new ResizeObserver(this.resize)}componentDidLoad(){window.addEventListener("resize",this.resize),this.mutationObserver.observe(this.hostEl,{attributes:!0,attributeFilter:["style"]}),this.resizeObserver.observe(this.hostEl)}componentWillRender(){this.open&&null==this.width&&null==this.height&&n((()=>{if(null!=this.dialogElement){const i=r(this.dialogElement);this.minWidth=i.width,this.minHeight=i.height,this.width=this.minWidth,this.height=this.minHeight,this.resize()}}))}disconnectedCallback(){this.width=void 0,this.height=void 0,this.lastPointerPosition=void 0,this.isResizing=!1}clearComputedValues(){this.width=void 0,this.height=void 0,this.minWidth=void 0,this.minHeight=void 0,this.maxWidth=void 0,this.maxHeight=void 0}updateOpened(i){i||this.closed.emit()}keyDownListener(i){this.open&&"Escape"===i.key&&(this.open=!1)}render(){var i,t;const s=null!=this.width||null!=this.minWidth?`${null!==(i=this.width)&&void 0!==i?i:this.minWidth}px`:void 0,o=null!=this.height||null!=this.minHeight?`${null!==(t=this.height)&&void 0!==t?t:this.minHeight}px`:void 0;return e("div",{ref:i=>{this.backdropElement=i},onPointerDown:()=>{this.backdropClick.emit()},class:h("dialog-backdrop",{hidden:!this.open,shown:this.open,"resize-cursor":this.isResizing})},e("div",{ref:i=>{this.dialogElement=i},class:h("dialog",{resizable:this.resizable,fullscreen:this.fullscreen,overlay:!this.fullscreen,"no-select":null!=this.lastPointerPosition}),onPointerDown:i=>{i.stopPropagation()},style:this.resizable&&!this.fullscreen?{width:s,height:o}:void 0},e("div",{class:"contents"},e("slot",{name:"header"},e("div",{class:"header"},e("slot",{name:"heading"}),e("div",{class:"close"},e("slot",{name:"close-dialog"},e("vertex-icon-button",{onPointerDown:()=>{this.open=!1},iconSize:"sm",iconName:"close"}))))),e("div",{class:"body"},e("slot",null)),e("div",{class:"footer"},e("slot",{name:"footer"},e("slot",{name:"footer-actions"}))),this.resizable&&!this.fullscreen&&e("vertex-icon",{class:"resize",onPointerDown:this.handlePointerDown,name:"resize",size:"xs"}))))}get hostEl(){return o(this)}static get watchers(){return{resizable:["clearComputedValues"],open:["updateOpened"]}}};l.style=":host{--backdrop-color:rgba(0,0,0,0.4);--z-index:var(--vertex-ui-dialog-layer)}.hidden>.dialog{opacity:0;width:0;height:0;visibility:hidden}.hidden{pointer-events:none;display:none}.close{margin-left:auto}.shown{display:flex;justify-content:center;align-items:center}.header{width:100%;display:flex;font-size:1.125rem;height:2rem;margin-bottom:1rem}.body{position:relative;width:100%;height:100%}.dialog-backdrop{position:fixed;z-index:var(--z-index);left:0;top:0;width:100%;height:100%;overflow:auto;background-color:var(--backdrop-color);padding:2rem;box-sizing:border-box;display:flex;align-items:center;justify-content:center}.dialog{background-color:var(--vertex-ui-white);position:absolute;align-items:center;color:var(--vertex-ui-neutral-800);font-family:var(--vertex-ui-font-family);overflow:hidden}.dialog.no-select{user-select:none}.overlay{border:1px solid var(--vertex-ui-neutral-300);border-radius:6px;min-width:var(--min-width, var(--vertex-ui-min-dialog-width));box-shadow:0 1px 2px rgba(0, 0, 0, 0.15);display:flex}.overlay.resizable{min-height:var(--min-height, var(--vertex-ui-min-dialog-height))}.fullscreen{height:100vh;width:100vw}.contents{display:flex;position:relative;flex-direction:column;padding:1.5rem;width:100%;height:100%;box-sizing:border-box}.close:hover,.close:focus{color:black;text-decoration:none;cursor:pointer}.footer{display:flex}.resize{cursor:nwse-resize;position:absolute;bottom:0.125rem;right:0.125rem}.resize-cursor{cursor:nwse-resize}";export{l as D}
1
+ import{c as i,r as t,e as s,h as e,g as o}from"./p-6834631c.js";import{c as h}from"./p-fe062eb0.js";function n(t){i(t)}function r(i){return i.getBoundingClientRect()}const l=class{constructor(i){t(this,i),this.backdropClick=s(this,"backdropClick",7),this.closed=s(this,"closed",7),this.handleKeyDown=()=>{this.open&&(this.open=!1)},this.handlePointerDown=()=>{this.isResizing=!0,n((()=>{if(null!=this.dialogElement){const i=r(this.dialogElement);this.initialDialogBoundingRect=i,this.lastPointerPosition={x:i.right,y:i.bottom}}})),window.addEventListener("pointermove",this.handlePointerMove),window.addEventListener("pointerup",this.handlePointerUp)},this.handlePointerMove=i=>{if(null!=this.lastPointerPosition&&null!=this.initialDialogBoundingRect&&null!=this.width&&null!=this.height){const t=this.height+2*(i.clientY-this.lastPointerPosition.y);this.width=this.constrainDimension(this.width+2*(i.clientX-this.lastPointerPosition.x),this.getMinWidth(),this.getMaxWidth()),this.height=this.constrainDimension(t,this.getMinHeight(),this.getMaxHeight()),this.lastPointerPosition={x:this.constrainX(i.clientX,this.width,this.initialDialogBoundingRect),y:this.constrainY(i.clientY,this.height,this.initialDialogBoundingRect)}}},this.handlePointerUp=()=>{this.lastPointerPosition=void 0,this.initialDialogBoundingRect=void 0,this.isResizing=!1,window.removeEventListener("pointermove",this.handlePointerMove),window.removeEventListener("pointerup",this.handlePointerUp)},this.constrainDimension=(i,t,s)=>Math.min(Math.max(i,t),s),this.constrainX=(i,t,s)=>t<=this.getMinWidth()?s.right:t>=this.getMinHeight()?s.right+(t-s.width)/2:i,this.constrainY=(i,t,s)=>t<=this.getMinHeight()?s.bottom:t>=this.getMaxHeight()?s.bottom+(t-s.height)/2:i,this.getMaxWidth=()=>{var i;return null!==(i=this.maxWidth)&&void 0!==i?i:Number.POSITIVE_INFINITY},this.getMaxHeight=()=>{var i;return null!==(i=this.maxHeight)&&void 0!==i?i:Number.POSITIVE_INFINITY},this.getMinWidth=()=>{var i;return null!==(i=this.minWidth)&&void 0!==i?i:Number.NEGATIVE_INFINITY},this.getMinHeight=()=>{var i;return null!==(i=this.minHeight)&&void 0!==i?i:Number.NEGATIVE_INFINITY},this.resize=()=>{n((()=>{if(null!=this.backdropElement){const i=window.getComputedStyle(this.backdropElement),t=parseFloat(i.padding);this.boundaryPadding=isNaN(t)?0:t,this.maxHeight=window.innerHeight-2*this.boundaryPadding,this.maxWidth=window.innerWidth-2*this.boundaryPadding,this.width=null!=this.width?Math.min(this.maxWidth,this.width):void 0,this.height=null!=this.height?Math.min(this.maxHeight,this.height):void 0}}))},this.open=!1,this.fullscreen=!1,this.resizable=!1,this.width=void 0,this.height=void 0,this.minWidth=void 0,this.minHeight=void 0,this.maxWidth=void 0,this.maxHeight=void 0,this.isResizing=!1,this.handleKeyDown=this.handleKeyDown.bind(this),this.mutationObserver=new MutationObserver(this.resize),this.resizeObserver=new ResizeObserver(this.resize)}componentDidLoad(){window.addEventListener("resize",this.resize),this.mutationObserver.observe(this.hostEl,{attributes:!0,attributeFilter:["style"]}),this.resizeObserver.observe(this.hostEl)}componentWillRender(){this.open&&null==this.width&&null==this.height&&n((()=>{if(null!=this.dialogElement){const i=r(this.dialogElement);this.minWidth=i.width,this.minHeight=i.height,this.width=this.minWidth,this.height=this.minHeight,this.resize()}}))}disconnectedCallback(){this.width=void 0,this.height=void 0,this.lastPointerPosition=void 0,this.isResizing=!1}clearComputedValues(){this.width=void 0,this.height=void 0,this.minWidth=void 0,this.minHeight=void 0,this.maxWidth=void 0,this.maxHeight=void 0}updateOpened(i){i||this.closed.emit()}keyDownListener(i){this.open&&"Escape"===i.key&&(this.open=!1)}render(){var i,t;const s=null!=this.width||null!=this.minWidth?`${null!==(i=this.width)&&void 0!==i?i:this.minWidth}px`:void 0,o=null!=this.height||null!=this.minHeight?`${null!==(t=this.height)&&void 0!==t?t:this.minHeight}px`:void 0;return e("div",{ref:i=>{this.backdropElement=i},onPointerDown:()=>{this.backdropClick.emit()},class:h("dialog-backdrop",{hidden:!this.open,shown:this.open,"resize-cursor":this.isResizing})},e("div",{ref:i=>{this.dialogElement=i},class:h("dialog",{resizable:this.resizable,fullscreen:this.fullscreen,overlay:!this.fullscreen,"no-select":null!=this.lastPointerPosition}),onPointerDown:i=>{i.stopPropagation()},style:this.resizable&&!this.fullscreen?{width:s,height:o}:void 0},e("div",{class:"contents"},e("slot",{name:"header"},e("div",{class:"header"},e("slot",{name:"heading"}),e("div",{class:"close"},e("slot",{name:"close-dialog"},e("vertex-icon-button",{onPointerDown:()=>{this.open=!1},iconSize:"sm",iconName:"close"}))))),e("div",{class:"body"},e("slot",null)),e("div",{class:"footer"},e("slot",{name:"footer"},e("slot",{name:"footer-actions"}))),this.resizable&&!this.fullscreen&&e("vertex-icon",{class:"resize",onPointerDown:this.handlePointerDown,name:"resize",size:"xs"}))))}get hostEl(){return o(this)}static get watchers(){return{resizable:["clearComputedValues"],open:["updateOpened"]}}};l.style=":host{--backdrop-color:rgba(0,0,0,0.4);--z-index:var(--vertex-ui-dialog-layer)}.hidden>.dialog{opacity:0;width:0;height:0;visibility:hidden}.hidden{pointer-events:none;display:none}.close{margin-left:auto}.shown{display:flex;justify-content:center;align-items:center}.header{width:100%;display:flex;font-size:1.125rem;height:2rem;margin-bottom:1rem}.body{position:relative;width:100%;height:100%}.dialog-backdrop{position:fixed;z-index:var(--z-index);left:0;top:0;width:100%;height:100%;overflow:auto;background-color:var(--backdrop-color);padding:2rem;box-sizing:border-box;display:flex;align-items:center;justify-content:center}.dialog{background-color:var(--vertex-ui-white);position:absolute;align-items:center;color:var(--vertex-ui-neutral-800);font-family:var(--vertex-ui-font-family);overflow:hidden}.dialog.no-select{user-select:none}.overlay{border:1px solid var(--vertex-ui-neutral-300);border-radius:6px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.15);display:flex}.overlay.resizable{min-height:var(--min-height, var(--vertex-ui-min-dialog-height))}.fullscreen{height:100vh;width:100vw}.contents{display:flex;position:relative;flex-direction:column;padding:1.5rem;width:100%;height:100%;box-sizing:border-box}.close:hover,.close:focus{color:black;text-decoration:none;cursor:pointer}.footer{display:flex}.resize{cursor:nwse-resize;position:absolute;bottom:0.125rem;right:0.125rem}.resize-cursor{cursor:nwse-resize}";export{l as D}
@@ -0,0 +1 @@
1
+ import{r as t,e as i,h as r,g as e}from"./p-6834631c.js";import{c as s}from"./p-fe062eb0.js";import{b as a}from"./p-65f9817e.js";const o=class{constructor(r){t(this,r),this.valueChange=i(this,"valueChange",7),this.valueInput=i(this,"valueInput",7),this.handleChange=t=>{this.updateValueFromEvent(t),this.valueChange.emit({value:this.value,nativeEvent:t})},this.handleInput=t=>{this.updateValueFromEvent(t),this.valueInput.emit({value:this.value,nativeEvent:t})},this.min=0,this.max=100,this.valueLabelDisplay="off",this.step=void 0,this.size="sm",this.value=0,this.disabled=!1}render(){return r("vertex-tooltip",{disabled:"off"===this.valueLabelDisplay,content:`${this.value}`,placement:"top",class:"tooltip"},r("input",{class:s("input",{disabled:this.disabled},this.size),type:"range",disabled:this.disabled,min:this.min,max:this.max,step:this.step,value:this.value,onChange:this.handleChange,onInput:this.handleInput,onPointerUp:()=>{a(this.hostEl)}}))}updateValueFromEvent(t){this.value=t.target.valueAsNumber}get hostEl(){return e(this)}};o.style=':host{display:flex;--vertex-slider-track-color:var(--vertex-ui-neutral-400);--vertex-slider-thumb-color:var(--vertex-ui-blue-700)}:host([size="sm"]){height:12px}:host([size="md"]){height:14px}:host([size="lg"]){height:16px}.input{-webkit-appearance:none;width:100%;height:100%;background:transparent;margin:0}.input:not(.disabled){cursor:pointer}.input.sm{height:12px}.input.md{height:14px}.input.lg{height:16px}.input.disabled{opacity:0.5}.tooltip{width:100%}.input::-webkit-slider-runnable-track{width:100%;height:2px;cursor:default;background:var(--vertex-slider-track-color);border-radius:1px}.input::-moz-range-track{width:100%;height:2px;cursor:default;background:var(--vertex-slider-track-color);border-radius:1px}.input::-ms-track{width:100%;height:2px;cursor:default;background:var(--vertex-slider-track-color);border-radius:1px}.input:not(.disabled)::-webkit-slider-runnable-track{cursor:pointer}.input:not(.disabled)::-moz-range-track{cursor:pointer}.input:not(.disabled)::-ms-track{cursor:pointer}.input.sm::-webkit-slider-thumb{height:12px;width:12px;margin-top:-5px}.input.sm::-moz-range-thumb{height:12px;width:12px;margin-top:-5px}.input.sm::-ms-thumb{height:12px;width:12px;margin-top:-5px}.input.md::-webkit-slider-thumb{height:14px;width:14px;margin-top:-6px}.input.md::-moz-range-thumb{height:14px;width:14px;margin-top:-6px}.input.md::-ms-thumb{height:14px;width:14px;margin-top:-6px}.input.lg::-webkit-slider-thumb{height:16px;width:16px;margin-top:-7px}.input.lg::-moz-range-thumb{height:16px;width:16px;margin-top:-7px}.input.lg::-ms-thumb{height:16px;width:16px;margin-top:-7px}.input::-webkit-slider-thumb{-webkit-appearance:none;border-radius:50%;background:var(--vertex-slider-thumb-color);border:none;cursor:default}.input::-moz-range-thumb{-webkit-appearance:none;border-radius:50%;background:var(--vertex-slider-thumb-color);border:none;cursor:default}.input::-ms-thumb{-webkit-appearance:none;border-radius:50%;background:var(--vertex-slider-thumb-color);border:none;cursor:default}.input:not(.disabled)::-webkit-slider-thumb{cursor:grab}.input:not(.disabled)::-moz-range-thumb{cursor:grab}.input:not(.disabled)::-ms-thumb{cursor:grab}.input::-webkit-slider-thumb:active{cursor:grabbing;box-shadow:0 1px 2px var(--vertex-ui-black)}.input::-moz-range-thumb:active{cursor:grabbing;box-shadow:0 1px 2px var(--vertex-ui-black)}.input::-ms-thumb:active{cursor:grabbing;box-shadow:0 1px 2px var(--vertex-ui-black)}';export{o as S}
@@ -0,0 +1 @@
1
+ export{S as vertex_select}from"./p-4327deea.js";import"./p-6834631c.js";import"./p-fe062eb0.js";
@@ -0,0 +1 @@
1
+ export{T as vertex_tab}from"./p-96f55673.js";import"./p-6834631c.js";import"./p-fe062eb0.js";
@@ -0,0 +1 @@
1
+ export{C as vertex_color_picker}from"./p-655053df.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-3438c441.js";
@@ -0,0 +1 @@
1
+ const n=/^(#|0x)?([A-Fa-f0-9]{6})$/;function o(o){const t=null!=o?n.exec(o):void 0;return null!=t&&t.length>0}export{o as i}
@@ -1 +1 @@
1
- import{r as t,e as i,h as e,c as s,g as o}from"./p-6834631c.js";import{c as l}from"./p-fe062eb0.js";const a=class{constructor(e){t(this,e),this.optionChanged=i(this,"optionChanged",7),this.removeListeners=[],this.controlled=!1,this.value=void 0,this.placeholder="Select an option...",this.disabled=!1,this.animated=!0,this.hideSelected=!0,this.open=!1,this.position=void 0,this.displayValue=void 0,this.resizeObserverFactory=t=>new ResizeObserver(t),this.handleOpen=this.handleOpen.bind(this),this.handleDismiss=this.handleDismiss.bind(this),this.getBounds=this.getBounds.bind(this)}componentDidLoad(){var t;this.resizeObserver=this.resizeObserverFactory((()=>this.getBounds())),null!=this.rootRef&&this.resizeObserver.observe(this.rootRef),this.slotElement=(null===(t=this.hostElement.shadowRoot)||void 0===t?void 0:t.querySelector("slot"))||void 0,null!=this.value?this.handleUpdateValue(this.value):this.handleUpdateDisplayValue()}connectedCallback(){window.addEventListener("resize",this.getBounds)}disconnectedCallback(){var t;null===(t=this.resizeObserver)||void 0===t||t.disconnect(),window.removeEventListener("resize",this.getBounds),this.removeOptionListeners()}handleUpdateValue(t){null!=t&&t!==this.internalValue&&(this.internalValue=t,this.updateDisplayValue(t)),this.controlled=null!=t}handleUpdateDisplayValue(){var t;this.clearSelectedOptionFlag(),this.hideSelected&&(null===(t=this.getSelectedOption())||void 0===t||t.setAttribute("data-selected","true"))}render(){return e("div",{class:l("root",{disabled:this.disabled}),ref:t=>{this.rootRef=t},onClick:this.open||this.disabled?void 0:this.handleOpen},e("div",{class:l("target",{hidden:this.open,disabled:this.disabled})},e("div",{class:"text"},this.displayValue||this.placeholder),e("div",{class:"icon"},e("vertex-icon",{name:"chevron-down",size:"sm"}))),e("vertex-popover",{position:this.position,open:this.open,animated:this.animated,resizeBehavior:"fixed",onDismissed:this.handleDismiss},e("div",{class:l("options",{hidden:!this.open,visible:this.open,animated:this.animated}),style:{minWidth:null!=this.width?`${this.width}px`:"var(--select-width)"}},e("div",{class:l("selected-option",{disabled:this.disabled}),onClick:this.handleDismiss},e("div",{class:"text"},this.displayValue||this.placeholder),e("div",{class:"icon"},e("vertex-icon",{name:"chevron-down",size:"sm"}))),e("slot",null))))}handleOpen(){var t,i;null===(i=null===(t=this.slotElement)||void 0===t?void 0:t.assignedElements)||void 0===i||i.call(t).forEach((t=>{const i=()=>{var i;const e=t.getAttribute("data-value")||t.innerHTML,s=e!==this.internalValue;this.handleDismiss(),this.controlled||(this.displayValue=t.innerHTML,this.internalValue=e),s&&(null===(i=this.optionChanged)||void 0===i||i.emit(e))};t.addEventListener("click",i),this.removeListeners=[...this.removeListeners,()=>t.removeEventListener("click",i)]})),this.open=!0}handleDismiss(){this.removeOptionListeners(),this.open=!1}updateDisplayValue(t){var i,e;const s=null===(e=null===(i=this.slotElement)||void 0===i?void 0:i.assignedElements)||void 0===e?void 0:e.call(i).find((i=>i.getAttribute("data-value")===t||i.innerHTML===t));this.displayValue=null==s?void 0:s.innerHTML}removeOptionListeners(){this.removeListeners.forEach((t=>t())),this.removeListeners=[]}clearSelectedOptionFlag(){var t,i;null===(i=null===(t=this.slotElement)||void 0===t?void 0:t.assignedElements)||void 0===i||i.call(t).forEach((t=>t.removeAttribute("data-selected")))}getSelectedOption(){var t,i,e;const s=null!==(t=this.displayValue)&&void 0!==t?t:this.placeholder;return null===(e=null===(i=this.slotElement)||void 0===i?void 0:i.assignedElements)||void 0===e?void 0:e.call(i).find((t=>t.getAttribute("data-value")===s||t.innerHTML===s))}getBounds(){null!=this.getBoundsTimeout&&(clearTimeout(this.getBoundsTimeout),this.getBoundsTimeout=void 0),this.getBoundsTimeout=setTimeout((()=>{this.getBoundsTimeout=void 0,s((()=>{var t;const i=null===(t=this.rootRef)||void 0===t?void 0:t.getBoundingClientRect();null!=i&&(this.position={x:i.x,y:i.y},this.width=i.width)}))}),200)}get hostElement(){return o(this)}static get watchers(){return{value:["handleUpdateValue"],displayValue:["handleUpdateDisplayValue"],hideSelected:["handleUpdateDisplayValue"],placeholder:["handleUpdateDisplayValue"]}}};a.style=':host{--select-width:100%;--select-option-white-space:normal}.root{display:inline-block;color:var(--vertex-ui-neutral-700);width:var(--select-width);font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-base);overflow:hidden;user-select:none}.root:not(.disabled):hover{color:var(--vertex-ui-neutral-800)}.root.disabled{color:var(--vertex-ui-neutral-400)}.target,.selected-option{background-color:var(--vertex-ui-neutral-200);width:100%;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding:0.375rem 0.75rem 0.375rem 0.75rem}.target.hidden{box-shadow:0px 2px 4px -1px rgb(0 0 0 / 20%),\n 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%)}.selected-option.disabled,.target.disabled{background-color:var(--vertex-ui-neutral-100);cursor:default}.target{border-radius:4px}.text{white-space:var(--select-option-white-space);overflow:hidden;text-overflow:ellipsis}.icon{padding-left:1rem;margin-left:auto}.options{position:relative;cursor:pointer;background-color:var(--vertex-ui-white);border-radius:4px;padding:0.25rem 0;top:-0.25rem;box-shadow:0px 2px 4px -1px rgb(0 0 0 / 20%),\n 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%)}.options.animated{transition:opacity 0.1s ease-in 0.05s;opacity:0}.options.hidden{background-color:transparent}.options.visible{opacity:1}.options>*,.options>slot::slotted(*){padding:0.375rem 0.75rem 0.375rem 0.75rem}.options.hidden>*,.options.hidden>slot::slotted(*){opacity:0}.options>slot::slotted(:hover){background-color:var(--vertex-ui-neutral-200)}.options>slot::slotted([data-selected="true"]){display:none}vertex-popover{--transform-origin:top left;--open-animation-name:open-scale-y;--close-animation-name:close-scale-y}';export{a as S}
1
+ import{r as t,e as i,h as e,c as s,g as o}from"./p-6834631c.js";import{c as a}from"./p-fe062eb0.js";const l=class{constructor(e){t(this,e),this.optionChanged=i(this,"optionChanged",7),this.removeListeners=[],this.controlled=!1,this.value=void 0,this.placeholder="Select an option...",this.disabled=!1,this.animated=!0,this.hideSelected=!0,this.open=!1,this.position=void 0,this.displayValue=void 0,this.resizeObserverFactory=t=>new ResizeObserver(t),this.handleOpen=this.handleOpen.bind(this),this.handleDismiss=this.handleDismiss.bind(this),this.getBounds=this.getBounds.bind(this)}componentDidLoad(){var t;this.resizeObserver=this.resizeObserverFactory((()=>this.getBounds())),null!=this.rootRef&&this.resizeObserver.observe(this.rootRef),this.slotElement=(null===(t=this.hostElement.shadowRoot)||void 0===t?void 0:t.querySelector("slot"))||void 0,null!=this.value?this.handleUpdateValue(this.value):this.handleUpdateDisplayValue()}connectedCallback(){window.addEventListener("resize",this.getBounds)}disconnectedCallback(){var t;null===(t=this.resizeObserver)||void 0===t||t.disconnect(),window.removeEventListener("resize",this.getBounds),this.removeOptionListeners()}handleUpdateValue(t){null!=t&&t!==this.internalValue&&(this.internalValue=t,this.updateDisplayValue(t)),this.controlled=null!=t}handleUpdateDisplayValue(){var t;this.clearSelectedOptionFlag(),this.hideSelected&&(null===(t=this.getSelectedOption())||void 0===t||t.setAttribute("data-selected","true"))}render(){return e("div",{class:a("root",{disabled:this.disabled}),ref:t=>{this.rootRef=t},onClick:this.open||this.disabled?void 0:this.handleOpen},e("div",{class:a("target",{hidden:this.open,disabled:this.disabled})},e("div",{class:"text"},this.displayValue||this.placeholder),e("div",{class:"icon"},e("vertex-icon",{name:"chevron-down",size:"sm"}))),e("vertex-popover",{position:this.position,open:this.open,animated:this.animated,resizeBehavior:"fixed",onDismissed:this.handleDismiss},e("div",{class:a("options",{hidden:!this.open,visible:this.open,animated:this.animated}),style:{minWidth:null!=this.width?`${this.width}px`:"var(--select-width)"}},e("div",{class:a("selected-option",{disabled:this.disabled}),onClick:this.handleDismiss},e("div",{class:"text"},this.displayValue||this.placeholder),e("div",{class:"icon"},e("vertex-icon",{name:"chevron-down",size:"sm"}))),e("slot",null))))}handleOpen(){var t,i;null===(i=null===(t=this.slotElement)||void 0===t?void 0:t.assignedElements)||void 0===i||i.call(t).forEach((t=>{const i=()=>{var i;const e=t.getAttribute("data-value")||t.innerHTML,s=e!==this.internalValue;this.handleDismiss(),this.controlled||(this.displayValue=t.innerHTML,this.internalValue=e),s&&(null===(i=this.optionChanged)||void 0===i||i.emit(e))};t.addEventListener("click",i),this.removeListeners=[...this.removeListeners,()=>t.removeEventListener("click",i)]})),this.open=!0}handleDismiss(){this.removeOptionListeners(),this.open=!1}updateDisplayValue(t){var i,e;const s=null===(e=null===(i=this.slotElement)||void 0===i?void 0:i.assignedElements)||void 0===e?void 0:e.call(i).find((i=>i.getAttribute("data-value")===t||i.innerHTML===t));this.displayValue=null==s?void 0:s.innerHTML}removeOptionListeners(){this.removeListeners.forEach((t=>t())),this.removeListeners=[]}clearSelectedOptionFlag(){var t,i;null===(i=null===(t=this.slotElement)||void 0===t?void 0:t.assignedElements)||void 0===i||i.call(t).forEach((t=>t.removeAttribute("data-selected")))}getSelectedOption(){var t,i,e;const s=null!==(t=this.displayValue)&&void 0!==t?t:this.placeholder;return null===(e=null===(i=this.slotElement)||void 0===i?void 0:i.assignedElements)||void 0===e?void 0:e.call(i).find((t=>t.getAttribute("data-value")===s||t.innerHTML===s))}getBounds(){null!=this.getBoundsTimeout&&(clearTimeout(this.getBoundsTimeout),this.getBoundsTimeout=void 0),this.getBoundsTimeout=setTimeout((()=>{this.getBoundsTimeout=void 0,s((()=>{var t;const i=null===(t=this.rootRef)||void 0===t?void 0:t.getBoundingClientRect();null!=i&&(this.position={x:i.x,y:i.y},this.width=i.width)}))}),200)}get hostElement(){return o(this)}static get watchers(){return{value:["handleUpdateValue"],displayValue:["handleUpdateDisplayValue"],hideSelected:["handleUpdateDisplayValue"],placeholder:["handleUpdateDisplayValue"]}}};l.style=':host{--select-width:100%;--select-option-white-space:normal;--max-dropdown-height:80vh}.root{display:inline-block;color:var(--vertex-ui-neutral-700);width:var(--select-width);font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-base);overflow:hidden;user-select:none}.root:not(.disabled):hover{color:var(--vertex-ui-neutral-800)}.root.disabled{color:var(--vertex-ui-neutral-400)}.target,.selected-option{background-color:var(--vertex-ui-neutral-200);width:100%;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding:0.375rem 0.75rem 0.375rem 0.75rem}.target.hidden{box-shadow:0px 2px 4px -1px rgb(0 0 0 / 20%),\n 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%)}.selected-option.disabled,.target.disabled{background-color:var(--vertex-ui-neutral-100);cursor:default}.target{border-radius:4px}.text{white-space:var(--select-option-white-space);overflow:hidden;text-overflow:ellipsis}.icon{padding-left:1rem;margin-left:auto}.options{position:relative;cursor:pointer;background-color:var(--vertex-ui-white);border-radius:4px;padding:0.25rem 0;top:-0.25rem;box-shadow:0px 2px 4px -1px rgb(0 0 0 / 20%),\n 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);max-height:var(--max-dropdown-height);overflow-y:auto}.options.animated{transition:opacity 0.1s ease-in 0.05s;opacity:0}.options.hidden{background-color:transparent}.options.visible{opacity:1}.options>*,.options>slot::slotted(*){padding:0.375rem 0.75rem 0.375rem 0.75rem}.options.hidden>*,.options.hidden>slot::slotted(*){opacity:0}.options>slot::slotted(:hover){background-color:var(--vertex-ui-neutral-200)}.options>slot::slotted([data-selected="true"]){display:none}vertex-popover{--transform-origin:top left;--open-animation-name:open-scale-y;--close-animation-name:close-scale-y}';export{l as S}
@@ -0,0 +1 @@
1
+ import{r as t,h as n,H as r,g as e}from"./p-6834631c.js";import{_ as i,a as o}from"./p-59032668.js";import{c as u}from"./p-fe062eb0.js";import{g as s}from"./p-65f9817e.js";import{a}from"./p-b2c7b113.js";var c;c=Error,i((function t(n){var r=c.call(this,"Validation error mapping object.")||this;return r.errors=n,Object.setPrototypeOf(r,t.prototype),r}),c);var f,h="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},l={exports:{}};!function(t,n){var r="__lodash_hash_undefined__",e=9007199254740991,i="[object Arguments]",o="[object Array]",u="[object Boolean]",s="[object Date]",a="[object Error]",c="[object Function]",f="[object Map]",l="[object Number]",v="[object Object]",d="[object Promise]",p="[object RegExp]",b="[object Set]",y="[object String]",g="[object WeakMap]",m="[object ArrayBuffer]",j="[object DataView]",w=/^\[object .+?Constructor\]$/,x=/^(?:0|[1-9]\d*)$/,_={};_["[object Float32Array]"]=_["[object Float64Array]"]=_["[object Int8Array]"]=_["[object Int16Array]"]=_["[object Int32Array]"]=_["[object Uint8Array]"]=_["[object Uint8ClampedArray]"]=_["[object Uint16Array]"]=_["[object Uint32Array]"]=!0,_[i]=_[o]=_[m]=_[u]=_[j]=_[s]=_[a]=_[c]=_[f]=_[l]=_[v]=_[p]=_[b]=_[y]=_[g]=!1;var B="object"==typeof h&&h&&h.Object===Object&&h,I="object"==typeof self&&self&&self.Object===Object&&self,C=B||I||Function("return this")(),O=n&&!n.nodeType&&n,E=O&&t&&!t.nodeType&&t,A=E&&E.exports===O,P=A&&B.process,S=function(){try{return P&&P.binding&&P.binding("util")}catch(t){}}(),$=S&&S.isTypedArray;function k(t,n){for(var r=-1,e=null==t?0:t.length;++r<e;)if(n(t[r],r,t))return!0;return!1}function T(t){var n=-1,r=Array(t.size);return t.forEach((function(t,e){r[++n]=[e,t]})),r}function D(t){var n=-1,r=Array(t.size);return t.forEach((function(t){r[++n]=t})),r}var M,U,F,L=Array.prototype,V=Object.prototype,R=C["__core-js_shared__"],N=Function.prototype.toString,W=V.hasOwnProperty,z=(M=/[^.]+$/.exec(R&&R.keys&&R.keys.IE_PROTO||""))?"Symbol(src)_1."+M:"",G=V.toString,H=RegExp("^"+N.call(W).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),q=A?C.Buffer:void 0,J=C.Symbol,K=C.Uint8Array,Q=V.propertyIsEnumerable,X=L.splice,Y=J?J.toStringTag:void 0,Z=Object.getOwnPropertySymbols,tt=q?q.isBuffer:void 0,nt=(U=Object.keys,F=Object,function(t){return U(F(t))}),rt=Ot(C,"DataView"),et=Ot(C,"Map"),it=Ot(C,"Promise"),ot=Ot(C,"Set"),ut=Ot(C,"WeakMap"),st=Ot(Object,"create"),at=St(rt),ct=St(et),ft=St(it),ht=St(ot),lt=St(ut),vt=J?J.prototype:void 0,dt=vt?vt.valueOf:void 0;function pt(t){var n=-1,r=null==t?0:t.length;for(this.clear();++n<r;){var e=t[n];this.set(e[0],e[1])}}function bt(t){var n=-1,r=null==t?0:t.length;for(this.clear();++n<r;){var e=t[n];this.set(e[0],e[1])}}function yt(t){var n=-1,r=null==t?0:t.length;for(this.clear();++n<r;){var e=t[n];this.set(e[0],e[1])}}function gt(t){var n=-1,r=null==t?0:t.length;for(this.__data__=new yt;++n<r;)this.add(t[n])}function mt(t){var n=this.__data__=new bt(t);this.size=n.size}function jt(t,n){for(var r=t.length;r--;)if($t(t[r][0],n))return r;return-1}function wt(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":Y&&Y in Object(t)?function(t){var n=W.call(t,Y),r=t[Y];try{t[Y]=void 0;var e=!0}catch(t){}var i=G.call(t);return e&&(n?t[Y]=r:delete t[Y]),i}(t):function(t){return G.call(t)}(t)}function xt(t){return Lt(t)&&wt(t)==i}function _t(t,n,r,e,c){return t===n||(null==t||null==n||!Lt(t)&&!Lt(n)?t!=t&&n!=n:function(t,n,r,e,c,h){var d=Tt(t),g=Tt(n),w=d?o:At(t),x=g?o:At(n),_=(w=w==i?v:w)==v,B=(x=x==i?v:x)==v,I=w==x;if(I&&Dt(t)){if(!Dt(n))return!1;d=!0,_=!1}if(I&&!_)return h||(h=new mt),d||Vt(t)?Bt(t,n,r,e,c,h):function(t,n,r,e,i,o,c){switch(r){case j:if(t.byteLength!=n.byteLength||t.byteOffset!=n.byteOffset)return!1;t=t.buffer,n=n.buffer;case m:return!(t.byteLength!=n.byteLength||!o(new K(t),new K(n)));case u:case s:case l:return $t(+t,+n);case a:return t.name==n.name&&t.message==n.message;case p:case y:return t==n+"";case f:var h=T;case b:if(h||(h=D),t.size!=n.size&&!(1&e))return!1;var v=c.get(t);if(v)return v==n;e|=2,c.set(t,n);var d=Bt(h(t),h(n),e,i,o,c);return c.delete(t),d;case"[object Symbol]":if(dt)return dt.call(t)==dt.call(n)}return!1}(t,n,w,r,e,c,h);if(!(1&r)){var C=_&&W.call(t,"__wrapped__"),O=B&&W.call(n,"__wrapped__");if(C||O){var E=C?t.value():t,A=O?n.value():n;return h||(h=new mt),c(E,A,r,e,h)}}return!!I&&(h||(h=new mt),function(t,n,r,e,i,o){var u=1&r,s=It(t),a=s.length;if(a!=It(n).length&&!u)return!1;for(var c=a;c--;){var f=s[c];if(!(u?f in n:W.call(n,f)))return!1}var h=o.get(t);if(h&&o.get(n))return h==n;var l=!0;o.set(t,n),o.set(n,t);for(var v=u;++c<a;){var d=t[f=s[c]],p=n[f];if(e)var b=u?e(p,d,f,n,t,o):e(d,p,f,t,n,o);if(!(void 0===b?d===p||i(d,p,r,e,o):b)){l=!1;break}v||(v="constructor"==f)}if(l&&!v){var y=t.constructor,g=n.constructor;y==g||!("constructor"in t)||!("constructor"in n)||"function"==typeof y&&y instanceof y&&"function"==typeof g&&g instanceof g||(l=!1)}return o.delete(t),o.delete(n),l}(t,n,r,e,c,h))}(t,n,r,e,_t,c))}function Bt(t,n,r,e,i,o){var u=1&r,s=t.length,a=n.length;if(s!=a&&!(u&&a>s))return!1;var c=o.get(t);if(c&&o.get(n))return c==n;var f=-1,h=!0,l=2&r?new gt:void 0;for(o.set(t,n),o.set(n,t);++f<s;){var v=t[f],d=n[f];if(e)var p=u?e(d,v,f,n,t,o):e(v,d,f,t,n,o);if(void 0!==p){if(p)continue;h=!1;break}if(l){if(!k(n,(function(t,n){if(!l.has(n)&&(v===t||i(v,t,r,e,o)))return l.push(n)}))){h=!1;break}}else if(v!==d&&!i(v,d,r,e,o)){h=!1;break}}return o.delete(t),o.delete(n),h}function It(t){return function(t,n,r){var e=n(t);return Tt(t)?e:function(t,n){for(var r=-1,e=n.length,i=t.length;++r<e;)t[i+r]=n[r];return t}(e,r(t))}(t,Rt,Et)}function Ct(t,n){var r,e,i=t.__data__;return("string"==(e=typeof(r=n))||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==r:null===r)?i["string"==typeof n?"string":"hash"]:i.map}function Ot(t,n){var r=function(t,n){return null==t?void 0:t[n]}(t,n);return function(t){return!(!Ft(t)||function(t){return!!z&&z in t}(t))&&(Mt(t)?H:w).test(St(t))}(r)?r:void 0}pt.prototype.clear=function(){this.__data__=st?st(null):{},this.size=0},pt.prototype.delete=function(t){var n=this.has(t)&&delete this.__data__[t];return this.size-=n?1:0,n},pt.prototype.get=function(t){var n=this.__data__;if(st){var e=n[t];return e===r?void 0:e}return W.call(n,t)?n[t]:void 0},pt.prototype.has=function(t){var n=this.__data__;return st?void 0!==n[t]:W.call(n,t)},pt.prototype.set=function(t,n){var e=this.__data__;return this.size+=this.has(t)?0:1,e[t]=st&&void 0===n?r:n,this},bt.prototype.clear=function(){this.__data__=[],this.size=0},bt.prototype.delete=function(t){var n=this.__data__,r=jt(n,t);return!(r<0||(r==n.length-1?n.pop():X.call(n,r,1),--this.size,0))},bt.prototype.get=function(t){var n=this.__data__,r=jt(n,t);return r<0?void 0:n[r][1]},bt.prototype.has=function(t){return jt(this.__data__,t)>-1},bt.prototype.set=function(t,n){var r=this.__data__,e=jt(r,t);return e<0?(++this.size,r.push([t,n])):r[e][1]=n,this},yt.prototype.clear=function(){this.size=0,this.__data__={hash:new pt,map:new(et||bt),string:new pt}},yt.prototype.delete=function(t){var n=Ct(this,t).delete(t);return this.size-=n?1:0,n},yt.prototype.get=function(t){return Ct(this,t).get(t)},yt.prototype.has=function(t){return Ct(this,t).has(t)},yt.prototype.set=function(t,n){var r=Ct(this,t),e=r.size;return r.set(t,n),this.size+=r.size==e?0:1,this},gt.prototype.add=gt.prototype.push=function(t){return this.__data__.set(t,r),this},gt.prototype.has=function(t){return this.__data__.has(t)},mt.prototype.clear=function(){this.__data__=new bt,this.size=0},mt.prototype.delete=function(t){var n=this.__data__,r=n.delete(t);return this.size=n.size,r},mt.prototype.get=function(t){return this.__data__.get(t)},mt.prototype.has=function(t){return this.__data__.has(t)},mt.prototype.set=function(t,n){var r=this.__data__;if(r instanceof bt){var e=r.__data__;if(!et||e.length<199)return e.push([t,n]),this.size=++r.size,this;r=this.__data__=new yt(e)}return r.set(t,n),this.size=r.size,this};var Et=Z?function(t){return null==t?[]:(t=Object(t),function(n){for(var r=-1,e=null==n?0:n.length,i=0,o=[];++r<e;){var u=n[r];Q.call(t,u)&&(o[i++]=u)}return o}(Z(t)))}:function(){return[]},At=wt;function Pt(t,n){return!!(n=null==n?e:n)&&("number"==typeof t||x.test(t))&&t>-1&&t%1==0&&t<n}function St(t){if(null!=t){try{return N.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function $t(t,n){return t===n||t!=t&&n!=n}(rt&&At(new rt(new ArrayBuffer(1)))!=j||et&&At(new et)!=f||it&&At(it.resolve())!=d||ot&&At(new ot)!=b||ut&&At(new ut)!=g)&&(At=function(t){var n=wt(t),r=n==v?t.constructor:void 0,e=r?St(r):"";if(e)switch(e){case at:return j;case ct:return f;case ft:return d;case ht:return b;case lt:return g}return n});var kt=xt(function(){return arguments}())?xt:function(t){return Lt(t)&&W.call(t,"callee")&&!Q.call(t,"callee")},Tt=Array.isArray,Dt=tt||function(){return!1};function Mt(t){if(!Ft(t))return!1;var n=wt(t);return n==c||"[object GeneratorFunction]"==n||"[object AsyncFunction]"==n||"[object Proxy]"==n}function Ut(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=e}function Ft(t){var n=typeof t;return null!=t&&("object"==n||"function"==n)}function Lt(t){return null!=t&&"object"==typeof t}var Vt=$?function(t){return function(n){return t(n)}}($):function(t){return Lt(t)&&Ut(t.length)&&!!_[wt(t)]};function Rt(t){return null!=(n=t)&&Ut(n.length)&&!Mt(n)?function(t,n){var r=Tt(t),e=!r&&kt(t),i=!r&&!e&&Dt(t),o=!r&&!e&&!i&&Vt(t),u=r||e||i||o,s=u?function(t,n){for(var r=-1,e=Array(t);++r<t;)e[r]=n(r);return e}(t.length,String):[],a=s.length;for(var c in t)!n&&!W.call(t,c)||u&&("length"==c||i&&("offset"==c||"parent"==c)||o&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||Pt(c,a))||s.push(c);return s}(t):function(t){if((n=t)!==("function"==typeof(r=n&&n.constructor)&&r.prototype||V))return nt(t);var n,r,e=[];for(var i in Object(t))W.call(t,i)&&"constructor"!=i&&e.push(i);return e}(t);var n}t.exports=function(t,n){return _t(t,n)}}(l,l.exports);var v=new Uint8Array(16);function d(){if(!f&&!(f="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return f(v)}var p=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function b(t){return"string"==typeof t&&p.test(t)}for(var y=[],g=0;g<256;++g)y.push((g+256).toString(16).substr(1));function m(t,n,r){var e=(t=t||{}).random||(t.rng||d)();if(e[6]=15&e[6]|64,e[8]=63&e[8]|128,n){r=r||0;for(var i=0;i<16;++i)n[r+i]=e[i];return n}return function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=(y[t[n+0]]+y[t[n+1]]+y[t[n+2]]+y[t[n+3]]+"-"+y[t[n+4]]+y[t[n+5]]+"-"+y[t[n+6]]+y[t[n+7]]+"-"+y[t[n+8]]+y[t[n+9]]+"-"+y[t[n+10]]+y[t[n+11]]+y[t[n+12]]+y[t[n+13]]+y[t[n+14]]+y[t[n+15]]).toLowerCase();if(!b(r))throw TypeError("Stringified UUID is invalid");return r}(e)}var j=Object.freeze({__proto__:null,create:function(){return m()},fromMsbLsb:function(t,n){function r(t,n){var r=BigInt(1)<<n*BigInt(4);return(r|t&r-BigInt(1)).toString(16).substring(1)}var e="string"==typeof t?BigInt(t):t,i="string"==typeof n?BigInt(n):n,o=r(e>>BigInt(32),BigInt(8)),u=r(e>>BigInt(16),BigInt(4)),s=r(e,BigInt(4)),a=r(i>>BigInt(48),BigInt(4)),c=r(i,BigInt(12));return"".concat(o,"-").concat(u,"-").concat(s,"-").concat(a,"-").concat(c)},toMsbLsb:function(t){var n=o(t.split("-"),5),r=n[0],e=n[1],i=n[2],u=n[3],s=n[4];if(null==r||null==e||null==i||null==u||null==s)throw new Error("Invalid UUID string ".concat(t));var a=BigInt.asIntN(64,BigInt("0x".concat(r+e+i))),c=BigInt.asIntN(64,BigInt("0x".concat(u+s)));return{msb:a.toString(),lsb:c.toString()}}});const w=class{constructor(n){t(this,n),this.pointerEntered=!1,this.content=void 0,this.disabled=void 0,this.placement="bottom",this.delay=500,this.animated=!0,this.open=!1,this.handlePointerEnter=this.handlePointerEnter.bind(this),this.handlePointerLeave=this.handlePointerLeave.bind(this),this.handleContentChange=this.handleContentChange.bind(this),this.handleDisabledChange=this.handleDisabledChange.bind(this),this.tooltipId=`vertex-tooltip-${j.create()}`}disconnectedCallback(){this.removeElement(),this.clearOpenTimeout(),this.pointerEntered=!1}handleContentChange(){null!=this.internalContentElement&&this.updateContentElementChildren(this.internalContentElement)}handleDisabledChange(){null!=this.internalContentElement&&this.updateContentElementClass(this.internalContentElement),!this.disabled&&this.pointerEntered&&this.handlePointerEnter()}render(){return n(r,null,n("div",{class:"target",ref:t=>{this.targetElement=t},onPointerEnter:this.handlePointerEnter,onPointerLeave:this.handlePointerLeave},n("slot",null)),n("div",{class:"content-hidden",ref:t=>{this.contentElement=t}},n("slot",{name:"content",onSlotchange:this.handleContentChange})))}addElement(){if(null!=this.targetElement){const t=this.createPopoverElement(this.targetElement),n=this.createContentElement();this.updateContentElementChildren(n),t.appendChild(n),this.hostElement.ownerDocument.body.appendChild(t)}}removeElement(){const t=this.hostElement.ownerDocument.getElementById(this.tooltipId);null!=t&&t.remove(),this.internalContentElement=void 0}createPopoverElement(t){const n=this.hostElement.ownerDocument.createElement("vertex-popover");return n.id=this.tooltipId,n.setAttribute("class","vertex-tooltip-popover"),n.open=this.open,n.resizeBehavior="fixed",n.backdrop=!1,n.placement=this.placement,n.animated=this.animated,n.anchorBounds=s(t),n}createContentElement(){return this.internalContentElement=this.hostElement.ownerDocument.createElement("div"),this.internalContentElement.setAttribute("class",u("vertex-tooltip-content",{hidden:!this.open||this.disabled})),this.internalContentElement}updateContentElementClass(t){t.setAttribute("class",u("vertex-tooltip-content",{hidden:!this.open||this.disabled}))}updateContentElementChildren(t){var n;this.displayedSlottedContent=null!==(n=a(this.contentElement))&&void 0!==n?n:this.displayedSlottedContent,null!=this.content?t.innerText=this.content:null!=this.displayedSlottedContent&&t.appendChild(this.displayedSlottedContent)}handlePointerEnter(){null!=this.openTimeout||this.disabled?null==this.openTimeout&&(this.pointerEntered=!0):this.createOpenTimeout()}handlePointerLeave(){this.clearOpenTimeout(),this.removeElement(),this.open=!1,this.pointerEntered=!1}createOpenTimeout(){this.openTimeout=setTimeout((()=>{this.open=!0,this.openTimeout=void 0,this.addElement()}),this.delay),this.pointerEntered=!1}clearOpenTimeout(){null!=this.openTimeout&&(clearTimeout(this.openTimeout),this.openTimeout=void 0)}get hostElement(){return e(this)}static get watchers(){return{content:["handleContentChange"],disabled:["handleDisabledChange"]}}};w.style=":host{--tooltip-width:auto;--tooltip-white-space:normal;display:flex}.popover{width:100%;height:100%}.target{display:flex;width:100%;height:100%}.content-hidden{display:none}.tooltip{display:flex;justify-content:center;text-align:center;width:var(--tooltip-width);font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-xxs);background-color:var(--vertex-ui-neutral-700);color:var(--vertex-ui-white);padding:0.25rem 0.5rem;border-radius:4px;pointer-events:none;white-space:var(--tooltip-white-space);user-select:none}.tooltip.hidden{display:none}";export{w as T}
@@ -0,0 +1 @@
1
+ import{r as t,e as i,h as e,H as o,g as s}from"./p-6834631c.js";import{c as l}from"./p-fe062eb0.js";import{r as n,g as a}from"./p-65f9817e.js";function r(t){return"VERTEX-TAB"===t.tagName}const h=class{constructor(e){t(this,e),this.selectedTabChanged=i(this,"selectedTabChanged",7),this.indicatorInitialized=!1,this.handleLabelClick=t=>{null!=this.active&&this.updateActiveOnTab(this.active,!1),this.active=t,this.updateActiveOnTab(this.active,!0),this.selectedTabChanged.emit(t)},this.updateActiveOnTab=(t,i)=>{const e=this.findTabByLabel(t);null!=e&&(e.active=i)},this.findTabByLabel=t=>{var i;const e=(null===(i=this.hostEl.shadowRoot)||void 0===i?void 0:i.querySelector("slot:not([name])"))||void 0,o=null==e?void 0:e.assignedElements(),s=null!=o&&o.length>0?Array.from(o[0].children):void 0;return null!=s?s.filter(r).find((i=>i.label===t)):void 0},this.updateTabLabels=()=>{var t;const i=(null===(t=this.hostEl.shadowRoot)||void 0===t?void 0:t.querySelector("slot:not([name])"))||void 0,e=null==i?void 0:i.assignedElements(),o=null!=e&&e.length>0?Array.from(e[0].children):void 0;this.labels=null!=o?o.filter(r).map((t=>t.label)):[]},this.active=void 0,this.labels=[],this.activeBounds=void 0,this.activeButtonEl=void 0}componentWillLoad(){this.updateTabLabels()}componentDidLoad(){null!=this.active&&this.updateActiveOnTab(this.active,!0),this.indicatorInitialized=!1,this.handleActiveButtonChange()}componentDidUpdate(){this.indicatorInitialized||this.handleActiveButtonChange()}handleActiveButtonChange(){const t=this.activeButtonEl;null!=t&&n((()=>{const i=a(this.hostEl),e=a(t);this.activeBounds={x:e.x-i.x,width:e.width},0!==this.activeBounds.width&&(this.indicatorInitialized=!0)}))}render(){return e(o,null,e("div",{class:"wrapper"},e("div",{class:"labels"},this.labels.map((t=>e("button",{class:l("label",{active:this.active===t}),"data-label":t,ref:i=>{this.active===t&&(this.activeButtonEl=i)},onClick:()=>this.handleLabelClick(t)},t,e("div",{class:"hidden-label-text"},t)))),e("slot",{name:"label-header"}),this.activeBounds&&e("div",{class:"indicator",style:{left:`${this.activeBounds.x}px`,width:`${this.activeBounds.width}px`}})),e("div",{class:"tab-content"},e("slot",{onSlotchange:this.updateTabLabels}))))}get hostEl(){return s(this)}static get watchers(){return{activeButtonEl:["handleActiveButtonChange"]}}};h.style="button{border:none;background-color:transparent;font-family:var(--vertex-ui-font-family);font-size:0.875rem;padding:0}:host{display:flex;position:relative;width:100%;height:100%}.wrapper{display:flex;flex-direction:column;position:relative;height:100%;width:100%}.labels{display:flex;position:relative;border-bottom:solid 1px var(--vertex-ui-neutral-300)}.indicator{position:absolute;bottom:0;height:3px;background-color:var(--vertex-ui-blue-700);transition:left 0.2s ease-in-out}.label{position:relative;cursor:pointer;color:var(--vertex-ui-neutral-700);white-space:nowrap;font-family:var(--vertex-ui-font-family);font-size:var(--vertex-ui-text-md);padding:0.75rem 1.25rem}.label:not(.active):hover{color:var(--vertex-ui-neutral-800)}.label.active{color:var(--vertex-ui-blue-700);font-weight:var(--vertex-ui-font-weight-bold)}.hidden-label-text{font-weight:bold;visibility:hidden;height:0px}.tab-content{display:flex;height:5%;flex-grow:1}";export{h as T}
@@ -1 +1 @@
1
- import{r,h as o,H as e}from"./p-6834631c.js";import{c as i}from"./p-fe062eb0.js";import{g as a}from"./p-03dbb28c.js";const t=class{constructor(o){r(this,o),this.iconName=void 0,this.disabled=void 0,this.variant="default",this.iconColor="default",this.iconSize="md"}render(){return o(e,{onClick:r=>this.handleClick(r)},o("button",{ref:r=>this.buttonEl=r,disabled:this.disabled,class:i("container",{disabled:this.disabled,floating:"floating"===this.variant,plain:"plain"===this.variant,primary:"primary"===this.iconColor,secondary:"secondary"===this.iconColor})},o("slot",{name:"left"}),o("div",{class:i("icon-button",{xs:"xs"===this.iconSize,sm:"sm"===this.iconSize,md:"md"===this.iconSize,lg:"lg"===this.iconSize})},a(this.iconName),o("div",{class:"badge"},o("slot",{name:"badge"}))),o("slot",null)))}handleClick(r){var o;this.disabled&&(r.preventDefault(),r.stopPropagation()),null===(o=this.buttonEl)||void 0===o||o.blur()}};t.style="button{border:none;background-color:transparent;font-family:var(--vertex-ui-font-family);font-size:0.875rem;padding:0}:host{--enabled-cursor:pointer;--disabled-cursor:not-allowed;--hover-background-color:var(--vertex-ui-neutral-300);--active-background-color:var(--vertex-ui-neutral-400);--focus-background-color:var(--vertex-ui-neutral-400);--hover-box-shadow:0 2px 2px rgb(0 0 0 / 20%);--active-box-shadow:none;--focus-box-shadow:0 0 0 1px var(--vertex-ui-neutral-900);--icon-margin:0px}.container{display:flex;justify-content:center;align-items:center;outline:none;fill:currentColor;color:currentColor;cursor:var(--enabled-cursor)}.container:not(.plain){border-radius:4px;padding:0.25rem}.icon-button{display:flex;position:relative;justify-content:center;align-items:center;fill:currentColor;height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.icon-button svg{width:100%;height:100%;margin:var(--icon-margin, 0px)}.badge{position:absolute;top:0px;right:4px;justify-content:flex-end;align-items:flex-end}.floating{background-color:var(--vertex-ui-neutral-100);box-shadow:var(--vertex-ui-overlay-shadow);color:var(--vertex-ui-neutral-700);fill:var(--vertex-ui-neutral-700);opacity:0.95}.floating.disabled{color:var(--vertex-ui-neutral-400);cursor:var(--disabled-cursor)}.container:not(.disabled):not(.plain):hover{background-color:var(--hover-background-color);box-shadow:var(--hover-box-shadow)}.container:not(.disabled):not(.plain):active{background-color:var(--active-background-color);box-shadow:var(--active-box-shadow)}.container:not(.disabled):not(.plain):focus-visible{background-color:var(--focus-background-color);box-shadow:var(--focus-box-shadow);color:var(--vertex-ui-neutral-900)}.container.disabled:not(.floating){cursor:var(--disabled-cursor);color:var(--vertex-ui-neutral-400)}.container.primary:not(.disabled){color:var(--vertex-ui-blue-700)}.container.secondary:not(.disabled){color:var(--vertex-ui-neutral-800)}.xs{height:var(--icon-size, 0.75rem);width:var(--icon-size, 0.75rem)}.sm{height:var(--icon-size, 1rem);width:var(--icon-size, 1rem)}.md{height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.lg{height:var(--icon-size, 2rem);width:var(--icon-size, 2rem)}";export{t as I}
1
+ import{r,h as o,H as e}from"./p-6834631c.js";import{c as i}from"./p-fe062eb0.js";import{g as a}from"./p-6ff20817.js";const t=class{constructor(o){r(this,o),this.iconName=void 0,this.disabled=void 0,this.variant="default",this.iconColor="default",this.iconSize="md"}render(){return o(e,{onClick:r=>this.handleClick(r)},o("button",{ref:r=>this.buttonEl=r,disabled:this.disabled,class:i("container",{disabled:this.disabled,floating:"floating"===this.variant,plain:"plain"===this.variant,primary:"primary"===this.iconColor,secondary:"secondary"===this.iconColor})},o("slot",{name:"left"}),o("div",{class:i("icon-button",{xs:"xs"===this.iconSize,sm:"sm"===this.iconSize,md:"md"===this.iconSize,lg:"lg"===this.iconSize})},a(this.iconName),o("div",{class:"badge"},o("slot",{name:"badge"}))),o("slot",null)))}handleClick(r){var o;this.disabled&&(r.preventDefault(),r.stopPropagation()),null===(o=this.buttonEl)||void 0===o||o.blur()}};t.style="button{border:none;background-color:transparent;font-family:var(--vertex-ui-font-family);font-size:0.875rem;padding:0}:host{--enabled-cursor:pointer;--disabled-cursor:not-allowed;--hover-background-color:var(--vertex-ui-neutral-300);--active-background-color:var(--vertex-ui-neutral-400);--focus-background-color:var(--vertex-ui-neutral-400);--hover-box-shadow:0 2px 2px rgb(0 0 0 / 20%);--active-box-shadow:none;--focus-box-shadow:0 0 0 1px var(--vertex-ui-neutral-900);--icon-margin:0px}.container{display:flex;justify-content:center;align-items:center;outline:none;fill:currentColor;color:currentColor;cursor:var(--enabled-cursor)}.container:not(.plain){border-radius:4px;padding:0.25rem}.icon-button{display:flex;position:relative;justify-content:center;align-items:center;fill:currentColor;height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.icon-button svg{width:100%;height:100%;margin:var(--icon-margin, 0px)}.badge{position:absolute;top:0px;right:4px;justify-content:flex-end;align-items:flex-end}.floating{background-color:var(--vertex-ui-neutral-100);box-shadow:var(--vertex-ui-overlay-shadow);color:var(--vertex-ui-neutral-700);fill:var(--vertex-ui-neutral-700);opacity:0.95}.floating.disabled{color:var(--vertex-ui-neutral-400);cursor:var(--disabled-cursor)}.container:not(.disabled):not(.plain):hover{background-color:var(--hover-background-color);box-shadow:var(--hover-box-shadow)}.container:not(.disabled):not(.plain):active{background-color:var(--active-background-color);box-shadow:var(--active-box-shadow)}.container:not(.disabled):not(.plain):focus-visible{background-color:var(--focus-background-color);box-shadow:var(--focus-box-shadow);color:var(--vertex-ui-neutral-900)}.container.disabled:not(.floating){cursor:var(--disabled-cursor);color:var(--vertex-ui-neutral-400)}.container.primary:not(.disabled){color:var(--vertex-ui-blue-700)}.container.secondary:not(.disabled){color:var(--vertex-ui-neutral-800)}.xs{height:var(--icon-size, 0.75rem);width:var(--icon-size, 0.75rem)}.sm{height:var(--icon-size, 1rem);width:var(--icon-size, 1rem)}.md{height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.lg{height:var(--icon-size, 2rem);width:var(--icon-size, 2rem)}";export{t as I}
@@ -0,0 +1 @@
1
+ import{r as e,e as t,h as i,H as r}from"./p-6834631c.js";import{c as s}from"./p-fe062eb0.js";import{i as l}from"./p-3438c441.js";const a=class{constructor(i){e(this,i),this.valueInput=t(this,"valueInput",7),this.valueChanged=t(this,"valueChanged",7),this.handleInput=e=>{this.value=e.target.value||""},this.handleChange=()=>{this.valueChanged.emit(this.value)},this.value=void 0,this.size="md",this.variant="full",this.disabled=!1}valueChange(){this.valueInput.emit(this.value)}render(){var e;return i(r,null,i("div",{class:s("wrapper",this.variant,this.size)},i("label",{class:s("color-picker",{disabled:this.disabled})},i("input",{type:"color",class:"input","data-testid":"input",disabled:this.disabled,value:this.value,onInput:this.handleInput,onChange:this.handleChange}),i("div",{class:s("selected-wrapper",this.variant)},i("div",{class:"selected",title:this.value},i("vertex-color-swatch",{class:"selected-color",supplementalColor:"var(--vertex-ui-neutral-400)",color:this.value,variant:"square",size:this.size},i("slot",{name:"overlay",slot:"overlay"},(null==this.value||""===this.value)&&i("svg",{class:"no-value",slot:"overlay",xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",viewBox:"0 0 16 16"},i("path",{d:"M16,0L0,16"}))))),"full"===this.variant&&i("div",{class:"text-wrapper"},i("div",{class:"hidden-text"},"#FFFFFF"),i("div",{class:"selected-text"},null!==(e=this.getDisplayedValue())&&void 0!==e?e:"Default")))),i("div",{class:"right-gutter"},i("slot",{name:"right-gutter"}))))}getDisplayedValue(){var e;if(null!=this.value&&l(this.value))return null===(e=this.value)||void 0===e?void 0:e.toLocaleUpperCase()}static get watchers(){return{value:["valueChange"]}}};a.style=':host{display:flex;--selected-color-width:initial;--selected-color-height:initial}.wrapper{display:inline-flex;align-items:center}.wrapper.full{padding:0.375rem 0.5rem;border:1px solid var(--vertex-ui-neutral-300);border-radius:4px}.color-picker{display:inline-flex;position:relative;cursor:pointer}.color-picker.disabled{opacity:0.5;cursor:default}.selected-wrapper{position:relative;display:flex;align-items:center}.wrapper.full .selected-wrapper{gap:0.75rem}.selected{position:relative}.wrapper.sm .selected{width:var(--selected-color-width, 1rem);height:var(--selected-color-height, 1rem)}.wrapper.md .selected{width:var(--selected-color-width, 1.25rem);height:var(--selected-color-height, 1.25rem)}.wrapper.lg .selected{width:var(--selected-color-width, 1.5rem);height:var(--selected-color-height, 1.5rem)}.text-wrapper{position:relative}.selected-text{position:absolute;left:0;top:0;right:0;bottom:0;display:flex;color:var(--vertex-ui-neutral-700);text-align:center;font-family:var(--vertex-ui-font-family)}.hidden-text{visibility:hidden;pointer-events:none;font-family:var(--vertex-ui-font-family-monospace)}.wrapper.sm .selected-text,.wrapper.sm .hidden-text{font-size:var(--vertex-ui-text-xs)}.wrapper.md .selected-text,.wrapper.md .hidden-text{font-size:var(--vertex-ui-text-xs)}.wrapper.lg .selected-text,.wrapper.lg .hidden-text{font-size:var(--vertex-ui-text-xs)}.no-value{width:100%;height:100%;stroke:var(--vertex-ui-red-400)}.right-gutter{display:flex;align-items:center;margin-left:auto}slot[name="right-gutter"]::slotted(*){padding:0}.input{display:flex;position:absolute;pointer-events:none;height:100%;width:100%;left:0;top:0;opacity:0}';export{a as C}
@@ -0,0 +1 @@
1
+ import{c as n}from"./p-6834631c.js";function o(o){n(o)}function r(n){return n.getBoundingClientRect()}function t(n){n.blur()}export{t as b,r as g,o as r}
@@ -0,0 +1 @@
1
+ export{S as vertex_search_bar}from"./p-6b6c2260.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-1356f525.js";import"./p-59032668.js";
@@ -0,0 +1 @@
1
+ import{r as e,e as t,h as r,H as i,g as s}from"./p-6834631c.js";import{c as a}from"./p-fe062eb0.js";import{g as n}from"./p-1356f525.js";var l=function e(t,r){if(t===r)return!0;if(t&&r&&"object"==typeof t&&"object"==typeof r){if(t.constructor!==r.constructor)return!1;var i,s,a;if(Array.isArray(t)){if((i=t.length)!=r.length)return!1;for(s=i;0!=s--;)if(!e(t[s],r[s]))return!1;return!0}if(t.constructor===RegExp)return t.source===r.source&&t.flags===r.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===r.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===r.toString();if((i=(a=Object.keys(t)).length)!==Object.keys(r).length)return!1;for(s=i;0!=s--;)if(!Object.prototype.hasOwnProperty.call(r,a[s]))return!1;for(s=i;0!=s--;){var n=a[s];if(!e(t[n],r[n]))return!1}return!0}return t!=t&&r!=r};const o=()=>{if("undefined"!=typeof window)return window.getSelection()},h=e=>e.hasChildNodes(),c=e=>new Text(e),d=()=>document.createElement("br"),u=e=>e instanceof HTMLElement,v=e=>`${e.type}:${e.id}`,b=(e,t,r)=>{const i=v(e);return{before:c(t),beforeSpace:c(p()),result:c(i),afterSpace:c(null!=r?f():p()),after:null!=r?c(r):void 0}},x=e=>{const t=e.textContent;if("\n"===t)return[d()];if(null!=t&&t.includes("\n")){const e=t.split("\n");return e.reduce(((t,r,i)=>""===r&&""!==e[i-1]?t:[...t,c(r.replace(/ /g,f())),d()]),[])}return[e]},p=()=>String.fromCharCode(8202),f=()=>String.fromCharCode(160),m=class{constructor(r){e(this,r),this.searchChanged=t(this,"searchChanged",7),this.inputChanged=t(this,"inputChanged",7),this.resultReplaced=t(this,"resultReplaced",7),this.inputFocus=t(this,"inputFocus",7),this.inputBlur=t(this,"inputBlur",7),this.rawElements=[],this.attemptReplaceElement=(e,t,r,i=!1)=>h(e)&&Array.from(e.childNodes).some((e=>h(e)||this.isIdenticalElement(e,t)))?Array.from(e.childNodes).reduce(((i,s)=>[...i,...this.attemptReplaceElement(s,t,r,!u(e.previousSibling))]),[]):this.isIdenticalElement(e,t)?((e,t=!1)=>{const r=Object.keys(e).map((t=>e[t])).filter((e=>null!=e));return t?[c("\n"),...r]:r})(r,i):[e],this.isIdenticalElement=(e,t)=>e===this.triggeredElement||this.getTextContent(e)===this.getTextContent(t),this.getTextContent=e=>{var t;return u(e)?e.innerText:null!==(t=e.textContent)&&void 0!==t?t:""},this.handleCursorPositionUpdate=()=>{var e,t;const r=null===(e=o())||void 0===e?void 0:e.getRangeAt(0);if(null!=r){const e=this.readTriggerValue(null!==(t=r.commonAncestorContainer.textContent)&&void 0!==t?t:"",r.startOffset);this.hasTriggered||null==e?this.hasTriggered&&null!=e?(this.triggeredRange=r,this.triggeredElement=r.commonAncestorContainer,this.searchChanged.emit(e.replace(this.triggerCharacter,""))):(this.hasTriggered=!1,this.triggeredRange=void 0,this.triggeredElement=void 0):(this.hasTriggered=!0,this.triggeredRange=r,this.triggeredElement=r.commonAncestorContainer,this.searchChanged.emit(e.replace(this.triggerCharacter,"")))}this.cursorPosition=this.getCursorPosition()},this.readTriggerValue=(e,t)=>{const r=e.replace(String.fromCharCode(160)," "),i=r.substring(0,t),s=r.substring(t),a=`${i.includes(this.triggerCharacter)?i.substring(i.lastIndexOf(this.triggerCharacter)):""}${s.substring(0,this.firstIndexOfBreakCharacter(s))}`;return a.includes(this.triggerCharacter)&&!this.includesBreakCharacter(a)?a:void 0},this.includesBreakCharacter=e=>this.breakCharacters.some((t=>e.includes(t))),this.firstIndexOfBreakCharacter=e=>{const t=this.breakCharacters.map((t=>e.indexOf(t))).filter((e=>e>=0));return t.length>0?Math.min(...t):e.length},this.moveCursorToNodeEnd=(e,t=!1)=>{const r=o();if(null!=r){const i=document.createRange();i.selectNodeContents(e),i.collapse(t),r.removeAllRanges(),r.addRange(i)}},this.getContentAsString=e=>null!=e?Array.from(e.childNodes).reduce(((e,t)=>{var r;const i=null==t.previousSibling||u(t.previousSibling);return u(t)&&"true"===t.getAttribute("data-replaced")?`${e}${t.getAttribute("data-original")}`:u(t)&&t.childElementCount>0?`${e}${i?"":"\n"}${this.getContentAsString(t)}`:t instanceof HTMLBRElement?`${e}\n`:u(t)?`${e}${i?"":"\n"}${t.innerText}\n`:`${e}${null!==(r=t.textContent)&&void 0!==r?r:""}`}),"").replace(/[\u200A]/g,"").replace(/[\u00A0]/g," "):"",this.createReplacedElement=(e,t)=>{const r=this.hostEl.querySelector('template[slot="replaced"]');if(null!=r){const i=n(r);return i.bindings.bind(t),i.element.id=t.id,i.element.style.display="inline-block",i.element.contentEditable="false",i.element.tabIndex=-1,i.element.setAttribute("data-replaced","true"),i.element.setAttribute("data-original",e),i.element}throw new Error("Replaced template not defined.")},this.variant="standard",this.disabled=!1,this.triggerCharacter="@",this.breakCharacters=[" ","\n"],this.resultItems=void 0,this.placement="bottom-start",this.value=void 0,this.placeholder=void 0,this.replacements=[],this.replacementUriType="user",this.cursorPosition=void 0,this.displayedElements=[],this.hasTriggered=!1,this.handleKeyDown=this.handleKeyDown.bind(this),this.handleKeyUp=this.handleKeyUp.bind(this),this.handleResultClick=this.handleResultClick.bind(this),this.handleClick=this.handleClick.bind(this),this.handleWindowClick=this.handleWindowClick.bind(this),this.handleInput=this.handleInput.bind(this),this.handleBlur=this.handleBlur.bind(this),this.handleFocus=this.handleFocus.bind(this),this.handleCursorPositionUpdate=this.handleCursorPositionUpdate.bind(this),this.updateContent=this.updateContent.bind(this),this.replaceContent=this.replaceContent.bind(this)}componentDidLoad(){this.replaceContent(this.value)}connectedCallback(){window.addEventListener("click",this.handleWindowClick)}disconnectedCallback(){window.removeEventListener("click",this.handleWindowClick)}replaceContent(e,t){if(null!=e&&e!==t){const t=e.match(new RegExp(`${this.replacementUriType}:[0-9a-z-]{36}`,"g")),r=this.replacements.reduce(((e,t)=>Object.assign(Object.assign({},e),{[v(t)]:t})),{});let i=e;const s=null!=t?null==t?void 0:t.reduce(((e,t)=>{if(null!=r[t]){const s=v(r[t]),a=i.indexOf(s),n=i.substring(0,a),l=i.substring(a+s.length),o=b(r[t],n);return i=l,[...e,o.before,o.beforeSpace,o.result,o.afterSpace]}return e}),[]):[];this.rawElements=[...s,c(i)].reduce(((e,t)=>[...e,...x(t)]),[]),this.updateContent(this.replacements)}}updateContent(e,t){null==this.contentEl||l(e,t)||(this.contentEl.innerHTML="",this.displayedElements=this.rawElements.map((e=>{const t=u(e)?e.innerText:e.textContent,r=this.replacements.find((e=>null==t?void 0:t.includes(v(e))));return null!=t&&null!=r?this.createReplacedElement(t,r):e})),this.displayedElements.forEach((e=>{var t;null===(t=this.contentEl)||void 0===t||t.appendChild("string"==typeof e?c(e):e)})),null!=this.lastReplacedSpace&&this.moveCursorToNodeEnd(this.lastReplacedSpace),this.inputChanged.emit(this.getContentAsString(this.contentEl)))}render(){var e;const t=a("wrapper",{standard:"standard"===this.variant,filled:"filled"===this.variant,underlined:"underlined"===this.variant,blank:"blank"===this.variant,disabled:this.disabled});return r(i,null,r("div",{class:t},r("span",{class:"content-input",role:"textbox",contentEditable:"true","aria-multiline":"true","data-placeholder":this.placeholder,ref:e=>this.contentEl=e,onKeyDown:this.handleKeyDown,onKeyUp:this.handleKeyUp,onClick:this.handleCursorPositionUpdate,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur})),r("vertex-result-list",{position:this.cursorPosition,placement:this.placement,open:this.hasTriggered&&null!=this.resultItems&&this.resultItems.length>0,items:null!==(e=this.resultItems)&&void 0!==e?e:[],onEnterPressed:this.handleResultClick,onResultClick:this.handleResultClick},r("slot",{name:"results"})),r("slot",{name:"replaced"}))}handleKeyDown(e){this.hasTriggered&&this.breakCharacters.includes(e.key)&&(this.hasTriggered=!1,this.triggeredRange=void 0,this.triggeredElement=void 0)}handleKeyUp(e){this.handleCursorPositionUpdate(),this.cursorPosition=this.getCursorPosition()}async handleInput(){this.inputChanged.emit(this.getContentAsString(this.contentEl))}handleClick(){this.handleCursorPositionUpdate()}handleWindowClick(e){u(e.target)&&"true"===e.target.getAttribute("data-replaced")&&null!=e.target.nextSibling&&this.moveCursorToNodeEnd(e.target.nextSibling,!0)}handleFocus(e){this.inputFocus.emit(e)}handleBlur(e){this.hasTriggered=!1,this.inputBlur.emit(e)}handleResultClick(e){var t;const r=this.triggeredRange,i=this.triggeredElement,s=u(i)?i.innerText:null==i?void 0:i.textContent;if(null!=this.contentEl&&null!=r&&null!=i&&null!=s){const a=null!==(t=this.readTriggerValue(s,r.startOffset))&&void 0!==t?t:"",n=s.split(a),l=b(e.detail,n[0],n[1]);this.lastReplacedSpace=l.afterSpace,this.rawElements=Array.from(this.contentEl.childNodes).reduce(((e,t)=>[...e,...this.attemptReplaceElement(t,i,l)]),[]),this.hasTriggered=!1,this.resultReplaced.emit(e.detail),this.replacements=[...this.replacements.filter((t=>t.id!==e.detail.id)),e.detail]}}getCursorPosition(){var e;const t=o();if(null!=t&&t.rangeCount>0){const r=t.getRangeAt(0).getBoundingClientRect(),i=null===(e=this.contentEl)||void 0===e?void 0:e.getBoundingClientRect(),s=r.bottom||(null==i?void 0:i.bottom)||0,a=r.top||(null==i?void 0:i.top)||0;return{x:r.left||(null==i?void 0:i.left)||0,y:this.placement.includes("top")?a:s}}throw new Error("Unable to retrieve window selection.")}get hostEl(){return s(this)}static get watchers(){return{value:["replaceContent"],replacements:["updateContent"]}}};m.style=".wrapper.sc-vertex-search-bar{display:flex;align-items:center;width:100%;box-sizing:border-box;background:none;border:1px solid transparent;border-radius:4px;font-family:var(--vertex-ui-font-family);font-size:0.875rem;line-height:1.4}.content-input.sc-vertex-search-bar{width:100%;box-sizing:border-box;padding:6px 0.5em 7px;border:1px solid transparent;background:none;font-family:var(--vertex-ui-font-family);font-weight:var(--vertex-ui-font-weight-base);font-size:0.875rem;line-height:1.4;white-space:pre-line}.content-input.sc-vertex-search-bar:focus{outline:none}.standard.sc-vertex-search-bar{border-color:var(--vertex-ui-neutral-400);color:var(--vertex-ui-neutral-800)}.standard.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-500)}.standard.sc-vertex-search-bar:hover:not(.disabled),.standard.sc-vertex-search-bar:focus{border-color:var(--vertex-ui-neutral-500)}.standard.disabled.sc-vertex-search-bar{border-color:var(--vertex-ui-neutral-200)}.standard.disabled.sc-vertex-search-bar,.standard.disabled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.blank.sc-vertex-search-bar{color:var(--vertex-ui-neutral-800)}.blank.sc-vertex-search-bar:not(:hover) .content-input.sc-vertex-search-bar:focus{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.blank.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-500)}.blank.sc-vertex-search-bar:hover:not(.disabled) .content-input.sc-vertex-search-bar{border-color:var(--vertex-ui-neutral-400);border-radius:4px}.blank.disabled.sc-vertex-search-bar{border-color:var(--vertex-ui-neutral-200)}.blank.disabled.sc-vertex-search-bar,.blank.disabled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.filled.sc-vertex-search-bar{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);color:var(--vertex-ui-neutral-800)}.filled.disabled.sc-vertex-search-bar,.filled.disabled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.filled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-700)}.filled.sc-vertex-search-bar:hover:not(.disabled),.filled.sc-vertex-search-bar:focus{border-bottom-color:var(--vertex-ui-blue-600)}.filled.disabled.sc-vertex-search-bar{border-color:var(--vertex-ui-neutral-100)}.filled.disabled.sc-vertex-search-bar,.filled.disabled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.underlined.sc-vertex-search-bar{background-color:var(--vertex-ui-white);border-color:var(--vertex-ui-white) var(--vertex-ui-white) var(--vertex-ui-neutral-400) var(--vertex-ui-white);color:var(--vertex-ui-neutral-800)}.underlined.disabled.sc-vertex-search-bar,.underlined.disabled.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.underlined.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-700)}.underlined.sc-vertex-search-bar:hover:not(.disabled),.underlined.sc-vertex-search-bar:focus{background-color:var(--vertex-ui-neutral-200);border-color:var(--vertex-ui-neutral-200);border-bottom-color:var(--vertex-ui-blue-600)}.underlined.disabled.sc-vertex-search-bar{border-bottom-color:var(--vertex-ui-neutral-200)}.underlined.disabled.sc-vertex-search-bar,.underlined.disabled.sc-vertex-search-bar .content-input.sc-vertex-search-bar:empty::before{content:attr(data-placeholder);color:var(--vertex-ui-neutral-400)}.underlined.has-error.sc-vertex-search-bar{border-bottom-color:var(--vertex-ui-red-600)}";export{m as S}
@@ -0,0 +1 @@
1
+ import{h as a}from"./p-6834631c.js";const t=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24","data-testid":"adjustments",stroke:"currentColor"},a("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"})),l=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"align-to-global"},a("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"})),e=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"align-to-part"},a("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"})),s=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"align-to-surface"},a("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"})),r=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"align-view-to-plane"},a("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"})),h=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"annotation"},a("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"})),n=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-filled"},a("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"})),v=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-left-circled"},a("g",{fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1"},a("path",{d:"m1.2594 8 3.6867-4.1402z"}),a("path",{d:"m1.2594 8h13.553z"}),a("path",{d:"m1.2594 8 3.6867 4.1402z"})),a("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"})),w=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-line-left"},a("g",{fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"},a("path",{d:"m1.2594 8 3.6867-4.1402z"}),a("path",{d:"m1.2594 8h13.553z"}),a("path",{d:"m1.2594 8 3.6867 4.1402z"}))),o=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-line-right"},a("g",{fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"},a("path",{d:"m14.753 8-3.6867-4.1402z"}),a("path",{d:"m14.753 8h-13.553z"}),a("path",{d:"m14.753 8-3.6867 4.1402z"}))),i=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 256 256","data-testid":"arrow-partial"},a("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"})),d=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-right-circled"},a("g",{fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1"},a("path",{d:"m11.753 8-3.6867-3.1402z"}),a("path",{d:"m11.753 8h-7.553z"}),a("path",{d:"m11.753 8-3.6867 3.1402z"})),a("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"})),c=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-triangle-left"},a("g",{transform:"matrix(1.0411 0 0 1 -.53826 .29031)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("path",{d:"m6.1674 13.421-6.1333-5.4456 6.1333-5.4456z","stroke-linejoin":"round","stroke-width":".9"})),Z=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-triangle-right"},a("g",{transform:"matrix(-1.0411 0 0 1 16.546 .29031)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("path",{d:"m9.8407 13.421 6.1333-5.4456-6.1333-5.4456z","stroke-linejoin":"round","stroke-width":".9"})),m=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"arrow-up-circled"},a("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"})),g=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"attachment"},a("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"})),p=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"axis-x"},a("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"})),A=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"axis-y"},a("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"})),u=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"axis-z"},a("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"})),M=()=>a("svg",{"data-testid":"back",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"})),x=()=>a("svg",{"data-testid":"box-cursor",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"}),a("path",{d:"M10.438,12.976L8.955,13.6L6.458,7.632L7.94,7.001L10.438,12.976Z"}),a("path",{d:"M5,1.972L5,11.033L7.417,8.709L7.763,8.596L11.598,8.596L5,1.972Z"})),H=()=>a("svg",{"data-testid":"box-select",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"}),a("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)"})),V=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"camera"},a("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"})),L=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"camera-add"},a("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"})),B=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"caret-down"},a("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"})),k=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"caret-left"},a("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"})),f=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"caret-right"},a("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"})),C=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"caret-up"},a("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"})),z=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"caution"},a("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"})),y=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"check"},a("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"})),b=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"check-circle"},a("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"})),j=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"chevron-down"},a("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"})),q=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"chevron-left"},a("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"})),S=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"chevron-right"},a("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"})),D=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"chevron-up"},a("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"})),E=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"circle-outline"},a("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"})),F=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"close"},a("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"})),G=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"close-circle"},a("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"})),I=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"close-circle-fill"},a("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"})),J=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"collapse-all"},a("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"})),K=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"columns",fill:"currentColor"},a("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"})),N=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"columns-add"},a("g",null,a("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"}),a("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"}))),O=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"comment-add"},a("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"})),P=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"comment-filled"},a("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"}),a("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"}),a("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"})),Q=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"comment-reopen"},a("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"})),R=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"comment-resolve"},a("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"})),T=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"comment-show"},a("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"})),U=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"compare"},a("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"})),W=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"compress"},a("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"})),X=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"copy"},a("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"})),Y=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"cross-section"},a("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"})),$=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"cube-orthographic"},a("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"})),_=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"cube-perspective"},a("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"})),aa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"cube-stack"},a("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"})),ta=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"delete"},a("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"})),la=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"download"},a("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"})),ea=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"drag-indicator"},a("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"})),sa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"ellipse"},a("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"})),ra=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"error-circle"},a("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"})),ha=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"expand"},a("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"})),na=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"expand-all"},a("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"})),va=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"export"},a("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"})),wa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"file"},a("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"})),oa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"file-folder"},a("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"})),ia=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"file-pdf"},a("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"})),da=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"fit-all"},a("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"})),ca=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"fit-selected"},a("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"}),a("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"}),a("polyline",{points:"5 2 5 5 2 5"}),a("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"}),a("polyline",{points:"2 11 5 11 5 14"}),a("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"}),a("polyline",{points:"11 2 11 5 14 5"}),a("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"}),a("polyline",{points:"14 11 11 11 11 14"})),Za=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"flip"},a("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"})),ma=()=>a("svg",{"data-testid":"folder-plus",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"})),ga=()=>a("svg",{"data-testid":"forward",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"})),pa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"gear"},a("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"})),Aa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"help"},a("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"})),ua=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"info"},a("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"})),Ma=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"invert"},a("g",{transform:"translate(3.5, 2.2)"},a("path",{d:"M11,7H8V0.6a.5.5,0,0,0-1,0V7H4l3.5,5Zm2.5,4"})),a("g",{transform:"translate(-2.5, -0.2)"},a("path",{d:"M7,14a.5.5,0,0,0,1,0V7.5h3l-3.5-5L4,7.5H7Zm6.5-1"}))),xa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"line"},a("g",{transform:"matrix(-1.0017 0 0 1 16.523 .3149)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"}))),Ha=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"line-dot-left"},a("g",{transform:"matrix(-1.0424 0 0 1 16.996 .3149)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("circle",{cx:"2.8494",cy:"8",r:"1.3961",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"2.0458"})),Va=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"line-dot-right"},a("g",{transform:"matrix(1.0424 0 0 1 -.95769 .3149)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("circle",{transform:"scale(-1,1)",cx:"-13.189",cy:"8",r:"1.3961",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"2.0458"})),La=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"line-hash-left"},a("g",{transform:"matrix(-.94826 0 0 .99941 16.451 .31944)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("g",{transform:"matrix(0 .61897 1.0424 0 -5.8691 2.7337)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"}))),Ba=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"line-hash-right"},a("g",{transform:"matrix(.94826 0 0 .99941 -.55498 .31944)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"})),a("g",{transform:"matrix(0 .61897 -1.0424 0 21.765 2.7337)"},a("path",{d:"m1.9916 7.6851h13.033z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"1.5"}))),ka=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"locate"},a("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"})),fa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"markup"},a("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"})),Ca=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"menu"},a("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"})),za=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"notification"},a("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"})),ya=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"open"},a("path",{d:"M6,4,8.65,6.65l-5.5,5.5a.49.49,0,0,0,.7.7l5.5-5.5L12,10l1-7Z"})),ba=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"open-window"},a("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"})),ja=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pan"},a("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"})),qa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pencil"},a("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"})),Sa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"person-height"},a("g",{fill:"none",stroke:"currentColor"},a("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"}),a("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"}),a("ellipse",{cx:"12.049",cy:"3.094","paint-order":"markers stroke fill",rx:"1.104",ry:"1.075"}),a("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"}))),Da=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"person-run"},a("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"})),Ea=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"person-short"},a("g",{fill:"none",stroke:"currentColor"},a("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"}),a("path",{"stroke-linejoin":"round",d:"M8.293 12.815V8.932Z"}),a("ellipse",{cx:"8.242",cy:"6.771","paint-order":"markers stroke fill",rx:".981",ry:".956"}))),Fa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"person-tall"},a("g",{fill:"none",stroke:"currentColor"},a("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"}),a("ellipse",{cx:"8.047",cy:"2.448","paint-order":"markers stroke fill",rx:"1.29",ry:"1.256"}),a("path",{"stroke-linejoin":"round",d:"M8.074 11.317V5.202Z"}))),Ga=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"person-walk"},a("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"})),Ia=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pin-fill"},a("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"})),Ja=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pin-line"},a("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"})),Ka=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pin-text"},a("path",{d:"M10.52,9H9.42L9,7.86H7L6.58,9H5.51L7.45,4H8.52ZM8.66,7,8,5.17,7.3,7Z"}),a("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"})," "),Na=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pin-text-fill"},a("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"})),Oa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pin-text-square"},a("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"}),a("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"})),Pa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"plus"},a("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"})),Qa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"plus-with-arrow"},a("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"}),a("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"})),Ra=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"pmi"},a("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"}),a("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"}),a("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"}),a("circle",{cx:"4.49",cy:"11.53",r:"1.5"})),Ta=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"precise-measurement"},a("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"}),a("path",{d:"m13.31 7.98-2.34-2.69v1.99H5.03V5.29L2.79 7.98l2.24 2.69v-2h5.94v2z"})),Ua=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"rabbit"},a("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"})),Wa=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"report"},a("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},a("g",{transform:"translate(2, 2)",fill:"currentColor","fill-rule":"nonzero"},a("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"}),a("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"}),a("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"}),a("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"}),a("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"}),a("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"})))),Xa=()=>a("svg",{"data-testid":"reset",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"})),Ya=()=>a("svg",{"data-testid":"resize",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},a("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"})),$a=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"rotate"},a("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"})),_a=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"ruler"},a("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"})),at=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"search"},a("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"})),tt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"show-only-nearby"},a("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"})),lt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"snapshots"},a("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"})),et=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"square-dot-outline"},a("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"})),st=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"star"},a("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"})),rt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"tape-measure"},a("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"}),a("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"}),a("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"})),ht=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"teleport"},a("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"})),nt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"teleport-and-align"},a("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"})),vt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"teleport-toward"},a("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"})),wt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"turtle"},a("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"})),ot=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"update"},a("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"})),it=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"version-history"},a("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"})),dt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"views"},a("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"})),ct=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"visibility-hidden"},a("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"})),Zt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"visibility-partial"},a("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"}),a("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"}),a("polygon",{points:"5.88 5.88 5.88 5.88 5.88 5.88 5.88 5.88"}),a("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"}),a("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"}),a("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"}),a("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"}),a("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"}),a("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"})),mt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"visibility-visible"},a("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"})),gt=()=>a("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16","data-testid":"zoom"},a("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"}));function pt(pt){switch(pt){case"adjustments":return a(t,null);case"align-to-global":return a(l,null);case"align-to-part":return a(e,null);case"align-to-surface":return a(s,null);case"align-view-to-plane":return a(r,null);case"annotation":return a(h,null);case"arrow-filled":return a(n,null);case"arrow-left-circled":return a(v,null);case"arrow-line-left":return a(w,null);case"arrow-line-right":return a(o,null);case"arrow-partial":return a(i,null);case"arrow-right-circled":return a(d,null);case"arrow-triangle-left":return a(c,null);case"arrow-triangle-right":return a(Z,null);case"arrow-up-circled":return a(m,null);case"attachment":return a(g,null);case"axis-x":return a(p,null);case"axis-y":return a(A,null);case"axis-z":return a(u,null);case"back":return a(M,null);case"box-cursor":return a(x,null);case"box-select":return a(H,null);case"camera":return a(V,null);case"camera-add":return a(L,null);case"caret-down":return a(B,null);case"caret-left":return a(k,null);case"caret-right":return a(f,null);case"caret-up":return a(C,null);case"caution":return a(z,null);case"check":return a(y,null);case"check-circle":return a(b,null);case"chevron-down":return a(j,null);case"chevron-left":return a(q,null);case"chevron-right":return a(S,null);case"chevron-up":return a(D,null);case"circle-outline":return a(E,null);case"close":return a(F,null);case"close-circle-fill":return a(I,null);case"close-circle":return a(G,null);case"collapse-all":return a(J,null);case"columns":return a(K,null);case"columns-add":return a(N,null);case"comment-add":return a(O,null);case"comment-filled":return a(P,null);case"comment-reopen":return a(Q,null);case"comment-resolve":return a(R,null);case"comment-show":return a(T,null);case"compare":return a(U,null);case"compress":return a(W,null);case"copy":return a(X,null);case"cross-section":return a(Y,null);case"cube-orthographic":return a($,null);case"cube-perspective":return a(_,null);case"cube-stack":return a(aa,null);case"delete":return a(ta,null);case"download":return a(la,null);case"drag-indicator":return a(ea,null);case"ellipse":return a(sa,null);case"error-circle":return a(ra,null);case"expand":return a(ha,null);case"expand-all":return a(na,null);case"export":return a(va,null);case"file":return a(wa,null);case"file-folder":return a(oa,null);case"file-pdf":return a(ia,null);case"fit-all":return a(da,null);case"fit-selected":return a(ca,null);case"flip":return a(Za,null);case"folder-plus":return a(ma,null);case"forward":return a(ga,null);case"gear":return a(pa,null);case"help":return a(Aa,null);case"info":return a(ua,null);case"invert":return a(Ma,null);case"line":return a(xa,null);case"line-dot-left":return a(Ha,null);case"line-dot-right":return a(Va,null);case"line-hash-left":return a(La,null);case"line-hash-right":return a(Ba,null);case"locate":return a(ka,null);case"markup":return a(fa,null);case"menu":return a(Ca,null);case"notification":return a(za,null);case"open":return a(ya,null);case"open-window":return a(ba,null);case"pan":return a(ja,null);case"pencil":return a(qa,null);case"person-height":return a(Sa,null);case"person-run":return a(Da,null);case"person-short":return a(Ea,null);case"person-tall":return a(Fa,null);case"person-walk":return a(Ga,null);case"pin-fill":return a(Ia,null);case"pin-line":return a(Ja,null);case"pin-text":return a(Ka,null);case"pin-text-fill":return a(Na,null);case"pin-text-square":return a(Oa,null);case"plus":return a(Pa,null);case"plus-with-arrow":return a(Qa,null);case"pmi":return a(Ra,null);case"precise-measurement":return a(Ta,null);case"rabbit":return a(Ua,null);case"report":return a(Wa,null);case"reset":return a(Xa,null);case"resize":return a(Ya,null);case"rotate":return a($a,null);case"ruler":return a(_a,null);case"search":return a(at,null);case"show-only-nearby":return a(tt,null);case"snapshots":return a(lt,null);case"star":return a(st,null);case"square-dot-outline":return a(et,null);case"tape-measure":return a(rt,null);case"teleport-and-align":return a(nt,null);case"teleport-toward":return a(vt,null);case"teleport":return a(ht,null);case"turtle":return a(wt,null);case"update":return a(ot,null);case"version-history":return a(it,null);case"views":return a(dt,null);case"visibility-hidden":return a(ct,null);case"visibility-partial":return a(Zt,null);case"visibility-visible":return a(mt,null);case"zoom":return a(gt,null)}}export{pt as g}
@@ -1 +1 @@
1
- import{r as i,h as e}from"./p-6834631c.js";import{c as s}from"./p-fe062eb0.js";import{g as t}from"./p-03dbb28c.js";const r=class{constructor(e){i(this,e),this.name=void 0,this.size="md"}render(){return e("div",{class:"container"},e("div",{class:s("icon",{xs:"xs"===this.size,sm:"sm"===this.size,md:"md"===this.size,lg:"lg"===this.size})},t(this.name)))}};r.style=".container{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon{display:flex;justify-content:center;align-items:center;fill:currentColor}.xs{height:var(--icon-size, 0.75rem);width:var(--icon-size, 0.75rem)}.sm{height:var(--icon-size, 1rem);width:var(--icon-size, 1rem)}.md{height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.lg{height:var(--icon-size, 2rem);width:var(--icon-size, 2rem)}svg{position:relative;width:100%}";export{r as I}
1
+ import{r as i,h as e}from"./p-6834631c.js";import{c as s}from"./p-fe062eb0.js";import{g as t}from"./p-6ff20817.js";const r=class{constructor(e){i(this,e),this.name=void 0,this.size="md"}render(){return e("div",{class:"container"},e("div",{class:s("icon",{xs:"xs"===this.size,sm:"sm"===this.size,md:"md"===this.size,lg:"lg"===this.size})},t(this.name)))}};r.style=".container{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon{display:flex;justify-content:center;align-items:center;fill:currentColor}.xs{height:var(--icon-size, 0.75rem);width:var(--icon-size, 0.75rem)}.sm{height:var(--icon-size, 1rem);width:var(--icon-size, 1rem)}.md{height:var(--icon-size, 1.5rem);width:var(--icon-size, 1.5rem)}.lg{height:var(--icon-size, 2rem);width:var(--icon-size, 2rem)}svg{position:relative;width:100%}";export{r as I}
@@ -0,0 +1 @@
1
+ export{C as vertex_color_swatch}from"./p-d539f530.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-3438c441.js";
@@ -0,0 +1 @@
1
+ export{T as vertex_tabs}from"./p-48629bf1.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-65f9817e.js";
@@ -0,0 +1 @@
1
+ import{r as t,e as s,h as i,H as e}from"./p-6834631c.js";import{c as h}from"./p-fe062eb0.js";const o=class{constructor(i){t(this,i),this.tabClick=s(this,"tabClick",7),this.handleClick=()=>{this.tabClick.emit(this.label)},this.label=void 0,this.active=!1}render(){return i(e,null,i("div",{class:h("content",{active:this.active})},i("slot",null)))}};o.style=":host{position:relative;width:100%;height:100%}.content{display:none;height:0px}.content.active{display:flex;width:100%;height:100%}";export{o as T}
@@ -1 +1 @@
1
- import{r as e,e as t,h as i,H as r}from"./p-6834631c.js";import{c as o}from"./p-fe062eb0.js";const l=class{constructor(i){e(this,i),this.selectionChanged=t(this,"selectionChanged",7),this.colorArray=[],this.supplementaryColorArray=[],this.handleClick=e=>{const t=e.target;this.selectionChanged.emit({color:t.color,lightened:t.lightened,darkened:t.darkened})},this.colors=["#4c87be","#f3d336","#6fbb29","#e38826","#c72e16","#8c3681","#000000","#ffffff"],this.supplementalColors=[],this.theme="dark",this.lightenPercentage=.25,this.darkenPercentage=.25,this.selected=void 0,this.direction="horizontal"}componentWillLoad(){this.handleColorsChange(this.colors),this.handleSupplementalColorsChange(this.supplementalColors)}handleColorsChange(e){this.colorArray="string"==typeof e?JSON.parse(e):e}handleSupplementalColorsChange(e){this.supplementaryColorArray="string"==typeof e?JSON.parse(e):e}render(){return i(r,null,i("div",{class:o("container",{vertical:"vertical"===this.direction})},this.colorArray.map(((e,t)=>i("vertex-color-circle",{class:o("circle",{selected:this.selected===e}),color:e,supplementalColor:this.supplementaryColorArray[t],onClick:this.handleClick,lightenPercentage:this.lightenPercentage,darkenPercentage:this.darkenPercentage,theme:this.theme})))))}static get watchers(){return{colors:["handleColorsChange"],supplementalColors:["handleSupplementalColorsChange"]}}};l.style=":host{display:flex;--color-circle-spacing:1rem;--color-circle-hovered-outline:2px solid var(--vertex-ui-neutral-700);--color-circle-selected-outline:var(--color-circle-hovered-outline)}.container{display:flex;gap:var(--color-circle-spacing)}.container.vertical{flex-direction:column;justify-content:center}.container.horizontal{align-items:center}.circle{cursor:pointer;outline-offset:3px;border-radius:100%}.circle.selected{outline:var(--color-circle-selected-outline)}.circle:hover{outline:var(--color-circle-hovered-outline)}";export{l as C}
1
+ import{r as e,e as t,h as i,H as r}from"./p-6834631c.js";import{c as o}from"./p-fe062eb0.js";const l=class{constructor(i){e(this,i),this.selectionChanged=t(this,"selectionChanged",7),this.colorArray=[],this.supplementaryColorArray=[],this.handleClick=e=>{const t=e.target;this.selectionChanged.emit({color:t.color,lightened:t.lightened,darkened:t.darkened})},this.colors=["#4c87be","#f3d336","#6fbb29","#e38826","#c72e16","#8c3681","#000000","#ffffff"],this.supplementalColors=[],this.theme="dark",this.lightenPercentage=.25,this.darkenPercentage=.25,this.selected=void 0,this.direction="horizontal"}componentWillLoad(){this.handleColorsChange(this.colors),this.handleSupplementalColorsChange(this.supplementalColors)}handleColorsChange(e){this.colorArray="string"==typeof e?JSON.parse(e):e}handleSupplementalColorsChange(e){this.supplementaryColorArray="string"==typeof e?JSON.parse(e):e}render(){return i(r,null,i("div",{class:o("container",{vertical:"vertical"===this.direction})},this.colorArray.map(((e,t)=>i("vertex-color-swatch",{class:o("circle",{selected:this.selected===e}),variant:"circle",size:"lg",color:e,supplementalColor:this.supplementaryColorArray[t],onClick:this.handleClick,lightenPercentage:this.lightenPercentage,darkenPercentage:this.darkenPercentage,theme:this.theme})))))}static get watchers(){return{colors:["handleColorsChange"],supplementalColors:["handleSupplementalColorsChange"]}}};l.style=":host{display:flex;--color-circle-spacing:1rem;--color-circle-hovered-outline:2px solid var(--vertex-ui-neutral-700);--color-circle-selected-outline:var(--color-circle-hovered-outline)}.container{display:flex;gap:var(--color-circle-spacing)}.container.vertical{flex-direction:column;justify-content:center}.container.horizontal{align-items:center}.circle{cursor:pointer;outline-offset:3px;border-radius:100%}.circle.selected{outline:var(--color-circle-selected-outline)}.circle:hover{outline:var(--color-circle-hovered-outline)}";export{l as C}
@@ -0,0 +1 @@
1
+ export{I as vertex_icon}from"./p-7bd92281.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-6ff20817.js";