yattho_view_components 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (991) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +0 -0
  3. data/README.md +17 -0
  4. data/app/assets/javascripts/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
  5. data/app/assets/javascripts/app/components/yattho/alpha/dropdown.d.ts +1 -0
  6. data/app/assets/javascripts/app/components/yattho/alpha/image_crop.d.ts +1 -0
  7. data/app/assets/javascripts/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
  8. data/app/assets/javascripts/app/components/yattho/alpha/nav_list.d.ts +25 -0
  9. data/app/assets/javascripts/app/components/yattho/alpha/segmented_control.d.ts +12 -0
  10. data/app/assets/javascripts/app/components/yattho/alpha/tab_container.d.ts +1 -0
  11. data/app/assets/javascripts/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
  12. data/app/assets/javascripts/app/components/yattho/alpha/tool_tip.d.ts +25 -0
  13. data/app/assets/javascripts/app/components/yattho/alpha/x_banner.d.ts +11 -0
  14. data/app/assets/javascripts/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
  15. data/app/assets/javascripts/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
  16. data/app/assets/javascripts/app/components/yattho/local_time.d.ts +1 -0
  17. data/app/assets/javascripts/app/components/yattho/time_ago_component.d.ts +1 -0
  18. data/app/assets/javascripts/app/components/yattho/yattho.d.ts +16 -0
  19. data/app/assets/javascripts/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
  20. data/app/assets/javascripts/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
  21. data/app/assets/javascripts/lib/yattho/forms/yattho_text_field.d.ts +1 -0
  22. data/app/assets/javascripts/yattho_view_components.js +2 -0
  23. data/app/assets/javascripts/yattho_view_components.js.map +1 -0
  24. data/app/assets/styles/yattho_view_components.css +5958 -0
  25. data/app/assets/styles/yattho_view_components.css.map +1 -0
  26. data/app/components/yattho/alpha/action_list/divider.rb +35 -0
  27. data/app/components/yattho/alpha/action_list/heading.html.erb +8 -0
  28. data/app/components/yattho/alpha/action_list/heading.rb +38 -0
  29. data/app/components/yattho/alpha/action_list/item.html.erb +39 -0
  30. data/app/components/yattho/alpha/action_list/item.rb +242 -0
  31. data/app/components/yattho/alpha/action_list.css +697 -0
  32. data/app/components/yattho/alpha/action_list.css.json +1 -0
  33. data/app/components/yattho/alpha/action_list.css.map +1 -0
  34. data/app/components/yattho/alpha/action_list.html.erb +15 -0
  35. data/app/components/yattho/alpha/action_list.pcss +682 -0
  36. data/app/components/yattho/alpha/action_list.rb +112 -0
  37. data/app/components/yattho/alpha/auto_complete/auto_complete.html.erb +24 -0
  38. data/app/components/yattho/alpha/auto_complete/item.rb +46 -0
  39. data/app/components/yattho/alpha/auto_complete.css +130 -0
  40. data/app/components/yattho/alpha/auto_complete.css.json +1 -0
  41. data/app/components/yattho/alpha/auto_complete.css.map +1 -0
  42. data/app/components/yattho/alpha/auto_complete.pcss +118 -0
  43. data/app/components/yattho/alpha/auto_complete.rb +159 -0
  44. data/app/components/yattho/alpha/banner.css +131 -0
  45. data/app/components/yattho/alpha/banner.css.json +1 -0
  46. data/app/components/yattho/alpha/banner.css.map +1 -0
  47. data/app/components/yattho/alpha/banner.html.erb +33 -0
  48. data/app/components/yattho/alpha/banner.pcss +126 -0
  49. data/app/components/yattho/alpha/banner.rb +138 -0
  50. data/app/components/yattho/alpha/button_marketing.css +211 -0
  51. data/app/components/yattho/alpha/button_marketing.css.json +1 -0
  52. data/app/components/yattho/alpha/button_marketing.css.map +1 -0
  53. data/app/components/yattho/alpha/button_marketing.pcss +175 -0
  54. data/app/components/yattho/alpha/button_marketing.rb +70 -0
  55. data/app/components/yattho/alpha/dialog/body.rb +28 -0
  56. data/app/components/yattho/alpha/dialog/footer.rb +34 -0
  57. data/app/components/yattho/alpha/dialog/header.html.erb +15 -0
  58. data/app/components/yattho/alpha/dialog/header.rb +40 -0
  59. data/app/components/yattho/alpha/dialog.css +613 -0
  60. data/app/components/yattho/alpha/dialog.css.json +1 -0
  61. data/app/components/yattho/alpha/dialog.css.map +1 -0
  62. data/app/components/yattho/alpha/dialog.html.erb +12 -0
  63. data/app/components/yattho/alpha/dialog.pcss +484 -0
  64. data/app/components/yattho/alpha/dialog.rb +164 -0
  65. data/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
  66. data/app/components/yattho/alpha/dropdown/menu.html.erb +24 -0
  67. data/app/components/yattho/alpha/dropdown/menu.js +1 -0
  68. data/app/components/yattho/alpha/dropdown/menu.rb +108 -0
  69. data/app/components/yattho/alpha/dropdown/menu.ts +1 -0
  70. data/app/components/yattho/alpha/dropdown.css +264 -0
  71. data/app/components/yattho/alpha/dropdown.css.json +1 -0
  72. data/app/components/yattho/alpha/dropdown.css.map +1 -0
  73. data/app/components/yattho/alpha/dropdown.d.ts +1 -0
  74. data/app/components/yattho/alpha/dropdown.html.erb +8 -0
  75. data/app/components/yattho/alpha/dropdown.js +1 -0
  76. data/app/components/yattho/alpha/dropdown.pcss +260 -0
  77. data/app/components/yattho/alpha/dropdown.rb +154 -0
  78. data/app/components/yattho/alpha/dropdown.ts +1 -0
  79. data/app/components/yattho/alpha/hellip_button.rb +41 -0
  80. data/app/components/yattho/alpha/hidden_text_expander.rb +57 -0
  81. data/app/components/yattho/alpha/image.rb +50 -0
  82. data/app/components/yattho/alpha/image_crop.d.ts +1 -0
  83. data/app/components/yattho/alpha/image_crop.html.erb +12 -0
  84. data/app/components/yattho/alpha/image_crop.js +1 -0
  85. data/app/components/yattho/alpha/image_crop.rb +39 -0
  86. data/app/components/yattho/alpha/image_crop.ts +1 -0
  87. data/app/components/yattho/alpha/layout.css +398 -0
  88. data/app/components/yattho/alpha/layout.css.json +1 -0
  89. data/app/components/yattho/alpha/layout.css.map +1 -0
  90. data/app/components/yattho/alpha/layout.html.erb +5 -0
  91. data/app/components/yattho/alpha/layout.pcss +268 -0
  92. data/app/components/yattho/alpha/layout.rb +282 -0
  93. data/app/components/yattho/alpha/menu.css +117 -0
  94. data/app/components/yattho/alpha/menu.css.json +1 -0
  95. data/app/components/yattho/alpha/menu.css.map +1 -0
  96. data/app/components/yattho/alpha/menu.html.erb +6 -0
  97. data/app/components/yattho/alpha/menu.pcss +119 -0
  98. data/app/components/yattho/alpha/menu.rb +76 -0
  99. data/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
  100. data/app/components/yattho/alpha/modal_dialog.js +162 -0
  101. data/app/components/yattho/alpha/modal_dialog.ts +173 -0
  102. data/app/components/yattho/alpha/nav_list/item.html.erb +13 -0
  103. data/app/components/yattho/alpha/nav_list/item.rb +125 -0
  104. data/app/components/yattho/alpha/nav_list/section.html.erb +3 -0
  105. data/app/components/yattho/alpha/nav_list/section.rb +85 -0
  106. data/app/components/yattho/alpha/nav_list.d.ts +25 -0
  107. data/app/components/yattho/alpha/nav_list.html.erb +10 -0
  108. data/app/components/yattho/alpha/nav_list.js +130 -0
  109. data/app/components/yattho/alpha/nav_list.rb +112 -0
  110. data/app/components/yattho/alpha/nav_list.ts +129 -0
  111. data/app/components/yattho/alpha/octicon_symbols.html.erb +3 -0
  112. data/app/components/yattho/alpha/octicon_symbols.rb +60 -0
  113. data/app/components/yattho/alpha/segmented_control/item.html.erb +13 -0
  114. data/app/components/yattho/alpha/segmented_control/item.rb +29 -0
  115. data/app/components/yattho/alpha/segmented_control.css +164 -0
  116. data/app/components/yattho/alpha/segmented_control.css.json +1 -0
  117. data/app/components/yattho/alpha/segmented_control.css.map +1 -0
  118. data/app/components/yattho/alpha/segmented_control.d.ts +12 -0
  119. data/app/components/yattho/alpha/segmented_control.html.erb +7 -0
  120. data/app/components/yattho/alpha/segmented_control.js +47 -0
  121. data/app/components/yattho/alpha/segmented_control.pcss +134 -0
  122. data/app/components/yattho/alpha/segmented_control.rb +96 -0
  123. data/app/components/yattho/alpha/segmented_control.ts +41 -0
  124. data/app/components/yattho/alpha/tab_container.d.ts +1 -0
  125. data/app/components/yattho/alpha/tab_container.js +1 -0
  126. data/app/components/yattho/alpha/tab_container.rb +43 -0
  127. data/app/components/yattho/alpha/tab_container.ts +1 -0
  128. data/app/components/yattho/alpha/tab_nav.css +106 -0
  129. data/app/components/yattho/alpha/tab_nav.css.json +1 -0
  130. data/app/components/yattho/alpha/tab_nav.css.map +1 -0
  131. data/app/components/yattho/alpha/tab_nav.html.erb +9 -0
  132. data/app/components/yattho/alpha/tab_nav.pcss +100 -0
  133. data/app/components/yattho/alpha/tab_nav.rb +129 -0
  134. data/app/components/yattho/alpha/tab_panels.html.erb +14 -0
  135. data/app/components/yattho/alpha/tab_panels.rb +82 -0
  136. data/app/components/yattho/alpha/text_field.css +836 -0
  137. data/app/components/yattho/alpha/text_field.css.json +1 -0
  138. data/app/components/yattho/alpha/text_field.css.map +1 -0
  139. data/app/components/yattho/alpha/text_field.pcss +689 -0
  140. data/app/components/yattho/alpha/text_field.rb +105 -0
  141. data/app/components/yattho/alpha/toggle_switch.css +253 -0
  142. data/app/components/yattho/alpha/toggle_switch.css.json +1 -0
  143. data/app/components/yattho/alpha/toggle_switch.css.map +1 -0
  144. data/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
  145. data/app/components/yattho/alpha/toggle_switch.html.erb +43 -0
  146. data/app/components/yattho/alpha/toggle_switch.js +156 -0
  147. data/app/components/yattho/alpha/toggle_switch.pcss +250 -0
  148. data/app/components/yattho/alpha/toggle_switch.rb +90 -0
  149. data/app/components/yattho/alpha/toggle_switch.ts +173 -0
  150. data/app/components/yattho/alpha/tool_tip.d.ts +25 -0
  151. data/app/components/yattho/alpha/tool_tip.js +369 -0
  152. data/app/components/yattho/alpha/tool_tip.ts +370 -0
  153. data/app/components/yattho/alpha/tooltip.rb +127 -0
  154. data/app/components/yattho/alpha/underline_nav.css +148 -0
  155. data/app/components/yattho/alpha/underline_nav.css.json +1 -0
  156. data/app/components/yattho/alpha/underline_nav.css.map +1 -0
  157. data/app/components/yattho/alpha/underline_nav.html.erb +13 -0
  158. data/app/components/yattho/alpha/underline_nav.pcss +133 -0
  159. data/app/components/yattho/alpha/underline_nav.rb +138 -0
  160. data/app/components/yattho/alpha/underline_panels.html.erb +18 -0
  161. data/app/components/yattho/alpha/underline_panels.rb +86 -0
  162. data/app/components/yattho/alpha/x_banner.d.ts +11 -0
  163. data/app/components/yattho/alpha/x_banner.js +35 -0
  164. data/app/components/yattho/alpha/x_banner.ts +38 -0
  165. data/app/components/yattho/base_component.rb +173 -0
  166. data/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
  167. data/app/components/yattho/beta/auto_complete/auto_complete.html.erb +28 -0
  168. data/app/components/yattho/beta/auto_complete/auto_complete.js +1 -0
  169. data/app/components/yattho/beta/auto_complete/auto_complete.ts +1 -0
  170. data/app/components/yattho/beta/auto_complete/item.html.erb +21 -0
  171. data/app/components/yattho/beta/auto_complete/item.rb +80 -0
  172. data/app/components/yattho/beta/auto_complete.rb +201 -0
  173. data/app/components/yattho/beta/avatar.css +74 -0
  174. data/app/components/yattho/beta/avatar.css.json +1 -0
  175. data/app/components/yattho/beta/avatar.css.map +1 -0
  176. data/app/components/yattho/beta/avatar.pcss +73 -0
  177. data/app/components/yattho/beta/avatar.rb +84 -0
  178. data/app/components/yattho/beta/avatar_stack.css +138 -0
  179. data/app/components/yattho/beta/avatar_stack.css.json +1 -0
  180. data/app/components/yattho/beta/avatar_stack.css.map +1 -0
  181. data/app/components/yattho/beta/avatar_stack.html.erb +10 -0
  182. data/app/components/yattho/beta/avatar_stack.pcss +141 -0
  183. data/app/components/yattho/beta/avatar_stack.rb +92 -0
  184. data/app/components/yattho/beta/base_button.rb +48 -0
  185. data/app/components/yattho/beta/blankslate.css +90 -0
  186. data/app/components/yattho/beta/blankslate.css.json +1 -0
  187. data/app/components/yattho/beta/blankslate.css.map +1 -0
  188. data/app/components/yattho/beta/blankslate.html.erb +17 -0
  189. data/app/components/yattho/beta/blankslate.pcss +90 -0
  190. data/app/components/yattho/beta/blankslate.rb +238 -0
  191. data/app/components/yattho/beta/border_box/header.html.erb +4 -0
  192. data/app/components/yattho/beta/border_box/header.rb +52 -0
  193. data/app/components/yattho/beta/border_box.css +279 -0
  194. data/app/components/yattho/beta/border_box.css.json +1 -0
  195. data/app/components/yattho/beta/border_box.css.map +1 -0
  196. data/app/components/yattho/beta/border_box.html.erb +12 -0
  197. data/app/components/yattho/beta/border_box.pcss +284 -0
  198. data/app/components/yattho/beta/border_box.rb +147 -0
  199. data/app/components/yattho/beta/breadcrumbs.css +27 -0
  200. data/app/components/yattho/beta/breadcrumbs.css.json +1 -0
  201. data/app/components/yattho/beta/breadcrumbs.css.map +1 -0
  202. data/app/components/yattho/beta/breadcrumbs.html.erb +8 -0
  203. data/app/components/yattho/beta/breadcrumbs.pcss +30 -0
  204. data/app/components/yattho/beta/breadcrumbs.rb +82 -0
  205. data/app/components/yattho/beta/button.css +365 -0
  206. data/app/components/yattho/beta/button.css.json +1 -0
  207. data/app/components/yattho/beta/button.css.map +1 -0
  208. data/app/components/yattho/beta/button.html.erb +23 -0
  209. data/app/components/yattho/beta/button.pcss +344 -0
  210. data/app/components/yattho/beta/button.rb +198 -0
  211. data/app/components/yattho/beta/button_group.html.erb +5 -0
  212. data/app/components/yattho/beta/button_group.rb +59 -0
  213. data/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
  214. data/app/components/yattho/beta/clipboard_copy.html.erb +8 -0
  215. data/app/components/yattho/beta/clipboard_copy.js +43 -0
  216. data/app/components/yattho/beta/clipboard_copy.rb +50 -0
  217. data/app/components/yattho/beta/clipboard_copy.ts +55 -0
  218. data/app/components/yattho/beta/close_button.rb +41 -0
  219. data/app/components/yattho/beta/counter.css +36 -0
  220. data/app/components/yattho/beta/counter.css.json +1 -0
  221. data/app/components/yattho/beta/counter.css.map +1 -0
  222. data/app/components/yattho/beta/counter.pcss +35 -0
  223. data/app/components/yattho/beta/counter.rb +114 -0
  224. data/app/components/yattho/beta/details.html.erb +4 -0
  225. data/app/components/yattho/beta/details.rb +72 -0
  226. data/app/components/yattho/beta/flash.css +150 -0
  227. data/app/components/yattho/beta/flash.css.json +1 -0
  228. data/app/components/yattho/beta/flash.css.map +1 -0
  229. data/app/components/yattho/beta/flash.html.erb +10 -0
  230. data/app/components/yattho/beta/flash.pcss +143 -0
  231. data/app/components/yattho/beta/flash.rb +72 -0
  232. data/app/components/yattho/beta/heading.rb +46 -0
  233. data/app/components/yattho/beta/icon_button.html.erb +6 -0
  234. data/app/components/yattho/beta/icon_button.rb +110 -0
  235. data/app/components/yattho/beta/label.css +105 -0
  236. data/app/components/yattho/beta/label.css.json +1 -0
  237. data/app/components/yattho/beta/label.css.map +1 -0
  238. data/app/components/yattho/beta/label.pcss +103 -0
  239. data/app/components/yattho/beta/label.rb +102 -0
  240. data/app/components/yattho/beta/link.css +62 -0
  241. data/app/components/yattho/beta/link.css.json +1 -0
  242. data/app/components/yattho/beta/link.css.map +1 -0
  243. data/app/components/yattho/beta/link.pcss +60 -0
  244. data/app/components/yattho/beta/link.rb +103 -0
  245. data/app/components/yattho/beta/markdown.rb +290 -0
  246. data/app/components/yattho/beta/octicon.html.erb +7 -0
  247. data/app/components/yattho/beta/octicon.rb +88 -0
  248. data/app/components/yattho/beta/popover.css +235 -0
  249. data/app/components/yattho/beta/popover.css.json +1 -0
  250. data/app/components/yattho/beta/popover.css.map +1 -0
  251. data/app/components/yattho/beta/popover.html.erb +6 -0
  252. data/app/components/yattho/beta/popover.pcss +225 -0
  253. data/app/components/yattho/beta/popover.rb +127 -0
  254. data/app/components/yattho/beta/progress_bar.css +26 -0
  255. data/app/components/yattho/beta/progress_bar.css.json +1 -0
  256. data/app/components/yattho/beta/progress_bar.css.map +1 -0
  257. data/app/components/yattho/beta/progress_bar.html.erb +5 -0
  258. data/app/components/yattho/beta/progress_bar.pcss +26 -0
  259. data/app/components/yattho/beta/progress_bar.rb +72 -0
  260. data/app/components/yattho/beta/relative_time.rb +166 -0
  261. data/app/components/yattho/beta/spinner.html.erb +4 -0
  262. data/app/components/yattho/beta/spinner.rb +45 -0
  263. data/app/components/yattho/beta/state.css +50 -0
  264. data/app/components/yattho/beta/state.css.json +1 -0
  265. data/app/components/yattho/beta/state.css.map +1 -0
  266. data/app/components/yattho/beta/state.pcss +50 -0
  267. data/app/components/yattho/beta/state.rb +76 -0
  268. data/app/components/yattho/beta/subhead.css +54 -0
  269. data/app/components/yattho/beta/subhead.css.json +1 -0
  270. data/app/components/yattho/beta/subhead.css.map +1 -0
  271. data/app/components/yattho/beta/subhead.html.erb +5 -0
  272. data/app/components/yattho/beta/subhead.pcss +49 -0
  273. data/app/components/yattho/beta/subhead.rb +135 -0
  274. data/app/components/yattho/beta/text.rb +27 -0
  275. data/app/components/yattho/beta/timeline_item.css +95 -0
  276. data/app/components/yattho/beta/timeline_item.css.json +1 -0
  277. data/app/components/yattho/beta/timeline_item.css.map +1 -0
  278. data/app/components/yattho/beta/timeline_item.html.erb +5 -0
  279. data/app/components/yattho/beta/timeline_item.pcss +93 -0
  280. data/app/components/yattho/beta/timeline_item.rb +90 -0
  281. data/app/components/yattho/beta/truncate.css +37 -0
  282. data/app/components/yattho/beta/truncate.css.json +1 -0
  283. data/app/components/yattho/beta/truncate.css.map +1 -0
  284. data/app/components/yattho/beta/truncate.html.erb +5 -0
  285. data/app/components/yattho/beta/truncate.pcss +31 -0
  286. data/app/components/yattho/beta/truncate.rb +114 -0
  287. data/app/components/yattho/blankslate_component.html.erb +25 -0
  288. data/app/components/yattho/blankslate_component.rb +156 -0
  289. data/app/components/yattho/box.rb +25 -0
  290. data/app/components/yattho/button_component.html.erb +12 -0
  291. data/app/components/yattho/button_component.rb +175 -0
  292. data/app/components/yattho/component.rb +139 -0
  293. data/app/components/yattho/conditional_wrapper.rb +36 -0
  294. data/app/components/yattho/content.rb +12 -0
  295. data/app/components/yattho/dropdown/menu.rb +14 -0
  296. data/app/components/yattho/dropdown.rb +7 -0
  297. data/app/components/yattho/hellip_button.rb +7 -0
  298. data/app/components/yattho/icon_button.html.erb +12 -0
  299. data/app/components/yattho/icon_button.rb +109 -0
  300. data/app/components/yattho/label_component.rb +7 -0
  301. data/app/components/yattho/layout_component.html.erb +9 -0
  302. data/app/components/yattho/layout_component.rb +71 -0
  303. data/app/components/yattho/link_component.rb +7 -0
  304. data/app/components/yattho/local_time.d.ts +1 -0
  305. data/app/components/yattho/local_time.js +1 -0
  306. data/app/components/yattho/local_time.rb +64 -0
  307. data/app/components/yattho/local_time.ts +1 -0
  308. data/app/components/yattho/markdown.rb +7 -0
  309. data/app/components/yattho/menu_component.rb +7 -0
  310. data/app/components/yattho/navigation/tab_component.html.erb +11 -0
  311. data/app/components/yattho/navigation/tab_component.rb +166 -0
  312. data/app/components/yattho/octicon_component.rb +7 -0
  313. data/app/components/yattho/octicon_symbols_component.rb +7 -0
  314. data/app/components/yattho/popover_component.rb +8 -0
  315. data/app/components/yattho/spinner_component.rb +7 -0
  316. data/app/components/yattho/state_component.rb +7 -0
  317. data/app/components/yattho/subhead_component.rb +7 -0
  318. data/app/components/yattho/tab_container_component.rb +7 -0
  319. data/app/components/yattho/time_ago_component.d.ts +1 -0
  320. data/app/components/yattho/time_ago_component.js +1 -0
  321. data/app/components/yattho/time_ago_component.rb +51 -0
  322. data/app/components/yattho/time_ago_component.ts +1 -0
  323. data/app/components/yattho/timeline_item_component.rb +13 -0
  324. data/app/components/yattho/tooltip.rb +91 -0
  325. data/app/components/yattho/truncate.css +30 -0
  326. data/app/components/yattho/truncate.css.json +1 -0
  327. data/app/components/yattho/truncate.css.map +1 -0
  328. data/app/components/yattho/truncate.pcss +30 -0
  329. data/app/components/yattho/truncate.rb +55 -0
  330. data/app/components/yattho/yattho.d.ts +16 -0
  331. data/app/components/yattho/yattho.js +16 -0
  332. data/app/components/yattho/yattho.pcss +37 -0
  333. data/app/components/yattho/yattho.ts +16 -0
  334. data/app/forms/after_content_form/after_content.html.erb +1 -0
  335. data/app/forms/after_content_form.rb +13 -0
  336. data/app/forms/application_form.rb +5 -0
  337. data/app/forms/array_check_box_group_form/places_lopez_caption.html.erb +1 -0
  338. data/app/forms/array_check_box_group_form.rb +15 -0
  339. data/app/forms/both_types_of_caption_form/first_name_caption.html.erb +1 -0
  340. data/app/forms/both_types_of_caption_form.rb +13 -0
  341. data/app/forms/caption_template_form/age_middle_aged_caption.html.erb +1 -0
  342. data/app/forms/caption_template_form/age_young_caption.html.erb +1 -0
  343. data/app/forms/caption_template_form/cool_caption.html.erb +1 -0
  344. data/app/forms/caption_template_form/first_name_caption.html.erb +1 -0
  345. data/app/forms/caption_template_form.rb +22 -0
  346. data/app/forms/check_box_group_form.rb +28 -0
  347. data/app/forms/check_box_with_nested_form.rb +39 -0
  348. data/app/forms/composed_form.rb +14 -0
  349. data/app/forms/example_toggle_switch_form/example_field_caption.html.erb +1 -0
  350. data/app/forms/example_toggle_switch_form.rb +8 -0
  351. data/app/forms/first_name_form.rb +13 -0
  352. data/app/forms/horizontal_form.rb +34 -0
  353. data/app/forms/immediate_validation_form.rb +29 -0
  354. data/app/forms/invalid_form.rb +21 -0
  355. data/app/forms/last_name_form.rb +13 -0
  356. data/app/forms/multi_input_form.rb +27 -0
  357. data/app/forms/multi_text_field_form.rb +27 -0
  358. data/app/forms/name_with_question_mark_form/enabled_caption.html.erb +1 -0
  359. data/app/forms/name_with_question_mark_form.rb +11 -0
  360. data/app/forms/radio_button_group_form.rb +12 -0
  361. data/app/forms/radio_button_with_nested_form.rb +40 -0
  362. data/app/forms/select_list_form.rb +13 -0
  363. data/app/forms/single_text_field_form.rb +13 -0
  364. data/app/forms/submit_button_form.rb +26 -0
  365. data/app/forms/text_field_and_checkbox_form.rb +19 -0
  366. data/app/helpers/yattho/form_helper.rb +23 -0
  367. data/app/lib/yattho/audited/dsl.rb +32 -0
  368. data/app/lib/yattho/class_name_helper.rb +29 -0
  369. data/app/lib/yattho/css/layout.css +1541 -0
  370. data/app/lib/yattho/css/layout.css.json +1 -0
  371. data/app/lib/yattho/css/utilities.css +7304 -0
  372. data/app/lib/yattho/css/utilities.css.json +1 -0
  373. data/app/lib/yattho/fetch_or_fallback_helper.rb +63 -0
  374. data/app/lib/yattho/join_style_arguments_helper.rb +14 -0
  375. data/app/lib/yattho/octicon/cache.rb +45 -0
  376. data/app/lib/yattho/status/dsl.rb +44 -0
  377. data/app/lib/yattho/tab_nav_helper.rb +35 -0
  378. data/app/lib/yattho/tabbed_component_helper.rb +44 -0
  379. data/app/lib/yattho/test_selector_helper.rb +20 -0
  380. data/app/lib/yattho/underline_nav_helper.rb +44 -0
  381. data/app/lib/yattho/view_helper.rb +22 -0
  382. data/lib/postcss_mixins/activeIndicatorLine.pcss +11 -0
  383. data/lib/postcss_mixins/clearfix.pcss +12 -0
  384. data/lib/postcss_mixins/focusBoxShadowInset.pcss +6 -0
  385. data/lib/postcss_mixins/focusOutline.pcss +5 -0
  386. data/lib/postcss_mixins/focusOutlineOnEmphasis.pcss +6 -0
  387. data/lib/postcss_mixins/minTouchTarget.js +20 -0
  388. data/lib/postcss_mixins/targetBoxShadow.pcss +7 -0
  389. data/lib/rubocop/config/default.yml +20 -0
  390. data/lib/rubocop/cop/yattho/base_cop.rb +28 -0
  391. data/lib/rubocop/cop/yattho/component_name_migration.rb +37 -0
  392. data/lib/rubocop/cop/yattho/deprecated_arguments.rb +317 -0
  393. data/lib/rubocop/cop/yattho/deprecated_button_arguments.rb +51 -0
  394. data/lib/rubocop/cop/yattho/deprecated_components.rb +49 -0
  395. data/lib/rubocop/cop/yattho/deprecated_label_schemes.rb +68 -0
  396. data/lib/rubocop/cop/yattho/deprecated_label_variants.rb +73 -0
  397. data/lib/rubocop/cop/yattho/deprecated_layout_component.rb +30 -0
  398. data/lib/rubocop/cop/yattho/no_tag_memoize.rb +43 -0
  399. data/lib/rubocop/cop/yattho/system_argument_instead_of_class.rb +57 -0
  400. data/lib/rubocop/cop/yattho/test_selector.rb +48 -0
  401. data/lib/rubocop/cop/yattho/yattho_octicon.rb +219 -0
  402. data/lib/rubocop/cop/yattho.rb +3 -0
  403. data/lib/tasks/custom_utilities.yml +310 -0
  404. data/lib/tasks/docs.rake +541 -0
  405. data/lib/tasks/helpers/ast_processor.rb +44 -0
  406. data/lib/tasks/helpers/ast_traverser.rb +77 -0
  407. data/lib/tasks/static.rake +15 -0
  408. data/lib/tasks/test.rake +83 -0
  409. data/lib/tasks/utilities.rake +109 -0
  410. data/lib/tasks/yattho_view_components.rake +47 -0
  411. data/lib/yattho/classify/utilities.rb +204 -0
  412. data/lib/yattho/classify/utilities.yml +1817 -0
  413. data/lib/yattho/classify/validation.rb +18 -0
  414. data/lib/yattho/classify.rb +135 -0
  415. data/lib/yattho/deprecations.rb +99 -0
  416. data/lib/yattho/deprecations.yml +109 -0
  417. data/lib/yattho/example_image.rb +8 -0
  418. data/lib/yattho/form_components.rb +37 -0
  419. data/lib/yattho/forms/acts_as_component.rb +118 -0
  420. data/lib/yattho/forms/base.html.erb +8 -0
  421. data/lib/yattho/forms/base.rb +133 -0
  422. data/lib/yattho/forms/base_component.rb +76 -0
  423. data/lib/yattho/forms/buffer_rewriter.rb +51 -0
  424. data/lib/yattho/forms/builder.rb +87 -0
  425. data/lib/yattho/forms/button.html.erb +4 -0
  426. data/lib/yattho/forms/button.rb +68 -0
  427. data/lib/yattho/forms/caption.html.erb +10 -0
  428. data/lib/yattho/forms/caption.rb +29 -0
  429. data/lib/yattho/forms/check_box.html.erb +16 -0
  430. data/lib/yattho/forms/check_box.rb +46 -0
  431. data/lib/yattho/forms/check_box_group.html.erb +12 -0
  432. data/lib/yattho/forms/check_box_group.rb +14 -0
  433. data/lib/yattho/forms/dsl/button_input.rb +29 -0
  434. data/lib/yattho/forms/dsl/check_box_group_input.rb +54 -0
  435. data/lib/yattho/forms/dsl/check_box_input.rb +54 -0
  436. data/lib/yattho/forms/dsl/form_object.rb +25 -0
  437. data/lib/yattho/forms/dsl/form_reference_input.rb +59 -0
  438. data/lib/yattho/forms/dsl/hidden_input.rb +29 -0
  439. data/lib/yattho/forms/dsl/input.rb +282 -0
  440. data/lib/yattho/forms/dsl/input_group.rb +34 -0
  441. data/lib/yattho/forms/dsl/input_methods.rb +91 -0
  442. data/lib/yattho/forms/dsl/multi_input.rb +55 -0
  443. data/lib/yattho/forms/dsl/radio_button_group_input.rb +38 -0
  444. data/lib/yattho/forms/dsl/radio_button_input.rb +37 -0
  445. data/lib/yattho/forms/dsl/select_list_input.rb +61 -0
  446. data/lib/yattho/forms/dsl/submit_button_input.rb +29 -0
  447. data/lib/yattho/forms/dsl/text_area_input.rb +33 -0
  448. data/lib/yattho/forms/dsl/text_field_input.rb +88 -0
  449. data/lib/yattho/forms/dsl/toggle_switch_input.rb +35 -0
  450. data/lib/yattho/forms/form_control.html.erb +22 -0
  451. data/lib/yattho/forms/form_control.rb +25 -0
  452. data/lib/yattho/forms/form_list.html.erb +5 -0
  453. data/lib/yattho/forms/form_list.rb +21 -0
  454. data/lib/yattho/forms/form_reference.html.erb +3 -0
  455. data/lib/yattho/forms/form_reference.rb +18 -0
  456. data/lib/yattho/forms/group.html.erb +5 -0
  457. data/lib/yattho/forms/group.rb +27 -0
  458. data/lib/yattho/forms/hidden_field.html.erb +1 -0
  459. data/lib/yattho/forms/hidden_field.rb +15 -0
  460. data/lib/yattho/forms/multi.html.erb +7 -0
  461. data/lib/yattho/forms/multi.rb +14 -0
  462. data/lib/yattho/forms/radio_button.html.erb +16 -0
  463. data/lib/yattho/forms/radio_button.rb +29 -0
  464. data/lib/yattho/forms/radio_button_group.html.erb +12 -0
  465. data/lib/yattho/forms/radio_button_group.rb +14 -0
  466. data/lib/yattho/forms/select_list.html.erb +5 -0
  467. data/lib/yattho/forms/select_list.rb +29 -0
  468. data/lib/yattho/forms/separator.html.erb +1 -0
  469. data/lib/yattho/forms/separator.rb +8 -0
  470. data/lib/yattho/forms/spacing_wrapper.html.erb +3 -0
  471. data/lib/yattho/forms/spacing_wrapper.rb +8 -0
  472. data/lib/yattho/forms/submit_button.html.erb +1 -0
  473. data/lib/yattho/forms/submit_button.rb +14 -0
  474. data/lib/yattho/forms/text_area.html.erb +5 -0
  475. data/lib/yattho/forms/text_area.rb +20 -0
  476. data/lib/yattho/forms/text_field.html.erb +19 -0
  477. data/lib/yattho/forms/text_field.rb +36 -0
  478. data/lib/yattho/forms/toggle_switch.html.erb +22 -0
  479. data/lib/yattho/forms/toggle_switch.rb +17 -0
  480. data/lib/yattho/forms/toggle_switch_form.rb +74 -0
  481. data/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
  482. data/lib/yattho/forms/toggle_switch_input.js +29 -0
  483. data/lib/yattho/forms/toggle_switch_input.ts +19 -0
  484. data/lib/yattho/forms/utils.rb +28 -0
  485. data/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
  486. data/lib/yattho/forms/yattho_multi_input.js +45 -0
  487. data/lib/yattho/forms/yattho_multi_input.ts +46 -0
  488. data/lib/yattho/forms/yattho_text_field.d.ts +1 -0
  489. data/lib/yattho/forms/yattho_text_field.js +62 -0
  490. data/lib/yattho/forms/yattho_text_field.ts +48 -0
  491. data/lib/yattho/view_components/audited.rb +14 -0
  492. data/lib/yattho/view_components/constants.rb +55 -0
  493. data/lib/yattho/view_components/engine.rb +69 -0
  494. data/lib/yattho/view_components/linters/argument_mappers/base.rb +103 -0
  495. data/lib/yattho/view_components/linters/argument_mappers/button.rb +75 -0
  496. data/lib/yattho/view_components/linters/argument_mappers/clipboard_copy.rb +21 -0
  497. data/lib/yattho/view_components/linters/argument_mappers/close_button.rb +46 -0
  498. data/lib/yattho/view_components/linters/argument_mappers/conversion_error.rb +10 -0
  499. data/lib/yattho/view_components/linters/argument_mappers/flash.rb +32 -0
  500. data/lib/yattho/view_components/linters/argument_mappers/helpers/erb_block.rb +68 -0
  501. data/lib/yattho/view_components/linters/argument_mappers/label.rb +56 -0
  502. data/lib/yattho/view_components/linters/argument_mappers/system_arguments.rb +48 -0
  503. data/lib/yattho/view_components/linters/autocorrectable.rb +32 -0
  504. data/lib/yattho/view_components/linters/base_linter.rb +208 -0
  505. data/lib/yattho/view_components/linters/blankslate_api_migration.rb +153 -0
  506. data/lib/yattho/view_components/linters/blankslate_component_migration_counter.rb +14 -0
  507. data/lib/yattho/view_components/linters/breadcrumbs_component_migration_counter.rb +14 -0
  508. data/lib/yattho/view_components/linters/button_component_migration_counter.rb +26 -0
  509. data/lib/yattho/view_components/linters/clipboard_copy_component_migration_counter.rb +20 -0
  510. data/lib/yattho/view_components/linters/close_button_component_migration_counter.rb +121 -0
  511. data/lib/yattho/view_components/linters/deprecated_components_counter.rb +60 -0
  512. data/lib/yattho/view_components/linters/disallow_action_list.rb +73 -0
  513. data/lib/yattho/view_components/linters/flash_migration_counter.rb +36 -0
  514. data/lib/yattho/view_components/linters/helpers/deprecated_components_helpers.rb +20 -0
  515. data/lib/yattho/view_components/linters/helpers/rubocop_helpers.rb +14 -0
  516. data/lib/yattho/view_components/linters/label_component_migration_counter.rb +24 -0
  517. data/lib/yattho/view_components/linters/migrate_deprecated_flash_arguments.rb +140 -0
  518. data/lib/yattho/view_components/linters/severity_schema.rb +14 -0
  519. data/lib/yattho/view_components/linters/subhead_component_migration_counter.rb +14 -0
  520. data/lib/yattho/view_components/linters/super_in_component_templates.rb +65 -0
  521. data/lib/yattho/view_components/linters/tag_tree_helpers.rb +61 -0
  522. data/lib/yattho/view_components/linters/two_column_layout_migration_counter.rb +158 -0
  523. data/lib/yattho/view_components/linters.rb +3 -0
  524. data/lib/yattho/view_components/statuses.rb +14 -0
  525. data/lib/yattho/view_components/version.rb +18 -0
  526. data/lib/yattho/view_components.rb +63 -0
  527. data/lib/yattho/yard/backend.rb +38 -0
  528. data/lib/yattho/yard/component_manifest.rb +123 -0
  529. data/lib/yattho/yard/docs_helper.rb +81 -0
  530. data/lib/yattho/yard/legacy_gatsby_backend.rb +271 -0
  531. data/lib/yattho/yard/registry.rb +146 -0
  532. data/lib/yattho/yard/renders_many_handler.rb +23 -0
  533. data/lib/yattho/yard/renders_one_handler.rb +23 -0
  534. data/previews/docs/alpha_auto_complete_item_preview/default.html.erb +10 -0
  535. data/previews/docs/alpha_auto_complete_item_preview.rb +7 -0
  536. data/previews/docs/alpha_auto_complete_preview/default.html.erb +1 -0
  537. data/previews/docs/alpha_auto_complete_preview/with_clear_button.html.erb +1 -0
  538. data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
  539. data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_results.html.erb +10 -0
  540. data/previews/docs/alpha_auto_complete_preview/with_icon.html.erb +1 -0
  541. data/previews/docs/alpha_auto_complete_preview/with_icon_and_non_visible_label.html.erb +1 -0
  542. data/previews/docs/alpha_auto_complete_preview/with_inline_label.html.erb +1 -0
  543. data/previews/docs/alpha_auto_complete_preview/with_non_visible_label.html.erb +1 -0
  544. data/previews/docs/alpha_auto_complete_preview.rb +21 -0
  545. data/previews/docs/alpha_banner_preview/custom_icon.html.erb +1 -0
  546. data/previews/docs/alpha_banner_preview/dismissible.html.erb +1 -0
  547. data/previews/docs/alpha_banner_preview/full_width.html.erb +1 -0
  548. data/previews/docs/alpha_banner_preview/schemes.html.erb +6 -0
  549. data/previews/docs/alpha_banner_preview/with_action_button.html.erb +4 -0
  550. data/previews/docs/alpha_banner_preview/with_custom_action.html.erb +6 -0
  551. data/previews/docs/alpha_banner_preview.rb +17 -0
  552. data/previews/docs/alpha_button_marketing_preview/schemes.html.erb +6 -0
  553. data/previews/docs/alpha_button_marketing_preview/sizes.html.erb +2 -0
  554. data/previews/docs/alpha_button_marketing_preview.rb +9 -0
  555. data/previews/docs/alpha_dialog_preview/dialog_with_cancel_and_submit_buttons.html.erb +13 -0
  556. data/previews/docs/alpha_dialog_preview.rb +7 -0
  557. data/previews/docs/alpha_dropdown_preview/customizing_menu_items.html.erb +11 -0
  558. data/previews/docs/alpha_dropdown_preview/customizing_the_button.html.erb +12 -0
  559. data/previews/docs/alpha_dropdown_preview/default.html.erb +11 -0
  560. data/previews/docs/alpha_dropdown_preview/menu_as_list.html.erb +13 -0
  561. data/previews/docs/alpha_dropdown_preview/with_caret.html.erb +12 -0
  562. data/previews/docs/alpha_dropdown_preview/with_direction.html.erb +12 -0
  563. data/previews/docs/alpha_dropdown_preview/with_dividers.html.erb +16 -0
  564. data/previews/docs/alpha_dropdown_preview.rb +19 -0
  565. data/previews/docs/alpha_hellip_button_preview/default.html.erb +1 -0
  566. data/previews/docs/alpha_hellip_button_preview/inline.html.erb +1 -0
  567. data/previews/docs/alpha_hellip_button_preview/styling_the_button.html.erb +1 -0
  568. data/previews/docs/alpha_hellip_button_preview.rb +11 -0
  569. data/previews/docs/alpha_hidden_text_expander_preview/default.html.erb +1 -0
  570. data/previews/docs/alpha_hidden_text_expander_preview/inline.html.erb +1 -0
  571. data/previews/docs/alpha_hidden_text_expander_preview/styling_the_button.html.erb +1 -0
  572. data/previews/docs/alpha_hidden_text_expander_preview.rb +11 -0
  573. data/previews/docs/alpha_image_crop_preview/cropper_with_a_custom_loader.html.erb +3 -0
  574. data/previews/docs/alpha_image_crop_preview/simple_cropper.html.erb +1 -0
  575. data/previews/docs/alpha_image_crop_preview/square_cropper.html.erb +1 -0
  576. data/previews/docs/alpha_image_crop_preview.rb +11 -0
  577. data/previews/docs/alpha_image_preview/custom_size.html.erb +2 -0
  578. data/previews/docs/alpha_image_preview/default.html.erb +2 -0
  579. data/previews/docs/alpha_image_preview/helper.html.erb +2 -0
  580. data/previews/docs/alpha_image_preview/lazy_loading.html.erb +2 -0
  581. data/previews/docs/alpha_image_preview.rb +13 -0
  582. data/previews/docs/alpha_layout_preview/changing_when_to_render_layout_as_columns.html.erb +12 -0
  583. data/previews/docs/alpha_layout_preview/default.html.erb +5 -0
  584. data/previews/docs/alpha_layout_preview/main_widths.html.erb +16 -0
  585. data/previews/docs/alpha_layout_preview/sidebar_placement.html.erb +8 -0
  586. data/previews/docs/alpha_layout_preview/sidebar_placement_as_row.html.erb +12 -0
  587. data/previews/docs/alpha_layout_preview/sidebar_widths.html.erb +12 -0
  588. data/previews/docs/alpha_layout_preview.rb +17 -0
  589. data/previews/docs/alpha_menu_preview/default.html.erb +17 -0
  590. data/previews/docs/alpha_menu_preview.rb +7 -0
  591. data/previews/docs/alpha_nav_list_preview/expandable_sub_items.html.erb +24 -0
  592. data/previews/docs/alpha_nav_list_preview/items_and_headings.html.erb +12 -0
  593. data/previews/docs/alpha_nav_list_preview/leading_and_trailing_visuals.html.erb +17 -0
  594. data/previews/docs/alpha_nav_list_preview/trailing_action.html.erb +12 -0
  595. data/previews/docs/alpha_nav_list_preview.rb +13 -0
  596. data/previews/docs/alpha_octicon_symbols_preview/symbol_dictionary.html.erb +4 -0
  597. data/previews/docs/alpha_octicon_symbols_preview.rb +7 -0
  598. data/previews/docs/alpha_segmented_control_preview/basic_usage.html.erb +6 -0
  599. data/previews/docs/alpha_segmented_control_preview/fill_width_of_parent.html.erb +5 -0
  600. data/previews/docs/alpha_segmented_control_preview/small.html.erb +6 -0
  601. data/previews/docs/alpha_segmented_control_preview/with_icons.html.erb +5 -0
  602. data/previews/docs/alpha_segmented_control_preview/with_icons_only.html.erb +5 -0
  603. data/previews/docs/alpha_segmented_control_preview.rb +15 -0
  604. data/previews/docs/alpha_tab_container_preview/default.html.erb +16 -0
  605. data/previews/docs/alpha_tab_container_preview.rb +7 -0
  606. data/previews/docs/alpha_tab_nav_preview/adding_extra_content_after_the_tabs.html.erb +10 -0
  607. data/previews/docs/alpha_tab_nav_preview/customizing_the_body.html.erb +5 -0
  608. data/previews/docs/alpha_tab_nav_preview/default_with_div.html.erb +5 -0
  609. data/previews/docs/alpha_tab_nav_preview/default_with_nav.html.erb +5 -0
  610. data/previews/docs/alpha_tab_nav_preview/with_extra_content.html.erb +8 -0
  611. data/previews/docs/alpha_tab_nav_preview/with_icons_and_counters.html.erb +15 -0
  612. data/previews/docs/alpha_tab_nav_preview.rb +17 -0
  613. data/previews/docs/alpha_tab_panels_preview/default.html.erb +14 -0
  614. data/previews/docs/alpha_tab_panels_preview.rb +7 -0
  615. data/previews/docs/alpha_text_field_preview/default.html.erb +1 -0
  616. data/previews/docs/alpha_text_field_preview/disabled.html.erb +7 -0
  617. data/previews/docs/alpha_text_field_preview/full_width.html.erb +7 -0
  618. data/previews/docs/alpha_text_field_preview/invalid.html.erb +7 -0
  619. data/previews/docs/alpha_text_field_preview/with_a_caption.html.erb +7 -0
  620. data/previews/docs/alpha_text_field_preview/with_a_clear_button.html.erb +7 -0
  621. data/previews/docs/alpha_text_field_preview/with_a_leading_visual.html.erb +9 -0
  622. data/previews/docs/alpha_text_field_preview/with_a_validation_message.html.erb +7 -0
  623. data/previews/docs/alpha_text_field_preview.rb +21 -0
  624. data/previews/docs/alpha_toggle_switch_preview/checked.html.erb +1 -0
  625. data/previews/docs/alpha_toggle_switch_preview/checked_and_disabled.html.erb +1 -0
  626. data/previews/docs/alpha_toggle_switch_preview/default.html.erb +1 -0
  627. data/previews/docs/alpha_toggle_switch_preview/disabled.html.erb +1 -0
  628. data/previews/docs/alpha_toggle_switch_preview/small.html.erb +1 -0
  629. data/previews/docs/alpha_toggle_switch_preview/with_status_label_positioned_at_the_end.html.erb +1 -0
  630. data/previews/docs/alpha_toggle_switch_preview.rb +17 -0
  631. data/previews/docs/alpha_tooltip_preview/as_a_label_for_an_iconbutton.html.erb +1 -0
  632. data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_a_button.html.erb +4 -0
  633. data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_an_iconbutton.html.erb +1 -0
  634. data/previews/docs/alpha_tooltip_preview/directly_using_tooltip.html.erb +4 -0
  635. data/previews/docs/alpha_tooltip_preview/with_direction.html.erb +32 -0
  636. data/previews/docs/alpha_tooltip_preview.rb +15 -0
  637. data/previews/docs/alpha_underline_nav_preview/align_right.html.erb +11 -0
  638. data/previews/docs/alpha_underline_nav_preview/customizing_the_body.html.erb +5 -0
  639. data/previews/docs/alpha_underline_nav_preview/default_with_nav.html.erb +7 -0
  640. data/previews/docs/alpha_underline_nav_preview/with_div.html.erb +7 -0
  641. data/previews/docs/alpha_underline_nav_preview/with_icons_and_counters.html.erb +18 -0
  642. data/previews/docs/alpha_underline_nav_preview.rb +15 -0
  643. data/previews/docs/alpha_underline_panels_preview/default.html.erb +17 -0
  644. data/previews/docs/alpha_underline_panels_preview.rb +7 -0
  645. data/previews/docs/beta_auto_complete_item_preview/default.html.erb +6 -0
  646. data/previews/docs/beta_auto_complete_item_preview.rb +7 -0
  647. data/previews/docs/beta_auto_complete_preview/full_width_field.html.erb +3 -0
  648. data/previews/docs/beta_auto_complete_preview/inset_variant.html.erb +3 -0
  649. data/previews/docs/beta_auto_complete_preview/leading_visual.html.erb +3 -0
  650. data/previews/docs/beta_auto_complete_preview/monospace_variant.html.erb +3 -0
  651. data/previews/docs/beta_auto_complete_preview/trailing_action.html.erb +1 -0
  652. data/previews/docs/beta_auto_complete_preview/visually_hidden_label.html.erb +3 -0
  653. data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
  654. data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_results.html.erb +3 -0
  655. data/previews/docs/beta_auto_complete_preview.rb +21 -0
  656. data/previews/docs/beta_avatar_preview/default.html.erb +1 -0
  657. data/previews/docs/beta_avatar_preview/link.html.erb +1 -0
  658. data/previews/docs/beta_avatar_preview/square.html.erb +1 -0
  659. data/previews/docs/beta_avatar_preview/with_size.html.erb +7 -0
  660. data/previews/docs/beta_avatar_preview.rb +13 -0
  661. data/previews/docs/beta_avatar_stack_preview/align_right.html.erb +5 -0
  662. data/previews/docs/beta_avatar_stack_preview/default.html.erb +5 -0
  663. data/previews/docs/beta_avatar_stack_preview/with_tooltip.html.erb +5 -0
  664. data/previews/docs/beta_avatar_stack_preview.rb +11 -0
  665. data/previews/docs/beta_base_button_preview/block.html.erb +2 -0
  666. data/previews/docs/beta_base_button_preview.rb +7 -0
  667. data/previews/docs/beta_blankslate_preview/basic.html.erb +4 -0
  668. data/previews/docs/beta_blankslate_preview/custom_content.html.erb +6 -0
  669. data/previews/docs/beta_blankslate_preview/icon.html.erb +5 -0
  670. data/previews/docs/beta_blankslate_preview/loading.html.erb +5 -0
  671. data/previews/docs/beta_blankslate_preview/primary_action.html.erb +6 -0
  672. data/previews/docs/beta_blankslate_preview/primary_and_secondary_actions.html.erb +7 -0
  673. data/previews/docs/beta_blankslate_preview/secondary_action.html.erb +6 -0
  674. data/previews/docs/beta_blankslate_preview/using_an_image.html.erb +5 -0
  675. data/previews/docs/beta_blankslate_preview/variations.html.erb +8 -0
  676. data/previews/docs/beta_blankslate_preview/with_border.html.erb +5 -0
  677. data/previews/docs/beta_blankslate_preview.rb +25 -0
  678. data/previews/docs/beta_border_box_header_preview/default.html.erb +4 -0
  679. data/previews/docs/beta_border_box_header_preview/with_title.html.erb +3 -0
  680. data/previews/docs/beta_border_box_header_preview.rb +9 -0
  681. data/previews/docs/beta_border_box_preview/header_with_title_body_rows_and_footer.html.erb +21 -0
  682. data/previews/docs/beta_border_box_preview/padding_density.html.erb +14 -0
  683. data/previews/docs/beta_border_box_preview/row_colors.html.erb +14 -0
  684. data/previews/docs/beta_border_box_preview.rb +11 -0
  685. data/previews/docs/beta_breadcrumbs_preview/basic.html.erb +5 -0
  686. data/previews/docs/beta_breadcrumbs_preview.rb +7 -0
  687. data/previews/docs/beta_button_group_preview/default.html.erb +8 -0
  688. data/previews/docs/beta_button_group_preview/sizes.html.erb +7 -0
  689. data/previews/docs/beta_button_group_preview.rb +9 -0
  690. data/previews/docs/beta_button_preview/full_width.html.erb +2 -0
  691. data/previews/docs/beta_button_preview/schemes.html.erb +4 -0
  692. data/previews/docs/beta_button_preview/sizes.html.erb +2 -0
  693. data/previews/docs/beta_button_preview/with_leading_and_trailing_visuals.html.erb +5 -0
  694. data/previews/docs/beta_button_preview/with_leading_visual.html.erb +4 -0
  695. data/previews/docs/beta_button_preview/with_tooltip.html.erb +4 -0
  696. data/previews/docs/beta_button_preview/with_trailing_visual.html.erb +4 -0
  697. data/previews/docs/beta_button_preview.rb +19 -0
  698. data/previews/docs/beta_clipboard_copy_preview/copying_from_an_element.html.erb +2 -0
  699. data/previews/docs/beta_clipboard_copy_preview/default.html.erb +1 -0
  700. data/previews/docs/beta_clipboard_copy_preview/with_text_instead_of_icons.html.erb +3 -0
  701. data/previews/docs/beta_clipboard_copy_preview.rb +11 -0
  702. data/previews/docs/beta_close_button_preview/default.html.erb +1 -0
  703. data/previews/docs/beta_close_button_preview.rb +7 -0
  704. data/previews/docs/beta_counter_preview/default.html.erb +1 -0
  705. data/previews/docs/beta_counter_preview/schemes.html.erb +2 -0
  706. data/previews/docs/beta_counter_preview.rb +9 -0
  707. data/previews/docs/beta_details_preview/default.html.erb +9 -0
  708. data/previews/docs/beta_details_preview.rb +7 -0
  709. data/previews/docs/beta_flash_preview/dismissible.html.erb +1 -0
  710. data/previews/docs/beta_flash_preview/full_width.html.erb +1 -0
  711. data/previews/docs/beta_flash_preview/icon.html.erb +1 -0
  712. data/previews/docs/beta_flash_preview/schemes.html.erb +4 -0
  713. data/previews/docs/beta_flash_preview/with_actions.html.erb +6 -0
  714. data/previews/docs/beta_flash_preview.rb +15 -0
  715. data/previews/docs/beta_heading_preview/default.html.erb +6 -0
  716. data/previews/docs/beta_heading_preview.rb +7 -0
  717. data/previews/docs/beta_icon_button_preview/custom_tooltip_direction.html.erb +2 -0
  718. data/previews/docs/beta_icon_button_preview/default.html.erb +2 -0
  719. data/previews/docs/beta_icon_button_preview/schemes.html.erb +3 -0
  720. data/previews/docs/beta_icon_button_preview/with_an_aria_description.html.erb +1 -0
  721. data/previews/docs/beta_icon_button_preview.rb +13 -0
  722. data/previews/docs/beta_label_preview/inline.html.erb +2 -0
  723. data/previews/docs/beta_label_preview/schemes.html.erb +10 -0
  724. data/previews/docs/beta_label_preview/sizes.html.erb +2 -0
  725. data/previews/docs/beta_label_preview.rb +11 -0
  726. data/previews/docs/beta_link_preview/default.html.erb +1 -0
  727. data/previews/docs/beta_link_preview/muted.html.erb +1 -0
  728. data/previews/docs/beta_link_preview/schemes.html.erb +2 -0
  729. data/previews/docs/beta_link_preview/with_tooltip.html.erb +4 -0
  730. data/previews/docs/beta_link_preview/without_underline.html.erb +1 -0
  731. data/previews/docs/beta_link_preview.rb +15 -0
  732. data/previews/docs/beta_markdown_preview/default.html.erb +260 -0
  733. data/previews/docs/beta_markdown_preview.rb +7 -0
  734. data/previews/docs/beta_octicon_preview/default.html.erb +2 -0
  735. data/previews/docs/beta_octicon_preview/helper.html.erb +1 -0
  736. data/previews/docs/beta_octicon_preview/medium.html.erb +1 -0
  737. data/previews/docs/beta_octicon_preview.rb +11 -0
  738. data/previews/docs/beta_popover_preview/caret_position.html.erb +8 -0
  739. data/previews/docs/beta_popover_preview/default.html.erb +8 -0
  740. data/previews/docs/beta_popover_preview/large.html.erb +8 -0
  741. data/previews/docs/beta_popover_preview/with_multiple_elements_in_the_body.html.erb +11 -0
  742. data/previews/docs/beta_popover_preview.rb +13 -0
  743. data/previews/docs/beta_progress_bar_preview/default.html.erb +3 -0
  744. data/previews/docs/beta_progress_bar_preview/large.html.erb +3 -0
  745. data/previews/docs/beta_progress_bar_preview/multiple_items.html.erb +5 -0
  746. data/previews/docs/beta_progress_bar_preview/small.html.erb +3 -0
  747. data/previews/docs/beta_progress_bar_preview.rb +13 -0
  748. data/previews/docs/beta_relative_time_preview/default.html.erb +1 -0
  749. data/previews/docs/beta_relative_time_preview/elapsed_time.html.erb +1 -0
  750. data/previews/docs/beta_relative_time_preview/past_time.html.erb +1 -0
  751. data/previews/docs/beta_relative_time_preview.rb +11 -0
  752. data/previews/docs/beta_spinner_preview/default.html.erb +1 -0
  753. data/previews/docs/beta_spinner_preview/large.html.erb +1 -0
  754. data/previews/docs/beta_spinner_preview/small.html.erb +1 -0
  755. data/previews/docs/beta_spinner_preview.rb +11 -0
  756. data/previews/docs/beta_state_preview/default.html.erb +1 -0
  757. data/previews/docs/beta_state_preview/schemes.html.erb +4 -0
  758. data/previews/docs/beta_state_preview/sizes.html.erb +2 -0
  759. data/previews/docs/beta_state_preview.rb +11 -0
  760. data/previews/docs/beta_subhead_preview/default.html.erb +8 -0
  761. data/previews/docs/beta_subhead_preview/with_actions.html.erb +15 -0
  762. data/previews/docs/beta_subhead_preview/with_dangerous_heading.html.erb +8 -0
  763. data/previews/docs/beta_subhead_preview/with_long_description.html.erb +6 -0
  764. data/previews/docs/beta_subhead_preview/without_border.html.erb +8 -0
  765. data/previews/docs/beta_subhead_preview.rb +15 -0
  766. data/previews/docs/beta_text_preview/default.html.erb +2 -0
  767. data/previews/docs/beta_text_preview.rb +7 -0
  768. data/previews/docs/beta_timeline_item_preview/default.html.erb +7 -0
  769. data/previews/docs/beta_timeline_item_preview.rb +7 -0
  770. data/previews/docs/beta_truncate_preview/advanced_multiple_items.html.erb +9 -0
  771. data/previews/docs/beta_truncate_preview/default.html.erb +1 -0
  772. data/previews/docs/beta_truncate_preview/expand_on_hover_or_focus.html.erb +6 -0
  773. data/previews/docs/beta_truncate_preview/max_widths.html.erb +5 -0
  774. data/previews/docs/beta_truncate_preview/max_widths_on_new_lines.html.erb +11 -0
  775. data/previews/docs/beta_truncate_preview/multiple_items.html.erb +6 -0
  776. data/previews/docs/beta_truncate_preview.rb +17 -0
  777. data/previews/docs/blankslate_component_preview/action_button.html.erb +8 -0
  778. data/previews/docs/blankslate_component_preview/basic.html.erb +4 -0
  779. data/previews/docs/blankslate_component_preview/custom_content.html.erb +5 -0
  780. data/previews/docs/blankslate_component_preview/icon.html.erb +5 -0
  781. data/previews/docs/blankslate_component_preview/link.html.erb +7 -0
  782. data/previews/docs/blankslate_component_preview/loading.html.erb +6 -0
  783. data/previews/docs/blankslate_component_preview/variations.html.erb +8 -0
  784. data/previews/docs/blankslate_component_preview.rb +19 -0
  785. data/previews/docs/box_preview/color_and_padding.html.erb +1 -0
  786. data/previews/docs/box_preview/default.html.erb +1 -0
  787. data/previews/docs/box_preview.rb +9 -0
  788. data/previews/docs/button_component_preview/block.html.erb +2 -0
  789. data/previews/docs/button_component_preview/schemes.html.erb +6 -0
  790. data/previews/docs/button_component_preview/sizes.html.erb +2 -0
  791. data/previews/docs/button_component_preview/with_dropdown_caret.html.erb +3 -0
  792. data/previews/docs/button_component_preview/with_leading_and_trailing_visuals.html.erb +5 -0
  793. data/previews/docs/button_component_preview/with_leading_visual.html.erb +4 -0
  794. data/previews/docs/button_component_preview/with_tooltip.html.erb +4 -0
  795. data/previews/docs/button_component_preview/with_trailing_visual.html.erb +4 -0
  796. data/previews/docs/button_component_preview.rb +21 -0
  797. data/previews/docs/dropdown_preview/customizing_menu_items.html.erb +11 -0
  798. data/previews/docs/dropdown_preview/customizing_the_button.html.erb +12 -0
  799. data/previews/docs/dropdown_preview/default.html.erb +11 -0
  800. data/previews/docs/dropdown_preview/menu_as_list.html.erb +13 -0
  801. data/previews/docs/dropdown_preview/with_caret.html.erb +12 -0
  802. data/previews/docs/dropdown_preview/with_direction.html.erb +12 -0
  803. data/previews/docs/dropdown_preview/with_dividers.html.erb +16 -0
  804. data/previews/docs/dropdown_preview.rb +19 -0
  805. data/previews/docs/hellip_button_preview/default.html.erb +1 -0
  806. data/previews/docs/hellip_button_preview/inline.html.erb +1 -0
  807. data/previews/docs/hellip_button_preview/styling_the_button.html.erb +1 -0
  808. data/previews/docs/hellip_button_preview.rb +11 -0
  809. data/previews/docs/icon_button_preview/custom_tooltip_direction.html.erb +2 -0
  810. data/previews/docs/icon_button_preview/default.html.erb +2 -0
  811. data/previews/docs/icon_button_preview/in_a_borderbox.html.erb +7 -0
  812. data/previews/docs/icon_button_preview/schemes.html.erb +3 -0
  813. data/previews/docs/icon_button_preview/with_an_aria_description.html.erb +1 -0
  814. data/previews/docs/icon_button_preview.rb +15 -0
  815. data/previews/docs/label_component_preview/inline.html.erb +2 -0
  816. data/previews/docs/label_component_preview/schemes.html.erb +10 -0
  817. data/previews/docs/label_component_preview/sizes.html.erb +2 -0
  818. data/previews/docs/label_component_preview.rb +11 -0
  819. data/previews/docs/layout_component_preview/default.html.erb +4 -0
  820. data/previews/docs/layout_component_preview/left_sidebar.html.erb +4 -0
  821. data/previews/docs/layout_component_preview.rb +9 -0
  822. data/previews/docs/link_component_preview/default.html.erb +1 -0
  823. data/previews/docs/link_component_preview/muted.html.erb +1 -0
  824. data/previews/docs/link_component_preview/schemes.html.erb +2 -0
  825. data/previews/docs/link_component_preview/with_tooltip.html.erb +4 -0
  826. data/previews/docs/link_component_preview/without_underline.html.erb +1 -0
  827. data/previews/docs/link_component_preview.rb +15 -0
  828. data/previews/docs/local_time_preview/all_the_options.html.erb +1 -0
  829. data/previews/docs/local_time_preview/default.html.erb +1 -0
  830. data/previews/docs/local_time_preview/with_initial_content.html.erb +4 -0
  831. data/previews/docs/local_time_preview.rb +11 -0
  832. data/previews/docs/markdown_preview/default.html.erb +260 -0
  833. data/previews/docs/markdown_preview.rb +7 -0
  834. data/previews/docs/menu_component_preview/default.html.erb +17 -0
  835. data/previews/docs/menu_component_preview.rb +7 -0
  836. data/previews/docs/navigation_tab_component_preview/default.html.erb +6 -0
  837. data/previews/docs/navigation_tab_component_preview/inside_a_list.html.erb +3 -0
  838. data/previews/docs/navigation_tab_component_preview/with_custom_html.html.erb +5 -0
  839. data/previews/docs/navigation_tab_component_preview/with_icons_and_counters.html.erb +13 -0
  840. data/previews/docs/navigation_tab_component_preview.rb +13 -0
  841. data/previews/docs/octicon_component_preview/default.html.erb +2 -0
  842. data/previews/docs/octicon_component_preview/helper.html.erb +1 -0
  843. data/previews/docs/octicon_component_preview/medium.html.erb +1 -0
  844. data/previews/docs/octicon_component_preview.rb +11 -0
  845. data/previews/docs/octicon_symbols_component_preview/symbol_dictionary.html.erb +4 -0
  846. data/previews/docs/octicon_symbols_component_preview.rb +7 -0
  847. data/previews/docs/popover_component_preview/caret_position.html.erb +8 -0
  848. data/previews/docs/popover_component_preview/default.html.erb +8 -0
  849. data/previews/docs/popover_component_preview/large.html.erb +8 -0
  850. data/previews/docs/popover_component_preview/with_multiple_elements_in_the_body.html.erb +11 -0
  851. data/previews/docs/popover_component_preview.rb +13 -0
  852. data/previews/docs/spinner_component_preview/default.html.erb +1 -0
  853. data/previews/docs/spinner_component_preview/large.html.erb +1 -0
  854. data/previews/docs/spinner_component_preview/small.html.erb +1 -0
  855. data/previews/docs/spinner_component_preview.rb +11 -0
  856. data/previews/docs/state_component_preview/default.html.erb +1 -0
  857. data/previews/docs/state_component_preview/schemes.html.erb +4 -0
  858. data/previews/docs/state_component_preview/sizes.html.erb +2 -0
  859. data/previews/docs/state_component_preview.rb +11 -0
  860. data/previews/docs/subhead_component_preview/default.html.erb +8 -0
  861. data/previews/docs/subhead_component_preview/with_actions.html.erb +15 -0
  862. data/previews/docs/subhead_component_preview/with_dangerous_heading.html.erb +8 -0
  863. data/previews/docs/subhead_component_preview/with_long_description.html.erb +6 -0
  864. data/previews/docs/subhead_component_preview/without_border.html.erb +8 -0
  865. data/previews/docs/subhead_component_preview.rb +15 -0
  866. data/previews/docs/tab_container_component_preview/default.html.erb +16 -0
  867. data/previews/docs/tab_container_component_preview.rb +7 -0
  868. data/previews/docs/time_ago_component_preview/default.html.erb +1 -0
  869. data/previews/docs/time_ago_component_preview.rb +7 -0
  870. data/previews/docs/timeline_item_component_preview/default.html.erb +7 -0
  871. data/previews/docs/timeline_item_component_preview.rb +7 -0
  872. data/previews/docs/tooltip_preview/default.html.erb +3 -0
  873. data/previews/docs/tooltip_preview/with_a_direction.html.erb +3 -0
  874. data/previews/docs/tooltip_preview/with_an_alignment.html.erb +3 -0
  875. data/previews/docs/tooltip_preview/without_a_delay.html.erb +3 -0
  876. data/previews/docs/tooltip_preview/wrapping_another_component.html.erb +5 -0
  877. data/previews/docs/tooltip_preview.rb +15 -0
  878. data/previews/docs/truncate_preview/custom_size.html.erb +1 -0
  879. data/previews/docs/truncate_preview/default.html.erb +3 -0
  880. data/previews/docs/truncate_preview/expandable.html.erb +1 -0
  881. data/previews/docs/truncate_preview/inline.html.erb +1 -0
  882. data/previews/docs/truncate_preview/with_html_content.html.erb +3 -0
  883. data/previews/docs/truncate_preview.rb +15 -0
  884. data/previews/yattho/alpha/action_list_preview/heading.html.erb +4 -0
  885. data/previews/yattho/alpha/action_list_preview.rb +367 -0
  886. data/previews/yattho/alpha/auto_complete_preview.rb +120 -0
  887. data/previews/yattho/alpha/banner_preview/with_action_button.html.erb +4 -0
  888. data/previews/yattho/alpha/banner_preview/with_action_content.html.erb +6 -0
  889. data/previews/yattho/alpha/banner_preview.rb +97 -0
  890. data/previews/yattho/alpha/button_marketing_preview.rb +62 -0
  891. data/previews/yattho/alpha/dialog_preview/body_has_scrollbar_overflow.html.erb +9 -0
  892. data/previews/yattho/alpha/dialog_preview/custom_header.html.erb +7 -0
  893. data/previews/yattho/alpha/dialog_preview/nested_dialog.html.erb +14 -0
  894. data/previews/yattho/alpha/dialog_preview/test.html.erb +7 -0
  895. data/previews/yattho/alpha/dialog_preview/with_footer.html.erb +8 -0
  896. data/previews/yattho/alpha/dialog_preview/with_form.html.erb +12 -0
  897. data/previews/yattho/alpha/dialog_preview/with_text_input.html.erb +10 -0
  898. data/previews/yattho/alpha/dialog_preview.rb +147 -0
  899. data/previews/yattho/alpha/dropdown_preview.rb +210 -0
  900. data/previews/yattho/alpha/hellip_button_preview.rb +24 -0
  901. data/previews/yattho/alpha/hidden_text_expander_preview.rb +22 -0
  902. data/previews/yattho/alpha/image_crop_preview.rb +31 -0
  903. data/previews/yattho/alpha/layout_preview.rb +211 -0
  904. data/previews/yattho/alpha/menu_preview/default.html.erb +17 -0
  905. data/previews/yattho/alpha/menu_preview/playground.html.erb +17 -0
  906. data/previews/yattho/alpha/menu_preview.rb +14 -0
  907. data/previews/yattho/alpha/nav_list_preview.rb +93 -0
  908. data/previews/yattho/alpha/segmented_control_preview.rb +164 -0
  909. data/previews/yattho/alpha/tab_nav_preview.rb +55 -0
  910. data/previews/yattho/alpha/tab_panels_preview.rb +38 -0
  911. data/previews/yattho/alpha/text_field_preview.rb +149 -0
  912. data/previews/yattho/alpha/toggle_switch_preview.rb +56 -0
  913. data/previews/yattho/alpha/tooltip_preview/with_multiple_on_a_page.html.erb +14 -0
  914. data/previews/yattho/alpha/tooltip_preview/with_right_most_position.html.erb +7 -0
  915. data/previews/yattho/alpha/tooltip_preview.rb +93 -0
  916. data/previews/yattho/alpha/underline_nav_preview/default.html.erb +8 -0
  917. data/previews/yattho/alpha/underline_nav_preview/playground.html.erb +8 -0
  918. data/previews/yattho/alpha/underline_nav_preview.rb +56 -0
  919. data/previews/yattho/alpha/underline_panels_preview.rb +38 -0
  920. data/previews/yattho/beta/auto_complete_item_preview/default.html.erb +9 -0
  921. data/previews/yattho/beta/auto_complete_item_preview/playground.html.erb +9 -0
  922. data/previews/yattho/beta/auto_complete_item_preview/with_description.html.erb +11 -0
  923. data/previews/yattho/beta/auto_complete_item_preview.rb +54 -0
  924. data/previews/yattho/beta/auto_complete_preview/with_submit_button.html.erb +20 -0
  925. data/previews/yattho/beta/auto_complete_preview.rb +267 -0
  926. data/previews/yattho/beta/avatar_preview.rb +82 -0
  927. data/previews/yattho/beta/avatar_stack_preview.rb +101 -0
  928. data/previews/yattho/beta/base_button_preview.rb +26 -0
  929. data/previews/yattho/beta/blankslate_preview.rb +130 -0
  930. data/previews/yattho/beta/border_box_preview.rb +98 -0
  931. data/previews/yattho/beta/breadcrumbs_preview.rb +30 -0
  932. data/previews/yattho/beta/button_group_preview.rb +32 -0
  933. data/previews/yattho/beta/button_preview/all_schemes.html.erb +26 -0
  934. data/previews/yattho/beta/button_preview/invisible_all_visuals.html.erb +54 -0
  935. data/previews/yattho/beta/button_preview/leading_visual.html.erb +10 -0
  936. data/previews/yattho/beta/button_preview/trailing_action.html.erb +10 -0
  937. data/previews/yattho/beta/button_preview/trailing_visual.html.erb +11 -0
  938. data/previews/yattho/beta/button_preview/with_tooltip.html.erb +10 -0
  939. data/previews/yattho/beta/button_preview.rb +291 -0
  940. data/previews/yattho/beta/clipboard_copy_preview/element.html.erb +2 -0
  941. data/previews/yattho/beta/clipboard_copy_preview.rb +39 -0
  942. data/previews/yattho/beta/close_button_preview.rb +22 -0
  943. data/previews/yattho/beta/counter_preview.rb +82 -0
  944. data/previews/yattho/beta/details_preview.rb +60 -0
  945. data/previews/yattho/beta/flash_preview.rb +69 -0
  946. data/previews/yattho/beta/heading_preview.rb +24 -0
  947. data/previews/yattho/beta/icon_button_preview.rb +110 -0
  948. data/previews/yattho/beta/label_preview.rb +104 -0
  949. data/previews/yattho/beta/link_preview.rb +69 -0
  950. data/previews/yattho/beta/markdown_preview.rb +241 -0
  951. data/previews/yattho/beta/octicon_preview.rb +24 -0
  952. data/previews/yattho/beta/popover_preview.rb +79 -0
  953. data/previews/yattho/beta/progress_bar_preview.rb +60 -0
  954. data/previews/yattho/beta/relative_time_preview.rb +286 -0
  955. data/previews/yattho/beta/spinner_preview.rb +22 -0
  956. data/previews/yattho/beta/state_preview.rb +66 -0
  957. data/previews/yattho/beta/subhead_preview/actions.html.erb +13 -0
  958. data/previews/yattho/beta/subhead_preview.rb +99 -0
  959. data/previews/yattho/beta/text_preview.rb +24 -0
  960. data/previews/yattho/beta/timeline_item_preview.rb +30 -0
  961. data/previews/yattho/beta/truncate_preview.rb +54 -0
  962. data/previews/yattho/forms/forms_preview/after_content_form.html.erb +3 -0
  963. data/previews/yattho/forms/forms_preview/array_check_box_group_form.html.erb +3 -0
  964. data/previews/yattho/forms/forms_preview/caption_template_form.html.erb +3 -0
  965. data/previews/yattho/forms/forms_preview/check_box_group_form.html.erb +3 -0
  966. data/previews/yattho/forms/forms_preview/check_box_with_nested_form.html.erb +3 -0
  967. data/previews/yattho/forms/forms_preview/composed_form.html.erb +4 -0
  968. data/previews/yattho/forms/forms_preview/example_toggle_switch_form.html.erb +3 -0
  969. data/previews/yattho/forms/forms_preview/horizontal_form.html.erb +3 -0
  970. data/previews/yattho/forms/forms_preview/immediate_validation_form.html.erb +3 -0
  971. data/previews/yattho/forms/forms_preview/invalid_form.html.erb +3 -0
  972. data/previews/yattho/forms/forms_preview/multi_input_form.html.erb +14 -0
  973. data/previews/yattho/forms/forms_preview/multi_text_field_form.html.erb +3 -0
  974. data/previews/yattho/forms/forms_preview/name_with_question_mark_form.html.erb +3 -0
  975. data/previews/yattho/forms/forms_preview/radio_button_group_form.html.erb +3 -0
  976. data/previews/yattho/forms/forms_preview/radio_button_with_nested_form.html.erb +3 -0
  977. data/previews/yattho/forms/forms_preview/select_list_form.html.erb +3 -0
  978. data/previews/yattho/forms/forms_preview/single_text_field_form.html.erb +3 -0
  979. data/previews/yattho/forms/forms_preview/submit_button_form.html.erb +3 -0
  980. data/previews/yattho/forms/forms_preview/text_field_and_checkbox_form.html.erb +3 -0
  981. data/previews/yattho/forms/forms_preview.rb +46 -0
  982. data/previews/yattho/layout_component_preview.rb +30 -0
  983. data/previews/yattho/local_time_component_preview.rb +61 -0
  984. data/previews/yattho/time_ago_component_preview.rb +27 -0
  985. data/previews/yattho/url_helpers.rb +15 -0
  986. data/static/arguments.json +2560 -0
  987. data/static/assets/view-components.svg +18 -0
  988. data/static/audited_at.json +103 -0
  989. data/static/constants.json +1159 -0
  990. data/static/statuses.json +103 -0
  991. metadata +1403 -0
