@copilotkit/react-ui 0.15.0-alpha.1 → 0.15.0-alpha.3

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 (315) hide show
  1. package/.turbo/turbo-build.log +192 -288
  2. package/CHANGELOG.md +28 -1
  3. package/dist/{chunk-ZVAH2Z2W.mjs → chunk-3M4HWSE7.mjs} +3 -3
  4. package/dist/chunk-3M4HWSE7.mjs.map +1 -0
  5. package/dist/{chunk-Y2RUG4B3.mjs → chunk-5O2MCJZ2.mjs} +2 -2
  6. package/dist/chunk-5O2MCJZ2.mjs.map +1 -0
  7. package/dist/{chunk-X3Z2EVFV.mjs → chunk-CKJXXQ2W.mjs} +5 -5
  8. package/dist/chunk-CKJXXQ2W.mjs.map +1 -0
  9. package/dist/{chunk-NXWVWC33.mjs → chunk-DPRH4HX3.mjs} +11 -24
  10. package/dist/chunk-DPRH4HX3.mjs.map +1 -0
  11. package/dist/{chunk-UIRFLYXI.mjs → chunk-GWGHQNRI.mjs} +14 -13
  12. package/dist/chunk-GWGHQNRI.mjs.map +1 -0
  13. package/dist/chunk-JD7BAH7U.mjs +3 -0
  14. package/dist/{chunk-X4T6ZUVM.mjs → chunk-KBGIPFXA.mjs} +5 -5
  15. package/dist/chunk-KBGIPFXA.mjs.map +1 -0
  16. package/dist/{chunk-DN3OI5WF.mjs → chunk-NNVWLSYK.mjs} +9 -9
  17. package/dist/chunk-NNVWLSYK.mjs.map +1 -0
  18. package/dist/{chunk-QFASQEFJ.mjs → chunk-NYLOXKYT.mjs} +2 -2
  19. package/dist/chunk-NYLOXKYT.mjs.map +1 -0
  20. package/dist/{chunk-6H3Y2XEI.mjs → chunk-OF66AL5Z.mjs} +1 -1
  21. package/dist/chunk-OF66AL5Z.mjs.map +1 -0
  22. package/dist/{chunk-DPUPEOGG.mjs → chunk-UWPFPWAW.mjs} +2 -2
  23. package/dist/chunk-UWPFPWAW.mjs.map +1 -0
  24. package/dist/{chunk-GPEJCUWA.mjs → chunk-Z34F3WLK.mjs} +2 -2
  25. package/dist/chunk-Z34F3WLK.mjs.map +1 -0
  26. package/dist/components/chat/Button.d.ts +2 -3
  27. package/dist/components/chat/Button.js +38 -0
  28. package/dist/components/chat/Button.js.map +1 -0
  29. package/dist/components/chat/Button.mjs +2 -2
  30. package/dist/components/chat/Chat.d.ts +15 -14
  31. package/dist/components/chat/Chat.js +800 -0
  32. package/dist/components/chat/Chat.js.map +1 -0
  33. package/dist/components/chat/Chat.mjs +9 -9
  34. package/dist/components/chat/ChatContext.d.ts +21 -21
  35. package/dist/components/chat/ChatContext.js +220 -0
  36. package/dist/components/chat/ChatContext.js.map +1 -0
  37. package/dist/components/chat/ChatContext.mjs +1 -1
  38. package/dist/components/chat/CodeBlock.js +221 -0
  39. package/dist/components/chat/CodeBlock.js.map +1 -0
  40. package/dist/components/chat/CodeBlock.mjs +1 -1
  41. package/dist/components/chat/Header.d.ts +2 -3
  42. package/dist/components/chat/Header.js +31 -0
  43. package/dist/components/chat/Header.js.map +1 -0
  44. package/dist/components/chat/Header.mjs +2 -2
  45. package/dist/components/chat/Icons.d.ts +4 -4
  46. package/dist/components/chat/Icons.js +233 -0
  47. package/dist/components/chat/Icons.js.map +1 -0
  48. package/dist/components/chat/Input.d.ts +2 -3
  49. package/dist/components/chat/Input.js +111 -0
  50. package/dist/components/chat/Input.js.map +1 -0
  51. package/dist/components/chat/Input.mjs +2 -2
  52. package/dist/components/chat/Markdown.d.ts +1 -3
  53. package/dist/components/chat/Markdown.js +269 -0
  54. package/dist/components/chat/Markdown.js.map +1 -0
  55. package/dist/components/chat/Markdown.mjs +2 -2
  56. package/dist/components/chat/Messages.d.ts +2 -3
  57. package/dist/components/chat/Messages.js +331 -0
  58. package/dist/components/chat/Messages.js.map +1 -0
  59. package/dist/components/chat/Messages.mjs +4 -4
  60. package/dist/components/chat/Popup.d.ts +5 -4
  61. package/dist/components/chat/Popup.js +806 -0
  62. package/dist/components/chat/Popup.js.map +1 -0
  63. package/dist/components/chat/Popup.mjs +10 -10
  64. package/dist/components/chat/Response.d.ts +2 -3
  65. package/dist/components/chat/Response.js +31 -0
  66. package/dist/components/chat/Response.js.map +1 -0
  67. package/dist/components/chat/Response.mjs +2 -2
  68. package/dist/components/chat/Sidebar.d.ts +7 -6
  69. package/dist/components/chat/Sidebar.js +817 -0
  70. package/dist/components/chat/Sidebar.js.map +1 -0
  71. package/dist/components/chat/Sidebar.mjs +10 -10
  72. package/dist/components/chat/Textarea.d.ts +4 -4
  73. package/dist/components/chat/Textarea.js +55 -0
  74. package/dist/components/chat/Textarea.js.map +1 -0
  75. package/dist/components/chat/Window.d.ts +1 -1
  76. package/dist/components/chat/Window.js +116 -0
  77. package/dist/components/chat/Window.js.map +1 -0
  78. package/dist/components/chat/index.d.ts +5 -4
  79. package/dist/components/chat/index.js +824 -0
  80. package/dist/components/chat/index.js.map +1 -0
  81. package/dist/components/chat/index.mjs +11 -11
  82. package/dist/components/chat/props.d.ts +1 -1
  83. package/dist/components/chat/props.js +4 -0
  84. package/dist/components/index.d.ts +5 -11
  85. package/dist/components/index.js +824 -0
  86. package/dist/components/index.js.map +1 -0
  87. package/dist/components/index.mjs +12 -33
  88. package/dist/context/index.js +4 -0
  89. package/dist/hooks/index.js +4 -0
  90. package/dist/hooks/use-copy-to-clipboard.js +47 -0
  91. package/dist/hooks/use-copy-to-clipboard.js.map +1 -0
  92. package/dist/index.css +112 -916
  93. package/dist/index.css.map +1 -1
  94. package/dist/index.d.ts +5 -11
  95. package/dist/index.js +824 -0
  96. package/dist/index.js.map +1 -0
  97. package/dist/index.mjs +13 -34
  98. package/dist/lib/utils.js +64 -0
  99. package/dist/lib/utils.js.map +1 -0
  100. package/dist/lib/utils.mjs +38 -2
  101. package/dist/lib/utils.mjs.map +1 -1
  102. package/dist/lib/utils.test.js +10 -0
  103. package/dist/lib/utils.test.js.map +1 -0
  104. package/dist/types/index.js +4 -0
  105. package/dist/types/types.d.ts +1 -1
  106. package/dist/types/types.js +4 -0
  107. package/package.json +10 -9
  108. package/src/components/chat/Button.tsx +1 -2
  109. package/src/components/chat/Chat.tsx +7 -7
  110. package/src/components/chat/ChatContext.tsx +10 -10
  111. package/src/components/chat/CodeBlock.tsx +12 -36
  112. package/src/components/chat/Header.tsx +1 -2
  113. package/src/components/chat/Input.tsx +1 -1
  114. package/src/components/chat/Markdown.tsx +17 -11
  115. package/src/components/chat/Messages.tsx +2 -2
  116. package/src/components/chat/Popup.tsx +3 -4
  117. package/src/components/chat/Response.tsx +1 -2
  118. package/src/components/chat/Sidebar.tsx +4 -4
  119. package/src/components/chat/index.tsx +2 -2
  120. package/src/components/chat/props.ts +1 -1
  121. package/src/components/index.ts +0 -8
  122. package/src/css/animations.css +6 -0
  123. package/src/css/markdown.css +123 -0
  124. package/src/styles.css +1 -0
  125. package/src/types/types.ts +1 -1
  126. package/tsup.config.ts +1 -2
  127. package/dist/chunk-2KAF7NKC.mjs +0 -484
  128. package/dist/chunk-2KAF7NKC.mjs.map +0 -1
  129. package/dist/chunk-5KEDV5VC.mjs +0 -27
  130. package/dist/chunk-5KEDV5VC.mjs.map +0 -1
  131. package/dist/chunk-6H3Y2XEI.mjs.map +0 -1
  132. package/dist/chunk-6LAZQHEB.mjs +0 -129
  133. package/dist/chunk-6LAZQHEB.mjs.map +0 -1
  134. package/dist/chunk-C34L4AWW.mjs +0 -39
  135. package/dist/chunk-C34L4AWW.mjs.map +0 -1
  136. package/dist/chunk-CF3BK4OX.mjs +0 -53
  137. package/dist/chunk-CF3BK4OX.mjs.map +0 -1
  138. package/dist/chunk-CNQX2VY3.mjs +0 -66
  139. package/dist/chunk-CNQX2VY3.mjs.map +0 -1
  140. package/dist/chunk-DN3OI5WF.mjs.map +0 -1
  141. package/dist/chunk-DPUPEOGG.mjs.map +0 -1
  142. package/dist/chunk-FZRTAML3.mjs +0 -3
  143. package/dist/chunk-GCOPYGHH.mjs +0 -27
  144. package/dist/chunk-GCOPYGHH.mjs.map +0 -1
  145. package/dist/chunk-GPEJCUWA.mjs.map +0 -1
  146. package/dist/chunk-IJLMKBSZ.mjs +0 -25
  147. package/dist/chunk-IJLMKBSZ.mjs.map +0 -1
  148. package/dist/chunk-INCNMGJ7.mjs +0 -72
  149. package/dist/chunk-INCNMGJ7.mjs.map +0 -1
  150. package/dist/chunk-M3CZWJI3.mjs +0 -44
  151. package/dist/chunk-M3CZWJI3.mjs.map +0 -1
  152. package/dist/chunk-MC6KTH4X.mjs +0 -12
  153. package/dist/chunk-MC6KTH4X.mjs.map +0 -1
  154. package/dist/chunk-NXWVWC33.mjs.map +0 -1
  155. package/dist/chunk-OHWEJUCS.mjs +0 -18
  156. package/dist/chunk-OHWEJUCS.mjs.map +0 -1
  157. package/dist/chunk-OOBQC5H6.mjs +0 -34
  158. package/dist/chunk-OOBQC5H6.mjs.map +0 -1
  159. package/dist/chunk-Q6YO7LDK.mjs +0 -40
  160. package/dist/chunk-Q6YO7LDK.mjs.map +0 -1
  161. package/dist/chunk-QFASQEFJ.mjs.map +0 -1
  162. package/dist/chunk-RPTRCFSO.mjs +0 -42
  163. package/dist/chunk-RPTRCFSO.mjs.map +0 -1
  164. package/dist/chunk-SEH5PQVW.mjs +0 -52
  165. package/dist/chunk-SEH5PQVW.mjs.map +0 -1
  166. package/dist/chunk-SHOTWRKC.mjs +0 -18
  167. package/dist/chunk-SHOTWRKC.mjs.map +0 -1
  168. package/dist/chunk-SRBUGQTM.mjs +0 -109
  169. package/dist/chunk-SRBUGQTM.mjs.map +0 -1
  170. package/dist/chunk-TEYIQHMK.mjs +0 -12
  171. package/dist/chunk-TEYIQHMK.mjs.map +0 -1
  172. package/dist/chunk-UIRFLYXI.mjs.map +0 -1
  173. package/dist/chunk-VGX2W5ZB.mjs +0 -28
  174. package/dist/chunk-VGX2W5ZB.mjs.map +0 -1
  175. package/dist/chunk-X3Z2EVFV.mjs.map +0 -1
  176. package/dist/chunk-X4T6ZUVM.mjs.map +0 -1
  177. package/dist/chunk-XGUBRIUV.mjs +0 -72
  178. package/dist/chunk-XGUBRIUV.mjs.map +0 -1
  179. package/dist/chunk-Y2RUG4B3.mjs.map +0 -1
  180. package/dist/chunk-ZVAH2Z2W.mjs.map +0 -1
  181. package/dist/chunk-ZYC5YVDO.mjs +0 -21
  182. package/dist/chunk-ZYC5YVDO.mjs.map +0 -1
  183. package/dist/components/chat-components/chat-list.d.ts +0 -8
  184. package/dist/components/chat-components/chat-list.mjs +0 -13
  185. package/dist/components/chat-components/chat-message-actions.d.ts +0 -8
  186. package/dist/components/chat-components/chat-message-actions.mjs +0 -8
  187. package/dist/components/chat-components/chat-message.d.ts +0 -8
  188. package/dist/components/chat-components/chat-message.mjs +0 -11
  189. package/dist/components/chat-components/chat-panel.d.ts +0 -8
  190. package/dist/components/chat-components/chat-panel.mjs +0 -10
  191. package/dist/components/chat-components/chat-scroll-anchor.d.ts +0 -6
  192. package/dist/components/chat-components/chat-scroll-anchor.mjs +0 -5
  193. package/dist/components/chat-components/clear-history.d.ts +0 -9
  194. package/dist/components/chat-components/clear-history.mjs +0 -56
  195. package/dist/components/chat-components/clear-history.mjs.map +0 -1
  196. package/dist/components/chat-components/copilot-chat.d.ts +0 -12
  197. package/dist/components/chat-components/copilot-chat.mjs +0 -22
  198. package/dist/components/chat-components/copilot-chat.mjs.map +0 -1
  199. package/dist/components/chat-components/default-empty-screen.d.ts +0 -8
  200. package/dist/components/chat-components/default-empty-screen.mjs +0 -8
  201. package/dist/components/chat-components/default-empty-screen.mjs.map +0 -1
  202. package/dist/components/chat-components/external-link.d.ts +0 -6
  203. package/dist/components/chat-components/external-link.mjs +0 -4
  204. package/dist/components/chat-components/external-link.mjs.map +0 -1
  205. package/dist/components/chat-components/markdown.d.ts +0 -6
  206. package/dist/components/chat-components/markdown.mjs +0 -4
  207. package/dist/components/chat-components/markdown.mjs.map +0 -1
  208. package/dist/components/chat-components/prompt-form.d.ts +0 -9
  209. package/dist/components/chat-components/prompt-form.mjs +0 -9
  210. package/dist/components/chat-components/prompt-form.mjs.map +0 -1
  211. package/dist/components/chat-components/theme-toggle.d.ts +0 -3
  212. package/dist/components/chat-components/theme-toggle.mjs +0 -32
  213. package/dist/components/chat-components/theme-toggle.mjs.map +0 -1
  214. package/dist/components/chat-components/toaster.d.ts +0 -1
  215. package/dist/components/chat-components/toaster.mjs +0 -4
  216. package/dist/components/chat-components/toaster.mjs.map +0 -1
  217. package/dist/components/chat-components/ui/alert-dialog.d.ts +0 -20
  218. package/dist/components/chat-components/ui/alert-dialog.mjs +0 -6
  219. package/dist/components/chat-components/ui/alert-dialog.mjs.map +0 -1
  220. package/dist/components/chat-components/ui/badge.d.ts +0 -12
  221. package/dist/components/chat-components/ui/badge.mjs +0 -29
  222. package/dist/components/chat-components/ui/badge.mjs.map +0 -1
  223. package/dist/components/chat-components/ui/button.d.ts +0 -14
  224. package/dist/components/chat-components/ui/button.mjs +0 -5
  225. package/dist/components/chat-components/ui/button.mjs.map +0 -1
  226. package/dist/components/chat-components/ui/codeblock.d.ts +0 -14
  227. package/dist/components/chat-components/ui/codeblock.mjs +0 -8
  228. package/dist/components/chat-components/ui/codeblock.mjs.map +0 -1
  229. package/dist/components/chat-components/ui/dialog.d.ts +0 -18
  230. package/dist/components/chat-components/ui/dialog.mjs +0 -94
  231. package/dist/components/chat-components/ui/dialog.mjs.map +0 -1
  232. package/dist/components/chat-components/ui/dropdown-menu.d.ts +0 -24
  233. package/dist/components/chat-components/ui/dropdown-menu.mjs +0 -87
  234. package/dist/components/chat-components/ui/dropdown-menu.mjs.map +0 -1
  235. package/dist/components/chat-components/ui/icons.d.ts +0 -33
  236. package/dist/components/chat-components/ui/icons.mjs +0 -5
  237. package/dist/components/chat-components/ui/icons.mjs.map +0 -1
  238. package/dist/components/chat-components/ui/input.d.ts +0 -7
  239. package/dist/components/chat-components/ui/input.mjs +0 -26
  240. package/dist/components/chat-components/ui/input.mjs.map +0 -1
  241. package/dist/components/chat-components/ui/label.d.ts +0 -8
  242. package/dist/components/chat-components/ui/label.mjs +0 -19
  243. package/dist/components/chat-components/ui/label.mjs.map +0 -1
  244. package/dist/components/chat-components/ui/select.d.ts +0 -13
  245. package/dist/components/chat-components/ui/select.mjs +0 -101
  246. package/dist/components/chat-components/ui/select.mjs.map +0 -1
  247. package/dist/components/chat-components/ui/separator.d.ts +0 -6
  248. package/dist/components/chat-components/ui/separator.mjs +0 -5
  249. package/dist/components/chat-components/ui/separator.mjs.map +0 -1
  250. package/dist/components/chat-components/ui/sheet.d.ts +0 -19
  251. package/dist/components/chat-components/ui/sheet.mjs +0 -93
  252. package/dist/components/chat-components/ui/sheet.mjs.map +0 -1
  253. package/dist/components/chat-components/ui/switch.d.ts +0 -6
  254. package/dist/components/chat-components/ui/switch.mjs +0 -33
  255. package/dist/components/chat-components/ui/switch.mjs.map +0 -1
  256. package/dist/components/chat-components/ui/textarea.d.ts +0 -7
  257. package/dist/components/chat-components/ui/textarea.mjs +0 -25
  258. package/dist/components/chat-components/ui/textarea.mjs.map +0 -1
  259. package/dist/components/chat-components/ui/tooltip.d.ts +0 -9
  260. package/dist/components/chat-components/ui/tooltip.mjs +0 -5
  261. package/dist/components/chat-components/ui/tooltip.mjs.map +0 -1
  262. package/dist/components/sidebar/copilot-sidebar-ui-provider.d.ts +0 -8
  263. package/dist/components/sidebar/copilot-sidebar-ui-provider.mjs +0 -25
  264. package/dist/components/sidebar/copilot-sidebar-ui-provider.mjs.map +0 -1
  265. package/dist/components/sidebar/copilot-sidebar.d.ts +0 -6
  266. package/dist/components/sidebar/copilot-sidebar.mjs +0 -23
  267. package/dist/components/sidebar/copilot-sidebar.mjs.map +0 -1
  268. package/dist/components/sidebar/sidebar-context.d.ts +0 -9
  269. package/dist/components/sidebar/sidebar-context.mjs +0 -4
  270. package/dist/components/sidebar/sidebar-context.mjs.map +0 -1
  271. package/dist/hooks/use-at-bottom.d.ts +0 -3
  272. package/dist/hooks/use-at-bottom.mjs +0 -4
  273. package/dist/hooks/use-at-bottom.mjs.map +0 -1
  274. package/dist/hooks/use-enter-submit.d.ts +0 -8
  275. package/dist/hooks/use-enter-submit.mjs +0 -4
  276. package/dist/hooks/use-enter-submit.mjs.map +0 -1
  277. package/src/components/chat-components/chat-list.tsx +0 -28
  278. package/src/components/chat-components/chat-message-actions.tsx +0 -36
  279. package/src/components/chat-components/chat-message.tsx +0 -70
  280. package/src/components/chat-components/chat-panel.tsx +0 -64
  281. package/src/components/chat-components/chat-scroll-anchor.tsx +0 -29
  282. package/src/components/chat-components/clear-history.tsx +0 -72
  283. package/src/components/chat-components/copilot-chat.tsx +0 -57
  284. package/src/components/chat-components/default-empty-screen.tsx +0 -57
  285. package/src/components/chat-components/external-link.tsx +0 -17
  286. package/src/components/chat-components/markdown.tsx +0 -8
  287. package/src/components/chat-components/prompt-form.tsx +0 -85
  288. package/src/components/chat-components/theme-toggle.tsx +0 -31
  289. package/src/components/chat-components/toaster.tsx +0 -3
  290. package/src/components/chat-components/ui/alert-dialog.tsx +0 -126
  291. package/src/components/chat-components/ui/badge.tsx +0 -33
  292. package/src/components/chat-components/ui/button.tsx +0 -49
  293. package/src/components/chat-components/ui/codeblock.tsx +0 -137
  294. package/src/components/chat-components/ui/dialog.tsx +0 -106
  295. package/src/components/chat-components/ui/dropdown-menu.tsx +0 -117
  296. package/src/components/chat-components/ui/icons.tsx +0 -484
  297. package/src/components/chat-components/ui/input.tsx +0 -24
  298. package/src/components/chat-components/ui/label.tsx +0 -21
  299. package/src/components/chat-components/ui/select.tsx +0 -119
  300. package/src/components/chat-components/ui/separator.tsx +0 -26
  301. package/src/components/chat-components/ui/sheet.tsx +0 -106
  302. package/src/components/chat-components/ui/switch.tsx +0 -29
  303. package/src/components/chat-components/ui/textarea.tsx +0 -23
  304. package/src/components/chat-components/ui/tooltip.tsx +0 -30
  305. package/src/components/sidebar/copilot-sidebar-ui-provider.tsx +0 -73
  306. package/src/components/sidebar/copilot-sidebar.tsx +0 -38
  307. package/src/components/sidebar/sidebar-context.tsx +0 -11
  308. package/src/hooks/use-at-bottom.tsx +0 -20
  309. package/src/hooks/use-enter-submit.tsx +0 -17
  310. /package/dist/{chunk-FZRTAML3.mjs.map → chunk-JD7BAH7U.mjs.map} +0 -0
  311. /package/dist/components/{chat-components/chat-list.mjs.map → chat/props.js.map} +0 -0
  312. /package/dist/{components/chat-components/chat-message-actions.mjs.map → context/index.js.map} +0 -0
  313. /package/dist/{components/chat-components/chat-message.mjs.map → hooks/index.js.map} +0 -0
  314. /package/dist/{components/chat-components/chat-panel.mjs.map → types/index.js.map} +0 -0
  315. /package/dist/{components/chat-components/chat-scroll-anchor.mjs.map → types/types.js.map} +0 -0
