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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (884) hide show
  1. package/dist/cjs/components.cjs.js +14 -84
  2. package/dist/cjs/{dom-a2c535e3.js → dom-v38DVhe2.js} +4 -4
  3. package/dist/cjs/icon-helper-ut8vR2Rk.js +559 -0
  4. package/dist/cjs/index-D-R2lvls.js +62 -0
  5. package/dist/cjs/index-DihxupoM.js +95 -0
  6. package/dist/cjs/index-DwS9D24e.js +2230 -0
  7. package/dist/cjs/index.cjs.js +91 -92
  8. package/dist/cjs/{lib-1bd1e383.js → lib-CCXuRx1c.js} +2 -2
  9. package/dist/cjs/loader.cjs.js +5 -15
  10. package/dist/cjs/slots-DEdmqbtw.js +29 -0
  11. package/dist/cjs/templates-C_WUWcnZ.js +230 -0
  12. package/dist/cjs/tslib.es6-AsLBQn5u.js +68 -0
  13. package/dist/cjs/vertex-auto-resize-textarea.cjs.entry.js +132 -5
  14. package/dist/cjs/vertex-avatar-group.cjs.entry.js +12 -5
  15. package/dist/cjs/vertex-avatar.cjs.entry.js +44 -6
  16. package/dist/cjs/vertex-badge.cjs.entry.js +21 -6
  17. package/dist/cjs/vertex-banner.cjs.entry.js +122 -7
  18. package/dist/cjs/vertex-button.cjs.entry.js +83 -6
  19. package/dist/cjs/vertex-card-group.cjs.entry.js +34 -6
  20. package/dist/cjs/vertex-card.cjs.entry.js +33 -5
  21. package/dist/cjs/vertex-chip.cjs.entry.js +28 -6
  22. package/dist/cjs/vertex-click-to-edit-textfield.cjs.entry.js +112 -7
  23. package/dist/cjs/vertex-collapsible.cjs.entry.js +22 -6
  24. package/dist/cjs/vertex-color-circle-picker.cjs.entry.js +142 -6
  25. package/dist/cjs/vertex-color-picker.cjs.entry.js +67 -7
  26. package/dist/cjs/vertex-color-swatch.cjs.entry.js +141 -7
  27. package/dist/cjs/vertex-context-menu.cjs.entry.js +91 -6
  28. package/dist/cjs/vertex-dialog.cjs.entry.js +226 -5
  29. package/dist/cjs/vertex-draggable-popover.cjs.entry.js +79 -6
  30. package/dist/cjs/vertex-dropdown-menu.cjs.entry.js +34 -6
  31. package/dist/cjs/vertex-expandable.cjs.entry.js +101 -6
  32. package/dist/cjs/vertex-help-tooltip.cjs.entry.js +36 -5
  33. package/dist/cjs/vertex-icon-button.cjs.entry.js +58 -7
  34. package/dist/cjs/vertex-icon.cjs.entry.js +29 -7
  35. package/dist/cjs/vertex-logo-loading.cjs.entry.js +12 -5
  36. package/dist/cjs/vertex-menu-divider.cjs.entry.js +12 -5
  37. package/dist/cjs/vertex-menu-item.cjs.entry.js +24 -6
  38. package/dist/cjs/vertex-menu.cjs.entry.js +80 -6
  39. package/dist/cjs/vertex-popover.cjs.entry.js +1894 -5
  40. package/dist/cjs/vertex-radio-group.cjs.entry.js +73 -5
  41. package/dist/cjs/vertex-radio.cjs.entry.js +29 -6
  42. package/dist/cjs/vertex-resizable.cjs.entry.js +439 -7
  43. package/dist/cjs/vertex-result-list.cjs.entry.js +300 -7
  44. package/dist/cjs/vertex-search-bar.cjs.entry.js +528 -7
  45. package/dist/cjs/vertex-select.cjs.entry.js +181 -6
  46. package/dist/cjs/vertex-slider.cjs.entry.js +55 -7
  47. package/dist/cjs/vertex-spinner.cjs.entry.js +32 -6
  48. package/dist/cjs/vertex-tab.cjs.entry.js +20 -6
  49. package/dist/cjs/vertex-tabs.cjs.entry.js +104 -6
  50. package/dist/cjs/vertex-textfield.cjs.entry.js +147 -7
  51. package/dist/cjs/vertex-toast.cjs.entry.js +109 -6
  52. package/dist/cjs/vertex-toggle.cjs.entry.js +47 -6
  53. package/dist/cjs/vertex-tooltip.cjs.entry.js +343 -8
  54. package/dist/collection/collection-manifest.json +44 -43
  55. package/dist/collection/components/auto-resize-textarea/auto-resize-textarea.js +222 -213
  56. package/dist/collection/components/auto-resize-textarea/utils.js +1 -1
  57. package/dist/collection/components/avatar/avatar.js +153 -137
  58. package/dist/collection/components/avatar-group/avatar-group.js +16 -16
  59. package/dist/collection/components/badge/badge.js +75 -66
  60. package/dist/collection/components/banner/banner.js +284 -247
  61. package/dist/collection/components/button/button.js +274 -230
  62. package/dist/collection/components/card/card.js +89 -76
  63. package/dist/collection/components/card-group/card-group.js +104 -89
  64. package/dist/collection/components/chip/chip.js +89 -73
  65. package/dist/collection/components/click-to-edit-text-field/click-to-edit-text-field.js +412 -373
  66. package/dist/collection/components/collapsible/collapsible.js +71 -65
  67. package/dist/collection/components/color-circle-picker/color-circle-picker.js +398 -312
  68. package/dist/collection/components/color-picker/color-picker.js +225 -186
  69. package/dist/collection/components/color-swatch/color-swatch.js +341 -272
  70. package/dist/collection/components/color-swatch/lib.js +2 -2
  71. package/dist/collection/components/context-menu/context-menu.js +168 -161
  72. package/dist/collection/components/dialog/dialog.js +332 -323
  73. package/dist/collection/components/dialog/lib.js +4 -4
  74. package/dist/collection/components/draggable-popover/draggable-popover.js +182 -175
  75. package/dist/collection/components/dropdown-menu/dropdown-menu.js +122 -108
  76. package/dist/collection/components/expandable/expandable.js +272 -224
  77. package/dist/collection/components/help-tooltip/help-tooltip.js +132 -118
  78. package/dist/collection/components/icon/icon-helper.js +414 -414
  79. package/dist/collection/components/icon/icon.js +91 -75
  80. package/dist/collection/components/icon/icons/adjustments.js +1 -1
  81. package/dist/collection/components/icon/icons/align-to-global.js +1 -1
  82. package/dist/collection/components/icon/icons/align-to-part.js +1 -1
  83. package/dist/collection/components/icon/icons/align-to-surface.js +1 -1
  84. package/dist/collection/components/icon/icons/align-view-to-plane.js +1 -1
  85. package/dist/collection/components/icon/icons/annotation.js +1 -1
  86. package/dist/collection/components/icon/icons/arrow-filled.js +1 -1
  87. package/dist/collection/components/icon/icons/arrow-left-circled.js +1 -1
  88. package/dist/collection/components/icon/icons/arrow-line-left.js +1 -1
  89. package/dist/collection/components/icon/icons/arrow-line-right.js +1 -1
  90. package/dist/collection/components/icon/icons/arrow-partial.js +1 -1
  91. package/dist/collection/components/icon/icons/arrow-right-circled.js +1 -1
  92. package/dist/collection/components/icon/icons/arrow-swap.js +1 -1
  93. package/dist/collection/components/icon/icons/arrow-triangle-left.js +1 -1
  94. package/dist/collection/components/icon/icons/arrow-triangle-right.js +1 -1
  95. package/dist/collection/components/icon/icons/arrow-up-circled.js +1 -1
  96. package/dist/collection/components/icon/icons/attachment.js +1 -1
  97. package/dist/collection/components/icon/icons/axis-x.js +1 -1
  98. package/dist/collection/components/icon/icons/axis-y.js +1 -1
  99. package/dist/collection/components/icon/icons/axis-z.js +1 -1
  100. package/dist/collection/components/icon/icons/back.js +1 -1
  101. package/dist/collection/components/icon/icons/box-cursor.js +1 -1
  102. package/dist/collection/components/icon/icons/box-select.js +1 -1
  103. package/dist/collection/components/icon/icons/camera-add.js +1 -1
  104. package/dist/collection/components/icon/icons/camera.js +1 -1
  105. package/dist/collection/components/icon/icons/caret-down.js +1 -1
  106. package/dist/collection/components/icon/icons/caret-left.js +1 -1
  107. package/dist/collection/components/icon/icons/caret-right.js +1 -1
  108. package/dist/collection/components/icon/icons/caret-up.js +1 -1
  109. package/dist/collection/components/icon/icons/caution.js +1 -1
  110. package/dist/collection/components/icon/icons/check-circle.js +1 -1
  111. package/dist/collection/components/icon/icons/check.js +1 -1
  112. package/dist/collection/components/icon/icons/chevron-down.js +1 -1
  113. package/dist/collection/components/icon/icons/chevron-left.js +1 -1
  114. package/dist/collection/components/icon/icons/chevron-right.js +1 -1
  115. package/dist/collection/components/icon/icons/chevron-up.js +1 -1
  116. package/dist/collection/components/icon/icons/circle-outline.js +1 -1
  117. package/dist/collection/components/icon/icons/close-circle-fill.js +1 -1
  118. package/dist/collection/components/icon/icons/close-circle.js +1 -1
  119. package/dist/collection/components/icon/icons/close.js +1 -1
  120. package/dist/collection/components/icon/icons/collapse-all.js +1 -1
  121. package/dist/collection/components/icon/icons/columns-add.js +1 -1
  122. package/dist/collection/components/icon/icons/columns.js +1 -1
  123. package/dist/collection/components/icon/icons/comment-add.js +1 -1
  124. package/dist/collection/components/icon/icons/comment-filled.js +1 -1
  125. package/dist/collection/components/icon/icons/comment-reopen.js +1 -1
  126. package/dist/collection/components/icon/icons/comment-resolve.js +1 -1
  127. package/dist/collection/components/icon/icons/comment-show.js +1 -1
  128. package/dist/collection/components/icon/icons/compare.js +1 -1
  129. package/dist/collection/components/icon/icons/compress.js +1 -1
  130. package/dist/collection/components/icon/icons/copy.js +1 -1
  131. package/dist/collection/components/icon/icons/cross-section.js +1 -1
  132. package/dist/collection/components/icon/icons/cube-orthographic.js +1 -1
  133. package/dist/collection/components/icon/icons/cube-perspective.js +1 -1
  134. package/dist/collection/components/icon/icons/cube-stack.js +1 -1
  135. package/dist/collection/components/icon/icons/delete.js +1 -1
  136. package/dist/collection/components/icon/icons/download.js +1 -1
  137. package/dist/collection/components/icon/icons/drag-indicator.js +1 -1
  138. package/dist/collection/components/icon/icons/ellipse.js +1 -1
  139. package/dist/collection/components/icon/icons/error-circle.js +1 -1
  140. package/dist/collection/components/icon/icons/expand-all.js +1 -1
  141. package/dist/collection/components/icon/icons/expand.js +1 -1
  142. package/dist/collection/components/icon/icons/export.js +1 -1
  143. package/dist/collection/components/icon/icons/file-folder.js +1 -1
  144. package/dist/collection/components/icon/icons/file-pdf.js +1 -1
  145. package/dist/collection/components/icon/icons/file.js +1 -1
  146. package/dist/collection/components/icon/icons/fit-all.js +1 -1
  147. package/dist/collection/components/icon/icons/fit-selected.js +1 -1
  148. package/dist/collection/components/icon/icons/flip.js +1 -1
  149. package/dist/collection/components/icon/icons/folder-plus.js +1 -1
  150. package/dist/collection/components/icon/icons/forward.js +1 -1
  151. package/dist/collection/components/icon/icons/gear.js +1 -1
  152. package/dist/collection/components/icon/icons/help.js +1 -1
  153. package/dist/collection/components/icon/icons/info.js +1 -1
  154. package/dist/collection/components/icon/icons/invert.js +1 -1
  155. package/dist/collection/components/icon/icons/label-off.js +1 -1
  156. package/dist/collection/components/icon/icons/label.js +1 -1
  157. package/dist/collection/components/icon/icons/line-dot-left.js +1 -1
  158. package/dist/collection/components/icon/icons/line-dot-right.js +1 -1
  159. package/dist/collection/components/icon/icons/line-hash-left.js +1 -1
  160. package/dist/collection/components/icon/icons/line-hash-right.js +1 -1
  161. package/dist/collection/components/icon/icons/line.js +1 -1
  162. package/dist/collection/components/icon/icons/locate.js +1 -1
  163. package/dist/collection/components/icon/icons/lock-closed.js +1 -1
  164. package/dist/collection/components/icon/icons/lock-open.js +1 -1
  165. package/dist/collection/components/icon/icons/markup.js +1 -1
  166. package/dist/collection/components/icon/icons/menu.js +1 -1
  167. package/dist/collection/components/icon/icons/notification.js +1 -1
  168. package/dist/collection/components/icon/icons/open-window.js +1 -1
  169. package/dist/collection/components/icon/icons/open.js +1 -1
  170. package/dist/collection/components/icon/icons/pan.js +1 -1
  171. package/dist/collection/components/icon/icons/paper-airplane.js +1 -1
  172. package/dist/collection/components/icon/icons/paste.js +1 -1
  173. package/dist/collection/components/icon/icons/pencil.js +1 -1
  174. package/dist/collection/components/icon/icons/person-height.js +1 -1
  175. package/dist/collection/components/icon/icons/person-run.js +1 -1
  176. package/dist/collection/components/icon/icons/person-short.js +1 -1
  177. package/dist/collection/components/icon/icons/person-tall.js +1 -1
  178. package/dist/collection/components/icon/icons/person-walk.js +1 -1
  179. package/dist/collection/components/icon/icons/pin-fill.js +1 -1
  180. package/dist/collection/components/icon/icons/pin-line.js +1 -1
  181. package/dist/collection/components/icon/icons/pin-text-fill.js +1 -1
  182. package/dist/collection/components/icon/icons/pin-text-square.js +1 -1
  183. package/dist/collection/components/icon/icons/pin-text.js +1 -1
  184. package/dist/collection/components/icon/icons/plus-with-arrow.js +1 -1
  185. package/dist/collection/components/icon/icons/plus.js +1 -1
  186. package/dist/collection/components/icon/icons/pmi.js +1 -1
  187. package/dist/collection/components/icon/icons/precise-measurement.js +1 -1
  188. package/dist/collection/components/icon/icons/rabbit.js +1 -1
  189. package/dist/collection/components/icon/icons/refresh.js +1 -1
  190. package/dist/collection/components/icon/icons/rename.js +1 -1
  191. package/dist/collection/components/icon/icons/report.js +1 -1
  192. package/dist/collection/components/icon/icons/reset.js +1 -1
  193. package/dist/collection/components/icon/icons/resize.js +1 -1
  194. package/dist/collection/components/icon/icons/rotate.js +1 -1
  195. package/dist/collection/components/icon/icons/ruler.js +1 -1
  196. package/dist/collection/components/icon/icons/scissors.js +1 -1
  197. package/dist/collection/components/icon/icons/search.js +1 -1
  198. package/dist/collection/components/icon/icons/show-only-nearby.js +1 -1
  199. package/dist/collection/components/icon/icons/snapshots.js +1 -1
  200. package/dist/collection/components/icon/icons/square-dot-outline.js +1 -1
  201. package/dist/collection/components/icon/icons/star.js +1 -1
  202. package/dist/collection/components/icon/icons/tag.js +1 -1
  203. package/dist/collection/components/icon/icons/tape-measure.js +1 -1
  204. package/dist/collection/components/icon/icons/teleport-and-align.js +1 -1
  205. package/dist/collection/components/icon/icons/teleport-toward.js +1 -1
  206. package/dist/collection/components/icon/icons/teleport.js +1 -1
  207. package/dist/collection/components/icon/icons/triad.js +1 -1
  208. package/dist/collection/components/icon/icons/turtle.js +1 -1
  209. package/dist/collection/components/icon/icons/update.js +1 -1
  210. package/dist/collection/components/icon/icons/version-history.js +1 -1
  211. package/dist/collection/components/icon/icons/views.js +1 -1
  212. package/dist/collection/components/icon/icons/visibility-hidden.js +1 -1
  213. package/dist/collection/components/icon/icons/visibility-partial.js +1 -1
  214. package/dist/collection/components/icon/icons/visibility-visible.js +1 -1
  215. package/dist/collection/components/icon/icons/workspace-add.js +1 -1
  216. package/dist/collection/components/icon/icons/zoom.js +1 -1
  217. package/dist/collection/components/icon-button/icon-button.js +190 -153
  218. package/dist/collection/components/logo-loading/logo-loading.js +16 -16
  219. package/dist/collection/components/menu/menu.js +286 -250
  220. package/dist/collection/components/menu-divider/menu-divider.js +16 -16
  221. package/dist/collection/components/menu-item/menu-item.js +54 -48
  222. package/dist/collection/components/popover/middleware.js +22 -22
  223. package/dist/collection/components/popover/popover.js +654 -567
  224. package/dist/collection/components/popover/util.js +7 -7
  225. package/dist/collection/components/radio/radio.js +157 -145
  226. package/dist/collection/components/radio-group/radio-group.js +135 -133
  227. package/dist/collection/components/resizable/resizable.js +758 -702
  228. package/dist/collection/components/result-list/lib.js +6 -6
  229. package/dist/collection/components/result-list/result-list.js +456 -431
  230. package/dist/collection/components/search-bar/dom.js +13 -13
  231. package/dist/collection/components/search-bar/lib.js +50 -50
  232. package/dist/collection/components/search-bar/search-bar.js +739 -661
  233. package/dist/collection/components/select/select.js +332 -303
  234. package/dist/collection/components/slider/slider.js +258 -220
  235. package/dist/collection/components/spinner/spinner.js +93 -77
  236. package/dist/collection/components/tab/tab.js +86 -83
  237. package/dist/collection/components/tab/util.js +1 -1
  238. package/dist/collection/components/tabs/tabs.js +150 -151
  239. package/dist/collection/components/text-field/text-field.js +637 -572
  240. package/dist/collection/components/toast/toast.js +266 -228
  241. package/dist/collection/components/toggle/toggle.js +139 -119
  242. package/dist/collection/components/tooltip/tooltip.js +280 -247
  243. package/dist/collection/types/icon.js +137 -137
  244. package/dist/collection/util/components/dom.js +5 -5
  245. package/dist/collection/util/components/slots.js +17 -17
  246. package/dist/collection/util/templates/binding.js +121 -121
  247. package/dist/collection/util/templates/element-pool.js +79 -79
  248. package/dist/collection/util/templates/templates.js +15 -15
  249. package/dist/components/components.esm.js +1 -1
  250. package/dist/components/index.d.ts +6 -42
  251. package/dist/components/index.esm.js +1 -1
  252. package/dist/components/index.js +1 -52
  253. package/dist/components/p-00eaa8d7.entry.js +1 -0
  254. package/dist/components/p-0180556d.entry.js +1 -0
  255. package/dist/components/p-091b9e27.entry.js +1 -0
  256. package/dist/components/p-0af9b71c.entry.js +1 -0
  257. package/dist/components/p-0bd4222b.entry.js +1 -0
  258. package/dist/components/p-0c389e6f.entry.js +1 -0
  259. package/dist/{esm/toggle-1fe22e4f.js → components/p-0f13f6f3.entry.js} +1 -38
  260. package/dist/components/p-1KuzBK7Z.js +1 -0
  261. package/dist/components/p-1c5e8df5.entry.js +1 -0
  262. package/dist/components/p-1e6ff76a.entry.js +1 -0
  263. package/dist/components/p-26f9abc0.entry.js +1 -0
  264. package/dist/components/p-28460604.entry.js +1 -0
  265. package/dist/components/p-2cdfe6bf.entry.js +1 -0
  266. package/dist/components/p-2e0ee616.entry.js +1 -0
  267. package/dist/components/p-34d8a04e.entry.js +1 -0
  268. package/dist/components/p-3ddb0c4e.entry.js +1 -0
  269. package/dist/components/p-4HdACFFW.js +1 -0
  270. package/dist/components/p-553d01af.entry.js +1 -0
  271. package/dist/components/p-595b8bd6.entry.js +1 -0
  272. package/dist/components/p-5c032b37.entry.js +1 -0
  273. package/dist/components/p-5e3fe5e7.entry.js +1 -0
  274. package/dist/components/p-61742c05.entry.js +1 -0
  275. package/dist/components/p-6b2db72c.entry.js +1 -0
  276. package/dist/components/p-6c6a2fc5.entry.js +1 -0
  277. package/dist/components/p-6d03a954.entry.js +1 -0
  278. package/dist/components/p-6qoO8Yf3.js +1 -0
  279. package/dist/components/p-705d25f3.entry.js +1 -0
  280. package/dist/components/p-7f768637.entry.js +1 -0
  281. package/dist/components/p-8358ad1c.entry.js +1 -0
  282. package/dist/components/p-88781e72.entry.js +1 -0
  283. package/dist/components/p-B-yvbsY0.js +1 -0
  284. package/dist/components/p-B23i1cwy.js +1 -0
  285. package/dist/components/p-B2oECB2P.js +1 -0
  286. package/dist/components/p-B9qe9CNv.js +1 -0
  287. package/dist/components/p-BAfJR2VF.js +1 -0
  288. package/dist/components/p-BHmM6WC-.js +1 -0
  289. package/dist/components/p-BLc3P-0q.js +1 -0
  290. package/dist/components/{p-1356f525.js → p-BSoicxl1.js} +1 -1
  291. package/dist/components/p-BZ5oF5Ci.js +1 -0
  292. package/dist/components/p-BZutc-CC.js +1 -0
  293. package/dist/components/p-BbDaHMlz.js +1 -0
  294. package/dist/components/p-BdR40EV2.js +1 -0
  295. package/dist/components/p-Beav1bNT.js +6 -0
  296. package/dist/components/p-Bo65Viuh.js +1 -0
  297. package/dist/components/p-ByQGREpQ.js +1 -0
  298. package/dist/components/p-C1H5-_5m.js +1 -0
  299. package/dist/components/p-C1qwHMcr.js +1 -0
  300. package/dist/components/p-C27tS7nl.js +2 -0
  301. package/dist/components/p-C7VaFE8W.js +1 -0
  302. package/dist/components/p-CAFdRyLE.js +1 -0
  303. package/dist/components/p-CDYHYPYF.js +1 -0
  304. package/dist/components/p-CFaiLAq0.js +1 -0
  305. package/dist/components/{p-59032668.js → p-CIs0DJX1.js} +1 -1
  306. package/dist/components/p-CZ1Qa_xv.js +1 -0
  307. package/dist/components/p-CZyp2id8.js +1 -0
  308. package/dist/components/p-Ci26QjYl.js +1 -0
  309. package/dist/components/p-D1P5FeY6.js +1 -0
  310. package/dist/components/p-D3BXoJJN.js +1 -0
  311. package/dist/components/p-DEpMfvdS.js +1 -0
  312. package/dist/components/p-DGZHaSjz.js +1 -0
  313. package/dist/components/{p-98e6e51d.js → p-DHNuRvq0.js} +1 -1
  314. package/dist/components/p-DMLgHhJc.js +1 -0
  315. package/dist/components/p-DO6VjClS.js +1 -0
  316. package/dist/components/p-DPgx10Cw.js +1 -0
  317. package/dist/components/p-DXQBJLz-.js +1 -0
  318. package/dist/components/p-D_mp9WMh.js +1 -0
  319. package/dist/components/p-De54LBPx.js +1 -0
  320. package/dist/components/p-DjrAIJhB.js +1 -0
  321. package/dist/components/p-DsAkiOMC.js +1 -0
  322. package/dist/components/p-Dw5WRKyY.js +1 -0
  323. package/dist/components/p-ILu24ZUX.js +1 -0
  324. package/dist/components/p-K5a7HQMt.js +1 -0
  325. package/dist/components/p-KilWQmEJ.js +1 -0
  326. package/dist/components/p-Mnv_zHXq.js +1 -0
  327. package/dist/components/p-RaMDrnzd.js +1 -0
  328. package/dist/components/p-TLO_pywp.js +1 -0
  329. package/dist/components/p-_3Hgy0Z4.js +1 -0
  330. package/dist/components/p-a287d016.entry.js +1 -0
  331. package/dist/components/p-a886721b.entry.js +1 -0
  332. package/dist/components/p-a8e75bdc.entry.js +1 -0
  333. package/dist/components/p-al_CUADF.js +1 -0
  334. package/dist/components/p-b5921385.entry.js +1 -0
  335. package/dist/components/p-c2f3cf8b.entry.js +1 -0
  336. package/dist/components/p-ca6a4b08.entry.js +1 -0
  337. package/dist/components/p-e311af0e.entry.js +1 -0
  338. package/dist/components/p-eYTN_sVb.js +1 -0
  339. package/dist/components/p-edfd86c9.entry.js +1 -0
  340. package/dist/components/p-ef419ddf.entry.js +1 -0
  341. package/dist/components/p-efd0223b.entry.js +1 -0
  342. package/dist/components/p-f1abef98.entry.js +1 -0
  343. package/dist/components/p-f23df530.entry.js +1 -0
  344. package/dist/components/p-f37dc3c4.entry.js +1 -0
  345. package/dist/components/p-f793f80a.entry.js +1 -0
  346. package/dist/components/p-y4p55dbx.js +1 -0
  347. package/dist/components/vertex-auto-resize-textarea.d.ts +2 -2
  348. package/dist/components/vertex-auto-resize-textarea.js +1 -6
  349. package/dist/components/vertex-avatar-group.d.ts +2 -2
  350. package/dist/components/vertex-avatar-group.js +1 -34
  351. package/dist/components/vertex-avatar.d.ts +2 -2
  352. package/dist/components/vertex-avatar.js +1 -68
  353. package/dist/components/vertex-badge.d.ts +2 -2
  354. package/dist/components/vertex-badge.js +1 -43
  355. package/dist/components/vertex-banner.d.ts +2 -2
  356. package/dist/components/vertex-banner.js +1 -141
  357. package/dist/components/vertex-button.d.ts +2 -2
  358. package/dist/components/vertex-button.js +1 -96
  359. package/dist/components/vertex-card-group.d.ts +2 -2
  360. package/dist/components/vertex-card-group.js +1 -51
  361. package/dist/components/vertex-card.d.ts +2 -2
  362. package/dist/components/vertex-card.js +1 -49
  363. package/dist/components/vertex-chip.d.ts +2 -2
  364. package/dist/components/vertex-chip.js +1 -45
  365. package/dist/components/vertex-click-to-edit-textfield.d.ts +2 -2
  366. package/dist/components/vertex-click-to-edit-textfield.js +1 -156
  367. package/dist/components/vertex-collapsible.d.ts +2 -2
  368. package/dist/components/vertex-collapsible.js +1 -63
  369. package/dist/components/vertex-color-circle-picker.d.ts +2 -2
  370. package/dist/components/vertex-color-circle-picker.js +1 -131
  371. package/dist/components/vertex-color-picker.d.ts +2 -2
  372. package/dist/components/vertex-color-picker.js +1 -75
  373. package/dist/components/vertex-color-swatch.d.ts +2 -2
  374. package/dist/components/vertex-color-swatch.js +1 -6
  375. package/dist/components/vertex-context-menu.d.ts +2 -2
  376. package/dist/components/vertex-context-menu.js +1 -125
  377. package/dist/components/vertex-dialog.d.ts +2 -2
  378. package/dist/components/vertex-dialog.js +1 -265
  379. package/dist/components/vertex-draggable-popover.d.ts +2 -2
  380. package/dist/components/vertex-draggable-popover.js +1 -119
  381. package/dist/components/vertex-dropdown-menu.d.ts +2 -2
  382. package/dist/components/vertex-dropdown-menu.js +1 -64
  383. package/dist/components/vertex-expandable.d.ts +2 -2
  384. package/dist/components/vertex-expandable.js +1 -6
  385. package/dist/components/vertex-help-tooltip.d.ts +2 -2
  386. package/dist/components/vertex-help-tooltip.js +1 -67
  387. package/dist/components/vertex-icon-button.d.ts +2 -2
  388. package/dist/components/vertex-icon-button.js +1 -6
  389. package/dist/components/vertex-icon.d.ts +2 -2
  390. package/dist/components/vertex-icon.js +1 -6
  391. package/dist/components/vertex-logo-loading.d.ts +2 -2
  392. package/dist/components/vertex-logo-loading.js +1 -34
  393. package/dist/components/vertex-menu-divider.d.ts +2 -2
  394. package/dist/components/vertex-menu-divider.js +1 -34
  395. package/dist/components/vertex-menu-item.d.ts +2 -2
  396. package/dist/components/vertex-menu-item.js +1 -44
  397. package/dist/components/vertex-menu.d.ts +2 -2
  398. package/dist/components/vertex-menu.js +1 -6
  399. package/dist/components/vertex-popover.d.ts +2 -2
  400. package/dist/components/vertex-popover.js +1 -6
  401. package/dist/components/vertex-radio-group.d.ts +2 -2
  402. package/dist/components/vertex-radio-group.js +1 -98
  403. package/dist/components/vertex-radio.d.ts +2 -2
  404. package/dist/components/vertex-radio.js +1 -56
  405. package/dist/components/vertex-resizable.d.ts +2 -2
  406. package/dist/components/vertex-resizable.js +1 -463
  407. package/dist/components/vertex-result-list.d.ts +2 -2
  408. package/dist/components/vertex-result-list.js +1 -6
  409. package/dist/components/vertex-search-bar.d.ts +2 -2
  410. package/dist/components/vertex-search-bar.js +1 -568
  411. package/dist/components/vertex-select.d.ts +2 -2
  412. package/dist/components/vertex-select.js +1 -202
  413. package/dist/components/vertex-slider.d.ts +2 -2
  414. package/dist/components/vertex-slider.js +1 -81
  415. package/dist/components/vertex-spinner.d.ts +2 -2
  416. package/dist/components/vertex-spinner.js +1 -49
  417. package/dist/components/vertex-tab.d.ts +2 -2
  418. package/dist/components/vertex-tab.js +1 -46
  419. package/dist/components/vertex-tabs.d.ts +2 -2
  420. package/dist/components/vertex-tabs.js +1 -133
  421. package/dist/components/vertex-textfield.d.ts +2 -2
  422. package/dist/components/vertex-textfield.js +1 -6
  423. package/dist/components/vertex-toast.d.ts +2 -2
  424. package/dist/components/vertex-toast.js +1 -127
  425. package/dist/components/vertex-toggle.d.ts +2 -2
  426. package/dist/components/vertex-toggle.js +1 -67
  427. package/dist/components/vertex-tooltip.d.ts +2 -2
  428. package/dist/components/vertex-tooltip.js +1 -6
  429. package/dist/esm/components.js +14 -83
  430. package/dist/{components/dom.js → esm/dom-Oz9KwTs0.js} +4 -4
  431. package/dist/esm/icon-helper-Dw0fFePg.js +557 -0
  432. package/dist/esm/index-Beav1bNT.js +92 -0
  433. package/dist/esm/index-C27tS7nl.js +2219 -0
  434. package/dist/esm/index-DYRkgxax.js +60 -0
  435. package/dist/esm/index.js +50 -49
  436. package/dist/esm/{lib-73fbca8b.js → lib-DgySd_r0.js} +2 -2
  437. package/dist/esm/loader.js +6 -14
  438. package/dist/esm/slots-DXuCPm6v.js +26 -0
  439. package/dist/esm/templates-DZ8xV3--.js +228 -0
  440. package/dist/esm/tslib.es6-CIs0DJX1.js +65 -0
  441. package/dist/esm/vertex-auto-resize-textarea.entry.js +136 -3
  442. package/dist/esm/vertex-avatar-group.entry.js +15 -2
  443. package/dist/esm/vertex-avatar.entry.js +47 -3
  444. package/dist/esm/vertex-badge.entry.js +24 -3
  445. package/dist/esm/vertex-banner.entry.js +125 -4
  446. package/dist/esm/vertex-button.entry.js +86 -3
  447. package/dist/esm/vertex-card-group.entry.js +37 -3
  448. package/dist/esm/vertex-card.entry.js +36 -2
  449. package/dist/esm/vertex-chip.entry.js +31 -3
  450. package/dist/esm/vertex-click-to-edit-textfield.entry.js +114 -3
  451. package/dist/esm/vertex-collapsible.entry.js +25 -3
  452. package/dist/esm/vertex-color-circle-picker.entry.js +145 -3
  453. package/dist/esm/vertex-color-picker.entry.js +70 -4
  454. package/dist/esm/vertex-color-swatch.entry.js +144 -4
  455. package/dist/esm/vertex-context-menu.entry.js +93 -2
  456. package/dist/esm/vertex-dialog.entry.js +230 -3
  457. package/dist/esm/vertex-draggable-popover.entry.js +82 -3
  458. package/dist/esm/vertex-dropdown-menu.entry.js +36 -2
  459. package/dist/esm/vertex-expandable.entry.js +104 -3
  460. package/dist/esm/vertex-help-tooltip.entry.js +39 -2
  461. package/dist/esm/vertex-icon-button.entry.js +61 -4
  462. package/dist/esm/vertex-icon.entry.js +32 -4
  463. package/dist/esm/vertex-logo-loading.entry.js +15 -2
  464. package/dist/esm/vertex-menu-divider.entry.js +15 -2
  465. package/dist/esm/vertex-menu-item.entry.js +27 -3
  466. package/dist/esm/vertex-menu.entry.js +83 -3
  467. package/dist/esm/vertex-popover.entry.js +1898 -3
  468. package/dist/esm/vertex-radio-group.entry.js +76 -2
  469. package/dist/esm/vertex-radio.entry.js +32 -3
  470. package/dist/esm/vertex-resizable.entry.js +442 -4
  471. package/dist/esm/vertex-result-list.entry.js +304 -5
  472. package/dist/esm/vertex-search-bar.entry.js +532 -5
  473. package/dist/esm/vertex-select.entry.js +184 -3
  474. package/dist/esm/vertex-slider.entry.js +58 -4
  475. package/dist/esm/vertex-spinner.entry.js +35 -3
  476. package/dist/esm/vertex-tab.entry.js +23 -3
  477. package/dist/esm/vertex-tabs.entry.js +108 -4
  478. package/dist/esm/vertex-textfield.entry.js +149 -3
  479. package/dist/esm/vertex-toast.entry.js +112 -3
  480. package/dist/esm/vertex-toggle.entry.js +50 -3
  481. package/dist/esm/vertex-tooltip.entry.js +347 -6
  482. package/dist/types/components/auto-resize-textarea/auto-resize-textarea.d.ts +43 -43
  483. package/dist/types/components/avatar/avatar.d.ts +33 -33
  484. package/dist/types/components/avatar-group/avatar-group.d.ts +1 -1
  485. package/dist/types/components/badge/badge.d.ts +10 -10
  486. package/dist/types/components/banner/banner.d.ts +50 -50
  487. package/dist/types/components/button/button.d.ts +52 -52
  488. package/dist/types/components/card/card.d.ts +19 -19
  489. package/dist/types/components/card-group/card-group.d.ts +13 -13
  490. package/dist/types/components/chip/chip.d.ts +11 -11
  491. package/dist/types/components/click-to-edit-text-field/click-to-edit-text-field.d.ts +78 -78
  492. package/dist/types/components/collapsible/collapsible.d.ts +10 -10
  493. package/dist/types/components/color-circle-picker/color-circle-picker.d.ts +89 -89
  494. package/dist/types/components/color-picker/color-picker.d.ts +46 -46
  495. package/dist/types/components/color-swatch/color-swatch.d.ts +69 -69
  496. package/dist/types/components/context-menu/context-menu.d.ts +33 -33
  497. package/dist/types/components/dialog/dialog.d.ts +55 -55
  498. package/dist/types/components/draggable-popover/draggable-popover.d.ts +32 -32
  499. package/dist/types/components/dropdown-menu/dropdown-menu.d.ts +22 -22
  500. package/dist/types/components/expandable/expandable.d.ts +58 -58
  501. package/dist/types/components/help-tooltip/help-tooltip.d.ts +22 -22
  502. package/dist/types/components/icon/icon.d.ts +15 -15
  503. package/dist/types/components/icon/icons/adjustments.d.ts +0 -1
  504. package/dist/types/components/icon/icons/align-to-global.d.ts +0 -1
  505. package/dist/types/components/icon/icons/align-to-part.d.ts +0 -1
  506. package/dist/types/components/icon/icons/align-to-surface.d.ts +0 -1
  507. package/dist/types/components/icon/icons/align-view-to-plane.d.ts +0 -1
  508. package/dist/types/components/icon/icons/annotation.d.ts +0 -1
  509. package/dist/types/components/icon/icons/arrow-filled.d.ts +0 -1
  510. package/dist/types/components/icon/icons/arrow-left-circled.d.ts +0 -1
  511. package/dist/types/components/icon/icons/arrow-line-left.d.ts +0 -1
  512. package/dist/types/components/icon/icons/arrow-line-right.d.ts +0 -1
  513. package/dist/types/components/icon/icons/arrow-partial.d.ts +0 -1
  514. package/dist/types/components/icon/icons/arrow-right-circled.d.ts +0 -1
  515. package/dist/types/components/icon/icons/arrow-swap.d.ts +0 -1
  516. package/dist/types/components/icon/icons/arrow-triangle-left.d.ts +0 -1
  517. package/dist/types/components/icon/icons/arrow-triangle-right.d.ts +0 -1
  518. package/dist/types/components/icon/icons/arrow-up-circled.d.ts +0 -1
  519. package/dist/types/components/icon/icons/attachment.d.ts +0 -1
  520. package/dist/types/components/icon/icons/axis-x.d.ts +0 -1
  521. package/dist/types/components/icon/icons/axis-y.d.ts +0 -1
  522. package/dist/types/components/icon/icons/axis-z.d.ts +0 -1
  523. package/dist/types/components/icon/icons/back.d.ts +0 -1
  524. package/dist/types/components/icon/icons/box-cursor.d.ts +0 -1
  525. package/dist/types/components/icon/icons/box-select.d.ts +0 -1
  526. package/dist/types/components/icon/icons/camera-add.d.ts +0 -1
  527. package/dist/types/components/icon/icons/camera.d.ts +0 -1
  528. package/dist/types/components/icon/icons/caret-down.d.ts +0 -1
  529. package/dist/types/components/icon/icons/caret-left.d.ts +0 -1
  530. package/dist/types/components/icon/icons/caret-right.d.ts +0 -1
  531. package/dist/types/components/icon/icons/caret-up.d.ts +0 -1
  532. package/dist/types/components/icon/icons/caution.d.ts +0 -1
  533. package/dist/types/components/icon/icons/check-circle.d.ts +0 -1
  534. package/dist/types/components/icon/icons/check.d.ts +0 -1
  535. package/dist/types/components/icon/icons/chevron-down.d.ts +0 -1
  536. package/dist/types/components/icon/icons/chevron-left.d.ts +0 -1
  537. package/dist/types/components/icon/icons/chevron-right.d.ts +0 -1
  538. package/dist/types/components/icon/icons/chevron-up.d.ts +0 -1
  539. package/dist/types/components/icon/icons/circle-outline.d.ts +0 -1
  540. package/dist/types/components/icon/icons/close-circle-fill.d.ts +0 -1
  541. package/dist/types/components/icon/icons/close-circle.d.ts +0 -1
  542. package/dist/types/components/icon/icons/close.d.ts +0 -1
  543. package/dist/types/components/icon/icons/collapse-all.d.ts +0 -1
  544. package/dist/types/components/icon/icons/columns-add.d.ts +0 -1
  545. package/dist/types/components/icon/icons/columns.d.ts +0 -1
  546. package/dist/types/components/icon/icons/comment-add.d.ts +0 -1
  547. package/dist/types/components/icon/icons/comment-filled.d.ts +0 -1
  548. package/dist/types/components/icon/icons/comment-reopen.d.ts +0 -1
  549. package/dist/types/components/icon/icons/comment-resolve.d.ts +0 -1
  550. package/dist/types/components/icon/icons/comment-show.d.ts +0 -1
  551. package/dist/types/components/icon/icons/compare.d.ts +0 -1
  552. package/dist/types/components/icon/icons/compress.d.ts +0 -1
  553. package/dist/types/components/icon/icons/copy.d.ts +0 -1
  554. package/dist/types/components/icon/icons/cross-section.d.ts +0 -1
  555. package/dist/types/components/icon/icons/cube-orthographic.d.ts +0 -1
  556. package/dist/types/components/icon/icons/cube-perspective.d.ts +0 -1
  557. package/dist/types/components/icon/icons/cube-stack.d.ts +0 -1
  558. package/dist/types/components/icon/icons/delete.d.ts +0 -1
  559. package/dist/types/components/icon/icons/download.d.ts +0 -1
  560. package/dist/types/components/icon/icons/drag-indicator.d.ts +0 -1
  561. package/dist/types/components/icon/icons/ellipse.d.ts +0 -1
  562. package/dist/types/components/icon/icons/error-circle.d.ts +0 -1
  563. package/dist/types/components/icon/icons/expand-all.d.ts +0 -1
  564. package/dist/types/components/icon/icons/expand.d.ts +0 -1
  565. package/dist/types/components/icon/icons/export.d.ts +0 -1
  566. package/dist/types/components/icon/icons/file-folder.d.ts +0 -1
  567. package/dist/types/components/icon/icons/file-pdf.d.ts +0 -1
  568. package/dist/types/components/icon/icons/file.d.ts +0 -1
  569. package/dist/types/components/icon/icons/fit-all.d.ts +0 -1
  570. package/dist/types/components/icon/icons/fit-selected.d.ts +0 -1
  571. package/dist/types/components/icon/icons/flip.d.ts +0 -1
  572. package/dist/types/components/icon/icons/folder-plus.d.ts +0 -1
  573. package/dist/types/components/icon/icons/forward.d.ts +0 -1
  574. package/dist/types/components/icon/icons/gear.d.ts +0 -1
  575. package/dist/types/components/icon/icons/help.d.ts +0 -1
  576. package/dist/types/components/icon/icons/info.d.ts +0 -1
  577. package/dist/types/components/icon/icons/invert.d.ts +0 -1
  578. package/dist/types/components/icon/icons/label-off.d.ts +0 -1
  579. package/dist/types/components/icon/icons/label.d.ts +0 -1
  580. package/dist/types/components/icon/icons/line-dot-left.d.ts +0 -1
  581. package/dist/types/components/icon/icons/line-dot-right.d.ts +0 -1
  582. package/dist/types/components/icon/icons/line-hash-left.d.ts +0 -1
  583. package/dist/types/components/icon/icons/line-hash-right.d.ts +0 -1
  584. package/dist/types/components/icon/icons/line.d.ts +0 -1
  585. package/dist/types/components/icon/icons/locate.d.ts +0 -1
  586. package/dist/types/components/icon/icons/lock-closed.d.ts +0 -1
  587. package/dist/types/components/icon/icons/lock-open.d.ts +0 -1
  588. package/dist/types/components/icon/icons/markup.d.ts +0 -1
  589. package/dist/types/components/icon/icons/menu.d.ts +0 -1
  590. package/dist/types/components/icon/icons/notification.d.ts +0 -1
  591. package/dist/types/components/icon/icons/open-window.d.ts +0 -1
  592. package/dist/types/components/icon/icons/open.d.ts +0 -1
  593. package/dist/types/components/icon/icons/pan.d.ts +0 -1
  594. package/dist/types/components/icon/icons/paper-airplane.d.ts +0 -1
  595. package/dist/types/components/icon/icons/paste.d.ts +0 -1
  596. package/dist/types/components/icon/icons/pencil.d.ts +0 -1
  597. package/dist/types/components/icon/icons/person-height.d.ts +0 -1
  598. package/dist/types/components/icon/icons/person-run.d.ts +0 -1
  599. package/dist/types/components/icon/icons/person-short.d.ts +0 -1
  600. package/dist/types/components/icon/icons/person-tall.d.ts +0 -1
  601. package/dist/types/components/icon/icons/person-walk.d.ts +0 -1
  602. package/dist/types/components/icon/icons/pin-fill.d.ts +0 -1
  603. package/dist/types/components/icon/icons/pin-line.d.ts +0 -1
  604. package/dist/types/components/icon/icons/pin-text-fill.d.ts +0 -1
  605. package/dist/types/components/icon/icons/pin-text-square.d.ts +0 -1
  606. package/dist/types/components/icon/icons/pin-text.d.ts +0 -1
  607. package/dist/types/components/icon/icons/plus-with-arrow.d.ts +0 -1
  608. package/dist/types/components/icon/icons/plus.d.ts +0 -1
  609. package/dist/types/components/icon/icons/pmi.d.ts +0 -1
  610. package/dist/types/components/icon/icons/precise-measurement.d.ts +0 -1
  611. package/dist/types/components/icon/icons/rabbit.d.ts +0 -1
  612. package/dist/types/components/icon/icons/refresh.d.ts +0 -1
  613. package/dist/types/components/icon/icons/rename.d.ts +0 -1
  614. package/dist/types/components/icon/icons/report.d.ts +0 -1
  615. package/dist/types/components/icon/icons/reset.d.ts +0 -1
  616. package/dist/types/components/icon/icons/resize.d.ts +0 -1
  617. package/dist/types/components/icon/icons/rotate.d.ts +0 -1
  618. package/dist/types/components/icon/icons/ruler.d.ts +0 -1
  619. package/dist/types/components/icon/icons/scissors.d.ts +0 -1
  620. package/dist/types/components/icon/icons/search.d.ts +0 -1
  621. package/dist/types/components/icon/icons/show-only-nearby.d.ts +0 -1
  622. package/dist/types/components/icon/icons/snapshots.d.ts +0 -1
  623. package/dist/types/components/icon/icons/square-dot-outline.d.ts +0 -1
  624. package/dist/types/components/icon/icons/star.d.ts +0 -1
  625. package/dist/types/components/icon/icons/tag.d.ts +0 -1
  626. package/dist/types/components/icon/icons/tape-measure.d.ts +0 -1
  627. package/dist/types/components/icon/icons/teleport-and-align.d.ts +0 -1
  628. package/dist/types/components/icon/icons/teleport-toward.d.ts +0 -1
  629. package/dist/types/components/icon/icons/teleport.d.ts +0 -1
  630. package/dist/types/components/icon/icons/triad.d.ts +0 -1
  631. package/dist/types/components/icon/icons/turtle.d.ts +0 -1
  632. package/dist/types/components/icon/icons/update.d.ts +0 -1
  633. package/dist/types/components/icon/icons/version-history.d.ts +0 -1
  634. package/dist/types/components/icon/icons/views.d.ts +0 -1
  635. package/dist/types/components/icon/icons/visibility-hidden.d.ts +0 -1
  636. package/dist/types/components/icon/icons/visibility-partial.d.ts +0 -1
  637. package/dist/types/components/icon/icons/visibility-visible.d.ts +0 -1
  638. package/dist/types/components/icon/icons/workspace-add.d.ts +0 -1
  639. package/dist/types/components/icon/icons/zoom.d.ts +0 -1
  640. package/dist/types/components/icon-button/icon-button.d.ts +35 -35
  641. package/dist/types/components/logo-loading/logo-loading.d.ts +1 -1
  642. package/dist/types/components/menu/menu.d.ts +53 -53
  643. package/dist/types/components/menu-divider/menu-divider.d.ts +1 -1
  644. package/dist/types/components/menu-item/menu-item.d.ts +6 -6
  645. package/dist/types/components/popover/popover.d.ts +156 -156
  646. package/dist/types/components/radio/radio.d.ts +28 -28
  647. package/dist/types/components/radio-group/radio-group.d.ts +23 -23
  648. package/dist/types/components/resizable/resizable.d.ts +161 -161
  649. package/dist/types/components/result-list/result-list.d.ts +42 -42
  650. package/dist/types/components/result-list/types.d.ts +2 -2
  651. package/dist/types/components/search-bar/lib.d.ts +5 -5
  652. package/dist/types/components/search-bar/search-bar.d.ts +144 -144
  653. package/dist/types/components/select/select.d.ts +65 -65
  654. package/dist/types/components/slider/slider.d.ts +44 -44
  655. package/dist/types/components/spinner/spinner.d.ts +11 -11
  656. package/dist/types/components/tab/tab.d.ts +8 -8
  657. package/dist/types/components/tabs/tabs.d.ts +20 -20
  658. package/dist/types/components/text-field/text-field.d.ts +112 -112
  659. package/dist/types/components/toast/toast.d.ts +50 -50
  660. package/dist/types/components/toggle/toggle.d.ts +17 -17
  661. package/dist/types/components/tooltip/tooltip.d.ts +60 -60
  662. package/dist/types/components.d.ts +968 -88
  663. package/dist/types/stencil-public-runtime.d.ts +257 -34
  664. package/dist/types/types/icon.d.ts +137 -137
  665. package/dist/types/types/point.d.ts +2 -2
  666. package/dist/types/util/components/slots.d.ts +3 -3
  667. package/dist/types/util/templates/binding.d.ts +20 -20
  668. package/dist/types/util/templates/disposable.d.ts +4 -4
  669. package/dist/types/util/templates/element-pool.d.ts +19 -19
  670. package/dist/types/util/templates/templates.d.ts +2 -2
  671. package/loader/cdn.js +1 -3
  672. package/loader/index.cjs.js +1 -3
  673. package/loader/index.d.ts +5 -2
  674. package/loader/index.es2017.js +1 -3
  675. package/loader/index.js +1 -3
  676. package/package.json +24 -24
  677. package/dist/cjs/auto-resize-textarea-deb05359.js +0 -137
  678. package/dist/cjs/avatar-e69bb687.js +0 -45
  679. package/dist/cjs/avatar-group-d2af53e4.js +0 -17
  680. package/dist/cjs/badge-d39ac1fc.js +0 -23
  681. package/dist/cjs/banner-f5f86bf3.js +0 -104
  682. package/dist/cjs/button-0bf9ea53.js +0 -70
  683. package/dist/cjs/card-ae9e8a8f.js +0 -30
  684. package/dist/cjs/card-group-da93e610.js +0 -30
  685. package/dist/cjs/chip-a3b2e8e0.js +0 -25
  686. package/dist/cjs/click-to-edit-text-field-2c87ee66.js +0 -105
  687. package/dist/cjs/collapsible-50ea984c.js +0 -25
  688. package/dist/cjs/color-circle-picker-b0927289.js +0 -82
  689. package/dist/cjs/color-picker-6aa97d3b.js +0 -47
  690. package/dist/cjs/color-swatch-6d98da5f.js +0 -95
  691. package/dist/cjs/context-menu-664922cd.js +0 -91
  692. package/dist/cjs/dialog-34244fe1.js +0 -225
  693. package/dist/cjs/dom-ff96a4bc.js +0 -75
  694. package/dist/cjs/draggable-popover-125717a7.js +0 -83
  695. package/dist/cjs/dropdown-menu-5ae03a72.js +0 -31
  696. package/dist/cjs/expandable-b1cd4f0b.js +0 -72
  697. package/dist/cjs/help-tooltip-f72eccc7.js +0 -34
  698. package/dist/cjs/icon-button-41b8715e.js +0 -44
  699. package/dist/cjs/icon-ffd07435.js +0 -26
  700. package/dist/cjs/icon-helper-4dea7d26.js +0 -782
  701. package/dist/cjs/index-6a92256c.js +0 -2152
  702. package/dist/cjs/index-e1b40fa6.js +0 -91
  703. package/dist/cjs/logo-loading-4d49fedf.js +0 -17
  704. package/dist/cjs/menu-bfc03108.js +0 -74
  705. package/dist/cjs/menu-divider-5bdebe5d.js +0 -17
  706. package/dist/cjs/menu-item-d213fd4d.js +0 -25
  707. package/dist/cjs/popover-942209b8.js +0 -1706
  708. package/dist/cjs/radio-bff991d2.js +0 -34
  709. package/dist/cjs/radio-group-11ecf8bf.js +0 -78
  710. package/dist/cjs/resizable-c0a69532.js +0 -423
  711. package/dist/cjs/result-list-241ffe8d.js +0 -304
  712. package/dist/cjs/search-bar-2e7ee35a.js +0 -527
  713. package/dist/cjs/select-6042e533.js +0 -163
  714. package/dist/cjs/shadow-css-8eb74fbb.js +0 -389
  715. package/dist/cjs/slider-7714cccb.js +0 -44
  716. package/dist/cjs/slots-fb5ac359.js +0 -29
  717. package/dist/cjs/spinner-bb990a42.js +0 -29
  718. package/dist/cjs/tab-4335cd8f.js +0 -26
  719. package/dist/cjs/tabs-6f3e76e1.js +0 -111
  720. package/dist/cjs/templates-e7b3ffbb.js +0 -230
  721. package/dist/cjs/text-field-bccbde1f.js +0 -133
  722. package/dist/cjs/toast-bee7f47b.js +0 -90
  723. package/dist/cjs/toggle-a5dde469.js +0 -40
  724. package/dist/cjs/tooltip-634eb8c9.js +0 -333
  725. package/dist/cjs/tslib.es6-838fd860.js +0 -68
  726. package/dist/components/auto-resize-textarea.js +0 -157
  727. package/dist/components/color-swatch.js +0 -124
  728. package/dist/components/expandable.js +0 -100
  729. package/dist/components/icon-button.js +0 -64
  730. package/dist/components/icon-helper.js +0 -780
  731. package/dist/components/icon.js +0 -43
  732. package/dist/components/index2.js +0 -89
  733. package/dist/components/menu.js +0 -103
  734. package/dist/components/p-01d4be1d.entry.js +0 -1
  735. package/dist/components/p-09ba50c3.js +0 -1
  736. package/dist/components/p-0b4406fa.entry.js +0 -1
  737. package/dist/components/p-0de26b21.entry.js +0 -1
  738. package/dist/components/p-0e628c05.js +0 -1
  739. package/dist/components/p-16fc9e9a.entry.js +0 -1
  740. package/dist/components/p-18ed73e9.js +0 -1
  741. package/dist/components/p-211c1186.entry.js +0 -1
  742. package/dist/components/p-226e83a6.entry.js +0 -1
  743. package/dist/components/p-22ec9b78.entry.js +0 -1
  744. package/dist/components/p-24c72960.entry.js +0 -1
  745. package/dist/components/p-258c3672.entry.js +0 -1
  746. package/dist/components/p-2930bcb0.entry.js +0 -1
  747. package/dist/components/p-29d7697f.js +0 -1
  748. package/dist/components/p-2ae8175d.entry.js +0 -1
  749. package/dist/components/p-2cff3285.js +0 -1
  750. package/dist/components/p-33400eed.entry.js +0 -1
  751. package/dist/components/p-3508048d.js +0 -12
  752. package/dist/components/p-36c853c4.js +0 -1
  753. package/dist/components/p-39133bc7.js +0 -1
  754. package/dist/components/p-3b794014.entry.js +0 -1
  755. package/dist/components/p-3dd08a0f.js +0 -1
  756. package/dist/components/p-406e73da.entry.js +0 -1
  757. package/dist/components/p-41ced35c.entry.js +0 -1
  758. package/dist/components/p-43b1b3f9.js +0 -1
  759. package/dist/components/p-48629bf1.js +0 -1
  760. package/dist/components/p-53515813.entry.js +0 -1
  761. package/dist/components/p-573b8ec6.entry.js +0 -1
  762. package/dist/components/p-59fb829f.js +0 -1
  763. package/dist/components/p-5fb1724f.js +0 -1
  764. package/dist/components/p-606596de.entry.js +0 -1
  765. package/dist/components/p-65f9817e.js +0 -1
  766. package/dist/components/p-6834631c.js +0 -2
  767. package/dist/components/p-69375605.entry.js +0 -1
  768. package/dist/components/p-6a49c365.entry.js +0 -1
  769. package/dist/components/p-6a640a2c.js +0 -1
  770. package/dist/components/p-6b6c2260.js +0 -1
  771. package/dist/components/p-6b862967.js +0 -1
  772. package/dist/components/p-6d4f055b.entry.js +0 -1
  773. package/dist/components/p-6ee5f83f.entry.js +0 -1
  774. package/dist/components/p-744c02a3.entry.js +0 -1
  775. package/dist/components/p-756c9977.entry.js +0 -1
  776. package/dist/components/p-7e6ca4fb.entry.js +0 -1
  777. package/dist/components/p-80c989fa.entry.js +0 -1
  778. package/dist/components/p-817bf6ff.js +0 -1
  779. package/dist/components/p-81cb4da4.js +0 -1
  780. package/dist/components/p-82de16f0.js +0 -1
  781. package/dist/components/p-8b211d6f.js +0 -1
  782. package/dist/components/p-8c69bb83.js +0 -1
  783. package/dist/components/p-8d83dfff.entry.js +0 -1
  784. package/dist/components/p-8fe0084d.js +0 -1
  785. package/dist/components/p-90931a94.js +0 -1
  786. package/dist/components/p-90cf31d2.js +0 -1
  787. package/dist/components/p-91123ff6.entry.js +0 -1
  788. package/dist/components/p-95358d00.entry.js +0 -1
  789. package/dist/components/p-96f55673.js +0 -1
  790. package/dist/components/p-988058f9.js +0 -1
  791. package/dist/components/p-9c384f6c.entry.js +0 -1
  792. package/dist/components/p-a2018217.entry.js +0 -1
  793. package/dist/components/p-a3c04bbd.js +0 -1
  794. package/dist/components/p-a6614625.js +0 -1
  795. package/dist/components/p-bca6275a.entry.js +0 -1
  796. package/dist/components/p-bec53c3a.js +0 -1
  797. package/dist/components/p-bf8ca296.entry.js +0 -1
  798. package/dist/components/p-c0443d8c.js +0 -1
  799. package/dist/components/p-c2706288.js +0 -1
  800. package/dist/components/p-c2c076f1.js +0 -1
  801. package/dist/components/p-c3ec6642.js +0 -19
  802. package/dist/components/p-c939fa4e.js +0 -1
  803. package/dist/components/p-c9a967d9.js +0 -1
  804. package/dist/components/p-cc2e3192.entry.js +0 -1
  805. package/dist/components/p-d5b514a6.js +0 -1
  806. package/dist/components/p-d7c0c287.entry.js +0 -1
  807. package/dist/components/p-dfe98f07.entry.js +0 -1
  808. package/dist/components/p-e3d0c2d1.entry.js +0 -1
  809. package/dist/components/p-e3ea44b2.js +0 -1
  810. package/dist/components/p-e9efa3f8.entry.js +0 -1
  811. package/dist/components/p-ea8f3750.entry.js +0 -1
  812. package/dist/components/p-ec6af16c.js +0 -1
  813. package/dist/components/p-ec7be8df.js +0 -1
  814. package/dist/components/p-ee300283.js +0 -1
  815. package/dist/components/p-ee496965.entry.js +0 -1
  816. package/dist/components/p-f2bc7ec5.js +0 -1
  817. package/dist/components/p-f55574fb.js +0 -1
  818. package/dist/components/p-fe062eb0.js +0 -7
  819. package/dist/components/p-fe7e7a74.entry.js +0 -1
  820. package/dist/components/p-ff4a1c3a.js +0 -1
  821. package/dist/components/popover.js +0 -1737
  822. package/dist/components/result-list.js +0 -565
  823. package/dist/components/slots.js +0 -26
  824. package/dist/components/text-field.js +0 -171
  825. package/dist/components/tooltip.js +0 -360
  826. package/dist/components/tslib.es6.js +0 -65
  827. package/dist/esm/auto-resize-textarea-087fecdb.js +0 -135
  828. package/dist/esm/avatar-775455a5.js +0 -43
  829. package/dist/esm/avatar-group-e5ca86bf.js +0 -15
  830. package/dist/esm/badge-6d27ca92.js +0 -21
  831. package/dist/esm/banner-bf9b7454.js +0 -102
  832. package/dist/esm/button-ddf9a563.js +0 -68
  833. package/dist/esm/card-1e8790aa.js +0 -28
  834. package/dist/esm/card-group-4e8e0421.js +0 -28
  835. package/dist/esm/chip-4e568eee.js +0 -23
  836. package/dist/esm/click-to-edit-text-field-d9b27cd0.js +0 -103
  837. package/dist/esm/collapsible-b52960e6.js +0 -23
  838. package/dist/esm/color-circle-picker-c4e92fea.js +0 -80
  839. package/dist/esm/color-picker-b292ad8d.js +0 -45
  840. package/dist/esm/color-swatch-ab647632.js +0 -93
  841. package/dist/esm/context-menu-12f1afe1.js +0 -89
  842. package/dist/esm/dialog-c69d9152.js +0 -223
  843. package/dist/esm/dom-64053c71.js +0 -73
  844. package/dist/esm/dom-9d0f7bf4.js +0 -13
  845. package/dist/esm/draggable-popover-9f9b7c97.js +0 -81
  846. package/dist/esm/dropdown-menu-1598ba20.js +0 -29
  847. package/dist/esm/expandable-b487cb00.js +0 -70
  848. package/dist/esm/help-tooltip-c2f0d996.js +0 -32
  849. package/dist/esm/icon-079417a6.js +0 -24
  850. package/dist/esm/icon-button-a1a4a40d.js +0 -42
  851. package/dist/esm/icon-helper-76e116b1.js +0 -780
  852. package/dist/esm/index-72f28b71.js +0 -2118
  853. package/dist/esm/index-9c609209.js +0 -89
  854. package/dist/esm/logo-loading-3c7fa23d.js +0 -15
  855. package/dist/esm/menu-49420f98.js +0 -72
  856. package/dist/esm/menu-divider-87c888cb.js +0 -15
  857. package/dist/esm/menu-item-c33aa9dd.js +0 -23
  858. package/dist/esm/polyfills/core-js.js +0 -11
  859. package/dist/esm/polyfills/css-shim.js +0 -1
  860. package/dist/esm/polyfills/dom.js +0 -79
  861. package/dist/esm/polyfills/es5-html-element.js +0 -1
  862. package/dist/esm/polyfills/index.js +0 -34
  863. package/dist/esm/polyfills/system.js +0 -6
  864. package/dist/esm/popover-6e806354.js +0 -1704
  865. package/dist/esm/radio-39c11ba4.js +0 -32
  866. package/dist/esm/radio-group-2f5467b5.js +0 -76
  867. package/dist/esm/resizable-833336bf.js +0 -421
  868. package/dist/esm/result-list-16c6afbd.js +0 -302
  869. package/dist/esm/search-bar-8d18626e.js +0 -525
  870. package/dist/esm/select-8f024f6a.js +0 -161
  871. package/dist/esm/shadow-css-008a49f5.js +0 -387
  872. package/dist/esm/slider-3d8545e3.js +0 -42
  873. package/dist/esm/slots-fbb5afb3.js +0 -26
  874. package/dist/esm/spinner-afccea51.js +0 -27
  875. package/dist/esm/tab-c76332b0.js +0 -24
  876. package/dist/esm/tabs-e9f6dcbe.js +0 -109
  877. package/dist/esm/templates-797420bf.js +0 -228
  878. package/dist/esm/text-field-32ac877e.js +0 -131
  879. package/dist/esm/toast-255648ff.js +0 -88
  880. package/dist/esm/tooltip-bed548f4.js +0 -331
  881. package/dist/esm/tslib.es6-99cd0de8.js +0 -65
  882. package/loader/package.json +0 -11
  883. /package/dist/components/{p-b2c7b113.js → p-DXuCPm6v.js} +0 -0
  884. /package/dist/components/{p-3438c441.js → p-DgySd_r0.js} +0 -0
