@polymarbot/nuxt-layer-shadcn-ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (408) hide show
  1. package/app/assets/styles/animate.css +71 -0
  2. package/app/assets/styles/colors.css +116 -0
  3. package/app/assets/styles/globals.css +43 -0
  4. package/app/assets/styles/index.stories.ts +211 -0
  5. package/app/assets/styles/transition.css +34 -0
  6. package/app/assets/styles/utilities.css +26 -0
  7. package/app/components/shadcn/accordion/Accordion.vue +18 -0
  8. package/app/components/shadcn/accordion/AccordionContent.vue +23 -0
  9. package/app/components/shadcn/accordion/AccordionItem.vue +24 -0
  10. package/app/components/shadcn/accordion/AccordionTrigger.vue +37 -0
  11. package/app/components/shadcn/accordion/index.ts +4 -0
  12. package/app/components/shadcn/alert/Alert.vue +21 -0
  13. package/app/components/shadcn/alert/AlertDescription.vue +17 -0
  14. package/app/components/shadcn/alert/AlertTitle.vue +17 -0
  15. package/app/components/shadcn/alert/index.ts +24 -0
  16. package/app/components/shadcn/avatar/Avatar.vue +18 -0
  17. package/app/components/shadcn/avatar/AvatarFallback.vue +21 -0
  18. package/app/components/shadcn/avatar/AvatarImage.vue +16 -0
  19. package/app/components/shadcn/avatar/index.ts +3 -0
  20. package/app/components/shadcn/badge/Badge.vue +26 -0
  21. package/app/components/shadcn/badge/index.ts +26 -0
  22. package/app/components/shadcn/breadcrumb/Breadcrumb.vue +17 -0
  23. package/app/components/shadcn/breadcrumb/BreadcrumbEllipsis.vue +23 -0
  24. package/app/components/shadcn/breadcrumb/BreadcrumbItem.vue +17 -0
  25. package/app/components/shadcn/breadcrumb/BreadcrumbLink.vue +21 -0
  26. package/app/components/shadcn/breadcrumb/BreadcrumbList.vue +17 -0
  27. package/app/components/shadcn/breadcrumb/BreadcrumbPage.vue +20 -0
  28. package/app/components/shadcn/breadcrumb/BreadcrumbSeparator.vue +22 -0
  29. package/app/components/shadcn/breadcrumb/index.ts +7 -0
  30. package/app/components/shadcn/button/Button.vue +31 -0
  31. package/app/components/shadcn/button/index.ts +38 -0
  32. package/app/components/shadcn/card/Card.vue +22 -0
  33. package/app/components/shadcn/card/CardAction.vue +17 -0
  34. package/app/components/shadcn/card/CardContent.vue +17 -0
  35. package/app/components/shadcn/card/CardDescription.vue +17 -0
  36. package/app/components/shadcn/card/CardFooter.vue +17 -0
  37. package/app/components/shadcn/card/CardHeader.vue +17 -0
  38. package/app/components/shadcn/card/CardTitle.vue +17 -0
  39. package/app/components/shadcn/card/index.ts +7 -0
  40. package/app/components/shadcn/checkbox/Checkbox.vue +35 -0
  41. package/app/components/shadcn/checkbox/index.ts +1 -0
  42. package/app/components/shadcn/collapsible/Collapsible.vue +19 -0
  43. package/app/components/shadcn/collapsible/CollapsibleContent.vue +15 -0
  44. package/app/components/shadcn/collapsible/CollapsibleTrigger.vue +15 -0
  45. package/app/components/shadcn/collapsible/index.ts +3 -0
  46. package/app/components/shadcn/command/Command.vue +87 -0
  47. package/app/components/shadcn/command/CommandDialog.vue +31 -0
  48. package/app/components/shadcn/command/CommandEmpty.vue +27 -0
  49. package/app/components/shadcn/command/CommandGroup.vue +45 -0
  50. package/app/components/shadcn/command/CommandInput.vue +39 -0
  51. package/app/components/shadcn/command/CommandItem.vue +76 -0
  52. package/app/components/shadcn/command/CommandList.vue +25 -0
  53. package/app/components/shadcn/command/CommandSeparator.vue +21 -0
  54. package/app/components/shadcn/command/CommandShortcut.vue +17 -0
  55. package/app/components/shadcn/command/index.ts +25 -0
  56. package/app/components/shadcn/dialog/Dialog.vue +19 -0
  57. package/app/components/shadcn/dialog/DialogClose.vue +15 -0
  58. package/app/components/shadcn/dialog/DialogContent.vue +53 -0
  59. package/app/components/shadcn/dialog/DialogDescription.vue +23 -0
  60. package/app/components/shadcn/dialog/DialogFooter.vue +27 -0
  61. package/app/components/shadcn/dialog/DialogHeader.vue +17 -0
  62. package/app/components/shadcn/dialog/DialogOverlay.vue +21 -0
  63. package/app/components/shadcn/dialog/DialogScrollContent.vue +59 -0
  64. package/app/components/shadcn/dialog/DialogTitle.vue +23 -0
  65. package/app/components/shadcn/dialog/DialogTrigger.vue +15 -0
  66. package/app/components/shadcn/dialog/index.ts +10 -0
  67. package/app/components/shadcn/dropdown-menu/DropdownMenu.vue +19 -0
  68. package/app/components/shadcn/dropdown-menu/DropdownMenuCheckboxItem.vue +39 -0
  69. package/app/components/shadcn/dropdown-menu/DropdownMenuContent.vue +39 -0
  70. package/app/components/shadcn/dropdown-menu/DropdownMenuGroup.vue +15 -0
  71. package/app/components/shadcn/dropdown-menu/DropdownMenuItem.vue +31 -0
  72. package/app/components/shadcn/dropdown-menu/DropdownMenuLabel.vue +23 -0
  73. package/app/components/shadcn/dropdown-menu/DropdownMenuRadioGroup.vue +21 -0
  74. package/app/components/shadcn/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
  75. package/app/components/shadcn/dropdown-menu/DropdownMenuSeparator.vue +23 -0
  76. package/app/components/shadcn/dropdown-menu/DropdownMenuShortcut.vue +17 -0
  77. package/app/components/shadcn/dropdown-menu/DropdownMenuSub.vue +18 -0
  78. package/app/components/shadcn/dropdown-menu/DropdownMenuSubContent.vue +27 -0
  79. package/app/components/shadcn/dropdown-menu/DropdownMenuSubTrigger.vue +31 -0
  80. package/app/components/shadcn/dropdown-menu/DropdownMenuTrigger.vue +17 -0
  81. package/app/components/shadcn/dropdown-menu/index.ts +16 -0
  82. package/app/components/shadcn/field/Field.vue +25 -0
  83. package/app/components/shadcn/field/FieldContent.vue +20 -0
  84. package/app/components/shadcn/field/FieldDescription.vue +22 -0
  85. package/app/components/shadcn/field/FieldError.vue +53 -0
  86. package/app/components/shadcn/field/FieldGroup.vue +20 -0
  87. package/app/components/shadcn/field/FieldLabel.vue +23 -0
  88. package/app/components/shadcn/field/FieldLegend.vue +24 -0
  89. package/app/components/shadcn/field/FieldSeparator.vue +29 -0
  90. package/app/components/shadcn/field/FieldSet.vue +21 -0
  91. package/app/components/shadcn/field/FieldTitle.vue +20 -0
  92. package/app/components/shadcn/field/index.ts +39 -0
  93. package/app/components/shadcn/input/Input.vue +33 -0
  94. package/app/components/shadcn/input/index.ts +1 -0
  95. package/app/components/shadcn/input-group/InputGroup.vue +35 -0
  96. package/app/components/shadcn/input-group/InputGroupAddon.vue +36 -0
  97. package/app/components/shadcn/input-group/InputGroupButton.vue +29 -0
  98. package/app/components/shadcn/input-group/InputGroupInput.vue +19 -0
  99. package/app/components/shadcn/input-group/InputGroupText.vue +19 -0
  100. package/app/components/shadcn/input-group/InputGroupTextarea.vue +19 -0
  101. package/app/components/shadcn/input-group/index.ts +51 -0
  102. package/app/components/shadcn/label/Label.vue +26 -0
  103. package/app/components/shadcn/label/index.ts +1 -0
  104. package/app/components/shadcn/number-field/NumberField.vue +20 -0
  105. package/app/components/shadcn/number-field/NumberFieldContent.vue +14 -0
  106. package/app/components/shadcn/number-field/NumberFieldDecrement.vue +22 -0
  107. package/app/components/shadcn/number-field/NumberFieldIncrement.vue +22 -0
  108. package/app/components/shadcn/number-field/NumberFieldInput.vue +16 -0
  109. package/app/components/shadcn/number-field/index.ts +5 -0
  110. package/app/components/shadcn/pagination/Pagination.vue +26 -0
  111. package/app/components/shadcn/pagination/PaginationContent.vue +22 -0
  112. package/app/components/shadcn/pagination/PaginationEllipsis.vue +25 -0
  113. package/app/components/shadcn/pagination/PaginationFirst.vue +33 -0
  114. package/app/components/shadcn/pagination/PaginationItem.vue +34 -0
  115. package/app/components/shadcn/pagination/PaginationLast.vue +33 -0
  116. package/app/components/shadcn/pagination/PaginationNext.vue +33 -0
  117. package/app/components/shadcn/pagination/PaginationPrevious.vue +33 -0
  118. package/app/components/shadcn/pagination/index.ts +8 -0
  119. package/app/components/shadcn/pin-input/PinInput.vue +26 -0
  120. package/app/components/shadcn/pin-input/PinInputGroup.vue +21 -0
  121. package/app/components/shadcn/pin-input/PinInputSeparator.vue +19 -0
  122. package/app/components/shadcn/pin-input/PinInputSlot.vue +21 -0
  123. package/app/components/shadcn/pin-input/index.ts +4 -0
  124. package/app/components/shadcn/popover/Popover.vue +19 -0
  125. package/app/components/shadcn/popover/PopoverAnchor.vue +15 -0
  126. package/app/components/shadcn/popover/PopoverContent.vue +45 -0
  127. package/app/components/shadcn/popover/PopoverTrigger.vue +15 -0
  128. package/app/components/shadcn/popover/index.ts +4 -0
  129. package/app/components/shadcn/progress/Progress.vue +38 -0
  130. package/app/components/shadcn/progress/index.ts +1 -0
  131. package/app/components/shadcn/radio-group/RadioGroup.vue +25 -0
  132. package/app/components/shadcn/radio-group/RadioGroupItem.vue +40 -0
  133. package/app/components/shadcn/radio-group/index.ts +2 -0
  134. package/app/components/shadcn/scroll-area/ScrollArea.vue +33 -0
  135. package/app/components/shadcn/scroll-area/ScrollBar.vue +32 -0
  136. package/app/components/shadcn/scroll-area/index.ts +2 -0
  137. package/app/components/shadcn/select/Select.vue +19 -0
  138. package/app/components/shadcn/select/SelectContent.vue +51 -0
  139. package/app/components/shadcn/select/SelectGroup.vue +15 -0
  140. package/app/components/shadcn/select/SelectItem.vue +44 -0
  141. package/app/components/shadcn/select/SelectItemText.vue +15 -0
  142. package/app/components/shadcn/select/SelectLabel.vue +17 -0
  143. package/app/components/shadcn/select/SelectScrollDownButton.vue +26 -0
  144. package/app/components/shadcn/select/SelectScrollUpButton.vue +26 -0
  145. package/app/components/shadcn/select/SelectSeparator.vue +19 -0
  146. package/app/components/shadcn/select/SelectTrigger.vue +33 -0
  147. package/app/components/shadcn/select/SelectValue.vue +15 -0
  148. package/app/components/shadcn/select/index.ts +11 -0
  149. package/app/components/shadcn/separator/Separator.vue +29 -0
  150. package/app/components/shadcn/separator/index.ts +1 -0
  151. package/app/components/shadcn/sheet/Sheet.vue +19 -0
  152. package/app/components/shadcn/sheet/SheetClose.vue +15 -0
  153. package/app/components/shadcn/sheet/SheetContent.vue +62 -0
  154. package/app/components/shadcn/sheet/SheetDescription.vue +21 -0
  155. package/app/components/shadcn/sheet/SheetFooter.vue +16 -0
  156. package/app/components/shadcn/sheet/SheetHeader.vue +15 -0
  157. package/app/components/shadcn/sheet/SheetOverlay.vue +21 -0
  158. package/app/components/shadcn/sheet/SheetTitle.vue +21 -0
  159. package/app/components/shadcn/sheet/SheetTrigger.vue +15 -0
  160. package/app/components/shadcn/sheet/index.ts +8 -0
  161. package/app/components/shadcn/sidebar/Sidebar.vue +96 -0
  162. package/app/components/shadcn/sidebar/SidebarContent.vue +18 -0
  163. package/app/components/shadcn/sidebar/SidebarFooter.vue +18 -0
  164. package/app/components/shadcn/sidebar/SidebarGroup.vue +18 -0
  165. package/app/components/shadcn/sidebar/SidebarGroupAction.vue +27 -0
  166. package/app/components/shadcn/sidebar/SidebarGroupContent.vue +18 -0
  167. package/app/components/shadcn/sidebar/SidebarGroupLabel.vue +25 -0
  168. package/app/components/shadcn/sidebar/SidebarHeader.vue +18 -0
  169. package/app/components/shadcn/sidebar/SidebarInput.vue +22 -0
  170. package/app/components/shadcn/sidebar/SidebarInset.vue +21 -0
  171. package/app/components/shadcn/sidebar/SidebarMenu.vue +18 -0
  172. package/app/components/shadcn/sidebar/SidebarMenuAction.vue +35 -0
  173. package/app/components/shadcn/sidebar/SidebarMenuBadge.vue +26 -0
  174. package/app/components/shadcn/sidebar/SidebarMenuButton.vue +48 -0
  175. package/app/components/shadcn/sidebar/SidebarMenuButtonChild.vue +36 -0
  176. package/app/components/shadcn/sidebar/SidebarMenuItem.vue +18 -0
  177. package/app/components/shadcn/sidebar/SidebarMenuSkeleton.vue +35 -0
  178. package/app/components/shadcn/sidebar/SidebarMenuSub.vue +22 -0
  179. package/app/components/shadcn/sidebar/SidebarMenuSubButton.vue +36 -0
  180. package/app/components/shadcn/sidebar/SidebarMenuSubItem.vue +18 -0
  181. package/app/components/shadcn/sidebar/SidebarProvider.vue +82 -0
  182. package/app/components/shadcn/sidebar/SidebarRail.vue +33 -0
  183. package/app/components/shadcn/sidebar/SidebarSeparator.vue +19 -0
  184. package/app/components/shadcn/sidebar/SidebarTrigger.vue +27 -0
  185. package/app/components/shadcn/sidebar/index.ts +60 -0
  186. package/app/components/shadcn/sidebar/utils.ts +19 -0
  187. package/app/components/shadcn/skeleton/Skeleton.vue +17 -0
  188. package/app/components/shadcn/skeleton/index.ts +1 -0
  189. package/app/components/shadcn/slider/Slider.vue +43 -0
  190. package/app/components/shadcn/slider/index.ts +1 -0
  191. package/app/components/shadcn/sonner/Sonner.vue +42 -0
  192. package/app/components/shadcn/sonner/index.ts +1 -0
  193. package/app/components/shadcn/switch/Switch.vue +38 -0
  194. package/app/components/shadcn/switch/index.ts +1 -0
  195. package/app/components/shadcn/table/Table.vue +16 -0
  196. package/app/components/shadcn/table/TableBody.vue +17 -0
  197. package/app/components/shadcn/table/TableCaption.vue +17 -0
  198. package/app/components/shadcn/table/TableCell.vue +22 -0
  199. package/app/components/shadcn/table/TableEmpty.vue +34 -0
  200. package/app/components/shadcn/table/TableFooter.vue +17 -0
  201. package/app/components/shadcn/table/TableHead.vue +17 -0
  202. package/app/components/shadcn/table/TableHeader.vue +17 -0
  203. package/app/components/shadcn/table/TableRow.vue +17 -0
  204. package/app/components/shadcn/table/index.ts +9 -0
  205. package/app/components/shadcn/table/utils.ts +10 -0
  206. package/app/components/shadcn/tabs/Tabs.vue +24 -0
  207. package/app/components/shadcn/tabs/TabsContent.vue +21 -0
  208. package/app/components/shadcn/tabs/TabsList.vue +24 -0
  209. package/app/components/shadcn/tabs/TabsTrigger.vue +26 -0
  210. package/app/components/shadcn/tabs/index.ts +4 -0
  211. package/app/components/shadcn/textarea/Textarea.vue +28 -0
  212. package/app/components/shadcn/textarea/index.ts +1 -0
  213. package/app/components/shadcn/toggle/Toggle.vue +35 -0
  214. package/app/components/shadcn/toggle/index.ts +28 -0
  215. package/app/components/shadcn/toggle-group/ToggleGroup.vue +49 -0
  216. package/app/components/shadcn/toggle-group/ToggleGroupItem.vue +46 -0
  217. package/app/components/shadcn/toggle-group/index.ts +2 -0
  218. package/app/components/shadcn/tooltip/Tooltip.vue +19 -0
  219. package/app/components/shadcn/tooltip/TooltipContent.vue +34 -0
  220. package/app/components/shadcn/tooltip/TooltipProvider.vue +14 -0
  221. package/app/components/shadcn/tooltip/TooltipTrigger.vue +15 -0
  222. package/app/components/shadcn/tooltip/index.ts +4 -0
  223. package/app/components/ui/Accordion/index.stories.ts +108 -0
  224. package/app/components/ui/Accordion/index.vue +80 -0
  225. package/app/components/ui/Accordion/types.ts +27 -0
  226. package/app/components/ui/Alert/index.stories.ts +53 -0
  227. package/app/components/ui/Alert/index.vue +61 -0
  228. package/app/components/ui/Alert/types.ts +9 -0
  229. package/app/components/ui/AlertDialog/index.stories.ts +108 -0
  230. package/app/components/ui/AlertDialog/index.vue +25 -0
  231. package/app/components/ui/AsyncDataTable/en.json +3 -0
  232. package/app/components/ui/AsyncDataTable/index.stories.ts +141 -0
  233. package/app/components/ui/AsyncDataTable/index.vue +312 -0
  234. package/app/components/ui/AsyncDataTable/types.ts +53 -0
  235. package/app/components/ui/Avatar/index.stories.ts +84 -0
  236. package/app/components/ui/Avatar/index.vue +52 -0
  237. package/app/components/ui/Avatar/types.ts +8 -0
  238. package/app/components/ui/Badge/index.stories.ts +67 -0
  239. package/app/components/ui/Badge/index.vue +12 -0
  240. package/app/components/ui/Badge/types.ts +3 -0
  241. package/app/components/ui/Breadcrumb/index.stories.ts +52 -0
  242. package/app/components/ui/Breadcrumb/index.vue +61 -0
  243. package/app/components/ui/Breadcrumb/types.ts +11 -0
  244. package/app/components/ui/Button/index.stories.ts +145 -0
  245. package/app/components/ui/Button/index.vue +63 -0
  246. package/app/components/ui/Button/types.ts +14 -0
  247. package/app/components/ui/ButtonGroup/index.stories.ts +75 -0
  248. package/app/components/ui/ButtonGroup/index.vue +22 -0
  249. package/app/components/ui/ButtonGroup/types.ts +3 -0
  250. package/app/components/ui/Card/index.stories.ts +65 -0
  251. package/app/components/ui/Card/index.vue +28 -0
  252. package/app/components/ui/Card/types.ts +3 -0
  253. package/app/components/ui/Checkbox/index.stories.ts +68 -0
  254. package/app/components/ui/Checkbox/index.vue +23 -0
  255. package/app/components/ui/Checkbox/types.ts +3 -0
  256. package/app/components/ui/CopyButton/en.json +4 -0
  257. package/app/components/ui/CopyButton/index.stories.ts +55 -0
  258. package/app/components/ui/CopyButton/index.vue +98 -0
  259. package/app/components/ui/CopyButton/types.ts +10 -0
  260. package/app/components/ui/DataTable/en.json +3 -0
  261. package/app/components/ui/DataTable/index.stories.ts +231 -0
  262. package/app/components/ui/DataTable/index.vue +505 -0
  263. package/app/components/ui/DataTable/types.ts +42 -0
  264. package/app/components/ui/DatePicker/en.json +9 -0
  265. package/app/components/ui/DatePicker/index.stories.ts +70 -0
  266. package/app/components/ui/DatePicker/index.vue +127 -0
  267. package/app/components/ui/DatePicker/style.css +88 -0
  268. package/app/components/ui/DatePicker/types.ts +41 -0
  269. package/app/components/ui/DateRangePicker/en.json +5 -0
  270. package/app/components/ui/DateRangePicker/index.stories.ts +67 -0
  271. package/app/components/ui/DateRangePicker/index.vue +138 -0
  272. package/app/components/ui/DateRangePicker/types.ts +31 -0
  273. package/app/components/ui/Divider/index.stories.ts +42 -0
  274. package/app/components/ui/Divider/index.vue +16 -0
  275. package/app/components/ui/Divider/types.ts +3 -0
  276. package/app/components/ui/Drawer/index.stories.ts +124 -0
  277. package/app/components/ui/Drawer/index.vue +197 -0
  278. package/app/components/ui/Drawer/types.ts +22 -0
  279. package/app/components/ui/Dropdown/index.stories.ts +145 -0
  280. package/app/components/ui/Dropdown/index.vue +258 -0
  281. package/app/components/ui/Dropdown/types.ts +87 -0
  282. package/app/components/ui/FormItem/index.stories.ts +70 -0
  283. package/app/components/ui/FormItem/index.vue +56 -0
  284. package/app/components/ui/FormItem/types.ts +14 -0
  285. package/app/components/ui/Help/index.stories.ts +54 -0
  286. package/app/components/ui/Help/index.vue +35 -0
  287. package/app/components/ui/Help/types.ts +8 -0
  288. package/app/components/ui/Icon/index.stories.ts +68 -0
  289. package/app/components/ui/Icon/index.vue +30 -0
  290. package/app/components/ui/Icon/types.ts +5 -0
  291. package/app/components/ui/Input/index.stories.ts +73 -0
  292. package/app/components/ui/Input/index.vue +92 -0
  293. package/app/components/ui/Input/types.ts +9 -0
  294. package/app/components/ui/InputCurrency/index.stories.ts +75 -0
  295. package/app/components/ui/InputCurrency/index.vue +31 -0
  296. package/app/components/ui/InputCurrency/types.ts +4 -0
  297. package/app/components/ui/InputNumber/index.stories.ts +56 -0
  298. package/app/components/ui/InputNumber/index.vue +76 -0
  299. package/app/components/ui/InputNumber/types.ts +10 -0
  300. package/app/components/ui/InputOtp/index.stories.ts +39 -0
  301. package/app/components/ui/InputOtp/index.vue +45 -0
  302. package/app/components/ui/InputOtp/types.ts +5 -0
  303. package/app/components/ui/InputPercent/index.stories.ts +32 -0
  304. package/app/components/ui/InputPercent/index.vue +8 -0
  305. package/app/components/ui/InputRange/index.stories.ts +37 -0
  306. package/app/components/ui/InputRange/index.vue +49 -0
  307. package/app/components/ui/InputRange/types.ts +8 -0
  308. package/app/components/ui/Loading/index.stories.ts +36 -0
  309. package/app/components/ui/Loading/index.vue +15 -0
  310. package/app/components/ui/Loading/types.ts +3 -0
  311. package/app/components/ui/Markdown/index.stories.ts +52 -0
  312. package/app/components/ui/Markdown/index.vue +22 -0
  313. package/app/components/ui/Markdown/themes/github.css +1248 -0
  314. package/app/components/ui/Markdown/types.ts +3 -0
  315. package/app/components/ui/Modal/index.stories.ts +124 -0
  316. package/app/components/ui/Modal/index.vue +202 -0
  317. package/app/components/ui/Modal/types.ts +23 -0
  318. package/app/components/ui/ModalContent/index.stories.ts +47 -0
  319. package/app/components/ui/ModalContent/index.vue +79 -0
  320. package/app/components/ui/ModalContent/types.ts +9 -0
  321. package/app/components/ui/PageCard/index.stories.ts +106 -0
  322. package/app/components/ui/PageCard/index.vue +135 -0
  323. package/app/components/ui/PageCard/types.ts +16 -0
  324. package/app/components/ui/Pagination/en.json +3 -0
  325. package/app/components/ui/Pagination/index.stories.ts +82 -0
  326. package/app/components/ui/Pagination/index.vue +173 -0
  327. package/app/components/ui/Pagination/types.ts +18 -0
  328. package/app/components/ui/Popover/index.stories.ts +67 -0
  329. package/app/components/ui/Popover/index.vue +21 -0
  330. package/app/components/ui/Popover/types.ts +5 -0
  331. package/app/components/ui/Qrcode/index.stories.ts +57 -0
  332. package/app/components/ui/Qrcode/index.vue +40 -0
  333. package/app/components/ui/Qrcode/types.ts +3 -0
  334. package/app/components/ui/Radio/index.stories.ts +71 -0
  335. package/app/components/ui/Radio/index.vue +10 -0
  336. package/app/components/ui/Radio/types.ts +3 -0
  337. package/app/components/ui/RadioCardGroup/index.stories.ts +90 -0
  338. package/app/components/ui/RadioCardGroup/index.vue +64 -0
  339. package/app/components/ui/RadioCardGroup/types.ts +13 -0
  340. package/app/components/ui/ScrollArea/index.stories.ts +66 -0
  341. package/app/components/ui/ScrollArea/index.vue +64 -0
  342. package/app/components/ui/ScrollArea/types.ts +5 -0
  343. package/app/components/ui/SearchSelect/en.json +5 -0
  344. package/app/components/ui/SearchSelect/index.stories.ts +126 -0
  345. package/app/components/ui/SearchSelect/index.vue +259 -0
  346. package/app/components/ui/SearchSelect/types.ts +39 -0
  347. package/app/components/ui/Select/en.json +6 -0
  348. package/app/components/ui/Select/index.stories.ts +128 -0
  349. package/app/components/ui/Select/index.vue +267 -0
  350. package/app/components/ui/Select/types.ts +34 -0
  351. package/app/components/ui/Skeleton/index.stories.ts +56 -0
  352. package/app/components/ui/Skeleton/index.vue +12 -0
  353. package/app/components/ui/Skeleton/types.ts +4 -0
  354. package/app/components/ui/Slider/index.stories.ts +60 -0
  355. package/app/components/ui/Slider/index.vue +27 -0
  356. package/app/components/ui/Slider/types.ts +5 -0
  357. package/app/components/ui/Surface/index.stories.ts +50 -0
  358. package/app/components/ui/Surface/index.vue +108 -0
  359. package/app/components/ui/Surface/types.ts +8 -0
  360. package/app/components/ui/Switch/index.stories.ts +32 -0
  361. package/app/components/ui/Switch/index.vue +10 -0
  362. package/app/components/ui/Switch/types.ts +3 -0
  363. package/app/components/ui/Tabs/index.stories.ts +116 -0
  364. package/app/components/ui/Tabs/index.vue +94 -0
  365. package/app/components/ui/Tabs/types.ts +19 -0
  366. package/app/components/ui/Tag/index.stories.ts +51 -0
  367. package/app/components/ui/Tag/index.vue +108 -0
  368. package/app/components/ui/Tag/types.ts +8 -0
  369. package/app/components/ui/Textarea/index.stories.ts +35 -0
  370. package/app/components/ui/Textarea/index.vue +50 -0
  371. package/app/components/ui/Textarea/types.ts +8 -0
  372. package/app/components/ui/Toast/index.stories.ts +48 -0
  373. package/app/components/ui/Toast/index.vue +21 -0
  374. package/app/components/ui/Toast/types.ts +5 -0
  375. package/app/components/ui/Tooltip/index.stories.ts +62 -0
  376. package/app/components/ui/Tooltip/index.vue +72 -0
  377. package/app/components/ui/Tooltip/types.ts +7 -0
  378. package/app/components/ui/WebLink/index.stories.ts +59 -0
  379. package/app/components/ui/WebLink/index.vue +61 -0
  380. package/app/components/ui/WebLink/types.ts +11 -0
  381. package/app/composables/index.ts +9 -0
  382. package/app/composables/useDialog.ts +76 -0
  383. package/app/composables/useToast.ts +49 -0
  384. package/app/en.json +23 -0
  385. package/app/types/index.ts +7 -0
  386. package/app/utils/index.ts +6 -0
  387. package/i18n/messages/ar.json +65 -0
  388. package/i18n/messages/de.json +65 -0
  389. package/i18n/messages/en.json +65 -0
  390. package/i18n/messages/es.json +65 -0
  391. package/i18n/messages/fr.json +65 -0
  392. package/i18n/messages/hi.json +65 -0
  393. package/i18n/messages/id.json +65 -0
  394. package/i18n/messages/it.json +65 -0
  395. package/i18n/messages/ja.json +65 -0
  396. package/i18n/messages/ko.json +65 -0
  397. package/i18n/messages/nl.json +65 -0
  398. package/i18n/messages/pl.json +65 -0
  399. package/i18n/messages/pt.json +65 -0
  400. package/i18n/messages/ru.json +65 -0
  401. package/i18n/messages/th.json +65 -0
  402. package/i18n/messages/tr.json +65 -0
  403. package/i18n/messages/vi.json +65 -0
  404. package/i18n/messages/zh-CN.json +65 -0
  405. package/i18n/messages/zh-TW.json +65 -0
  406. package/i18n.config.ts +19 -0
  407. package/nuxt.config.ts +62 -0
  408. package/package.json +46 -0