package/dist/index.css CHANGED
@@ -411,6 +411,11 @@
411
411
  transform: rotate(360deg);
412
412
  }
413
413
  }
414
+ @keyframes copilotKitPulseAnimation {
415
+ 50% {
416
+ opacity: 0.5;
417
+ }
418
+ }
414
419
 
415
420
  /* src/css/response.css */
416
421
  .copilotKitResponseButton {
@@ -441,6 +446,113 @@
441
446
  margin-right: 0.5rem;
442
447
  }
443
448
 
449
+ /* src/css/markdown.css */
450
+ .copilotKitMarkdown h1,
451
+ .copilotKitMarkdown h2,
452
+ .copilotKitMarkdown h3,
453
+ .copilotKitMarkdown h4,
454
+ .copilotKitMarkdown h5,
455
+ .copilotKitMarkdown h6 {
456
+ font-weight: bold;
457
+ line-height: 1.2;
458
+ margin-bottom: 1rem;
459
+ }
460
+ .copilotKitMarkdown h1 {
461
+ font-size: 1.5em;
462
+ }
463
+ .copilotKitMarkdown h2 {
464
+ font-size: 1.25em;
465
+ font-weight: 600;
466
+ }
467
+ .copilotKitMarkdown h3 {
468
+ font-size: 1.1em;
469
+ }
470
+ .copilotKitMarkdown h4 {
471
+ font-size: 1em;
472
+ }
473
+ .copilotKitMarkdown h5 {
474
+ font-size: 0.9em;
475
+ }
476
+ .copilotKitMarkdown h6 {
477
+ font-size: 0.8em;
478
+ }
479
+ .copilotKitMarkdown p {
480
+ margin-bottom: 1.25em;
481
+ }
482
+ .copilotKitMarkdown pre {
483
+ margin-bottom: 1.25em;
484
+ }
485
+ .copilotKitMarkdown blockquote {
486
+ border-color: rgb(142, 142, 160);
487
+ border-left-width: 2px;
488
+ border-left-style: solid;
489
+ line-height: 1.2;
490
+ padding-left: 10px;
491
+ }
492
+ .copilotKitMarkdown blockquote p {
493
+ padding: 0.7em 0;
494
+ }
495
+ .copilotKitMarkdown ul {
496
+ list-style-type: disc;
497
+ padding-left: 20px;
498
+ overflow: visible;
499
+ }
500
+ .copilotKitMarkdown li {
501
+ list-style-type: inherit;
502
+ list-style-position: outside;
503
+ margin-left: 0;
504
+ padding-left: 0;
505
+ position: relative;
506
+ overflow: visible;
507
+ }
508
+ .copilotKitCodeBlock {
509
+ position: relative;
510
+ width: 100%;
511
+ background-color: rgb(9 9 11);
512
+ border-radius: 0.375rem;
513
+ }
514
+ .copilotKitCodeBlockToolbar {
515
+ display: flex;
516
+ width: 100%;
517
+ align-items: center;
518
+ justify-content: space-between;
519
+ background-color: rgb(39 39 42);
520
+ padding-left: 1rem;
521
+ padding-top: 0.09rem;
522
+ padding-bottom: 0.09rem;
523
+ color: rgb(228, 228, 228);
524
+ border-top-left-radius: 0.375rem;
525
+ border-top-right-radius: 0.375rem;
526
+ font-family: sans-serif;
527
+ }
528
+ .copilotKitCodeBlockToolbarLanguage {
529
+ font-size: 0.75rem;
530
+ line-height: 1rem;
531
+ text-transform: lowercase;
532
+ }
533
+ .copilotKitCodeBlockToolbarButtons {
534
+ display: flex;
535
+ align-items: center;
536
+ margin-right: 0.25rem;
537
+ margin-left: 0.25rem;
538
+ }
539
+ .copilotKitCodeBlockToolbarButton {
540
+ display: inline-flex;
541
+ align-items: center;
542
+ justify-content: center;
543
+ border-radius: 0.375rem;
544
+ font-size: 0.875rem;
545
+ line-height: 1.25rem;
546
+ font-weight: 500;
547
+ height: 2.5rem;
548
+ width: 2.5rem;
549
+ padding: 3px;
550
+ margin: 2px;
551
+ }
552
+ .copilotKitCodeBlockToolbarButton:hover {
553
+ background-color: rgb(55, 55, 58);
554
+ }
555
+
444
556
  /* src/styles.css */