@@ -2,95 +2,95 @@ import { EventEmitter, h } from '../../stencil-public-runtime';
2
2
  import { PopoverPlacement } from '../popover/popover';
3
3
  export type ColorPickerSizeSize = 'sm' | 'md' | 'lg';
4
4
  export interface SelectionChangedDetails {
5
- color: string;
6
- lightened: string;
7
- darkened: string;
5
+ color: string;
6
+ lightened: string;
7
+ darkened: string;
8
8
  }
9
9
  export declare class ColorCirclePicker {
10
- /**
11
- * The colors to show in this `vertex-color-circle-picker`.
12
- * These values will map to the `color` property of the underlying
13
- * `vertex-color-swatch`.
14
- */
15
- colors: string[] | string;
16
- /**
17
- * Optional labels that will be displayed as a tooltip on
18
- * the underlying `vertex-color-swatch` elements for associated
19
- * colors in the `colors` array.
20
- */
21
- labels: Record<string, string> | string;
22
- /**
23
- * The placement of the tooltip around the swatch elements.
24
- * This can be any of the following values:
25
- *
26
- * 'top', 'top-start', 'top-end',
27
- * 'bottom', 'bottom-start', 'bottom-end',
28
- * 'right', 'right-start', 'right-end',
29
- * 'left', 'left-start', 'left-end',
30
- * 'auto', 'auto-start', or 'auto-end', and
31
- * defaults to 'bottom'.
32
- *
33
- * Note: placement will adjust based on the amount
34
- * of available space, so tooltips close to screen
35
- * edges may appear in a different location.
36
- */
37
- labelPlacement: PopoverPlacement;
38
- /**
39
- * The size of this color picker. Can be `sm`, `md`, or `lg`,
40
- * and defaults to `lg`.
41
- */
42
- size: ColorPickerSizeSize;
43
- /**
44
- * Optional supplemental colors that will be provided to the
45
- * underlying `vertex-color-swatch` elements for associated
46
- * indices in the `colors` array.
47
- */
48
- supplementalColors: string[] | string;
49
- /**
50
- * The theme to use for this `vertex-color-circle-picker`.
51
- * Can be either `light` or `dark`, and defaults to `dark`.
52
- *
53
- * With the `dark` theme, the provided `colors` will be used
54
- * as the background-colors for `vertex-color-swatch` elements,
55
- * and a `darkened` color will be used for the border-colors.
56
- *
57
- * With the `light` theme, the provided `colors` will be used
58
- * as the background-colors for `vertex-color-swatch` elements,
59
- * and a `lightened` color will be used for the border-colors.
60
- */
61
- theme: 'light' | 'dark';
62
- /**
63
- * The percentage lighter color to use to compute the `lightened`
64
- * color for the underlying `vertex-color-swatch`. This will be
65
- * used when the `theme` is set to `light`.
66
- */
67
- lightenPercentage: number;
68
- /**
69
- * The percentage darker color to use to compute the `darkened`
70
- * color for the underlying `vertex-color-swatch`. This will be
71
- * used when the `theme` is set to `dark`.
72
- */
73
- darkenPercentage: number;
74
- /**
75
- * An optional selected color. This will also be updated internally
76
- * by the component when individual `vertex-color-swatch` elements
77
- * are clicked.
78
- */
79
- selected?: string;
80
- /**
81
- * The orientation of this color picker. Can be either `vertical`
82
- * or `horizontal`, and defaults to `horizontal`.
83
- */
84
- direction: 'vertical' | 'horizontal';
85
- selectionChanged: EventEmitter<SelectionChangedDetails>;
86
- private colorArray;
87
- private supplementaryColorArray;
88
- private labelMap;
89
- componentWillLoad(): void;
90
- private handleColorsChange;
91
- private handleSupplementalColorsChange;
92
- private handleLabelsChange;
93
- render(): h.JSX.IntrinsicElements;
94
- private handleClick;
95
- private parseJsonProp;
10
+ /**
11
+ * The colors to show in this `vertex-color-circle-picker`.
12
+ * These values will map to the `color` property of the underlying
13
+ * `vertex-color-swatch`.
14
+ */
15
+ colors: string[] | string;
16
+ /**
17
+ * Optional labels that will be displayed as a tooltip on
18
+ * the underlying `vertex-color-swatch` elements for associated
19
+ * colors in the `colors` array.
20
+ */
21
+ labels: Record<string, string> | string;
22
+ /**
23
+ * The placement of the tooltip around the swatch elements.
24
+ * This can be any of the following values:
25
+ *
26
+ * 'top', 'top-start', 'top-end',
27
+ * 'bottom', 'bottom-start', 'bottom-end',
28
+ * 'right', 'right-start', 'right-end',
29
+ * 'left', 'left-start', 'left-end',
30
+ * 'auto', 'auto-start', or 'auto-end', and
31
+ * defaults to 'bottom'.
32
+ *
33
+ * Note: placement will adjust based on the amount
34
+ * of available space, so tooltips close to screen
35
+ * edges may appear in a different location.
36
+ */
37
+ labelPlacement: PopoverPlacement;
38
+ /**
39
+ * The size of this color picker. Can be `sm`, `md`, or `lg`,
40
+ * and defaults to `lg`.
41
+ */
42
+ size: ColorPickerSizeSize;
43
+ /**
44
+ * Optional supplemental colors that will be provided to the
45
+ * underlying `vertex-color-swatch` elements for associated
46
+ * indices in the `colors` array.
47
+ */
48
+ supplementalColors: string[] | string;
49
+ /**
50
+ * The theme to use for this `vertex-color-circle-picker`.
51
+ * Can be either `light` or `dark`, and defaults to `dark`.
52
+ *
53
+ * With the `dark` theme, the provided `colors` will be used
54
+ * as the background-colors for `vertex-color-swatch` elements,
55
+ * and a `darkened` color will be used for the border-colors.
56
+ *
57
+ * With the `light` theme, the provided `colors` will be used
58
+ * as the background-colors for `vertex-color-swatch` elements,
59
+ * and a `lightened` color will be used for the border-colors.
60
+ */
61
+ theme: 'light' | 'dark';
62
+ /**
63
+ * The percentage lighter color to use to compute the `lightened`
64
+ * color for the underlying `vertex-color-swatch`. This will be
65
+ * used when the `theme` is set to `light`.
66
+ */
67
+ lightenPercentage: number;
68
+ /**
69
+ * The percentage darker color to use to compute the `darkened`
70
+ * color for the underlying `vertex-color-swatch`. This will be
71
+ * used when the `theme` is set to `dark`.
72
+ */
73
+ darkenPercentage: number;
74
+ /**
75
+ * An optional selected color. This will also be updated internally
76
+ * by the component when individual `vertex-color-swatch` elements
77
+ * are clicked.
78
+ */
79
+ selected?: string;
80
+ /**
81
+ * The orientation of this color picker. Can be either `vertical`
82
+ * or `horizontal`, and defaults to `horizontal`.
83
+ */
84
+ direction: 'vertical' | 'horizontal';
85
+ selectionChanged: EventEmitter<SelectionChangedDetails>;
86
+ private colorArray;
87
+ private supplementaryColorArray;
88
+ private labelMap;
89
+ componentWillLoad(): void;
90
+ private handleColorsChange;
91
+ private handleSupplementalColorsChange;
92
+ private handleLabelsChange;
93
+ render(): h.JSX.IntrinsicElements;
94
+ private handleClick;
95
+ private parseJsonProp;
96
96
  }
