willa-workspace 0.0.3-alpha.2739b3e

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 (670) hide show
  1. package/.github/workflows/deploy.yml +45 -0
  2. package/.husky/pre-commit +1 -0
  3. package/AGENTS.md +128 -0
  4. package/CONTRIBUTING.md +138 -0
  5. package/README.md +27 -0
  6. package/docs/architecture.md +337 -0
  7. package/docs/component.md +333 -0
  8. package/docs/css.md +400 -0
  9. package/docs/style.md +146 -0
  10. package/example/index.html +12 -0
  11. package/example/package.json +28 -0
  12. package/example/src/App.tsx +613 -0
  13. package/example/src/UsageGuide.tsx +179 -0
  14. package/example/src/catalog/DocView.tsx +413 -0
  15. package/example/src/catalog/defineDoc.tsx +352 -0
  16. package/example/src/catalog/registry.ts +206 -0
  17. package/example/src/catalog/types.ts +38 -0
  18. package/example/src/docs/Alert.demo.tsx +233 -0
  19. package/example/src/docs/Anchor.demo.tsx +244 -0
  20. package/example/src/docs/AppShell.demo.tsx +192 -0
  21. package/example/src/docs/AttachmentList.demo.tsx +425 -0
  22. package/example/src/docs/AudioEmbed.demo.tsx +102 -0
  23. package/example/src/docs/AudioLink.demo.tsx +84 -0
  24. package/example/src/docs/Avatar.demo.tsx +342 -0
  25. package/example/src/docs/Badge.demo.tsx +196 -0
  26. package/example/src/docs/BorderBeam.demo.tsx +261 -0
  27. package/example/src/docs/Breadcrumb.demo.tsx +194 -0
  28. package/example/src/docs/Button.demo.tsx +304 -0
  29. package/example/src/docs/Calendar.demo.tsx +742 -0
  30. package/example/src/docs/Callout.demo.tsx +143 -0
  31. package/example/src/docs/Card.demo.tsx +254 -0
  32. package/example/src/docs/Carousel.demo.tsx +764 -0
  33. package/example/src/docs/ChatMessage.demo.tsx +356 -0
  34. package/example/src/docs/ChatThread.demo.tsx +107 -0
  35. package/example/src/docs/Checkbox.demo.tsx +112 -0
  36. package/example/src/docs/Citation.demo.tsx +297 -0
  37. package/example/src/docs/CodeBlock.demo.tsx +175 -0
  38. package/example/src/docs/CodeTabs.demo.tsx +285 -0
  39. package/example/src/docs/Collapse.demo.tsx +306 -0
  40. package/example/src/docs/ColorPicker.demo.tsx +491 -0
  41. package/example/src/docs/Comment.demo.tsx +333 -0
  42. package/example/src/docs/CommentInput.demo.tsx +894 -0
  43. package/example/src/docs/CommentList.demo.tsx +344 -0
  44. package/example/src/docs/Composer.demo.tsx +435 -0
  45. package/example/src/docs/Container.demo.tsx +125 -0
  46. package/example/src/docs/ContextPanel.demo.tsx +344 -0
  47. package/example/src/docs/ContextWindowMeter.demo.tsx +212 -0
  48. package/example/src/docs/ConversationList.demo.tsx +289 -0
  49. package/example/src/docs/CopyButton.demo.tsx +274 -0
  50. package/example/src/docs/DatePicker.demo.tsx +502 -0
  51. package/example/src/docs/DescriptionList.demo.tsx +265 -0
  52. package/example/src/docs/Dialog.demo.tsx +492 -0
  53. package/example/src/docs/DiffViewer.demo.tsx +307 -0
  54. package/example/src/docs/Download.demo.tsx +182 -0
  55. package/example/src/docs/Drawer.demo.tsx +300 -0
  56. package/example/src/docs/EmptyState.demo.tsx +406 -0
  57. package/example/src/docs/EnglishCards.demo.tsx +133 -0
  58. package/example/src/docs/FeedbackBar.demo.tsx +219 -0
  59. package/example/src/docs/FileCard.demo.tsx +234 -0
  60. package/example/src/docs/FilePreview.demo.tsx +333 -0
  61. package/example/src/docs/FileTree.demo.tsx +463 -0
  62. package/example/src/docs/FilterBar.demo.tsx +290 -0
  63. package/example/src/docs/FloatButton.demo.tsx +726 -0
  64. package/example/src/docs/Form.demo.tsx +278 -0
  65. package/example/src/docs/FormActions.demo.tsx +198 -0
  66. package/example/src/docs/FormField.demo.tsx +193 -0
  67. package/example/src/docs/FormGroup.demo.tsx +188 -0
  68. package/example/src/docs/FormMessage.demo.tsx +158 -0
  69. package/example/src/docs/GenerationCard.demo.tsx +393 -0
  70. package/example/src/docs/GitHubMention.demo.tsx +83 -0
  71. package/example/src/docs/GitHubRepo.demo.tsx +88 -0
  72. package/example/src/docs/Grid.demo.tsx +218 -0
  73. package/example/src/docs/Group.demo.tsx +315 -0
  74. package/example/src/docs/HumanApprovalCard.demo.tsx +275 -0
  75. package/example/src/docs/IconButton.demo.tsx +354 -0
  76. package/example/src/docs/Image.demo.tsx +124 -0
  77. package/example/src/docs/ImageGallery.demo.tsx +206 -0
  78. package/example/src/docs/Input.demo.tsx +238 -0
  79. package/example/src/docs/InputPanel.demo.tsx +255 -0
  80. package/example/src/docs/Kbd.demo.tsx +162 -0
  81. package/example/src/docs/Lightbox.demo.tsx +184 -0
  82. package/example/src/docs/List.demo.tsx +1009 -0
  83. package/example/src/docs/LogoWall.demo.tsx +178 -0
  84. package/example/src/docs/Masonry.demo.tsx +170 -0
  85. package/example/src/docs/MathExpression.demo.tsx +164 -0
  86. package/example/src/docs/Mdx.demo.tsx +343 -0
  87. package/example/src/docs/MentionInput.demo.tsx +543 -0
  88. package/example/src/docs/Menu.demo.tsx +430 -0
  89. package/example/src/docs/MessageActions.demo.tsx +355 -0
  90. package/example/src/docs/MessageList.demo.tsx +410 -0
  91. package/example/src/docs/ModelSelector.demo.tsx +297 -0
  92. package/example/src/docs/NumberInput.demo.tsx +816 -0
  93. package/example/src/docs/PageHeader.demo.tsx +198 -0
  94. package/example/src/docs/Pagination.demo.tsx +257 -0
  95. package/example/src/docs/Panel.demo.tsx +184 -0
  96. package/example/src/docs/Picker.demo.tsx +257 -0
  97. package/example/src/docs/Poem.demo.tsx +98 -0
  98. package/example/src/docs/Popover.demo.tsx +362 -0
  99. package/example/src/docs/ProfileCard.demo.tsx +161 -0
  100. package/example/src/docs/Progress.demo.tsx +243 -0
  101. package/example/src/docs/PromptInput.demo.tsx +497 -0
  102. package/example/src/docs/PromptTemplatePicker.demo.tsx +344 -0
  103. package/example/src/docs/QRCode.demo.tsx +364 -0
  104. package/example/src/docs/Radio.demo.tsx +120 -0
  105. package/example/src/docs/RangeInput.demo.tsx +405 -0
  106. package/example/src/docs/Rate.demo.tsx +396 -0
  107. package/example/src/docs/ReasoningSteps.demo.tsx +470 -0
  108. package/example/src/docs/Result.demo.tsx +121 -0
  109. package/example/src/docs/ScheduleCalendar.demo.tsx +459 -0
  110. package/example/src/docs/SearchInput.demo.tsx +217 -0
  111. package/example/src/docs/SectionHeader.demo.tsx +186 -0
  112. package/example/src/docs/Segmented.demo.tsx +598 -0
  113. package/example/src/docs/Select.demo.tsx +164 -0
  114. package/example/src/docs/SelectionBar.demo.tsx +315 -0
  115. package/example/src/docs/Separator.demo.tsx +179 -0
  116. package/example/src/docs/SidebarLayout.demo.tsx +183 -0
  117. package/example/src/docs/SiteFooter.demo.tsx +189 -0
  118. package/example/src/docs/SiteNav.demo.tsx +168 -0
  119. package/example/src/docs/Skeleton.demo.tsx +154 -0
  120. package/example/src/docs/SourceCard.demo.tsx +241 -0
  121. package/example/src/docs/Spinner.demo.tsx +166 -0
  122. package/example/src/docs/SplitPane.demo.tsx +544 -0
  123. package/example/src/docs/Stack.demo.tsx +135 -0
  124. package/example/src/docs/Statistic.demo.tsx +124 -0
  125. package/example/src/docs/Steps.demo.tsx +88 -0
  126. package/example/src/docs/SuggestionChips.demo.tsx +259 -0
  127. package/example/src/docs/Switch.demo.tsx +110 -0
  128. package/example/src/docs/Table.demo.tsx +2071 -0
  129. package/example/src/docs/Tabs.demo.tsx +285 -0
  130. package/example/src/docs/Tag.demo.tsx +264 -0
  131. package/example/src/docs/TagInput.demo.tsx +385 -0
  132. package/example/src/docs/TextArea.demo.tsx +185 -0
  133. package/example/src/docs/ThinkingIndicator.demo.tsx +248 -0
  134. package/example/src/docs/TimePicker.demo.tsx +464 -0
  135. package/example/src/docs/Timeline.demo.tsx +311 -0
  136. package/example/src/docs/Toast.demo.tsx +351 -0
  137. package/example/src/docs/ToolCallCard.demo.tsx +286 -0
  138. package/example/src/docs/Toolbar.demo.tsx +372 -0
  139. package/example/src/docs/Tooltip.demo.tsx +274 -0
  140. package/example/src/docs/Tour.demo.tsx +423 -0
  141. package/example/src/docs/TraceViewer.demo.tsx +416 -0
  142. package/example/src/docs/Tree.demo.tsx +507 -0
  143. package/example/src/docs/TreeSelect.demo.tsx +476 -0
  144. package/example/src/docs/Typography.demo.tsx +953 -0
  145. package/example/src/docs/Upload.demo.tsx +299 -0
  146. package/example/src/docs/VideoEmbed.demo.tsx +108 -0
  147. package/example/src/docs/VideoLink.demo.tsx +83 -0
  148. package/example/src/docs/Watermark.demo.tsx +352 -0
  149. package/example/src/docs/WebEmbed.demo.tsx +96 -0
  150. package/example/src/docs/XPostEmbed.demo.tsx +57 -0
  151. package/example/src/main.tsx +36 -0
  152. package/example/src/styles.css +919 -0
  153. package/example/src/vite-env.d.ts +1 -0
  154. package/example/vite.config.ts +11 -0
  155. package/package.json +40 -0
  156. package/packages/willa/README.md +47 -0
  157. package/packages/willa/auklet.config.mjs +23 -0
  158. package/packages/willa/package.json +83 -0
  159. package/packages/willa/src/Alert/index.tsx +8 -0
  160. package/packages/willa/src/Anchor/index.tsx +8 -0
  161. package/packages/willa/src/AppShell/index.tsx +2 -0
  162. package/packages/willa/src/AttachmentList/index.tsx +10 -0
  163. package/packages/willa/src/AudioEmbed/index.tsx +4 -0
  164. package/packages/willa/src/AudioLink/index.tsx +4 -0
  165. package/packages/willa/src/Avatar/index.tsx +6 -0
  166. package/packages/willa/src/Badge/index.tsx +7 -0
  167. package/packages/willa/src/BorderBeam/index.tsx +6 -0
  168. package/packages/willa/src/Breadcrumb/index.tsx +6 -0
  169. package/packages/willa/src/Button/index.tsx +6 -0
  170. package/packages/willa/src/Calendar/index.tsx +19 -0
  171. package/packages/willa/src/Callout/index.tsx +5 -0
  172. package/packages/willa/src/Card/index.tsx +6 -0
  173. package/packages/willa/src/Carousel/index.tsx +8 -0
  174. package/packages/willa/src/ChatMessage/index.tsx +6 -0
  175. package/packages/willa/src/ChatThread/index.tsx +4 -0
  176. package/packages/willa/src/Checkbox/index.tsx +5 -0
  177. package/packages/willa/src/Citation/index.tsx +6 -0
  178. package/packages/willa/src/CodeBlock/index.tsx +5 -0
  179. package/packages/willa/src/CodeTabs/index.tsx +6 -0
  180. package/packages/willa/src/Collapse/index.tsx +5 -0
  181. package/packages/willa/src/ColorPicker/index.tsx +12 -0
  182. package/packages/willa/src/Comment/index.tsx +6 -0
  183. package/packages/willa/src/CommentInput/index.tsx +8 -0
  184. package/packages/willa/src/CommentList/index.tsx +5 -0
  185. package/packages/willa/src/Composer/index.tsx +1 -0
  186. package/packages/willa/src/Container/index.tsx +6 -0
  187. package/packages/willa/src/ContextPanel/index.tsx +7 -0
  188. package/packages/willa/src/ContextWindowMeter/index.tsx +7 -0
  189. package/packages/willa/src/ConversationList/index.tsx +8 -0
  190. package/packages/willa/src/CopyButton/index.tsx +6 -0
  191. package/packages/willa/src/DatePicker/index.tsx +15 -0
  192. package/packages/willa/src/DescriptionList/index.tsx +8 -0
  193. package/packages/willa/src/Dialog/index.tsx +6 -0
  194. package/packages/willa/src/DiffViewer/index.tsx +5 -0
  195. package/packages/willa/src/Download/index.tsx +6 -0
  196. package/packages/willa/src/Drawer/index.tsx +6 -0
  197. package/packages/willa/src/EmptyState/index.tsx +7 -0
  198. package/packages/willa/src/EnglishCards/index.tsx +4 -0
  199. package/packages/willa/src/FeedbackBar/index.tsx +7 -0
  200. package/packages/willa/src/FileCard/index.tsx +7 -0
  201. package/packages/willa/src/FilePreview/index.tsx +6 -0
  202. package/packages/willa/src/FileTree/index.tsx +10 -0
  203. package/packages/willa/src/FilterBar/index.tsx +7 -0
  204. package/packages/willa/src/FloatButton/index.tsx +14 -0
  205. package/packages/willa/src/Form/index.tsx +5 -0
  206. package/packages/willa/src/FormActions/index.tsx +6 -0
  207. package/packages/willa/src/FormField/index.tsx +6 -0
  208. package/packages/willa/src/FormGroup/index.tsx +6 -0
  209. package/packages/willa/src/FormMessage/index.tsx +5 -0
  210. package/packages/willa/src/GenerationCard/index.tsx +6 -0
  211. package/packages/willa/src/GitHubMention/index.tsx +4 -0
  212. package/packages/willa/src/GitHubRepo/index.tsx +4 -0
  213. package/packages/willa/src/Grid/index.tsx +8 -0
  214. package/packages/willa/src/Group/index.tsx +9 -0
  215. package/packages/willa/src/HumanApprovalCard/index.tsx +8 -0
  216. package/packages/willa/src/IconButton/index.tsx +7 -0
  217. package/packages/willa/src/Image/index.tsx +1 -0
  218. package/packages/willa/src/ImageGallery/index.tsx +5 -0
  219. package/packages/willa/src/Input/index.tsx +6 -0
  220. package/packages/willa/src/InputPanel/index.tsx +8 -0
  221. package/packages/willa/src/Kbd/index.tsx +9 -0
  222. package/packages/willa/src/Lightbox/index.tsx +7 -0
  223. package/packages/willa/src/List/index.tsx +10 -0
  224. package/packages/willa/src/LogoWall/index.tsx +6 -0
  225. package/packages/willa/src/Masonry/index.tsx +6 -0
  226. package/packages/willa/src/MathExpression/index.tsx +5 -0
  227. package/packages/willa/src/Mdx/index.tsx +1 -0
  228. package/packages/willa/src/MentionInput/index.tsx +5 -0
  229. package/packages/willa/src/Menu/index.tsx +11 -0
  230. package/packages/willa/src/MessageActions/index.tsx +8 -0
  231. package/packages/willa/src/MessageList/index.tsx +4 -0
  232. package/packages/willa/src/ModelSelector/index.tsx +9 -0
  233. package/packages/willa/src/NumberInput/index.tsx +15 -0
  234. package/packages/willa/src/PageHeader/index.tsx +5 -0
  235. package/packages/willa/src/Pagination/index.tsx +6 -0
  236. package/packages/willa/src/Panel/index.tsx +6 -0
  237. package/packages/willa/src/Picker/index.tsx +8 -0
  238. package/packages/willa/src/Poem/index.tsx +1 -0
  239. package/packages/willa/src/Popover/index.tsx +7 -0
  240. package/packages/willa/src/ProfileCard/index.tsx +5 -0
  241. package/packages/willa/src/Progress/index.tsx +6 -0
  242. package/packages/willa/src/PromptInput/index.tsx +6 -0
  243. package/packages/willa/src/PromptTemplatePicker/index.tsx +6 -0
  244. package/packages/willa/src/QRCode/index.tsx +9 -0
  245. package/packages/willa/src/Radio/index.tsx +5 -0
  246. package/packages/willa/src/RangeInput/index.tsx +2 -0
  247. package/packages/willa/src/Rate/index.tsx +6 -0
  248. package/packages/willa/src/ReasoningSteps/index.tsx +8 -0
  249. package/packages/willa/src/ResizablePanel/index.tsx +10 -0
  250. package/packages/willa/src/Result/index.tsx +7 -0
  251. package/packages/willa/src/SearchInput/index.tsx +4 -0
  252. package/packages/willa/src/SectionHeader/index.tsx +6 -0
  253. package/packages/willa/src/Segmented/index.tsx +9 -0
  254. package/packages/willa/src/Select/index.tsx +7 -0
  255. package/packages/willa/src/SelectionBar/index.tsx +5 -0
  256. package/packages/willa/src/Separator/index.tsx +7 -0
  257. package/packages/willa/src/SidebarLayout/index.tsx +7 -0
  258. package/packages/willa/src/SiteFooter/index.tsx +6 -0
  259. package/packages/willa/src/SiteNav/index.tsx +5 -0
  260. package/packages/willa/src/Skeleton/index.tsx +4 -0
  261. package/packages/willa/src/SourceCard/index.tsx +6 -0
  262. package/packages/willa/src/Spinner/index.tsx +7 -0
  263. package/packages/willa/src/SplitPane/index.tsx +10 -0
  264. package/packages/willa/src/Stack/index.tsx +8 -0
  265. package/packages/willa/src/Statistic/index.tsx +7 -0
  266. package/packages/willa/src/Step/index.tsx +1 -0
  267. package/packages/willa/src/Steps/index.tsx +1 -0
  268. package/packages/willa/src/SuggestionChips/index.tsx +7 -0
  269. package/packages/willa/src/Switch/index.tsx +5 -0
  270. package/packages/willa/src/Table/index.tsx +19 -0
  271. package/packages/willa/src/Tabs/index.tsx +6 -0
  272. package/packages/willa/src/Tag/index.tsx +9 -0
  273. package/packages/willa/src/TagInput/index.tsx +8 -0
  274. package/packages/willa/src/TextArea/index.tsx +7 -0
  275. package/packages/willa/src/ThinkingIndicator/index.tsx +7 -0
  276. package/packages/willa/src/TimePicker/index.tsx +10 -0
  277. package/packages/willa/src/Timeline/index.tsx +8 -0
  278. package/packages/willa/src/Toast/index.tsx +10 -0
  279. package/packages/willa/src/ToolCallCard/index.tsx +5 -0
  280. package/packages/willa/src/Toolbar/index.tsx +6 -0
  281. package/packages/willa/src/Tooltip/index.tsx +7 -0
  282. package/packages/willa/src/Tour/index.tsx +10 -0
  283. package/packages/willa/src/TraceViewer/index.tsx +8 -0
  284. package/packages/willa/src/Tree/index.tsx +11 -0
  285. package/packages/willa/src/TreeSelect/index.tsx +8 -0
  286. package/packages/willa/src/Typography/index.tsx +20 -0
  287. package/packages/willa/src/Upload/index.tsx +11 -0
  288. package/packages/willa/src/VideoEmbed/index.tsx +4 -0
  289. package/packages/willa/src/VideoLink/index.tsx +4 -0
  290. package/packages/willa/src/Watermark/index.tsx +5 -0
  291. package/packages/willa/src/WebEmbed/index.tsx +4 -0
  292. package/packages/willa/src/XPostEmbed/index.tsx +4 -0
  293. package/packages/willa/src/index.ts +5 -0
  294. package/packages/willa/vitest.config.ts +9 -0
  295. package/packages/willa-ai/README.md +32 -0
  296. package/packages/willa-ai/auklet.config.mjs +25 -0
  297. package/packages/willa-ai/package.json +84 -0
  298. package/packages/willa-ai/src/components/AttachmentList/index.css +223 -0
  299. package/packages/willa-ai/src/components/AttachmentList/index.tsx +256 -0
  300. package/packages/willa-ai/src/components/ChatMessage/index.css +211 -0
  301. package/packages/willa-ai/src/components/ChatMessage/index.tsx +126 -0
  302. package/packages/willa-ai/src/components/Composer/index.css +137 -0
  303. package/packages/willa-ai/src/components/Composer/index.tsx +92 -0
  304. package/packages/willa-ai/src/components/ContextPanel/index.css +252 -0
  305. package/packages/willa-ai/src/components/ContextPanel/index.tsx +513 -0
  306. package/packages/willa-ai/src/components/ContextWindowMeter/index.css +237 -0
  307. package/packages/willa-ai/src/components/ContextWindowMeter/index.tsx +266 -0
  308. package/packages/willa-ai/src/components/ConversationList/index.css +260 -0
  309. package/packages/willa-ai/src/components/ConversationList/index.tsx +549 -0
  310. package/packages/willa-ai/src/components/FeedbackBar/index.css +83 -0
  311. package/packages/willa-ai/src/components/FeedbackBar/index.tsx +357 -0
  312. package/packages/willa-ai/src/components/GenerationCard/index.css +275 -0
  313. package/packages/willa-ai/src/components/GenerationCard/index.tsx +156 -0
  314. package/packages/willa-ai/src/components/HumanApprovalCard/index.css +205 -0
  315. package/packages/willa-ai/src/components/HumanApprovalCard/index.tsx +262 -0
  316. package/packages/willa-ai/src/components/MessageActions/index.css +174 -0
  317. package/packages/willa-ai/src/components/MessageActions/index.tsx +152 -0
  318. package/packages/willa-ai/src/components/MessageList/index.css +80 -0
  319. package/packages/willa-ai/src/components/MessageList/index.tsx +96 -0
  320. package/packages/willa-ai/src/components/ModelSelector/index.css +177 -0
  321. package/packages/willa-ai/src/components/ModelSelector/index.tsx +421 -0
  322. package/packages/willa-ai/src/components/PromptInput/index.css +12 -0
  323. package/packages/willa-ai/src/components/PromptInput/index.tsx +230 -0
  324. package/packages/willa-ai/src/components/PromptTemplatePicker/index.css +173 -0
  325. package/packages/willa-ai/src/components/PromptTemplatePicker/index.tsx +389 -0
  326. package/packages/willa-ai/src/components/ReasoningSteps/index.css +190 -0
  327. package/packages/willa-ai/src/components/ReasoningSteps/index.tsx +199 -0
  328. package/packages/willa-ai/src/components/SuggestionChips/index.css +164 -0
  329. package/packages/willa-ai/src/components/SuggestionChips/index.tsx +142 -0
  330. package/packages/willa-ai/src/components/ThinkingIndicator/index.css +230 -0
  331. package/packages/willa-ai/src/components/ThinkingIndicator/index.tsx +162 -0
  332. package/packages/willa-ai/src/components/ToolCallCard/index.css +244 -0
  333. package/packages/willa-ai/src/components/ToolCallCard/index.tsx +131 -0
  334. package/packages/willa-ai/src/components/TraceViewer/index.css +438 -0
  335. package/packages/willa-ai/src/components/TraceViewer/index.tsx +445 -0
  336. package/packages/willa-ai/src/index.ts +123 -0
  337. package/packages/willa-ai/src/internal/cardCollapse.tsx +90 -0
  338. package/packages/willa-ai/src/internal/searchText.ts +50 -0
  339. package/packages/willa-ai/src/themes/dark.css +308 -0
  340. package/packages/willa-ai/src/themes/light.css +303 -0
  341. package/packages/willa-ai/vitest.config.ts +15 -0
  342. package/packages/willa-content/README.md +47 -0
  343. package/packages/willa-content/auklet.config.mjs +25 -0
  344. package/packages/willa-content/package.json +86 -0
  345. package/packages/willa-content/src/components/Alert/index.css +158 -0
  346. package/packages/willa-content/src/components/Alert/index.tsx +182 -0
  347. package/packages/willa-content/src/components/Anchor/index.css +131 -0
  348. package/packages/willa-content/src/components/Anchor/index.tsx +253 -0
  349. package/packages/willa-content/src/components/Avatar/index.css +248 -0
  350. package/packages/willa-content/src/components/Avatar/index.tsx +331 -0
  351. package/packages/willa-content/src/components/Badge/index.css +111 -0
  352. package/packages/willa-content/src/components/Badge/index.tsx +56 -0
  353. package/packages/willa-content/src/components/Breadcrumb/index.css +92 -0
  354. package/packages/willa-content/src/components/Breadcrumb/index.tsx +129 -0
  355. package/packages/willa-content/src/components/Button/index.css +215 -0
  356. package/packages/willa-content/src/components/Button/index.tsx +295 -0
  357. package/packages/willa-content/src/components/Callout/index.css +102 -0
  358. package/packages/willa-content/src/components/Callout/index.tsx +61 -0
  359. package/packages/willa-content/src/components/Carousel/index.css +236 -0
  360. package/packages/willa-content/src/components/Carousel/index.tsx +488 -0
  361. package/packages/willa-content/src/components/ChatThread/index.css +141 -0
  362. package/packages/willa-content/src/components/ChatThread/index.tsx +118 -0
  363. package/packages/willa-content/src/components/Citation/index.css +226 -0
  364. package/packages/willa-content/src/components/Citation/index.tsx +135 -0
  365. package/packages/willa-content/src/components/CodeBlock/index.css +267 -0
  366. package/packages/willa-content/src/components/CodeBlock/index.tsx +173 -0
  367. package/packages/willa-content/src/components/CodeTabs/index.css +116 -0
  368. package/packages/willa-content/src/components/CodeTabs/index.tsx +88 -0
  369. package/packages/willa-content/src/components/Collapse/index.css +135 -0
  370. package/packages/willa-content/src/components/Collapse/index.tsx +108 -0
  371. package/packages/willa-content/src/components/Comment/index.css +184 -0
  372. package/packages/willa-content/src/components/Comment/index.tsx +106 -0
  373. package/packages/willa-content/src/components/CommentInput/index.css +96 -0
  374. package/packages/willa-content/src/components/CommentInput/index.tsx +84 -0
  375. package/packages/willa-content/src/components/CommentList/index.css +43 -0
  376. package/packages/willa-content/src/components/CommentList/index.tsx +79 -0
  377. package/packages/willa-content/src/components/CopyButton/index.css +26 -0
  378. package/packages/willa-content/src/components/CopyButton/index.tsx +227 -0
  379. package/packages/willa-content/src/components/DescriptionList/index.css +176 -0
  380. package/packages/willa-content/src/components/DescriptionList/index.tsx +96 -0
  381. package/packages/willa-content/src/components/Dialog/index.css +225 -0
  382. package/packages/willa-content/src/components/Dialog/index.tsx +303 -0
  383. package/packages/willa-content/src/components/DiffViewer/index.css +321 -0
  384. package/packages/willa-content/src/components/DiffViewer/index.tsx +486 -0
  385. package/packages/willa-content/src/components/Download/index.css +118 -0
  386. package/packages/willa-content/src/components/Download/index.tsx +96 -0
  387. package/packages/willa-content/src/components/Drawer/index.css +160 -0
  388. package/packages/willa-content/src/components/Drawer/index.tsx +323 -0
  389. package/packages/willa-content/src/components/EmptyState/index.css +220 -0
  390. package/packages/willa-content/src/components/EmptyState/index.tsx +78 -0
  391. package/packages/willa-content/src/components/FileCard/fileIcon.tsx +215 -0
  392. package/packages/willa-content/src/components/FileCard/index.css +242 -0
  393. package/packages/willa-content/src/components/FileCard/index.tsx +133 -0
  394. package/packages/willa-content/src/components/FilePreview/index.css +589 -0
  395. package/packages/willa-content/src/components/FilePreview/index.tsx +750 -0
  396. package/packages/willa-content/src/components/FileTree/index.css +169 -0
  397. package/packages/willa-content/src/components/FileTree/index.tsx +341 -0
  398. package/packages/willa-content/src/components/FloatButton/index.css +276 -0
  399. package/packages/willa-content/src/components/FloatButton/index.tsx +558 -0
  400. package/packages/willa-content/src/components/IconButton/index.css +196 -0
  401. package/packages/willa-content/src/components/IconButton/index.tsx +272 -0
  402. package/packages/willa-content/src/components/Image/index.css +72 -0
  403. package/packages/willa-content/src/components/Image/index.tsx +141 -0
  404. package/packages/willa-content/src/components/ImageGallery/index.css +82 -0
  405. package/packages/willa-content/src/components/ImageGallery/index.tsx +170 -0
  406. package/packages/willa-content/src/components/InputPanel/index.css +181 -0
  407. package/packages/willa-content/src/components/InputPanel/index.tsx +255 -0
  408. package/packages/willa-content/src/components/Kbd/index.css +61 -0
  409. package/packages/willa-content/src/components/Kbd/index.tsx +102 -0
  410. package/packages/willa-content/src/components/Lightbox/index.css +127 -0
  411. package/packages/willa-content/src/components/Lightbox/index.tsx +328 -0
  412. package/packages/willa-content/src/components/List/index.css +439 -0
  413. package/packages/willa-content/src/components/List/index.tsx +403 -0
  414. package/packages/willa-content/src/components/MathExpression/index.css +65 -0
  415. package/packages/willa-content/src/components/MathExpression/index.tsx +105 -0
  416. package/packages/willa-content/src/components/MentionInput/index.css +92 -0
  417. package/packages/willa-content/src/components/MentionInput/index.tsx +1138 -0
  418. package/packages/willa-content/src/components/Menu/index.css +151 -0
  419. package/packages/willa-content/src/components/Menu/index.tsx +356 -0
  420. package/packages/willa-content/src/components/Pagination/index.css +139 -0
  421. package/packages/willa-content/src/components/Pagination/index.tsx +373 -0
  422. package/packages/willa-content/src/components/Popover/index.css +128 -0
  423. package/packages/willa-content/src/components/Popover/index.tsx +226 -0
  424. package/packages/willa-content/src/components/Progress/index.css +137 -0
  425. package/packages/willa-content/src/components/Progress/index.tsx +117 -0
  426. package/packages/willa-content/src/components/Result/index.css +142 -0
  427. package/packages/willa-content/src/components/Result/index.tsx +85 -0
  428. package/packages/willa-content/src/components/Segmented/index.css +136 -0
  429. package/packages/willa-content/src/components/Segmented/index.tsx +283 -0
  430. package/packages/willa-content/src/components/SelectionBar/index.css +104 -0
  431. package/packages/willa-content/src/components/SelectionBar/index.tsx +120 -0
  432. package/packages/willa-content/src/components/Skeleton/index.css +68 -0
  433. package/packages/willa-content/src/components/Skeleton/index.tsx +126 -0
  434. package/packages/willa-content/src/components/SourceCard/index.css +177 -0
  435. package/packages/willa-content/src/components/SourceCard/index.tsx +108 -0
  436. package/packages/willa-content/src/components/Spinner/index.css +124 -0
  437. package/packages/willa-content/src/components/Spinner/index.tsx +55 -0
  438. package/packages/willa-content/src/components/Statistic/index.css +135 -0
  439. package/packages/willa-content/src/components/Statistic/index.tsx +90 -0
  440. package/packages/willa-content/src/components/Steps/index.css +167 -0
  441. package/packages/willa-content/src/components/Steps/index.tsx +170 -0
  442. package/packages/willa-content/src/components/Table/TableBody.tsx +389 -0
  443. package/packages/willa-content/src/components/Table/TableHeader.tsx +256 -0
  444. package/packages/willa-content/src/components/Table/TablePagination.tsx +46 -0
  445. package/packages/willa-content/src/components/Table/TableView.tsx +341 -0
  446. package/packages/willa-content/src/components/Table/columnState.ts +37 -0
  447. package/packages/willa-content/src/components/Table/columns.ts +63 -0
  448. package/packages/willa-content/src/components/Table/group.ts +114 -0
  449. package/packages/willa-content/src/components/Table/index.css +620 -0
  450. package/packages/willa-content/src/components/Table/index.tsx +100 -0
  451. package/packages/willa-content/src/components/Table/layout.ts +80 -0
  452. package/packages/willa-content/src/components/Table/tree.ts +28 -0
  453. package/packages/willa-content/src/components/Table/types.ts +177 -0
  454. package/packages/willa-content/src/components/Table/useTableColumnResize.ts +227 -0
  455. package/packages/willa-content/src/components/Table/useTableColumnState.ts +153 -0
  456. package/packages/willa-content/src/components/Table/useTableExpansion.ts +69 -0
  457. package/packages/willa-content/src/components/Table/useTableInfiniteScroll.ts +77 -0
  458. package/packages/willa-content/src/components/Table/useTableSelection.ts +102 -0
  459. package/packages/willa-content/src/components/Table/useTableState.ts +436 -0
  460. package/packages/willa-content/src/components/Table/useTableViewModel.ts +222 -0
  461. package/packages/willa-content/src/components/Table/utils.ts +251 -0
  462. package/packages/willa-content/src/components/Tabs/index.css +126 -0
  463. package/packages/willa-content/src/components/Tabs/index.tsx +154 -0
  464. package/packages/willa-content/src/components/Tag/index.css +171 -0
  465. package/packages/willa-content/src/components/Tag/index.tsx +91 -0
  466. package/packages/willa-content/src/components/Timeline/index.css +355 -0
  467. package/packages/willa-content/src/components/Timeline/index.tsx +153 -0
  468. package/packages/willa-content/src/components/Toast/index.css +226 -0
  469. package/packages/willa-content/src/components/Toast/index.tsx +280 -0
  470. package/packages/willa-content/src/components/Toolbar/index.css +59 -0
  471. package/packages/willa-content/src/components/Toolbar/index.tsx +73 -0
  472. package/packages/willa-content/src/components/Tooltip/index.css +83 -0
  473. package/packages/willa-content/src/components/Tooltip/index.tsx +265 -0
  474. package/packages/willa-content/src/components/Tour/index.css +312 -0
  475. package/packages/willa-content/src/components/Tour/index.tsx +788 -0
  476. package/packages/willa-content/src/components/Tree/index.css +274 -0
  477. package/packages/willa-content/src/components/Tree/index.tsx +564 -0
  478. package/packages/willa-content/src/components/Typography/TypographyActions.tsx +125 -0
  479. package/packages/willa-content/src/components/Typography/TypographyContent.tsx +406 -0
  480. package/packages/willa-content/src/components/Typography/TypographyEdit.tsx +161 -0
  481. package/packages/willa-content/src/components/Typography/index.css +575 -0
  482. package/packages/willa-content/src/components/Typography/index.tsx +145 -0
  483. package/packages/willa-content/src/components/Typography/types.ts +144 -0
  484. package/packages/willa-content/src/components/Typography/utils.tsx +192 -0
  485. package/packages/willa-content/src/components/Watermark/index.css +37 -0
  486. package/packages/willa-content/src/components/Watermark/index.tsx +294 -0
  487. package/packages/willa-content/src/index.ts +408 -0
  488. package/packages/willa-content/src/internal/buttonActionUtils.ts +46 -0
  489. package/packages/willa-content/src/internal/syntaxHighlight.css +82 -0
  490. package/packages/willa-content/src/internal/useSingleSelection.ts +80 -0
  491. package/packages/willa-content/src/themes/dark.css +777 -0
  492. package/packages/willa-content/src/themes/light.css +780 -0
  493. package/packages/willa-content/vitest.config.ts +15 -0
  494. package/packages/willa-form/README.md +33 -0
  495. package/packages/willa-form/auklet.config.mjs +24 -0
  496. package/packages/willa-form/package.json +85 -0
  497. package/packages/willa-form/src/components/Calendar/ScheduleCalendar.tsx +1036 -0
  498. package/packages/willa-form/src/components/Calendar/index.css +1081 -0
  499. package/packages/willa-form/src/components/Calendar/index.tsx +876 -0
  500. package/packages/willa-form/src/components/Calendar/utils.ts +67 -0
  501. package/packages/willa-form/src/components/Checkbox/index.css +133 -0
  502. package/packages/willa-form/src/components/Checkbox/index.tsx +104 -0
  503. package/packages/willa-form/src/components/ColorPicker/index.css +617 -0
  504. package/packages/willa-form/src/components/ColorPicker/index.tsx +724 -0
  505. package/packages/willa-form/src/components/ColorPicker/types.ts +21 -0
  506. package/packages/willa-form/src/components/DatePicker/index.css +395 -0
  507. package/packages/willa-form/src/components/DatePicker/index.tsx +631 -0
  508. package/packages/willa-form/src/components/FilterBar/index.css +122 -0
  509. package/packages/willa-form/src/components/FilterBar/index.tsx +98 -0
  510. package/packages/willa-form/src/components/Form/index.css +49 -0
  511. package/packages/willa-form/src/components/Form/index.tsx +50 -0
  512. package/packages/willa-form/src/components/FormActions/index.css +62 -0
  513. package/packages/willa-form/src/components/FormActions/index.tsx +44 -0
  514. package/packages/willa-form/src/components/FormField/index.css +71 -0
  515. package/packages/willa-form/src/components/FormField/index.tsx +85 -0
  516. package/packages/willa-form/src/components/FormGroup/index.css +62 -0
  517. package/packages/willa-form/src/components/FormGroup/index.tsx +64 -0
  518. package/packages/willa-form/src/components/FormMessage/index.css +77 -0
  519. package/packages/willa-form/src/components/FormMessage/index.tsx +57 -0
  520. package/packages/willa-form/src/components/Input/index.css +131 -0
  521. package/packages/willa-form/src/components/Input/index.tsx +116 -0
  522. package/packages/willa-form/src/components/NumberInput/index.css +315 -0
  523. package/packages/willa-form/src/components/NumberInput/index.tsx +567 -0
  524. package/packages/willa-form/src/components/Picker/index.css +323 -0
  525. package/packages/willa-form/src/components/Picker/index.tsx +359 -0
  526. package/packages/willa-form/src/components/Radio/index.css +131 -0
  527. package/packages/willa-form/src/components/Radio/index.tsx +70 -0
  528. package/packages/willa-form/src/components/RangeInput/index.css +224 -0
  529. package/packages/willa-form/src/components/RangeInput/index.tsx +288 -0
  530. package/packages/willa-form/src/components/Rate/index.css +97 -0
  531. package/packages/willa-form/src/components/Rate/index.tsx +378 -0
  532. package/packages/willa-form/src/components/SearchInput/index.css +32 -0
  533. package/packages/willa-form/src/components/SearchInput/index.tsx +101 -0
  534. package/packages/willa-form/src/components/Select/index.css +4 -0
  535. package/packages/willa-form/src/components/Select/index.tsx +79 -0
  536. package/packages/willa-form/src/components/Switch/index.css +133 -0
  537. package/packages/willa-form/src/components/Switch/index.tsx +75 -0
  538. package/packages/willa-form/src/components/TagInput/index.css +209 -0
  539. package/packages/willa-form/src/components/TagInput/index.tsx +497 -0
  540. package/packages/willa-form/src/components/TextArea/index.css +91 -0
  541. package/packages/willa-form/src/components/TextArea/index.tsx +87 -0
  542. package/packages/willa-form/src/components/TimePicker/index.css +485 -0
  543. package/packages/willa-form/src/components/TimePicker/index.tsx +649 -0
  544. package/packages/willa-form/src/components/TimePicker/types.ts +8 -0
  545. package/packages/willa-form/src/components/TreeSelect/index.css +331 -0
  546. package/packages/willa-form/src/components/TreeSelect/index.tsx +497 -0
  547. package/packages/willa-form/src/components/Upload/index.css +345 -0
  548. package/packages/willa-form/src/components/Upload/index.tsx +581 -0
  549. package/packages/willa-form/src/index.ts +176 -0
  550. package/packages/willa-form/src/internal/colorUtils.ts +206 -0
  551. package/packages/willa-form/src/internal/comboboxField.tsx +114 -0
  552. package/packages/willa-form/src/internal/floatingPanelParts.tsx +80 -0
  553. package/packages/willa-form/src/internal/selectablePanelKeyboard.ts +93 -0
  554. package/packages/willa-form/src/internal/selectablePanelParts.tsx +212 -0
  555. package/packages/willa-form/src/internal/timePickerParts.ts +205 -0
  556. package/packages/willa-form/src/internal/useComboboxState.ts +21 -0
  557. package/packages/willa-form/src/internal/useFloatingPanel.ts +114 -0
  558. package/packages/willa-form/src/internal/useSelectablePanel.ts +152 -0
  559. package/packages/willa-form/src/internal/useSelectionModel.ts +115 -0
  560. package/packages/willa-form/src/themes/dark.css +197 -0
  561. package/packages/willa-form/src/themes/light.css +201 -0
  562. package/packages/willa-form/vitest.config.ts +15 -0
  563. package/packages/willa-layout/README.md +33 -0
  564. package/packages/willa-layout/auklet.config.mjs +11 -0
  565. package/packages/willa-layout/package.json +83 -0
  566. package/packages/willa-layout/src/components/AppShell/index.css +100 -0
  567. package/packages/willa-layout/src/components/AppShell/index.tsx +70 -0
  568. package/packages/willa-layout/src/components/BorderBeam/index.css +86 -0
  569. package/packages/willa-layout/src/components/BorderBeam/index.tsx +161 -0
  570. package/packages/willa-layout/src/components/Card/index.css +179 -0
  571. package/packages/willa-layout/src/components/Card/index.tsx +174 -0
  572. package/packages/willa-layout/src/components/Container/index.css +55 -0
  573. package/packages/willa-layout/src/components/Container/index.tsx +43 -0
  574. package/packages/willa-layout/src/components/Grid/index.css +9 -0
  575. package/packages/willa-layout/src/components/Grid/index.tsx +100 -0
  576. package/packages/willa-layout/src/components/Group/index.css +21 -0
  577. package/packages/willa-layout/src/components/Group/index.tsx +146 -0
  578. package/packages/willa-layout/src/components/Masonry/index.css +12 -0
  579. package/packages/willa-layout/src/components/Masonry/index.tsx +71 -0
  580. package/packages/willa-layout/src/components/PageHeader/index.css +130 -0
  581. package/packages/willa-layout/src/components/PageHeader/index.tsx +76 -0
  582. package/packages/willa-layout/src/components/Panel/index.css +123 -0
  583. package/packages/willa-layout/src/components/Panel/index.tsx +63 -0
  584. package/packages/willa-layout/src/components/SectionHeader/index.css +104 -0
  585. package/packages/willa-layout/src/components/SectionHeader/index.tsx +69 -0
  586. package/packages/willa-layout/src/components/Separator/index.css +155 -0
  587. package/packages/willa-layout/src/components/Separator/index.tsx +61 -0
  588. package/packages/willa-layout/src/components/SidebarLayout/index.css +43 -0
  589. package/packages/willa-layout/src/components/SidebarLayout/index.tsx +73 -0
  590. package/packages/willa-layout/src/components/SplitPane/index.css +148 -0
  591. package/packages/willa-layout/src/components/SplitPane/index.tsx +434 -0
  592. package/packages/willa-layout/src/components/Stack/index.css +8 -0
  593. package/packages/willa-layout/src/components/Stack/index.tsx +99 -0
  594. package/packages/willa-layout/src/index.ts +91 -0
  595. package/packages/willa-layout/src/internal/headerBlock.tsx +49 -0
  596. package/packages/willa-layout/src/themes/dark.css +55 -0
  597. package/packages/willa-layout/src/themes/light.css +59 -0
  598. package/packages/willa-layout/vitest.config.ts +15 -0
  599. package/packages/willa-shared/README.md +24 -0
  600. package/packages/willa-shared/package.json +46 -0
  601. package/packages/willa-shared/src/clipboard.ts +23 -0
  602. package/packages/willa-shared/src/codeHighlight.ts +109 -0
  603. package/packages/willa-shared/src/controllableState.ts +42 -0
  604. package/packages/willa-shared/src/copy.ts +79 -0
  605. package/packages/willa-shared/src/css.ts +10 -0
  606. package/packages/willa-shared/src/dom.ts +12 -0
  607. package/packages/willa-shared/src/file.ts +214 -0
  608. package/packages/willa-shared/src/floating.ts +160 -0
  609. package/packages/willa-shared/src/floatingLayer.ts +310 -0
  610. package/packages/willa-shared/src/heading.ts +69 -0
  611. package/packages/willa-shared/src/index.ts +88 -0
  612. package/packages/willa-shared/src/media.ts +23 -0
  613. package/packages/willa-shared/src/nodes.ts +24 -0
  614. package/packages/willa-shared/src/number.ts +9 -0
  615. package/packages/willa-shared/src/refs.ts +16 -0
  616. package/packages/willa-shared/src/request.ts +46 -0
  617. package/packages/willa-shared/src/types.ts +27 -0
  618. package/packages/willa-shared/src/viewport.ts +12 -0
  619. package/packages/willa-shared/src/virtualScroll.ts +137 -0
  620. package/packages/willa-shared/vitest.config.ts +9 -0
  621. package/packages/willa-widgets/README.md +33 -0
  622. package/packages/willa-widgets/auklet.config.mjs +25 -0
  623. package/packages/willa-widgets/package.json +89 -0
  624. package/packages/willa-widgets/src/components/AudioEmbed/index.css +424 -0
  625. package/packages/willa-widgets/src/components/AudioEmbed/index.tsx +270 -0
  626. package/packages/willa-widgets/src/components/AudioLink/index.css +165 -0
  627. package/packages/willa-widgets/src/components/AudioLink/index.tsx +169 -0
  628. package/packages/willa-widgets/src/components/EnglishCards/Card.tsx +116 -0
  629. package/packages/willa-widgets/src/components/EnglishCards/Content.tsx +203 -0
  630. package/packages/willa-widgets/src/components/EnglishCards/Practice.tsx +91 -0
  631. package/packages/willa-widgets/src/components/EnglishCards/Resources.tsx +91 -0
  632. package/packages/willa-widgets/src/components/EnglishCards/index.css +531 -0
  633. package/packages/willa-widgets/src/components/EnglishCards/index.tsx +142 -0
  634. package/packages/willa-widgets/src/components/EnglishCards/speech.ts +29 -0
  635. package/packages/willa-widgets/src/components/EnglishCards/types.ts +43 -0
  636. package/packages/willa-widgets/src/components/GitHubMention/index.css +206 -0
  637. package/packages/willa-widgets/src/components/GitHubMention/index.tsx +168 -0
  638. package/packages/willa-widgets/src/components/GitHubRepo/index.css +194 -0
  639. package/packages/willa-widgets/src/components/GitHubRepo/index.tsx +172 -0
  640. package/packages/willa-widgets/src/components/LogoWall/index.css +122 -0
  641. package/packages/willa-widgets/src/components/LogoWall/index.tsx +104 -0
  642. package/packages/willa-widgets/src/components/Mdx/index.css +273 -0
  643. package/packages/willa-widgets/src/components/Mdx/index.tsx +377 -0
  644. package/packages/willa-widgets/src/components/Poem/index.css +101 -0
  645. package/packages/willa-widgets/src/components/Poem/index.tsx +74 -0
  646. package/packages/willa-widgets/src/components/ProfileCard/index.css +107 -0
  647. package/packages/willa-widgets/src/components/ProfileCard/index.tsx +116 -0
  648. package/packages/willa-widgets/src/components/QRCode/index.css +175 -0
  649. package/packages/willa-widgets/src/components/QRCode/index.tsx +257 -0
  650. package/packages/willa-widgets/src/components/SiteFooter/index.css +109 -0
  651. package/packages/willa-widgets/src/components/SiteFooter/index.tsx +104 -0
  652. package/packages/willa-widgets/src/components/SiteNav/index.css +93 -0
  653. package/packages/willa-widgets/src/components/SiteNav/index.tsx +71 -0
  654. package/packages/willa-widgets/src/components/VideoEmbed/index.css +230 -0
  655. package/packages/willa-widgets/src/components/VideoEmbed/index.tsx +134 -0
  656. package/packages/willa-widgets/src/components/VideoLink/index.css +118 -0
  657. package/packages/willa-widgets/src/components/VideoLink/index.tsx +161 -0
  658. package/packages/willa-widgets/src/components/WebEmbed/index.css +106 -0
  659. package/packages/willa-widgets/src/components/WebEmbed/index.tsx +98 -0
  660. package/packages/willa-widgets/src/components/XPostEmbed/index.css +52 -0
  661. package/packages/willa-widgets/src/components/XPostEmbed/index.tsx +88 -0
  662. package/packages/willa-widgets/src/index.ts +57 -0
  663. package/packages/willa-widgets/src/internal/media.ts +84 -0
  664. package/packages/willa-widgets/src/internal/mediaEmbed.tsx +52 -0
  665. package/packages/willa-widgets/src/internal/useGitHubHoverCardResource.ts +120 -0
  666. package/packages/willa-widgets/src/themes/dark.css +209 -0
  667. package/packages/willa-widgets/src/themes/light.css +207 -0
  668. package/packages/willa-widgets/vitest.config.ts +15 -0
  669. package/pnpm-workspace.yaml +29 -0
  670. package/tsconfig.json +50 -0