445
557
  *,
446
558
  ::before,
@@ -769,941 +881,25 @@ video {
769
881
  white-space: nowrap;
770
882
  border-width: 0;
771
883
  }
772
- .pointer-events-none {
773
- pointer-events: none;
774
- }
775
884
  .fixed {
776
885
  position: fixed;
777
886
  }
778
- .absolute {
779
- position: absolute;
780
- }
781
- .relative {
782
- position: relative;
783
- }
784
- .inset-0 {
785
- inset: 0px;
786
- }
787
- .inset-x-0 {
788
- left: 0px;
789
- right: 0px;
790
- }
791
- .bottom-0 {
792
- bottom: 0px;
793
- }
794
- .left-0 {
795
- left: 0px;
796
- }
797
- .left-2 {
798
- left: 0.5rem;
799
- }
800
- .right-0 {
801
- right: 0px;
802
- }
803
- .right-4 {
804
- right: 1rem;
805
- }
806
- .top-4 {
807
- top: 1rem;
808
- }
809
- .z-50 {
810
- z-index: 50;
811
- }
812
- .-mx-1 {
813
- margin-left: -0.25rem;
814
- margin-right: -0.25rem;
815
- }
816
- .mx-auto {
817
- margin-left: auto;
818
- margin-right: auto;
819
- }
820
- .my-1 {
821
- margin-top: 0.25rem;
822
- margin-bottom: 0.25rem;
823
- }
824
- .my-4 {
825
- margin-top: 1rem;
826
- margin-bottom: 1rem;
827
- }
828
- .mb-2 {
829
- margin-bottom: 0.5rem;
830
- }
831
- .mb-4 {
832
- margin-bottom: 1rem;
833
- }
834
- .mb-8 {
835
- margin-bottom: 2rem;
836
- }
837
- .ml-3 {
838
- margin-left: 0.75rem;
839
- }
840
- .ml-4 {
841
- margin-left: 1rem;
842
- }
843
- .ml-auto {
844
- margin-left: auto;
845
- }
846
- .mr-2 {
847
- margin-right: 0.5rem;
848
- }
849
- .mt-1 {
850
- margin-top: 0.25rem;
851
- }
852
- .mt-2 {
853
- margin-top: 0.5rem;
854
- }
855
- .mt-4 {
856
- margin-top: 1rem;
857
- }
858
- .box-border {
859
- box-sizing: border-box;
860
- }
861
- .block {
862
- display: block;
863
- }
864
887
  .inline-block {
865
888
  display: inline-block;
866
889
  }
