@adia-ai/web-components 0.8.40 → 0.8.42

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 (410) hide show
  1. package/CHANGELOG.md +71 -3
  2. package/MIGRATION.md +1229 -16
  3. package/README.md +25 -30
  4. package/USAGE.md +30 -4
  5. package/bin/audit-template-children.mjs +556 -0
  6. package/components/accordion/accordion-item.a2ui.json +4 -0
  7. package/components/accordion/accordion-item.yaml +2 -0
  8. package/components/accordion/accordion.a2ui.json +4 -0
  9. package/components/accordion/accordion.yaml +2 -0
  10. package/components/action-list/action-item.a2ui.json +29 -2
  11. package/components/action-list/action-item.yaml +46 -3
  12. package/components/action-list/action-list.a2ui.json +6 -1
  13. package/components/action-list/action-list.class.js +114 -11
  14. package/components/action-list/action-list.css +43 -3
  15. package/components/action-list/action-list.d.ts +6 -2
  16. package/components/action-list/action-list.yaml +5 -0
  17. package/components/adia-mark/adia-mark.a2ui.json +1 -0
  18. package/components/adia-wordmark/adia-wordmark.a2ui.json +1 -0
  19. package/components/agent-artifact/agent-artifact.a2ui.json +1 -0
  20. package/components/agent-feedback-bar/agent-feedback-bar.a2ui.json +6 -5
  21. package/components/agent-feedback-bar/agent-feedback-bar.yaml +6 -2
  22. package/components/agent-questions/agent-questions.a2ui.json +1 -0
  23. package/components/agent-reasoning/agent-reasoning.a2ui.json +6 -5
  24. package/components/agent-reasoning/agent-reasoning.yaml +6 -2
  25. package/components/agent-suggestions/agent-suggestions.a2ui.json +11 -2
  26. package/components/agent-suggestions/agent-suggestions.class.js +2 -1
  27. package/components/agent-suggestions/agent-suggestions.d.ts +4 -4
  28. package/components/agent-suggestions/agent-suggestions.yaml +4 -2
  29. package/components/agent-trace/agent-trace.a2ui.json +6 -5
  30. package/components/agent-trace/agent-trace.yaml +6 -2
  31. package/components/alert/alert.a2ui.json +1 -0
  32. package/components/alert/alert.css +1 -1
  33. package/components/anchor-bar/anchor-bar.a2ui.json +1 -0
  34. package/components/aside/aside.a2ui.json +1 -0
  35. package/components/avatar/avatar-group.a2ui.json +7 -1
  36. package/components/avatar/avatar-group.yaml +1 -0
  37. package/components/avatar/avatar.a2ui.json +12 -11
  38. package/components/avatar/avatar.d.ts +1 -1
  39. package/components/avatar/avatar.yaml +4 -4
  40. package/components/badge/badge.a2ui.json +1 -0
  41. package/components/block/block.a2ui.json +1 -0
  42. package/components/blockquote/blockquote.a2ui.json +1 -0
  43. package/components/breadcrumb/breadcrumb.a2ui.json +1 -0
  44. package/components/button/button.a2ui.json +1 -3
  45. package/components/button/button.yaml +1 -3
  46. package/components/calendar-grid/calendar-grid.a2ui.json +1 -0
  47. package/components/calendar-grid/calendar-grid.class.js +2 -1
  48. package/components/calendar-picker/calendar-picker.a2ui.json +143 -24
  49. package/components/calendar-picker/calendar-picker.class.js +490 -197
  50. package/components/calendar-picker/calendar-picker.css +120 -171
  51. package/components/calendar-picker/calendar-picker.yaml +225 -47
  52. package/components/canvas/canvas.a2ui.json +6 -5
  53. package/components/canvas/canvas.d.ts +37 -0
  54. package/components/canvas/canvas.js +72 -3
  55. package/components/canvas/canvas.yaml +6 -2
  56. package/components/card/card.a2ui.json +25 -2
  57. package/components/card/card.class.js +3 -0
  58. package/components/card/card.css +31 -1
  59. package/components/card/card.d.ts +2 -2
  60. package/components/card/card.examples.md +3 -3
  61. package/components/card/card.yaml +28 -4
  62. package/components/chart/chart.a2ui.json +27 -7
  63. package/components/chart/chart.class.js +64 -22
  64. package/components/chart/chart.css +6 -4
  65. package/components/chart/chart.d.ts +10 -4
  66. package/components/chart/chart.yaml +40 -6
  67. package/components/chart-legend/chart-legend.a2ui.json +7 -1
  68. package/components/chart-legend/chart-legend.class.js +59 -6
  69. package/components/chart-legend/chart-legend.css +5 -2
  70. package/components/chart-legend/chart-legend.d.ts +3 -1
  71. package/components/chart-legend/chart-legend.yaml +15 -1
  72. package/components/chat-thread/chat-input.a2ui.json +1 -0
  73. package/components/chat-thread/chat-thread.a2ui.json +10 -9
  74. package/components/chat-thread/chat-thread.yaml +13 -20
  75. package/components/check/check.a2ui.json +10 -9
  76. package/components/check/check.yaml +4 -4
  77. package/components/code/code.a2ui.json +1 -0
  78. package/components/col/col.a2ui.json +1 -0
  79. package/components/color-area/color-area.a2ui.json +148 -0
  80. package/components/color-area/color-area.class.js +657 -0
  81. package/components/color-area/color-area.css +188 -0
  82. package/components/color-area/color-area.d.ts +66 -0
  83. package/components/color-area/color-area.examples.md +19 -0
  84. package/components/color-area/color-area.js +17 -0
  85. package/components/color-area/color-area.yaml +183 -0
  86. package/components/color-input/color-input.a2ui.json +6 -5
  87. package/components/color-input/color-input.class.js +9 -6
  88. package/components/color-input/color-input.css +1 -1
  89. package/components/color-input/color-input.js +2 -2
  90. package/components/color-input/color-input.yaml +14 -12
  91. package/components/color-picker/color-picker.a2ui.json +16 -12
  92. package/components/color-picker/color-picker.class.js +24 -633
  93. package/components/color-picker/color-picker.css +14 -182
  94. package/components/color-picker/color-picker.yaml +41 -41
  95. package/components/combobox/combobox.a2ui.json +3 -2
  96. package/components/combobox/combobox.yaml +2 -2
  97. package/components/command/command.a2ui.json +12 -10
  98. package/components/command/command.class.js +3 -2
  99. package/components/command/command.yaml +17 -4
  100. package/components/context-menu/context-menu.a2ui.json +1 -0
  101. package/components/date-range-picker/date-range-picker.a2ui.json +2 -1
  102. package/components/date-range-picker/date-range-picker.yaml +1 -1
  103. package/components/datetime-picker/datetime-picker.a2ui.json +15 -108
  104. package/components/datetime-picker/datetime-picker.class.js +37 -690
  105. package/components/datetime-picker/datetime-picker.css +11 -183
  106. package/components/datetime-picker/datetime-picker.d.ts +4 -5
  107. package/components/datetime-picker/datetime-picker.yaml +44 -135
  108. package/components/demo-toggle/demo-toggle.a2ui.json +1 -0
  109. package/components/demo-toggle/demo-toggle.css +1 -1
  110. package/components/description-list/description-list.a2ui.json +2 -1
  111. package/components/description-list/description-list.css +1 -1
  112. package/components/description-list/description-list.d.ts +1 -1
  113. package/components/description-list/description-list.yaml +1 -1
  114. package/components/display-field/display-field.a2ui.json +1 -0
  115. package/components/divider/divider.a2ui.json +1 -0
  116. package/components/drawer/drawer.a2ui.json +1 -3
  117. package/components/drawer/drawer.css +1 -1
  118. package/components/drawer/drawer.yaml +0 -2
  119. package/components/drilldown/drilldown.a2ui.json +22 -20
  120. package/components/drilldown/drilldown.class.js +4 -3
  121. package/components/drilldown/drilldown.css +6 -6
  122. package/components/drilldown/drilldown.yaml +40 -9
  123. package/components/embed/embed.a2ui.json +6 -5
  124. package/components/embed/embed.yaml +2 -2
  125. package/components/empty-state/empty-state.a2ui.json +1 -0
  126. package/components/feed/feed-item.a2ui.json +25 -5
  127. package/components/feed/feed-item.yaml +28 -7
  128. package/components/feed/feed.a2ui.json +9 -2
  129. package/components/feed/feed.class.js +19 -12
  130. package/components/feed/feed.css +8 -8
  131. package/components/feed/feed.yaml +14 -1
  132. package/components/field/field.a2ui.json +2 -1
  133. package/components/field/field.class.js +4 -1
  134. package/components/field/field.examples.md +1 -1
  135. package/components/field/field.yaml +1 -1
  136. package/components/fields/fields.a2ui.json +1 -0
  137. package/components/fields/fields.examples.md +1 -1
  138. package/components/footer/footer.a2ui.json +1 -0
  139. package/components/frame/frame.a2ui.json +1 -0
  140. package/components/grid/grid.a2ui.json +1 -0
  141. package/components/header/header.a2ui.json +3 -2
  142. package/components/header/header.yaml +3 -3
  143. package/components/heatmap/heatmap.a2ui.json +2 -1
  144. package/components/heatmap/heatmap.class.js +1 -1
  145. package/components/heatmap/heatmap.css +4 -4
  146. package/components/heatmap/heatmap.yaml +1 -1
  147. package/components/icon/icon.a2ui.json +1 -0
  148. package/components/image/image.a2ui.json +28 -14
  149. package/components/image/image.class.js +38 -23
  150. package/components/image/image.css +18 -8
  151. package/components/image/image.d.ts +2 -2
  152. package/components/image/image.examples.md +3 -3
  153. package/components/image/image.yaml +23 -7
  154. package/components/index.js +1 -0
  155. package/components/inline-edit/inline-edit.a2ui.json +1 -0
  156. package/components/inline-message/inline-message.a2ui.json +3 -1
  157. package/components/inline-message/inline-message.class.js +3 -1
  158. package/components/inline-message/inline-message.d.ts +2 -2
  159. package/components/inline-message/inline-message.yaml +2 -1
  160. package/components/input/input.a2ui.json +66 -16
  161. package/components/input/input.class.js +64 -7
  162. package/components/input/input.css +14 -14
  163. package/components/input/input.d.ts +9 -4
  164. package/components/input/input.yaml +83 -10
  165. package/components/inspector/inspector.a2ui.json +1 -0
  166. package/components/integration-card/integration-card.a2ui.json +1 -0
  167. package/components/integration-card/integration-card.examples.md +2 -1
  168. package/components/kbd/kbd.a2ui.json +1 -0
  169. package/components/link/link.a2ui.json +2 -1
  170. package/components/link/link.yaml +1 -1
  171. package/components/list/list-item.a2ui.json +9 -0
  172. package/components/list/list-item.yaml +12 -0
  173. package/components/list/list.a2ui.json +9 -3
  174. package/components/list/list.class.js +14 -1
  175. package/components/list/list.css +12 -1
  176. package/components/list/list.d.ts +7 -5
  177. package/components/list/list.yaml +16 -6
  178. package/components/list-window/list-window.a2ui.json +1 -0
  179. package/components/list-window/list-window.class.js +2 -1
  180. package/components/loading-overlay/loading-overlay.a2ui.json +1 -0
  181. package/components/mark/mark.a2ui.json +2 -1
  182. package/components/mark/mark.yaml +1 -1
  183. package/components/menu/menu-divider.a2ui.json +1 -0
  184. package/components/menu/menu-item.a2ui.json +11 -4
  185. package/components/menu/menu-item.yaml +30 -3
  186. package/components/menu/menu-label.a2ui.json +1 -0
  187. package/components/menu/menu.a2ui.json +3 -2
  188. package/components/menu/menu.class.js +36 -8
  189. package/components/menu/menu.d.ts +5 -3
  190. package/components/menu/menu.yaml +3 -3
  191. package/components/modal/modal.a2ui.json +1 -0
  192. package/components/nav/nav.a2ui.json +1 -0
  193. package/components/nav/nav.class.js +14 -3
  194. package/components/nav-group/nav-group.a2ui.json +1 -0
  195. package/components/nav-group/nav-group.class.js +3 -1
  196. package/components/nav-item/nav-item.a2ui.json +1 -0
  197. package/components/noodles/noodles.a2ui.json +1 -0
  198. package/components/noodles/noodles.class.js +5 -1
  199. package/components/number-format/number-format.a2ui.json +1 -0
  200. package/components/option-card/option-card.a2ui.json +1 -0
  201. package/components/otp-input/otp-input.a2ui.json +3 -2
  202. package/components/otp-input/otp-input.yaml +9 -2
  203. package/components/page/page.a2ui.json +13 -0
  204. package/components/page/page.d.ts +1 -1
  205. package/components/page/page.yaml +1 -0
  206. package/components/pagination/pagination.a2ui.json +1 -0
  207. package/components/pagination/pagination.class.js +3 -2
  208. package/components/pane/pane.a2ui.json +17 -1
  209. package/components/pane/pane.class.js +35 -6
  210. package/components/pane/pane.css +17 -12
  211. package/components/pane/pane.d.ts +10 -7
  212. package/components/pane/pane.yaml +18 -1
  213. package/components/password-strength/password-strength.a2ui.json +1 -0
  214. package/components/pipeline-status/pipeline-status.a2ui.json +1 -0
  215. package/components/popover/popover.a2ui.json +7 -6
  216. package/components/popover/popover.class.js +2 -2
  217. package/components/popover/popover.d.ts +2 -2
  218. package/components/popover/popover.yaml +4 -4
  219. package/components/preview/preview.a2ui.json +1 -0
  220. package/components/preview/preview.class.js +5 -1
  221. package/components/progress/progress.a2ui.json +47 -24
  222. package/components/progress/progress.class.js +66 -11
  223. package/components/progress/progress.css +44 -26
  224. package/components/progress/progress.d.ts +7 -5
  225. package/components/progress/progress.examples.md +2 -2
  226. package/components/progress/progress.yaml +235 -53
  227. package/components/progress-row/progress-row.a2ui.json +16 -12
  228. package/components/progress-row/progress-row.d.ts +2 -2
  229. package/components/progress-row/progress-row.examples.md +2 -14
  230. package/components/progress-row/progress-row.yaml +28 -36
  231. package/components/qr-code/qr-code.a2ui.json +3 -2
  232. package/components/qr-code/qr-code.class.js +4 -4
  233. package/components/qr-code/qr-code.css +1 -1
  234. package/components/qr-code/qr-code.yaml +5 -3
  235. package/components/radio/radio.a2ui.json +8 -7
  236. package/components/radio/radio.class.js +8 -0
  237. package/components/radio/radio.yaml +3 -3
  238. package/components/radio-group/radio-group.a2ui.json +5 -3
  239. package/components/radio-group/radio-group.class.js +11 -0
  240. package/components/radio-group/radio-group.yaml +7 -1
  241. package/components/range/range.a2ui.json +6 -0
  242. package/components/range/range.class.js +2 -2
  243. package/components/range/range.css +2 -2
  244. package/components/range/range.yaml +3 -0
  245. package/components/rating/rating.a2ui.json +1 -0
  246. package/components/relative-time/relative-time.a2ui.json +1 -0
  247. package/components/richtext/richtext.a2ui.json +2 -1
  248. package/components/richtext/richtext.yaml +1 -1
  249. package/components/row/row.a2ui.json +1 -0
  250. package/components/search/search.a2ui.json +1 -0
  251. package/components/search/search.class.js +4 -1
  252. package/components/section/section.a2ui.json +1 -0
  253. package/components/segment/segment.a2ui.json +21 -10
  254. package/components/segment/segment.css +15 -0
  255. package/components/segment/segment.d.ts +2 -1
  256. package/components/segment/segment.yaml +20 -13
  257. package/components/segmented/segmented.a2ui.json +36 -7
  258. package/components/segmented/segmented.class.js +113 -22
  259. package/components/segmented/segmented.css +3 -0
  260. package/components/segmented/segmented.d.ts +3 -1
  261. package/components/segmented/segmented.yaml +80 -8
  262. package/components/select/select.a2ui.json +18 -13
  263. package/components/select/select.class.js +61 -37
  264. package/components/select/select.css +15 -13
  265. package/components/select/select.yaml +18 -7
  266. package/components/skeleton/skeleton.a2ui.json +8 -7
  267. package/components/skeleton/skeleton.class.js +8 -7
  268. package/components/skeleton/skeleton.css +21 -6
  269. package/components/skeleton/skeleton.d.ts +2 -2
  270. package/components/skeleton/skeleton.examples.md +2 -2
  271. package/components/skeleton/skeleton.yaml +3 -2
  272. package/components/skip-nav/skip-nav.a2ui.json +1 -0
  273. package/components/slider/slider.a2ui.json +6 -0
  274. package/components/slider/slider.class.js +20 -3
  275. package/components/slider/slider.css +2 -2
  276. package/components/slider/slider.yaml +3 -0
  277. package/components/spinner/spinner.a2ui.json +1 -0
  278. package/components/stack/stack.a2ui.json +1 -0
  279. package/components/stat/stat.a2ui.json +1 -0
  280. package/components/stat/stat.js +2 -2
  281. package/components/step-progress/step-progress.a2ui.json +1 -0
  282. package/components/step-progress/step-progress.yaml +1 -1
  283. package/components/stepper/stepper-item.a2ui.json +7 -3
  284. package/components/stepper/stepper-item.yaml +15 -5
  285. package/components/stepper/stepper.a2ui.json +5 -1
  286. package/components/stepper/stepper.class.js +31 -16
  287. package/components/stepper/stepper.d.ts +1 -1
  288. package/components/stepper/stepper.yaml +4 -2
  289. package/components/stream/stream.a2ui.json +1 -0
  290. package/components/swatch/swatch.a2ui.json +1 -0
  291. package/components/swatch/swatch.yaml +1 -1
  292. package/components/swiper/swiper.a2ui.json +1 -0
  293. package/components/swiper/swiper.class.js +5 -1
  294. package/components/switch/switch.a2ui.json +12 -11
  295. package/components/switch/switch.css +1 -1
  296. package/components/switch/switch.yaml +6 -6
  297. package/components/table/table.a2ui.json +1 -0
  298. package/components/table/table.class.js +14 -12
  299. package/components/table/table.css +11 -9
  300. package/components/table-toolbar/table-toolbar.a2ui.json +1 -0
  301. package/components/table-toolbar/table-toolbar.class.js +53 -22
  302. package/components/table-toolbar/table-toolbar.css +1 -1
  303. package/components/tabs/tab.a2ui.json +9 -0
  304. package/components/tabs/tab.js +4 -0
  305. package/components/tabs/tab.yaml +15 -0
  306. package/components/tabs/tabs.a2ui.json +9 -4
  307. package/components/tabs/tabs.class.js +13 -1
  308. package/components/tabs/tabs.css +8 -0
  309. package/components/tabs/tabs.d.ts +2 -0
  310. package/components/tabs/tabs.yaml +9 -2
  311. package/components/tag/tag.a2ui.json +1 -0
  312. package/components/tags-input/tags-input.a2ui.json +22 -17
  313. package/components/tags-input/tags-input.class.js +13 -11
  314. package/components/tags-input/tags-input.css +10 -6
  315. package/components/tags-input/tags-input.d.ts +16 -7
  316. package/components/tags-input/tags-input.examples.md +2 -2
  317. package/components/tags-input/tags-input.yaml +25 -8
  318. package/components/text/text.a2ui.json +6 -5
  319. package/components/text/text.css +10 -5
  320. package/components/text/text.d.ts +2 -2
  321. package/components/text/text.yaml +9 -4
  322. package/components/textarea/textarea.a2ui.json +2 -1
  323. package/components/textarea/textarea.yaml +1 -1
  324. package/components/theme-provider/theme-provider.a2ui.json +2 -1
  325. package/components/theme-provider/theme-provider.d.ts +5 -3
  326. package/components/theme-provider/theme-provider.yaml +5 -3
  327. package/components/time-picker/time-picker.a2ui.json +1 -0
  328. package/components/time-picker/time-picker.class.js +4 -2
  329. package/components/timeline/timeline-item.a2ui.json +26 -3
  330. package/components/timeline/timeline-item.yaml +22 -7
  331. package/components/timeline/timeline.a2ui.json +4 -0
  332. package/components/timeline/timeline.class.js +29 -18
  333. package/components/timeline/timeline.d.ts +3 -3
  334. package/components/timeline/timeline.yaml +2 -0
  335. package/components/toast/toast.a2ui.json +10 -3
  336. package/components/toast/toast.yaml +20 -13
  337. package/components/toc/toc.a2ui.json +1 -0
  338. package/components/toggle-group/toggle-group.a2ui.json +7 -3
  339. package/components/toggle-group/toggle-group.class.js +40 -1
  340. package/components/toggle-group/toggle-group.css +6 -1
  341. package/components/toggle-group/toggle-group.d.ts +2 -2
  342. package/components/toggle-group/toggle-group.yaml +21 -12
  343. package/components/toggle-group/toggle-option.a2ui.json +7 -3
  344. package/components/toggle-group/toggle-option.yaml +13 -7
  345. package/components/toggle-scheme/toggle-scheme.a2ui.json +2 -1
  346. package/components/toggle-scheme/toggle-scheme.yaml +1 -1
  347. package/components/toolbar/toolbar-group.a2ui.json +1 -0
  348. package/components/toolbar/toolbar.a2ui.json +1 -0
  349. package/components/toolbar/toolbar.class.js +3 -0
  350. package/components/tooltip/tooltip.a2ui.json +1 -0
  351. package/components/tour/tour-step.a2ui.json +4 -0
  352. package/components/tour/tour-step.yaml +2 -0
  353. package/components/tour/tour.a2ui.json +4 -0
  354. package/components/tour/tour.yaml +2 -0
  355. package/components/tree/tree-item.a2ui.json +5 -0
  356. package/components/tree/tree-item.yaml +3 -0
  357. package/components/tree/tree.a2ui.json +4 -0
  358. package/components/tree/tree.class.js +2 -1
  359. package/components/tree/tree.yaml +2 -0
  360. package/components/upload/upload.a2ui.json +8 -1
  361. package/components/upload/upload.class.js +35 -5
  362. package/components/upload/upload.css +28 -0
  363. package/components/upload/upload.d.ts +16 -0
  364. package/components/upload/upload.yaml +27 -7
  365. package/components/visually-hidden/visually-hidden.a2ui.json +1 -0
  366. package/core/dom.d.ts +11 -0
  367. package/core/dom.js +34 -0
  368. package/core/form.js +7 -0
  369. package/core/icons.js +5 -0
  370. package/core/index.d.ts +1 -0
  371. package/core/index.js +1 -0
  372. package/core/responsive.js +16 -4
  373. package/core/template.js +2 -1
  374. package/custom-elements.json +710 -587
  375. package/dist/host.min.css +1 -1
  376. package/dist/host.sheet.js +1 -1
  377. package/dist/theme-provider.min.js +5 -5
  378. package/dist/web-components.min.css +1 -1
  379. package/dist/web-components.min.js +92 -105
  380. package/dist/web-components.sheet.js +1 -1
  381. package/index.d.ts +12 -1
  382. package/package.json +4 -2
  383. package/patterns/admin-shell/admin-shell.examples.html +2 -2
  384. package/patterns/conversion-funnel/conversion-funnel.examples.html +15 -15
  385. package/patterns/form-system/form-system.examples.html +1 -1
  386. package/patterns/inline-dialog/inline-dialog.examples.html +2 -2
  387. package/patterns/inline-dialog/inline-dialog.html +4 -0
  388. package/patterns/timezone-selector/timezone-selector.examples.html +1 -1
  389. package/patterns/timezone-selector/timezone-selector.html +2 -2
  390. package/styles/api/text.css +7 -0
  391. package/styles/components.css +1 -0
  392. package/traits/_catalog.json +129 -41
  393. package/traits/anchor-positioning/anchor-positioning.js +1 -0
  394. package/traits/announcer/announcer.js +1 -0
  395. package/traits/arrow-grid-nav/arrow-grid-nav.js +1 -0
  396. package/traits/attention-pulse/attention-pulse.js +1 -0
  397. package/traits/count-up/count-up.js +1 -0
  398. package/traits/define.js +78 -0
  399. package/traits/focus-restore/focus-restore.js +2 -1
  400. package/traits/haptic-feedback/haptic-feedback.js +1 -0
  401. package/traits/input-mask/input-mask.js +1 -0
  402. package/traits/intersection-observer/intersection-observer.js +1 -0
  403. package/traits/layout-animation/layout-animation.js +1 -0
  404. package/traits/noise-texture/noise-texture.js +1 -0
  405. package/traits/resize-observer/resize-observer.js +1 -0
  406. package/traits/scroll-progress/scroll-progress.js +1 -0
  407. package/traits/snap-to-grid/snap-to-grid.js +1 -0
  408. package/traits/sound-feedback/sound-feedback.js +1 -0
  409. package/traits/spring-animate/spring-animate.js +1 -0
  410. package/traits/validation/validation.js +1 -0
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Non-side-effect class export for `<color-picker-ui>`.
3
3
  *