@@ -3,50 +3,50 @@ import { ColorSwatchSize } from '../color-swatch/color-swatch';
3
3
  export type ColorPickerVariant = 'full' | 'swatch';
4
4
  export type ColorPickerExpand = 'full' | 'block';
5
5
  export declare class ColorPicker {
6
- /**
7
- * Optional value property to set the initial
8
- * value of this input.
9
- */
10
- value?: string;
11
- /**
12
- * The size of the swatch displayed for this color picker. Can be `sm`, `md`,
13
- * `lg`, or `xl`, and defaults to `md`. If the `variant` is `full`, this value
14
- * will also increase the size of the associated hexadecimal value.
15
- */
16
- size: ColorSwatchSize;
17
- /**
18
- * The variant of this color picker. Can be `full` or `swatch`,
19
- * and defaults to `full`.
20
- *
21
- * `full` will display both the visual color swatch and the hexadecimal
22
- * representation of the color.
23
- *
24
- * `swatch` will display only the visual color swatch.
25
- */
26
- variant: ColorPickerVariant;
27
- /**
28
- * The expansion behavior of this <vertex-color-picker>.
29
- * Can be set to "full" to cause the color picker to stretch to fill
30
- * its container, or "block" to cause the color picker to be sized based
31
- * on its contents.
32
- * Defaults to "block".
33
- */
34
- expand: ColorPickerExpand;
35
- /**
36
- * Whether this color picker is disabled.
37
- */
38
- disabled: boolean;
39
- /**
40
- * Emitted when a new value is input.
41
- */
42
- valueInput: EventEmitter<string>;
43
- /**
44
- * Emitted when the value has changed.
45
- */
46
- valueChanged: EventEmitter<string>;
47
- private valueChange;
48
- render(): h.JSX.IntrinsicElements;
49
- private handleInput;
50
- private handleChange;
51
- private getDisplayedValue;
6
+ /**
7
+ * Optional value property to set the initial
8
+ * value of this input.
9
+ */
10
+ value?: string;
11
+ /**
12
+ * The size of the swatch displayed for this color picker. Can be `sm`, `md`,
13
+ * `lg`, or `xl`, and defaults to `md`. If the `variant` is `full`, this value
14
+ * will also increase the size of the associated hexadecimal value.
15
+ */
16
+ size: ColorSwatchSize;
17
+ /**
18
+ * The variant of this color picker. Can be `full` or `swatch`,
19
+ * and defaults to `full`.
20
+ *
21
+ * `full` will display both the visual color swatch and the hexadecimal
22
+ * representation of the color.
23
+ *
24
+ * `swatch` will display only the visual color swatch.
25
+ */
26
+ variant: ColorPickerVariant;
27
+ /**
28
+ * The expansion behavior of this <vertex-color-picker>.
29
+ * Can be set to "full" to cause the color picker to stretch to fill
30
+ * its container, or "block" to cause the color picker to be sized based
31
+ * on its contents.
32
+ * Defaults to "block".
33
+ */
34
+ expand: ColorPickerExpand;
35
+ /**
36
+ * Whether this color picker is disabled.
37
+ */
38
+ disabled: boolean;
39
+ /**
40
+ * Emitted when a new value is input.
41
+ */
42
+ valueInput: EventEmitter<string>;
43
+ /**
44
+ * Emitted when the value has changed.
45
+ */
46
+ valueChanged: EventEmitter<string>;
47
+ private valueChange;
48
+ render(): h.JSX.IntrinsicElements;
49
+ private handleInput;
50
+ private handleChange;
51
+ private getDisplayedValue;
52
52
  }