867
890
  .inline {
868
891
  display: inline;
869
892
  }
870
- .flex {
871
- display: flex;
872
- }
873
- .inline-flex {
874
- display: inline-flex;
875
- }
876
- .grid {
877
- display: grid;
878
- }
879
893
  .hidden {
880
894
  display: none;
881
895
  }
882
- .h-10 {
883
- height: 2.5rem;
884
- }
885
- .h-11 {
886
- height: 2.75rem;
887
- }
888
- .h-3 {
889
- height: 0.75rem;
890
- }
891
- .h-3\.5 {
892
- height: 0.875rem;
893
- }
894
- .h-4 {
895
- height: 1rem;
896
- }
897
- .h-5 {
898
- height: 1.25rem;
899
- }
900
- .h-6 {
901
- height: 1.5rem;
902
- }
903
- .h-7 {
904
- height: 1.75rem;
905
- }
906
- .h-8 {
907
- height: 2rem;
908
- }
909
- .h-9 {
910
- height: 2.25rem;
911
- }
912
- .h-\[1px\] {
913
- height: 1px;
914
- }
915
- .h-\[24px\] {
916
- height: 24px;
917
- }
918
- .h-\[var\(--radix-select-trigger-height\)\] {
919
- height: var(--radix-select-trigger-height);
920
- }
921
- .h-auto {
922
- height: auto;
923
- }
924
- .h-full {
925
- height: 100%;
926
- }
927
- .h-px {
928
- height: 1px;
929
- }
930
- .max-h-60 {
931
- max-height: 15rem;
932
- }
933
- .min-h-\[60px\] {
934
- min-height: 60px;
935
- }
936
- .min-h-\[80px\] {
937
- min-height: 80px;
938
- }
939
- .w-10 {
940
- width: 2.5rem;
941
- }
942
- .w-3 {
943
- width: 0.75rem;
944
- }
945
- .w-3\.5 {
946
- width: 0.875rem;
947
- }
948
- .w-4 {
949
- width: 1rem;
950
- }
951
- .w-5 {
952
- width: 1.25rem;
953
- }
954
- .w-6 {
955
- width: 1.5rem;
956
- }
957
- .w-8 {
958
- width: 2rem;
959
- }
960
- .w-\[1px\] {
961
- width: 1px;
962
- }
963
- .w-\[44px\] {
964
- width: 44px;
965
- }
966
- .w-full {
967
- width: 100%;
968
- }
969
- .min-w-\[8rem\] {
970
- min-width: 8rem;
971
- }
972
- .min-w-\[var\(--radix-select-trigger-width\)\] {
973
- min-width: var(--radix-select-trigger-width);
974
- }
975
- .max-w-2xl {
976
- max-width: 42rem;
977
- }
978
- .max-w-lg {
979
- max-width: 32rem;
980
- }
981
- .flex-1 {
982
- flex: 1 1 0%;
983
- }
984
- .flex-shrink-0 {
985
- flex-shrink: 0;
986
- }
987
- .shrink-0 {
988
- flex-shrink: 0;
989
- }
990
- .flex-grow {
991
- flex-grow: 1;
992
- }
993
- .grow {
994
- flex-grow: 1;
995
- }
996
- .translate-y-1 {
997
- --tw-translate-y: 0.25rem;
998
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
999
- }
1000
- .scale-100 {
1001
- --tw-scale-x: 1;
1002
- --tw-scale-y: 1;
1003
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1004
- }
1005
896
  .transform {
1006
897
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1007
898
  }