4
- * Importing this file gives you the class(es) without auto-registering the tag.
4
+ * Importing this file gives you the class without auto-registering the tag.
5
5
  * Useful for test isolation, subclassing with tag-name override, or selective
6
6
  * composition.
7
7
  *
@@ -12,644 +12,35 @@
12
12
  */
13
13
 
14
14
  /**
15
- * <color-picker-ui value="#3b82f6" format="hex"></color-picker-ui>
15
+ * <color-picker-ui> — DEPRECATED (ADR-0063, gh#1563, gh#1377 B11).
16
16
  *
17
- * OKLCH-native color picker with 2D area + H/C/L sliders.
17
+ * `-picker` is reserved for the outer, trigger + popover, form-associated
18
+ * composite shape (`calendar-picker-ui` / `date-range-picker-ui` /
19
+ * `datetime-picker-ui` / `time-picker-ui`) — `color-picker-ui` was the sole
20
+ * violator, playing `calendar-grid-ui`'s inline-substrate role under a
21
+ * `-picker` name. The real implementation moved to `<color-area-ui>`
22
+ * (mirrors `calendar-grid-ui`'s own plain, shape-describing substrate
23
+ * naming). `<color-picker-ui>` is now a thin compatibility alias per
24
+ * ADR-0057's `status: deprecated` shape (same pattern as
25
+ * `<datetime-picker-ui>` → `<calendar-picker-ui>`, gh#1372): it subclasses
26
+ * `UIColorArea` directly rather than re-implementing any behavior.
18
27
  *
19
- * Layout:
20
- * [═══════════ color area (chroma x lightness) ═══════════]
21
- * H [────────────── slider ──────────────] 260
22
- * C [────────────── slider ──────────────] 0.188
23
- * L [────────────── slider ──────────────] 0.623
24
- * [───────────────── hue track ──────────────────]
25
- * oklch(0.62 0.188 260) [copy]
26
- * #3b82f6 [copy]
28
+ * Migrate: `<color-picker-ui>` → `<color-area-ui>`. This tag keeps
29
+ * working — it IS `<color-area-ui>` under the hood — but will be removed
30
+ * in a future major; new markup should reach for `<color-area-ui>`
31
+ * directly.
27
32
  *
28
- * Dogfoods: slider-ui (H/C/L channels)
29
- * Form-associated via UIFormElement + ElementInternals.
33
+ * @see ../color-area/color-area.class.js
30
34
  */