@@ -3,73 +3,73 @@ export type ColorSwatchVariant = 'circle' | 'square';
3
3
  export type ColorSwatchSize = 'sm' | 'md' | 'lg';
4
4
  export type ColorSwatchTheme = 'none' | 'light' | 'dark';
5
5
  export declare class ColorSwatch {
6
- /**
7
- * The variant of this color swatch. Can be either `circle` or `square`,
8
- * and defaults to `circle`.
9
- */
10
- variant: ColorSwatchVariant;
11
- /**
12
- * The size of this color swatch. Can be `sm`, `md`, or `lg`,
13
- * and defaults to `md`.
14
- */
15
- size: ColorSwatchSize;
16
- /**
17
- * The primary color of this `vertex-color-swatch` in hexadecimal format.
18
- * For `dark` theme, this will be the background-color.
19
- * For `light` theme, this will be the border-color.
20
- */
21
- color: string;
22
- /**
23
- * An optional supplemental color to be paired with the `color`.
24
- * For `dark` theme, this will be the border-color.
25
- * For `light` theme, this will be the background-color.
26
- */
27
- supplementalColor?: string;
28
- /**
29
- * The theme to use for this `vertex-color-swatch`.
30
- * Can be `none`, `light`, or `dark`, and defaults to `none`.
31
- *
32
- * With no theme (`none`), the provided `color` will be used
33
- * as the background-color, and the border will be a neutral color.
34
- *
35
- * With the `dark` theme, the provided `color` will be used
36
- * as the background-color, and the `darkened` color will be
37
- * used for the border-color.
38
- *
39
- * With the `light` theme, the provided `color` will be used
40
- * as the border-color, and the `lightened` color will be used
41
- * for the background-color.
42
- */
43
- theme: ColorSwatchTheme;
44
- /**
45
- * The percentage lighter color to use to compute the `lightened`
46
- * color. This will be used when the `theme` is set to `light`.
47
- */
48
- lightenPercentage: number;
49
- /**
50
- * The percentage darker color to use to compute the `darkened`
51
- * color. This will be used when the `theme` is set to `dark`.
52
- */
53
- darkenPercentage: number;
54
- /**
55
- * The computed lighter color based on the provided `color` and
56
- * `lightenPercentage`. This will be used when the `theme` is
57
- * set to `light`.
58
- */
59
- lightened: string;
60
- /**
61
- * The computed darker color based on the provided `color` and
62
- * `darkenPercentage`. This will be used when the `theme` is
63
- * set to `dark`.
64
- */
65
- darkened: string;
66
- protected handleColorChanged(newColor: string): void;
67
- protected handleLightenPercentageChanged(newPercentage: number): void;
68
- protected handleDarkenPercentageChanged(newPercentage: number): void;
69
- render(): h.JSX.IntrinsicElements;
70
- private getThemeColors;
71
- private getSupplementalColor;
72
- private adjustColor;
73
- private adjustComponent;
74
- private padHexComponent;
6
+ /**
7
+ * The variant of this color swatch. Can be either `circle` or `square`,
8
+ * and defaults to `circle`.
9
+ */
10
+ variant: ColorSwatchVariant;
11
+ /**
12
+ * The size of this color swatch. Can be `sm`, `md`, or `lg`,
13
+ * and defaults to `md`.
14
+ */
15
+ size: ColorSwatchSize;
16
+ /**
17
+ * The primary color of this `vertex-color-swatch` in hexadecimal format.
18
+ * For `dark` theme, this will be the background-color.
19
+ * For `light` theme, this will be the border-color.
20
+ */
21
+ color: string;
22
+ /**
23
+ * An optional supplemental color to be paired with the `color`.
24
+ * For `dark` theme, this will be the border-color.
25
+ * For `light` theme, this will be the background-color.
26
+ */
27
+ supplementalColor?: string;
28
+ /**
29
+ * The theme to use for this `vertex-color-swatch`.
30
+ * Can be `none`, `light`, or `dark`, and defaults to `none`.
31
+ *
32
+ * With no theme (`none`), the provided `color` will be used
33
+ * as the background-color, and the border will be a neutral color.
34
+ *
35
+ * With the `dark` theme, the provided `color` will be used
36
+ * as the background-color, and the `darkened` color will be
37
+ * used for the border-color.
38
+ *
39
+ * With the `light` theme, the provided `color` will be used
40
+ * as the border-color, and the `lightened` color will be used
41
+ * for the background-color.
42
+ */
43
+ theme: ColorSwatchTheme;
44
+ /**
45
+ * The percentage lighter color to use to compute the `lightened`
46
+ * color. This will be used when the `theme` is set to `light`.
47
+ */
48
+ lightenPercentage: number;
49
+ /**
50
+ * The percentage darker color to use to compute the `darkened`
51
+ * color. This will be used when the `theme` is set to `dark`.
52
+ */
53
+ darkenPercentage: number;
54
+ /**
55
+ * The computed lighter color based on the provided `color` and
56
+ * `lightenPercentage`. This will be used when the `theme` is
57
+ * set to `light`.
58
+ */
59
+ lightened: string;
60
+ /**
61
+ * The computed darker color based on the provided `color` and
62
+ * `darkenPercentage`. This will be used when the `theme` is
63
+ * set to `dark`.
64
+ */
65
+ darkened: string;
66
+ protected handleColorChanged(newColor: string): void;
67
+ protected handleLightenPercentageChanged(newPercentage: number): void;
68
+ protected handleDarkenPercentageChanged(newPercentage: number): void;
69
+ render(): h.JSX.IntrinsicElements;
70
+ private getThemeColors;
71
+ private getSupplementalColor;
72
+ private adjustColor;
73
+ private adjustComponent;
74
+ private padHexComponent;
75
75
  }