1008
- @keyframes pulse {
1009
- 50% {
1010
- opacity: .5;
1011
- }
1012
- }
1013
- .animate-pulse {
1014
- animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1015
- }
1016
- @keyframes spin {
1017
- to {
1018
- transform: rotate(360deg);
1019
- }
1020
- }
1021
- .animate-spin {
1022
- animation: spin 1s linear infinite;
1023
- }
1024
- .cursor-default {
1025
- cursor: default;
1026
- }
1027
- .cursor-pointer {
1028
- cursor: pointer;
1029
- }
1030
- .select-none {
1031
- -webkit-user-select: none;
1032
- -moz-user-select: none;
1033
- user-select: none;
1034
- }
1035
- .resize-none {
1036
- resize: none;
1037
- }
1038
899
  .resize {
1039
900
  resize: both;
1040
901
  }
1041
- .flex-col {
1042
- flex-direction: column;
1043
- }
1044
- .flex-col-reverse {
1045
- flex-direction: column-reverse;
1046
- }
1047
- .items-start {
1048
- align-items: flex-start;
1049
- }
1050
- .items-end {
1051
- align-items: flex-end;
1052
- }
1053
- .items-center {
1054
- align-items: center;
1055
- }
1056
- .justify-end {
1057
- justify-content: flex-end;
1058
- }
1059
- .justify-center {
1060
- justify-content: center;
1061
- }
1062
- .justify-between {
1063
- justify-content: space-between;
1064
- }
1065
- .gap-1 {
1066
- gap: 0.25rem;
1067
- }
1068
- .gap-4 {
1069
- gap: 1rem;
1070
- }
1071
- .space-x-1 > :not([hidden]) ~ :not([hidden]) {
1072
- --tw-space-x-reverse: 0;
1073
- margin-right: calc(0.25rem * var(--tw-space-x-reverse));
1074
- margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
1075
- }
1076
- .space-y-1 > :not([hidden]) ~ :not([hidden]) {
1077
- --tw-space-y-reverse: 0;
1078
- margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
1079
- margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
1080
- }
1081
- .space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
1082
- --tw-space-y-reverse: 0;
1083
- margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
1084
- margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
1085
- }
1086
- .space-y-2 > :not([hidden]) ~ :not([hidden]) {
1087
- --tw-space-y-reverse: 0;
1088
- margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
1089
- margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
1090
- }
1091
- .space-y-4 > :not([hidden]) ~ :not([hidden]) {
1092
- --tw-space-y-reverse: 0;
1093
- margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
1094
- margin-bottom: calc(1rem * var(--tw-space-y-reverse));
1095
- }
1096
- .overflow-hidden {
1097
- overflow: hidden;
1098
- }
1099
- .overflow-y-auto {
1100
- overflow-y: auto;
1101
- }
1102
- .overflow-x-hidden {
1103
- overflow-x: hidden;
1104
- }
1105
- .break-words {
1106
- overflow-wrap: break-word;
1107
- }
1108
- .rounded-full {
1109
- border-radius: 9999px;
1110
- }
1111
- .rounded-lg {
1112
- border-radius: 0.5rem;
1113
- }
1114
- .rounded-md {
1115
- border-radius: 0.375rem;
1116
- }
1117
- .rounded-sm {
1118
- border-radius: 0.125rem;
1119
- }
1120
- .rounded-b-lg {
1121
- border-bottom-right-radius: 0.5rem;
1122
- border-bottom-left-radius: 0.5rem;
1123
- }
1124
- .border {
1125
- border-width: 1px;
1126
- }
1127
- .border-2 {
1128
- border-width: 2px;
1129
- }
1130
- .border-l-2 {
1131
- border-left-width: 2px;
1132
- }
1133
- .border-r {
1134
- border-right-width: 1px;
1135
- }
1136
- .border-transparent {
1137
- border-color: transparent;
1138
- }
1139
- .bg-gray-50 {
1140
- --tw-bg-opacity: 1;
1141
- background-color: rgb(249 250 251 / var(--tw-bg-opacity));
1142
- }
1143
- .bg-slate-100 {
1144
- --tw-bg-opacity: 1;
1145
- background-color: rgb(241 245 249 / var(--tw-bg-opacity));
1146
- }
1147
- .bg-slate-300 {
1148
- --tw-bg-opacity: 1;
1149
- background-color: rgb(203 213 225 / var(--tw-bg-opacity));
1150
- }
1151
- .bg-transparent {
1152
- background-color: transparent;
1153
- }
1154
- .bg-white {
1155
- --tw-bg-opacity: 1;
1156
- background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1157
- }
1158
- .bg-zinc-800 {
1159
- --tw-bg-opacity: 1;
1160
- background-color: rgb(39 39 42 / var(--tw-bg-opacity));
1161
- }
1162
- .bg-zinc-950 {
1163
- --tw-bg-opacity: 1;
1164
- background-color: rgb(9 9 11 / var(--tw-bg-opacity));
1165
- }
1166
- .bg-gradient-to-b {
1167
- background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
1168
- }
1169
- .from-10\% {
1170
- --tw-gradient-from-position: 10%;
1171
- }
1172
- .to-50\% {
1173
- --tw-gradient-to-position: 50%;
1174
- }
1175
- .p-0 {
1176
- padding: 0px;
1177
- }
1178
- .p-1 {
1179
- padding: 0.25rem;
1180
- }
1181
- .p-2 {
1182
- padding: 0.5rem;
1183
- }
1184
- .p-6 {
1185
- padding: 1.5rem;
1186
- }
1187
- .p-8 {
1188
- padding: 2rem;
1189
- }
1190
- .px-0 {
1191
- padding-left: 0px;
1192
- padding-right: 0px;
1193
- }
1194
- .px-1 {
1195
- padding-left: 0.25rem;
1196
- padding-right: 0.25rem;
1197
- }
1198
- .px-2 {
1199
- padding-left: 0.5rem;
1200
- padding-right: 0.5rem;
1201
- }
1202
- .px-2\.5 {
1203
- padding-left: 0.625rem;
1204
- padding-right: 0.625rem;
1205
- }
1206
- .px-3 {
1207
- padding-left: 0.75rem;
1208
- padding-right: 0.75rem;
1209
- }
1210
- .px-4 {
1211
- padding-left: 1rem;
1212
- padding-right: 1rem;
1213
- }
1214
- .px-5 {
1215
- padding-left: 1.25rem;
1216
- padding-right: 1.25rem;
1217
- }
1218
- .px-6 {
1219
- padding-left: 1.5rem;
1220
- padding-right: 1.5rem;
1221
- }
1222
- .px-8 {
1223
- padding-left: 2rem;
1224
- padding-right: 2rem;
1225
- }
1226
- .py-0 {
1227
- padding-top: 0px;
1228
- padding-bottom: 0px;
1229
- }
1230
- .py-0\.5 {
1231
- padding-top: 0.125rem;
1232
- padding-bottom: 0.125rem;
1233
- }
1234
- .py-1 {
1235
- padding-top: 0.25rem;
1236
- padding-bottom: 0.25rem;
1237
- }
1238
- .py-1\.5 {
1239
- padding-top: 0.375rem;
1240
- padding-bottom: 0.375rem;
1241
- }
1242
- .py-2 {
1243
- padding-top: 0.5rem;
1244
- padding-bottom: 0.5rem;
1245
- }
1246
- .py-6 {
1247
- padding-top: 1.5rem;
1248
- padding-bottom: 1.5rem;
1249
- }
1250
- .py-\[1\.3rem\] {
1251
- padding-top: 1.3rem;
1252
- padding-bottom: 1.3rem;
1253
- }
1254
- .pl-0 {
1255
- padding-left: 0px;
1256
- }
1257
- .pl-8 {
1258
- padding-left: 2rem;
1259
- }
1260
- .pr-2 {
1261
- padding-right: 0.5rem;
1262
- }
1263
- .pr-4 {
1264
- padding-right: 1rem;
1265
- }
1266
- .pr-6 {
1267
- padding-right: 1.5rem;
1268
- }
1269
- .pt-5 {
1270
- padding-top: 1.25rem;
1271
- }
1272
- .text-center {
1273
- text-align: center;
1274
- }
1275
- .font-sans {
1276
- font-family:
1277
- ui-sans-serif,
1278
- system-ui,
1279
- -apple-system,
1280
- BlinkMacSystemFont,
1281
- "Segoe UI",
1282
- Roboto,
1283
- "Helvetica Neue",
1284
- Arial,
1285
- "Noto Sans",
1286
- sans-serif,
1287
- "Apple Color Emoji",
1288
- "Segoe UI Emoji",
1289
- "Segoe UI Symbol",
1290
- "Noto Color Emoji";
1291
- }
1292
- .text-base {
1293
- font-size: 1rem;
1294
- line-height: 1.5rem;
1295
- }
1296
- .text-lg {
1297
- font-size: 1.125rem;
1298
- line-height: 1.75rem;
1299
- }
1300
- .text-sm {
1301
- font-size: 0.875rem;
1302
- line-height: 1.25rem;
1303
- }
1304
- .text-xs {
1305
- font-size: 0.75rem;
1306
- line-height: 1rem;
1307
- }
1308
- .font-medium {
1309
- font-weight: 500;
1310
- }
1311
- .font-semibold {
1312
- font-weight: 600;
1313
- }
1314
902
  .lowercase {
1315
903
  text-transform: lowercase;
1316
904
  }