@@ -0,0 +1,2560 @@
1
+ [
2
+ {
3
+ "component": "ActionList",
4
+ "status": "alpha",
5
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/action_list.rb",
6
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/action_list/default/",
7
+ "parameters": [
8
+ {
9
+ "name": "role",
10
+ "type": "Boolean",
11
+ "default": "`:list`",
12
+ "description": "ARIA role describing the function of the list. listbox and menu are a common values."
13
+ },
14
+ {
15
+ "name": "item_classes",
16
+ "type": "String",
17
+ "default": "`nil`",
18
+ "description": "Additional CSS classes to attach to items."
19
+ },
20
+ {
21
+ "name": "scheme",
22
+ "type": "Symbol",
23
+ "default": "`:full`",
24
+ "description": "One of `:full` or `:inset`.. `inset` children are offset (vertically and horizontally) from list edges. `full` (default) children are flush (vertically and horizontally) with list edges."
25
+ },
26
+ {
27
+ "name": "show_dividers",
28
+ "type": "Boolean",
29
+ "default": "`false`",
30
+ "description": "Display a divider above each item in the list when it does not follow a header or divider."
31
+ },
32
+ {
33
+ "name": "system_arguments",
34
+ "type": "Hash",
35
+ "default": "N/A",
36
+ "description": "[System arguments](/system-arguments)"
37
+ }
38
+ ]
39
+ },
40
+ {
41
+ "component": "ActionList::Divider",
42
+ "status": "alpha",
43
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/action_list/divider.rb",
44
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/action_list/divider/default/",
45
+ "parameters": [
46
+ {
47
+ "name": "scheme",
48
+ "type": "Symbol",
49
+ "default": "`:subtle`",
50
+ "description": "Display a background color if scheme is `filled`."
51
+ },
52
+ {
53
+ "name": "system_arguments",
54
+ "type": "Hash",
55
+ "default": "N/A",
56
+ "description": "[System arguments](/system-arguments)"
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "component": "ActionList::Heading",
62
+ "status": "alpha",
63
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/action_list/heading.rb",
64
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/action_list/heading/default/",
65
+ "parameters": [
66
+ {
67
+ "name": "list_id",
68
+ "type": "String",
69
+ "default": "N/A",
70
+ "description": "The unique identifier of the sub list the heading belongs to. Used internally."
71
+ },
72
+ {
73
+ "name": "title",
74
+ "type": "String",
75
+ "default": "N/A",
76
+ "description": "Sub list title."
77
+ },
78
+ {
79
+ "name": "subtitle",
80
+ "type": "String",
81
+ "default": "`nil`",
82
+ "description": "Optional sub list description."
83
+ },
84
+ {
85
+ "name": "scheme",
86
+ "type": "Symbol",
87
+ "default": "`:subtle`",
88
+ "description": "Display a background color if scheme is `filled`."
89
+ },
90
+ {
91
+ "name": "tag",
92
+ "type": "Symbol",
93
+ "default": "`:h3`",
94
+ "description": "Semantic tag for the heading."
95
+ },
96
+ {
97
+ "name": "system_arguments",
98
+ "type": "Hash",
99
+ "default": "N/A",
100
+ "description": "[System arguments](/system-arguments)"
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "component": "ActionList::Item",
106
+ "status": "alpha",
107
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/action_list/item.rb",
108
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/action_list/item/default/",
109
+ "parameters": [
110
+ {
111
+ "name": "list",
112
+ "type": "Yattho::Alpha::ActionList",
113
+ "default": "N/A",
114
+ "description": "The list that contains this item. Used internally."
115
+ },
116
+ {
117
+ "name": "parent",
118
+ "type": "Yattho::Alpha::ActionList::Item",
119
+ "default": "`nil`",
120
+ "description": "This item's parent item. `nil` if this item is at the root. Used internally."
121
+ },
122
+ {
123
+ "name": "label",
124
+ "type": "String",
125
+ "default": "N/A",
126
+ "description": "Item label."
127
+ },
128
+ {
129
+ "name": "label_classes",
130
+ "type": "String",
131
+ "default": "`nil`",
132
+ "description": "CSS classes that will be added to the label."
133
+ },
134
+ {
135
+ "name": "content_arguments",
136
+ "type": "Hash",
137
+ "default": "`{}`",
138
+ "description": "[System arguments](/system-arguments) used to construct the item's anchor or button tag."
139
+ },
140
+ {
141
+ "name": "truncate_label",
142
+ "type": "Boolean",
143
+ "default": "`false`",
144
+ "description": "Truncate label with ellipsis."
145
+ },
146
+ {
147
+ "name": "href",
148
+ "type": "String",
149
+ "default": "`nil`",
150
+ "description": "Link URL."
151
+ },
152
+ {
153
+ "name": "role",
154
+ "type": "String",
155
+ "default": "`:listitem`",
156
+ "description": "ARIA role describing the function of the item."
157
+ },
158
+ {
159
+ "name": "size",
160
+ "type": "Symbol",
161
+ "default": "`:medium`",
162
+ "description": "Controls block sizing of the item."
163
+ },
164
+ {
165
+ "name": "scheme",
166
+ "type": "Symbol",
167
+ "default": "`:default`",
168
+ "description": "Controls color/style based on behavior."
169
+ },
170
+ {
171
+ "name": "disabled",
172
+ "type": "Boolean",
173
+ "default": "`false`",
174
+ "description": "Disabled items are not clickable and visually dim."
175
+ },
176
+ {
177
+ "name": "description_scheme",
178
+ "type": "Symbol",
179
+ "default": "`:block`",
180
+ "description": "Display description inline with label, or block on the next line."
181
+ },
182
+ {
183
+ "name": "active",
184
+ "type": "Boolean",
185
+ "default": "`false`",
186
+ "description": "Sets an active state on navigational items."
187
+ },
188
+ {
189
+ "name": "on_click",
190
+ "type": "String",
191
+ "default": "`nil`",
192
+ "description": "JavaScript to execute when the item is clicked."
193
+ },
194
+ {
195
+ "name": "id",
196
+ "type": "String",
197
+ "default": "`self.class.generate_id`",
198
+ "description": "Used internally."
199
+ },
200
+ {
201
+ "name": "system_arguments",
202
+ "type": "Hash",
203
+ "default": "N/A",
204
+ "description": "[System arguments](/system-arguments)"
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "component": "Banner",
210
+ "status": "alpha",
211
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/banner.rb",
212
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/banner/default/",
213
+ "parameters": [
214
+ {
215
+ "name": "full",
216
+ "type": "Boolean",
217
+ "default": "`false`",
218
+ "description": "Whether the component should take up the full width of the screen."
219
+ },
220
+ {
221
+ "name": "full_when_narrow",
222
+ "type": "Boolean",
223
+ "default": "`false`",
224
+ "description": "Whether the component should take up the full width of the screen when rendered inside smaller viewports."
225
+ },
226
+ {
227
+ "name": "dismissible",
228
+ "type": "Boolean",
229
+ "default": "`false`",
230
+ "description": "Whether the component can be dismissed with an \"x\" button."
231
+ },
232
+ {
233
+ "name": "description",
234
+ "type": "String",
235
+ "default": "`nil`",
236
+ "description": "Description text rendered underneath the message."
237
+ },
238
+ {
239
+ "name": "icon",
240
+ "type": "Symbol",
241
+ "default": "`nil`",
242
+ "description": "The name of an [Octicon](https://yattho.com/octicons/) icon to use. If no icon is provided, a default one will be chosen based on the scheme."
243
+ },
244
+ {
245
+ "name": "scheme",
246
+ "type": "Symbol",
247
+ "default": "`:default`",
248
+ "description": "One of `:danger`, `:default`, `:success`, or `:warning`."
249
+ },
250
+ {
251
+ "name": "reappear",
252
+ "type": "Boolean",
253
+ "default": "`false`",
254
+ "description": "Whether or not the flash banner should reappear after being dismissed. Only for use in test and preview environments."
255
+ },
256
+ {
257
+ "name": "system_arguments",
258
+ "type": "Hash",
259
+ "default": "N/A",
260
+ "description": "[System arguments](/system-arguments)"
261
+ }
262
+ ]
263
+ },
264
+ {
265
+ "component": "ButtonMarketing",
266
+ "status": "alpha",
267
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/button_marketing.rb",
268
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/button_marketing/default/",
269
+ "parameters": [
270
+ {
271
+ "name": "scheme",
272
+ "type": "Symbol",
273
+ "default": "`:default`",
274
+ "description": "One of `:default`, `:outline`, `:primary`, or `:transparent`."
275
+ },
276
+ {
277
+ "name": "variant",
278
+ "type": "Symbol",
279
+ "default": "`:default`",
280
+ "description": "One of `:default` or `:large`."
281
+ },
282
+ {
283
+ "name": "tag",
284
+ "type": "Symbol",
285
+ "default": "`:button`",
286
+ "description": "One of `:a` or `:button`."
287
+ },
288
+ {
289
+ "name": "type",
290
+ "type": "Symbol",
291
+ "default": "`:button`",
292
+ "description": "One of `:button` or `:submit`."
293
+ },
294
+ {
295
+ "name": "system_arguments",
296
+ "type": "Hash",
297
+ "default": "N/A",
298
+ "description": "[System arguments](/system-arguments)"
299
+ }
300
+ ]
301
+ },
302
+ {
303
+ "component": "Dialog",
304
+ "status": "alpha",
305
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/dialog.rb",
306
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/dialog/default/",
307
+ "parameters": [
308
+ {
309
+ "name": "id",
310
+ "type": "String",
311
+ "default": "`self.class.generate_id`",
312
+ "description": "The id of the dialog."
313
+ },
314
+ {
315
+ "name": "title",
316
+ "type": "String",
317
+ "default": "N/A",
318
+ "description": "Describes the content of the dialog."
319
+ },
320
+ {
321
+ "name": "subtitle",
322
+ "type": "String",
323
+ "default": "`nil`",
324
+ "description": "Provides additional context for the dialog, also setting the `aria-describedby` attribute."
325
+ },
326
+ {
327
+ "name": "size",
328
+ "type": "Symbol",
329
+ "default": "`:medium`",
330
+ "description": "The size of the dialog. One of `:auto`, `:large`, `:medium`, `:medium_portrait`, `:small`, or `:xlarge`."
331
+ },
332
+ {
333
+ "name": "position",
334
+ "type": "Symbol",
335
+ "default": "`:center`",
336
+ "description": "The position of the dialog. One of `:center`, `:left`, or `:right`."
337
+ },
338
+ {
339
+ "name": "position_narrow",
340
+ "type": "Symbol",
341
+ "default": "`:inherit`",
342
+ "description": "The position of the dialog when narrow. One of `:bottom`, `:fullscreen`, `:inherit`, `:left`, or `:right`."
343
+ },
344
+ {
345
+ "name": "visually_hide_title",
346
+ "type": "Boolean",
347
+ "default": "`false`",
348
+ "description": "If true will hide the heading title, while still making it available to Screen Readers."
349
+ },
350
+ {
351
+ "name": "system_arguments",
352
+ "type": "Hash",
353
+ "default": "N/A",
354
+ "description": "[System arguments](/system-arguments)"
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "component": "Dropdown",
360
+ "status": "alpha",
361
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/dropdown.rb",
362
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/dropdown/default/",
363
+ "parameters": [
364
+ {
365
+ "name": "overlay",
366
+ "type": "Symbol",
367
+ "default": "`:default`",
368
+ "description": "One of `:dark`, `:default`, or `:none`."
369
+ },
370
+ {
371
+ "name": "with_caret",
372
+ "type": "Boolean",
373
+ "default": "`false`",
374
+ "description": "Whether or not a caret should be rendered in the button."
375
+ },
376
+ {
377
+ "name": "system_arguments",
378
+ "type": "Hash",
379
+ "default": "N/A",
380
+ "description": "[System arguments](/system-arguments)"
381
+ }
382
+ ]
383
+ },
384
+ {
385
+ "component": "HellipButton",
386
+ "status": "alpha",
387
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/hellip_button.rb",
388
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/hellip_button/default/",
389
+ "parameters": [
390
+ {
391
+ "name": "inline",
392
+ "type": "Boolean",
393
+ "default": "`false`",
394
+ "description": "Whether or not the button is inline."
395
+ },
396
+ {
397
+ "name": "system_arguments",
398
+ "type": "Hash",
399
+ "default": "N/A",
400
+ "description": "[System arguments](/system-arguments)"
401
+ }
402
+ ]
403
+ },
404
+ {
405
+ "component": "HiddenTextExpander",
406
+ "status": "alpha",
407
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/hidden_text_expander.rb",
408
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/hidden_text_expander/default/",
409
+ "parameters": [
410
+ {
411
+ "name": "inline",
412
+ "type": "Boolean",
413
+ "default": "`false`",
414
+ "description": "Whether or not the expander is inline."
415
+ },
416
+ {
417
+ "name": "button_arguments",
418
+ "type": "Hash",
419
+ "default": "`{}`",
420
+ "description": "[System arguments](/system-arguments) for the button element."
421
+ },
422
+ {
423
+ "name": "system_arguments",
424
+ "type": "Hash",
425
+ "default": "N/A",
426
+ "description": "[System arguments](/system-arguments)"
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "component": "Image",
432
+ "status": "alpha",
433
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/image.rb",
434
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/image/default/",
435
+ "parameters": [
436
+ {
437
+ "name": "src",
438
+ "type": "String",
439
+ "default": "N/A",
440
+ "description": "The source url of the image."
441
+ },
442
+ {
443
+ "name": "alt",
444
+ "type": "String",
445
+ "default": "N/A",
446
+ "description": "Specifies an alternate text for the image."
447
+ },
448
+ {
449
+ "name": "lazy",
450
+ "type": "Boolean",
451
+ "default": "`false`",
452
+ "description": "Whether or not to lazily load the image."
453
+ },
454
+ {
455
+ "name": "system_arguments",
456
+ "type": "Hash",
457
+ "default": "N/A",
458
+ "description": "[System arguments](/system-arguments)"
459
+ }
460
+ ]
461
+ },
462
+ {
463
+ "component": "ImageCrop",
464
+ "status": "alpha",
465
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/image_crop.rb",
466
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/image_crop/default/",
467
+ "parameters": [
468
+ {
469
+ "name": "src",
470
+ "type": "String",
471
+ "default": "N/A",
472
+ "description": "The path of the image to crop."
473
+ },
474
+ {
475
+ "name": "rounded",
476
+ "type": "Boolean",
477
+ "default": "`true`",
478
+ "description": "If the crop mask should be a circle. Defaults to true."
479
+ },
480
+ {
481
+ "name": "system_arguments",
482
+ "type": "Hash",
483
+ "default": "N/A",
484
+ "description": "[System arguments](/system-arguments)"
485
+ }
486
+ ]
487
+ },
488
+ {
489
+ "component": "Layout",
490
+ "status": "alpha",
491
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/layout.rb",
492
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/layout/default/",
493
+ "parameters": [
494
+ {
495
+ "name": "stacking_breakpoint",
496
+ "type": "Symbol",
497
+ "default": "`:md`",
498
+ "description": "When the `Layout` should change from rows into columns. One of `:lg`, `:md`, or `:sm`."
499
+ },
500
+ {
501
+ "name": "first_in_source",
502
+ "type": "Symbol",
503
+ "default": "`:sidebar`",
504
+ "description": "Which element to render first in the HTML. This will change the keyboard navigation order. One of `:main` or `:sidebar`."
505
+ },
506
+ {
507
+ "name": "gutter",
508
+ "type": "Symbol",
509
+ "default": "`:default`",
510
+ "description": "The amount of space between the main section and the sidebar. One of `:condensed`, `:default`, `:none`, or `:spacious`."
511
+ },
512
+ {
513
+ "name": "system_arguments",
514
+ "type": "Hash",
515
+ "default": "N/A",
516
+ "description": "[System arguments](/system-arguments)"
517
+ }
518
+ ]
519
+ },
520
+ {
521
+ "component": "Menu",
522
+ "status": "alpha",
523
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/menu.rb",
524
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/menu/default/",
525
+ "parameters": [
526
+ {
527
+ "name": "system_arguments",
528
+ "type": "Hash",
529
+ "default": "N/A",
530
+ "description": "[System arguments](/system-arguments)"
531
+ }
532
+ ]
533
+ },
534
+ {
535
+ "component": "NavList",
536
+ "status": "alpha",
537
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/nav_list.rb",
538
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/nav_list/default/",
539
+ "parameters": [
540
+ {
541
+ "name": "selected_item_id",
542
+ "type": "Symbol",
543
+ "default": "`nil`",
544
+ "description": "The ID of the currently selected item. The default is `nil`, meaning no item is selected."
545
+ },
546
+ {
547
+ "name": "system_arguments",
548
+ "type": "Hash",
549
+ "default": "N/A",
550
+ "description": "[System arguments](/system-arguments)"
551
+ }
552
+ ]
553
+ },
554
+ {
555
+ "component": "NavList::Item",
556
+ "status": "alpha",
557
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/nav_list/item.rb",
558
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/nav_list/item/default/",
559
+ "parameters": [
560
+ {
561
+ "name": "selected_item_id",
562
+ "type": "Symbol",
563
+ "default": "`nil`",
564
+ "description": "The ID of the currently selected list item. Used internally."
565
+ },
566
+ {
567
+ "name": "selected_by_ids",
568
+ "type": "Array<Symbol>",
569
+ "default": "`[]`",
570
+ "description": "The list of IDs that select this item. In other words, if the `selected_item_id` attribute on the parent `NavList` is set to one of these IDs, the item will appear selected."
571
+ },
572
+ {
573
+ "name": "expanded",
574
+ "type": "Boolean",
575
+ "default": "`false`",
576
+ "description": "Whether this item shows (expands) or hides (collapses) its list of sub items."
577
+ },
578
+ {
579
+ "name": "sub_item",
580
+ "type": "Boolean",
581
+ "default": "`false`",
582
+ "description": "Whether or not this item is nested under a parent item. Used internally."
583
+ },
584
+ {
585
+ "name": "system_arguments",
586
+ "type": "Hash",
587
+ "default": "N/A",
588
+ "description": "[System arguments](/system-arguments)"
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "component": "NavList::Section",
594
+ "status": "alpha",
595
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/nav_list/section.rb",
596
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/nav_list/section/default/",
597
+ "parameters": [
598
+ {
599
+ "name": "selected_item_id",
600
+ "type": "Symbol",
601
+ "default": "`nil`",
602
+ "description": "The ID of the currently selected item. Used internally."
603
+ },
604
+ {
605
+ "name": "system_arguments",
606
+ "type": "Hash",
607
+ "default": "N/A",
608
+ "description": "[System arguments](/system-arguments)"
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "component": "OcticonSymbols",
614
+ "status": "alpha",
615
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/octicon_symbols.rb",
616
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/octicon_symbols/default/",
617
+ "parameters": [
618
+ {
619
+ "name": "icons",
620
+ "type": "Array<Hash>",
621
+ "default": "`[]`",
622
+ "description": "List of icons to render, in the format { symbol: :icon_name, size: :small }"
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "component": "SegmentedControl",
628
+ "status": "alpha",
629
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/segmented_control.rb",
630
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/segmented_control/default/",
631
+ "parameters": [
632
+ {
633
+ "name": "hide_labels",
634
+ "type": "Boolean",
635
+ "default": "`false`",
636
+ "description": "Whether to hide the labels and only show the icons"
637
+ },
638
+ {
639
+ "name": "full_width",
640
+ "type": "Boolean",
641
+ "default": "`false`",
642
+ "description": "If the component should be full width"
643
+ },
644
+ {
645
+ "name": "size",
646
+ "type": "Symbol",
647
+ "default": "`:medium`",
648
+ "description": "One of `:large`, `:medium`, or `:small`."
649
+ },
650
+ {
651
+ "name": "system_arguments",
652
+ "type": "Hash",
653
+ "default": "N/A",
654
+ "description": "[System arguments](/system-arguments)"
655
+ }
656
+ ]
657
+ },
658
+ {
659
+ "component": "TabContainer",
660
+ "status": "alpha",
661
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/tab_container.rb",
662
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/tab_container/default/",
663
+ "parameters": [
664
+ {
665
+ "name": "system_arguments",
666
+ "type": "Hash",
667
+ "default": "N/A",
668
+ "description": "[System arguments](/system-arguments)"
669
+ }
670
+ ]
671
+ },
672
+ {
673
+ "component": "TabNav",
674
+ "status": "alpha",
675
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/tab_nav.rb",
676
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/tab_nav/default/",
677
+ "parameters": [
678
+ {
679
+ "name": "tag",
680
+ "type": "Symbol",
681
+ "default": "`:nav`",
682
+ "description": "One of `:div` or `:nav`."
683
+ },
684
+ {
685
+ "name": "label",
686
+ "type": "String",
687
+ "default": "N/A",
688
+ "description": "Sets an `aria-label` that helps assistive technology users understand the purpose of the links, and distinguish it from similar elements."
689
+ },
690
+ {
691
+ "name": "body_arguments",
692
+ "type": "Hash",
693
+ "default": "`{}`",
694
+ "description": "[System arguments](/system-arguments) for the body wrapper."
695
+ },
696
+ {
697
+ "name": "system_arguments",
698
+ "type": "Hash",
699
+ "default": "N/A",
700
+ "description": "[System arguments](/system-arguments)"
701
+ }
702
+ ]
703
+ },
704
+ {
705
+ "component": "TabPanels",
706
+ "status": "alpha",
707
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/tab_panels.rb",
708
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/tab_panels/default/",
709
+ "parameters": [
710
+ {
711
+ "name": "label",
712
+ "type": "String",
713
+ "default": "N/A",
714
+ "description": "Sets an `aria-label` that helps assistive technology users understand the purpose of the tabs."
715
+ },
716
+ {
717
+ "name": "align",
718
+ "type": "Symbol",
719
+ "default": "N/A",
720
+ "description": "One of `:left` or `:right`. - Defaults to left"
721
+ },
722
+ {
723
+ "name": "body_arguments",
724
+ "type": "Hash",
725
+ "default": "`{}`",
726
+ "description": "[System arguments](/system-arguments) for the body wrapper."
727
+ },
728
+ {
729
+ "name": "wrapper_arguments",
730
+ "type": "Hash",
731
+ "default": "`{}`",
732
+ "description": "[System arguments](/system-arguments) for the `TabContainer` wrapper."
733
+ },
734
+ {
735
+ "name": "system_arguments",
736
+ "type": "Hash",
737
+ "default": "N/A",
738
+ "description": "[System arguments](/system-arguments)"
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "component": "TextField",
744
+ "status": "alpha",
745
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/text_field.rb",
746
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/text_field/default/",
747
+ "parameters": [
748
+ {
749
+ "name": "name",
750
+ "type": "String",
751
+ "default": "N/A",
752
+ "description": "Value for the HTML name attribute."
753
+ },
754
+ {
755
+ "name": "id",
756
+ "type": "String",
757
+ "default": "N/A",
758
+ "description": "Value for the HTML id attribute."
759
+ },
760
+ {
761
+ "name": "class",
762
+ "type": "String",
763
+ "default": "N/A",
764
+ "description": "A list of CSS classes to add to the input. Exists for compatibility with Rails form builders."
765
+ },
766
+ {
767
+ "name": "classes",
768
+ "type": "String",
769
+ "default": "N/A",
770
+ "description": "A list of CSS classes to add to the input. Combined with the `:class` argument."
771
+ },
772
+ {
773
+ "name": "caption",
774
+ "type": "String",
775
+ "default": "N/A",
776
+ "description": "Caption text to render below the input."
777
+ },
778
+ {
779
+ "name": "label",
780
+ "type": "String",
781
+ "default": "N/A",
782
+ "description": "Label text displayed above the input."
783
+ },
784
+ {
785
+ "name": "visually_hide_label",
786
+ "type": "Boolean",
787
+ "default": "N/A",
788
+ "description": "Whether or not to visually hide the label. If `true` the label will be hidden visually but still available to screen readers."
789
+ },
790
+ {
791
+ "name": "size",
792
+ "type": "Symbol",
793
+ "default": "N/A",
794
+ "description": "The size of the field. One of `:large`, `:medium`, or `:small`."
795
+ },
796
+ {
797
+ "name": "show_clear_button",
798
+ "type": "Boolean",
799
+ "default": "N/A",
800
+ "description": "Whether or not to include a clear button inside the input that clears the input's contents when clicked."
801
+ },
802
+ {
803
+ "name": "clear_button_id",
804
+ "type": "String",
805
+ "default": "N/A",
806
+ "description": "The HTML id attribute of the clear button."
807
+ },
808
+ {
809
+ "name": "full_width",
810
+ "type": "Boolean",
811
+ "default": "N/A",
812
+ "description": "Controls whether or not the input takes the full width of its container."
813
+ },
814
+ {
815
+ "name": "disabled",
816
+ "type": "Boolean",
817
+ "default": "N/A",
818
+ "description": "Whether or not the input should accept keyboard and mouse input."
819
+ },
820
+ {
821
+ "name": "invalid",
822
+ "type": "Boolean",
823
+ "default": "N/A",
824
+ "description": "If `true`, renders the input in a visually invalid state."
825
+ },
826
+ {
827
+ "name": "placeholder",
828
+ "type": "String",
829
+ "default": "N/A",
830
+ "description": "Placeholder text."
831
+ },
832
+ {
833
+ "name": "inset",
834
+ "type": "Boolean",
835
+ "default": "N/A",
836
+ "description": "If `true`, renders the input in a visually inset state."
837
+ },
838
+ {
839
+ "name": "monospace",
840
+ "type": "Boolean",
841
+ "default": "N/A",
842
+ "description": "If `true`, uses a monospace font for the input field."
843
+ },
844
+ {
845
+ "name": "leading_visual",
846
+ "type": "Hash",
847
+ "default": "N/A",
848
+ "description": "Renders a leading visual icon before the text field's cursor. The hash will be passed to Yattho's [Octicon component](https://yattho.com/view-components/components/octicon)."
849
+ },
850
+ {
851
+ "name": "validation_message",
852
+ "type": "String",
853
+ "default": "N/A",
854
+ "description": "A validation message to display beneath the input. Implicitly sets `invalid` to `true`."
855
+ },
856
+ {
857
+ "name": "label_arguments",
858
+ "type": "Hash",
859
+ "default": "N/A",
860
+ "description": "System arugments passed to the Rails builder's `#label` method. These arguments will appear as HTML attributes on the `<label>` tag."
861
+ },
862
+ {
863
+ "name": "system_arguments",
864
+ "type": "Hash",
865
+ "default": "N/A",
866
+ "description": "[System arguments](/system-arguments)"
867
+ },
868
+ {
869
+ "name": "block",
870
+ "type": "Proc",
871
+ "default": "N/A",
872
+ "description": "Unused."
873
+ }
874
+ ]
875
+ },
876
+ {
877
+ "component": "ToggleSwitch",
878
+ "status": "alpha",
879
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/toggle_switch.rb",
880
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/toggle_switch/default/",
881
+ "parameters": [
882
+ {
883
+ "name": "src",
884
+ "type": "String",
885
+ "default": "`nil`",
886
+ "description": "The URL to POST to when the toggle switch is toggled. If `nil`, the toggle switch will not make any requests."
887
+ },
888
+ {
889
+ "name": "csrf_token",
890
+ "type": "String",
891
+ "default": "`nil`",
892
+ "description": "A CSRF token that will be sent to the server as \"authenticity_token\" when the toggle switch is toggled. Unused if `src` is `nil`."
893
+ },
894
+ {
895
+ "name": "checked",
896
+ "type": "Boolean",
897
+ "default": "`false`",
898
+ "description": "Whether the toggle switch is on or off."
899
+ },
900
+ {
901
+ "name": "enabled",
902
+ "type": "Boolean",
903
+ "default": "`true`",
904
+ "description": "Whether or not the toggle switch responds to user input."
905
+ },
906
+ {
907
+ "name": "size",
908
+ "type": "Symbol",
909
+ "default": "`:medium`",
910
+ "description": "What size toggle switch to render. One of `:end` or `:start`."
911
+ },
912
+ {
913
+ "name": "status_label_position",
914
+ "type": "Symbol",
915
+ "default": "`:start`",
916
+ "description": "Which side of the toggle switch to render the status label. One of `:medium` or `:small`."
917
+ },
918
+ {
919
+ "name": "system_arguments",
920
+ "type": "Hash",
921
+ "default": "N/A",
922
+ "description": "[System arguments](/system-arguments)"
923
+ }
924
+ ]
925
+ },
926
+ {
927
+ "component": "Tooltip",
928
+ "status": "alpha",
929
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/tooltip.rb",
930
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/tooltip/default/",
931
+ "parameters": [
932
+ {
933
+ "name": "for_id",
934
+ "type": "String",
935
+ "default": "N/A",
936
+ "description": "The ID of the element that the tooltip should be attached to."
937
+ },
938
+ {
939
+ "name": "type",
940
+ "type": "Symbol",
941
+ "default": "N/A",
942
+ "description": "One of `:description` or `:label`."
943
+ },
944
+ {
945
+ "name": "direction",
946
+ "type": "Symbol",
947
+ "default": "`:s`",
948
+ "description": "One of `:e`, `:n`, `:ne`, `:nw`, `:s`, `:se`, `:sw`, or `:w`."
949
+ },
950
+ {
951
+ "name": "text",
952
+ "type": "String",
953
+ "default": "N/A",
954
+ "description": "The text content of the tooltip. This should be brief and no longer than a sentence."
955
+ },
956
+ {
957
+ "name": "system_arguments",
958
+ "type": "Hash",
959
+ "default": "N/A",
960
+ "description": "[System arguments](/system-arguments)"
961
+ }
962
+ ]
963
+ },
964
+ {
965
+ "component": "UnderlineNav",
966
+ "status": "alpha",
967
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/underline_nav.rb",
968
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/underline_nav/default/",
969
+ "parameters": [
970
+ {
971
+ "name": "tag",
972
+ "type": "Symbol",
973
+ "default": "`:nav`",
974
+ "description": "One of `:div` or `:nav`."
975
+ },
976
+ {
977
+ "name": "label",
978
+ "type": "String",
979
+ "default": "N/A",
980
+ "description": "Sets an `aria-label` that helps assistive technology users understand the purpose of the links, and distinguish it from similar elements."
981
+ },
982
+ {
983
+ "name": "align",
984
+ "type": "Symbol",
985
+ "default": "`:left`",
986
+ "description": "One of `:left` or `:right`. - Defaults to left"
987
+ },
988
+ {
989
+ "name": "body_arguments",
990
+ "type": "Hash",
991
+ "default": "`{}`",
992
+ "description": "[System arguments](/system-arguments) for the body wrapper."
993
+ },
994
+ {
995
+ "name": "system_arguments",
996
+ "type": "Hash",
997
+ "default": "N/A",
998
+ "description": "[System arguments](/system-arguments)"
999
+ }
1000
+ ]
1001
+ },
1002
+ {
1003
+ "component": "UnderlinePanels",
1004
+ "status": "alpha",
1005
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/alpha/underline_panels.rb",
1006
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/alpha/underline_panels/default/",
1007
+ "parameters": [
1008
+ {
1009
+ "name": "label",
1010
+ "type": "String",
1011
+ "default": "N/A",
1012
+ "description": "Sets an `aria-label` that helps assistive technology users understand the purpose of the tabs."
1013
+ },
1014
+ {
1015
+ "name": "align",
1016
+ "type": "Symbol",
1017
+ "default": "`:left`",
1018
+ "description": "One of `:left` or `:right`. - Defaults to left"
1019
+ },
1020
+ {
1021
+ "name": "body_arguments",
1022
+ "type": "Hash",
1023
+ "default": "`{}`",
1024
+ "description": "[System arguments](/system-arguments) for the body wrapper."
1025
+ },
1026
+ {
1027
+ "name": "wrapper_arguments",
1028
+ "type": "Hash",
1029
+ "default": "`{}`",
1030
+ "description": "[System arguments](/system-arguments) for the `TabContainer` wrapper."
1031
+ },
1032
+ {
1033
+ "name": "system_arguments",
1034
+ "type": "Hash",
1035
+ "default": "N/A",
1036
+ "description": "[System arguments](/system-arguments)"
1037
+ }
1038
+ ]
1039
+ },
1040
+ {
1041
+ "component": "AutoComplete",
1042
+ "status": "beta",
1043
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/auto_complete.rb",
1044
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/auto_complete/default/",
1045
+ "parameters": [
1046
+ {
1047
+ "name": "label_text",
1048
+ "type": "String",
1049
+ "default": "N/A",
1050
+ "description": "The label of the input."
1051
+ },
1052
+ {
1053
+ "name": "src",
1054
+ "type": "String",
1055
+ "default": "N/A",
1056
+ "description": "The route to query."
1057
+ },
1058
+ {
1059
+ "name": "input_id",
1060
+ "type": "String",
1061
+ "default": "N/A",
1062
+ "description": "Id of the input element."
1063
+ },
1064
+ {
1065
+ "name": "input_name",
1066
+ "type": "String",
1067
+ "default": "`nil`",
1068
+ "description": "Optional name of the input element, defaults to `input_id` when not set."
1069
+ },
1070
+ {
1071
+ "name": "list_id",
1072
+ "type": "String",
1073
+ "default": "N/A",
1074
+ "description": "Id of the list element."
1075
+ },
1076
+ {
1077
+ "name": "visually_hide_label",
1078
+ "type": "Boolean",
1079
+ "default": "`false`",
1080
+ "description": "Controls if the label is visible. If `true`, screen reader only text will be added."
1081
+ },
1082
+ {
1083
+ "name": "show_clear_button",
1084
+ "type": "Boolean",
1085
+ "default": "`false`",
1086
+ "description": "Adds optional clear button."
1087
+ },
1088
+ {
1089
+ "name": "system_arguments",
1090
+ "type": "Hash",
1091
+ "default": "N/A",
1092
+ "description": "[System arguments](/system-arguments)"
1093
+ },
1094
+ {
1095
+ "name": "size",
1096
+ "type": "Hash",
1097
+ "default": "`:medium`",
1098
+ "description": "Input size can be small, medium (default), or large"
1099
+ },
1100
+ {
1101
+ "name": "full_width",
1102
+ "type": "Boolean",
1103
+ "default": "`false`",
1104
+ "description": "Input can be full-width or fit to content"
1105
+ },
1106
+ {
1107
+ "name": "disabled",
1108
+ "type": "Boolean",
1109
+ "default": "`false`",
1110
+ "description": "Disabled input"
1111
+ },
1112
+ {
1113
+ "name": "invalid",
1114
+ "type": "Boolean",
1115
+ "default": "`false`",
1116
+ "description": "Invalid input"
1117
+ },
1118
+ {
1119
+ "name": "placeholder",
1120
+ "type": "String",
1121
+ "default": "`nil`",
1122
+ "description": "The placeholder text displayed within the input"
1123
+ },
1124
+ {
1125
+ "name": "inset",
1126
+ "type": "Boolean",
1127
+ "default": "`false`",
1128
+ "description": "subtle input background color"
1129
+ },
1130
+ {
1131
+ "name": "monospace",
1132
+ "type": "Boolean",
1133
+ "default": "`false`",
1134
+ "description": "monospace input font family"
1135
+ }
1136
+ ]
1137
+ },
1138
+ {
1139
+ "component": "AutoComplete::Item",
1140
+ "status": "beta",
1141
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/auto_complete/item.rb",
1142
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/auto_complete/item/default/",
1143
+ "parameters": [
1144
+ {
1145
+ "name": "value",
1146
+ "type": "String",
1147
+ "default": "N/A",
1148
+ "description": "Value of the item."
1149
+ },
1150
+ {
1151
+ "name": "selected",
1152
+ "type": "Boolean",
1153
+ "default": "`false`",
1154
+ "description": "Whether the item is selected."
1155
+ },
1156
+ {
1157
+ "name": "disabled",
1158
+ "type": "Boolean",
1159
+ "default": "`false`",
1160
+ "description": "Whether the item is disabled."
1161
+ },
1162
+ {
1163
+ "name": "description_variant",
1164
+ "type": "Hash",
1165
+ "default": "`:block`",
1166
+ "description": "Changes the description style. Allowed values are :inline, :block"
1167
+ },
1168
+ {
1169
+ "name": "description",
1170
+ "type": "String",
1171
+ "default": "N/A",
1172
+ "description": "Display description text below label"
1173
+ },
1174
+ {
1175
+ "name": "system_arguments",
1176
+ "type": "Hash",
1177
+ "default": "N/A",
1178
+ "description": "[System arguments](/system-arguments)"
1179
+ }
1180
+ ]
1181
+ },
1182
+ {
1183
+ "component": "Avatar",
1184
+ "status": "beta",
1185
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/avatar.rb",
1186
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/avatar/default/",
1187
+ "parameters": [
1188
+ {
1189
+ "name": "src",
1190
+ "type": "String",
1191
+ "default": "N/A",
1192
+ "description": "The source url of the avatar image."
1193
+ },
1194
+ {
1195
+ "name": "alt",
1196
+ "type": "String",
1197
+ "default": "N/A",
1198
+ "description": "Passed through to alt on img tag."
1199
+ },
1200
+ {
1201
+ "name": "size",
1202
+ "type": "Integer",
1203
+ "default": "`20`",
1204
+ "description": "One of `16`, `20`, `24`, `32`, `40`, `48`, or `80`."
1205
+ },
1206
+ {
1207
+ "name": "shape",
1208
+ "type": "Symbol",
1209
+ "default": "`:circle`",
1210
+ "description": "Shape of the avatar. One of `:circle` or `:square`."
1211
+ },
1212
+ {
1213
+ "name": "href",
1214
+ "type": "String",
1215
+ "default": "`nil`",
1216
+ "description": "The URL to link to. If used, component will be wrapped by an `<a>` tag."
1217
+ },
1218
+ {
1219
+ "name": "system_arguments",
1220
+ "type": "Hash",
1221
+ "default": "N/A",
1222
+ "description": "[System arguments](/system-arguments)"
1223
+ }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "component": "AvatarStack",
1228
+ "status": "beta",
1229
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/avatar_stack.rb",
1230
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/avatar_stack/default/",
1231
+ "parameters": [
1232
+ {
1233
+ "name": "tag",
1234
+ "type": "Symbol",
1235
+ "default": "`:div`",
1236
+ "description": "One of `:div` or `:span`."
1237
+ },
1238
+ {
1239
+ "name": "align",
1240
+ "type": "Symbol",
1241
+ "default": "`:left`",
1242
+ "description": "One of `:left` or `:right`."
1243
+ },
1244
+ {
1245
+ "name": "tooltipped",
1246
+ "type": "Boolean",
1247
+ "default": "`false`",
1248
+ "description": "Whether to add a tooltip to the stack or not."
1249
+ },
1250
+ {
1251
+ "name": "body_arguments",
1252
+ "type": "Hash",
1253
+ "default": "`{}`",
1254
+ "description": "Parameters to add to the Body. If `tooltipped` is set, has the same arguments as [Tooltip](/components/tooltip). The default tag is `:div` but can be changed using `tag:` to one of `:div` or `:span`."
1255
+ },
1256
+ {
1257
+ "name": "system_arguments",
1258
+ "type": "Hash",
1259
+ "default": "N/A",
1260
+ "description": "[System arguments](/system-arguments)"
1261
+ }
1262
+ ]
1263
+ },
1264
+ {
1265
+ "component": "BaseButton",
1266
+ "status": "beta",
1267
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/base_button.rb",
1268
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/base_button/default/",
1269
+ "parameters": [
1270
+ {
1271
+ "name": "tag",
1272
+ "type": "Symbol",
1273
+ "default": "`:button`",
1274
+ "description": "One of `:a`, `:button`, or `:summary`."
1275
+ },
1276
+ {
1277
+ "name": "type",
1278
+ "type": "Symbol",
1279
+ "default": "`:button`",
1280
+ "description": "One of `:button`, `:reset`, or `:submit`."
1281
+ },
1282
+ {
1283
+ "name": "block",
1284
+ "type": "Boolean",
1285
+ "default": "`false`",
1286
+ "description": "Whether button is full-width with `display: block`."
1287
+ },
1288
+ {
1289
+ "name": "system_arguments",
1290
+ "type": "Hash",
1291
+ "default": "N/A",
1292
+ "description": "[System arguments](/system-arguments)"
1293
+ }
1294
+ ]
1295
+ },
1296
+ {
1297
+ "component": "Blankslate",
1298
+ "status": "beta",
1299
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/blankslate.rb",
1300
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/blankslate/default/",
1301
+ "parameters": [
1302
+ {
1303
+ "name": "narrow",
1304
+ "type": "Boolean",
1305
+ "default": "`false`",
1306
+ "description": "Adds a maximum width of `485px` to the Blankslate."
1307
+ },
1308
+ {
1309
+ "name": "spacious",
1310
+ "type": "Boolean",
1311
+ "default": "`false`",
1312
+ "description": "Increases the padding from `32px` to `80px 40px`."
1313
+ },
1314
+ {
1315
+ "name": "border",
1316
+ "type": "Boolean",
1317
+ "default": "`false`",
1318
+ "description": "Adds a border around the Blankslate."
1319
+ },
1320
+ {
1321
+ "name": "system_arguments",
1322
+ "type": "Hash",
1323
+ "default": "N/A",
1324
+ "description": "[System arguments](/system-arguments)"
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "component": "BorderBox",
1330
+ "status": "beta",
1331
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/border_box.rb",
1332
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/border_box/default/",
1333
+ "parameters": [
1334
+ {
1335
+ "name": "padding",
1336
+ "type": "Symbol",
1337
+ "default": "`:default`",
1338
+ "description": "One of `:condensed`, `:default`, or `:spacious`."
1339
+ },
1340
+ {
1341
+ "name": "system_arguments",
1342
+ "type": "Hash",
1343
+ "default": "N/A",
1344
+ "description": "[System arguments](/system-arguments)"
1345
+ }
1346
+ ]
1347
+ },
1348
+ {
1349
+ "component": "BorderBox::Header",
1350
+ "status": "beta",
1351
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/border_box/header.rb",
1352
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/border_box/header/default/",
1353
+ "parameters": [
1354
+ {
1355
+ "name": "system_arguments",
1356
+ "type": "Hash",
1357
+ "default": "N/A",
1358
+ "description": "[System arguments](/system-arguments)"
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "component": "Breadcrumbs",
1364
+ "status": "beta",
1365
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/breadcrumbs.rb",
1366
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/breadcrumbs/default/",
1367
+ "parameters": [
1368
+ {
1369
+ "name": "system_arguments",
1370
+ "type": "Hash",
1371
+ "default": "N/A",
1372
+ "description": "[System arguments](/system-arguments)"
1373
+ }
1374
+ ]
1375
+ },
1376
+ {
1377
+ "component": "Button",
1378
+ "status": "beta",
1379
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/button.rb",
1380
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/button/default/",
1381
+ "parameters": [
1382
+ {
1383
+ "name": "scheme",
1384
+ "type": "Symbol",
1385
+ "default": "`:default`",
1386
+ "description": "One of `:danger`, `:default`, `:invisible`, `:link`, `:primary`, or `:secondary`."
1387
+ },
1388
+ {
1389
+ "name": "size",
1390
+ "type": "Symbol",
1391
+ "default": "`:medium`",
1392
+ "description": "One of `:large`, `:medium`, or `:small`."
1393
+ },
1394
+ {
1395
+ "name": "block",
1396
+ "type": "Boolean",
1397
+ "default": "`false`",
1398
+ "description": "Whether button is full-width with `display: block`."
1399
+ },
1400
+ {
1401
+ "name": "align_content",
1402
+ "type": "Symbol",
1403
+ "default": "`:center`",
1404
+ "description": "One of `:center` or `:start`."
1405
+ },
1406
+ {
1407
+ "name": "tag",
1408
+ "type": "Symbol",
1409
+ "default": "`:button`",
1410
+ "description": "One of `:a`, `:button`, or `:summary`."
1411
+ },
1412
+ {
1413
+ "name": "type",
1414
+ "type": "Symbol",
1415
+ "default": "`:button`",
1416
+ "description": "One of `:button`, `:reset`, or `:submit`."
1417
+ },
1418
+ {
1419
+ "name": "system_arguments",
1420
+ "type": "Hash",
1421
+ "default": "N/A",
1422
+ "description": "[System arguments](/system-arguments)"
1423
+ }
1424
+ ]
1425
+ },
1426
+ {
1427
+ "component": "ButtonGroup",
1428
+ "status": "beta",
1429
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/button_group.rb",
1430
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/button_group/default/",
1431
+ "parameters": [
1432
+ {
1433
+ "name": "variant",
1434
+ "type": "Symbol",
1435
+ "default": "`nil`",
1436
+ "description": "DEPRECATED. One of `:medium` or `:small`."
1437
+ },
1438
+ {
1439
+ "name": "size",
1440
+ "type": "Symbol",
1441
+ "default": "`:medium`",
1442
+ "description": "One of `:medium` or `:small`."
1443
+ },
1444
+ {
1445
+ "name": "system_arguments",
1446
+ "type": "Hash",
1447
+ "default": "N/A",
1448
+ "description": "[System arguments](/system-arguments)"
1449
+ }
1450
+ ]
1451
+ },
1452
+ {
1453
+ "component": "ClipboardCopy",
1454
+ "status": "beta",
1455
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/clipboard_copy.rb",
1456
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/clipboard_copy/default/",
1457
+ "parameters": [
1458
+ {
1459
+ "name": "aria-label",
1460
+ "type": "String",
1461
+ "default": "N/A",
1462
+ "description": "String that will be read to screenreaders when the component is focused"
1463
+ },
1464
+ {
1465
+ "name": "value",
1466
+ "type": "String",
1467
+ "default": "`nil`",
1468
+ "description": "Text to copy into the users clipboard when they click the component."
1469
+ },
1470
+ {
1471
+ "name": "for",
1472
+ "type": "String",
1473
+ "default": "N/A",
1474
+ "description": "Element id from where to get the copied value."
1475
+ },
1476
+ {
1477
+ "name": "system_arguments",
1478
+ "type": "Hash",
1479
+ "default": "N/A",
1480
+ "description": "[System arguments](/system-arguments)"
1481
+ }
1482
+ ]
1483
+ },
1484
+ {
1485
+ "component": "CloseButton",
1486
+ "status": "beta",
1487
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/close_button.rb",
1488
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/close_button/default/",
1489
+ "parameters": [
1490
+ {
1491
+ "name": "type",
1492
+ "type": "Symbol",
1493
+ "default": "`:button`",
1494
+ "description": "One of `:button` or `:submit`."
1495
+ },
1496
+ {
1497
+ "name": "system_arguments",
1498
+ "type": "Hash",
1499
+ "default": "N/A",
1500
+ "description": "[System arguments](/system-arguments)"
1501
+ }
1502
+ ]
1503
+ },
1504
+ {
1505
+ "component": "Counter",
1506
+ "status": "beta",
1507
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/counter.rb",
1508
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/counter/default/",
1509
+ "parameters": [
1510
+ {
1511
+ "name": "count",
1512
+ "type": "Integer, Float::INFINITY, nil",
1513
+ "default": "`0`",
1514
+ "description": "The number to be displayed (e.x. # of issues, pull requests)"
1515
+ },
1516
+ {
1517
+ "name": "scheme",
1518
+ "type": "Symbol",
1519
+ "default": "`:default`",
1520
+ "description": "Color scheme. One of `:default`, `:primary`, or `:secondary`."
1521
+ },
1522
+ {
1523
+ "name": "limit",
1524
+ "type": "Integer, nil",
1525
+ "default": "`5_000`",
1526
+ "description": "Maximum value to display. Pass `nil` for no limit. (e.x. if `count` == 6,000 and `limit` == 5000, counter will display \"5,000+\")"
1527
+ },
1528
+ {
1529
+ "name": "hide_if_zero",
1530
+ "type": "Boolean",
1531
+ "default": "`false`",
1532
+ "description": "If true, a `hidden` attribute is added to the counter if `count` is zero."
1533
+ },
1534
+ {
1535
+ "name": "text",
1536
+ "type": "String",
1537
+ "default": "`\"\"`",
1538
+ "description": "Text to display instead of count."
1539
+ },
1540
+ {
1541
+ "name": "round",
1542
+ "type": "Boolean",
1543
+ "default": "`false`",
1544
+ "description": "Whether to apply our standard rounding logic to value."
1545
+ },
1546
+ {
1547
+ "name": "system_arguments",
1548
+ "type": "Hash",
1549
+ "default": "N/A",
1550
+ "description": "[System arguments](/system-arguments)"
1551
+ }
1552
+ ]
1553
+ },
1554
+ {
1555
+ "component": "Details",
1556
+ "status": "beta",
1557
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/details.rb",
1558
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/details/default/",
1559
+ "parameters": [
1560
+ {
1561
+ "name": "overlay",
1562
+ "type": "Symbol",
1563
+ "default": "`:none`",
1564
+ "description": "Dictates the type of overlay to render with. One of `:dark`, `:default`, or `:none`."
1565
+ },
1566
+ {
1567
+ "name": "reset",
1568
+ "type": "Boolean",
1569
+ "default": "`false`",
1570
+ "description": "Defaults to false. If set to true, it will remove the default caret and remove style from the summary element"
1571
+ },
1572
+ {
1573
+ "name": "system_arguments",
1574
+ "type": "Hash",
1575
+ "default": "N/A",
1576
+ "description": "[System arguments](/system-arguments)"
1577
+ }
1578
+ ]
1579
+ },
1580
+ {
1581
+ "component": "Flash",
1582
+ "status": "beta",
1583
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/flash.rb",
1584
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/flash/default/",
1585
+ "parameters": [
1586
+ {
1587
+ "name": "full",
1588
+ "type": "Boolean",
1589
+ "default": "`false`",
1590
+ "description": "Whether the component should take up the full width of the screen."
1591
+ },
1592
+ {
1593
+ "name": "spacious",
1594
+ "type": "Boolean",
1595
+ "default": "`false`",
1596
+ "description": "Whether to add margin to the bottom of the component."
1597
+ },
1598
+ {
1599
+ "name": "dismissible",
1600
+ "type": "Boolean",
1601
+ "default": "`false`",
1602
+ "description": "Whether the component can be dismissed with an X button."
1603
+ },
1604
+ {
1605
+ "name": "icon",
1606
+ "type": "Symbol",
1607
+ "default": "`nil`",
1608
+ "description": "Name of Octicon icon to use."
1609
+ },
1610
+ {
1611
+ "name": "scheme",
1612
+ "type": "Symbol",
1613
+ "default": "`:default`",
1614
+ "description": "One of `:danger`, `:default`, `:success`, or `:warning`."
1615
+ },
1616
+ {
1617
+ "name": "system_arguments",
1618
+ "type": "Hash",
1619
+ "default": "N/A",
1620
+ "description": "[System arguments](/system-arguments)"
1621
+ }
1622
+ ]
1623
+ },
1624
+ {
1625
+ "component": "Heading",
1626
+ "status": "beta",
1627
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/heading.rb",
1628
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/heading/default/",
1629
+ "parameters": [
1630
+ {
1631
+ "name": "tag",
1632
+ "type": "String",
1633
+ "default": "N/A",
1634
+ "description": "One of `:h1`, `:h2`, `:h3`, `:h4`, `:h5`, or `:h6`."
1635
+ },
1636
+ {
1637
+ "name": "system_arguments",
1638
+ "type": "Hash",
1639
+ "default": "N/A",
1640
+ "description": "[System arguments](/system-arguments)"
1641
+ }
1642
+ ]
1643
+ },
1644
+ {
1645
+ "component": "IconButton",
1646
+ "status": "beta",
1647
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/icon_button.rb",
1648
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/icon_button/default/",
1649
+ "parameters": [
1650
+ {
1651
+ "name": "icon",
1652
+ "type": "String",
1653
+ "default": "N/A",
1654
+ "description": "Name of [Octicon](https://yattho.com/octicons/) to use."
1655
+ },
1656
+ {
1657
+ "name": "wrapper_arguments",
1658
+ "type": "Hash",
1659
+ "default": "`{}`",
1660
+ "description": "Optional keyword arguments to be passed to the wrapper `<div>` tag."
1661
+ },
1662
+ {
1663
+ "name": "scheme",
1664
+ "type": "Symbol",
1665
+ "default": "`:default`",
1666
+ "description": "One of `:danger`, `:default`, or `:invisible`."
1667
+ },
1668
+ {
1669
+ "name": "size",
1670
+ "type": "Symbol",
1671
+ "default": "`:medium`",
1672
+ "description": "One of `:large`, `:medium`, or `:small`."
1673
+ },
1674
+ {
1675
+ "name": "tag",
1676
+ "type": "Symbol",
1677
+ "default": "N/A",
1678
+ "description": "One of `:a`, `:button`, or `:summary`."
1679
+ },
1680
+ {
1681
+ "name": "type",
1682
+ "type": "Symbol",
1683
+ "default": "N/A",
1684
+ "description": "One of `:button`, `:reset`, or `:submit`."
1685
+ },
1686
+ {
1687
+ "name": "aria-label",
1688
+ "type": "String",
1689
+ "default": "N/A",
1690
+ "description": "String that can be read by assistive technology. A label should be short and concise. See the accessibility section for more information."
1691
+ },
1692
+ {
1693
+ "name": "aria-description",
1694
+ "type": "String",
1695
+ "default": "N/A",
1696
+ "description": "String that can be read by assistive technology. A description can be longer as it is intended to provide more context and information. See the accessibility section for more information."
1697
+ },
1698
+ {
1699
+ "name": "show_tooltip",
1700
+ "type": "Boolean",
1701
+ "default": "`true`",
1702
+ "description": "Whether or not to show a tooltip when this button is hovered. Tooltips should only be hidden if the aria label is redundant, i.e. if the icon has a widely understood definition."
1703
+ },
1704
+ {
1705
+ "name": "tooltip_direction",
1706
+ "type": "Symbol",
1707
+ "default": "`:s`",
1708
+ "description": "One of `:e`, `:n`, `:ne`, `:nw`, `:s`, `:se`, `:sw`, or `:w`."
1709
+ },
1710
+ {
1711
+ "name": "system_arguments",
1712
+ "type": "Hash",
1713
+ "default": "N/A",
1714
+ "description": "[System arguments](/system-arguments)"
1715
+ }
1716
+ ]
1717
+ },
1718
+ {
1719
+ "component": "Label",
1720
+ "status": "beta",
1721
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/label.rb",
1722
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/label/default/",
1723
+ "parameters": [
1724
+ {
1725
+ "name": "tag",
1726
+ "type": "Symbol",
1727
+ "default": "`:span`",
1728
+ "description": "One of `:a`, `:div`, `:span`, or `:summary`."
1729
+ },
1730
+ {
1731
+ "name": "scheme",
1732
+ "type": "Symbol",
1733
+ "default": "`:default`",
1734
+ "description": "One of `:accent`, `:attention`, `:danger`, `:default`, `:done`, `:info`, `:orange`, `:primary`, `:purple`, `:secondary`, `:severe`, `:sponsors`, `:success`, or `:warning`."
1735
+ },
1736
+ {
1737
+ "name": "size",
1738
+ "type": "Symbol",
1739
+ "default": "`:medium`",
1740
+ "description": "One of `:large` or `:medium`."
1741
+ },
1742
+ {
1743
+ "name": "inline",
1744
+ "type": "Boolean",
1745
+ "default": "`false`",
1746
+ "description": "Whether or not to render this label inline."
1747
+ },
1748
+ {
1749
+ "name": "variant",
1750
+ "type": "Symbol",
1751
+ "default": "`:none`",
1752
+ "description": "One of `:inline`, `:large`, or `:none`."
1753
+ },
1754
+ {
1755
+ "name": "system_arguments",
1756
+ "type": "Hash",
1757
+ "default": "N/A",
1758
+ "description": "[System arguments](/system-arguments)"
1759
+ }
1760
+ ]
1761
+ },
1762
+ {
1763
+ "component": "Link",
1764
+ "status": "beta",
1765
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/link.rb",
1766
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/link/default/",
1767
+ "parameters": [
1768
+ {
1769
+ "name": "tag",
1770
+ "type": "String",
1771
+ "default": "`:a`",
1772
+ "description": "One of `:a` or `:span`."
1773
+ },
1774
+ {
1775
+ "name": "href",
1776
+ "type": "String",
1777
+ "default": "`nil`",
1778
+ "description": "URL to be used for the Link. Required if tag is `:a`. If the requirements are not met an error will be raised in non production environments. In production, an empty link element will be rendered."
1779
+ },
1780
+ {
1781
+ "name": "scheme",
1782
+ "type": "Symbol",
1783
+ "default": "`:default`",
1784
+ "description": "One of `:default`, `:primary`, or `:secondary`."
1785
+ },
1786
+ {
1787
+ "name": "muted",
1788
+ "type": "Boolean",
1789
+ "default": "`false`",
1790
+ "description": "Uses light gray for Link color, and blue on hover."
1791
+ },
1792
+ {
1793
+ "name": "underline",
1794
+ "type": "Boolean",
1795
+ "default": "`true`",
1796
+ "description": "Whether or not to underline the link."
1797
+ },
1798
+ {
1799
+ "name": "system_arguments",
1800
+ "type": "Hash",
1801
+ "default": "N/A",
1802
+ "description": "[System arguments](/system-arguments)"
1803
+ }
1804
+ ]
1805
+ },
1806
+ {
1807
+ "component": "Markdown",
1808
+ "status": "beta",
1809
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/markdown.rb",
1810
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/markdown/default/",
1811
+ "parameters": [
1812
+ {
1813
+ "name": "tag",
1814
+ "type": "Symbol",
1815
+ "default": "`:div`",
1816
+ "description": "One of `:article`, `:div`, or `:td`."
1817
+ },
1818
+ {
1819
+ "name": "system_arguments",
1820
+ "type": "Hash",
1821
+ "default": "N/A",
1822
+ "description": "[System arguments](/system-arguments)"
1823
+ }
1824
+ ]
1825
+ },
1826
+ {
1827
+ "component": "Octicon",
1828
+ "status": "beta",
1829
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/octicon.rb",
1830
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/octicon/default/",
1831
+ "parameters": [
1832
+ {
1833
+ "name": "icon_name",
1834
+ "type": "Symbol, String",
1835
+ "default": "`nil`",
1836
+ "description": "Name of [Octicon](https://yattho.com/octicons/) to use."
1837
+ },
1838
+ {
1839
+ "name": "icon",
1840
+ "type": "Symbol, String",
1841
+ "default": "`nil`",
1842
+ "description": "Name of [Octicon](https://yattho.com/octicons/) to use."
1843
+ },
1844
+ {
1845
+ "name": "size",
1846
+ "type": "Symbol",
1847
+ "default": "`:small`",
1848
+ "description": "One of `:xsmall` (`12`), `:small` (`16`), or `:medium` (`24`)."
1849
+ },
1850
+ {
1851
+ "name": "use_symbol",
1852
+ "type": "Boolean",
1853
+ "default": "`false`",
1854
+ "description": "EXPERIMENTAL (May change or be removed) - Set to true when using with [OcticonSymbols](/components/alpha/octiconsymbols)."
1855
+ },
1856
+ {
1857
+ "name": "system_arguments",
1858
+ "type": "Hash",
1859
+ "default": "N/A",
1860
+ "description": "[System arguments](/system-arguments)"
1861
+ }
1862
+ ]
1863
+ },
1864
+ {
1865
+ "component": "Popover",
1866
+ "status": "beta",
1867
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/popover.rb",
1868
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/popover/default/",
1869
+ "parameters": [
1870
+ {
1871
+ "name": "system_arguments",
1872
+ "type": "Hash",
1873
+ "default": "N/A",
1874
+ "description": "[System arguments](/system-arguments)"
1875
+ }
1876
+ ]
1877
+ },
1878
+ {
1879
+ "component": "ProgressBar",
1880
+ "status": "beta",
1881
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/progress_bar.rb",
1882
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/progress_bar/default/",
1883
+ "parameters": [
1884
+ {
1885
+ "name": "size",
1886
+ "type": "Symbol",
1887
+ "default": "`:default`",
1888
+ "description": "One of `:default`, `:large`, or `:small`. Increases height."
1889
+ },
1890
+ {
1891
+ "name": "system_arguments",
1892
+ "type": "Hash",
1893
+ "default": "N/A",
1894
+ "description": "[System arguments](/system-arguments)"
1895
+ }
1896
+ ]
1897
+ },
1898
+ {
1899
+ "component": "RelativeTime",
1900
+ "status": "beta",
1901
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/relative_time.rb",
1902
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/relative_time/default/",
1903
+ "parameters": [
1904
+ {
1905
+ "name": "datetime",
1906
+ "type": "Time",
1907
+ "default": "N/A",
1908
+ "description": "The time to be formatted."
1909
+ },
1910
+ {
1911
+ "name": "tense",
1912
+ "type": "Symbol",
1913
+ "default": "`:auto`",
1914
+ "description": "Which tense to use. One of `:auto`, `:future`, or `:past`."
1915
+ },
1916
+ {
1917
+ "name": "prefix",
1918
+ "type": "sring",
1919
+ "default": "`nil`",
1920
+ "description": "What to prefix the relative ime display with."
1921
+ },
1922
+ {
1923
+ "name": "second",
1924
+ "type": "Symbol",
1925
+ "default": "`SECOND_DEFAULT`",
1926
+ "description": "What format seconds should take. One of `nil`, `:numeric`, or `:two_digit`."
1927
+ },
1928
+ {
1929
+ "name": "minute",
1930
+ "type": "Symbol",
1931
+ "default": "`MINUTE_DEFAULT`",
1932
+ "description": "What format minues should take. One of `nil`, `:numeric`, or `:two_digit`."
1933
+ },
1934
+ {
1935
+ "name": "hour",
1936
+ "type": "Symbol",
1937
+ "default": "`HOUR_DEFAULT`",
1938
+ "description": "What format hours should take. One of `nil`, `:numeric`, or `:two_digit`."
1939
+ },
1940
+ {
1941
+ "name": "weekday",
1942
+ "type": "Symbol",
1943
+ "default": "`WEEKDAY_DEFAULT`",
1944
+ "description": "What format weekdays should take. One of `nil`, `:long`, `:narrow`, or `:short`."
1945
+ },
1946
+ {
1947
+ "name": "day",
1948
+ "type": "Symbol",
1949
+ "default": "`DAY_DEFAULT`",
1950
+ "description": "What format days should take. One of `nil`, `:numeric`, or `:two_digit`."
1951
+ },
1952
+ {
1953
+ "name": "month",
1954
+ "type": "Symbol",
1955
+ "default": "`MONTH_DEFAULT`",
1956
+ "description": "What format months should take. One of `nil`, `:long`, `:narrow`, `:numeric`, `:short`, or `:two_digit`."
1957
+ },
1958
+ {
1959
+ "name": "year",
1960
+ "type": "Symbol",
1961
+ "default": "`YEAR_DEFAULT`",
1962
+ "description": "What format years should take. One of `nil`, `:numeric`, or `:two_digit`."
1963
+ },
1964
+ {
1965
+ "name": "time_zone_name",
1966
+ "type": "Symbol",
1967
+ "default": "`TIMEZONENAME_DEFAULT`",
1968
+ "description": "What format the time zone should take. One of `nil`, `:long`, `:long_generic`, `:long_offset`, `:short`, `:short_generic`, or `:short_offset`."
1969
+ },
1970
+ {
1971
+ "name": "threshold",
1972
+ "type": "string",
1973
+ "default": "`nil`",
1974
+ "description": "The threshold, in ISO-8601 'durations' format, at which relative time displays become absolute."
1975
+ },
1976
+ {
1977
+ "name": "precision",
1978
+ "type": "Symbol",
1979
+ "default": "`PRECISION_DEFAULT`",
1980
+ "description": "The precision elapsed time should display. One of `nil`, `:day`, `:hour`, `:minute`, `:month`, `:second`, or `:year`."
1981
+ },
1982
+ {
1983
+ "name": "format",
1984
+ "type": "Symbol",
1985
+ "default": "`nil`",
1986
+ "description": "The format the display should take. One of `:auto`, `:elapsed`, or `:micro`."
1987
+ },
1988
+ {
1989
+ "name": "format_style",
1990
+ "type": "Symbol",
1991
+ "default": "`nil`",
1992
+ "description": "The format the display should take. One of `nil`, `:long`, `:narrow`, or `:short`."
1993
+ },
1994
+ {
1995
+ "name": "lang",
1996
+ "type": "string",
1997
+ "default": "`nil`",
1998
+ "description": "The language to use."
1999
+ },
2000
+ {
2001
+ "name": "title",
2002
+ "type": "string",
2003
+ "default": "`nil`",
2004
+ "description": "Provide a custom title to the element."
2005
+ },
2006
+ {
2007
+ "name": "system_arguments",
2008
+ "type": "Hash",
2009
+ "default": "N/A",
2010
+ "description": "[System arguments](/system-arguments)"
2011
+ }
2012
+ ]
2013
+ },
2014
+ {
2015
+ "component": "Spinner",
2016
+ "status": "beta",
2017
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/spinner.rb",
2018
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/spinner/default/",
2019
+ "parameters": [
2020
+ {
2021
+ "name": "size",
2022
+ "type": "Symbol",
2023
+ "default": "`:medium`",
2024
+ "description": "One of `[:large, 64]`, `[:medium, 32]`, or `[:small, 16]`."
2025
+ },
2026
+ {
2027
+ "name": "style",
2028
+ "type": "String",
2029
+ "default": "`box-sizing: content-box; color: var(--color-icon-primary);`",
2030
+ "description": "Custom element styles."
2031
+ },
2032
+ {
2033
+ "name": "system_arguments",
2034
+ "type": "Hash",
2035
+ "default": "N/A",
2036
+ "description": "[System arguments](/system-arguments)"
2037
+ }
2038
+ ]
2039
+ },
2040
+ {
2041
+ "component": "State",
2042
+ "status": "beta",
2043
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/state.rb",
2044
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/state/default/",
2045
+ "parameters": [
2046
+ {
2047
+ "name": "title",
2048
+ "type": "String",
2049
+ "default": "N/A",
2050
+ "description": "`title` HTML attribute."
2051
+ },
2052
+ {
2053
+ "name": "scheme",
2054
+ "type": "Symbol",
2055
+ "default": "`:default`",
2056
+ "description": "Background color. One of `:closed`, `:default`, `:green`, `:merged`, `:open`, `:purple`, or `:red`."
2057
+ },
2058
+ {
2059
+ "name": "tag",
2060
+ "type": "Symbol",
2061
+ "default": "`:span`",
2062
+ "description": "HTML tag for element. One of `:div` or `:span`."
2063
+ },
2064
+ {
2065
+ "name": "size",
2066
+ "type": "Symbol",
2067
+ "default": "`:default`",
2068
+ "description": "One of `:default` or `:small`."
2069
+ },
2070
+ {
2071
+ "name": "system_arguments",
2072
+ "type": "Hash",
2073
+ "default": "N/A",
2074
+ "description": "[System arguments](/system-arguments)"
2075
+ }
2076
+ ]
2077
+ },
2078
+ {
2079
+ "component": "Subhead",
2080
+ "status": "beta",
2081
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/subhead.rb",
2082
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/subhead/default/",
2083
+ "parameters": [
2084
+ {
2085
+ "name": "spacious",
2086
+ "type": "Boolean",
2087
+ "default": "`false`",
2088
+ "description": "Whether to add spacing to the Subhead."
2089
+ },
2090
+ {
2091
+ "name": "hide_border",
2092
+ "type": "Boolean",
2093
+ "default": "`false`",
2094
+ "description": "Whether to hide the border under the heading."
2095
+ },
2096
+ {
2097
+ "name": "system_arguments",
2098
+ "type": "Hash",
2099
+ "default": "N/A",
2100
+ "description": "[System arguments](/system-arguments)"
2101
+ }
2102
+ ]
2103
+ },
2104
+ {
2105
+ "component": "Text",
2106
+ "status": "beta",
2107
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/text.rb",
2108
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/text/default/",
2109
+ "parameters": [
2110
+ {
2111
+ "name": "tag",
2112
+ "type": "Symbol",
2113
+ "default": "`:span`",
2114
+ "description": ""
2115
+ },
2116
+ {
2117
+ "name": "system_arguments",
2118
+ "type": "Hash",
2119
+ "default": "N/A",
2120
+ "description": "[System arguments](/system-arguments)"
2121
+ }
2122
+ ]
2123
+ },
2124
+ {
2125
+ "component": "TimelineItem",
2126
+ "status": "beta",
2127
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/timeline_item.rb",
2128
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/timeline_item/default/",
2129
+ "parameters": [
2130
+ {
2131
+ "name": "condensed",
2132
+ "type": "Boolean",
2133
+ "default": "`false`",
2134
+ "description": "Reduce the vertical padding and remove the background from the badge item. Most commonly used in commits."
2135
+ },
2136
+ {
2137
+ "name": "system_arguments",
2138
+ "type": "Hash",
2139
+ "default": "N/A",
2140
+ "description": "[System arguments](/system-arguments)"
2141
+ }
2142
+ ]
2143
+ },
2144
+ {
2145
+ "component": "Truncate",
2146
+ "status": "beta",
2147
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/beta/truncate.rb",
2148
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/beta/truncate/default/",
2149
+ "parameters": [
2150
+ {
2151
+ "name": "system_arguments",
2152
+ "type": "Hash",
2153
+ "default": "N/A",
2154
+ "description": "[System arguments](/system-arguments)"
2155
+ }
2156
+ ]
2157
+ },
2158
+ {
2159
+ "component": "Box",
2160
+ "status": "stable",
2161
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/box.rb",
2162
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/box/default/",
2163
+ "parameters": [
2164
+ {
2165
+ "name": "system_arguments",
2166
+ "type": "Hash",
2167
+ "default": "N/A",
2168
+ "description": "[System arguments](/system-arguments)"
2169
+ }
2170
+ ]
2171
+ },
2172
+ {
2173
+ "component": "Button",
2174
+ "status": "deprecated",
2175
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/button_component.rb",
2176
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/button/default/",
2177
+ "parameters": [
2178
+ {
2179
+ "name": "scheme",
2180
+ "type": "Symbol",
2181
+ "default": "`:default`",
2182
+ "description": "One of `:danger`, `:default`, `:invisible`, `:link`, `:outline`, or `:primary`."
2183
+ },
2184
+ {
2185
+ "name": "variant",
2186
+ "type": "Symbol",
2187
+ "default": "`nil`",
2188
+ "description": "DEPRECATED. One of `:medium` or `:small`."
2189
+ },
2190
+ {
2191
+ "name": "size",
2192
+ "type": "Symbol",
2193
+ "default": "`:medium`",
2194
+ "description": "One of `:medium` or `:small`."
2195
+ },
2196
+ {
2197
+ "name": "tag",
2198
+ "type": "Symbol",
2199
+ "default": "`:button`",
2200
+ "description": "One of `:a`, `:button`, or `:summary`."
2201
+ },
2202
+ {
2203
+ "name": "type",
2204
+ "type": "Symbol",
2205
+ "default": "`:button`",
2206
+ "description": "One of `:button`, `:reset`, or `:submit`."
2207
+ },
2208
+ {
2209
+ "name": "group_item",
2210
+ "type": "Boolean",
2211
+ "default": "`false`",
2212
+ "description": "Whether button is part of a ButtonGroup."
2213
+ },
2214
+ {
2215
+ "name": "block",
2216
+ "type": "Boolean",
2217
+ "default": "`false`",
2218
+ "description": "Whether button is full-width with `display: block`."
2219
+ },
2220
+ {
2221
+ "name": "dropdown",
2222
+ "type": "Boolean",
2223
+ "default": "`false`",
2224
+ "description": "Whether or not to render a dropdown caret."
2225
+ },
2226
+ {
2227
+ "name": "system_arguments",
2228
+ "type": "Hash",
2229
+ "default": "N/A",
2230
+ "description": "[System arguments](/system-arguments)"
2231
+ }
2232
+ ]
2233
+ },
2234
+ {
2235
+ "component": "IconButton",
2236
+ "status": "deprecated",
2237
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/icon_button.rb",
2238
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/icon_button/default/",
2239
+ "parameters": [
2240
+ {
2241
+ "name": "scheme",
2242
+ "type": "Symbol",
2243
+ "default": "`:default`",
2244
+ "description": "One of `:danger` or `:default`."
2245
+ },
2246
+ {
2247
+ "name": "icon",
2248
+ "type": "String",
2249
+ "default": "N/A",
2250
+ "description": "Name of [Octicon](https://yattho.com/octicons/) to use."
2251
+ },
2252
+ {
2253
+ "name": "tag",
2254
+ "type": "Symbol",
2255
+ "default": "N/A",
2256
+ "description": "One of `:a`, `:button`, or `:summary`."
2257
+ },
2258
+ {
2259
+ "name": "type",
2260
+ "type": "Symbol",
2261
+ "default": "N/A",
2262
+ "description": "One of `:button`, `:reset`, or `:submit`."
2263
+ },
2264
+ {
2265
+ "name": "aria-label",
2266
+ "type": "String",
2267
+ "default": "N/A",
2268
+ "description": "String that can be read by assistive technology. A label should be short and concise. See the accessibility section for more information."
2269
+ },
2270
+ {
2271
+ "name": "aria-description",
2272
+ "type": "String",
2273
+ "default": "N/A",
2274
+ "description": "String that can be read by assistive technology. A description can be longer as it is intended to provide more context and information. See the accessibility section for more information."
2275
+ },
2276
+ {
2277
+ "name": "tooltip_direction",
2278
+ "type": "Symbol",
2279
+ "default": "`:s`",
2280
+ "description": "One of `:e`, `:n`, `:ne`, `:nw`, `:s`, `:se`, `:sw`, or `:w`."
2281
+ },
2282
+ {
2283
+ "name": "box",
2284
+ "type": "Boolean",
2285
+ "default": "`false`",
2286
+ "description": "Whether the button is in a [BorderBox](/components/beta/borderbox). If `true`, the button will have the `Box-btn-octicon` class."
2287
+ },
2288
+ {
2289
+ "name": "system_arguments",
2290
+ "type": "Hash",
2291
+ "default": "N/A",
2292
+ "description": "[System arguments](/system-arguments)"
2293
+ }
2294
+ ]
2295
+ },
2296
+ {
2297
+ "component": "Layout",
2298
+ "status": "alpha",
2299
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/layout_component.rb",
2300
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/layout/default/",
2301
+ "parameters": [
2302
+ {
2303
+ "name": "responsive",
2304
+ "type": "Boolean",
2305
+ "default": "`false`",
2306
+ "description": "Whether to collapse layout to a single column at smaller widths."
2307
+ },
2308
+ {
2309
+ "name": "side",
2310
+ "type": "Symbol",
2311
+ "default": "`:right`",
2312
+ "description": "Which side to display the sidebar on. One of `:left` or `:right`."
2313
+ },
2314
+ {
2315
+ "name": "sidebar_col",
2316
+ "type": "Integer",
2317
+ "default": "`3`",
2318
+ "description": "Sidebar column width."
2319
+ },
2320
+ {
2321
+ "name": "system_arguments",
2322
+ "type": "Hash",
2323
+ "default": "N/A",
2324
+ "description": "[System arguments](/system-arguments)"
2325
+ }
2326
+ ]
2327
+ },
2328
+ {
2329
+ "component": "LocalTime",
2330
+ "status": "deprecated",
2331
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/local_time.rb",
2332
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/local_time/default/",
2333
+ "parameters": [
2334
+ {
2335
+ "name": "datetime",
2336
+ "type": "DateTime",
2337
+ "default": "N/A",
2338
+ "description": "The date to parse"
2339
+ },
2340
+ {
2341
+ "name": "initial_text",
2342
+ "type": "String",
2343
+ "default": "`nil`",
2344
+ "description": "Text to render before component is initialized"
2345
+ },
2346
+ {
2347
+ "name": "weekday",
2348
+ "type": "Symbol",
2349
+ "default": "`:short`",
2350
+ "description": "One of `:long` or `:short`."
2351
+ },
2352
+ {
2353
+ "name": "year",
2354
+ "type": "Symbol",
2355
+ "default": "`:numeric`",
2356
+ "description": "One of `:2-digit` or `:numeric`."
2357
+ },
2358
+ {
2359
+ "name": "month",
2360
+ "type": "Symbol",
2361
+ "default": "`:short`",
2362
+ "description": "One of `:long` or `:short`."
2363
+ },
2364
+ {
2365
+ "name": "day",
2366
+ "type": "Symbol",
2367
+ "default": "`:numeric`",
2368
+ "description": "One of `:2-digit` or `:numeric`."
2369
+ },
2370
+ {
2371
+ "name": "hour",
2372
+ "type": "Symbol",
2373
+ "default": "`:numeric`",
2374
+ "description": "One of `:2-digit` or `:numeric`."
2375
+ },
2376
+ {
2377
+ "name": "minute",
2378
+ "type": "Symbol",
2379
+ "default": "`:numeric`",
2380
+ "description": "One of `:2-digit` or `:numeric`."
2381
+ },
2382
+ {
2383
+ "name": "second",
2384
+ "type": "Symbol",
2385
+ "default": "`:numeric`",
2386
+ "description": "One of `:2-digit` or `:numeric`."
2387
+ },
2388
+ {
2389
+ "name": "time_zone_name",
2390
+ "type": "Symbol",
2391
+ "default": "`:short`",
2392
+ "description": "One of `:long` or `:short`."
2393
+ },
2394
+ {
2395
+ "name": "system_arguments",
2396
+ "type": "Hash",
2397
+ "default": "N/A",
2398
+ "description": "[System arguments](/system-arguments)"
2399
+ }
2400
+ ]
2401
+ },
2402
+ {
2403
+ "component": "Navigation::Tab",
2404
+ "status": "alpha",
2405
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/navigation/tab_component.rb",
2406
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/navigation/tab/default/",
2407
+ "parameters": [
2408
+ {
2409
+ "name": "list",
2410
+ "type": "Boolean",
2411
+ "default": "`false`",
2412
+ "description": "Whether the Tab is an item in a `<ul>` list."
2413
+ },
2414
+ {
2415
+ "name": "selected",
2416
+ "type": "Boolean",
2417
+ "default": "`false`",
2418
+ "description": "Whether the Tab is selected or not."
2419
+ },
2420
+ {
2421
+ "name": "with_panel",
2422
+ "type": "Boolean",
2423
+ "default": "`false`",
2424
+ "description": "Whether the Tab has an associated panel."
2425
+ },
2426
+ {
2427
+ "name": "panel_id",
2428
+ "type": "String",
2429
+ "default": "`\"\"`",
2430
+ "description": "Only applies if `with_panel` is `true`. Unique id of panel."
2431
+ },
2432
+ {
2433
+ "name": "icon_classes",
2434
+ "type": "Boolean",
2435
+ "default": "`\"\"`",
2436
+ "description": "Classes that must always be applied to icons."
2437
+ },
2438
+ {
2439
+ "name": "wrapper_arguments",
2440
+ "type": "Hash",
2441
+ "default": "`{}`",
2442
+ "description": "[System arguments](/system-arguments) to be used in the `<li>` wrapper when the tab is an item in a list."
2443
+ },
2444
+ {
2445
+ "name": "system_arguments",
2446
+ "type": "Hash",
2447
+ "default": "N/A",
2448
+ "description": "[System arguments](/system-arguments)"
2449
+ }
2450
+ ]
2451
+ },
2452
+ {
2453
+ "component": "TimeAgo",
2454
+ "status": "deprecated",
2455
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/time_ago_component.rb",
2456
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/time_ago/default/",
2457
+ "parameters": [
2458
+ {
2459
+ "name": "time",
2460
+ "type": "Time",
2461
+ "default": "N/A",
2462
+ "description": "The time to be formatted"
2463
+ },
2464
+ {
2465
+ "name": "micro",
2466
+ "type": "Boolean",
2467
+ "default": "`false`",
2468
+ "description": "If true then the text will be formatted in \"micro\" mode, using as few characters as possible"
2469
+ },
2470
+ {
2471
+ "name": "system_arguments",
2472
+ "type": "Hash",
2473
+ "default": "N/A",
2474
+ "description": "[System arguments](/system-arguments)"
2475
+ }
2476
+ ]
2477
+ },
2478
+ {
2479
+ "component": "Tooltip",
2480
+ "status": "deprecated",
2481
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/tooltip.rb",
2482
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/tooltip/default/",
2483
+ "parameters": [
2484
+ {
2485
+ "name": "label",
2486
+ "type": "String",
2487
+ "default": "N/A",
2488
+ "description": "the text to appear in the tooltip"
2489
+ },
2490
+ {
2491
+ "name": "direction",
2492
+ "type": "String",
2493
+ "default": "`:n`",
2494
+ "description": "Direction of the tooltip. One of `:e`, `:n`, `:ne`, `:nw`, `:s`, `:se`, `:sw`, or `:w`."
2495
+ },
2496
+ {
2497
+ "name": "align",
2498
+ "type": "String",
2499
+ "default": "`:default`",
2500
+ "description": "Align tooltips to the left or right of an element, combined with a `direction` to specify north or south. One of `:default`, `:left_1`, `:left_2`, `:right_1`, or `:right_2`."
2501
+ },
2502
+ {
2503
+ "name": "multiline",
2504
+ "type": "Boolean",
2505
+ "default": "`false`",
2506
+ "description": "Use this when you have long content"
2507
+ },
2508
+ {
2509
+ "name": "no_delay",
2510
+ "type": "Boolean",
2511
+ "default": "`false`",
2512
+ "description": "By default the tooltips have a slight delay before appearing. Set true to override this"
2513
+ },
2514
+ {
2515
+ "name": "system_arguments",
2516
+ "type": "Hash",
2517
+ "default": "N/A",
2518
+ "description": "[System arguments](/system-arguments)"
2519
+ }
2520
+ ]
2521
+ },
2522
+ {
2523
+ "component": "Truncate",
2524
+ "status": "beta",
2525
+ "source": "https://github.com/yattho/view_components/tree/main/app/components/yattho/truncate.rb",
2526
+ "lookbook": "https://yattho.com/view-components/lookbook/inspect/yattho/truncate/default/",
2527
+ "parameters": [
2528
+ {
2529
+ "name": "tag",
2530
+ "type": "Symbol",
2531
+ "default": "`:div`",
2532
+ "description": "One of `:div`, `:p`, `:span`, or `:strong`."
2533
+ },
2534
+ {
2535
+ "name": "inline",
2536
+ "type": "Boolean",
2537
+ "default": "`false`",
2538
+ "description": "Whether the element is inline (or inline-block)."
2539
+ },
2540
+ {
2541
+ "name": "expandable",
2542
+ "type": "Boolean",
2543
+ "default": "`false`",
2544
+ "description": "Whether the entire string should be revealed on hover. Can only be used in conjunction with `inline`."
2545
+ },
2546
+ {
2547
+ "name": "max_width",
2548
+ "type": "Integer",
2549
+ "default": "`nil`",
2550
+ "description": "Sets the max-width of the text."
2551
+ },
2552
+ {
2553
+ "name": "system_arguments",
2554
+ "type": "Hash",
2555
+ "default": "N/A",
2556
+ "description": "[System arguments](/system-arguments)"
2557
+ }
2558
+ ]
2559
+ }
2560
+ ]