@@ -1,36 +1,36 @@
1
1
  import { h } from '../../stencil-public-runtime';
2
2
  export declare class ContextMenu {
3
- /**
4
- * A CSS selector for the element where this
5
- * context menu can be opened.
6
- */
7
- targetSelector: string;
8
- /**
9
- * Whether this context menu is animated on open
10
- * and close.
11
- */
12
- animated: boolean;
13
- private position?;
14
- private open;
15
- /**
16
- * Emitted when the context menu is opened.
17
- */
18
- private menuOpened;
19
- /**
20
- * Emitted when the context menu is closed.
21
- */
22
- private menuClosed;
23
- private target?;
24
- private observer;
25
- constructor();
26
- componentDidLoad(): void;
27
- disconnectedCallback(): void;
28
- handleTargetSelectorChange(targetSelector?: string): void;
29
- render(): h.JSX.IntrinsicElements;
30
- private addEventListeners;
31
- private removeEventListeners;
32
- private handleContextMenu;
33
- private handlePointerDown;
34
- private handlePointerUp;
35
- private handleMenuClosed;
3
+ /**
4
+ * A CSS selector for the element where this
5
+ * context menu can be opened.
6
+ */
7
+ targetSelector: string;
8
+ /**
9
+ * Whether this context menu is animated on open
10
+ * and close.
11
+ */
12
+ animated: boolean;
13
+ private position?;
14
+ private open;
15
+ /**
16
+ * Emitted when the context menu is opened.
17
+ */
18
+ private menuOpened;
19
+ /**
20
+ * Emitted when the context menu is closed.
21
+ */
22
+ private menuClosed;
23
+ private target?;
24
+ private observer;
25
+ constructor();
26
+ componentDidLoad(): void;
27
+ disconnectedCallback(): void;
28
+ handleTargetSelectorChange(targetSelector?: string): void;
29
+ render(): h.JSX.IntrinsicElements;
30
+ private addEventListeners;
31
+ private removeEventListeners;
32
+ private handleContextMenu;
33
+ private handlePointerDown;
34
+ private handlePointerUp;
35
+ private handleMenuClosed;
36
36
  }