1317
- .leading-4 {
1318
- line-height: 1rem;
1319
- }
1320
- .leading-6 {
1321
- line-height: 1.5rem;
1322
- }
1323
- .leading-none {
1324
- line-height: 1;
1325
- }
1326
- .leading-normal {
1327
- line-height: 1.5;
1328
- }
1329
- .tracking-tight {
1330
- letter-spacing: -0.025em;
1331
- }
1332
- .tracking-widest {
1333
- letter-spacing: 0.1em;
1334
- }
1335
- .text-black {
1336
- --tw-text-opacity: 1;
1337
- color: rgb(0 0 0 / var(--tw-text-opacity));
1338
- }
1339
- .text-gray-400 {
1340
- --tw-text-opacity: 1;
1341
- color: rgb(156 163 175 / var(--tw-text-opacity));
1342
- }
1343
- .text-gray-900 {
1344
- --tw-text-opacity: 1;
1345
- color: rgb(17 24 39 / var(--tw-text-opacity));
1346
- }
1347
- .text-zinc-100 {
1348
- --tw-text-opacity: 1;
1349
- color: rgb(244 244 245 / var(--tw-text-opacity));
1350
- }
1351
- .underline-offset-4 {
1352
- text-underline-offset: 4px;
1353
- }
1354
- .opacity-100 {
1355
- opacity: 1;
1356
- }
1357
- .opacity-50 {
1358
- opacity: 0.5;
1359
- }
1360
- .opacity-60 {
1361
- opacity: 0.6;
1362
- }
1363
- .opacity-70 {
1364
- opacity: 0.7;
1365
- }
1366
- .shadow {
1367
- --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
1368
- --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
1369
- box-shadow:
1370
- var(--tw-ring-offset-shadow, 0 0 #0000),
1371
- var(--tw-ring-shadow, 0 0 #0000),
1372
- var(--tw-shadow);
1373
- }
1374
- .shadow-lg {
1375
- --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1376
- --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1377
- box-shadow:
1378
- var(--tw-ring-offset-shadow, 0 0 #0000),
1379
- var(--tw-ring-shadow, 0 0 #0000),
1380
- var(--tw-shadow);
1381
- }
1382
- .shadow-md {
1383
- --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
1384
- --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
1385
- box-shadow:
1386
- var(--tw-ring-offset-shadow, 0 0 #0000),
1387
- var(--tw-ring-shadow, 0 0 #0000),
1388
- var(--tw-shadow);
1389
- }
1390
- .shadow-none {
1391
- --tw-shadow: 0 0 #0000;
1392
- --tw-shadow-colored: 0 0 #0000;
1393
- box-shadow:
1394
- var(--tw-ring-offset-shadow, 0 0 #0000),
1395
- var(--tw-ring-shadow, 0 0 #0000),
1396
- var(--tw-shadow);
1397
- }
1398
- .shadow-sm {
1399
- --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1400
- --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1401
- box-shadow:
1402
- var(--tw-ring-offset-shadow, 0 0 #0000),
1403
- var(--tw-ring-shadow, 0 0 #0000),
1404
- var(--tw-shadow);
1405
- }
1406
- .outline-none {
1407
- outline: 2px solid transparent;
1408
- outline-offset: 2px;
1409
- }
1410
- .outline {
1411
- outline-style: solid;
1412
- }
1413
- .ring-0 {
1414
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1415
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1416
- box-shadow:
1417
- var(--tw-ring-offset-shadow),
1418
- var(--tw-ring-shadow),
1419
- var(--tw-shadow, 0 0 #0000);
1420
- }
1421
- .ring-2 {
1422
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1423
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1424
- box-shadow:
1425
- var(--tw-ring-offset-shadow),
1426
- var(--tw-ring-shadow),
1427
- var(--tw-shadow, 0 0 #0000);
1428
- }
1429
- .ring-slate-600 {
1430
- --tw-ring-opacity: 1;
1431
- --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity));
1432
- }
1433
- .filter {
1434
- filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1435
- }
1436
- .backdrop-blur-sm {
1437
- --tw-backdrop-blur: blur(4px);
1438
- -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1439
- backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1440
- }
1441
- .transition {
1442
- transition-property:
1443
- color,
1444
- background-color,
1445
- border-color,
1446
- text-decoration-color,
1447
- fill,
1448
- stroke,
1449
- opacity,
1450
- box-shadow,
1451
- transform,
1452
- filter,
1453
- -webkit-backdrop-filter;
1454
- transition-property:
1455
- color,
1456
- background-color,
1457
- border-color,
1458
- text-decoration-color,
1459
- fill,
1460
- stroke,
1461
- opacity,
1462
- box-shadow,
1463
- transform,
1464
- filter,
1465
- backdrop-filter;
1466
- transition-property:
1467
- color,
1468
- background-color,
1469
- border-color,
1470
- text-decoration-color,
1471
- fill,
1472
- stroke,
1473
- opacity,
1474
- box-shadow,
1475
- transform,
1476
- filter,
1477
- backdrop-filter,
1478
- -webkit-backdrop-filter;
1479
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1480
- transition-duration: 150ms;
1481
- }
1482
- .transition-all {
1483
- transition-property: all;
1484
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1485
- transition-duration: 150ms;
1486
- }
1487
- .transition-colors {
1488
- transition-property:
1489
- color,
1490
- background-color,
1491
- border-color,
1492
- text-decoration-color,
1493
- fill,
1494
- stroke;
1495
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1496
- transition-duration: 150ms;
1497
- }
1498
- .transition-opacity {
1499
- transition-property: opacity;
1500
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1501
- transition-duration: 150ms;
1502
- }
1503
- .transition-transform {
1504
- transition-property: transform;
1505
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1506
- transition-duration: 150ms;
1507
- }
1508
- .duration-100 {
1509
- transition-duration: 100ms;
1510
- }
1511
- .ease-in-out {
1512
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1513
- }
1514
- .file\:border-0::file-selector-button {
1515
- border-width: 0px;
1516
- }
1517
- .file\:bg-transparent::file-selector-button {
1518
- background-color: transparent;
1519
- }
1520
- .file\:text-sm::file-selector-button {
1521
- font-size: 0.875rem;
1522
- line-height: 1.25rem;
1523
- }
1524
- .file\:font-medium::file-selector-button {
1525
- font-weight: 500;
1526
- }
1527
- .last\:mb-0:last-child {
1528
- margin-bottom: 0px;
1529
- }
1530
- .focus-within\:outline-none:focus-within {
1531
- outline: 2px solid transparent;
1532
- outline-offset: 2px;
1533
- }
1534
- .hover\:bg-zinc-800:hover {
1535
- --tw-bg-opacity: 1;
1536
- background-color: rgb(39 39 42 / var(--tw-bg-opacity));
1537
- }
1538
- .hover\:text-gray-500:hover {
1539
- --tw-text-opacity: 1;
1540
- color: rgb(107 114 128 / var(--tw-text-opacity));
1541
- }
1542
- .hover\:underline:hover {
1543
- text-decoration-line: underline;
1544
- }
1545
- .hover\:opacity-100:hover {
1546
- opacity: 1;
1547
- }
1548
- .focus\:outline-none:focus {
1549
- outline: 2px solid transparent;
1550
- outline-offset: 2px;
1551
- }
1552
- .focus\:ring-2:focus {
1553
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1554
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1555
- box-shadow:
1556
- var(--tw-ring-offset-shadow),
1557
- var(--tw-ring-shadow),
1558
- var(--tw-shadow, 0 0 #0000);
1559
- }
1560
- .focus\:ring-indigo-500:focus {
1561
- --tw-ring-opacity: 1;
1562
- --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity));
1563
- }
1564
- .focus\:ring-offset-2:focus {
1565
- --tw-ring-offset-width: 2px;
1566
- }
1567
- .focus-visible\:outline-none:focus-visible {
1568
- outline: 2px solid transparent;
1569
- outline-offset: 2px;
1570
- }
1571
- .focus-visible\:ring-1:focus-visible {
1572
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1573
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1574
- box-shadow:
1575
- var(--tw-ring-offset-shadow),
1576
- var(--tw-ring-shadow),
1577
- var(--tw-shadow, 0 0 #0000);
1578
- }
1579
- .focus-visible\:ring-2:focus-visible {
1580
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1581
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1582
- box-shadow:
1583
- var(--tw-ring-offset-shadow),
1584
- var(--tw-ring-shadow),
1585
- var(--tw-shadow, 0 0 #0000);
1586
- }
1587
- .focus-visible\:ring-slate-700:focus-visible {
1588
- --tw-ring-opacity: 1;
1589
- --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity));
1590
- }
1591
- .focus-visible\:ring-offset-0:focus-visible {
1592
- --tw-ring-offset-width: 0px;
1593
- }
1594
- .focus-visible\:ring-offset-2:focus-visible {
1595
- --tw-ring-offset-width: 2px;
1596
- }
1597
- .disabled\:pointer-events-none:disabled {
1598
- pointer-events: none;
1599
- }
1600
- .disabled\:cursor-not-allowed:disabled {
1601
- cursor: not-allowed;
1602
- }
1603
- .disabled\:opacity-50:disabled {
1604
- opacity: 0.5;
1605
- }
1606
- .group:hover .group-hover\:opacity-100 {
1607
- opacity: 1;
1608
- }
1609
- .peer:disabled ~ .peer-disabled\:cursor-not-allowed {
1610
- cursor: not-allowed;
1611
- }
1612
- .peer:disabled ~ .peer-disabled\:opacity-70 {
1613
- opacity: 0.7;
1614
- }
1615
- .data-\[disabled\]\:pointer-events-none[data-disabled] {
1616
- pointer-events: none;
1617
- }
1618
- .data-\[state\=checked\]\:translate-x-5[data-state=checked] {
1619
- --tw-translate-x: 1.25rem;
1620
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1621
- }
1622
- .data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
1623
- --tw-translate-x: 0px;
1624
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1625
- }
1626
- .data-\[disabled\]\:opacity-50[data-disabled] {
1627
- opacity: 0.5;
1628
- }
1629
- @media (min-width: 640px) {
1630
- .sm\:left-4 {
1631
- left: 1rem;
1632
- }
1633
- .sm\:right-4 {
1634
- right: 1rem;
1635
- }
1636
- .sm\:mt-0 {
1637
- margin-top: 0px;
1638
- }
1639
- .sm\:max-w-2xl {
1640
- max-width: 42rem;
1641
- }
1642
- .sm\:max-w-lg {
1643
- max-width: 32rem;
1644
- }
1645
- .sm\:flex-row {
1646
- flex-direction: row;
1647
- }
1648
- .sm\:items-center {
1649
- align-items: center;
1650
- }
1651
- .sm\:justify-end {
1652
- justify-content: flex-end;
1653
- }
1654
- .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
1655
- --tw-space-x-reverse: 0;
1656
- margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1657
- margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1658
- }
1659
- .sm\:rounded-lg {
1660
- border-radius: 0.5rem;
1661
- }
1662
- .sm\:rounded-md {
1663
- border-radius: 0.375rem;
1664
- }
1665
- .sm\:rounded-xl {
1666
- border-radius: 0.75rem;
1667
- }
1668
- .sm\:px-12 {
1669
- padding-left: 3rem;
1670
- padding-right: 3rem;
1671
- }
1672
- .sm\:px-4 {
1673
- padding-left: 1rem;
1674
- padding-right: 1rem;
1675
- }
1676
- .sm\:text-left {
1677
- text-align: left;
1678
- }
1679
- .sm\:text-sm {
1680
- font-size: 0.875rem;
1681
- line-height: 1.25rem;
1682
- }
1683
- }
1684
- @media (min-width: 768px) {
1685
- .md\:absolute {
1686
- position: absolute;
1687
- }
1688
- .md\:-right-10 {
1689
- right: -2.5rem;
1690
- }
1691
- .md\:-top-2 {
1692
- top: -0.5rem;
1693
- }
1694
- .md\:my-4 {
1695
- margin-top: 1rem;
1696
- margin-bottom: 1rem;
1697
- }
1698
- .md\:w-full {
1699
- width: 100%;
1700
- }
1701
- .md\:py-4 {
1702
- padding-top: 1rem;
1703
- padding-bottom: 1rem;
1704
- }
1705
- .md\:opacity-0 {
1706
- opacity: 0;
1707
- }
1708
- }
1709
905
  /*# sourceMappingURL=index.css.map */