@@ -0,0 +1,1248 @@
1
+ .markdown-body {
2
+ --base-size-4: 0.25rem;
3
+ --base-size-8: 0.5rem;
4
+ --base-size-16: 1rem;
5
+ --base-size-24: 1.5rem;
6
+ --base-size-40: 2.5rem;
7
+ --base-text-weight-normal: 400;
8
+ --base-text-weight-medium: 500;
9
+ --base-text-weight-semibold: 600;
10
+ --fontStack-monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
11
+ --fgColor-accent: Highlight;
12
+ }
13
+ .dark .markdown-body {
14
+ /* dark */
15
+ color-scheme: dark;
16
+ --focus-outlineColor: #1f6feb;
17
+ --fgColor-default: #f0f6fc;
18
+ --fgColor-muted: #9198a1;
19
+ --fgColor-accent: #4493f8;
20
+ --fgColor-success: #3fb950;
21
+ --fgColor-attention: #d29922;
22
+ --fgColor-danger: #f85149;
23
+ --fgColor-done: #ab7df8;
24
+ --bgColor-default: #0d1117;
25
+ --bgColor-muted: #151b23;
26
+ --bgColor-neutral-muted: #656c7633;
27
+ --bgColor-attention-muted: #bb800926;
28
+ --borderColor-default: #3d444d;
29
+ --borderColor-muted: #3d444db3;
30
+ --borderColor-neutral-muted: #3d444db3;
31
+ --borderColor-accent-emphasis: #1f6feb;
32
+ --borderColor-success-emphasis: #238636;
33
+ --borderColor-attention-emphasis: #9e6a03;
34
+ --borderColor-danger-emphasis: #da3633;
35
+ --borderColor-done-emphasis: #8957e5;
36
+ --color-prettylights-syntax-comment: #9198a1;
37
+ --color-prettylights-syntax-constant: #79c0ff;
38
+ --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
39
+ --color-prettylights-syntax-entity: #d2a8ff;
40
+ --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
41
+ --color-prettylights-syntax-entity-tag: #7ee787;
42
+ --color-prettylights-syntax-keyword: #ff7b72;
43
+ --color-prettylights-syntax-string: #a5d6ff;
44
+ --color-prettylights-syntax-variable: #ffa657;
45
+ --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
46
+ --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
47
+ --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
48
+ --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
49
+ --color-prettylights-syntax-carriage-return-text: #f0f6fc;
50
+ --color-prettylights-syntax-carriage-return-bg: #b62324;
51
+ --color-prettylights-syntax-string-regexp: #7ee787;
52
+ --color-prettylights-syntax-markup-list: #f2cc60;
53
+ --color-prettylights-syntax-markup-heading: #1f6feb;
54
+ --color-prettylights-syntax-markup-italic: #f0f6fc;
55
+ --color-prettylights-syntax-markup-bold: #f0f6fc;
56
+ --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
57
+ --color-prettylights-syntax-markup-deleted-bg: #67060c;
58
+ --color-prettylights-syntax-markup-inserted-text: #aff5b4;
59
+ --color-prettylights-syntax-markup-inserted-bg: #033a16;
60
+ --color-prettylights-syntax-markup-changed-text: #ffdfb6;
61
+ --color-prettylights-syntax-markup-changed-bg: #5a1e02;
62
+ --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
63
+ --color-prettylights-syntax-markup-ignored-bg: #1158c7;
64
+ --color-prettylights-syntax-meta-diff-range: #d2a8ff;
65
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
66
+ }
67
+ .markdown-body {
68
+ /* light */
69
+ color-scheme: light;
70
+ --focus-outlineColor: #0969da;
71
+ --fgColor-default: #1f2328;
72
+ --fgColor-muted: #59636e;
73
+ --fgColor-accent: #0969da;
74
+ --fgColor-success: #1a7f37;
75
+ --fgColor-attention: #9a6700;
76
+ --fgColor-danger: #d1242f;
77
+ --fgColor-done: #8250df;
78
+ --bgColor-default: #ffffff;
79
+ --bgColor-muted: #f6f8fa;
80
+ --bgColor-neutral-muted: #818b981f;
81
+ --bgColor-attention-muted: #fff8c5;
82
+ --borderColor-default: #d1d9e0;
83
+ --borderColor-muted: #d1d9e0b3;
84
+ --borderColor-neutral-muted: #d1d9e0b3;
85
+ --borderColor-accent-emphasis: #0969da;
86
+ --borderColor-success-emphasis: #1a7f37;
87
+ --borderColor-attention-emphasis: #9a6700;
88
+ --borderColor-danger-emphasis: #cf222e;
89
+ --borderColor-done-emphasis: #8250df;
90
+ --color-prettylights-syntax-comment: #59636e;
91
+ --color-prettylights-syntax-constant: #0550ae;
92
+ --color-prettylights-syntax-constant-other-reference-link: #0a3069;
93
+ --color-prettylights-syntax-entity: #6639ba;
94
+ --color-prettylights-syntax-storage-modifier-import: #1f2328;
95
+ --color-prettylights-syntax-entity-tag: #0550ae;
96
+ --color-prettylights-syntax-keyword: #cf222e;
97
+ --color-prettylights-syntax-string: #0a3069;
98
+ --color-prettylights-syntax-variable: #953800;
99
+ --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
100
+ --color-prettylights-syntax-brackethighlighter-angle: #59636e;
101
+ --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
102
+ --color-prettylights-syntax-invalid-illegal-bg: #82071e;
103
+ --color-prettylights-syntax-carriage-return-text: #f6f8fa;
104
+ --color-prettylights-syntax-carriage-return-bg: #cf222e;
105
+ --color-prettylights-syntax-string-regexp: #116329;
106
+ --color-prettylights-syntax-markup-list: #3b2300;
107
+ --color-prettylights-syntax-markup-heading: #0550ae;
108
+ --color-prettylights-syntax-markup-italic: #1f2328;
109
+ --color-prettylights-syntax-markup-bold: #1f2328;
110
+ --color-prettylights-syntax-markup-deleted-text: #82071e;
111
+ --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
112
+ --color-prettylights-syntax-markup-inserted-text: #116329;
113
+ --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
114
+ --color-prettylights-syntax-markup-changed-text: #953800;
115
+ --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
116
+ --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
117
+ --color-prettylights-syntax-markup-ignored-bg: #0550ae;
118
+ --color-prettylights-syntax-meta-diff-range: #8250df;
119
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
120
+ }
121
+
122
+ .markdown-body {
123
+ -ms-text-size-adjust: 100%;
124
+ -webkit-text-size-adjust: 100%;
125
+ color: var(--fgColor-default);
126
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
127
+ font-size: 16px;
128
+ word-wrap: break-word;
129
+ margin: 0;
130
+ line-height: 1.5;
131
+ scroll-behavior: smooth;
132
+ }
133
+
134
+ .markdown-body .octicon {
135
+ display: inline-block;
136
+ fill: currentColor;
137
+ vertical-align: text-bottom;
138
+ }
139
+
140
+ .markdown-body h1:hover .anchor .octicon-link:before,
141
+ .markdown-body h2:hover .anchor .octicon-link:before,
142
+ .markdown-body h3:hover .anchor .octicon-link:before,
143
+ .markdown-body h4:hover .anchor .octicon-link:before,
144
+ .markdown-body h5:hover .anchor .octicon-link:before,
145
+ .markdown-body h6:hover .anchor .octicon-link:before {
146
+ width: 16px;
147
+ height: 16px;
148
+ content: ' ';
149
+ display: inline-block;
150
+ background-color: currentColor;
151
+ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
152
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
153
+ }
154
+
155
+ .markdown-body details,
156
+ .markdown-body figcaption,
157
+ .markdown-body figure {
158
+ display: block;
159
+ }
160
+
161
+ .markdown-body summary {
162
+ display: list-item;
163
+ }
164
+
165
+ .markdown-body [hidden] {
166
+ display: none !important;
167
+ }
168
+
169
+ .markdown-body a {
170
+ background-color: transparent;
171
+ color: var(--fgColor-accent);
172
+ text-decoration: none;
173
+ }
174
+
175
+ .markdown-body abbr[title] {
176
+ border-bottom: none;
177
+ -webkit-text-decoration: underline dotted;
178
+ text-decoration: underline dotted;
179
+ }
180
+
181
+ .markdown-body b,
182
+ .markdown-body strong {
183
+ font-weight: var(--base-text-weight-semibold, 600);
184
+ }
185
+
186
+ .markdown-body dfn {
187
+ font-style: italic;
188
+ }
189
+
190
+ .markdown-body h1 {
191
+ margin: .67em 0;
192
+ font-weight: var(--base-text-weight-semibold, 600);
193
+ padding-bottom: .3em;
194
+ font-size: 2em;
195
+ border-bottom: 1px solid var(--borderColor-muted);
196
+ }
197
+
198
+ .markdown-body mark {
199
+ background-color: var(--bgColor-attention-muted);
200
+ color: var(--fgColor-default);
201
+ }
202
+
203
+ .markdown-body small {
204
+ font-size: 90%;
205
+ }
206
+
207
+ .markdown-body sub,
208
+ .markdown-body sup {
209
+ font-size: 75%;
210
+ line-height: 0;
211
+ position: relative;
212
+ vertical-align: baseline;
213
+ }
214
+
215
+ .markdown-body sub {
216
+ bottom: -0.25em;
217
+ }
218
+
219
+ .markdown-body sup {
220
+ top: -0.5em;
221
+ }
222
+
223
+ .markdown-body img {
224
+ border-style: none;
225
+ max-width: 100%;
226
+ box-sizing: content-box;
227
+ }
228
+
229
+ .markdown-body code,
230
+ .markdown-body kbd,
231
+ .markdown-body pre,
232
+ .markdown-body samp {
233
+ font-family: monospace;
234
+ font-size: 1em;
235
+ }
236
+
237
+ .markdown-body figure {
238
+ margin: 1em var(--base-size-40);
239
+ }
240
+
241
+ .markdown-body hr {
242
+ box-sizing: content-box;
243
+ overflow: hidden;
244
+ background: transparent;
245
+ border-bottom: 1px solid var(--borderColor-muted);
246
+ height: .25em;
247
+ padding: 0;
248
+ margin: var(--base-size-24) 0;
249
+ background-color: var(--borderColor-default);
250
+ border: 0;
251
+ }
252
+
253
+ .markdown-body input {
254
+ margin: 0;
255
+ overflow: visible;
256
+ font-family: inherit;
257
+ font-size: inherit;
258
+ line-height: inherit;
259
+ font: inherit;
260
+ }
261
+
262
+ .markdown-body [type=button],
263
+ .markdown-body [type=reset],
264
+ .markdown-body [type=submit] {
265
+ -webkit-appearance: button;
266
+ appearance: button;
267
+ }
268
+
269
+ .markdown-body [type=checkbox],
270
+ .markdown-body [type=radio] {
271
+ box-sizing: border-box;
272
+ padding: 0;
273
+ }
274
+
275
+ .markdown-body [type=number]::-webkit-inner-spin-button,
276
+ .markdown-body [type=number]::-webkit-outer-spin-button {
277
+ height: auto;
278
+ }
279
+
280
+ .markdown-body [type=search]::-webkit-search-cancel-button,
281
+ .markdown-body [type=search]::-webkit-search-decoration {
282
+ -webkit-appearance: none;
283
+ appearance: none;
284
+ }
285
+
286
+ .markdown-body ::-webkit-input-placeholder {
287
+ color: inherit;
288
+ opacity: .54;
289
+ }
290
+
291
+ .markdown-body ::-webkit-file-upload-button {
292
+ -webkit-appearance: button;
293
+ appearance: button;
294
+ font: inherit;
295
+ }
296
+
297
+ .markdown-body a:hover {
298
+ text-decoration: underline;
299
+ }
300
+
301
+ .markdown-body ::placeholder {
302
+ color: var(--fgColor-muted);
303
+ opacity: 1;
304
+ }
305
+
306
+ .markdown-body hr::before {
307
+ display: table;
308
+ content: "";
309
+ }
310
+
311
+ .markdown-body hr::after {
312
+ display: table;
313
+ clear: both;
314
+ content: "";
315
+ }
316
+
317
+ .markdown-body table {
318
+ border-spacing: 0;
319
+ border-collapse: collapse;
320
+ display: block;
321
+ width: max-content;
322
+ max-width: 100%;
323
+ overflow: auto;
324
+ font-variant: tabular-nums;
325
+ }
326
+
327
+ .markdown-body td,
328
+ .markdown-body th {
329
+ padding: 0;
330
+ }
331
+
332
+ .markdown-body details summary {
333
+ cursor: pointer;
334
+ }
335
+
336
+ .markdown-body a:focus,
337
+ .markdown-body [role=button]:focus,
338
+ .markdown-body input[type=radio]:focus,
339
+ .markdown-body input[type=checkbox]:focus {
340
+ outline: 2px solid var(--focus-outlineColor);
341
+ outline-offset: -2px;
342
+ box-shadow: none;
343
+ }
344
+
345
+ .markdown-body a:focus:not(:focus-visible),
346
+ .markdown-body [role=button]:focus:not(:focus-visible),
347
+ .markdown-body input[type=radio]:focus:not(:focus-visible),
348
+ .markdown-body input[type=checkbox]:focus:not(:focus-visible) {
349
+ outline: solid 1px transparent;
350
+ }
351
+
352
+ .markdown-body a:focus-visible,
353
+ .markdown-body [role=button]:focus-visible,
354
+ .markdown-body input[type=radio]:focus-visible,
355
+ .markdown-body input[type=checkbox]:focus-visible {
356
+ outline: 2px solid var(--focus-outlineColor);
357
+ outline-offset: -2px;
358
+ box-shadow: none;
359
+ }
360
+
361
+ .markdown-body a:not([class]):focus,
362
+ .markdown-body a:not([class]):focus-visible,
363
+ .markdown-body input[type=radio]:focus,
364
+ .markdown-body input[type=radio]:focus-visible,
365
+ .markdown-body input[type=checkbox]:focus,
366
+ .markdown-body input[type=checkbox]:focus-visible {
367
+ outline-offset: 0;
368
+ }
369
+
370
+ .markdown-body kbd {
371
+ display: inline-block;
372
+ padding: var(--base-size-4);
373
+ font: 11px var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
374
+ line-height: 10px;
375
+ color: var(--fgColor-default);
376
+ vertical-align: middle;
377
+ background-color: var(--bgColor-muted);
378
+ border: solid 1px var(--borderColor-neutral-muted);
379
+ border-bottom-color: var(--borderColor-neutral-muted);
380
+ border-radius: 6px;
381
+ box-shadow: inset 0 -1px 0 var(--borderColor-neutral-muted);
382
+ }
383
+
384
+ .markdown-body h1,
385
+ .markdown-body h2,
386
+ .markdown-body h3,
387
+ .markdown-body h4,
388
+ .markdown-body h5,
389
+ .markdown-body h6 {
390
+ margin-top: var(--base-size-24);
391
+ margin-bottom: var(--base-size-16);
392
+ font-weight: var(--base-text-weight-semibold, 600);
393
+ line-height: 1.25;
394
+ }
395
+
396
+ .markdown-body h2 {
397
+ font-weight: var(--base-text-weight-semibold, 600);
398
+ padding-bottom: .3em;
399
+ font-size: 1.5em;
400
+ border-bottom: 1px solid var(--borderColor-muted);
401
+ }
402
+
403
+ .markdown-body h3 {
404
+ font-weight: var(--base-text-weight-semibold, 600);
405
+ font-size: 1.25em;
406
+ }
407
+
408
+ .markdown-body h4 {
409
+ font-weight: var(--base-text-weight-semibold, 600);
410
+ font-size: 1em;
411
+ }
412
+
413
+ .markdown-body h5 {
414
+ font-weight: var(--base-text-weight-semibold, 600);
415
+ font-size: .875em;
416
+ }
417
+
418
+ .markdown-body h6 {
419
+ font-weight: var(--base-text-weight-semibold, 600);
420
+ font-size: .85em;
421
+ color: var(--fgColor-muted);
422
+ }
423
+
424
+ .markdown-body p {
425
+ margin-top: 0;
426
+ margin-bottom: 10px;
427
+ }
428
+
429
+ .markdown-body blockquote {
430
+ margin: 0;
431
+ padding: 0 1em;
432
+ color: var(--fgColor-muted);
433
+ border-left: .25em solid var(--borderColor-default);
434
+ }
435
+
436
+ .markdown-body ul,
437
+ .markdown-body ol {
438
+ margin-top: 0;
439
+ margin-bottom: 0;
440
+ padding-left: 2em;
441
+ }
442
+
443
+ .markdown-body ol ol,
444
+ .markdown-body ul ol {
445
+ list-style-type: lower-roman;
446
+ }
447
+
448
+ .markdown-body ul ul ol,
449
+ .markdown-body ul ol ol,
450
+ .markdown-body ol ul ol,
451
+ .markdown-body ol ol ol {
452
+ list-style-type: lower-alpha;
453
+ }
454
+
455
+ .markdown-body dd {
456
+ margin-left: 0;
457
+ }
458
+
459
+ .markdown-body tt,
460
+ .markdown-body code,
461
+ .markdown-body samp {
462
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
463
+ font-size: 12px;
464
+ }
465
+
466
+ .markdown-body pre {
467
+ margin-top: 0;
468
+ margin-bottom: 0;
469
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
470
+ font-size: 12px;
471
+ word-wrap: normal;
472
+ }
473
+
474
+ .markdown-body .octicon {
475
+ display: inline-block;
476
+ overflow: visible !important;
477
+ vertical-align: text-bottom;
478
+ fill: currentColor;
479
+ }
480
+
481
+ .markdown-body input::-webkit-outer-spin-button,
482
+ .markdown-body input::-webkit-inner-spin-button {
483
+ margin: 0;
484
+ appearance: none;
485
+ }
486
+
487
+ .markdown-body .mr-2 {
488
+ margin-right: var(--base-size-8, 8px) !important;
489
+ }
490
+
491
+ .markdown-body::before {
492
+ display: table;
493
+ content: "";
494
+ }
495
+
496
+ .markdown-body::after {
497
+ display: table;
498
+ clear: both;
499
+ content: "";
500
+ }
501
+
502
+ .markdown-body>*:first-child {
503
+ margin-top: 0 !important;
504
+ }
505
+
506
+ .markdown-body>*:last-child {
507
+ margin-bottom: 0 !important;
508
+ }
509
+
510
+ .markdown-body a:not([href]) {
511
+ color: inherit;
512
+ text-decoration: none;
513
+ }
514
+
515
+ .markdown-body .absent {
516
+ color: var(--fgColor-danger);
517
+ }
518
+
519
+ .markdown-body .anchor {
520
+ float: left;
521
+ padding-right: var(--base-size-4);
522
+ margin-left: -20px;
523
+ line-height: 1;
524
+ }
525
+
526
+ .markdown-body .anchor:focus {
527
+ outline: none;
528
+ }
529
+
530
+ .markdown-body p,
531
+ .markdown-body blockquote,
532
+ .markdown-body ul,
533
+ .markdown-body ol,
534
+ .markdown-body dl,
535
+ .markdown-body table,
536
+ .markdown-body pre,
537
+ .markdown-body details {
538
+ margin-top: 0;
539
+ margin-bottom: var(--base-size-16);
540
+ }
541
+
542
+ .markdown-body blockquote>:first-child {
543
+ margin-top: 0;
544
+ }
545
+
546
+ .markdown-body blockquote>:last-child {
547
+ margin-bottom: 0;
548
+ }
549
+
550
+ .markdown-body h1 .octicon-link,
551
+ .markdown-body h2 .octicon-link,
552
+ .markdown-body h3 .octicon-link,
553
+ .markdown-body h4 .octicon-link,
554
+ .markdown-body h5 .octicon-link,
555
+ .markdown-body h6 .octicon-link {
556
+ color: var(--fgColor-default);
557
+ vertical-align: middle;
558
+ visibility: hidden;
559
+ }
560
+
561
+ .markdown-body h1:hover .anchor,
562
+ .markdown-body h2:hover .anchor,
563
+ .markdown-body h3:hover .anchor,
564
+ .markdown-body h4:hover .anchor,
565
+ .markdown-body h5:hover .anchor,
566
+ .markdown-body h6:hover .anchor {
567
+ text-decoration: none;
568
+ }
569
+
570
+ .markdown-body h1:hover .anchor .octicon-link,
571
+ .markdown-body h2:hover .anchor .octicon-link,
572
+ .markdown-body h3:hover .anchor .octicon-link,
573
+ .markdown-body h4:hover .anchor .octicon-link,
574
+ .markdown-body h5:hover .anchor .octicon-link,
575
+ .markdown-body h6:hover .anchor .octicon-link {
576
+ visibility: visible;
577
+ }
578
+
579
+ .markdown-body h1 tt,
580
+ .markdown-body h1 code,
581
+ .markdown-body h2 tt,
582
+ .markdown-body h2 code,
583
+ .markdown-body h3 tt,
584
+ .markdown-body h3 code,
585
+ .markdown-body h4 tt,
586
+ .markdown-body h4 code,
587
+ .markdown-body h5 tt,
588
+ .markdown-body h5 code,
589
+ .markdown-body h6 tt,
590
+ .markdown-body h6 code {
591
+ padding: 0 .2em;
592
+ font-size: inherit;
593
+ }
594
+
595
+ .markdown-body summary h1,
596
+ .markdown-body summary h2,
597
+ .markdown-body summary h3,
598
+ .markdown-body summary h4,
599
+ .markdown-body summary h5,
600
+ .markdown-body summary h6 {
601
+ display: inline-block;
602
+ }
603
+
604
+ .markdown-body summary h1 .anchor,
605
+ .markdown-body summary h2 .anchor,
606
+ .markdown-body summary h3 .anchor,
607
+ .markdown-body summary h4 .anchor,
608
+ .markdown-body summary h5 .anchor,
609
+ .markdown-body summary h6 .anchor {
610
+ margin-left: -40px;
611
+ }
612
+
613
+ .markdown-body summary h1,
614
+ .markdown-body summary h2 {
615
+ padding-bottom: 0;
616
+ border-bottom: 0;
617
+ }
618
+
619
+ .markdown-body ul.no-list,
620
+ .markdown-body ol.no-list {
621
+ padding: 0;
622
+ list-style-type: none;
623
+ }
624
+
625
+ .markdown-body ol[type="a s"] {
626
+ list-style-type: lower-alpha;
627
+ }
628
+
629
+ .markdown-body ol[type="A s"] {
630
+ list-style-type: upper-alpha;
631
+ }
632
+
633
+ .markdown-body ol[type="i s"] {
634
+ list-style-type: lower-roman;
635
+ }
636
+
637
+ .markdown-body ol[type="I s"] {
638
+ list-style-type: upper-roman;
639
+ }
640
+
641
+ .markdown-body ol[type="1"] {
642
+ list-style-type: decimal;
643
+ }
644
+
645
+ .markdown-body div>ol:not([type]) {
646
+ list-style-type: decimal;
647
+ }
648
+
649
+ .markdown-body ul ul,
650
+ .markdown-body ul ol,
651
+ .markdown-body ol ol,
652
+ .markdown-body ol ul {
653
+ margin-top: 0;
654
+ margin-bottom: 0;
655
+ }
656
+
657
+ .markdown-body li>p {
658
+ margin-top: var(--base-size-16);
659
+ }
660
+
661
+ .markdown-body li+li {
662
+ margin-top: .25em;
663
+ }
664
+
665
+ .markdown-body dl {
666
+ padding: 0;
667
+ }
668
+
669
+ .markdown-body dl dt {
670
+ padding: 0;
671
+ margin-top: var(--base-size-16);
672
+ font-size: 1em;
673
+ font-style: italic;
674
+ font-weight: var(--base-text-weight-semibold, 600);
675
+ }
676
+
677
+ .markdown-body dl dd {
678
+ padding: 0 var(--base-size-16);
679
+ margin-bottom: var(--base-size-16);
680
+ }
681
+
682
+ .markdown-body table th {
683
+ font-weight: var(--base-text-weight-semibold, 600);
684
+ }
685
+
686
+ .markdown-body table th,
687
+ .markdown-body table td {
688
+ padding: 6px 13px;
689
+ border: 1px solid var(--borderColor-default);
690
+ }
691
+
692
+ .markdown-body table td>:last-child {
693
+ margin-bottom: 0;
694
+ }
695
+
696
+ .markdown-body table tr {
697
+ background-color: var(--bgColor-default);
698
+ border-top: 1px solid var(--borderColor-muted);
699
+ }
700
+
701
+ .markdown-body table tr:nth-child(2n) {
702
+ background-color: var(--bgColor-muted);
703
+ }
704
+
705
+ .markdown-body table img {
706
+ background-color: transparent;
707
+ }
708
+
709
+ .markdown-body img[align=right] {
710
+ padding-left: 20px;
711
+ }
712
+
713
+ .markdown-body img[align=left] {
714
+ padding-right: 20px;
715
+ }
716
+
717
+ .markdown-body .emoji {
718
+ max-width: none;
719
+ vertical-align: text-top;
720
+ background-color: transparent;
721
+ }
722
+
723
+ .markdown-body span.frame {
724
+ display: block;
725
+ overflow: hidden;
726
+ }
727
+
728
+ .markdown-body span.frame>span {
729
+ display: block;
730
+ float: left;
731
+ width: auto;
732
+ padding: 7px;
733
+ margin: 13px 0 0;
734
+ overflow: hidden;
735
+ border: 1px solid var(--borderColor-default);
736
+ }
737
+
738
+ .markdown-body span.frame span img {
739
+ display: block;
740
+ float: left;
741
+ }
742
+
743
+ .markdown-body span.frame span span {
744
+ display: block;
745
+ padding: 5px 0 0;
746
+ clear: both;
747
+ color: var(--fgColor-default);
748
+ }
749
+
750
+ .markdown-body span.align-center {
751
+ display: block;
752
+ overflow: hidden;
753
+ clear: both;
754
+ }
755
+
756
+ .markdown-body span.align-center>span {
757
+ display: block;
758
+ margin: 13px auto 0;
759
+ overflow: hidden;
760
+ text-align: center;
761
+ }
762
+
763
+ .markdown-body span.align-center span img {
764
+ margin: 0 auto;
765
+ text-align: center;
766
+ }
767
+
768
+ .markdown-body span.align-right {
769
+ display: block;
770
+ overflow: hidden;
771
+ clear: both;
772
+ }
773
+
774
+ .markdown-body span.align-right>span {
775
+ display: block;
776
+ margin: 13px 0 0;
777
+ overflow: hidden;
778
+ text-align: right;
779
+ }
780
+
781
+ .markdown-body span.align-right span img {
782
+ margin: 0;
783
+ text-align: right;
784
+ }
785
+
786
+ .markdown-body span.float-left {
787
+ display: block;
788
+ float: left;
789
+ margin-right: 13px;
790
+ overflow: hidden;
791
+ }
792
+
793
+ .markdown-body span.float-left span {
794
+ margin: 13px 0 0;
795
+ }
796
+
797
+ .markdown-body span.float-right {
798
+ display: block;
799
+ float: right;
800
+ margin-left: 13px;
801
+ overflow: hidden;
802
+ }
803
+
804
+ .markdown-body span.float-right>span {
805
+ display: block;
806
+ margin: 13px auto 0;
807
+ overflow: hidden;
808
+ text-align: right;
809
+ }
810
+
811
+ .markdown-body code,
812
+ .markdown-body tt {
813
+ padding: .2em .4em;
814
+ margin: 0;
815
+ font-size: 85%;
816
+ white-space: break-spaces;
817
+ background-color: var(--bgColor-neutral-muted);
818
+ border-radius: 6px;
819
+ }
820
+
821
+ .markdown-body code br,
822
+ .markdown-body tt br {
823
+ display: none;
824
+ }
825
+
826
+ .markdown-body del code {
827
+ text-decoration: inherit;
828
+ }
829
+
830
+ .markdown-body samp {
831
+ font-size: 85%;
832
+ }
833
+
834
+ .markdown-body pre code {
835
+ font-size: 100%;
836
+ }
837
+
838
+ .markdown-body pre>code {
839
+ padding: 0;
840
+ margin: 0;
841
+ word-break: normal;
842
+ white-space: pre;
843
+ background: transparent;
844
+ border: 0;
845
+ }
846
+
847
+ .markdown-body .highlight {
848
+ margin-bottom: var(--base-size-16);
849
+ }
850
+
851
+ .markdown-body .highlight pre {
852
+ margin-bottom: 0;
853
+ word-break: normal;
854
+ }
855
+
856
+ .markdown-body .highlight pre,
857
+ .markdown-body pre {
858
+ padding: var(--base-size-16);
859
+ overflow: auto;
860
+ font-size: 85%;
861
+ line-height: 1.45;
862
+ color: var(--fgColor-default);
863
+ background-color: var(--bgColor-muted);
864
+ border-radius: 6px;
865
+ }
866
+
867
+ .markdown-body pre code,
868
+ .markdown-body pre tt {
869
+ display: inline;
870
+ max-width: auto;
871
+ padding: 0;
872
+ margin: 0;
873
+ overflow: visible;
874
+ line-height: inherit;
875
+ word-wrap: normal;
876
+ background-color: transparent;
877
+ border: 0;
878
+ }
879
+
880
+ .markdown-body .csv-data td,
881
+ .markdown-body .csv-data th {
882
+ padding: 5px;
883
+ overflow: hidden;
884
+ font-size: 12px;
885
+ line-height: 1;
886
+ text-align: left;
887
+ white-space: nowrap;
888
+ }
889
+
890
+ .markdown-body .csv-data .blob-num {
891
+ padding: 10px var(--base-size-8) 9px;
892
+ text-align: right;
893
+ background: var(--bgColor-default);
894
+ border: 0;
895
+ }
896
+
897
+ .markdown-body .csv-data tr {
898
+ border-top: 0;
899
+ }
900
+
901
+ .markdown-body .csv-data th {
902
+ font-weight: var(--base-text-weight-semibold, 600);
903
+ background: var(--bgColor-muted);
904
+ border-top: 0;
905
+ }
906
+
907
+ .markdown-body [data-footnote-ref]::before {
908
+ content: "[";
909
+ }
910
+
911
+ .markdown-body [data-footnote-ref]::after {
912
+ content: "]";
913
+ }
914
+
915
+ .markdown-body .footnotes {
916
+ font-size: 12px;
917
+ color: var(--fgColor-muted);
918
+ border-top: 1px solid var(--borderColor-default);
919
+ }
920
+
921
+ .markdown-body .footnotes ol {
922
+ padding-left: var(--base-size-16);
923
+ }
924
+
925
+ .markdown-body .footnotes ol ul {
926
+ display: inline-block;
927
+ padding-left: var(--base-size-16);
928
+ margin-top: var(--base-size-16);
929
+ }
930
+
931
+ .markdown-body .footnotes li {
932
+ position: relative;
933
+ }
934
+
935
+ .markdown-body .footnotes li:target::before {
936
+ position: absolute;
937
+ top: calc(var(--base-size-8)*-1);
938
+ right: calc(var(--base-size-8)*-1);
939
+ bottom: calc(var(--base-size-8)*-1);
940
+ left: calc(var(--base-size-24)*-1);
941
+ pointer-events: none;
942
+ content: "";
943
+ border: 2px solid var(--borderColor-accent-emphasis);
944
+ border-radius: 6px;
945
+ }
946
+
947
+ .markdown-body .footnotes li:target {
948
+ color: var(--fgColor-default);
949
+ }
950
+
951
+ .markdown-body .footnotes .data-footnote-backref g-emoji {
952
+ font-family: monospace;
953
+ }
954
+
955
+ .markdown-body body:has(:modal) {
956
+ padding-right: var(--dialog-scrollgutter) !important;
957
+ }
958
+
959
+ .markdown-body .pl-c {
960
+ color: var(--color-prettylights-syntax-comment);
961
+ }
962
+
963
+ .markdown-body .pl-c1,
964
+ .markdown-body .pl-s .pl-v {
965
+ color: var(--color-prettylights-syntax-constant);
966
+ }
967
+
968
+ .markdown-body .pl-e,
969
+ .markdown-body .pl-en {
970
+ color: var(--color-prettylights-syntax-entity);
971
+ }
972
+
973
+ .markdown-body .pl-smi,
974
+ .markdown-body .pl-s .pl-s1 {
975
+ color: var(--color-prettylights-syntax-storage-modifier-import);
976
+ }
977
+
978
+ .markdown-body .pl-ent {
979
+ color: var(--color-prettylights-syntax-entity-tag);
980
+ }
981
+
982
+ .markdown-body .pl-k {
983
+ color: var(--color-prettylights-syntax-keyword);
984
+ }
985
+
986
+ .markdown-body .pl-s,
987
+ .markdown-body .pl-pds,
988
+ .markdown-body .pl-s .pl-pse .pl-s1,
989
+ .markdown-body .pl-sr,
990
+ .markdown-body .pl-sr .pl-cce,
991
+ .markdown-body .pl-sr .pl-sre,
992
+ .markdown-body .pl-sr .pl-sra {
993
+ color: var(--color-prettylights-syntax-string);
994
+ }
995
+
996
+ .markdown-body .pl-v,
997
+ .markdown-body .pl-smw {
998
+ color: var(--color-prettylights-syntax-variable);
999
+ }
1000
+
1001
+ .markdown-body .pl-bu {
1002
+ color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
1003
+ }
1004
+
1005
+ .markdown-body .pl-ii {
1006
+ color: var(--color-prettylights-syntax-invalid-illegal-text);
1007
+ background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
1008
+ }
1009
+
1010
+ .markdown-body .pl-c2 {
1011
+ color: var(--color-prettylights-syntax-carriage-return-text);
1012
+ background-color: var(--color-prettylights-syntax-carriage-return-bg);
1013
+ }
1014
+
1015
+ .markdown-body .pl-sr .pl-cce {
1016
+ font-weight: bold;
1017
+ color: var(--color-prettylights-syntax-string-regexp);
1018
+ }
1019
+
1020
+ .markdown-body .pl-ml {
1021
+ color: var(--color-prettylights-syntax-markup-list);
1022
+ }
1023
+
1024
+ .markdown-body .pl-mh,
1025
+ .markdown-body .pl-mh .pl-en,
1026
+ .markdown-body .pl-ms {
1027
+ font-weight: bold;
1028
+ color: var(--color-prettylights-syntax-markup-heading);
1029
+ }
1030
+
1031
+ .markdown-body .pl-mi {
1032
+ font-style: italic;
1033
+ color: var(--color-prettylights-syntax-markup-italic);
1034
+ }
1035
+
1036
+ .markdown-body .pl-mb {
1037
+ font-weight: bold;
1038
+ color: var(--color-prettylights-syntax-markup-bold);
1039
+ }
1040
+
1041
+ .markdown-body .pl-md {
1042
+ color: var(--color-prettylights-syntax-markup-deleted-text);
1043
+ background-color: var(--color-prettylights-syntax-markup-deleted-bg);
1044
+ }
1045
+
1046
+ .markdown-body .pl-mi1 {
1047
+ color: var(--color-prettylights-syntax-markup-inserted-text);
1048
+ background-color: var(--color-prettylights-syntax-markup-inserted-bg);
1049
+ }
1050
+
1051
+ .markdown-body .pl-mc {
1052
+ color: var(--color-prettylights-syntax-markup-changed-text);
1053
+ background-color: var(--color-prettylights-syntax-markup-changed-bg);
1054
+ }
1055
+
1056
+ .markdown-body .pl-mi2 {
1057
+ color: var(--color-prettylights-syntax-markup-ignored-text);
1058
+ background-color: var(--color-prettylights-syntax-markup-ignored-bg);
1059
+ }
1060
+
1061
+ .markdown-body .pl-mdr {
1062
+ font-weight: bold;
1063
+ color: var(--color-prettylights-syntax-meta-diff-range);
1064
+ }
1065
+
1066
+ .markdown-body .pl-ba {
1067
+ color: var(--color-prettylights-syntax-brackethighlighter-angle);
1068
+ }
1069
+
1070
+ .markdown-body .pl-sg {
1071
+ color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
1072
+ }
1073
+
1074
+ .markdown-body .pl-corl {
1075
+ text-decoration: underline;
1076
+ color: var(--color-prettylights-syntax-constant-other-reference-link);
1077
+ }
1078
+
1079
+ .markdown-body [role=button]:focus:not(:focus-visible),
1080
+ .markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),
1081
+ .markdown-body button:focus:not(:focus-visible),
1082
+ .markdown-body summary:focus:not(:focus-visible),
1083
+ .markdown-body a:focus:not(:focus-visible) {
1084
+ outline: none;
1085
+ box-shadow: none;
1086
+ }
1087
+
1088
+ .markdown-body [tabindex="0"]:focus:not(:focus-visible),
1089
+ .markdown-body details-dialog:focus:not(:focus-visible) {
1090
+ outline: none;
1091
+ }
1092
+
1093
+ .markdown-body g-emoji {
1094
+ display: inline-block;
1095
+ min-width: 1ch;
1096
+ font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
1097
+ font-size: 1em;
1098
+ font-style: normal !important;
1099
+ font-weight: var(--base-text-weight-normal, 400);
1100
+ line-height: 1;
1101
+ vertical-align: -0.075em;
1102
+ }
1103
+
1104
+ .markdown-body g-emoji img {
1105
+ width: 1em;
1106
+ height: 1em;
1107
+ }
1108
+
1109
+ .markdown-body .task-list-item {
1110
+ list-style-type: none;
1111
+ }
1112
+
1113
+ .markdown-body .task-list-item label {
1114
+ font-weight: var(--base-text-weight-normal, 400);
1115
+ }
1116
+
1117
+ .markdown-body .task-list-item.enabled label {
1118
+ cursor: pointer;
1119
+ }
1120
+
1121
+ .markdown-body .task-list-item+.task-list-item {
1122
+ margin-top: var(--base-size-4);
1123
+ }
1124
+
1125
+ .markdown-body .task-list-item .handle {
1126
+ display: none;
1127
+ }
1128
+
1129
+ .markdown-body .task-list-item-checkbox {
1130
+ margin: 0 .2em .25em -1.4em;
1131
+ vertical-align: middle;
1132
+ }
1133
+
1134
+ .markdown-body ul:dir(rtl) .task-list-item-checkbox {
1135
+ margin: 0 -1.6em .25em .2em;
1136
+ }
1137
+
1138
+ .markdown-body ol:dir(rtl) .task-list-item-checkbox {
1139
+ margin: 0 -1.6em .25em .2em;
1140
+ }
1141
+
1142
+ .markdown-body .contains-task-list:hover .task-list-item-convert-container,
1143
+ .markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
1144
+ display: block;
1145
+ width: auto;
1146
+ height: 24px;
1147
+ overflow: visible;
1148
+ clip: auto;
1149
+ }
1150
+
1151
+ .markdown-body ::-webkit-calendar-picker-indicator {
1152
+ filter: invert(50%);
1153
+ }
1154
+
1155
+ .markdown-body .markdown-alert {
1156
+ padding: var(--base-size-8) var(--base-size-16);
1157
+ margin-bottom: var(--base-size-16);
1158
+ color: inherit;
1159
+ border-left: .25em solid var(--borderColor-default);
1160
+ }
1161
+
1162
+ .markdown-body .markdown-alert>:first-child {
1163
+ margin-top: 0;
1164
+ }
1165
+
1166
+ .markdown-body .markdown-alert>:last-child {
1167
+ margin-bottom: 0;
1168
+ }
1169
+
1170
+ .markdown-body .markdown-alert .markdown-alert-title {
1171
+ display: flex;
1172
+ font-weight: var(--base-text-weight-medium, 500);
1173
+ align-items: center;
1174
+ line-height: 1;
1175
+ }
1176
+
1177
+ .markdown-body .markdown-alert.markdown-alert-note {
1178
+ border-left-color: var(--borderColor-accent-emphasis);
1179
+ }
1180
+
1181
+ .markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title {
1182
+ color: var(--fgColor-accent);
1183
+ }
1184
+
1185
+ .markdown-body .markdown-alert.markdown-alert-important {
1186
+ border-left-color: var(--borderColor-done-emphasis);
1187
+ }
1188
+
1189
+ .markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title {
1190
+ color: var(--fgColor-done);
1191
+ }
1192
+
1193
+ .markdown-body .markdown-alert.markdown-alert-warning {
1194
+ border-left-color: var(--borderColor-attention-emphasis);
1195
+ }
1196
+
1197
+ .markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title {
1198
+ color: var(--fgColor-attention);
1199
+ }
1200
+
1201
+ .markdown-body .markdown-alert.markdown-alert-tip {
1202
+ border-left-color: var(--borderColor-success-emphasis);
1203
+ }
1204
+
1205
+ .markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title {
1206
+ color: var(--fgColor-success);
1207
+ }
1208
+
1209
+ .markdown-body .markdown-alert.markdown-alert-caution {
1210
+ border-left-color: var(--borderColor-danger-emphasis);
1211
+ }
1212
+
1213
+ .markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title {
1214
+ color: var(--fgColor-danger);
1215
+ }
1216
+
1217
+ .markdown-body>*:first-child>.heading-element:first-child {
1218
+ margin-top: 0 !important;
1219
+ }
1220
+
1221
+ .markdown-body ul[role='list'],
1222
+ .markdown-body ol[role='list'] {
1223
+ list-style: none;
1224
+ }
1225
+
1226
+ .markdown-body html[focus-within] {
1227
+ scroll-behavior: smooth;
1228
+ }
1229
+
1230
+ .markdown-body html:focus-within {
1231
+ scroll-behavior: smooth;
1232
+ }
1233
+
1234
+ .markdown-body a:not([class]) {
1235
+ -webkit-text-decoration-skip: ink;
1236
+ text-decoration-skip-ink: auto;
1237
+ }
1238
+
1239
+ .markdown-body img,
1240
+ .markdown-body picture {
1241
+ max-width: 100%;
1242
+ display: block;
1243
+ }
1244
+
1245
+ .markdown-body [class^=Primer_Brand__Link-module__Link___]::after {
1246
+ width: calc(100% - 20px);
1247
+ }
1248
+