@@ -1,58 +1,58 @@
1
1
  import { EventEmitter, h } from '../../stencil-public-runtime';
2
2
  export declare class Dialog {
3
- /**
4
- * Whether this dialog's content is visible.
5
- */
6
- open: boolean;
7
- /**
8
- * Whether this dialog should be full screen
9
- */
10
- fullscreen: boolean;
11
- /**
12
- * Whether this dialog can be resized.
13
- */
14
- resizable: boolean;
15
- /**
16
- * Emitted whenever the dialog's backdrop is clicked.
17
- */
18
- backdropClick: EventEmitter<void>;
19
- /**
20
- * Emitted whenever the dialog is closed;
21
- */
22
- closed: EventEmitter<void>;
23
- private hostEl;
24
- private width?;
25
- private height?;
26
- private minWidth?;
27
- private minHeight?;
28
- private maxWidth?;
29
- private maxHeight?;
30
- private isResizing;
31
- private backdropElement?;
32
- private dialogElement?;
33
- private mutationObserver;
34
- private resizeObserver;
35
- private lastPointerPosition?;
36
- private initialDialogBoundingRect?;
37
- private boundaryPadding?;
38
- constructor();
39
- protected componentDidLoad(): void;
40
- protected componentWillRender(): void;
41
- protected disconnectedCallback(): void;
42
- clearComputedValues(): void;
43
- updateOpened(open?: boolean): void;
44
- private keyDownListener;
45
- render(): h.JSX.IntrinsicElements;
46
- private handleKeyDown;
47
- private handlePointerDown;
48
- private handlePointerMove;
49
- private handlePointerUp;
50
- private constrainDimension;
51
- private constrainX;
52
- private constrainY;
53
- private getMaxWidth;
54
- private getMaxHeight;
55
- private getMinWidth;
56
- private getMinHeight;
57
- private resize;
3
+ /**
4
+ * Whether this dialog's content is visible.
5
+ */
6
+ open: boolean;
7
+ /**
8
+ * Whether this dialog should be full screen
9
+ */
10
+ fullscreen: boolean;
11
+ /**
12
+ * Whether this dialog can be resized.
13
+ */
14
+ resizable: boolean;
15
+ /**
16
+ * Emitted whenever the dialog's backdrop is clicked.
17
+ */
18
+ backdropClick: EventEmitter<void>;
19
+ /**
20
+ * Emitted whenever the dialog is closed;
21
+ */
22
+ closed: EventEmitter<void>;
23
+ private hostEl;
24
+ private width?;
25
+ private height?;
26
+ private minWidth?;
27
+ private minHeight?;
28
+ private maxWidth?;
29
+ private maxHeight?;
30
+ private isResizing;
31
+ private backdropElement?;
32
+ private dialogElement?;
33
+ private mutationObserver;
34
+ private resizeObserver;
35
+ private lastPointerPosition?;
36
+ private initialDialogBoundingRect?;
37
+ private boundaryPadding?;
38
+ constructor();
39
+ protected componentDidLoad(): void;
40
+ protected componentWillRender(): void;
41
+ protected disconnectedCallback(): void;
42
+ clearComputedValues(): void;
43
+ updateOpened(open?: boolean): void;
44
+ private keyDownListener;
45
+ render(): h.JSX.IntrinsicElements;
46
+ private handleKeyDown;
47
+ private handlePointerDown;
48
+ private handlePointerMove;
49
+ private handlePointerUp;
50
+ private constrainDimension;
51
+ private constrainX;
52
+ private constrainY;
53
+ private getMaxWidth;
54
+ private getMaxHeight;
55
+ private getMinWidth;
56
+ private getMinHeight;
57
+ private resize;
58
58
  }