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,143 @@
|
|
1
|
+
/* flash */
|
2
|
+
|
3
|
+
/* Default flash */
|
4
|
+
.flash:not(.Banner) {
|
5
|
+
position: relative;
|
6
|
+
padding: var(--base-size-20, 20px) var(--yattho-control-medium-paddingInline-spacious, 16px);
|
7
|
+
border-style: solid;
|
8
|
+
border-width: var(--yattho-borderWidth-thin, 1px);
|
9
|
+
border-radius: var(--yattho-borderRadius-medium, 6px);
|
10
|
+
|
11
|
+
/* Default color */
|
12
|
+
color: var(--color-fg-default);
|
13
|
+
background-image: linear-gradient(var(--color-accent-subtle), var(--color-accent-subtle));
|
14
|
+
border-color: var(--color-accent-muted);
|
15
|
+
|
16
|
+
& .octicon {
|
17
|
+
color: var(--color-accent-fg);
|
18
|
+
margin-right: var(--base-size-12, 12px);
|
19
|
+
}
|
20
|
+
|
21
|
+
& p:last-child {
|
22
|
+
margin-bottom: 0;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
/* Contain the flash messages */
|
27
|
+
.flash-messages {
|
28
|
+
margin-bottom: var(--yattho-stack-gap-spacious, 24px);
|
29
|
+
}
|
30
|
+
|
31
|
+
/* Close button */
|
32
|
+
.flash-close:not(.Banner-close) {
|
33
|
+
float: right;
|
34
|
+
padding: var(--yattho-control-medium-paddingInline-spacious, 16px);
|
35
|
+
margin: calc(var(--yattho-control-medium-paddingInline-spacious, 16px) * -1);
|
36
|
+
text-align: center;
|
37
|
+
cursor: pointer;
|
38
|
+
|
39
|
+
/* Undo `<button>` styles */
|
40
|
+
background: none;
|
41
|
+
border: 0;
|
42
|
+
appearance: none;
|
43
|
+
|
44
|
+
&:hover {
|
45
|
+
opacity: 0.7;
|
46
|
+
}
|
47
|
+
|
48
|
+
&:active {
|
49
|
+
opacity: 0.5;
|
50
|
+
}
|
51
|
+
|
52
|
+
& .octicon {
|
53
|
+
margin-right: 0;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
/* Action button */
|
58
|
+
.flash-action:not(.Banner-actions) {
|
59
|
+
float: right;
|
60
|
+
margin-top: -3px;
|
61
|
+
margin-left: var(--yattho-stack-gap-spacious, 24px);
|
62
|
+
background-clip: padding-box;
|
63
|
+
|
64
|
+
&.btn .octicon {
|
65
|
+
margin-right: var(--yattho-control-small-gap, 4px);
|
66
|
+
color: var(--color-fg-muted);
|
67
|
+
}
|
68
|
+
|
69
|
+
&.btn-primary {
|
70
|
+
background-clip: border-box;
|
71
|
+
|
72
|
+
& .octicon {
|
73
|
+
color: inherit;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/* Color variations */
|
80
|
+
|
81
|
+
.flash-warn:not(.Banner) {
|
82
|
+
color: var(--color-fg-default);
|
83
|
+
background-image: linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle));
|
84
|
+
border-color: var(--color-attention-muted);
|
85
|
+
|
86
|
+
& .octicon {
|
87
|
+
color: var(--color-attention-fg);
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
.flash-error:not(.Banner) {
|
92
|
+
color: var(--color-fg-default);
|
93
|
+
background-image: linear-gradient(var(--color-danger-subtle), var(--color-danger-subtle));
|
94
|
+
border-color: var(--color-danger-muted);
|
95
|
+
|
96
|
+
& .octicon {
|
97
|
+
color: var(--color-danger-fg);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
.flash-success:not(.Banner) {
|
102
|
+
color: var(--color-fg-default);
|
103
|
+
background-image: linear-gradient(var(--color-success-subtle), var(--color-success-subtle));
|
104
|
+
border-color: var(--color-success-muted);
|
105
|
+
|
106
|
+
& .octicon {
|
107
|
+
color: var(--color-success-fg);
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
/* Layout variations */
|
112
|
+
|
113
|
+
.flash-full:not(.Banner) {
|
114
|
+
margin-top: calc(var(--yattho-borderWidth-thin, 1px) * -1);
|
115
|
+
border-width: var(--yattho-borderWidth-thin, 1px) 0;
|
116
|
+
border-radius: 0;
|
117
|
+
}
|
118
|
+
|
119
|
+
/* A banner rendered at the top of the page. */
|
120
|
+
.flash-banner {
|
121
|
+
position: fixed;
|
122
|
+
top: 0;
|
123
|
+
z-index: 90;
|
124
|
+
width: 100%;
|
125
|
+
border-top: 0;
|
126
|
+
border-right: 0;
|
127
|
+
border-left: 0;
|
128
|
+
border-radius: 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
/* Makes sure the background is opaque to cover any content underneath */
|
132
|
+
.flash-full,
|
133
|
+
.flash-banner {
|
134
|
+
background-color: var(--color-canvas-default);
|
135
|
+
}
|
136
|
+
|
137
|
+
/* FIXME deprecate this */
|
138
|
+
.warning {
|
139
|
+
padding: 0.5em;
|
140
|
+
margin-bottom: 0.8em;
|
141
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
142
|
+
background-color: var(--color-attention-subtle);
|
143
|
+
}
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# Use `Flash` to inform users of successful or pending actions.
|
6
|
+
class Flash < Yattho::Component
|
7
|
+
status :beta
|
8
|
+
|
9
|
+
# Optional action content showed on the right side of the component.
|
10
|
+
#
|
11
|
+
# @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
|
12
|
+
renders_one :action, lambda { |**system_arguments|
|
13
|
+
deny_tag_argument(**system_arguments)
|
14
|
+
system_arguments[:tag] = :div
|
15
|
+
system_arguments[:classes] = class_names(system_arguments[:classes], "flash-action")
|
16
|
+
|
17
|
+
Yattho::BaseComponent.new(**system_arguments)
|
18
|
+
}
|
19
|
+
|
20
|
+
DEFAULT_SCHEME = :default
|
21
|
+
SCHEME_MAPPINGS = {
|
22
|
+
DEFAULT_SCHEME => "",
|
23
|
+
:warning => "flash-warn",
|
24
|
+
:danger => "flash-error",
|
25
|
+
:success => "flash-success"
|
26
|
+
}.freeze
|
27
|
+
# @example Schemes
|
28
|
+
# <%= render(Yattho::Beta::Flash.new) { "This is a flash message!" } %>
|
29
|
+
# <%= render(Yattho::Beta::Flash.new(scheme: :warning)) { "This is a warning flash message!" } %>
|
30
|
+
# <%= render(Yattho::Beta::Flash.new(scheme: :danger)) { "This is a danger flash message!" } %>
|
31
|
+
# <%= render(Yattho::Beta::Flash.new(scheme: :success)) { "This is a success flash message!" } %>
|
32
|
+
#
|
33
|
+
# @example Full width
|
34
|
+
# <%= render(Yattho::Beta::Flash.new(full: true)) { "This is a full width flash message!" } %>
|
35
|
+
#
|
36
|
+
# @example Dismissible
|
37
|
+
# <%= render(Yattho::Beta::Flash.new(dismissible: true)) { "This is a dismissible flash message!" } %>
|
38
|
+
#
|
39
|
+
# @example Icon
|
40
|
+
# <%= render(Yattho::Beta::Flash.new(icon: :people)) { "This is a flash message with an icon!" } %>
|
41
|
+
#
|
42
|
+
# @example With actions
|
43
|
+
# <%= render(Yattho::Beta::Flash.new) do |component| %>
|
44
|
+
# This is a flash message with actions!
|
45
|
+
# <% component.with_action do %>
|
46
|
+
# <%= render(Yattho::ButtonComponent.new(size: :small)) { "Take action" } %>
|
47
|
+
# <% end %>
|
48
|
+
# <% end %>
|
49
|
+
#
|
50
|
+
# @param full [Boolean] Whether the component should take up the full width of the screen.
|
51
|
+
# @param spacious [Boolean] Whether to add margin to the bottom of the component.
|
52
|
+
# @param dismissible [Boolean] Whether the component can be dismissed with an X button.
|
53
|
+
# @param icon [Symbol] Name of Octicon icon to use.
|
54
|
+
# @param scheme [Symbol] <%= one_of(Yattho::Beta::Flash::SCHEME_MAPPINGS.keys) %>
|
55
|
+
# @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
|
56
|
+
def initialize(full: false, spacious: false, dismissible: false, icon: nil, scheme: DEFAULT_SCHEME,
|
57
|
+
**system_arguments)
|
58
|
+
@icon = icon
|
59
|
+
@dismissible = dismissible
|
60
|
+
@system_arguments = deny_tag_argument(**system_arguments)
|
61
|
+
@system_arguments[:tag] = :div
|
62
|
+
@system_arguments[:classes] = class_names(
|
63
|
+
@system_arguments[:classes],
|
64
|
+
"flash",
|
65
|
+
SCHEME_MAPPINGS[fetch_or_fallback(SCHEME_MAPPINGS.keys, scheme, DEFAULT_SCHEME)],
|
66
|
+
'flash-full': full
|
67
|
+
)
|
68
|
+
@system_arguments[:mb] ||= spacious ? 4 : nil
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# `Heading` should be used to communicate page organization and hierarchy.
|
6
|
+
#
|
7
|
+
# - Set tag to one of `:h1`, `:h2`, `:h3`, `:h4`, `:h5`, `:h6` based on what is appropriate for the page context.
|
8
|
+
# - Use `Heading` as the title of a section or sub section.
|
9
|
+
# - Do not use `Heading` for styling alone. For simply styling text, consider using <%= link_to_component(Yattho::Beta::Text) %> with relevant <%= link_to_typography_docs %>
|
10
|
+
# such as `font_size` and `font_weight`.
|
11
|
+
# - Do not jump heading levels. For instance, do not follow a `<h1>` with an `<h3>`. Heading levels should increase by one in ascending order.
|
12
|
+
#
|
13
|
+
# @accessibility
|
14
|
+
# While sighted users rely on visual cues such as font size changes to determine what the heading is, assistive technology users rely on programatic cues that can be read out.
|
15
|
+
# When text on a page is visually implied to be a heading, ensure that it is coded as a heading. Additionally, visually implied heading level and coded heading level should be
|
16
|
+
# consistent. [See WCAG success criteria: 1.3.1: Info and Relationships](https://www.w3.org/WAI/WCAG21/Understanding/info-and-relationships.html)
|
17
|
+
#
|
18
|
+
# Headings allow assistive technology users to quickly navigate around a page. Navigation to text that is not meant to be a heading can be a confusing experience.
|
19
|
+
# <%= link_to_heading_practices %>
|
20
|
+
class Heading < Yattho::Component
|
21
|
+
status :beta
|
22
|
+
|
23
|
+
TAG_FALLBACK = :h2
|
24
|
+
TAG_OPTIONS = [:h1, TAG_FALLBACK, :h3, :h4, :h5, :h6].freeze
|
25
|
+
|
26
|
+
# @example Default
|
27
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h1)) { "H1 Text" } %>
|
28
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h2)) { "H2 Text" } %>
|
29
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h3)) { "H3 Text" } %>
|
30
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h4)) { "H4 Text" } %>
|
31
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h5)) { "H5 Text" } %>
|
32
|
+
# <%= render(Yattho::Beta::Heading.new(tag: :h6)) { "H6 Text" } %>
|
33
|
+
#
|
34
|
+
# @param tag [String] <%= one_of(Yattho::Beta::Heading::TAG_OPTIONS) %>
|
35
|
+
# @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
|
36
|
+
def initialize(tag:, **system_arguments)
|
37
|
+
@system_arguments = system_arguments
|
38
|
+
@system_arguments[:tag] = fetch_or_fallback(TAG_OPTIONS, tag, TAG_FALLBACK)
|
39
|
+
end
|
40
|
+
|
41
|
+
def call
|
42
|
+
render(Yattho::BaseComponent.new(**@system_arguments)) { content }
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<%= render Yattho::ConditionalWrapper.new(condition: render_tooltip?, tag: :div, classes: "Button-withTooltip", **@wrapper_arguments) do %>
|
2
|
+
<%= render Yattho::Beta::BaseButton.new(**@system_arguments) do -%>
|
3
|
+
<%= render Yattho::Beta::Octicon.new(icon: @icon, classes: "Button-visual") %>
|
4
|
+
<% end -%>
|
5
|
+
<%= render Yattho::Alpha::Tooltip.new(**@tooltip_arguments) if render_tooltip? %>
|
6
|
+
<% end %>
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Yattho
|
4
|
+
module Beta
|
5
|
+
# Use `IconButton` to render Icon-only buttons without the default button styles.
|
6
|
+
#
|
7
|
+
# `IconButton` will always render with a tooltip unless the tag is `:summary`.
|
8
|
+
# `IconButton` will always render with a tooltip unless the tag is `:summary`.
|
9
|
+
# @accessibility
|
10
|
+
# `IconButton` requires an `aria-label`, which will provide assistive technologies with an accessible label.
|
11
|
+
# The `aria-label` should describe the action to be invoked rather than the icon itself. For instance,
|
12
|
+
# if your `IconButton` renders a magnifying glass icon and invokes a search action, the `aria-label` should be
|
13
|
+
# `"Search"` instead of `"Magnifying glass"`.
|
14
|
+
# Either `aria-label` or `aria-description` will be used for the `Tooltip` text, depending on which one is present.
|
15
|
+
# Either `aria-label` or `aria-description` will be used for the `Tooltip` text, depending on which one is present.
|
16
|
+
# [Learn more about best functional image practices (WAI Images)](https://www.w3.org/WAI/tutorials/images/functional)
|
17
|
+
class IconButton < Yattho::Component
|
18
|
+
status :beta
|
19
|
+
|
20
|
+
DEFAULT_SCHEME = :default
|
21
|
+
SCHEME_MAPPINGS = {
|
22
|
+
DEFAULT_SCHEME => "Button--secondary",
|
23
|
+
:danger => "Button--danger",
|
24
|
+
:invisible => "Button--invisible"
|
25
|
+
}.freeze
|
26
|
+
SCHEME_OPTIONS = SCHEME_MAPPINGS.keys
|
27
|
+
|
28
|
+
# @example Default
|
29
|
+
#
|
30
|
+
# <%= render(Yattho::Beta::IconButton.new(icon: :search, "aria-label": "Search", id: "search-button", id: "search-button")) %>
|
31
|
+
#
|
32
|
+
# @example Schemes
|
33
|
+
#
|
34
|
+
# <%= render(Yattho::Beta::IconButton.new(icon: :search, "aria-label": "Search")) %>
|
35
|
+
# <%= render(Yattho::Beta::IconButton.new(icon: :trash, "aria-label": "Delete", scheme: :danger)) %>
|
36
|
+
#
|
37
|
+
# @example With an `aria-description`
|
38
|
+
# @description
|
39
|
+
# If you need to have a longer description for the icon button, use both the `aria-label` and `aria-description`
|
40
|
+
# attributes. A label should be short and concise, while the description can be longer as it is intended to provide
|
41
|
+
# more context and information. See the accessibility section for more information.
|
42
|
+
# @code
|
43
|
+
# <%= render(Yattho::Beta::IconButton.new(icon: :bold, "aria-label": "Bold", "aria-description": "Add bold text, Cmd+b")) %>
|
44
|
+
#
|
45
|
+
# @example Custom tooltip direction
|
46
|
+
#
|
47
|
+
# <%= render(Yattho::Beta::IconButton.new(icon: :search, "aria-label": "Search", tooltip_direction: :e)) %>
|
48
|
+
#
|
49
|
+
# @param icon [String] Name of <%= link_to_octicons %> to use.
|
50
|
+
# @param wrapper_arguments [Hash] Optional keyword arguments to be passed to the wrapper `<div>` tag.
|
51
|
+
# @param scheme [Symbol] <%= one_of(Yattho::Beta::IconButton::SCHEME_OPTIONS) %>
|
52
|
+
# @param size [Symbol] <%= one_of(Yattho::Beta::Button::SIZE_OPTIONS) %>
|
53
|
+
# @param tag [Symbol] <%= one_of(Yattho::Beta::BaseButton::TAG_OPTIONS) %>
|
54
|
+
# @param type [Symbol] <%= one_of(Yattho::Beta::BaseButton::TYPE_OPTIONS) %>
|
55
|
+
# @param aria-label [String] String that can be read by assistive technology. A label should be short and concise. See the accessibility section for more information.
|
56
|
+
# @param aria-description [String] String that can be read by assistive technology. A description can be longer as it is intended to provide more context and information. See the accessibility section for more information.
|
57
|
+
# @param show_tooltip [Boolean] Whether or not to show a tooltip when this button is hovered. Tooltips should only be hidden if the aria label is redundant, i.e. if the icon has a widely understood definition.
|
58
|
+
# @param tooltip_direction [Symbol] (Yattho::Alpha::Tooltip::DIRECTION_DEFAULT) <%= one_of(Yattho::Alpha::Tooltip::DIRECTION_OPTIONS) %>
|
59
|
+
# @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
|
60
|
+
def initialize(icon:, scheme: DEFAULT_SCHEME, wrapper_arguments: {}, show_tooltip: true,
|
61
|
+
tooltip_direction: Yattho::Alpha::Tooltip::DIRECTION_DEFAULT, size: Yattho::Beta::Button::DEFAULT_SIZE, **system_arguments)
|
62
|
+
@icon = icon
|
63
|
+
|
64
|
+
@wrapper_arguments = wrapper_arguments
|
65
|
+
@show_tooltip = show_tooltip
|
66
|
+
@system_arguments = system_arguments
|
67
|
+
@system_arguments[:id] ||= self.class.generate_id
|
68
|
+
|
69
|
+
@system_arguments[:classes] = class_names(
|
70
|
+
"Button",
|
71
|
+
"Button--iconOnly",
|
72
|
+
SCHEME_MAPPINGS[fetch_or_fallback(SCHEME_OPTIONS, scheme, DEFAULT_SCHEME)],
|
73
|
+
Yattho::Beta::Button::SIZE_MAPPINGS[fetch_or_fallback(Yattho::Beta::Button::SIZE_OPTIONS, size,
|
74
|
+
Yattho::Beta::Button::DEFAULT_SIZE)],
|
75
|
+
system_arguments[:classes]
|
76
|
+
)
|
77
|
+
|
78
|
+
validate_aria_label
|
79
|
+
|
80
|
+
@aria_label = aria("label", @system_arguments)
|
81
|
+
@aria_description = aria("description", @system_arguments)
|
82
|
+
|
83
|
+
@tooltip_arguments = {
|
84
|
+
for_id: @system_arguments[:id],
|
85
|
+
direction: tooltip_direction
|
86
|
+
}
|
87
|
+
|
88
|
+
# If we have both an `aria-label` and a `aria-description`, we create a `Tooltip` with the description type and keep the `aria-label` in the button.
|
89
|
+
# Otherwise, the `aria-label` is used as the tooltip text, which is the `aria-labelled-by` of the button, so we don't set it in the button.
|
90
|
+
if @aria_label.present? && @aria_description.present?
|
91
|
+
@system_arguments.delete(:'aria-description')
|
92
|
+
@system_arguments[:aria].delete(:description) if @system_arguments.include?(:aria)
|
93
|
+
@tooltip_arguments[:text] = @aria_description
|
94
|
+
@tooltip_arguments[:type] = :description
|
95
|
+
else
|
96
|
+
@system_arguments.delete(:'aria-label')
|
97
|
+
@system_arguments[:aria].delete(:label) if @system_arguments.include?(:aria)
|
98
|
+
@tooltip_arguments[:text] = @aria_label
|
99
|
+
@tooltip_arguments[:type] = :label
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
private
|
104
|
+
|
105
|
+
def render_tooltip?
|
106
|
+
@show_tooltip && @system_arguments[:tag] != :summary
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
/* Labels */
|
2
|
+
|
3
|
+
/* Provide a wrapper to ensure labels stick together */
|
4
|
+
|
5
|
+
.labels {
|
6
|
+
position: relative;
|
7
|
+
}
|
8
|
+
|
9
|
+
/* Default 20px */
|
10
|
+
|
11
|
+
.label, /* TODO: Deprecate */
|
12
|
+
.Label {
|
13
|
+
display: inline-block;
|
14
|
+
padding: 0 7px;
|
15
|
+
font-size: var(--yattho-text-body-size-small, 12px);
|
16
|
+
font-weight: var(--base-text-weight-medium, 500);
|
17
|
+
line-height: 18px;
|
18
|
+
white-space: nowrap;
|
19
|
+
border: var(--yattho-borderWidth-thin, 1px) solid var(--color-border-default);
|
20
|
+
border-radius: 2em;
|
21
|
+
}
|
22
|
+
|
23
|
+
.label:hover, .Label:hover {
|
24
|
+
text-decoration: none;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Large 24px */
|
28
|
+
|
29
|
+
.Label--large {
|
30
|
+
padding-right: 10px;
|
31
|
+
padding-left: 10px;
|
32
|
+
line-height: 22px;
|
33
|
+
}
|
34
|
+
|
35
|
+
/* Inline */
|
36
|
+
|
37
|
+
/* Doesn't increase height of parent element
|
38
|
+
** Can be used with different font-sizes */
|
39
|
+
|
40
|
+
.Label--inline {
|
41
|
+
display: inline;
|
42
|
+
padding: 0.12em 0.5em;
|
43
|
+
font-size: 85%;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* Contrast */
|
47
|
+
|
48
|
+
.Label--primary {
|
49
|
+
color: var(--color-fg-default);
|
50
|
+
border-color: var(--color-neutral-emphasis);
|
51
|
+
}
|
52
|
+
|
53
|
+
.Label--secondary {
|
54
|
+
color: var(--color-fg-muted);
|
55
|
+
border-color: var(--color-border-default);
|
56
|
+
}
|
57
|
+
|
58
|
+
/* Colors */
|
59
|
+
|
60
|
+
.Label--info, /* TODO: deprecate */
|
61
|
+
.Label--accent {
|
62
|
+
color: var(--color-accent-fg);
|
63
|
+
border-color: var(--color-accent-emphasis);
|
64
|
+
}
|
65
|
+
|
66
|
+
.Label--success {
|
67
|
+
color: var(--color-success-fg);
|
68
|
+
border-color: var(--color-success-emphasis);
|
69
|
+
}
|
70
|
+
|
71
|
+
.Label--warning, /* TODO: deprecate */
|
72
|
+
.Label--attention {
|
73
|
+
color: var(--color-attention-fg);
|
74
|
+
border-color: var(--color-attention-emphasis);
|
75
|
+
}
|
76
|
+
|
77
|
+
.Label--severe {
|
78
|
+
color: var(--color-severe-fg);
|
79
|
+
border-color: var(--color-severe-emphasis);
|
80
|
+
}
|
81
|
+
|
82
|
+
.Label--danger {
|
83
|
+
color: var(--color-danger-fg);
|
84
|
+
border-color: var(--color-danger-emphasis);
|
85
|
+
}
|
86
|
+
|
87
|
+
.Label--open {
|
88
|
+
color: var(--color-open-fg);
|
89
|
+
border-color: var(--color-open-emphasis);
|
90
|
+
}
|
91
|
+
|
92
|
+
.Label--closed {
|
93
|
+
color: var(--color-closed-fg);
|
94
|
+
border-color: var(--color-closed-emphasis);
|
95
|
+
}
|
96
|
+
|
97
|
+
.Label--done {
|
98
|
+
color: var(--color-done-fg);
|
99
|
+
border-color: var(--color-done-emphasis);
|
100
|
+
}
|
101
|
+
|
102
|
+
.Label--sponsors {
|
103
|
+
color: var(--color-sponsors-fg);
|
104
|
+
border-color: var(--color-sponsors-emphasis);
|
105
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"name":"beta/label","selectors":[".labels",".label"," \n.Label",".label:hover"," .Label:hover",".Label--large",".Label--inline",".Label--primary",".Label--secondary",".Label--info"," \n.Label--accent",".Label--success",".Label--warning"," \n.Label--attention",".Label--severe",".Label--danger",".Label--open",".Label--closed",".Label--done",".Label--sponsors"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["label.pcss"],"names":[],"mappings":"AAAA,WAAW;;AAEX,sDAAsD;;AACtD;EACE,kBAAkB;AACpB;;AAEA,iBAAiB;;AAEjB;;EAEE,qBAAqB;EACrB,cAAc;EACd,mDAAmD;EACnD,gDAAgD;EAChD,iBAAiB;EACjB,mBAAmB;EACnB,6EAA6E;EAC7E,kBAAkB;AAKpB;;AAHE;IACE,qBAAqB;EACvB;;AAGF,eAAe;;AAEf;EACE,mBAAmB;EACnB,kBAAkB;EAClB,iBAAiB;AACnB;;AAEA,WAAW;;AAEX;0CAC0C;;AAC1C;EACE,eAAe;EACf,qBAAqB;EACrB,cAAc;AAChB;;AAEA,aAAa;;AAEb;EACE,8BAA8B;EAC9B,2CAA2C;AAC7C;;AAEA;EACE,4BAA4B;EAC5B,yCAAyC;AAC3C;;AAEA,WAAW;;AAEX;;EAEE,6BAA6B;EAC7B,0CAA0C;AAC5C;;AAEA;EACE,8BAA8B;EAC9B,2CAA2C;AAC7C;;AAEA;;EAEE,gCAAgC;EAChC,6CAA6C;AAC/C;;AAEA;EACE,6BAA6B;EAC7B,0CAA0C;AAC5C;;AAEA;EACE,6BAA6B;EAC7B,0CAA0C;AAC5C;;AAEA;EACE,2BAA2B;EAC3B,wCAAwC;AAC1C;;AAEA;EACE,6BAA6B;EAC7B,0CAA0C;AAC5C;;AAEA;EACE,2BAA2B;EAC3B,wCAAwC;AAC1C;;AAEA;EACE,+BAA+B;EAC/B,4CAA4C;AAC9C","file":"label.css","sourcesContent":["/* Labels */\n\n/* Provide a wrapper to ensure labels stick together */\n.labels {\n position: relative;\n}\n\n/* Default 20px */\n\n.label, /* TODO: Deprecate */\n.Label {\n display: inline-block;\n padding: 0 7px;\n font-size: var(--yattho-text-body-size-small, 12px);\n font-weight: var(--base-text-weight-medium, 500);\n line-height: 18px;\n white-space: nowrap;\n border: var(--yattho-borderWidth-thin, 1px) solid var(--color-border-default);\n border-radius: 2em;\n\n &:hover {\n text-decoration: none;\n }\n}\n\n/* Large 24px */\n\n.Label--large {\n padding-right: 10px;\n padding-left: 10px;\n line-height: 22px;\n}\n\n/* Inline */\n\n/* Doesn't increase height of parent element\n** Can be used with different font-sizes */\n.Label--inline {\n display: inline;\n padding: 0.12em 0.5em;\n font-size: 85%;\n}\n\n/* Contrast */\n\n.Label--primary {\n color: var(--color-fg-default);\n border-color: var(--color-neutral-emphasis);\n}\n\n.Label--secondary {\n color: var(--color-fg-muted);\n border-color: var(--color-border-default);\n}\n\n/* Colors */\n\n.Label--info, /* TODO: deprecate */\n.Label--accent {\n color: var(--color-accent-fg);\n border-color: var(--color-accent-emphasis);\n}\n\n.Label--success {\n color: var(--color-success-fg);\n border-color: var(--color-success-emphasis);\n}\n\n.Label--warning, /* TODO: deprecate */\n.Label--attention {\n color: var(--color-attention-fg);\n border-color: var(--color-attention-emphasis);\n}\n\n.Label--severe {\n color: var(--color-severe-fg);\n border-color: var(--color-severe-emphasis);\n}\n\n.Label--danger {\n color: var(--color-danger-fg);\n border-color: var(--color-danger-emphasis);\n}\n\n.Label--open {\n color: var(--color-open-fg);\n border-color: var(--color-open-emphasis);\n}\n\n.Label--closed {\n color: var(--color-closed-fg);\n border-color: var(--color-closed-emphasis);\n}\n\n.Label--done {\n color: var(--color-done-fg);\n border-color: var(--color-done-emphasis);\n}\n\n.Label--sponsors {\n color: var(--color-sponsors-fg);\n border-color: var(--color-sponsors-emphasis);\n}"]}
|
@@ -0,0 +1,103 @@
|
|
1
|
+
/* Labels */
|
2
|
+
|
3
|
+
/* Provide a wrapper to ensure labels stick together */
|
4
|
+
.labels {
|
5
|
+
position: relative;
|
6
|
+
}
|
7
|
+
|
8
|
+
/* Default 20px */
|
9
|
+
|
10
|
+
.label, /* TODO: Deprecate */
|
11
|
+
.Label {
|
12
|
+
display: inline-block;
|
13
|
+
padding: 0 7px;
|
14
|
+
font-size: var(--yattho-text-body-size-small, 12px);
|
15
|
+
font-weight: var(--base-text-weight-medium, 500);
|
16
|
+
line-height: 18px;
|
17
|
+
white-space: nowrap;
|
18
|
+
border: var(--yattho-borderWidth-thin, 1px) solid var(--color-border-default);
|
19
|
+
border-radius: 2em;
|
20
|
+
|
21
|
+
&:hover {
|
22
|
+
text-decoration: none;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
/* Large 24px */
|
27
|
+
|
28
|
+
.Label--large {
|
29
|
+
padding-right: 10px;
|
30
|
+
padding-left: 10px;
|
31
|
+
line-height: 22px;
|
32
|
+
}
|
33
|
+
|
34
|
+
/* Inline */
|
35
|
+
|
36
|
+
/* Doesn't increase height of parent element
|
37
|
+
** Can be used with different font-sizes */
|
38
|
+
.Label--inline {
|
39
|
+
display: inline;
|
40
|
+
padding: 0.12em 0.5em;
|
41
|
+
font-size: 85%;
|
42
|
+
}
|
43
|
+
|
44
|
+
/* Contrast */
|
45
|
+
|
46
|
+
.Label--primary {
|
47
|
+
color: var(--color-fg-default);
|
48
|
+
border-color: var(--color-neutral-emphasis);
|
49
|
+
}
|
50
|
+
|
51
|
+
.Label--secondary {
|
52
|
+
color: var(--color-fg-muted);
|
53
|
+
border-color: var(--color-border-default);
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Colors */
|
57
|
+
|
58
|
+
.Label--info, /* TODO: deprecate */
|
59
|
+
.Label--accent {
|
60
|
+
color: var(--color-accent-fg);
|
61
|
+
border-color: var(--color-accent-emphasis);
|
62
|
+
}
|
63
|
+
|
64
|
+
.Label--success {
|
65
|
+
color: var(--color-success-fg);
|
66
|
+
border-color: var(--color-success-emphasis);
|
67
|
+
}
|
68
|
+
|
69
|
+
.Label--warning, /* TODO: deprecate */
|
70
|
+
.Label--attention {
|
71
|
+
color: var(--color-attention-fg);
|
72
|
+
border-color: var(--color-attention-emphasis);
|
73
|
+
}
|
74
|
+
|
75
|
+
.Label--severe {
|
76
|
+
color: var(--color-severe-fg);
|
77
|
+
border-color: var(--color-severe-emphasis);
|
78
|
+
}
|
79
|
+
|
80
|
+
.Label--danger {
|
81
|
+
color: var(--color-danger-fg);
|
82
|
+
border-color: var(--color-danger-emphasis);
|
83
|
+
}
|
84
|
+
|
85
|
+
.Label--open {
|
86
|
+
color: var(--color-open-fg);
|
87
|
+
border-color: var(--color-open-emphasis);
|
88
|
+
}
|
89
|
+
|
90
|
+
.Label--closed {
|
91
|
+
color: var(--color-closed-fg);
|
92
|
+
border-color: var(--color-closed-emphasis);
|
93
|
+
}
|
94
|
+
|
95
|
+
.Label--done {
|
96
|
+
color: var(--color-done-fg);
|
97
|
+
border-color: var(--color-done-emphasis);
|
98
|
+
}
|
99
|
+
|
100
|
+
.Label--sponsors {
|
101
|
+
color: var(--color-sponsors-fg);
|
102
|
+
border-color: var(--color-sponsors-emphasis);
|
103
|
+
}
|