31
35
 
32
- import { UIFormElement } from '../../core/form.js';
36
+ import { UIColorArea } from '../color-area/color-area.class.js';
33
37
 
34
- // ── OKLCH sRGB conversion ──────────────────────────────
35
-
36
- const MAX_CHROMA = 0.4;
37
-
38
- function oklchToOklab(L, C, H) {
39
- const hRad = H * Math.PI / 180;
40
- return { L, a: C * Math.cos(hRad), b: C * Math.sin(hRad) };
41
- }
42
-
43
- function oklabToLinearSrgb(L, a, b) {
44
- const l_ = L + 0.3963377774 * a + 0.2158037573 * b;
45
- const m_ = L - 0.1055613458 * a - 0.0638541728 * b;
46
- const s_ = L - 0.0894841775 * a - 1.2914855480 * b;
47
- const l = l_ * l_ * l_;
48
- const m = m_ * m_ * m_;
49
- const s = s_ * s_ * s_;
50
- return [
51
- +4.0767416621 * l - 3.3077115913 * m + 0.2309699292 * s,
52
- -1.2684380046 * l + 2.6097574011 * m - 0.3413193965 * s,
53
- -0.0041960863 * l - 0.7034186147 * m + 1.7076147010 * s,
54
- ];
55
- }
56
-
57
- function linearToSrgb(c) {
58
- return c <= 0.0031308 ? 12.92 * c : 1.055 * Math.pow(c, 1 / 2.4) - 0.055;
59
- }
60
-
61
- function srgbToLinear(c) {
62
- return c <= 0.04045 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
63
- }
64
-
65
- function oklchToRgb(L, C, H) {
66
- const { a, b } = oklchToOklab(L, C, H);
67
- const [lr, lg, lb] = oklabToLinearSrgb(L, a, b);
68
- return [
69
- Math.max(0, Math.min(1, linearToSrgb(lr))),
70
- Math.max(0, Math.min(1, linearToSrgb(lg))),
71
- Math.max(0, Math.min(1, linearToSrgb(lb))),
72
- ];
73
- }
74
-
75
- function rgbToHex(r, g, b) {
76
- const h = c => Math.round(c * 255).toString(16).padStart(2, '0');
77
- return `#${h(r)}${h(g)}${h(b)}`;
78
- }
79
-
80
- function oklchToHex(L, C, H) {
81
- const [r, g, b] = oklchToRgb(L, C, H);
82
- return rgbToHex(r, g, b);
83
- }
84
-
85
- function hexToOklch(hex) {
86
- hex = hex.replace('#', '');
87
- if (hex.length === 3) hex = hex[0]+hex[0]+hex[1]+hex[1]+hex[2]+hex[2];
88
- const r = srgbToLinear(parseInt(hex.slice(0,2),16)/255);
89
- const g = srgbToLinear(parseInt(hex.slice(2,4),16)/255);
90
- const b = srgbToLinear(parseInt(hex.slice(4,6),16)/255);
91
- const l_ = Math.cbrt(0.4122214708*r + 0.5363325363*g + 0.0514459929*b);
92
- const m_ = Math.cbrt(0.2119034982*r + 0.6806995451*g + 0.1073969566*b);
93
- const s_ = Math.cbrt(0.0883024619*r + 0.2817188376*g + 0.6299787005*b);
94
- const L = 0.2104542553*l_ + 0.7936177850*m_ - 0.0040720468*s_;
95
- const a = 1.9779984951*l_ - 2.4285922050*m_ + 0.4505937099*s_;
96
- const bv = 0.0259040371*l_ + 0.7827717662*m_ - 0.8086757660*s_;
97
- const C = Math.sqrt(a*a + bv*bv);
98
- let H = Math.atan2(bv, a) * 180 / Math.PI;
99
- if (H < 0) H += 360;
100
- return { L, C, H };
101
- }
102
-
103
- function isInGamut(r, g, b) {
104
- const e = 0.001;
105
- return r >= -e && r <= 1+e && g >= -e && g <= 1+e && b >= -e && b <= 1+e;
106
- }
107
-
108
- function gamutMapChroma(L, C, H) {
109
- const { a, b } = oklchToOklab(L, C, H);
110
- const [lr, lg, lb] = oklabToLinearSrgb(L, a, b);
111
- if (isInGamut(linearToSrgb(lr), linearToSrgb(lg), linearToSrgb(lb))) return C;
112
- let lo = 0, hi = C;
113
- for (let i = 0; i < 8; i++) {
114
- const mid = (lo + hi) / 2;
115
- const { a: ma, b: mb } = oklchToOklab(L, mid, H);
116
- const [mr, mg, mbb] = oklabToLinearSrgb(L, ma, mb);
117
- if (isInGamut(linearToSrgb(mr), linearToSrgb(mg), linearToSrgb(mbb))) lo = mid;
118
- else hi = mid;
119
- }
120
- return lo;
121
- }
122
-
123
- // ── Component ────────────────────────────────────────────
124
-
125
- export class UIColorPicker extends UIFormElement {
126
- // §154 (v0.5.3): Phosphor icons this primitive auto-stamps (without
127
- // consumer markup). Aggregated by installIconLoadersForRegistered()
128
- // across all defined elements. Audited by check-required-icons.mjs
129
- // (slot 11). Per FEEDBACK-06 §4 + FEEDBACK-07 §4.
38
+ export class UIColorPicker extends UIColorArea {
39
+ // Same value as UIColorArea's — the alias stamps no icon of its own —
40
+ // but restated literally because scripts/release/check-required-icons.mjs
41
+ // text-scans each component's own class.js and cannot resolve inheritance
42
+ // (gh#1503, same rationale datetime-picker.class.js documents).
130
43
  static requiredIcons = ['copy', 'check', 'warning'];
131
44
 
132
- // §201 (v0.5.7): once-per-element warn dedup for #parseValue malformed
133
- // input. Matches the v0.5.5 §184 §8 button-ui icon-only safety-net pattern
134
- // + v0.5.7 §215 select-ui parseOptions pattern. Per FEEDBACK-13 §1 +
135
- // FEEDBACK-14 §2 (co-credited).
136
- static #warnedBadParse = new WeakSet();
137
-
138
- static properties = {
139
- ...UIFormElement.properties,
140
- value: { type: String, default: '#3b82f6', reflect: true },
141
- format: { type: String, default: 'hex', reflect: true },
142
- disabled: { type: Boolean, default: false, reflect: true },
143
- /**
144
- * v0.4.9 §99h — generation-constraint props (FEEDBACK-02 #7).
145
- * When set, the picker clamps OKLCH channels to the consumer's
146
- * declared bounds before committing. Out-of-bound mutations
147
- * round-trip to the nearest in-bound equivalent + fire a
148
- * `constraint-clamp` event with `{ axis, requested, clamped, reason }`
149
- * so the consumer can surface UX feedback (toast, validity warning,
150
- * scope-drift indicator). Default values disable the constraint.
151
- */
152
- maxChroma: { type: Number, default: Infinity, reflect: true, attribute: 'max-chroma' },
153
- maxL: { type: Number, default: 1, reflect: true, attribute: 'max-l' },
154
- minL: { type: Number, default: 0, reflect: true, attribute: 'min-l' },
155
- /** Maximum allowed hue deviation in degrees from the picker's `baseHue`. NaN = no constraint. */
156
- hueDriftMax: { type: Number, default: NaN, reflect: true, attribute: 'hue-drift-max' },
157
- /** Reference hue (degrees) for [hue-drift-max]. NaN = use the value parsed at first commit. */
158
- baseHue: { type: Number, default: NaN, reflect: true, attribute: 'base-hue' },
159
- };
160
-
161
- #L = 0.6; #C = 0.15; #H = 230;
162
- /** Cached reference hue for hue-drift constraint. Set on first commit if [base-hue] isn't authored. */
163
- #resolvedBaseHue = NaN;
164
- #bound = false;
165
- #dragging = null; // 'area' | 'hue' | null
166
- #internalUpdate = false;
167
-
168
- // DOM refs
169
- #canvas = null;
170
- #ctx = null;
171
- #areaEl = null;
172
- #areaThumb = null;
173
- #hueTrack = null;
174
- #hueThumb = null;
175
- #oklchVal = null;
176
- #hexVal = null;
177
- #areaResizeObs = null;
178
- #hueSlider = null;
179
- #chromaSlider = null;
180
- #lightnessSlider = null;
181
- #copyButtons = []; // [{ el, handler }]
182
- #copyTimer = null;
183
-
184
- static template = () => null;
185
-
186
- // ── Stable listeners ──
187
-
188
- #onSliderInput = (e) => {
189
- const slider = e.currentTarget;
190
- const channel = slider.getAttribute('data-channel');
191
- if (channel === 'hue') this.#H = +slider.value;
192
- else if (channel === 'chroma') this.#C = +slider.value;
193
- else if (channel === 'lightness') this.#L = +slider.value;
194
- this.#commit('input');
195
- };
196
-
197
- #onAreaPointerDown = (e) => {
198
- if (this.disabled) return;
199
- this.#dragging = 'area';
200
- this.#areaEl.setPointerCapture(e.pointerId);
201
- this.#updateAreaFromPointer(e);
202
- };
203
-
204
- #onAreaPointerMove = (e) => {
205
- if (this.#dragging === 'area') this.#updateAreaFromPointer(e);
206
- };
207
-
208
- #onAreaPointerUp = () => {
209
- if (this.#dragging === 'area') { this.#dragging = null; this.#commit('change'); }
210
- };
211
-
212
- #onHuePointerDown = (e) => {
213
- if (this.disabled) return;
214
- this.#dragging = 'hue';
215
- this.#hueTrack.setPointerCapture(e.pointerId);
216
- this.#updateHueFromPointer(e);
217
- };
218
-
219
- #onHuePointerMove = (e) => {
220
- if (this.#dragging === 'hue') this.#updateHueFromPointer(e);
221
- };
222
-
223
- #onHuePointerUp = () => {
224
- if (this.#dragging === 'hue') { this.#dragging = null; this.#commit('change'); }
225
- };
226
-
227
- #onAreaKeydown = (e) => {
228
- if (this.disabled) return;
229
- const step = e.shiftKey ? 0.05 : 0.01;
230
- const cStep = e.shiftKey ? 0.04 : 0.004;
231
- switch (e.key) {
232
- case 'ArrowRight': e.preventDefault(); this.#C = Math.min(MAX_CHROMA, this.#C + cStep); break;
233
- case 'ArrowLeft': e.preventDefault(); this.#C = Math.max(0, this.#C - cStep); break;
234
- case 'ArrowUp': e.preventDefault(); this.#L = Math.min(1, this.#L + step); break;
235
- case 'ArrowDown': e.preventDefault(); this.#L = Math.max(0, this.#L - step); break;
236
- default: return;
237
- }
238
- this.#commit('change');
239
- };
240
-
241
- #onHueKeydown = (e) => {
242
- if (this.disabled) return;
243
- const step = e.shiftKey ? 10 : 1;
244
- switch (e.key) {
245
- case 'ArrowRight': case 'ArrowUp': e.preventDefault(); this.#H = (this.#H + step) % 360; break;
246
- case 'ArrowLeft': case 'ArrowDown': e.preventDefault(); this.#H = (this.#H - step + 360) % 360; break;
247
- default: return;
248
- }
249
- this.#commit('change');
250
- };
251
-
252
- connected() {
253
- super.connected();
254
- this.#parseValue(this.value);
255
-
256
- if (this.#bound) return;
257
- this.#bound = true;
258
-
259
- // ── Build DOM ──
260
-
261
- // Color area
262
- this.#areaEl = document.createElement('div');
263
- this.#areaEl.setAttribute('data-area', '');
264
- this.#areaEl.setAttribute('tabindex', '0');
265
- this.#areaEl.setAttribute('role', 'slider');
266
- this.#areaEl.setAttribute('aria-label', 'Color area: chroma and lightness');
267
-
268
- this.#canvas = document.createElement('canvas');
269
- this.#canvas.style.cssText = 'width:100%;height:100%;display:block;border-radius:inherit;';
270
- this.#areaEl.appendChild(this.#canvas);
271
- this.#ctx = this.#canvas.getContext('2d', { willReadFrequently: true });
272
-
273
- this.#areaThumb = document.createElement('div');
274
- this.#areaThumb.setAttribute('data-area-thumb', '');
275
- this.#areaEl.appendChild(this.#areaThumb);
276
-
277
- this.appendChild(this.#areaEl);
278
-
279
- // Slider rows
280
- const sliders = document.createElement('div');
281
- sliders.setAttribute('data-sliders', '');
282
-
283
- const makeSlider = (label, channel, min, max, step) => {
284
- const slider = document.createElement('slider-ui');
285
- slider.setAttribute('data-channel', channel);
286
- slider.setAttribute('label', label);
287
- slider.setAttribute('min', min);
288
- slider.setAttribute('max', max);
289
- slider.setAttribute('step', step);
290
-
291
- slider.addEventListener('input', this.#onSliderInput);
292
-
293
- sliders.appendChild(slider);
294
- return slider;
295
- };
296
-
297
- this.#hueSlider = makeSlider('H', 'hue', 0, 360, 1);
298
- this.#chromaSlider = makeSlider('C', 'chroma', 0, MAX_CHROMA, 0.001);
299
- this.#lightnessSlider = makeSlider('L', 'lightness', 0, 1, 0.001);
300
- this.appendChild(sliders);
301
-
302
- // Hue gradient track
303
- this.#hueTrack = document.createElement('div');
304
- this.#hueTrack.setAttribute('data-hue-track', '');
305
- this.#hueTrack.setAttribute('tabindex', '0');
306
- this.#hueTrack.setAttribute('role', 'slider');
307
- this.#hueTrack.setAttribute('aria-label', 'Hue');
308
- this.#hueThumb = document.createElement('div');
309
- this.#hueThumb.setAttribute('data-hue-thumb', '');
310
- this.#hueTrack.appendChild(this.#hueThumb);
311
- this.appendChild(this.#hueTrack);
312
-
313
- // Output rows
314
- const output = document.createElement('div');
315
- output.setAttribute('data-output', '');
316
-
317
- const makeOutput = (format) => {
318
- const group = document.createElement('div');
319
- group.setAttribute('data-output-group', '');
320
-
321
- const val = document.createElement('span');
322
- val.setAttribute('data-output-value', '');
323
- val.setAttribute('data-format', format);
324
-
325
- const btn = document.createElement('div');
326
- btn.setAttribute('role', 'button');
327
- btn.setAttribute('tabindex', '0');
328
- btn.setAttribute('data-copy', format);
329
- btn.setAttribute('aria-label', `Copy ${format}`);
330
- btn.innerHTML = '<icon-ui name="copy"></icon-ui>';
331
- const handler = () => this.#copy(format, btn);
332
- btn.addEventListener('click', handler);
333
- this.#copyButtons.push({ el: btn, handler });
334
-
335
- group.appendChild(val);
336
- group.appendChild(btn);
337
- output.appendChild(group);
338
- return val;
339
- };
340
-
341
- this.#oklchVal = makeOutput('oklch');
342
- this.#hexVal = makeOutput('hex');
343
- this.appendChild(output);
344
-
345
- // ── Area drag ──
346
-
347
- this.#areaEl.addEventListener('pointerdown', this.#onAreaPointerDown);
348
- this.#areaEl.addEventListener('pointermove', this.#onAreaPointerMove);
349
- this.#areaEl.addEventListener('pointerup', this.#onAreaPointerUp);
350
-
351
- // ── Hue track drag ──
352
-
353
- this.#hueTrack.addEventListener('pointerdown', this.#onHuePointerDown);
354
- this.#hueTrack.addEventListener('pointermove', this.#onHuePointerMove);
355
- this.#hueTrack.addEventListener('pointerup', this.#onHuePointerUp);
356
-
357
- // ── Keyboard on area ──
358
-
359
- this.#areaEl.addEventListener('keydown', this.#onAreaKeydown);
360
-
361
- // ── Keyboard on hue ──
362
-
363
- this.#hueTrack.addEventListener('keydown', this.#onHueKeydown);
364
-
365
- // Observe area resize to redraw canvas.
366
- // gh#285 — SSR DOM shims (linkedom) have no ResizeObserver global.
367
- if (typeof ResizeObserver !== 'undefined') {
368
- this.#areaResizeObs = new ResizeObserver(() => this.#drawArea());
369
- this.#areaResizeObs.observe(this.#areaEl);
370
- }
371
- }
372
-
373
- disconnected() {
374
- super.disconnected();
375
- if (this.#copyTimer != null) {
376
- clearTimeout(this.#copyTimer);
377
- this.#copyTimer = null;
378
- }
379
- if (this.#areaResizeObs) {
380
- this.#areaResizeObs.disconnect();
381
- this.#areaResizeObs = null;
382
- }
383
- if (this.#areaEl) {
384
- this.#areaEl.removeEventListener('pointerdown', this.#onAreaPointerDown);
385
- this.#areaEl.removeEventListener('pointermove', this.#onAreaPointerMove);
386
- this.#areaEl.removeEventListener('pointerup', this.#onAreaPointerUp);
387
- this.#areaEl.removeEventListener('keydown', this.#onAreaKeydown);
388
- }
389
- if (this.#hueTrack) {
390
- this.#hueTrack.removeEventListener('pointerdown', this.#onHuePointerDown);
391
- this.#hueTrack.removeEventListener('pointermove', this.#onHuePointerMove);
392
- this.#hueTrack.removeEventListener('pointerup', this.#onHuePointerUp);
393
- this.#hueTrack.removeEventListener('keydown', this.#onHueKeydown);
394
- }
395
- this.#hueSlider?.removeEventListener('input', this.#onSliderInput);
396
- this.#chromaSlider?.removeEventListener('input', this.#onSliderInput);
397
- this.#lightnessSlider?.removeEventListener('input', this.#onSliderInput);
398
- for (const { el, handler } of this.#copyButtons) {
399
- el.removeEventListener('click', handler);
400
- }
401
- this.#copyButtons = [];
402
- this.#bound = false;
403
- }
404
-
405
- // ── Pointer helpers ──
406
-
407
- #updateAreaFromPointer(e) {
408
- const rect = this.#areaEl.getBoundingClientRect();
409
- const x = Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width));
410
- const y = Math.max(0, Math.min(1, (e.clientY - rect.top) / rect.height));
411
- this.#C = x * MAX_CHROMA;
412
- this.#L = 1 - y;
413
- this.#commit('input');
414
- }
415
-
416
- #updateHueFromPointer(e) {
417
- const rect = this.#hueTrack.getBoundingClientRect();
418
- const x = Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width));
419
- this.#H = x * 360;
420
- this.#commit('input');
421
- }
422
-
423
- // ── Value parsing ──
424
-
425
- #parseValue(val) {
426
- if (!val) return;
427
- if (val.startsWith('#')) {
428
- const o = hexToOklch(val);
429
- this.#L = o.L; this.#C = o.C; this.#H = o.H;
430
- return;
431
- }
432
- if (val.startsWith('oklch(')) {
433
- // §201 (v0.5.7, FEEDBACK-13 §1 + FEEDBACK-14 §2): accept floats, percent
434
- // on L, NaN (culori chromaless convention), and 'none' (CSS Color L4
435
- // powerless-component syntax). Channel-level normalization: NaN/none → 0;
436
- // percent on L → divide by 100. Per the CSS Color L4 "powerless" cascade
437
- // (https://www.w3.org/TR/css-color-4/#powerless), zeroing the hue channel
438
- // is the spec-defined resolution when chroma is 0 or near-0.
439
- const m = val.match(
440
- /oklch\(\s*([\d.]+%?|NaN|none)\s+([\d.]+%?|NaN|none)\s+([\d.]+|NaN|none)/i,
441
- );
442
- if (m) {
443
- const parseChan = (s, isL) => {
444
- if (s === 'none' || /^NaN$/i.test(s)) return 0;
445
- if (isL && s.endsWith('%')) return +s.slice(0, -1) / 100;
446
- if (s.endsWith('%')) return +s.slice(0, -1) / 100;
447
- return +s;
448
- };
449
- this.#L = parseChan(m[1], true);
450
- this.#C = parseChan(m[2], false);
451
- this.#H = parseChan(m[3], false);
452
- return;
453
- }
454
- // No regex match — warn once per element so consumers can correct.
455
- // WeakSet dedup matches v0.5.5 §184 §8 button-ui icon-only pattern.
456
- if (!UIColorPicker.#warnedBadParse.has(this)) {
457
- UIColorPicker.#warnedBadParse.add(this);
458
- // eslint-disable-next-line no-console
459
- console.warn(
460
- `<color-picker-ui>: could not parse value=${JSON.stringify(val)}. ` +
461
- `Expected #rrggbb or oklch(L C H) with numeric, NaN, 'none' (CSS L4 ` +
462
- `powerless), or % channels. Picker is keeping prior state.`,
463
- );
464
- }
465
- }
466
- }
467
-
468
- // ── Commit: clamp to consumer constraints + gamut-map + update value + fire events ──
469
-
470
- #commit(eventType) {
471
- // Apply consumer-declared constraints BEFORE gamut mapping. Each constraint
472
- // axis records a `constraint-clamp` event-payload entry when it actually
473
- // moved a value; we dispatch one event per commit so the consumer can
474
- // surface a single UX response (toast / validity warning / etc.).
475
- const clamps = [];
476
- if (this.#L > this.maxL) {
477
- clamps.push({ axis: 'l', requested: this.#L, clamped: this.maxL, reason: 'max-l' });
478
- this.#L = this.maxL;
479
- }
480
- if (this.#L < this.minL) {
481
- clamps.push({ axis: 'l', requested: this.#L, clamped: this.minL, reason: 'min-l' });
482
- this.#L = this.minL;
483
- }
484
- if (this.#C > this.maxChroma) {
485
- clamps.push({ axis: 'c', requested: this.#C, clamped: this.maxChroma, reason: 'max-chroma' });
486
- this.#C = this.maxChroma;
487
- }
488
- if (Number.isFinite(this.hueDriftMax)) {
489
- const base = Number.isFinite(this.baseHue)
490
- ? this.baseHue
491
- : (Number.isFinite(this.#resolvedBaseHue) ? this.#resolvedBaseHue : this.#H);
492
- if (!Number.isFinite(this.#resolvedBaseHue)) this.#resolvedBaseHue = base;
493
- // Hue is circular — find the signed shortest-path drift in [-180, 180].
494
- let drift = ((this.#H - base + 540) % 360) - 180;
495
- const limit = this.hueDriftMax;
496
- if (drift > limit) {
497
- const requestedH = this.#H;
498
- this.#H = (base + limit + 360) % 360;
499
- clamps.push({ axis: 'h', requested: requestedH, clamped: this.#H, reason: 'hue-drift-max' });
500
- } else if (drift < -limit) {
501
- const requestedH = this.#H;
502
- this.#H = (base - limit + 360) % 360;
503
- clamps.push({ axis: 'h', requested: requestedH, clamped: this.#H, reason: 'hue-drift-max' });
504
- }
505
- }
506
-
507
- const clampedC = gamutMapChroma(this.#L, this.#C, this.#H);
508
- const hexVal = oklchToHex(this.#L, clampedC, this.#H);
509
- const oklchStr = this.#oklchStr();
510
-
511
- this.#internalUpdate = true;
512
- this.value = this.format === 'oklch' ? oklchStr : hexVal;
513
- this.syncValue();
514
-
515
- if (clamps.length) {
516
- this.dispatchEvent(new CustomEvent('constraint-clamp', { bubbles: true, detail: { clamps } }));
517
- }
518
-
519
- const detail = { value: this.value, l: this.#L, c: this.#C, h: this.#H, hex: hexVal, oklch: oklchStr };
520
- this.dispatchEvent(new CustomEvent(eventType, { bubbles: true, detail }));
521
- }
522
-
523
- #oklchStr() {
524
- return `oklch(${this.#L.toFixed(2)} ${this.#C.toFixed(3)} ${Math.round(this.#H)})`;
525
- }
526
-
527
- // ── Copy ──
528
-
529
- #copy(fmt, btn) {
530
- const text = fmt === 'oklch'
531
- ? this.#oklchStr()
532
- : oklchToHex(this.#L, gamutMapChroma(this.#L, this.#C, this.#H), this.#H);
533
-
534
- const iconEl = btn.querySelector('icon-ui');
535
- const onDone = (ok) => {
536
- if (iconEl) {
537
- iconEl.setAttribute('name', ok ? 'check' : 'warning');
538
- if (this.#copyTimer != null) clearTimeout(this.#copyTimer);
539
- this.#copyTimer = setTimeout(() => {
540
- this.#copyTimer = null;
541
- iconEl.setAttribute('name', 'copy');
542
- }, 1500);
543
- }
544
- };
545
-
546
- if (navigator.clipboard?.writeText) {
547
- navigator.clipboard.writeText(text).then(
548
- () => { if (!this.isConnected) return; onDone(true); },
549
- () => { if (!this.isConnected) return; onDone(false); },
550
- );
551
- } else {
552
- const ta = Object.assign(document.createElement('textarea'), { value: text });
553
- ta.style.cssText = 'position:fixed;opacity:0';
554
- document.body.appendChild(ta);
555
- ta.select();
556
- onDone(document.execCommand('copy'));
557
- ta.remove();
558
- }
559
- }
560
-
561
- // ── Canvas rendering ──
562
-
563
- #drawArea() {
564
- if (!this.#canvas || !this.#ctx || !this.#areaEl) return;
565
-
566
- const dpr = Math.min(window.devicePixelRatio || 1, 2) * 0.5;
567
- const w = Math.round(this.#areaEl.clientWidth * dpr);
568
- const h = Math.round(this.#areaEl.clientHeight * dpr);
569
- if (w <= 0 || h <= 0) return;
570
-
571
- this.#canvas.width = w;
572
- this.#canvas.height = h;
573
-
574
- const img = this.#ctx.createImageData(w, h);
575
- const data = img.data;
576
- const hue = this.#H;
577
-
578
- for (let y = 0; y < h; y++) {
579
- const L = 1 - y / (h - 1);
580
- for (let x = 0; x < w; x++) {
581
- const C = (x / (w - 1)) * MAX_CHROMA;
582
- const clampedC = gamutMapChroma(L, C, hue);
583
- const [r, g, b] = oklchToRgb(L, clampedC, hue);
584
- const i = (y * w + x) * 4;
585
- data[i] = Math.round(r * 255);
586
- data[i + 1] = Math.round(g * 255);
587
- data[i + 2] = Math.round(b * 255);
588
- data[i + 3] = 255;
589
- }
590
- }
591
-
592
- this.#ctx.putImageData(img, 0, 0);
593
- }
594
-
595
- // ── Render ──
596
-
597
- render() {
598
- if (this.#internalUpdate) {
599
- this.#internalUpdate = false;
600
- } else {
601
- this.#parseValue(this.value);
602
- }
603
-
604
- this.#drawArea();
605
-
606
- // Area thumb
607
- if (this.#areaThumb) {
608
- const xPct = (this.#C / MAX_CHROMA) * 100;
609
- const yPct = (1 - this.#L) * 100;
610
- this.#areaThumb.style.left = `${xPct}%`;
611
- this.#areaThumb.style.top = `${yPct}%`;
612
- this.#areaThumb.style.background = oklchToHex(this.#L, gamutMapChroma(this.#L, this.#C, this.#H), this.#H);
613
- }
614
-
615
- // Hue track gradient
616
- if (this.#hueTrack) {
617
- const stops = [];
618
- for (let h = 0; h <= 360; h += 30) stops.push(oklchToHex(0.7, 0.15, h));
619
- this.#hueTrack.style.background = `linear-gradient(to right, ${stops.join(', ')})`;
620
- this.#hueTrack.setAttribute('aria-valuenow', String(Math.round(this.#H)));
621
- }
622
-
623
- // Hue thumb
624
- if (this.#hueThumb) {
625
- this.#hueThumb.style.left = `${(this.#H / 360) * 100}%`;
626
- this.#hueThumb.style.background = oklchToHex(0.7, 0.15, this.#H);
627
- }
628
-
629
- // ARIA
630
- if (this.#areaEl) {
631
- this.#areaEl.setAttribute('aria-valuetext', this.#oklchStr());
632
- }
633
-
634
- // Slider values
635
- const hueSlider = this.querySelector('slider-ui[data-channel="hue"]');
636
- const chromaSlider = this.querySelector('slider-ui[data-channel="chroma"]');
637
- const lightnessSlider = this.querySelector('slider-ui[data-channel="lightness"]');
638
- if (hueSlider) hueSlider.value = Math.round(this.#H);
639
- if (chromaSlider) chromaSlider.value = +this.#C.toFixed(3);
640
- if (lightnessSlider) lightnessSlider.value = +this.#L.toFixed(3);
641
-
642
- // Disabled
643
- if (this.disabled) this.setAttribute('aria-disabled', 'true');
644
- else this.removeAttribute('aria-disabled');
645
-
646
- // Output values
647
- const hex = oklchToHex(this.#L, gamutMapChroma(this.#L, this.#C, this.#H), this.#H);
648
- if (this.#oklchVal) this.#oklchVal.textContent = this.#oklchStr();
649
- if (this.#hexVal) this.#hexVal.textContent = hex;
650
- }
651
-
652
- onFormReset() {
653
- this.value = '#3b82f6';
654
- }
45
+ static properties = { ...UIColorArea.properties };
655
46
  }