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,153 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/core_ext/string/indent"
4
+ require_relative "helpers/rubocop_helpers"
5
+
6
+ module ERBLint
7
+ module Linters
8
+ # Migrates from `Yattho::BlankslateComponent` to `Yattho::Beta::Blankslate`.
9
+ class BlankslateApiMigration < Linter
10
+ include ERBLint::LinterRegistry
11
+ include Helpers::RubocopHelpers
12
+
13
+ def run(processed_source)
14
+ processed_source.ast.descendants(:erb).each do |erb_node|
15
+ _, _, code_node = *erb_node
16
+ code = code_node.children.first.strip
17
+
18
+ next unless code.include?("Yattho::BlankslateComponent")
19
+ # Don't fix custom blankslates
20
+ next if code.end_with?("do", "|")
21
+
22
+ line = erb_node.loc.source_line
23
+ indent = line.split("<%=").first.size
24
+
25
+ ast = erb_ast(code)
26
+ kwargs = ast.arguments.first.arguments.last
27
+
28
+ replacement = build_replacement_blankslate(kwargs, indent)
29
+
30
+ add_offense(processed_source.to_source_range(erb_node.loc),
31
+ "`Yattho::BlankslateComponent` is deprecated. `Yattho::Beta::Blankslate` should be used instead", replacement)
32
+ end
33
+ end
34
+
35
+ def autocorrect(_, offense)
36
+ return unless offense.context
37
+
38
+ lambda do |corrector|
39
+ corrector.replace(offense.source_range, offense.context)
40
+ end
41
+ end
42
+
43
+ private
44
+
45
+ def build_blankslate_arguments(kwargs)
46
+ new_blankslate = {
47
+ arguments: {},
48
+ slots: {
49
+ visual_icon: {},
50
+ visual_image: {},
51
+ heading: {
52
+ tag: ":h2"
53
+ },
54
+ description: {},
55
+ primary_action: {},
56
+ secondary_action: {}
57
+ }
58
+ }
59
+
60
+ kwargs&.pairs&.each do |pair|
61
+ source_value = pair.value.source
62
+
63
+ case pair.key.value.to_sym
64
+ when :title
65
+ new_blankslate[:slots][:heading][:content] = extract_value(pair.value)
66
+ when :title_tag
67
+ new_blankslate[:slots][:heading][:tag] = source_value
68
+ when :icon
69
+ new_blankslate[:slots][:visual_icon][:icon] = source_value
70
+ when :icon_size
71
+ new_blankslate[:slots][:visual_icon][:size] = source_value
72
+ when :image_src
73
+ new_blankslate[:slots][:visual_image][:src] = source_value
74
+ when :image_alt
75
+ new_blankslate[:slots][:visual_image][:alt] = source_value
76
+ when :description
77
+ new_blankslate[:slots][:description][:content] = extract_value(pair.value)
78
+ when :button_text
79
+ new_blankslate[:slots][:primary_action][:content] = extract_value(pair.value)
80
+ when :button_url
81
+ new_blankslate[:slots][:primary_action][:href] = source_value
82
+ when :button_classes
83
+ new_blankslate[:slots][:primary_action][:classes] = source_value
84
+ when :link_text
85
+ new_blankslate[:slots][:secondary_action][:content] = extract_value(pair.value)
86
+ when :link_url
87
+ new_blankslate[:slots][:secondary_action][:href] = source_value
88
+ when :large
89
+ next # Large does not exist anymore
90
+ else
91
+ new_blankslate[:arguments][pair.key.source] = source_value
92
+ end
93
+ end
94
+
95
+ new_blankslate
96
+ end
97
+
98
+ def build_replacement_blankslate(kwargs, indent)
99
+ data = build_blankslate_arguments(kwargs)
100
+ component_args = args_to_s(data[:arguments])
101
+
102
+ # If Blankslate has no heading, we don't update it.
103
+ return if data[:slots][:heading][:content].nil?
104
+ # If Blankslate sets both image and icon. don't update it.
105
+ return if data[:slots][:visual_icon].present? && data[:slots][:visual_image].present?
106
+
107
+ slots = data[:slots].map do |slot, slot_data|
108
+ next if slot_data.empty?
109
+
110
+ slot_args = args_to_s(slot_data.except(:content))
111
+ content = slot_data[:content]
112
+
113
+ if content
114
+ <<~HTML.indent(2)
115
+ <% c.#{slot}#{slot_args} do %>
116
+ #{content}
117
+ <% end %>
118
+ HTML
119
+ else
120
+ <<~HTML.indent(2)
121
+ <% c.#{slot}#{slot_args} %>
122
+ HTML
123
+ end
124
+ end.compact.join("\n").chomp
125
+
126
+ # Body needs to match the file indentation.
127
+ body = <<~HTML.indent(indent).chomp
128
+ #{slots}
129
+ <% end %>
130
+ HTML
131
+
132
+ # The render call will always be aligned.
133
+ "<%= render Yattho::Beta::Blankslate.new#{component_args} do |c| %>\n#{body}"
134
+ end
135
+
136
+ def args_to_s(args)
137
+ string_args = args.except(:__polymorphic_type).map { |k, v| "#{k}: #{v}" }.join(", ")
138
+
139
+ string_args = ":#{args[:__polymorphic_type]}, #{string_args}" if args[:__polymorphic_type]
140
+
141
+ return string_args if string_args.blank?
142
+
143
+ "(#{string_args})"
144
+ end
145
+
146
+ def extract_value(value)
147
+ return value.value if value.type == :str
148
+
149
+ "<%= #{value.source} %>"
150
+ end
151
+ end
152
+ end
153
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+
5
+ module ERBLint
6
+ module Linters
7
+ # Counts the number of times a HTML Blankslate is used instead of the component.
8
+ class BlankslateComponentMigrationCounter < BaseLinter
9
+ MESSAGE = "We are migrating Blankslate to use [Yattho::Beta::Blankslate](https://yattho.com/view-components/components/beta/blankslate), please try to use that instead of raw HTML."
10
+ CLASSES = %w[blankslate].freeze
11
+ TAGS = %w[div].freeze
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+
5
+ module ERBLint
6
+ module Linters
7
+ # Counts the number of times a HTML breadcrumbs is used instead of the component.
8
+ class BreadcrumbsComponentMigrationCounter < BaseLinter
9
+ MESSAGE = "We are migrating breadcrumbs to use [Yattho::Breadcrumbs](https://yattho.com/view-components/components/beta/breadcrumbs), please try to use that instead of raw HTML."
10
+ CLASSES = %w[breadcrumb-item breadcrumb-item-selected].freeze
11
+ TAGS = %w[li].freeze
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+ require_relative "autocorrectable"
5
+ require_relative "argument_mappers/button"
6
+
7
+ module ERBLint
8
+ module Linters
9
+ # Counts the number of times a HTML button is used instead of the component.
10
+ class ButtonComponentMigrationCounter < BaseLinter
11
+ include Autocorrectable
12
+
13
+ TAGS = Yattho::ViewComponents::Constants.get(
14
+ component: "Yattho::Beta::BaseButton",
15
+ constant: "TAG_OPTIONS"
16
+ ).freeze
17
+
18
+ # CloseButton component has preference when this class is seen in conjunction with `btn`.
19
+ DISALLOWED_CLASSES = %w[close-button].freeze
20
+ CLASSES = %w[btn btn-link].freeze
21
+ MESSAGE = "We are migrating buttons to use [Yattho::Beta::Button](https://yattho.com/view-components/components/beta/button), please try to use that instead of raw HTML."
22
+ ARGUMENT_MAPPER = ArgumentMappers::Button
23
+ COMPONENT = "Yattho::Beta::Button"
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+ require_relative "autocorrectable"
5
+ require_relative "argument_mappers/clipboard_copy"
6
+
7
+ module ERBLint
8
+ module Linters
9
+ # Counts the number of times a HTML clipboard-copy is used instead of the component.
10
+ class ClipboardCopyComponentMigrationCounter < BaseLinter
11
+ include Autocorrectable
12
+
13
+ TAGS = %w[clipboard-copy].freeze
14
+ REQUIRED_ARGUMENTS = [/for|value/, "aria-label"].freeze
15
+ MESSAGE = "We are migrating clipboard-copy to use [Yattho::Beta::ClipboardCopy](https://yattho.com/view-components/components/clipboardcopy), please try to use that instead of raw HTML."
16
+ ARGUMENT_MAPPER = ArgumentMappers::ClipboardCopy
17
+ COMPONENT = "Yattho::Beta::ClipboardCopy"
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,121 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+ require_relative "autocorrectable"
5
+ require_relative "argument_mappers/close_button"
6
+ require_relative "helpers/rubocop_helpers"
7
+
8
+ module ERBLint
9
+ module Linters
10
+ # Counts the number of times a HTML clipboard-copy is used instead of the component.
11
+ class CloseButtonComponentMigrationCounter < BaseLinter
12
+ include Autocorrectable
13
+ include Helpers::RubocopHelpers
14
+
15
+ TAGS = %w[button].freeze
16
+ CLASSES = %w[close-button].freeze
17
+ MESSAGE = "We are migrating close-button to use [Yattho::Beta::CloseButton](https://yattho.com/view-components/components/beta/closebutton), please try to use that instead of raw HTML."
18
+ ARGUMENT_MAPPER = ArgumentMappers::CloseButton
19
+ COMPONENT = "Yattho::Beta::CloseButton"
20
+
21
+ ALLOWED_OCTICON_ARGS = %w[icon aria-label aria].freeze
22
+
23
+ private
24
+
25
+ def map_arguments(tag, tag_tree)
26
+ # We can only autocorrect cases where the tag only has an octicon as content.
27
+ return if tag_tree[:children].size != 1
28
+
29
+ nodes = tag_tree[:children].first.children
30
+ erb_nodes = nodes.select { |node| node.try(:type) == :erb }
31
+
32
+ # Don't correct if there are multiple ERB nodes.
33
+ return if erb_nodes.size != 1
34
+
35
+ _, _, code_node = *erb_nodes.first
36
+ code = code_node.children.first.strip
37
+ ast = erb_ast(code)
38
+
39
+ # We'll only autocorrect cases where the only content is an octicon.
40
+ if ast.method_name == :yattho_octicon || ast.method_name == :octicon
41
+ octicon_kwargs = ast.arguments[1]
42
+ icon = icon(ast.arguments)
43
+ elsif ast.method_name == :render && code.include?("Yattho::Beta::Octicon")
44
+ octicon_kwargs = ast.arguments.first.arguments.last
45
+ icon = icon(ast.arguments.first.arguments)
46
+ else
47
+ return
48
+ end
49
+
50
+ # Don't autocorrect if using a custom icon
51
+ return unless icon == :x
52
+ # Don't autocorrect if the octicon has custom arguments
53
+ return if custom_attributes?(octicon_kwargs)
54
+
55
+ octicon_aria_label = aria_label_from_octicon(octicon_kwargs)
56
+ tag_aria_label = tag.attributes.each.find { |a| a.name == "aria-label" }
57
+
58
+ # Can't autocorrect if there is no aria-label.
59
+ return if octicon_aria_label.blank? && tag_aria_label.blank?
60
+
61
+ args = ARGUMENT_MAPPER.new(tag).to_s
62
+
63
+ # Argument mapper will add the `aria-label` if the tag has it.
64
+ return args if tag_aria_label.present?
65
+
66
+ aria_label_arg = "\"aria-label\": #{octicon_aria_label}"
67
+
68
+ return aria_label_arg if args.blank?
69
+
70
+ "#{args}, #{aria_label_arg}"
71
+ rescue ArgumentMappers::ConversionError
72
+ nil
73
+ end
74
+
75
+ # Overriding the basic correction since this component does not uses content blocks.
76
+ def correction(args)
77
+ return if args.nil?
78
+
79
+ correction = "<%= render #{self.class::COMPONENT}.new"
80
+ correction += "(#{args})" if args.present?
81
+ "#{correction} %>"
82
+ end
83
+
84
+ # Overriding the basic correction since this component will rewrite the whole tag block.
85
+ def add_correction(tag, tag_tree)
86
+ offense_loc = tag.loc.with(end_pos: tag_tree[:closing].loc.to_range.last)
87
+ add_offense(offense_loc, tag_tree[:message], tag_tree[:correction])
88
+ end
89
+
90
+ # Extracts the aria-label value from the octicon kwargs.
91
+ # It can either be in `"aria-label": "value"`` or `aria: { label: "value" } }`.
92
+ def aria_label_from_octicon(kwargs)
93
+ return if kwargs.blank? || kwargs.type != :hash || kwargs.pairs.blank?
94
+
95
+ aria_label = kwargs.pairs.find { |x| x.key.value == :'aria-label' }
96
+
97
+ return aria_label.value.source if aria_label
98
+
99
+ aria_hash = kwargs.pairs.find { |x| x.key.value == :aria }
100
+
101
+ return if aria_hash.blank?
102
+
103
+ aria_label = aria_hash.value.pairs.find { |x| x.key.value == :label }
104
+
105
+ aria_label&.value&.source
106
+ end
107
+
108
+ def custom_attributes?(kwargs)
109
+ return false if kwargs.blank? || kwargs.type != :hash || kwargs.pairs.blank?
110
+
111
+ (kwargs.keys.map { |key| key.value.to_s } - ALLOWED_OCTICON_ARGS).present?
112
+ end
113
+
114
+ def icon(args)
115
+ return args.first.value.to_sym if args.first.type == :sym || args.first.type == :str
116
+
117
+ args.last.pairs.find { |x| x.key.value == :icon }.value.value.to_sym
118
+ end
119
+ end
120
+ end
121
+ end
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "helpers/deprecated_components_helpers"
4
+ require_relative "severity_schema"
5
+
6
+ require "erblint-github/linters/custom_helpers"
7
+
8
+ module ERBLint
9
+ module Linters
10
+ # Lints against deprecated components
11
+ class DeprecatedComponentsCounter < Linter
12
+ include CustomHelpers
13
+ include ERBLint::LinterRegistry
14
+ include Helpers::DeprecatedComponentsHelpers
15
+
16
+ self.config_schema = SeveritySchema
17
+
18
+ def run(processed_source)
19
+ processed_source.ast.descendants(:erb).each do |erb_node|
20
+ _, _, code_node = *erb_node
21
+ code = code_node.children.first.strip
22
+
23
+ next unless code.include?("Yattho::")
24
+
25
+ deprecated_components.each do |component|
26
+ next unless code.include?(component)
27
+
28
+ add_offense(erb_node.loc, message(component))
29
+ end
30
+ end
31
+
32
+ counter_correct?(processed_source)
33
+ end
34
+
35
+ def autocorrect(processed_source, offense)
36
+ return unless offense.context
37
+
38
+ lambda do |corrector|
39
+ if processed_source.file_content.include?("erblint:counter #{self.class.name.gsub('ERBLint::Linters::', '')}")
40
+ # update the counter if exists
41
+ corrector.replace(offense.source_range, offense.context)
42
+ else
43
+ # add comment with counter if none
44
+ corrector.insert_before(processed_source.source_buffer.source_range, "#{offense.context}\n")
45
+ end
46
+ end
47
+ end
48
+
49
+ # this override is necessary because of the github/erblint-github `CustomHelpers`
50
+ # module. `counter_correct?` is provided by this module, and calls `add_offense`
51
+ # directly. there is no simple way to modify this without updating the gem and
52
+ # creating what would likely be an API that is non-standard and/or difficult to use
53
+ #
54
+ # https://github.com/github/erblint-github/blob/main/lib/erblint-github/linters/custom_helpers.rb
55
+ def add_offense(source_range, message, context = nil, severity = nil)
56
+ super(source_range, message, context, severity || @config.severity)
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,73 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "pathname"
4
+ require_relative "helpers/rubocop_helpers"
5
+
6
+ module ERBLint
7
+ module Linters
8
+ # Finds usages of ActionList CSS classes.
9
+ class DisallowActionList < Linter
10
+ include ERBLint::LinterRegistry
11
+ include TagTreeHelpers
12
+
13
+ class ConfigSchema < LinterConfig
14
+ property :ignore_files, accepts: array_of?(String), default: -> { [] }
15
+ end
16
+ self.config_schema = ConfigSchema
17
+
18
+ def run(processed_source)
19
+ return if ignored?(processed_source.filename)
20
+
21
+ class_regex = /ActionList[\w-]*/
22
+ tags, * = build_tag_tree(processed_source)
23
+
24
+ tags.each do |tag|
25
+ next if tag.closing?
26
+
27
+ classes =
28
+ if (class_attrib = tag.attributes["class"])
29
+ loc = class_attrib.value_node.loc
30
+ loc.source_buffer.source[loc.begin_pos...loc.end_pos]
31
+ else
32
+ ""
33
+ end
34
+
35
+ indices = [].tap do |results|
36
+ classes.scan(class_regex) do
37
+ results << Regexp.last_match.offset(0)
38
+ end
39
+ end
40
+
41
+ next if indices.empty?
42
+
43
+ indices.each do |(start_idx, end_idx)|
44
+ new_loc = class_attrib.value_node.loc.with(
45
+ begin_pos: class_attrib.value_node.loc.begin_pos + start_idx,
46
+ end_pos: class_attrib.value_node.loc.begin_pos + end_idx
47
+ )
48
+
49
+ add_offense(
50
+ new_loc,
51
+ "ActionList classes are only designed to be used by Yattho View Components and " \
52
+ "should be considered private. Please reach out in the #yattho-rails Slack channel."
53
+ )
54
+ end
55
+ end
56
+ end
57
+
58
+ private
59
+
60
+ def ignored?(filename)
61
+ filename = Pathname(filename)
62
+
63
+ begin
64
+ filename = filename.relative_path_from(Pathname(Dir.getwd))
65
+ rescue ArgumentError
66
+ # raised if the filename does not have Dir.getwd as a prefix
67
+ end
68
+
69
+ @config.ignore_files.any? { |pattern| filename.fnmatch?(pattern) }
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+ require_relative "autocorrectable"
5
+ require_relative "argument_mappers/flash"
6
+
7
+ module ERBLint
8
+ module Linters
9
+ # Counts the number of times a HTML flash is used instead of the component.
10
+ class FlashMigrationCounter < BaseLinter
11
+ include Autocorrectable
12
+
13
+ TAGS = %w[div].freeze
14
+ CLASSES = %w[flash].freeze
15
+ MESSAGE = "We are migrating flashes to use [Yattho::Beta::Flash](https://yattho.com/view-components/components/beta/flash), please try to use that instead of raw HTML."
16
+ ARGUMENT_MAPPER = ArgumentMappers::Flash
17
+ COMPONENT = "Yattho::Beta::Flash"
18
+
19
+ def map_arguments(tag, tag_tree)
20
+ # We can only autocorrect elements with simple text as content.
21
+ return nil if tag_tree[:children].size != 1
22
+ # Hash children indicates that there are tags in the content.
23
+ return nil if tag_tree[:children].first.is_a?(Hash)
24
+
25
+ content = tag_tree[:children].first
26
+
27
+ # Don't accept content with ERB blocks
28
+ return nil if content.type != :text || content.children&.any? { |n| n.try(:type) == :erb }
29
+
30
+ ARGUMENT_MAPPER.new(tag).to_s
31
+ rescue ArgumentMappers::ConversionError
32
+ nil
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "yattho/deprecations"
4
+
5
+ module ERBLint
6
+ module Linters
7
+ module Helpers
8
+ # Helpers to share between DeprecatedComponents ERB lint and Rubocop cop
9
+ module DeprecatedComponentsHelpers
10
+ def message(component_name)
11
+ Yattho::Deprecations.deprecation_message(component_name)
12
+ end
13
+
14
+ def deprecated_components
15
+ Yattho::Deprecations.deprecated_components
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ERBLint
4
+ module Linters
5
+ module Helpers
6
+ # Provides helpers related to RuboCop.
7
+ module RubocopHelpers
8
+ def erb_ast(code)
9
+ RuboCop::AST::ProcessedSource.new(code, RUBY_VERSION.to_f).ast
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "base_linter"
4
+ require_relative "autocorrectable"
5
+ require_relative "argument_mappers/label"
6
+
7
+ module ERBLint
8
+ module Linters
9
+ # Counts the number of times a HTML label is used instead of the component.
10
+ class LabelComponentMigrationCounter < BaseLinter
11
+ include Autocorrectable
12
+
13
+ TAGS = Yattho::ViewComponents::Constants.get(
14
+ component: "Yattho::Beta::Label",
15
+ constant: "TAG_OPTIONS"
16
+ ).freeze
17
+
18
+ CLASSES = %w[Label].freeze
19
+ MESSAGE = "We are migrating labels to use [Yattho::Beta::Label](https://yattho.com/view-components/components/label), please try to use that instead of raw HTML."
20
+ ARGUMENT_MAPPER = ArgumentMappers::Label
21
+ COMPONENT = "Yattho::Beta::Label"
22
+ end
23
+ end
24
+ end