@@ -0,0 +1,1081 @@
1
+ .willa-calendar {
2
+ display: grid;
3
+ box-sizing: border-box;
4
+ width: max-content;
5
+ max-width: 100%;
6
+ min-width: 0;
7
+ gap: 0.95rem;
8
+ color: var(--willa-calendar-text);
9
+ font-family: var(--willa-body-font);
10
+ }
11
+
12
+ .willa-calendar-header {
13
+ display: grid;
14
+ grid-template-columns: minmax(5.6rem, 1fr) auto minmax(5.6rem, 1fr);
15
+ align-items: center;
16
+ gap: 0.5rem;
17
+ }
18
+
19
+ .willa-calendar-header-side {
20
+ display: inline-flex;
21
+ min-width: 0;
22
+ align-items: center;
23
+ justify-content: flex-start;
24
+ gap: 0.32rem;
25
+ }
26
+
27
+ .willa-calendar-header-side--end {
28
+ justify-content: flex-end;
29
+ }
30
+
31
+ .willa-calendar-title {
32
+ min-width: 0;
33
+ color: var(--willa-calendar-title);
34
+ font-size: 1.02rem;
35
+ font-weight: 760;
36
+ line-height: 1.35;
37
+ text-align: center;
38
+ white-space: nowrap;
39
+ }
40
+
41
+ .willa-calendar-nav {
42
+ display: inline-flex;
43
+ width: 1.9rem;
44
+ height: 1.9rem;
45
+ align-items: center;
46
+ justify-content: center;
47
+ border: 1px solid transparent;
48
+ border-radius: 0.42rem;
49
+ background: transparent;
50
+ color: var(--willa-calendar-muted);
51
+ cursor: pointer;
52
+ padding: 0;
53
+ transition:
54
+ background-color 160ms ease,
55
+ border-color 160ms ease,
56
+ color 160ms ease;
57
+ }
58
+
59
+ .willa-calendar-today {
60
+ display: inline-flex;
61
+ min-width: 0;
62
+ height: 1.9rem;
63
+ align-items: center;
64
+ justify-content: center;
65
+ border: 1px solid var(--willa-line);
66
+ border-radius: 0.42rem;
67
+ background: var(--willa-panel-bg);
68
+ color: var(--willa-calendar-muted);
69
+ cursor: pointer;
70
+ font: inherit;
71
+ font-size: 0.78rem;
72
+ font-weight: 680;
73
+ line-height: 1;
74
+ padding: 0 0.58rem;
75
+ transition:
76
+ background-color 160ms ease,
77
+ border-color 160ms ease,
78
+ color 160ms ease;
79
+ }
80
+
81
+ .willa-calendar-today:hover {
82
+ border-color: var(--willa-calendar-control-border-hover);
83
+ background: var(--willa-calendar-control-bg-hover);
84
+ color: var(--willa-calendar-title);
85
+ }
86
+
87
+ .willa-calendar-nav:hover {
88
+ border-color: var(--willa-calendar-control-border-hover);
89
+ background: var(--willa-calendar-control-bg-hover);
90
+ color: var(--willa-calendar-title);
91
+ }
92
+
93
+ .willa-calendar-nav:focus-visible,
94
+ .willa-calendar-today:focus-visible,
95
+ .willa-calendar-day:focus-visible {
96
+ outline: 2px solid var(--willa-focus-ring);
97
+ outline-offset: 2px;
98
+ }
99
+
100
+ .willa-calendar-nav svg {
101
+ width: 1rem;
102
+ height: 1rem;
103
+ }
104
+
105
+ .willa-calendar-weekdays,
106
+ .willa-calendar-grid {
107
+ display: grid;
108
+ grid-template-columns: repeat(7, minmax(4.6rem, 1fr));
109
+ gap: 0.34rem;
110
+ }
111
+
112
+ .willa-calendar-grid--day {
113
+ gap: 0.72rem 0.78rem;
114
+ }
115
+
116
+ .willa-calendar-weekdays--with-week-number,
117
+ .willa-calendar-grid--with-week-number {
118
+ grid-template-columns: minmax(2.4rem, max-content) repeat(
119
+ 7,
120
+ minmax(4.6rem, 1fr)
121
+ );
122
+ }
123
+
124
+ .willa-calendar-grid--year,
125
+ .willa-calendar-grid--month {
126
+ grid-template-columns: repeat(3, minmax(clamp(5.2rem, 18vw, 6.8rem), 1fr));
127
+ gap: 0.16rem;
128
+ }
129
+
130
+ .willa-calendar-grid--week {
131
+ width: min(100%, 22rem);
132
+ justify-self: center;
133
+ grid-template-columns: 1fr;
134
+ gap: 0.2rem;
135
+ }
136
+
137
+ .willa-calendar-weekdays {
138
+ color: var(--willa-calendar-muted);
139
+ font-size: 0.74rem;
140
+ font-weight: 700;
141
+ line-height: 1.4;
142
+ text-align: center;
143
+ }
144
+
145
+ .willa-calendar-weekdays span {
146
+ display: inline-flex;
147
+ min-height: 1.8rem;
148
+ align-items: center;
149
+ justify-content: flex-start;
150
+ border-radius: 0.38rem;
151
+ padding: 0 0.72rem;
152
+ }
153
+
154
+ .willa-calendar-weekday--weekend {
155
+ background: var(--willa-calendar-weekend-header-bg);
156
+ color: var(--willa-calendar-title);
157
+ }
158
+
159
+ .willa-calendar-week-number {
160
+ display: inline-flex;
161
+ min-height: 4.75rem;
162
+ align-items: center;
163
+ justify-content: center;
164
+ color: var(--willa-calendar-muted);
165
+ font-size: 0.72rem;
166
+ font-weight: 650;
167
+ font-variant-numeric: tabular-nums;
168
+ }
169
+
170
+ .willa-calendar-day {
171
+ display: grid;
172
+ box-sizing: border-box;
173
+ min-width: 0;
174
+ min-height: 4.75rem;
175
+ position: relative;
176
+ align-items: stretch;
177
+ justify-items: center;
178
+ border: 1px solid transparent;
179
+ border-radius: 0.5rem;
180
+ background: transparent;
181
+ color: var(--willa-calendar-text);
182
+ cursor: pointer;
183
+ font: inherit;
184
+ font-size: 0.98rem;
185
+ line-height: 1;
186
+ padding: 0.7rem 0.42rem;
187
+ overflow: visible;
188
+ transition:
189
+ background-color 150ms ease,
190
+ border-color 150ms ease,
191
+ color 150ms ease;
192
+ }
193
+
194
+ .willa-calendar-day-content {
195
+ display: grid;
196
+ width: 100%;
197
+ height: 100%;
198
+ min-width: 0;
199
+ grid-template-rows: minmax(1.9rem, auto) 1.08rem;
200
+ align-content: center;
201
+ align-items: center;
202
+ justify-items: center;
203
+ gap: 0.28rem;
204
+ }
205
+
206
+ .willa-calendar-day--day {
207
+ min-height: 5.8rem;
208
+ align-items: stretch;
209
+ justify-items: stretch;
210
+ border-color: transparent;
211
+ border-radius: 0.62rem;
212
+ background: var(--willa-panel-bg);
213
+ padding: 0.9rem 0.72rem 0.78rem;
214
+ }
215
+
216
+ .willa-calendar-day--day .willa-calendar-day-content {
217
+ grid-template-rows: auto auto;
218
+ align-content: start;
219
+ align-items: start;
220
+ justify-items: stretch;
221
+ gap: 0.42rem;
222
+ }
223
+
224
+ .willa-calendar-day-label {
225
+ display: inline-block;
226
+ min-width: 0;
227
+ font-weight: 680;
228
+ font-variant-numeric: tabular-nums;
229
+ }
230
+
231
+ .willa-calendar-day--day .willa-calendar-day-label {
232
+ justify-self: start;
233
+ color: var(--willa-calendar-title);
234
+ font-size: 1rem;
235
+ line-height: 1.15;
236
+ }
237
+
238
+ .willa-calendar-marker {
239
+ box-sizing: border-box;
240
+ display: inline-grid;
241
+ width: auto;
242
+ max-width: 100%;
243
+ min-height: 1.08rem;
244
+ overflow: hidden;
245
+ position: static;
246
+ grid-template-columns: 0.45rem minmax(0, 1fr);
247
+ align-items: center;
248
+ gap: 0.3rem;
249
+ border-radius: 0;
250
+ background: transparent;
251
+ color: var(--willa-calendar-marker-text);
252
+ font-size: 0.69rem;
253
+ font-weight: 760;
254
+ line-height: 1.2;
255
+ padding: 0;
256
+ text-overflow: ellipsis;
257
+ overflow-wrap: normal;
258
+ word-break: keep-all;
259
+ white-space: nowrap;
260
+ }
261
+
262
+ .willa-calendar-marker-list {
263
+ display: grid;
264
+ width: 100%;
265
+ min-width: 0;
266
+ min-height: 1.08rem;
267
+ align-content: start;
268
+ gap: 0.18rem;
269
+ }
270
+
271
+ .willa-calendar-marker-label {
272
+ min-width: 0;
273
+ overflow: hidden;
274
+ text-align: left;
275
+ text-overflow: ellipsis;
276
+ }
277
+
278
+ .willa-calendar-day--day .willa-calendar-marker {
279
+ font-size: 0.72rem;
280
+ font-weight: 700;
281
+ }
282
+
283
+ .willa-calendar-marker::before {
284
+ width: 0.38rem;
285
+ height: 0.38rem;
286
+ flex: none;
287
+ border-radius: 999px;
288
+ background: currentColor;
289
+ content: "";
290
+ opacity: 0.72;
291
+ }
292
+
293
+ .willa-calendar-marker--start {
294
+ text-align: left;
295
+ }
296
+
297
+ .willa-calendar-marker--neutral {
298
+ color: var(--willa-calendar-marker-neutral-text);
299
+ }
300
+
301
+ .willa-calendar-marker--info {
302
+ color: var(--willa-calendar-marker-text);
303
+ }
304
+
305
+ .willa-calendar-marker--success {
306
+ color: var(--willa-calendar-marker-success-text);
307
+ }
308
+
309
+ .willa-calendar-marker--warning {
310
+ color: var(--willa-calendar-marker-warning-text);
311
+ }
312
+
313
+ .willa-calendar-marker--danger {
314
+ color: var(--willa-calendar-marker-danger-text);
315
+ }
316
+
317
+ .willa-calendar-day--marked .willa-calendar-day-label {
318
+ font-weight: 780;
319
+ }
320
+
321
+ .willa-calendar-day--marked-neutral .willa-calendar-marker {
322
+ color: var(--willa-calendar-marker-neutral-text);
323
+ }
324
+
325
+ .willa-calendar-day--marked-neutral .willa-calendar-day-label {
326
+ color: var(--willa-calendar-marker-neutral-text);
327
+ }
328
+
329
+ .willa-calendar-day--marked-success .willa-calendar-marker {
330
+ color: var(--willa-calendar-marker-success-text);
331
+ }
332
+
333
+ .willa-calendar-day--marked-success .willa-calendar-day-label {
334
+ color: var(--willa-calendar-marker-success-text);
335
+ }
336
+
337
+ .willa-calendar-day--marked-warning .willa-calendar-marker {
338
+ color: var(--willa-calendar-marker-warning-text);
339
+ }
340
+
341
+ .willa-calendar-day--marked-warning .willa-calendar-day-label {
342
+ color: var(--willa-calendar-marker-warning-text);
343
+ }
344
+
345
+ .willa-calendar-day--marked-danger .willa-calendar-marker {
346
+ color: var(--willa-calendar-marker-danger-text);
347
+ }
348
+
349
+ .willa-calendar-day--marked-danger .willa-calendar-day-label {
350
+ color: var(--willa-calendar-marker-danger-text);
351
+ }
352
+
353
+ .willa-calendar-day--year,
354
+ .willa-calendar-day--month,
355
+ .willa-calendar-day--week {
356
+ aspect-ratio: auto;
357
+ min-height: 3.25rem;
358
+ font-size: 0.94rem;
359
+ font-weight: 620;
360
+ }
361
+
362
+ .willa-calendar-day--week {
363
+ justify-items: stretch;
364
+ min-height: 3.05rem;
365
+ border-radius: 0.56rem;
366
+ padding: 0 1rem;
367
+ }
368
+
369
+ .willa-calendar-day--week .willa-calendar-day-content {
370
+ display: flex;
371
+ align-items: center;
372
+ }
373
+
374
+ .willa-calendar-week-range {
375
+ display: grid;
376
+ width: 100%;
377
+ min-width: 0;
378
+ grid-template-columns: max-content minmax(4.25rem, 1fr) max-content;
379
+ align-items: center;
380
+ gap: 0.72rem;
381
+ font-variant-numeric: tabular-nums;
382
+ }
383
+
384
+ .willa-calendar-week-line {
385
+ height: 1px;
386
+ background: var(--willa-calendar-week-line);
387
+ }
388
+
389
+ .willa-calendar-day:hover:not(:disabled) {
390
+ z-index: 2;
391
+ border-color: var(--willa-calendar-control-border-hover);
392
+ background: var(--willa-calendar-day-bg-hover);
393
+ color: var(--willa-calendar-title);
394
+ }
395
+
396
+ .willa-calendar-day--day:hover:not(:disabled) {
397
+ border-color: var(--willa-calendar-control-border-hover);
398
+ background: var(--willa-calendar-day-bg-hover);
399
+ }
400
+
401
+ .willa-calendar-day--muted {
402
+ color: var(--willa-calendar-muted);
403
+ }
404
+
405
+ .willa-calendar-day--day.willa-calendar-day--muted .willa-calendar-day-label {
406
+ color: var(--willa-calendar-muted);
407
+ }
408
+
409
+ .willa-calendar-day--today {
410
+ border-color: transparent;
411
+ }
412
+
413
+ .willa-calendar-day--today .willa-calendar-day-label {
414
+ color: var(--willa-calendar-title);
415
+ }
416
+
417
+ .willa-calendar-day--today::after {
418
+ position: absolute;
419
+ bottom: 0.34rem;
420
+ left: 50%;
421
+ width: 1em;
422
+ height: 2px;
423
+ border-radius: 999px;
424
+ background: var(--willa-calendar-today-border);
425
+ content: "";
426
+ transform: translateX(-50%);
427
+ }
428
+
429
+ .willa-calendar-day--day.willa-calendar-day--today::after {
430
+ left: 0.72rem;
431
+ transform: none;
432
+ }
433
+
434
+ .willa-calendar-day--in-range {
435
+ border-color: transparent;
436
+ background: var(--willa-calendar-range-bg);
437
+ color: var(--willa-calendar-title);
438
+ }
439
+
440
+ .willa-calendar-day--day.willa-calendar-day--in-range {
441
+ background: var(--willa-calendar-range-bg);
442
+ }
443
+
444
+ .willa-calendar-day--range-edge {
445
+ border-color: transparent;
446
+ }
447
+
448
+ .willa-calendar-day--selected,
449
+ .willa-calendar-day--selected:hover:not(:disabled) {
450
+ z-index: 3;
451
+ border-color: transparent;
452
+ background: var(--willa-calendar-range-bg);
453
+ color: var(--willa-calendar-selected-text);
454
+ }
455
+
456
+ .willa-calendar-day--day.willa-calendar-day--selected,
457
+ .willa-calendar-day--day.willa-calendar-day--selected:hover:not(:disabled) {
458
+ background: var(--willa-calendar-selected-bg);
459
+ box-shadow: inset 0 0 0 1px var(--willa-calendar-selected-border);
460
+ }
461
+
462
+ .willa-calendar-day--selected.willa-calendar-day--marked,
463
+ .willa-calendar-day--selected.willa-calendar-day--marked:hover:not(:disabled) {
464
+ background: var(--willa-calendar-range-bg);
465
+ }
466
+
467
+ .willa-calendar-day--selected .willa-calendar-day-label {
468
+ color: var(--willa-calendar-selected-text);
469
+ font-weight: 820;
470
+ }
471
+
472
+ .willa-calendar-day--selected .willa-calendar-marker {
473
+ color: var(--willa-calendar-marker-text);
474
+ }
475
+
476
+ .willa-calendar-day:disabled {
477
+ cursor: not-allowed;
478
+ opacity: 0.36;
479
+ }
480
+
481
+ @media (max-width: 520px) {
482
+ .willa-calendar-weekdays,
483
+ .willa-calendar-grid--day {
484
+ grid-template-columns: repeat(7, minmax(0, 1fr));
485
+ gap: 0.24rem;
486
+ }
487
+
488
+ .willa-calendar-grid--month,
489
+ .willa-calendar-grid--year {
490
+ grid-template-columns: repeat(3, minmax(0, 1fr));
491
+ gap: 0.34rem;
492
+ }
493
+
494
+ .willa-calendar-grid--week {
495
+ grid-template-columns: 1fr;
496
+ }
497
+
498
+ .willa-calendar-weekdays--with-week-number,
499
+ .willa-calendar-grid--with-week-number {
500
+ grid-template-columns: 1.35rem repeat(7, minmax(2.35rem, 1fr));
501
+ column-gap: 0.18rem;
502
+ }
503
+
504
+ .willa-calendar-weekdays--with-week-number span {
505
+ padding-inline: 0.28rem;
506
+ }
507
+
508
+ .willa-calendar-weekdays--with-week-number span:first-child {
509
+ padding-inline: 0;
510
+ }
511
+
512
+ .willa-calendar-weekdays span {
513
+ justify-content: center;
514
+ }
515
+
516
+ .willa-calendar-grid--with-week-number .willa-calendar-week-number {
517
+ min-height: 4.35rem;
518
+ }
519
+
520
+ .willa-calendar-grid--with-week-number .willa-calendar-day--day {
521
+ min-height: 4.35rem;
522
+ padding: 0.72rem 0.42rem 0.68rem;
523
+ }
524
+
525
+ .willa-calendar-grid--with-week-number
526
+ .willa-calendar-day--day.willa-calendar-day--today::after {
527
+ left: 0.42rem;
528
+ }
529
+
530
+ .willa-calendar-marker-list {
531
+ display: flex;
532
+ min-height: 0.45rem;
533
+ align-items: center;
534
+ justify-content: center;
535
+ flex-direction: column;
536
+ gap: 0.18rem;
537
+ }
538
+
539
+ .willa-calendar-marker,
540
+ .willa-calendar-day--day .willa-calendar-marker {
541
+ display: inline-flex;
542
+ width: 0.36rem;
543
+ max-width: 0.36rem;
544
+ min-width: 0.36rem;
545
+ height: 0.36rem;
546
+ min-height: 0.36rem;
547
+ gap: 0;
548
+ overflow: visible;
549
+ font-size: 0;
550
+ line-height: 0;
551
+ }
552
+
553
+ .willa-calendar-marker::before {
554
+ width: 0.36rem;
555
+ height: 0.36rem;
556
+ opacity: 0.66;
557
+ }
558
+
559
+ .willa-calendar-marker-label {
560
+ width: 1px;
561
+ height: 1px;
562
+ overflow: hidden;
563
+ position: absolute;
564
+ clip: rect(0 0 0 0);
565
+ white-space: nowrap;
566
+ }
567
+ }
568
+
569
+ .willa-schedule-calendar {
570
+ --willa-schedule-calendar-event-inset: 0.36rem;
571
+ --willa-schedule-calendar-grid-border: color-mix(
572
+ in srgb,
573
+ var(--willa-line) 58%,
574
+ transparent
575
+ );
576
+ --willa-schedule-calendar-state-border: color-mix(
577
+ in srgb,
578
+ var(--willa-calendar-control-border-hover) 62%,
579
+ transparent
580
+ );
581
+ --willa-schedule-calendar-selected-border: color-mix(
582
+ in srgb,
583
+ var(--willa-calendar-selected-border) 58%,
584
+ transparent
585
+ );
586
+
587
+ display: grid;
588
+ box-sizing: border-box;
589
+ width: 100%;
590
+ max-width: 100%;
591
+ min-width: 0;
592
+ gap: 1rem;
593
+ color: var(--willa-calendar-text);
594
+ font-family: var(--willa-body-font);
595
+ overflow: hidden;
596
+ }
597
+
598
+ .willa-schedule-calendar-header {
599
+ grid-template-columns: auto minmax(0, 1fr) auto auto auto;
600
+ }
601
+
602
+ .willa-schedule-calendar-view-switch {
603
+ display: inline-flex;
604
+ align-items: center;
605
+ gap: 0.12rem;
606
+ border: 1px solid var(--willa-schedule-calendar-grid-border);
607
+ border-radius: 0.48rem;
608
+ background: var(--willa-panel-bg);
609
+ padding: 0.12rem;
610
+ }
611
+
612
+ .willa-schedule-calendar-view-button {
613
+ border: 0;
614
+ border-radius: 0.34rem;
615
+ background: transparent;
616
+ color: var(--willa-calendar-muted);
617
+ cursor: pointer;
618
+ font: inherit;
619
+ font-size: 0.78rem;
620
+ font-weight: 680;
621
+ line-height: 1;
622
+ padding: 0.42rem 0.58rem;
623
+ }
624
+
625
+ .willa-schedule-calendar-view-button:hover {
626
+ color: var(--willa-calendar-title);
627
+ }
628
+
629
+ .willa-schedule-calendar-view-button--active {
630
+ background: var(--willa-calendar-selected-bg);
631
+ color: var(--willa-calendar-selected-text);
632
+ }
633
+
634
+ .willa-schedule-calendar-grid {
635
+ display: grid;
636
+ width: 100%;
637
+ max-width: 100%;
638
+ min-width: 0;
639
+ overflow: auto;
640
+ scrollbar-width: thin;
641
+ scrollbar-color: var(--willa-form-scrollbar-thumb) transparent;
642
+ -ms-overflow-style: auto;
643
+ grid-template-columns: 4.4rem repeat(7, minmax(6.8rem, 1fr));
644
+ border: 1px solid var(--willa-schedule-calendar-grid-border);
645
+ border-radius: 0.72rem;
646
+ background: var(--willa-panel-bg);
647
+ -webkit-overflow-scrolling: touch;
648
+ }
649
+
650
+ .willa-schedule-calendar-grid::-webkit-scrollbar {
651
+ width: 0.36rem;
652
+ height: 0.36rem;
653
+ }
654
+
655
+ .willa-schedule-calendar-grid::-webkit-scrollbar-track,
656
+ .willa-schedule-calendar-grid::-webkit-scrollbar-track-piece,
657
+ .willa-schedule-calendar-grid::-webkit-scrollbar-corner {
658
+ background: transparent;
659
+ }
660
+
661
+ .willa-schedule-calendar-grid::-webkit-scrollbar-thumb {
662
+ border-radius: 999px;
663
+ background: var(--willa-form-scrollbar-thumb);
664
+ }
665
+
666
+ .willa-schedule-calendar-axis,
667
+ .willa-schedule-calendar-day-heading,
668
+ .willa-schedule-calendar-hour,
669
+ .willa-schedule-calendar-slot {
670
+ box-sizing: border-box;
671
+ min-width: 0;
672
+ border-right: 1px solid var(--willa-schedule-calendar-grid-border);
673
+ border-bottom: 1px solid var(--willa-schedule-calendar-grid-border);
674
+ }
675
+
676
+ .willa-schedule-calendar-axis {
677
+ min-height: 4rem;
678
+ border-top-left-radius: 0.72rem;
679
+ background: var(--willa-calendar-weekend-header-bg);
680
+ }
681
+
682
+ .willa-schedule-calendar-day-heading {
683
+ display: grid;
684
+ min-height: 4rem;
685
+ align-content: center;
686
+ justify-items: center;
687
+ gap: 0.22rem;
688
+ background: var(--willa-calendar-weekend-header-bg);
689
+ color: var(--willa-calendar-muted);
690
+ font-size: 0.75rem;
691
+ font-weight: 650;
692
+ }
693
+
694
+ .willa-schedule-calendar-day-heading strong {
695
+ color: var(--willa-calendar-title);
696
+ font-size: 1.05rem;
697
+ line-height: 1;
698
+ }
699
+
700
+ .willa-schedule-calendar-day-heading--weekend {
701
+ background: var(--willa-calendar-day-bg-hover);
702
+ }
703
+
704
+ .willa-schedule-calendar-day-heading--today {
705
+ color: var(--willa-calendar-marker-text);
706
+ }
707
+
708
+ .willa-schedule-calendar-hour {
709
+ display: flex;
710
+ min-height: 4.8rem;
711
+ align-items: flex-start;
712
+ justify-content: flex-end;
713
+ background: var(--willa-calendar-weekend-header-bg);
714
+ color: var(--willa-calendar-muted);
715
+ font-size: 0.72rem;
716
+ font-weight: 650;
717
+ padding: 0.52rem 0.72rem;
718
+ }
719
+
720
+ .willa-schedule-calendar-all-day-label,
721
+ .willa-schedule-calendar-all-day-cell {
722
+ box-sizing: border-box;
723
+ min-width: 0;
724
+ border-right: 1px solid var(--willa-schedule-calendar-grid-border);
725
+ border-bottom: 1px solid var(--willa-schedule-calendar-grid-border);
726
+ }
727
+
728
+ .willa-schedule-calendar-all-day-label {
729
+ display: flex;
730
+ min-height: 3rem;
731
+ align-items: center;
732
+ justify-content: flex-end;
733
+ background: var(--willa-calendar-weekend-header-bg);
734
+ color: var(--willa-calendar-muted);
735
+ font-size: 0.72rem;
736
+ font-weight: 650;
737
+ padding: 0.52rem 0.72rem;
738
+ }
739
+
740
+ .willa-schedule-calendar-all-day-cell {
741
+ display: grid;
742
+ min-height: 3rem;
743
+ align-content: start;
744
+ gap: 0.28rem;
745
+ background: var(--willa-panel-bg);
746
+ padding: 0.38rem;
747
+ }
748
+
749
+ .willa-schedule-calendar-slot {
750
+ min-height: 4.8rem;
751
+ position: relative;
752
+ background: var(--willa-panel-bg);
753
+ cursor: pointer;
754
+ outline: none;
755
+ transition:
756
+ background-color 150ms ease,
757
+ box-shadow 150ms ease;
758
+ }
759
+
760
+ .willa-schedule-calendar-slot:hover,
761
+ .willa-schedule-calendar-slot:focus-visible {
762
+ background: var(--willa-calendar-day-bg-hover);
763
+ box-shadow: inset 0 0 0 1px var(--willa-schedule-calendar-state-border);
764
+ }
765
+
766
+ .willa-schedule-calendar-slot:hover:has(
767
+ .willa-schedule-calendar-event:hover
768
+ ):not(.willa-schedule-calendar-slot--selected) {
769
+ background: var(--willa-panel-bg);
770
+ box-shadow: none;
771
+ }
772
+
773
+ .willa-schedule-calendar-slot--selected,
774
+ .willa-schedule-calendar-slot--selected:hover,
775
+ .willa-schedule-calendar-slot--selected:focus-visible {
776
+ background: var(--willa-calendar-range-bg);
777
+ box-shadow: inset 0 0 0 1px var(--willa-schedule-calendar-selected-border);
778
+ }
779
+
780
+ .willa-schedule-calendar-slot--disabled {
781
+ cursor: not-allowed;
782
+ opacity: 0.42;
783
+ }
784
+
785
+ .willa-schedule-calendar-slot--disabled:hover,
786
+ .willa-schedule-calendar-slot--disabled:focus-visible {
787
+ background: var(--willa-panel-bg);
788
+ box-shadow: none;
789
+ }
790
+
791
+ .willa-schedule-calendar-empty {
792
+ display: flex;
793
+ min-height: 3.2rem;
794
+ grid-column: 2 / -1;
795
+ align-items: center;
796
+ justify-content: center;
797
+ border-right: 1px solid var(--willa-schedule-calendar-grid-border);
798
+ border-bottom: 1px solid var(--willa-schedule-calendar-grid-border);
799
+ color: var(--willa-calendar-muted);
800
+ font-size: 0.82rem;
801
+ font-weight: 650;
802
+ }
803
+
804
+ .willa-schedule-calendar-event {
805
+ --willa-schedule-calendar-event-bg: var(--willa-calendar-marker-bg);
806
+ --willa-schedule-calendar-event-border: color-mix(
807
+ in srgb,
808
+ currentColor 22%,
809
+ var(--willa-schedule-calendar-event-bg)
810
+ );
811
+
812
+ display: grid;
813
+ box-sizing: border-box;
814
+ min-height: 2.7rem;
815
+ overflow: hidden;
816
+ position: absolute;
817
+ right: 0.42rem;
818
+ left: 0.42rem;
819
+ z-index: 2;
820
+ align-content: start;
821
+ gap: 0.18rem;
822
+ border: 1px solid var(--willa-schedule-calendar-event-border);
823
+ border-radius: 0.44rem;
824
+ background: var(--willa-schedule-calendar-event-bg);
825
+ color: var(--willa-calendar-marker-text);
826
+ cursor: pointer;
827
+ font-size: 0.74rem;
828
+ line-height: 1.28;
829
+ padding: 0.42rem 0.5rem;
830
+ }
831
+
832
+ .willa-schedule-calendar-event--all-day {
833
+ min-height: 0;
834
+ position: static;
835
+ padding: 0.26rem 0.42rem;
836
+ }
837
+
838
+ .willa-schedule-calendar-event--selected {
839
+ box-shadow: 0 0 0 2px var(--willa-calendar-range-bg);
840
+ }
841
+
842
+ .willa-schedule-calendar-event--neutral {
843
+ --willa-schedule-calendar-event-bg: var(--willa-calendar-marker-neutral-bg);
844
+
845
+ color: var(--willa-calendar-marker-neutral-text);
846
+ }
847
+
848
+ .willa-schedule-calendar-event--success {
849
+ --willa-schedule-calendar-event-bg: var(--willa-calendar-marker-success-bg);
850
+
851
+ color: var(--willa-calendar-marker-success-text);
852
+ }
853
+
854
+ .willa-schedule-calendar-event--warning {
855
+ --willa-schedule-calendar-event-bg: var(--willa-calendar-marker-warning-bg);
856
+
857
+ color: var(--willa-calendar-marker-warning-text);
858
+ }
859
+
860
+ .willa-schedule-calendar-event--danger {
861
+ --willa-schedule-calendar-event-bg: var(--willa-calendar-marker-danger-bg);
862
+
863
+ color: var(--willa-calendar-marker-danger-text);
864
+ }
865
+
866
+ .willa-schedule-calendar-event-title,
867
+ .willa-schedule-calendar-event-meta,
868
+ .willa-schedule-calendar-event > * {
869
+ min-width: 0;
870
+ overflow: hidden;
871
+ text-overflow: ellipsis;
872
+ overflow-wrap: normal;
873
+ word-break: keep-all;
874
+ white-space: nowrap;
875
+ }
876
+
877
+ .willa-schedule-calendar-event-title {
878
+ font-weight: 720;
879
+ }
880
+
881
+ .willa-schedule-calendar-event-meta {
882
+ opacity: 0.82;
883
+ }
884
+
885
+ .willa-schedule-calendar-event-tooltip {
886
+ max-width: min(20rem, calc(100vw - 1rem));
887
+ }
888
+
889
+ .willa-schedule-calendar-event-tooltip-content {
890
+ display: grid;
891
+ gap: 0.18rem;
892
+ color: var(--willa-tooltip-text);
893
+ }
894
+
895
+ .willa-schedule-calendar-event-tooltip-title {
896
+ color: inherit;
897
+ font-weight: 720;
898
+ }
899
+
900
+ .willa-schedule-calendar-event-tooltip-time,
901
+ .willa-schedule-calendar-event-tooltip-meta {
902
+ color: inherit;
903
+ font-size: 0.78rem;
904
+ opacity: 0.78;
905
+ }
906
+
907
+ .willa-schedule-calendar-month {
908
+ display: grid;
909
+ width: 100%;
910
+ max-width: 100%;
911
+ position: relative;
912
+ min-width: 0;
913
+ overflow: auto;
914
+ scrollbar-width: thin;
915
+ scrollbar-color: var(--willa-form-scrollbar-thumb) transparent;
916
+ -ms-overflow-style: auto;
917
+ grid-template-columns: repeat(7, minmax(7.4rem, 1fr));
918
+ border: 1px solid var(--willa-schedule-calendar-grid-border);
919
+ border-radius: 0.72rem;
920
+ background: var(--willa-panel-bg);
921
+ -webkit-overflow-scrolling: touch;
922
+ }
923
+
924
+ .willa-schedule-calendar-month::-webkit-scrollbar {
925
+ width: 0.36rem;
926
+ height: 0.36rem;
927
+ }
928
+
929
+ .willa-schedule-calendar-month::-webkit-scrollbar-track,
930
+ .willa-schedule-calendar-month::-webkit-scrollbar-track-piece,
931
+ .willa-schedule-calendar-month::-webkit-scrollbar-corner {
932
+ background: transparent;
933
+ }
934
+
935
+ .willa-schedule-calendar-month::-webkit-scrollbar-thumb {
936
+ border-radius: 999px;
937
+ background: var(--willa-form-scrollbar-thumb);
938
+ }
939
+
940
+ .willa-schedule-calendar-month-heading,
941
+ .willa-schedule-calendar-month-cell {
942
+ box-sizing: border-box;
943
+ min-width: 0;
944
+ border-right: 1px solid var(--willa-schedule-calendar-grid-border);
945
+ border-bottom: 1px solid var(--willa-schedule-calendar-grid-border);
946
+ }
947
+
948
+ .willa-schedule-calendar-month-heading {
949
+ display: flex;
950
+ min-height: 2.5rem;
951
+ align-items: center;
952
+ justify-content: center;
953
+ background: var(--willa-calendar-weekend-header-bg);
954
+ color: var(--willa-calendar-muted);
955
+ font-size: 0.74rem;
956
+ font-weight: 700;
957
+ }
958
+
959
+ .willa-schedule-calendar-month-heading--weekend {
960
+ color: var(--willa-calendar-title);
961
+ }
962
+
963
+ .willa-schedule-calendar-month-cell {
964
+ display: grid;
965
+ min-height: 7.6rem;
966
+ align-content: start;
967
+ gap: 0.42rem;
968
+ background: var(--willa-panel-bg);
969
+ cursor: pointer;
970
+ outline: none;
971
+ padding: 0.54rem;
972
+ }
973
+
974
+ .willa-schedule-calendar-month-cell:hover,
975
+ .willa-schedule-calendar-month-cell:focus-visible {
976
+ background: var(--willa-calendar-day-bg-hover);
977
+ box-shadow: inset 0 0 0 1px var(--willa-schedule-calendar-state-border);
978
+ }
979
+
980
+ .willa-schedule-calendar-month-cell:hover:has(
981
+ .willa-schedule-calendar-event:hover
982
+ ):not(.willa-schedule-calendar-slot--selected) {
983
+ background: var(--willa-panel-bg);
984
+ box-shadow: none;
985
+ }
986
+
987
+ .willa-schedule-calendar-month-cell--muted {
988
+ color: var(--willa-calendar-muted);
989
+ }
990
+
991
+ .willa-schedule-calendar-month-cell--weekend {
992
+ background: var(--willa-calendar-weekend-header-bg);
993
+ }
994
+
995
+ .willa-schedule-calendar-month-cell--weekend:hover:has(
996
+ .willa-schedule-calendar-event:hover
997
+ ):not(.willa-schedule-calendar-slot--selected) {
998
+ background: var(--willa-calendar-weekend-header-bg);
999
+ }
1000
+
1001
+ .willa-schedule-calendar-month-cell--today {
1002
+ box-shadow: inset 0 0 0 1px var(--willa-schedule-calendar-state-border);
1003
+ }
1004
+
1005
+ .willa-schedule-calendar-month-date {
1006
+ font-size: 0.84rem;
1007
+ font-weight: 720;
1008
+ line-height: 1;
1009
+ }
1010
+
1011
+ .willa-schedule-calendar-month-events {
1012
+ display: grid;
1013
+ min-width: 0;
1014
+ gap: 0.28rem;
1015
+ }
1016
+
1017
+ .willa-schedule-calendar-month-events .willa-schedule-calendar-event {
1018
+ width: 100%;
1019
+ }
1020
+
1021
+ .willa-schedule-calendar-month-more {
1022
+ color: var(--willa-calendar-muted);
1023
+ font-size: 0.72rem;
1024
+ font-weight: 650;
1025
+ line-height: 1.2;
1026
+ }
1027
+
1028
+ .willa-schedule-calendar-month-empty {
1029
+ display: flex;
1030
+ min-height: 4rem;
1031
+ grid-column: 1 / -1;
1032
+ align-items: center;
1033
+ justify-content: center;
1034
+ border-right: 1px solid var(--willa-schedule-calendar-grid-border);
1035
+ border-bottom: 1px solid var(--willa-schedule-calendar-grid-border);
1036
+ color: var(--willa-calendar-muted);
1037
+ font-size: 0.82rem;
1038
+ font-weight: 650;
1039
+ }
1040
+
1041
+ @media (max-width: 767px) {
1042
+ .willa-calendar {
1043
+ width: 100%;
1044
+ gap: 0.62rem;
1045
+ }
1046
+
1047
+ .willa-calendar-day {
1048
+ min-height: 2.5rem;
1049
+ }
1050
+
1051
+ .willa-calendar-day--day {
1052
+ min-height: 4.4rem;
1053
+ padding: 0.72rem 0.56rem 0.66rem;
1054
+ }
1055
+
1056
+ .willa-calendar-day--year,
1057
+ .willa-calendar-day--month {
1058
+ min-height: 2.35rem;
1059
+ }
1060
+
1061
+ .willa-schedule-calendar {
1062
+ width: 100%;
1063
+ }
1064
+
1065
+ .willa-schedule-calendar-grid {
1066
+ grid-template-columns: 3.8rem repeat(7, minmax(5.8rem, 1fr));
1067
+ }
1068
+
1069
+ .willa-schedule-calendar-header {
1070
+ grid-template-columns: auto minmax(0, 1fr) auto auto;
1071
+ }
1072
+
1073
+ .willa-schedule-calendar-view-switch {
1074
+ grid-column: 1 / -1;
1075
+ justify-self: center;
1076
+ }
1077
+
1078
+ .willa-schedule-calendar-month {
1079
+ grid-template-columns: repeat(7, minmax(5.8rem, 1fr));
1080
+ }
1081
+ }