yattho_view_components 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +0 -0
- data/README.md +17 -0
- data/app/assets/javascripts/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/dropdown.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/image_crop.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
- data/app/assets/javascripts/app/components/yattho/alpha/nav_list.d.ts +25 -0
- data/app/assets/javascripts/app/components/yattho/alpha/segmented_control.d.ts +12 -0
- data/app/assets/javascripts/app/components/yattho/alpha/tab_container.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
- data/app/assets/javascripts/app/components/yattho/alpha/tool_tip.d.ts +25 -0
- data/app/assets/javascripts/app/components/yattho/alpha/x_banner.d.ts +11 -0
- data/app/assets/javascripts/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/local_time.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/time_ago_component.d.ts +1 -0
- data/app/assets/javascripts/app/components/yattho/yattho.d.ts +16 -0
- data/app/assets/javascripts/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
- data/app/assets/javascripts/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
- data/app/assets/javascripts/lib/yattho/forms/yattho_text_field.d.ts +1 -0
- data/app/assets/javascripts/yattho_view_components.js +2 -0
- data/app/assets/javascripts/yattho_view_components.js.map +1 -0
- data/app/assets/styles/yattho_view_components.css +5958 -0
- data/app/assets/styles/yattho_view_components.css.map +1 -0
- data/app/components/yattho/alpha/action_list/divider.rb +35 -0
- data/app/components/yattho/alpha/action_list/heading.html.erb +8 -0
- data/app/components/yattho/alpha/action_list/heading.rb +38 -0
- data/app/components/yattho/alpha/action_list/item.html.erb +39 -0
- data/app/components/yattho/alpha/action_list/item.rb +242 -0
- data/app/components/yattho/alpha/action_list.css +697 -0
- data/app/components/yattho/alpha/action_list.css.json +1 -0
- data/app/components/yattho/alpha/action_list.css.map +1 -0
- data/app/components/yattho/alpha/action_list.html.erb +15 -0
- data/app/components/yattho/alpha/action_list.pcss +682 -0
- data/app/components/yattho/alpha/action_list.rb +112 -0
- data/app/components/yattho/alpha/auto_complete/auto_complete.html.erb +24 -0
- data/app/components/yattho/alpha/auto_complete/item.rb +46 -0
- data/app/components/yattho/alpha/auto_complete.css +130 -0
- data/app/components/yattho/alpha/auto_complete.css.json +1 -0
- data/app/components/yattho/alpha/auto_complete.css.map +1 -0
- data/app/components/yattho/alpha/auto_complete.pcss +118 -0
- data/app/components/yattho/alpha/auto_complete.rb +159 -0
- data/app/components/yattho/alpha/banner.css +131 -0
- data/app/components/yattho/alpha/banner.css.json +1 -0
- data/app/components/yattho/alpha/banner.css.map +1 -0
- data/app/components/yattho/alpha/banner.html.erb +33 -0
- data/app/components/yattho/alpha/banner.pcss +126 -0
- data/app/components/yattho/alpha/banner.rb +138 -0
- data/app/components/yattho/alpha/button_marketing.css +211 -0
- data/app/components/yattho/alpha/button_marketing.css.json +1 -0
- data/app/components/yattho/alpha/button_marketing.css.map +1 -0
- data/app/components/yattho/alpha/button_marketing.pcss +175 -0
- data/app/components/yattho/alpha/button_marketing.rb +70 -0
- data/app/components/yattho/alpha/dialog/body.rb +28 -0
- data/app/components/yattho/alpha/dialog/footer.rb +34 -0
- data/app/components/yattho/alpha/dialog/header.html.erb +15 -0
- data/app/components/yattho/alpha/dialog/header.rb +40 -0
- data/app/components/yattho/alpha/dialog.css +613 -0
- data/app/components/yattho/alpha/dialog.css.json +1 -0
- data/app/components/yattho/alpha/dialog.css.map +1 -0
- data/app/components/yattho/alpha/dialog.html.erb +12 -0
- data/app/components/yattho/alpha/dialog.pcss +484 -0
- data/app/components/yattho/alpha/dialog.rb +164 -0
- data/app/components/yattho/alpha/dropdown/menu.d.ts +1 -0
- data/app/components/yattho/alpha/dropdown/menu.html.erb +24 -0
- data/app/components/yattho/alpha/dropdown/menu.js +1 -0
- data/app/components/yattho/alpha/dropdown/menu.rb +108 -0
- data/app/components/yattho/alpha/dropdown/menu.ts +1 -0
- data/app/components/yattho/alpha/dropdown.css +264 -0
- data/app/components/yattho/alpha/dropdown.css.json +1 -0
- data/app/components/yattho/alpha/dropdown.css.map +1 -0
- data/app/components/yattho/alpha/dropdown.d.ts +1 -0
- data/app/components/yattho/alpha/dropdown.html.erb +8 -0
- data/app/components/yattho/alpha/dropdown.js +1 -0
- data/app/components/yattho/alpha/dropdown.pcss +260 -0
- data/app/components/yattho/alpha/dropdown.rb +154 -0
- data/app/components/yattho/alpha/dropdown.ts +1 -0
- data/app/components/yattho/alpha/hellip_button.rb +41 -0
- data/app/components/yattho/alpha/hidden_text_expander.rb +57 -0
- data/app/components/yattho/alpha/image.rb +50 -0
- data/app/components/yattho/alpha/image_crop.d.ts +1 -0
- data/app/components/yattho/alpha/image_crop.html.erb +12 -0
- data/app/components/yattho/alpha/image_crop.js +1 -0
- data/app/components/yattho/alpha/image_crop.rb +39 -0
- data/app/components/yattho/alpha/image_crop.ts +1 -0
- data/app/components/yattho/alpha/layout.css +398 -0
- data/app/components/yattho/alpha/layout.css.json +1 -0
- data/app/components/yattho/alpha/layout.css.map +1 -0
- data/app/components/yattho/alpha/layout.html.erb +5 -0
- data/app/components/yattho/alpha/layout.pcss +268 -0
- data/app/components/yattho/alpha/layout.rb +282 -0
- data/app/components/yattho/alpha/menu.css +117 -0
- data/app/components/yattho/alpha/menu.css.json +1 -0
- data/app/components/yattho/alpha/menu.css.map +1 -0
- data/app/components/yattho/alpha/menu.html.erb +6 -0
- data/app/components/yattho/alpha/menu.pcss +119 -0
- data/app/components/yattho/alpha/menu.rb +76 -0
- data/app/components/yattho/alpha/modal_dialog.d.ts +18 -0
- data/app/components/yattho/alpha/modal_dialog.js +162 -0
- data/app/components/yattho/alpha/modal_dialog.ts +173 -0
- data/app/components/yattho/alpha/nav_list/item.html.erb +13 -0
- data/app/components/yattho/alpha/nav_list/item.rb +125 -0
- data/app/components/yattho/alpha/nav_list/section.html.erb +3 -0
- data/app/components/yattho/alpha/nav_list/section.rb +85 -0
- data/app/components/yattho/alpha/nav_list.d.ts +25 -0
- data/app/components/yattho/alpha/nav_list.html.erb +10 -0
- data/app/components/yattho/alpha/nav_list.js +130 -0
- data/app/components/yattho/alpha/nav_list.rb +112 -0
- data/app/components/yattho/alpha/nav_list.ts +129 -0
- data/app/components/yattho/alpha/octicon_symbols.html.erb +3 -0
- data/app/components/yattho/alpha/octicon_symbols.rb +60 -0
- data/app/components/yattho/alpha/segmented_control/item.html.erb +13 -0
- data/app/components/yattho/alpha/segmented_control/item.rb +29 -0
- data/app/components/yattho/alpha/segmented_control.css +164 -0
- data/app/components/yattho/alpha/segmented_control.css.json +1 -0
- data/app/components/yattho/alpha/segmented_control.css.map +1 -0
- data/app/components/yattho/alpha/segmented_control.d.ts +12 -0
- data/app/components/yattho/alpha/segmented_control.html.erb +7 -0
- data/app/components/yattho/alpha/segmented_control.js +47 -0
- data/app/components/yattho/alpha/segmented_control.pcss +134 -0
- data/app/components/yattho/alpha/segmented_control.rb +96 -0
- data/app/components/yattho/alpha/segmented_control.ts +41 -0
- data/app/components/yattho/alpha/tab_container.d.ts +1 -0
- data/app/components/yattho/alpha/tab_container.js +1 -0
- data/app/components/yattho/alpha/tab_container.rb +43 -0
- data/app/components/yattho/alpha/tab_container.ts +1 -0
- data/app/components/yattho/alpha/tab_nav.css +106 -0
- data/app/components/yattho/alpha/tab_nav.css.json +1 -0
- data/app/components/yattho/alpha/tab_nav.css.map +1 -0
- data/app/components/yattho/alpha/tab_nav.html.erb +9 -0
- data/app/components/yattho/alpha/tab_nav.pcss +100 -0
- data/app/components/yattho/alpha/tab_nav.rb +129 -0
- data/app/components/yattho/alpha/tab_panels.html.erb +14 -0
- data/app/components/yattho/alpha/tab_panels.rb +82 -0
- data/app/components/yattho/alpha/text_field.css +836 -0
- data/app/components/yattho/alpha/text_field.css.json +1 -0
- data/app/components/yattho/alpha/text_field.css.map +1 -0
- data/app/components/yattho/alpha/text_field.pcss +689 -0
- data/app/components/yattho/alpha/text_field.rb +105 -0
- data/app/components/yattho/alpha/toggle_switch.css +253 -0
- data/app/components/yattho/alpha/toggle_switch.css.json +1 -0
- data/app/components/yattho/alpha/toggle_switch.css.map +1 -0
- data/app/components/yattho/alpha/toggle_switch.d.ts +29 -0
- data/app/components/yattho/alpha/toggle_switch.html.erb +43 -0
- data/app/components/yattho/alpha/toggle_switch.js +156 -0
- data/app/components/yattho/alpha/toggle_switch.pcss +250 -0
- data/app/components/yattho/alpha/toggle_switch.rb +90 -0
- data/app/components/yattho/alpha/toggle_switch.ts +173 -0
- data/app/components/yattho/alpha/tool_tip.d.ts +25 -0
- data/app/components/yattho/alpha/tool_tip.js +369 -0
- data/app/components/yattho/alpha/tool_tip.ts +370 -0
- data/app/components/yattho/alpha/tooltip.rb +127 -0
- data/app/components/yattho/alpha/underline_nav.css +148 -0
- data/app/components/yattho/alpha/underline_nav.css.json +1 -0
- data/app/components/yattho/alpha/underline_nav.css.map +1 -0
- data/app/components/yattho/alpha/underline_nav.html.erb +13 -0
- data/app/components/yattho/alpha/underline_nav.pcss +133 -0
- data/app/components/yattho/alpha/underline_nav.rb +138 -0
- data/app/components/yattho/alpha/underline_panels.html.erb +18 -0
- data/app/components/yattho/alpha/underline_panels.rb +86 -0
- data/app/components/yattho/alpha/x_banner.d.ts +11 -0
- data/app/components/yattho/alpha/x_banner.js +35 -0
- data/app/components/yattho/alpha/x_banner.ts +38 -0
- data/app/components/yattho/base_component.rb +173 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.html.erb +28 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.js +1 -0
- data/app/components/yattho/beta/auto_complete/auto_complete.ts +1 -0
- data/app/components/yattho/beta/auto_complete/item.html.erb +21 -0
- data/app/components/yattho/beta/auto_complete/item.rb +80 -0
- data/app/components/yattho/beta/auto_complete.rb +201 -0
- data/app/components/yattho/beta/avatar.css +74 -0
- data/app/components/yattho/beta/avatar.css.json +1 -0
- data/app/components/yattho/beta/avatar.css.map +1 -0
- data/app/components/yattho/beta/avatar.pcss +73 -0
- data/app/components/yattho/beta/avatar.rb +84 -0
- data/app/components/yattho/beta/avatar_stack.css +138 -0
- data/app/components/yattho/beta/avatar_stack.css.json +1 -0
- data/app/components/yattho/beta/avatar_stack.css.map +1 -0
- data/app/components/yattho/beta/avatar_stack.html.erb +10 -0
- data/app/components/yattho/beta/avatar_stack.pcss +141 -0
- data/app/components/yattho/beta/avatar_stack.rb +92 -0
- data/app/components/yattho/beta/base_button.rb +48 -0
- data/app/components/yattho/beta/blankslate.css +90 -0
- data/app/components/yattho/beta/blankslate.css.json +1 -0
- data/app/components/yattho/beta/blankslate.css.map +1 -0
- data/app/components/yattho/beta/blankslate.html.erb +17 -0
- data/app/components/yattho/beta/blankslate.pcss +90 -0
- data/app/components/yattho/beta/blankslate.rb +238 -0
- data/app/components/yattho/beta/border_box/header.html.erb +4 -0
- data/app/components/yattho/beta/border_box/header.rb +52 -0
- data/app/components/yattho/beta/border_box.css +279 -0
- data/app/components/yattho/beta/border_box.css.json +1 -0
- data/app/components/yattho/beta/border_box.css.map +1 -0
- data/app/components/yattho/beta/border_box.html.erb +12 -0
- data/app/components/yattho/beta/border_box.pcss +284 -0
- data/app/components/yattho/beta/border_box.rb +147 -0
- data/app/components/yattho/beta/breadcrumbs.css +27 -0
- data/app/components/yattho/beta/breadcrumbs.css.json +1 -0
- data/app/components/yattho/beta/breadcrumbs.css.map +1 -0
- data/app/components/yattho/beta/breadcrumbs.html.erb +8 -0
- data/app/components/yattho/beta/breadcrumbs.pcss +30 -0
- data/app/components/yattho/beta/breadcrumbs.rb +82 -0
- data/app/components/yattho/beta/button.css +365 -0
- data/app/components/yattho/beta/button.css.json +1 -0
- data/app/components/yattho/beta/button.css.map +1 -0
- data/app/components/yattho/beta/button.html.erb +23 -0
- data/app/components/yattho/beta/button.pcss +344 -0
- data/app/components/yattho/beta/button.rb +198 -0
- data/app/components/yattho/beta/button_group.html.erb +5 -0
- data/app/components/yattho/beta/button_group.rb +59 -0
- data/app/components/yattho/beta/clipboard_copy.d.ts +1 -0
- data/app/components/yattho/beta/clipboard_copy.html.erb +8 -0
- data/app/components/yattho/beta/clipboard_copy.js +43 -0
- data/app/components/yattho/beta/clipboard_copy.rb +50 -0
- data/app/components/yattho/beta/clipboard_copy.ts +55 -0
- data/app/components/yattho/beta/close_button.rb +41 -0
- data/app/components/yattho/beta/counter.css +36 -0
- data/app/components/yattho/beta/counter.css.json +1 -0
- data/app/components/yattho/beta/counter.css.map +1 -0
- data/app/components/yattho/beta/counter.pcss +35 -0
- data/app/components/yattho/beta/counter.rb +114 -0
- data/app/components/yattho/beta/details.html.erb +4 -0
- data/app/components/yattho/beta/details.rb +72 -0
- data/app/components/yattho/beta/flash.css +150 -0
- data/app/components/yattho/beta/flash.css.json +1 -0
- data/app/components/yattho/beta/flash.css.map +1 -0
- data/app/components/yattho/beta/flash.html.erb +10 -0
- data/app/components/yattho/beta/flash.pcss +143 -0
- data/app/components/yattho/beta/flash.rb +72 -0
- data/app/components/yattho/beta/heading.rb +46 -0
- data/app/components/yattho/beta/icon_button.html.erb +6 -0
- data/app/components/yattho/beta/icon_button.rb +110 -0
- data/app/components/yattho/beta/label.css +105 -0
- data/app/components/yattho/beta/label.css.json +1 -0
- data/app/components/yattho/beta/label.css.map +1 -0
- data/app/components/yattho/beta/label.pcss +103 -0
- data/app/components/yattho/beta/label.rb +102 -0
- data/app/components/yattho/beta/link.css +62 -0
- data/app/components/yattho/beta/link.css.json +1 -0
- data/app/components/yattho/beta/link.css.map +1 -0
- data/app/components/yattho/beta/link.pcss +60 -0
- data/app/components/yattho/beta/link.rb +103 -0
- data/app/components/yattho/beta/markdown.rb +290 -0
- data/app/components/yattho/beta/octicon.html.erb +7 -0
- data/app/components/yattho/beta/octicon.rb +88 -0
- data/app/components/yattho/beta/popover.css +235 -0
- data/app/components/yattho/beta/popover.css.json +1 -0
- data/app/components/yattho/beta/popover.css.map +1 -0
- data/app/components/yattho/beta/popover.html.erb +6 -0
- data/app/components/yattho/beta/popover.pcss +225 -0
- data/app/components/yattho/beta/popover.rb +127 -0
- data/app/components/yattho/beta/progress_bar.css +26 -0
- data/app/components/yattho/beta/progress_bar.css.json +1 -0
- data/app/components/yattho/beta/progress_bar.css.map +1 -0
- data/app/components/yattho/beta/progress_bar.html.erb +5 -0
- data/app/components/yattho/beta/progress_bar.pcss +26 -0
- data/app/components/yattho/beta/progress_bar.rb +72 -0
- data/app/components/yattho/beta/relative_time.rb +166 -0
- data/app/components/yattho/beta/spinner.html.erb +4 -0
- data/app/components/yattho/beta/spinner.rb +45 -0
- data/app/components/yattho/beta/state.css +50 -0
- data/app/components/yattho/beta/state.css.json +1 -0
- data/app/components/yattho/beta/state.css.map +1 -0
- data/app/components/yattho/beta/state.pcss +50 -0
- data/app/components/yattho/beta/state.rb +76 -0
- data/app/components/yattho/beta/subhead.css +54 -0
- data/app/components/yattho/beta/subhead.css.json +1 -0
- data/app/components/yattho/beta/subhead.css.map +1 -0
- data/app/components/yattho/beta/subhead.html.erb +5 -0
- data/app/components/yattho/beta/subhead.pcss +49 -0
- data/app/components/yattho/beta/subhead.rb +135 -0
- data/app/components/yattho/beta/text.rb +27 -0
- data/app/components/yattho/beta/timeline_item.css +95 -0
- data/app/components/yattho/beta/timeline_item.css.json +1 -0
- data/app/components/yattho/beta/timeline_item.css.map +1 -0
- data/app/components/yattho/beta/timeline_item.html.erb +5 -0
- data/app/components/yattho/beta/timeline_item.pcss +93 -0
- data/app/components/yattho/beta/timeline_item.rb +90 -0
- data/app/components/yattho/beta/truncate.css +37 -0
- data/app/components/yattho/beta/truncate.css.json +1 -0
- data/app/components/yattho/beta/truncate.css.map +1 -0
- data/app/components/yattho/beta/truncate.html.erb +5 -0
- data/app/components/yattho/beta/truncate.pcss +31 -0
- data/app/components/yattho/beta/truncate.rb +114 -0
- data/app/components/yattho/blankslate_component.html.erb +25 -0
- data/app/components/yattho/blankslate_component.rb +156 -0
- data/app/components/yattho/box.rb +25 -0
- data/app/components/yattho/button_component.html.erb +12 -0
- data/app/components/yattho/button_component.rb +175 -0
- data/app/components/yattho/component.rb +139 -0
- data/app/components/yattho/conditional_wrapper.rb +36 -0
- data/app/components/yattho/content.rb +12 -0
- data/app/components/yattho/dropdown/menu.rb +14 -0
- data/app/components/yattho/dropdown.rb +7 -0
- data/app/components/yattho/hellip_button.rb +7 -0
- data/app/components/yattho/icon_button.html.erb +12 -0
- data/app/components/yattho/icon_button.rb +109 -0
- data/app/components/yattho/label_component.rb +7 -0
- data/app/components/yattho/layout_component.html.erb +9 -0
- data/app/components/yattho/layout_component.rb +71 -0
- data/app/components/yattho/link_component.rb +7 -0
- data/app/components/yattho/local_time.d.ts +1 -0
- data/app/components/yattho/local_time.js +1 -0
- data/app/components/yattho/local_time.rb +64 -0
- data/app/components/yattho/local_time.ts +1 -0
- data/app/components/yattho/markdown.rb +7 -0
- data/app/components/yattho/menu_component.rb +7 -0
- data/app/components/yattho/navigation/tab_component.html.erb +11 -0
- data/app/components/yattho/navigation/tab_component.rb +166 -0
- data/app/components/yattho/octicon_component.rb +7 -0
- data/app/components/yattho/octicon_symbols_component.rb +7 -0
- data/app/components/yattho/popover_component.rb +8 -0
- data/app/components/yattho/spinner_component.rb +7 -0
- data/app/components/yattho/state_component.rb +7 -0
- data/app/components/yattho/subhead_component.rb +7 -0
- data/app/components/yattho/tab_container_component.rb +7 -0
- data/app/components/yattho/time_ago_component.d.ts +1 -0
- data/app/components/yattho/time_ago_component.js +1 -0
- data/app/components/yattho/time_ago_component.rb +51 -0
- data/app/components/yattho/time_ago_component.ts +1 -0
- data/app/components/yattho/timeline_item_component.rb +13 -0
- data/app/components/yattho/tooltip.rb +91 -0
- data/app/components/yattho/truncate.css +30 -0
- data/app/components/yattho/truncate.css.json +1 -0
- data/app/components/yattho/truncate.css.map +1 -0
- data/app/components/yattho/truncate.pcss +30 -0
- data/app/components/yattho/truncate.rb +55 -0
- data/app/components/yattho/yattho.d.ts +16 -0
- data/app/components/yattho/yattho.js +16 -0
- data/app/components/yattho/yattho.pcss +37 -0
- data/app/components/yattho/yattho.ts +16 -0
- data/app/forms/after_content_form/after_content.html.erb +1 -0
- data/app/forms/after_content_form.rb +13 -0
- data/app/forms/application_form.rb +5 -0
- data/app/forms/array_check_box_group_form/places_lopez_caption.html.erb +1 -0
- data/app/forms/array_check_box_group_form.rb +15 -0
- data/app/forms/both_types_of_caption_form/first_name_caption.html.erb +1 -0
- data/app/forms/both_types_of_caption_form.rb +13 -0
- data/app/forms/caption_template_form/age_middle_aged_caption.html.erb +1 -0
- data/app/forms/caption_template_form/age_young_caption.html.erb +1 -0
- data/app/forms/caption_template_form/cool_caption.html.erb +1 -0
- data/app/forms/caption_template_form/first_name_caption.html.erb +1 -0
- data/app/forms/caption_template_form.rb +22 -0
- data/app/forms/check_box_group_form.rb +28 -0
- data/app/forms/check_box_with_nested_form.rb +39 -0
- data/app/forms/composed_form.rb +14 -0
- data/app/forms/example_toggle_switch_form/example_field_caption.html.erb +1 -0
- data/app/forms/example_toggle_switch_form.rb +8 -0
- data/app/forms/first_name_form.rb +13 -0
- data/app/forms/horizontal_form.rb +34 -0
- data/app/forms/immediate_validation_form.rb +29 -0
- data/app/forms/invalid_form.rb +21 -0
- data/app/forms/last_name_form.rb +13 -0
- data/app/forms/multi_input_form.rb +27 -0
- data/app/forms/multi_text_field_form.rb +27 -0
- data/app/forms/name_with_question_mark_form/enabled_caption.html.erb +1 -0
- data/app/forms/name_with_question_mark_form.rb +11 -0
- data/app/forms/radio_button_group_form.rb +12 -0
- data/app/forms/radio_button_with_nested_form.rb +40 -0
- data/app/forms/select_list_form.rb +13 -0
- data/app/forms/single_text_field_form.rb +13 -0
- data/app/forms/submit_button_form.rb +26 -0
- data/app/forms/text_field_and_checkbox_form.rb +19 -0
- data/app/helpers/yattho/form_helper.rb +23 -0
- data/app/lib/yattho/audited/dsl.rb +32 -0
- data/app/lib/yattho/class_name_helper.rb +29 -0
- data/app/lib/yattho/css/layout.css +1541 -0
- data/app/lib/yattho/css/layout.css.json +1 -0
- data/app/lib/yattho/css/utilities.css +7304 -0
- data/app/lib/yattho/css/utilities.css.json +1 -0
- data/app/lib/yattho/fetch_or_fallback_helper.rb +63 -0
- data/app/lib/yattho/join_style_arguments_helper.rb +14 -0
- data/app/lib/yattho/octicon/cache.rb +45 -0
- data/app/lib/yattho/status/dsl.rb +44 -0
- data/app/lib/yattho/tab_nav_helper.rb +35 -0
- data/app/lib/yattho/tabbed_component_helper.rb +44 -0
- data/app/lib/yattho/test_selector_helper.rb +20 -0
- data/app/lib/yattho/underline_nav_helper.rb +44 -0
- data/app/lib/yattho/view_helper.rb +22 -0
- data/lib/postcss_mixins/activeIndicatorLine.pcss +11 -0
- data/lib/postcss_mixins/clearfix.pcss +12 -0
- data/lib/postcss_mixins/focusBoxShadowInset.pcss +6 -0
- data/lib/postcss_mixins/focusOutline.pcss +5 -0
- data/lib/postcss_mixins/focusOutlineOnEmphasis.pcss +6 -0
- data/lib/postcss_mixins/minTouchTarget.js +20 -0
- data/lib/postcss_mixins/targetBoxShadow.pcss +7 -0
- data/lib/rubocop/config/default.yml +20 -0
- data/lib/rubocop/cop/yattho/base_cop.rb +28 -0
- data/lib/rubocop/cop/yattho/component_name_migration.rb +37 -0
- data/lib/rubocop/cop/yattho/deprecated_arguments.rb +317 -0
- data/lib/rubocop/cop/yattho/deprecated_button_arguments.rb +51 -0
- data/lib/rubocop/cop/yattho/deprecated_components.rb +49 -0
- data/lib/rubocop/cop/yattho/deprecated_label_schemes.rb +68 -0
- data/lib/rubocop/cop/yattho/deprecated_label_variants.rb +73 -0
- data/lib/rubocop/cop/yattho/deprecated_layout_component.rb +30 -0
- data/lib/rubocop/cop/yattho/no_tag_memoize.rb +43 -0
- data/lib/rubocop/cop/yattho/system_argument_instead_of_class.rb +57 -0
- data/lib/rubocop/cop/yattho/test_selector.rb +48 -0
- data/lib/rubocop/cop/yattho/yattho_octicon.rb +219 -0
- data/lib/rubocop/cop/yattho.rb +3 -0
- data/lib/tasks/custom_utilities.yml +310 -0
- data/lib/tasks/docs.rake +541 -0
- data/lib/tasks/helpers/ast_processor.rb +44 -0
- data/lib/tasks/helpers/ast_traverser.rb +77 -0
- data/lib/tasks/static.rake +15 -0
- data/lib/tasks/test.rake +83 -0
- data/lib/tasks/utilities.rake +109 -0
- data/lib/tasks/yattho_view_components.rake +47 -0
- data/lib/yattho/classify/utilities.rb +204 -0
- data/lib/yattho/classify/utilities.yml +1817 -0
- data/lib/yattho/classify/validation.rb +18 -0
- data/lib/yattho/classify.rb +135 -0
- data/lib/yattho/deprecations.rb +99 -0
- data/lib/yattho/deprecations.yml +109 -0
- data/lib/yattho/example_image.rb +8 -0
- data/lib/yattho/form_components.rb +37 -0
- data/lib/yattho/forms/acts_as_component.rb +118 -0
- data/lib/yattho/forms/base.html.erb +8 -0
- data/lib/yattho/forms/base.rb +133 -0
- data/lib/yattho/forms/base_component.rb +76 -0
- data/lib/yattho/forms/buffer_rewriter.rb +51 -0
- data/lib/yattho/forms/builder.rb +87 -0
- data/lib/yattho/forms/button.html.erb +4 -0
- data/lib/yattho/forms/button.rb +68 -0
- data/lib/yattho/forms/caption.html.erb +10 -0
- data/lib/yattho/forms/caption.rb +29 -0
- data/lib/yattho/forms/check_box.html.erb +16 -0
- data/lib/yattho/forms/check_box.rb +46 -0
- data/lib/yattho/forms/check_box_group.html.erb +12 -0
- data/lib/yattho/forms/check_box_group.rb +14 -0
- data/lib/yattho/forms/dsl/button_input.rb +29 -0
- data/lib/yattho/forms/dsl/check_box_group_input.rb +54 -0
- data/lib/yattho/forms/dsl/check_box_input.rb +54 -0
- data/lib/yattho/forms/dsl/form_object.rb +25 -0
- data/lib/yattho/forms/dsl/form_reference_input.rb +59 -0
- data/lib/yattho/forms/dsl/hidden_input.rb +29 -0
- data/lib/yattho/forms/dsl/input.rb +282 -0
- data/lib/yattho/forms/dsl/input_group.rb +34 -0
- data/lib/yattho/forms/dsl/input_methods.rb +91 -0
- data/lib/yattho/forms/dsl/multi_input.rb +55 -0
- data/lib/yattho/forms/dsl/radio_button_group_input.rb +38 -0
- data/lib/yattho/forms/dsl/radio_button_input.rb +37 -0
- data/lib/yattho/forms/dsl/select_list_input.rb +61 -0
- data/lib/yattho/forms/dsl/submit_button_input.rb +29 -0
- data/lib/yattho/forms/dsl/text_area_input.rb +33 -0
- data/lib/yattho/forms/dsl/text_field_input.rb +88 -0
- data/lib/yattho/forms/dsl/toggle_switch_input.rb +35 -0
- data/lib/yattho/forms/form_control.html.erb +22 -0
- data/lib/yattho/forms/form_control.rb +25 -0
- data/lib/yattho/forms/form_list.html.erb +5 -0
- data/lib/yattho/forms/form_list.rb +21 -0
- data/lib/yattho/forms/form_reference.html.erb +3 -0
- data/lib/yattho/forms/form_reference.rb +18 -0
- data/lib/yattho/forms/group.html.erb +5 -0
- data/lib/yattho/forms/group.rb +27 -0
- data/lib/yattho/forms/hidden_field.html.erb +1 -0
- data/lib/yattho/forms/hidden_field.rb +15 -0
- data/lib/yattho/forms/multi.html.erb +7 -0
- data/lib/yattho/forms/multi.rb +14 -0
- data/lib/yattho/forms/radio_button.html.erb +16 -0
- data/lib/yattho/forms/radio_button.rb +29 -0
- data/lib/yattho/forms/radio_button_group.html.erb +12 -0
- data/lib/yattho/forms/radio_button_group.rb +14 -0
- data/lib/yattho/forms/select_list.html.erb +5 -0
- data/lib/yattho/forms/select_list.rb +29 -0
- data/lib/yattho/forms/separator.html.erb +1 -0
- data/lib/yattho/forms/separator.rb +8 -0
- data/lib/yattho/forms/spacing_wrapper.html.erb +3 -0
- data/lib/yattho/forms/spacing_wrapper.rb +8 -0
- data/lib/yattho/forms/submit_button.html.erb +1 -0
- data/lib/yattho/forms/submit_button.rb +14 -0
- data/lib/yattho/forms/text_area.html.erb +5 -0
- data/lib/yattho/forms/text_area.rb +20 -0
- data/lib/yattho/forms/text_field.html.erb +19 -0
- data/lib/yattho/forms/text_field.rb +36 -0
- data/lib/yattho/forms/toggle_switch.html.erb +22 -0
- data/lib/yattho/forms/toggle_switch.rb +17 -0
- data/lib/yattho/forms/toggle_switch_form.rb +74 -0
- data/lib/yattho/forms/toggle_switch_input.d.ts +5 -0
- data/lib/yattho/forms/toggle_switch_input.js +29 -0
- data/lib/yattho/forms/toggle_switch_input.ts +19 -0
- data/lib/yattho/forms/utils.rb +28 -0
- data/lib/yattho/forms/yattho_multi_input.d.ts +10 -0
- data/lib/yattho/forms/yattho_multi_input.js +45 -0
- data/lib/yattho/forms/yattho_multi_input.ts +46 -0
- data/lib/yattho/forms/yattho_text_field.d.ts +1 -0
- data/lib/yattho/forms/yattho_text_field.js +62 -0
- data/lib/yattho/forms/yattho_text_field.ts +48 -0
- data/lib/yattho/view_components/audited.rb +14 -0
- data/lib/yattho/view_components/constants.rb +55 -0
- data/lib/yattho/view_components/engine.rb +69 -0
- data/lib/yattho/view_components/linters/argument_mappers/base.rb +103 -0
- data/lib/yattho/view_components/linters/argument_mappers/button.rb +75 -0
- data/lib/yattho/view_components/linters/argument_mappers/clipboard_copy.rb +21 -0
- data/lib/yattho/view_components/linters/argument_mappers/close_button.rb +46 -0
- data/lib/yattho/view_components/linters/argument_mappers/conversion_error.rb +10 -0
- data/lib/yattho/view_components/linters/argument_mappers/flash.rb +32 -0
- data/lib/yattho/view_components/linters/argument_mappers/helpers/erb_block.rb +68 -0
- data/lib/yattho/view_components/linters/argument_mappers/label.rb +56 -0
- data/lib/yattho/view_components/linters/argument_mappers/system_arguments.rb +48 -0
- data/lib/yattho/view_components/linters/autocorrectable.rb +32 -0
- data/lib/yattho/view_components/linters/base_linter.rb +208 -0
- data/lib/yattho/view_components/linters/blankslate_api_migration.rb +153 -0
- data/lib/yattho/view_components/linters/blankslate_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/breadcrumbs_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/button_component_migration_counter.rb +26 -0
- data/lib/yattho/view_components/linters/clipboard_copy_component_migration_counter.rb +20 -0
- data/lib/yattho/view_components/linters/close_button_component_migration_counter.rb +121 -0
- data/lib/yattho/view_components/linters/deprecated_components_counter.rb +60 -0
- data/lib/yattho/view_components/linters/disallow_action_list.rb +73 -0
- data/lib/yattho/view_components/linters/flash_migration_counter.rb +36 -0
- data/lib/yattho/view_components/linters/helpers/deprecated_components_helpers.rb +20 -0
- data/lib/yattho/view_components/linters/helpers/rubocop_helpers.rb +14 -0
- data/lib/yattho/view_components/linters/label_component_migration_counter.rb +24 -0
- data/lib/yattho/view_components/linters/migrate_deprecated_flash_arguments.rb +140 -0
- data/lib/yattho/view_components/linters/severity_schema.rb +14 -0
- data/lib/yattho/view_components/linters/subhead_component_migration_counter.rb +14 -0
- data/lib/yattho/view_components/linters/super_in_component_templates.rb +65 -0
- data/lib/yattho/view_components/linters/tag_tree_helpers.rb +61 -0
- data/lib/yattho/view_components/linters/two_column_layout_migration_counter.rb +158 -0
- data/lib/yattho/view_components/linters.rb +3 -0
- data/lib/yattho/view_components/statuses.rb +14 -0
- data/lib/yattho/view_components/version.rb +18 -0
- data/lib/yattho/view_components.rb +63 -0
- data/lib/yattho/yard/backend.rb +38 -0
- data/lib/yattho/yard/component_manifest.rb +123 -0
- data/lib/yattho/yard/docs_helper.rb +81 -0
- data/lib/yattho/yard/legacy_gatsby_backend.rb +271 -0
- data/lib/yattho/yard/registry.rb +146 -0
- data/lib/yattho/yard/renders_many_handler.rb +23 -0
- data/lib/yattho/yard/renders_one_handler.rb +23 -0
- data/previews/docs/alpha_auto_complete_item_preview/default.html.erb +10 -0
- data/previews/docs/alpha_auto_complete_item_preview.rb +7 -0
- data/previews/docs/alpha_auto_complete_preview/default.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_clear_button.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
- data/previews/docs/alpha_auto_complete_preview/with_custom_classes_for_the_results.html.erb +10 -0
- data/previews/docs/alpha_auto_complete_preview/with_icon.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_icon_and_non_visible_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_inline_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview/with_non_visible_label.html.erb +1 -0
- data/previews/docs/alpha_auto_complete_preview.rb +21 -0
- data/previews/docs/alpha_banner_preview/custom_icon.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/dismissible.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/full_width.html.erb +1 -0
- data/previews/docs/alpha_banner_preview/schemes.html.erb +6 -0
- data/previews/docs/alpha_banner_preview/with_action_button.html.erb +4 -0
- data/previews/docs/alpha_banner_preview/with_custom_action.html.erb +6 -0
- data/previews/docs/alpha_banner_preview.rb +17 -0
- data/previews/docs/alpha_button_marketing_preview/schemes.html.erb +6 -0
- data/previews/docs/alpha_button_marketing_preview/sizes.html.erb +2 -0
- data/previews/docs/alpha_button_marketing_preview.rb +9 -0
- data/previews/docs/alpha_dialog_preview/dialog_with_cancel_and_submit_buttons.html.erb +13 -0
- data/previews/docs/alpha_dialog_preview.rb +7 -0
- data/previews/docs/alpha_dropdown_preview/customizing_menu_items.html.erb +11 -0
- data/previews/docs/alpha_dropdown_preview/customizing_the_button.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/default.html.erb +11 -0
- data/previews/docs/alpha_dropdown_preview/menu_as_list.html.erb +13 -0
- data/previews/docs/alpha_dropdown_preview/with_caret.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/with_direction.html.erb +12 -0
- data/previews/docs/alpha_dropdown_preview/with_dividers.html.erb +16 -0
- data/previews/docs/alpha_dropdown_preview.rb +19 -0
- data/previews/docs/alpha_hellip_button_preview/default.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview/inline.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/alpha_hellip_button_preview.rb +11 -0
- data/previews/docs/alpha_hidden_text_expander_preview/default.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview/inline.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/alpha_hidden_text_expander_preview.rb +11 -0
- data/previews/docs/alpha_image_crop_preview/cropper_with_a_custom_loader.html.erb +3 -0
- data/previews/docs/alpha_image_crop_preview/simple_cropper.html.erb +1 -0
- data/previews/docs/alpha_image_crop_preview/square_cropper.html.erb +1 -0
- data/previews/docs/alpha_image_crop_preview.rb +11 -0
- data/previews/docs/alpha_image_preview/custom_size.html.erb +2 -0
- data/previews/docs/alpha_image_preview/default.html.erb +2 -0
- data/previews/docs/alpha_image_preview/helper.html.erb +2 -0
- data/previews/docs/alpha_image_preview/lazy_loading.html.erb +2 -0
- data/previews/docs/alpha_image_preview.rb +13 -0
- data/previews/docs/alpha_layout_preview/changing_when_to_render_layout_as_columns.html.erb +12 -0
- data/previews/docs/alpha_layout_preview/default.html.erb +5 -0
- data/previews/docs/alpha_layout_preview/main_widths.html.erb +16 -0
- data/previews/docs/alpha_layout_preview/sidebar_placement.html.erb +8 -0
- data/previews/docs/alpha_layout_preview/sidebar_placement_as_row.html.erb +12 -0
- data/previews/docs/alpha_layout_preview/sidebar_widths.html.erb +12 -0
- data/previews/docs/alpha_layout_preview.rb +17 -0
- data/previews/docs/alpha_menu_preview/default.html.erb +17 -0
- data/previews/docs/alpha_menu_preview.rb +7 -0
- data/previews/docs/alpha_nav_list_preview/expandable_sub_items.html.erb +24 -0
- data/previews/docs/alpha_nav_list_preview/items_and_headings.html.erb +12 -0
- data/previews/docs/alpha_nav_list_preview/leading_and_trailing_visuals.html.erb +17 -0
- data/previews/docs/alpha_nav_list_preview/trailing_action.html.erb +12 -0
- data/previews/docs/alpha_nav_list_preview.rb +13 -0
- data/previews/docs/alpha_octicon_symbols_preview/symbol_dictionary.html.erb +4 -0
- data/previews/docs/alpha_octicon_symbols_preview.rb +7 -0
- data/previews/docs/alpha_segmented_control_preview/basic_usage.html.erb +6 -0
- data/previews/docs/alpha_segmented_control_preview/fill_width_of_parent.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview/small.html.erb +6 -0
- data/previews/docs/alpha_segmented_control_preview/with_icons.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview/with_icons_only.html.erb +5 -0
- data/previews/docs/alpha_segmented_control_preview.rb +15 -0
- data/previews/docs/alpha_tab_container_preview/default.html.erb +16 -0
- data/previews/docs/alpha_tab_container_preview.rb +7 -0
- data/previews/docs/alpha_tab_nav_preview/adding_extra_content_after_the_tabs.html.erb +10 -0
- data/previews/docs/alpha_tab_nav_preview/customizing_the_body.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/default_with_div.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/default_with_nav.html.erb +5 -0
- data/previews/docs/alpha_tab_nav_preview/with_extra_content.html.erb +8 -0
- data/previews/docs/alpha_tab_nav_preview/with_icons_and_counters.html.erb +15 -0
- data/previews/docs/alpha_tab_nav_preview.rb +17 -0
- data/previews/docs/alpha_tab_panels_preview/default.html.erb +14 -0
- data/previews/docs/alpha_tab_panels_preview.rb +7 -0
- data/previews/docs/alpha_text_field_preview/default.html.erb +1 -0
- data/previews/docs/alpha_text_field_preview/disabled.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/full_width.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/invalid.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_caption.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_clear_button.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview/with_a_leading_visual.html.erb +9 -0
- data/previews/docs/alpha_text_field_preview/with_a_validation_message.html.erb +7 -0
- data/previews/docs/alpha_text_field_preview.rb +21 -0
- data/previews/docs/alpha_toggle_switch_preview/checked.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/checked_and_disabled.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/default.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/disabled.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/small.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview/with_status_label_positioned_at_the_end.html.erb +1 -0
- data/previews/docs/alpha_toggle_switch_preview.rb +17 -0
- data/previews/docs/alpha_tooltip_preview/as_a_label_for_an_iconbutton.html.erb +1 -0
- data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_a_button.html.erb +4 -0
- data/previews/docs/alpha_tooltip_preview/as_a_supplementary_description_for_an_iconbutton.html.erb +1 -0
- data/previews/docs/alpha_tooltip_preview/directly_using_tooltip.html.erb +4 -0
- data/previews/docs/alpha_tooltip_preview/with_direction.html.erb +32 -0
- data/previews/docs/alpha_tooltip_preview.rb +15 -0
- data/previews/docs/alpha_underline_nav_preview/align_right.html.erb +11 -0
- data/previews/docs/alpha_underline_nav_preview/customizing_the_body.html.erb +5 -0
- data/previews/docs/alpha_underline_nav_preview/default_with_nav.html.erb +7 -0
- data/previews/docs/alpha_underline_nav_preview/with_div.html.erb +7 -0
- data/previews/docs/alpha_underline_nav_preview/with_icons_and_counters.html.erb +18 -0
- data/previews/docs/alpha_underline_nav_preview.rb +15 -0
- data/previews/docs/alpha_underline_panels_preview/default.html.erb +17 -0
- data/previews/docs/alpha_underline_panels_preview.rb +7 -0
- data/previews/docs/beta_auto_complete_item_preview/default.html.erb +6 -0
- data/previews/docs/beta_auto_complete_item_preview.rb +7 -0
- data/previews/docs/beta_auto_complete_preview/full_width_field.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/inset_variant.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/leading_visual.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/monospace_variant.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/trailing_action.html.erb +1 -0
- data/previews/docs/beta_auto_complete_preview/visually_hidden_label.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_input.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview/with_custom_classes_for_the_results.html.erb +3 -0
- data/previews/docs/beta_auto_complete_preview.rb +21 -0
- data/previews/docs/beta_avatar_preview/default.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/link.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/square.html.erb +1 -0
- data/previews/docs/beta_avatar_preview/with_size.html.erb +7 -0
- data/previews/docs/beta_avatar_preview.rb +13 -0
- data/previews/docs/beta_avatar_stack_preview/align_right.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview/default.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview/with_tooltip.html.erb +5 -0
- data/previews/docs/beta_avatar_stack_preview.rb +11 -0
- data/previews/docs/beta_base_button_preview/block.html.erb +2 -0
- data/previews/docs/beta_base_button_preview.rb +7 -0
- data/previews/docs/beta_blankslate_preview/basic.html.erb +4 -0
- data/previews/docs/beta_blankslate_preview/custom_content.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/icon.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/loading.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/primary_action.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/primary_and_secondary_actions.html.erb +7 -0
- data/previews/docs/beta_blankslate_preview/secondary_action.html.erb +6 -0
- data/previews/docs/beta_blankslate_preview/using_an_image.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview/variations.html.erb +8 -0
- data/previews/docs/beta_blankslate_preview/with_border.html.erb +5 -0
- data/previews/docs/beta_blankslate_preview.rb +25 -0
- data/previews/docs/beta_border_box_header_preview/default.html.erb +4 -0
- data/previews/docs/beta_border_box_header_preview/with_title.html.erb +3 -0
- data/previews/docs/beta_border_box_header_preview.rb +9 -0
- data/previews/docs/beta_border_box_preview/header_with_title_body_rows_and_footer.html.erb +21 -0
- data/previews/docs/beta_border_box_preview/padding_density.html.erb +14 -0
- data/previews/docs/beta_border_box_preview/row_colors.html.erb +14 -0
- data/previews/docs/beta_border_box_preview.rb +11 -0
- data/previews/docs/beta_breadcrumbs_preview/basic.html.erb +5 -0
- data/previews/docs/beta_breadcrumbs_preview.rb +7 -0
- data/previews/docs/beta_button_group_preview/default.html.erb +8 -0
- data/previews/docs/beta_button_group_preview/sizes.html.erb +7 -0
- data/previews/docs/beta_button_group_preview.rb +9 -0
- data/previews/docs/beta_button_preview/full_width.html.erb +2 -0
- data/previews/docs/beta_button_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_button_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_button_preview/with_leading_and_trailing_visuals.html.erb +5 -0
- data/previews/docs/beta_button_preview/with_leading_visual.html.erb +4 -0
- data/previews/docs/beta_button_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/beta_button_preview/with_trailing_visual.html.erb +4 -0
- data/previews/docs/beta_button_preview.rb +19 -0
- data/previews/docs/beta_clipboard_copy_preview/copying_from_an_element.html.erb +2 -0
- data/previews/docs/beta_clipboard_copy_preview/default.html.erb +1 -0
- data/previews/docs/beta_clipboard_copy_preview/with_text_instead_of_icons.html.erb +3 -0
- data/previews/docs/beta_clipboard_copy_preview.rb +11 -0
- data/previews/docs/beta_close_button_preview/default.html.erb +1 -0
- data/previews/docs/beta_close_button_preview.rb +7 -0
- data/previews/docs/beta_counter_preview/default.html.erb +1 -0
- data/previews/docs/beta_counter_preview/schemes.html.erb +2 -0
- data/previews/docs/beta_counter_preview.rb +9 -0
- data/previews/docs/beta_details_preview/default.html.erb +9 -0
- data/previews/docs/beta_details_preview.rb +7 -0
- data/previews/docs/beta_flash_preview/dismissible.html.erb +1 -0
- data/previews/docs/beta_flash_preview/full_width.html.erb +1 -0
- data/previews/docs/beta_flash_preview/icon.html.erb +1 -0
- data/previews/docs/beta_flash_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_flash_preview/with_actions.html.erb +6 -0
- data/previews/docs/beta_flash_preview.rb +15 -0
- data/previews/docs/beta_heading_preview/default.html.erb +6 -0
- data/previews/docs/beta_heading_preview.rb +7 -0
- data/previews/docs/beta_icon_button_preview/custom_tooltip_direction.html.erb +2 -0
- data/previews/docs/beta_icon_button_preview/default.html.erb +2 -0
- data/previews/docs/beta_icon_button_preview/schemes.html.erb +3 -0
- data/previews/docs/beta_icon_button_preview/with_an_aria_description.html.erb +1 -0
- data/previews/docs/beta_icon_button_preview.rb +13 -0
- data/previews/docs/beta_label_preview/inline.html.erb +2 -0
- data/previews/docs/beta_label_preview/schemes.html.erb +10 -0
- data/previews/docs/beta_label_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_label_preview.rb +11 -0
- data/previews/docs/beta_link_preview/default.html.erb +1 -0
- data/previews/docs/beta_link_preview/muted.html.erb +1 -0
- data/previews/docs/beta_link_preview/schemes.html.erb +2 -0
- data/previews/docs/beta_link_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/beta_link_preview/without_underline.html.erb +1 -0
- data/previews/docs/beta_link_preview.rb +15 -0
- data/previews/docs/beta_markdown_preview/default.html.erb +260 -0
- data/previews/docs/beta_markdown_preview.rb +7 -0
- data/previews/docs/beta_octicon_preview/default.html.erb +2 -0
- data/previews/docs/beta_octicon_preview/helper.html.erb +1 -0
- data/previews/docs/beta_octicon_preview/medium.html.erb +1 -0
- data/previews/docs/beta_octicon_preview.rb +11 -0
- data/previews/docs/beta_popover_preview/caret_position.html.erb +8 -0
- data/previews/docs/beta_popover_preview/default.html.erb +8 -0
- data/previews/docs/beta_popover_preview/large.html.erb +8 -0
- data/previews/docs/beta_popover_preview/with_multiple_elements_in_the_body.html.erb +11 -0
- data/previews/docs/beta_popover_preview.rb +13 -0
- data/previews/docs/beta_progress_bar_preview/default.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview/large.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview/multiple_items.html.erb +5 -0
- data/previews/docs/beta_progress_bar_preview/small.html.erb +3 -0
- data/previews/docs/beta_progress_bar_preview.rb +13 -0
- data/previews/docs/beta_relative_time_preview/default.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview/elapsed_time.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview/past_time.html.erb +1 -0
- data/previews/docs/beta_relative_time_preview.rb +11 -0
- data/previews/docs/beta_spinner_preview/default.html.erb +1 -0
- data/previews/docs/beta_spinner_preview/large.html.erb +1 -0
- data/previews/docs/beta_spinner_preview/small.html.erb +1 -0
- data/previews/docs/beta_spinner_preview.rb +11 -0
- data/previews/docs/beta_state_preview/default.html.erb +1 -0
- data/previews/docs/beta_state_preview/schemes.html.erb +4 -0
- data/previews/docs/beta_state_preview/sizes.html.erb +2 -0
- data/previews/docs/beta_state_preview.rb +11 -0
- data/previews/docs/beta_subhead_preview/default.html.erb +8 -0
- data/previews/docs/beta_subhead_preview/with_actions.html.erb +15 -0
- data/previews/docs/beta_subhead_preview/with_dangerous_heading.html.erb +8 -0
- data/previews/docs/beta_subhead_preview/with_long_description.html.erb +6 -0
- data/previews/docs/beta_subhead_preview/without_border.html.erb +8 -0
- data/previews/docs/beta_subhead_preview.rb +15 -0
- data/previews/docs/beta_text_preview/default.html.erb +2 -0
- data/previews/docs/beta_text_preview.rb +7 -0
- data/previews/docs/beta_timeline_item_preview/default.html.erb +7 -0
- data/previews/docs/beta_timeline_item_preview.rb +7 -0
- data/previews/docs/beta_truncate_preview/advanced_multiple_items.html.erb +9 -0
- data/previews/docs/beta_truncate_preview/default.html.erb +1 -0
- data/previews/docs/beta_truncate_preview/expand_on_hover_or_focus.html.erb +6 -0
- data/previews/docs/beta_truncate_preview/max_widths.html.erb +5 -0
- data/previews/docs/beta_truncate_preview/max_widths_on_new_lines.html.erb +11 -0
- data/previews/docs/beta_truncate_preview/multiple_items.html.erb +6 -0
- data/previews/docs/beta_truncate_preview.rb +17 -0
- data/previews/docs/blankslate_component_preview/action_button.html.erb +8 -0
- data/previews/docs/blankslate_component_preview/basic.html.erb +4 -0
- data/previews/docs/blankslate_component_preview/custom_content.html.erb +5 -0
- data/previews/docs/blankslate_component_preview/icon.html.erb +5 -0
- data/previews/docs/blankslate_component_preview/link.html.erb +7 -0
- data/previews/docs/blankslate_component_preview/loading.html.erb +6 -0
- data/previews/docs/blankslate_component_preview/variations.html.erb +8 -0
- data/previews/docs/blankslate_component_preview.rb +19 -0
- data/previews/docs/box_preview/color_and_padding.html.erb +1 -0
- data/previews/docs/box_preview/default.html.erb +1 -0
- data/previews/docs/box_preview.rb +9 -0
- data/previews/docs/button_component_preview/block.html.erb +2 -0
- data/previews/docs/button_component_preview/schemes.html.erb +6 -0
- data/previews/docs/button_component_preview/sizes.html.erb +2 -0
- data/previews/docs/button_component_preview/with_dropdown_caret.html.erb +3 -0
- data/previews/docs/button_component_preview/with_leading_and_trailing_visuals.html.erb +5 -0
- data/previews/docs/button_component_preview/with_leading_visual.html.erb +4 -0
- data/previews/docs/button_component_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/button_component_preview/with_trailing_visual.html.erb +4 -0
- data/previews/docs/button_component_preview.rb +21 -0
- data/previews/docs/dropdown_preview/customizing_menu_items.html.erb +11 -0
- data/previews/docs/dropdown_preview/customizing_the_button.html.erb +12 -0
- data/previews/docs/dropdown_preview/default.html.erb +11 -0
- data/previews/docs/dropdown_preview/menu_as_list.html.erb +13 -0
- data/previews/docs/dropdown_preview/with_caret.html.erb +12 -0
- data/previews/docs/dropdown_preview/with_direction.html.erb +12 -0
- data/previews/docs/dropdown_preview/with_dividers.html.erb +16 -0
- data/previews/docs/dropdown_preview.rb +19 -0
- data/previews/docs/hellip_button_preview/default.html.erb +1 -0
- data/previews/docs/hellip_button_preview/inline.html.erb +1 -0
- data/previews/docs/hellip_button_preview/styling_the_button.html.erb +1 -0
- data/previews/docs/hellip_button_preview.rb +11 -0
- data/previews/docs/icon_button_preview/custom_tooltip_direction.html.erb +2 -0
- data/previews/docs/icon_button_preview/default.html.erb +2 -0
- data/previews/docs/icon_button_preview/in_a_borderbox.html.erb +7 -0
- data/previews/docs/icon_button_preview/schemes.html.erb +3 -0
- data/previews/docs/icon_button_preview/with_an_aria_description.html.erb +1 -0
- data/previews/docs/icon_button_preview.rb +15 -0
- data/previews/docs/label_component_preview/inline.html.erb +2 -0
- data/previews/docs/label_component_preview/schemes.html.erb +10 -0
- data/previews/docs/label_component_preview/sizes.html.erb +2 -0
- data/previews/docs/label_component_preview.rb +11 -0
- data/previews/docs/layout_component_preview/default.html.erb +4 -0
- data/previews/docs/layout_component_preview/left_sidebar.html.erb +4 -0
- data/previews/docs/layout_component_preview.rb +9 -0
- data/previews/docs/link_component_preview/default.html.erb +1 -0
- data/previews/docs/link_component_preview/muted.html.erb +1 -0
- data/previews/docs/link_component_preview/schemes.html.erb +2 -0
- data/previews/docs/link_component_preview/with_tooltip.html.erb +4 -0
- data/previews/docs/link_component_preview/without_underline.html.erb +1 -0
- data/previews/docs/link_component_preview.rb +15 -0
- data/previews/docs/local_time_preview/all_the_options.html.erb +1 -0
- data/previews/docs/local_time_preview/default.html.erb +1 -0
- data/previews/docs/local_time_preview/with_initial_content.html.erb +4 -0
- data/previews/docs/local_time_preview.rb +11 -0
- data/previews/docs/markdown_preview/default.html.erb +260 -0
- data/previews/docs/markdown_preview.rb +7 -0
- data/previews/docs/menu_component_preview/default.html.erb +17 -0
- data/previews/docs/menu_component_preview.rb +7 -0
- data/previews/docs/navigation_tab_component_preview/default.html.erb +6 -0
- data/previews/docs/navigation_tab_component_preview/inside_a_list.html.erb +3 -0
- data/previews/docs/navigation_tab_component_preview/with_custom_html.html.erb +5 -0
- data/previews/docs/navigation_tab_component_preview/with_icons_and_counters.html.erb +13 -0
- data/previews/docs/navigation_tab_component_preview.rb +13 -0
- data/previews/docs/octicon_component_preview/default.html.erb +2 -0
- data/previews/docs/octicon_component_preview/helper.html.erb +1 -0
- data/previews/docs/octicon_component_preview/medium.html.erb +1 -0
- data/previews/docs/octicon_component_preview.rb +11 -0
- data/previews/docs/octicon_symbols_component_preview/symbol_dictionary.html.erb +4 -0
- data/previews/docs/octicon_symbols_component_preview.rb +7 -0
- data/previews/docs/popover_component_preview/caret_position.html.erb +8 -0
- data/previews/docs/popover_component_preview/default.html.erb +8 -0
- data/previews/docs/popover_component_preview/large.html.erb +8 -0
- data/previews/docs/popover_component_preview/with_multiple_elements_in_the_body.html.erb +11 -0
- data/previews/docs/popover_component_preview.rb +13 -0
- data/previews/docs/spinner_component_preview/default.html.erb +1 -0
- data/previews/docs/spinner_component_preview/large.html.erb +1 -0
- data/previews/docs/spinner_component_preview/small.html.erb +1 -0
- data/previews/docs/spinner_component_preview.rb +11 -0
- data/previews/docs/state_component_preview/default.html.erb +1 -0
- data/previews/docs/state_component_preview/schemes.html.erb +4 -0
- data/previews/docs/state_component_preview/sizes.html.erb +2 -0
- data/previews/docs/state_component_preview.rb +11 -0
- data/previews/docs/subhead_component_preview/default.html.erb +8 -0
- data/previews/docs/subhead_component_preview/with_actions.html.erb +15 -0
- data/previews/docs/subhead_component_preview/with_dangerous_heading.html.erb +8 -0
- data/previews/docs/subhead_component_preview/with_long_description.html.erb +6 -0
- data/previews/docs/subhead_component_preview/without_border.html.erb +8 -0
- data/previews/docs/subhead_component_preview.rb +15 -0
- data/previews/docs/tab_container_component_preview/default.html.erb +16 -0
- data/previews/docs/tab_container_component_preview.rb +7 -0
- data/previews/docs/time_ago_component_preview/default.html.erb +1 -0
- data/previews/docs/time_ago_component_preview.rb +7 -0
- data/previews/docs/timeline_item_component_preview/default.html.erb +7 -0
- data/previews/docs/timeline_item_component_preview.rb +7 -0
- data/previews/docs/tooltip_preview/default.html.erb +3 -0
- data/previews/docs/tooltip_preview/with_a_direction.html.erb +3 -0
- data/previews/docs/tooltip_preview/with_an_alignment.html.erb +3 -0
- data/previews/docs/tooltip_preview/without_a_delay.html.erb +3 -0
- data/previews/docs/tooltip_preview/wrapping_another_component.html.erb +5 -0
- data/previews/docs/tooltip_preview.rb +15 -0
- data/previews/docs/truncate_preview/custom_size.html.erb +1 -0
- data/previews/docs/truncate_preview/default.html.erb +3 -0
- data/previews/docs/truncate_preview/expandable.html.erb +1 -0
- data/previews/docs/truncate_preview/inline.html.erb +1 -0
- data/previews/docs/truncate_preview/with_html_content.html.erb +3 -0
- data/previews/docs/truncate_preview.rb +15 -0
- data/previews/yattho/alpha/action_list_preview/heading.html.erb +4 -0
- data/previews/yattho/alpha/action_list_preview.rb +367 -0
- data/previews/yattho/alpha/auto_complete_preview.rb +120 -0
- data/previews/yattho/alpha/banner_preview/with_action_button.html.erb +4 -0
- data/previews/yattho/alpha/banner_preview/with_action_content.html.erb +6 -0
- data/previews/yattho/alpha/banner_preview.rb +97 -0
- data/previews/yattho/alpha/button_marketing_preview.rb +62 -0
- data/previews/yattho/alpha/dialog_preview/body_has_scrollbar_overflow.html.erb +9 -0
- data/previews/yattho/alpha/dialog_preview/custom_header.html.erb +7 -0
- data/previews/yattho/alpha/dialog_preview/nested_dialog.html.erb +14 -0
- data/previews/yattho/alpha/dialog_preview/test.html.erb +7 -0
- data/previews/yattho/alpha/dialog_preview/with_footer.html.erb +8 -0
- data/previews/yattho/alpha/dialog_preview/with_form.html.erb +12 -0
- data/previews/yattho/alpha/dialog_preview/with_text_input.html.erb +10 -0
- data/previews/yattho/alpha/dialog_preview.rb +147 -0
- data/previews/yattho/alpha/dropdown_preview.rb +210 -0
- data/previews/yattho/alpha/hellip_button_preview.rb +24 -0
- data/previews/yattho/alpha/hidden_text_expander_preview.rb +22 -0
- data/previews/yattho/alpha/image_crop_preview.rb +31 -0
- data/previews/yattho/alpha/layout_preview.rb +211 -0
- data/previews/yattho/alpha/menu_preview/default.html.erb +17 -0
- data/previews/yattho/alpha/menu_preview/playground.html.erb +17 -0
- data/previews/yattho/alpha/menu_preview.rb +14 -0
- data/previews/yattho/alpha/nav_list_preview.rb +93 -0
- data/previews/yattho/alpha/segmented_control_preview.rb +164 -0
- data/previews/yattho/alpha/tab_nav_preview.rb +55 -0
- data/previews/yattho/alpha/tab_panels_preview.rb +38 -0
- data/previews/yattho/alpha/text_field_preview.rb +149 -0
- data/previews/yattho/alpha/toggle_switch_preview.rb +56 -0
- data/previews/yattho/alpha/tooltip_preview/with_multiple_on_a_page.html.erb +14 -0
- data/previews/yattho/alpha/tooltip_preview/with_right_most_position.html.erb +7 -0
- data/previews/yattho/alpha/tooltip_preview.rb +93 -0
- data/previews/yattho/alpha/underline_nav_preview/default.html.erb +8 -0
- data/previews/yattho/alpha/underline_nav_preview/playground.html.erb +8 -0
- data/previews/yattho/alpha/underline_nav_preview.rb +56 -0
- data/previews/yattho/alpha/underline_panels_preview.rb +38 -0
- data/previews/yattho/beta/auto_complete_item_preview/default.html.erb +9 -0
- data/previews/yattho/beta/auto_complete_item_preview/playground.html.erb +9 -0
- data/previews/yattho/beta/auto_complete_item_preview/with_description.html.erb +11 -0
- data/previews/yattho/beta/auto_complete_item_preview.rb +54 -0
- data/previews/yattho/beta/auto_complete_preview/with_submit_button.html.erb +20 -0
- data/previews/yattho/beta/auto_complete_preview.rb +267 -0
- data/previews/yattho/beta/avatar_preview.rb +82 -0
- data/previews/yattho/beta/avatar_stack_preview.rb +101 -0
- data/previews/yattho/beta/base_button_preview.rb +26 -0
- data/previews/yattho/beta/blankslate_preview.rb +130 -0
- data/previews/yattho/beta/border_box_preview.rb +98 -0
- data/previews/yattho/beta/breadcrumbs_preview.rb +30 -0
- data/previews/yattho/beta/button_group_preview.rb +32 -0
- data/previews/yattho/beta/button_preview/all_schemes.html.erb +26 -0
- data/previews/yattho/beta/button_preview/invisible_all_visuals.html.erb +54 -0
- data/previews/yattho/beta/button_preview/leading_visual.html.erb +10 -0
- data/previews/yattho/beta/button_preview/trailing_action.html.erb +10 -0
- data/previews/yattho/beta/button_preview/trailing_visual.html.erb +11 -0
- data/previews/yattho/beta/button_preview/with_tooltip.html.erb +10 -0
- data/previews/yattho/beta/button_preview.rb +291 -0
- data/previews/yattho/beta/clipboard_copy_preview/element.html.erb +2 -0
- data/previews/yattho/beta/clipboard_copy_preview.rb +39 -0
- data/previews/yattho/beta/close_button_preview.rb +22 -0
- data/previews/yattho/beta/counter_preview.rb +82 -0
- data/previews/yattho/beta/details_preview.rb +60 -0
- data/previews/yattho/beta/flash_preview.rb +69 -0
- data/previews/yattho/beta/heading_preview.rb +24 -0
- data/previews/yattho/beta/icon_button_preview.rb +110 -0
- data/previews/yattho/beta/label_preview.rb +104 -0
- data/previews/yattho/beta/link_preview.rb +69 -0
- data/previews/yattho/beta/markdown_preview.rb +241 -0
- data/previews/yattho/beta/octicon_preview.rb +24 -0
- data/previews/yattho/beta/popover_preview.rb +79 -0
- data/previews/yattho/beta/progress_bar_preview.rb +60 -0
- data/previews/yattho/beta/relative_time_preview.rb +286 -0
- data/previews/yattho/beta/spinner_preview.rb +22 -0
- data/previews/yattho/beta/state_preview.rb +66 -0
- data/previews/yattho/beta/subhead_preview/actions.html.erb +13 -0
- data/previews/yattho/beta/subhead_preview.rb +99 -0
- data/previews/yattho/beta/text_preview.rb +24 -0
- data/previews/yattho/beta/timeline_item_preview.rb +30 -0
- data/previews/yattho/beta/truncate_preview.rb +54 -0
- data/previews/yattho/forms/forms_preview/after_content_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/array_check_box_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/caption_template_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/check_box_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/check_box_with_nested_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/composed_form.html.erb +4 -0
- data/previews/yattho/forms/forms_preview/example_toggle_switch_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/horizontal_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/immediate_validation_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/invalid_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/multi_input_form.html.erb +14 -0
- data/previews/yattho/forms/forms_preview/multi_text_field_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/name_with_question_mark_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/radio_button_group_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/radio_button_with_nested_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/select_list_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/single_text_field_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/submit_button_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview/text_field_and_checkbox_form.html.erb +3 -0
- data/previews/yattho/forms/forms_preview.rb +46 -0
- data/previews/yattho/layout_component_preview.rb +30 -0
- data/previews/yattho/local_time_component_preview.rb +61 -0
- data/previews/yattho/time_ago_component_preview.rb +27 -0
- data/previews/yattho/url_helpers.rb +15 -0
- data/static/arguments.json +2560 -0
- data/static/assets/view-components.svg +18 -0
- data/static/audited_at.json +103 -0
- data/static/constants.json +1159 -0
- data/static/statuses.json +103 -0
- metadata +1403 -0
@@ -0,0 +1,241 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# @label Markdown
|
6
|
+
class MarkdownPreview < ViewComponent::Preview
|
7
|
+
MD_FIXTURE = %(
|
8
|
+
<p>Text can be <b>bold</b>, <i>italic</i>, or <s>strikethrough</s>. <a href=\"https://github.com\">Links </a> should be blue with no underlines (unless hovered over).</p>
|
9
|
+
<p>There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.</p>
|
10
|
+
<p>There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs. There should be whitespace between paragraphs.</p>
|
11
|
+
<blockquote>
|
12
|
+
<p>There should be no margin above this first sentence.</p>
|
13
|
+
<p>Blockquotes should be a lighter gray with a gray border along the left side.</p>
|
14
|
+
<p>There should be no margin below this final sentence.</p>
|
15
|
+
</blockquote>
|
16
|
+
<h1>Header 1</h1>
|
17
|
+
<p>This is a normal paragraph following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.</p>
|
18
|
+
<h2>Header 2</h2>
|
19
|
+
<blockquote>This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.</blockquote>
|
20
|
+
<h3>Header 3</h3>
|
21
|
+
<pre><code>This is a code block following a header.</code></pre>
|
22
|
+
<h4>Header 4</h4>
|
23
|
+
<ul>
|
24
|
+
<li>This is an unordered list following a header.</li>
|
25
|
+
<li>This is an unordered list following a header.</li>
|
26
|
+
<li>This is an unordered list following a header.</li>
|
27
|
+
</ul>
|
28
|
+
<h5>Header 5</h5>
|
29
|
+
<ol>
|
30
|
+
<li>This is an ordered list following a header.</li>
|
31
|
+
<li>This is an ordered list following a header.</li>
|
32
|
+
<li>This is an ordered list following a header.</li>
|
33
|
+
</ol>
|
34
|
+
<h6>Header 6</h6>
|
35
|
+
<table>
|
36
|
+
<thead>
|
37
|
+
<tr>
|
38
|
+
<th>What</th>
|
39
|
+
<th>Follows</th>
|
40
|
+
</tr>
|
41
|
+
</thead>
|
42
|
+
<tbody>
|
43
|
+
<tr>
|
44
|
+
<td>A table</td>
|
45
|
+
<td>A header</td>
|
46
|
+
</tr>
|
47
|
+
<tr>
|
48
|
+
<td>A table</td>
|
49
|
+
<td>A header</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td>A table</td>
|
53
|
+
<td>A header</td>
|
54
|
+
</tr>
|
55
|
+
</tbody>
|
56
|
+
</table>
|
57
|
+
<hr />
|
58
|
+
<p>There's a horizontal rule above and below this.</p>
|
59
|
+
<hr />
|
60
|
+
<p>Here is an unordered list:</p>
|
61
|
+
<ul>
|
62
|
+
<li>Salt-n-Pepa</li>
|
63
|
+
<li>Bel Biv DeVoe</li>
|
64
|
+
<li>Kid 'N Play</li>
|
65
|
+
</ul>
|
66
|
+
<p>And an ordered list:</p>
|
67
|
+
<ol>
|
68
|
+
<li>Michael Jackson</li>
|
69
|
+
<li>Michael Bolton</li>
|
70
|
+
<li>Michael Bublé</li>
|
71
|
+
</ol>
|
72
|
+
<p>And an unordered task list:</p>
|
73
|
+
<ul>
|
74
|
+
<li><input type=\"checkbox\" checked> Create a sample markdown document</li>
|
75
|
+
<li><input type=\"checkbox\"> Add task lists to it</li>
|
76
|
+
<li><input type=\"checkbox\"> Take a vacation</li>
|
77
|
+
</ul>
|
78
|
+
<p>And a \"mixed\" task list:</p>
|
79
|
+
<ul>
|
80
|
+
<li><input type=\"checkbox\"> Steal underpants</li>
|
81
|
+
<li>?</li>
|
82
|
+
<li><input type=\"checkbox\"> Profit!</li>
|
83
|
+
</ul>
|
84
|
+
And a nested list:
|
85
|
+
<ul>
|
86
|
+
<li>Jackson 5
|
87
|
+
<ul>
|
88
|
+
<li>Michael</li>
|
89
|
+
<li>Tito</li>
|
90
|
+
<li>Jackie</li>
|
91
|
+
<li>Marlon</li>
|
92
|
+
<li>Jermaine</li>
|
93
|
+
</ul>
|
94
|
+
</li>
|
95
|
+
<li>TMNT
|
96
|
+
<ul>
|
97
|
+
<li>Leonardo</li>
|
98
|
+
<li>Michelangelo</li>
|
99
|
+
<li>Donatello</li>
|
100
|
+
<li>Raphael</li>
|
101
|
+
</ul>
|
102
|
+
</li>
|
103
|
+
</ul>
|
104
|
+
<p>Definition lists can be used with HTML syntax. Definition terms are bold and italic.</p>
|
105
|
+
<dl>
|
106
|
+
<dt>Name</dt>
|
107
|
+
<dd>Godzilla</dd>
|
108
|
+
<dt>Born</dt>
|
109
|
+
<dd>1952</dd>
|
110
|
+
<dt>Birthplace</dt>
|
111
|
+
<dd>Japan</dd>
|
112
|
+
<dt>Color</dt>
|
113
|
+
<dd>Green</dd>
|
114
|
+
</dl>
|
115
|
+
<hr />
|
116
|
+
<p>Tables should have bold headings and alternating shaded rows.</p>
|
117
|
+
<table>
|
118
|
+
<thead>
|
119
|
+
<tr>
|
120
|
+
<th>Artist</th>
|
121
|
+
<th>Album</th>
|
122
|
+
<th>Year</th>
|
123
|
+
</tr>
|
124
|
+
</thead>
|
125
|
+
<tbody>
|
126
|
+
<tr>
|
127
|
+
<td>David Bowie</td>
|
128
|
+
<td>Scary Monsters</td>
|
129
|
+
<td>1980</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td>Prince</td>
|
133
|
+
<td>Purple Rain</td>
|
134
|
+
<td>1982</td>
|
135
|
+
</tr>
|
136
|
+
<tr>
|
137
|
+
<td>Beastie Boys</td>
|
138
|
+
<td>License to Ill</td>
|
139
|
+
<td>1986</td>
|
140
|
+
</tr>
|
141
|
+
<tr>
|
142
|
+
<td>Janet Jackson</td>
|
143
|
+
<td>Rhythm Nation 1814</td>
|
144
|
+
<td>1989</td>
|
145
|
+
</tr>
|
146
|
+
</tbody>
|
147
|
+
</table>
|
148
|
+
<p>If a table is too wide, it should condense down and/or scroll horizontally.</p>
|
149
|
+
<table>
|
150
|
+
<thead>
|
151
|
+
<tr>
|
152
|
+
<th>Artist</th>
|
153
|
+
<th>Album</th>
|
154
|
+
<th>Year</th>
|
155
|
+
<th>Label</th>
|
156
|
+
<th>Songs</th>
|
157
|
+
</tr>
|
158
|
+
</thead>
|
159
|
+
<tbody>
|
160
|
+
<tr>
|
161
|
+
<td>David Bowie</td>
|
162
|
+
<td>Scary Monsters</td>
|
163
|
+
<td>1980</td>
|
164
|
+
<td>RCA Records</td>
|
165
|
+
<td>It's No Game (No. 1), Up the Hill Backwards, Scary Monsters (And Super Creeps), Ashes to Ashes, Fashion, Teenage Wildlife, Scream Like a Baby, Kingdom Come, Because You're Young, It's No Game (No. 2)</td>
|
166
|
+
</tr>
|
167
|
+
<tr>
|
168
|
+
<td>Prince</td>
|
169
|
+
<td>Purple Rain</td>
|
170
|
+
<td>1982</td>
|
171
|
+
<td>Warner Brothers Records</td>
|
172
|
+
<td>Let's Go Crazy, Take Me With U, The Beautiful Ones, Computer Blue, Darling Nikki, When Doves Cry, I Would Die 4 U, Baby I'm a Star, Purple Rain</td>
|
173
|
+
</tr>
|
174
|
+
<tr>
|
175
|
+
<td>Beastie Boys</td>
|
176
|
+
<td>License to Ill</td>
|
177
|
+
<td>1986</td>
|
178
|
+
<td>Def Jam</td>
|
179
|
+
<td>Rhymin & Stealin, The New Style, She's Crafty, Posse in Effect, Slow Ride, Girls, Fight for Your Right, No Sleep till Brooklyn, Paul Revere, \"Hold It Now, Hit It\", Brass Monkey, Slow and Low, Time to Get Ill</td>
|
180
|
+
</tr>
|
181
|
+
<tr>
|
182
|
+
<td>Janet Jackson</td>
|
183
|
+
<td>Rhythm Nation 1814</td>
|
184
|
+
<td>1989</td>
|
185
|
+
<td>A&M</td>
|
186
|
+
<td>Interlude: Pledge, Rhythm Nation, Interlude: T.V., State of the World, Interlude: Race, The Knowledge, Interlude: Let's Dance, Miss You Much, Interlude: Come Back, Love Will Never Do (Without You), Livin' in a World (They Didn't Make), Alright, Interlude: Hey Baby, Escapade, Interlude: No Acid, Black Cat, Lonely, Come Back to Me, Someday Is Tonight, Interlude: Livin'...In Complete Darkness</td>
|
187
|
+
</tr>
|
188
|
+
</tbody>
|
189
|
+
</table>
|
190
|
+
<hr />
|
191
|
+
<p>Code snippets like <code>var foo = \"bar\";</code> can be shown inline.</p>
|
192
|
+
<p>Also, <code>this should vertically align</code> <s><code>with this</code></s> <s>and this</s>.</p>
|
193
|
+
<p>Code can also be shown in a block element.</p>
|
194
|
+
<pre><code>var foo = \"bar\";</code></pre>
|
195
|
+
<p>Code can also use syntax highlighting.</p>
|
196
|
+
<pre><code>var foo = \"bar\";</code></pre>
|
197
|
+
<pre><code>Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.</code></pre>
|
198
|
+
<pre><code>var foo = \"The same thing is true for code with syntax highlighting. A single line of code should horizontally scroll if it is really long.\";</code></pre>
|
199
|
+
<p>Inline code inside table cells should still be distinguishable.</p>
|
200
|
+
<table>
|
201
|
+
<thead>
|
202
|
+
<tr>
|
203
|
+
<th>Language</th>
|
204
|
+
<th>Code</th>
|
205
|
+
</tr>
|
206
|
+
</thead>
|
207
|
+
<tbody>
|
208
|
+
<tr>
|
209
|
+
<td>JavasScript</td>
|
210
|
+
<td><code>var foo = \"bar\";</code></td>
|
211
|
+
</tr>
|
212
|
+
<tr>
|
213
|
+
<td>Ruby</td>
|
214
|
+
<td><code>foo = \"bar\"</code></td>
|
215
|
+
</tr>
|
216
|
+
</tbody>
|
217
|
+
</table>
|
218
|
+
<hr />
|
219
|
+
<p>Small images should be shown at their actual size.</p>
|
220
|
+
<!-- p><img src=\"http://placekitten.com/g/300/200/\"></!-->
|
221
|
+
<p>Large images should always scale down and fit in the content container.</p>
|
222
|
+
<!-- p><img src=\"http://placekitten.com/g/1200/800/\"></!-->
|
223
|
+
<pre><code>This is the final element on the page and there should be no margin below this.</code></pre>
|
224
|
+
).html_safe # rubocop:disable Rails/OutputSafety
|
225
|
+
|
226
|
+
# @label Playground
|
227
|
+
def playground
|
228
|
+
render(Yattho::Beta::Markdown.new) do
|
229
|
+
MD_FIXTURE
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
# @label Default Options
|
234
|
+
def default
|
235
|
+
render(Yattho::Beta::Markdown.new) do
|
236
|
+
MD_FIXTURE
|
237
|
+
end
|
238
|
+
end
|
239
|
+
end
|
240
|
+
end
|
241
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# @label Octicon
|
6
|
+
class OcticonPreview < ViewComponent::Preview
|
7
|
+
# @label Playground
|
8
|
+
#
|
9
|
+
# @param aria_label [String]
|
10
|
+
# @param size [Symbol] select [xsmall, small, medium]
|
11
|
+
def playground(size: :small, aria_label: nil)
|
12
|
+
render(Yattho::Beta::Octicon.new(icon: :people, size: size, "aria-label": aria_label))
|
13
|
+
end
|
14
|
+
|
15
|
+
# @label Default Options
|
16
|
+
#
|
17
|
+
# @param aria_label [String]
|
18
|
+
# @param size [Symbol] select [xsmall, small, medium]
|
19
|
+
def default(size: :small, aria_label: nil)
|
20
|
+
render(Yattho::Beta::Octicon.new(icon: :people, size: size, "aria-label": aria_label))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# @label Popover
|
6
|
+
class PopoverPreview < ViewComponent::Preview
|
7
|
+
# @label Playground
|
8
|
+
#
|
9
|
+
# @param caret [Symbol] select [top, right, bottom, left, top_right, top_left, bottom_right, bottom_left, left_bottom, left_top, right_bottom, right_top]
|
10
|
+
def playground(caret: :top)
|
11
|
+
render Yattho::Beta::Popover.new do |component|
|
12
|
+
component.with_heading do
|
13
|
+
"Activity feed"
|
14
|
+
end
|
15
|
+
component.with_body(caret: caret) do
|
16
|
+
"This is the Popover body."
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# @label Default
|
22
|
+
#
|
23
|
+
# @param caret [Symbol] select [top, right, bottom, left, top_right, top_left, bottom_right, bottom_left, left_bottom, left_top, right_bottom, right_top]
|
24
|
+
def default(caret: :top)
|
25
|
+
render Yattho::Beta::Popover.new do |component|
|
26
|
+
component.with_heading do
|
27
|
+
"Activity feed"
|
28
|
+
end
|
29
|
+
component.with_body(caret: caret) do
|
30
|
+
"This is the Popover body."
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# @label Large
|
36
|
+
def large
|
37
|
+
render Yattho::Beta::Popover.new do |component|
|
38
|
+
component.with_body(large: true) do
|
39
|
+
"This is a large Popover body."
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# @!group Directions
|
45
|
+
def bottom_right
|
46
|
+
render Yattho::Beta::Popover.new do |component|
|
47
|
+
component.with_body(caret: :bottom_right) do
|
48
|
+
"This is the Popover body."
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def top_right
|
54
|
+
render Yattho::Beta::Popover.new do |component|
|
55
|
+
component.with_body(caret: :top_right) do
|
56
|
+
"This is the Popover body."
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def bottom_left
|
62
|
+
render Yattho::Beta::Popover.new do |component|
|
63
|
+
component.with_body(caret: :bottom_left) do
|
64
|
+
"This is the Popover body."
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def top_left
|
70
|
+
render Yattho::Beta::Popover.new do |component|
|
71
|
+
component.with_body(caret: :top_left) do
|
72
|
+
"This is the Popover body."
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
# @!endgroup
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# @label ProgressBar
|
6
|
+
class ProgressBarPreview < ViewComponent::Preview
|
7
|
+
# @label Playground
|
8
|
+
#
|
9
|
+
# @param size [Symbol] select [default, small, large]
|
10
|
+
def playground(size: :default)
|
11
|
+
render(Yattho::Beta::ProgressBar.new(size: size)) do |component|
|
12
|
+
component.with_item(percentage: 10)
|
13
|
+
component.with_item(bg: :accent_emphasis, percentage: 20)
|
14
|
+
component.with_item(bg: :danger_emphasis, percentage: 30)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# @label Default
|
19
|
+
#
|
20
|
+
# @param size [Symbol] select [default, small, large]
|
21
|
+
def default(size: :default)
|
22
|
+
render(Yattho::Beta::ProgressBar.new(size: size)) do |component|
|
23
|
+
component.with_item(percentage: 10)
|
24
|
+
component.with_item(bg: :accent_emphasis, percentage: 20)
|
25
|
+
component.with_item(bg: :danger_emphasis, percentage: 30)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# @!group Sizes
|
30
|
+
#
|
31
|
+
# @label Size small
|
32
|
+
def size_small
|
33
|
+
render(Yattho::Beta::ProgressBar.new(size: :small)) do |component|
|
34
|
+
component.with_item(percentage: 10)
|
35
|
+
component.with_item(bg: :accent_emphasis, percentage: 20)
|
36
|
+
component.with_item(bg: :danger_emphasis, percentage: 30)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# @label Size default
|
41
|
+
def size_default
|
42
|
+
render(Yattho::Beta::ProgressBar.new(size: :default)) do |component|
|
43
|
+
component.with_item(percentage: 10)
|
44
|
+
component.with_item(bg: :accent_emphasis, percentage: 20)
|
45
|
+
component.with_item(bg: :danger_emphasis, percentage: 30)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# @label Size large
|
50
|
+
def size_large
|
51
|
+
render(Yattho::Beta::ProgressBar.new(size: :large)) do |component|
|
52
|
+
component.with_item(percentage: 10)
|
53
|
+
component.with_item(bg: :accent_emphasis, percentage: 20)
|
54
|
+
component.with_item(bg: :danger_emphasis, percentage: 30)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
# @!endgroup
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,286 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Setup Playground to use all available component props
|
4
|
+
# Setup Features to use individual component props and combinations
|
5
|
+
|
6
|
+
module Yattho
|
7
|
+
module Beta
|
8
|
+
# @label RelativeTime
|
9
|
+
class RelativeTimePreview < ViewComponent::Preview
|
10
|
+
# @label Playground
|
11
|
+
# @param datetime datetime-local
|
12
|
+
# @param tense [Symbol] select [~, auto, past, future]
|
13
|
+
# @param prefix [String] text
|
14
|
+
# @param second [Symbol] select [~, numeric, two_digit]
|
15
|
+
# @param minute [Symbol] select [~, numeric, two_digit]
|
16
|
+
# @param hour [Symbol] select [~, numeric, two_digit]
|
17
|
+
# @param weekday [Symbol] select [~, long, short, narrow]
|
18
|
+
# @param day [Symbol] select [~, numeric, two_digit]
|
19
|
+
# @param month [Symbol] select [~, numeric, two_digit, short, long, narrow]
|
20
|
+
# @param year [Symbol] select [~, numeric, two_digit]
|
21
|
+
# @param time_zone_name [Symbol] select [~, long, short, short_offset, long_offset, short_generic, long_generic]
|
22
|
+
# @param precision [Symbol] select [~, second, minute, hour, day, month, year]
|
23
|
+
# @param format [Symbol] select [~, auto, micro, elapsed]
|
24
|
+
# @param format_style [Symbol] select [~, long, short, narrow]
|
25
|
+
# @param lang [String] text
|
26
|
+
# @param title [String] text
|
27
|
+
def playground(
|
28
|
+
tense: nil,
|
29
|
+
prefix: nil,
|
30
|
+
second: nil,
|
31
|
+
minute: nil,
|
32
|
+
hour: nil,
|
33
|
+
weekday: nil,
|
34
|
+
day: nil,
|
35
|
+
month: nil,
|
36
|
+
year: nil,
|
37
|
+
time_zone_name: nil,
|
38
|
+
threshold: nil,
|
39
|
+
precision: nil,
|
40
|
+
format: nil,
|
41
|
+
format_style: nil,
|
42
|
+
datetime: Time.utc(2020, 1, 1, 0, 0, 0),
|
43
|
+
lang: nil,
|
44
|
+
title: nil
|
45
|
+
)
|
46
|
+
render(Yattho::Beta::RelativeTime.new(
|
47
|
+
tense: tense,
|
48
|
+
prefix: prefix,
|
49
|
+
second: second,
|
50
|
+
minute: minute,
|
51
|
+
hour: hour,
|
52
|
+
weekday: weekday,
|
53
|
+
day: day,
|
54
|
+
month: month,
|
55
|
+
year: year,
|
56
|
+
time_zone_name: time_zone_name,
|
57
|
+
threshold: threshold,
|
58
|
+
precision: precision,
|
59
|
+
format: format,
|
60
|
+
format_style: format_style,
|
61
|
+
datetime: datetime,
|
62
|
+
lang: lang,
|
63
|
+
title: title
|
64
|
+
))
|
65
|
+
end
|
66
|
+
|
67
|
+
# @label Default
|
68
|
+
# @param datetime datetime-local
|
69
|
+
# @param tense [Symbol] select [~, auto, past, future]
|
70
|
+
# @param prefix [String] text
|
71
|
+
# @param second [Symbol] select [~, numeric, two_digit]
|
72
|
+
# @param minute [Symbol] select [~, numeric, two_digit]
|
73
|
+
# @param hour [Symbol] select [~, numeric, two_digit]
|
74
|
+
# @param weekday [Symbol] select [~, long, short, narrow]
|
75
|
+
# @param day [Symbol] select [~, numeric, two_digit]
|
76
|
+
# @param month [Symbol] select [~, numeric, two_digit, short, long, narrow]
|
77
|
+
# @param year [Symbol] select [~, numeric, two_digit]
|
78
|
+
# @param time_zone_name [Symbol] select [~, long, short, short_offset, long_offset, short_generic, long_generic]
|
79
|
+
# @param precision [Symbol] select [~, second, minute, hour, day, month, year]
|
80
|
+
# @param format [Symbol] select [~, auto, micro, elapsed]
|
81
|
+
# @param format_style [Symbol] select [~, long, short, narrow]
|
82
|
+
# @param lang [String] text
|
83
|
+
# @param title [String] text
|
84
|
+
def default(
|
85
|
+
tense: nil,
|
86
|
+
prefix: nil,
|
87
|
+
second: nil,
|
88
|
+
minute: nil,
|
89
|
+
hour: nil,
|
90
|
+
weekday: nil,
|
91
|
+
day: nil,
|
92
|
+
month: nil,
|
93
|
+
year: nil,
|
94
|
+
time_zone_name: nil,
|
95
|
+
threshold: nil,
|
96
|
+
precision: nil,
|
97
|
+
format: nil,
|
98
|
+
format_style: nil,
|
99
|
+
datetime: Time.now.utc,
|
100
|
+
lang: nil,
|
101
|
+
title: nil
|
102
|
+
)
|
103
|
+
render(Yattho::Beta::RelativeTime.new(
|
104
|
+
tense: tense,
|
105
|
+
prefix: prefix,
|
106
|
+
second: second,
|
107
|
+
minute: minute,
|
108
|
+
hour: hour,
|
109
|
+
weekday: weekday,
|
110
|
+
day: day,
|
111
|
+
month: month,
|
112
|
+
year: year,
|
113
|
+
time_zone_name: time_zone_name,
|
114
|
+
threshold: threshold,
|
115
|
+
precision: precision,
|
116
|
+
format: format,
|
117
|
+
format_style: format_style,
|
118
|
+
datetime: datetime,
|
119
|
+
lang: lang,
|
120
|
+
title: title
|
121
|
+
))
|
122
|
+
end
|
123
|
+
|
124
|
+
# @label Micro Format
|
125
|
+
# @param datetime datetime-local
|
126
|
+
# @param tense [Symbol] select [~, auto, past, future]
|
127
|
+
# @param prefix [String] text
|
128
|
+
# @param second [Symbol] select [~, numeric, two_digit]
|
129
|
+
# @param minute [Symbol] select [~, numeric, two_digit]
|
130
|
+
# @param hour [Symbol] select [~, numeric, two_digit]
|
131
|
+
# @param weekday [Symbol] select [~, long, short, narrow]
|
132
|
+
# @param day [Symbol] select [~, numeric, two_digit]
|
133
|
+
# @param month [Symbol] select [~, numeric, two_digit, short, long, narrow]
|
134
|
+
# @param year [Symbol] select [~, numeric, two_digit]
|
135
|
+
# @param time_zone_name [Symbol] select [~, long, short, short_offset, long_offset, short_generic, long_generic]
|
136
|
+
# @param precision [Symbol] select [~, second, minute, hour, day, month, year]
|
137
|
+
# @param format_style [Symbol] select [~, long, short, narrow]
|
138
|
+
# @param lang [String] text
|
139
|
+
# @param title [String] text
|
140
|
+
def micro_format(
|
141
|
+
tense: nil,
|
142
|
+
prefix: nil,
|
143
|
+
second: nil,
|
144
|
+
minute: nil,
|
145
|
+
hour: nil,
|
146
|
+
weekday: nil,
|
147
|
+
day: nil,
|
148
|
+
month: nil,
|
149
|
+
year: nil,
|
150
|
+
time_zone_name: nil,
|
151
|
+
threshold: nil,
|
152
|
+
precision: nil,
|
153
|
+
format_style: nil,
|
154
|
+
datetime: Time.now.iso8601,
|
155
|
+
lang: nil,
|
156
|
+
title: nil
|
157
|
+
)
|
158
|
+
render(Yattho::Beta::RelativeTime.new(
|
159
|
+
tense: tense,
|
160
|
+
prefix: prefix,
|
161
|
+
second: second,
|
162
|
+
minute: minute,
|
163
|
+
hour: hour,
|
164
|
+
weekday: weekday,
|
165
|
+
day: day,
|
166
|
+
month: month,
|
167
|
+
year: year,
|
168
|
+
time_zone_name: time_zone_name,
|
169
|
+
threshold: threshold,
|
170
|
+
precision: precision,
|
171
|
+
format: :micro,
|
172
|
+
format_style: format_style,
|
173
|
+
datetime: datetime,
|
174
|
+
lang: lang,
|
175
|
+
title: title
|
176
|
+
))
|
177
|
+
end
|
178
|
+
|
179
|
+
# @label Recent Time
|
180
|
+
# @param datetime datetime-local
|
181
|
+
# @param tense [Symbol] select [~, auto, past, future]
|
182
|
+
# @param prefix [String] text
|
183
|
+
# @param second [Symbol] select [~, numeric, two_digit]
|
184
|
+
# @param minute [Symbol] select [~, numeric, two_digit]
|
185
|
+
# @param hour [Symbol] select [~, numeric, two_digit]
|
186
|
+
# @param weekday [Symbol] select [~, long, short, narrow]
|
187
|
+
# @param day [Symbol] select [~, numeric, two_digit]
|
188
|
+
# @param month [Symbol] select [~, numeric, two_digit, short, long, narrow]
|
189
|
+
# @param year [Symbol] select [~, numeric, two_digit]
|
190
|
+
# @param time_zone_name [Symbol] select [~, long, short, short_offset, long_offset, short_generic, long_generic]
|
191
|
+
# @param precision [Symbol] select [~, second, minute, hour, day, month, year]
|
192
|
+
# @param format [Symbol] select [~, auto, micro, elapsed]
|
193
|
+
# @param format_style [Symbol] select [~, long, short, narrow]
|
194
|
+
# @param lang [String] text
|
195
|
+
# @param title [String] text
|
196
|
+
def recent_time(
|
197
|
+
tense: nil,
|
198
|
+
prefix: nil,
|
199
|
+
second: nil,
|
200
|
+
minute: nil,
|
201
|
+
hour: nil,
|
202
|
+
weekday: nil,
|
203
|
+
day: nil,
|
204
|
+
month: nil,
|
205
|
+
year: nil,
|
206
|
+
time_zone_name: nil,
|
207
|
+
threshold: nil,
|
208
|
+
precision: nil,
|
209
|
+
format: nil,
|
210
|
+
format_style: nil,
|
211
|
+
datetime: Time.now.iso8601,
|
212
|
+
lang: nil,
|
213
|
+
title: nil
|
214
|
+
)
|
215
|
+
render(Yattho::Beta::RelativeTime.new(
|
216
|
+
tense: tense,
|
217
|
+
prefix: prefix,
|
218
|
+
second: second,
|
219
|
+
minute: minute,
|
220
|
+
hour: hour,
|
221
|
+
weekday: weekday,
|
222
|
+
day: day,
|
223
|
+
month: month,
|
224
|
+
year: year,
|
225
|
+
time_zone_name: time_zone_name,
|
226
|
+
threshold: threshold,
|
227
|
+
precision: precision,
|
228
|
+
format: format,
|
229
|
+
format_style: format_style,
|
230
|
+
datetime: datetime,
|
231
|
+
lang: lang,
|
232
|
+
title: title
|
233
|
+
))
|
234
|
+
end
|
235
|
+
|
236
|
+
# @label Count Down Timer
|
237
|
+
# @param datetime datetime-local
|
238
|
+
# @param tense [Symbol] select [~, auto, past, future]
|
239
|
+
# @param prefix [String] text
|
240
|
+
# @param second [Symbol] select [~, numeric, two_digit]
|
241
|
+
# @param minute [Symbol] select [~, numeric, two_digit]
|
242
|
+
# @param hour [Symbol] select [~, numeric, two_digit]
|
243
|
+
# @param weekday [Symbol] select [~, long, short, narrow]
|
244
|
+
# @param year [Symbol] select [~, numeric, two_digit]
|
245
|
+
# @param time_zone_name [Symbol] select [~, long, short, short_offset, long_offset, short_generic, long_generic]
|
246
|
+
# @param precision [Symbol] select [~, second, minute, hour, day, month, year]
|
247
|
+
# @param format_style [Symbol] select [~, long, short, narrow]
|
248
|
+
# @param lang [String] text
|
249
|
+
# @param title [String] text
|
250
|
+
def count_down_timer(
|
251
|
+
tense: nil,
|
252
|
+
prefix: nil,
|
253
|
+
second: nil,
|
254
|
+
minute: nil,
|
255
|
+
hour: nil,
|
256
|
+
weekday: nil,
|
257
|
+
year: nil,
|
258
|
+
time_zone_name: nil,
|
259
|
+
threshold: nil,
|
260
|
+
precision: nil,
|
261
|
+
format_style: nil,
|
262
|
+
datetime: Time.utc(2038, 1, 19, 0o3, 14, 8),
|
263
|
+
lang: nil,
|
264
|
+
title: nil
|
265
|
+
)
|
266
|
+
render(Yattho::Beta::RelativeTime.new(
|
267
|
+
tense: tense,
|
268
|
+
prefix: prefix,
|
269
|
+
second: second,
|
270
|
+
minute: minute,
|
271
|
+
hour: hour,
|
272
|
+
weekday: weekday,
|
273
|
+
year: year,
|
274
|
+
time_zone_name: time_zone_name,
|
275
|
+
threshold: threshold,
|
276
|
+
precision: precision,
|
277
|
+
format: :elapsed,
|
278
|
+
format_style: format_style,
|
279
|
+
datetime: datetime,
|
280
|
+
lang: lang,
|
281
|
+
title: title
|
282
|
+
))
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
286
|
+
end
|