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,613 @@
|
|
1
|
+
/* Overlay */
|
2
|
+
|
3
|
+
.Overlay--hidden {
|
4
|
+
display: none !important;
|
5
|
+
}
|
6
|
+
|
7
|
+
.Overlay--visibilityHidden {
|
8
|
+
height: 0;
|
9
|
+
overflow: hidden;
|
10
|
+
visibility: hidden;
|
11
|
+
opacity: 0;
|
12
|
+
}
|
13
|
+
|
14
|
+
.Overlay {
|
15
|
+
display: flex;
|
16
|
+
width: min(var(--overlay-width), 100vw - 2rem);
|
17
|
+
min-width: 192px;
|
18
|
+
max-height: min(calc(100vh - 2rem), var(--overlay-height));
|
19
|
+
white-space: normal;
|
20
|
+
flex-direction: column;
|
21
|
+
background-color: var(--color-canvas-overlay);
|
22
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
23
|
+
box-shadow: var(--color-overlay-shadow);
|
24
|
+
opacity: 1;
|
25
|
+
}
|
26
|
+
|
27
|
+
.Overlay.Overlay--size-auto {
|
28
|
+
min-width: 192px;
|
29
|
+
max-width: calc(100vw - 2rem);
|
30
|
+
max-height: calc(100vh - 2rem);
|
31
|
+
}
|
32
|
+
|
33
|
+
.Overlay.Overlay--size-full {
|
34
|
+
width: 100vw;
|
35
|
+
height: 100vh;
|
36
|
+
}
|
37
|
+
|
38
|
+
.Overlay.Overlay--size-xsmall {
|
39
|
+
--overlay-width: 192px;
|
40
|
+
|
41
|
+
max-height: calc(100vh - 2rem);
|
42
|
+
}
|
43
|
+
|
44
|
+
.Overlay.Overlay--size-small {
|
45
|
+
--overlay-height: 256px;
|
46
|
+
--overlay-width: 320px;
|
47
|
+
}
|
48
|
+
|
49
|
+
.Overlay.Overlay--size-small-portrait {
|
50
|
+
--overlay-height: 432px;
|
51
|
+
--overlay-width: 320px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.Overlay.Overlay--size-medium {
|
55
|
+
--overlay-height: 320px;
|
56
|
+
--overlay-width: 480px;
|
57
|
+
}
|
58
|
+
|
59
|
+
.Overlay.Overlay--size-medium-portrait {
|
60
|
+
--overlay-height: 600px;
|
61
|
+
--overlay-width: 480px;
|
62
|
+
}
|
63
|
+
|
64
|
+
.Overlay.Overlay--size-large {
|
65
|
+
--overlay-height: 432px;
|
66
|
+
--overlay-width: 640px;
|
67
|
+
}
|
68
|
+
|
69
|
+
.Overlay.Overlay--size-xlarge {
|
70
|
+
--overlay-height: 600px;
|
71
|
+
--overlay-width: 960px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.Overlay.Overlay--height-auto {
|
75
|
+
height: auto;
|
76
|
+
}
|
77
|
+
|
78
|
+
/* start deprecate in favor of Alpha::Dialog */
|
79
|
+
|
80
|
+
.Overlay.Overlay--height-xsmall {
|
81
|
+
height: min(192px, 100vh - 2rem);
|
82
|
+
}
|
83
|
+
|
84
|
+
.Overlay.Overlay--height-small {
|
85
|
+
height: min(256px, 100vh - 2rem);
|
86
|
+
}
|
87
|
+
|
88
|
+
.Overlay.Overlay--height-medium {
|
89
|
+
height: min(320px, 100vh - 2rem);
|
90
|
+
}
|
91
|
+
|
92
|
+
.Overlay.Overlay--height-large {
|
93
|
+
height: min(432px, 100vh - 2rem);
|
94
|
+
}
|
95
|
+
|
96
|
+
.Overlay.Overlay--height-xlarge {
|
97
|
+
height: min(600px, 100vh - 2rem);
|
98
|
+
}
|
99
|
+
|
100
|
+
.Overlay.Overlay--width-auto {
|
101
|
+
width: auto;
|
102
|
+
}
|
103
|
+
|
104
|
+
.Overlay.Overlay--width-small {
|
105
|
+
width: min(256px, 100vw - 2rem);
|
106
|
+
}
|
107
|
+
|
108
|
+
.Overlay.Overlay--width-medium {
|
109
|
+
width: min(320px, 100vw - 2rem);
|
110
|
+
}
|
111
|
+
|
112
|
+
.Overlay.Overlay--width-large {
|
113
|
+
width: min(480px, 100vw - 2rem);
|
114
|
+
}
|
115
|
+
|
116
|
+
.Overlay.Overlay--width-xlarge {
|
117
|
+
width: min(640px, 100vw - 2rem);
|
118
|
+
}
|
119
|
+
|
120
|
+
.Overlay.Overlay--width-xxlarge {
|
121
|
+
width: min(960px, 100vw - 2rem);
|
122
|
+
}
|
123
|
+
|
124
|
+
/* end deprecate */
|
125
|
+
|
126
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
127
|
+
|
128
|
+
.Overlay.Overlay--motion-scaleFade {
|
129
|
+
animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-scaleFade;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
@keyframes Overlay--motion-scaleFade {
|
134
|
+
0% {
|
135
|
+
opacity: 0;
|
136
|
+
transform: scale(0.5);
|
137
|
+
}
|
138
|
+
|
139
|
+
100% {
|
140
|
+
opacity: 1;
|
141
|
+
transform: scale(1);
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
/* for <form> element that wraps entire contents of overlay */
|
146
|
+
|
147
|
+
.Overlay-form {
|
148
|
+
display: flex;
|
149
|
+
overflow: auto;
|
150
|
+
flex-direction: column;
|
151
|
+
flex-grow: 1;
|
152
|
+
}
|
153
|
+
|
154
|
+
.Overlay-header {
|
155
|
+
z-index: 1;
|
156
|
+
display: flex;
|
157
|
+
flex-direction: column;
|
158
|
+
}
|
159
|
+
|
160
|
+
.Overlay-header.Overlay-header--divided {
|
161
|
+
padding-bottom: var(--yattho-stack-padding-condensed, 8px);
|
162
|
+
box-shadow: inset 0 calc(var(--yattho-borderWidth-thin, 1px) * -1) var(--color-border-default);
|
163
|
+
}
|
164
|
+
|
165
|
+
.Overlay-header.Overlay-header--divided + .Overlay-body {
|
166
|
+
padding-top: var(--yattho-stack-padding-normal, 16px);
|
167
|
+
}
|
168
|
+
|
169
|
+
.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap {
|
170
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
171
|
+
}
|
172
|
+
|
173
|
+
.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title {
|
174
|
+
font-size: var(--yattho-text-title-size-medium, 20px);
|
175
|
+
}
|
176
|
+
|
177
|
+
.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description {
|
178
|
+
font-size: var(--yattho-text-body-size-medium, 14px);
|
179
|
+
}
|
180
|
+
|
181
|
+
.Overlay-header .Overlay-headerContentWrap {
|
182
|
+
display: flex;
|
183
|
+
align-items: flex-start;
|
184
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
185
|
+
padding: var(--yattho-stack-gap-condensed, 8px) var(--yattho-stack-gap-condensed, 8px) 0 var(--yattho-stack-gap-condensed, 8px);
|
186
|
+
}
|
187
|
+
|
188
|
+
.Overlay-header .Overlay-headerContentWrap .Overlay-actionWrap {
|
189
|
+
display: flex;
|
190
|
+
flex-direction: row;
|
191
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
192
|
+
}
|
193
|
+
|
194
|
+
.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap {
|
195
|
+
display: flex;
|
196
|
+
padding: calc(var(--yattho-stack-gap-condensed, 8px) * 0.75) 0 calc(var(--yattho-stack-gap-condensed, 8px) * 0.75) var(--yattho-stack-gap-condensed, 8px);
|
197
|
+
flex-direction: column;
|
198
|
+
flex-grow: 1;
|
199
|
+
gap: var(--yattho-control-small-gap, 4px);
|
200
|
+
}
|
201
|
+
|
202
|
+
.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title {
|
203
|
+
margin: 0;
|
204
|
+
font-size: var(--yattho-text-body-size-medium, 14px);
|
205
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
206
|
+
}
|
207
|
+
|
208
|
+
.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description {
|
209
|
+
margin: 0;
|
210
|
+
font-size: var(--yattho-text-body-size-small, 12px);
|
211
|
+
font-weight: var(--base-text-weight-normal, 400);
|
212
|
+
color: var(--color-fg-muted);
|
213
|
+
}
|
214
|
+
|
215
|
+
/* generic body content slot */
|
216
|
+
|
217
|
+
.Overlay-body {
|
218
|
+
padding: var(--yattho-stack-padding-normal, 16px);
|
219
|
+
padding-top: 0;
|
220
|
+
overflow-y: auto;
|
221
|
+
scrollbar-width: thin;
|
222
|
+
font-size: var(--yattho-text-body-size-medium, 14px);
|
223
|
+
flex-grow: 1;
|
224
|
+
}
|
225
|
+
|
226
|
+
.Overlay-body.Overlay-body--paddingCondensed {
|
227
|
+
padding: var(--yattho-stack-padding-condensed, 8px);
|
228
|
+
padding-top: 0;
|
229
|
+
}
|
230
|
+
|
231
|
+
.Overlay-body.Overlay-body--paddingNone {
|
232
|
+
padding: 0;
|
233
|
+
}
|
234
|
+
|
235
|
+
/* generic footer slot */
|
236
|
+
|
237
|
+
.Overlay-footer {
|
238
|
+
z-index: 1;
|
239
|
+
display: flex;
|
240
|
+
padding: 0 var(--yattho-stack-padding-normal, 16px) var(--yattho-stack-padding-normal, 16px) var(--yattho-stack-padding-normal, 16px);
|
241
|
+
flex-direction: row;
|
242
|
+
flex-shrink: 0;
|
243
|
+
flex-wrap: wrap;
|
244
|
+
}
|
245
|
+
|
246
|
+
.Overlay-footer.Overlay-footer--divided {
|
247
|
+
padding-top: var(--yattho-stack-padding-normal, 16px);
|
248
|
+
box-shadow: inset 0 var(--yattho-borderWidth-thin, 1px) var(--color-border-default);
|
249
|
+
}
|
250
|
+
|
251
|
+
.Overlay-footer.Overlay-footer--alignStart {
|
252
|
+
justify-content: flex-start;
|
253
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
254
|
+
}
|
255
|
+
|
256
|
+
.Overlay-footer.Overlay-footer--alignCenter {
|
257
|
+
justify-content: center;
|
258
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
259
|
+
}
|
260
|
+
|
261
|
+
.Overlay-footer.Overlay-footer--alignEnd {
|
262
|
+
justify-content: flex-end;
|
263
|
+
gap: var(--yattho-stack-gap-condensed, 8px);
|
264
|
+
}
|
265
|
+
|
266
|
+
/* TODO: replace with refactored IconButton */
|
267
|
+
|
268
|
+
.Overlay-closeButton {
|
269
|
+
position: relative;
|
270
|
+
display: grid;
|
271
|
+
width: var(--base-size-32, 32px);
|
272
|
+
height: var(--base-size-32, 32px);
|
273
|
+
padding: 0;
|
274
|
+
color: var(--color-fg-muted);
|
275
|
+
cursor: pointer;
|
276
|
+
-webkit-user-select: none;
|
277
|
+
user-select: none;
|
278
|
+
background-color: transparent;
|
279
|
+
border: var(--yattho-borderWidth-thin, 1px) solid transparent;
|
280
|
+
border-radius: var(--yattho-borderRadius-medium, 6px);
|
281
|
+
transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
|
282
|
+
transition-property: color, background-color, border-color;
|
283
|
+
place-content: center;
|
284
|
+
align-self: flex-start;
|
285
|
+
flex-shrink: 0;
|
286
|
+
}
|
287
|
+
|
288
|
+
.Overlay-closeButton:hover,
|
289
|
+
.Overlay-closeButton:focus {
|
290
|
+
background-color: var(--color-btn-hover-bg);
|
291
|
+
border: var(--yattho-borderWidth-thin, 1px) solid var(--color-btn-hover-bg);
|
292
|
+
}
|
293
|
+
|
294
|
+
/* Override .close-button's `border: 0` that triggers a border-color transition on hover */
|
295
|
+
|
296
|
+
.Overlay-closeButton.close-button {
|
297
|
+
border: var(--yattho-borderWidth-thin, 1px) solid transparent;
|
298
|
+
}
|
299
|
+
|
300
|
+
/* variants must be mixins so we can extend within a media query (@extend is not supported inside media queries) */
|
301
|
+
|
302
|
+
/* border-radius repeats within placement options to ensure the original radius is reset when two classes co-exist */
|
303
|
+
|
304
|
+
/* center */
|
305
|
+
|
306
|
+
/* anchor */
|
307
|
+
|
308
|
+
/* anchor side(s) */
|
309
|
+
|
310
|
+
/* full width */
|
311
|
+
|
312
|
+
/* Overlay variant classnames */
|
313
|
+
|
314
|
+
.Overlay-backdrop--center {
|
315
|
+
position: fixed;
|
316
|
+
top: 0;
|
317
|
+
right: 0;
|
318
|
+
bottom: 0;
|
319
|
+
left: 0;
|
320
|
+
z-index: 999;
|
321
|
+
display: flex;
|
322
|
+
background-color: var(--color-neutral-muted);
|
323
|
+
align-items: center;
|
324
|
+
justify-content: center;
|
325
|
+
}
|
326
|
+
|
327
|
+
.Overlay-backdrop--anchor {
|
328
|
+
position: absolute;
|
329
|
+
z-index: 999;
|
330
|
+
background-color: transparent;
|
331
|
+
}
|
332
|
+
|
333
|
+
.Overlay-backdrop--anchor .Overlay {
|
334
|
+
width: auto;
|
335
|
+
}
|
336
|
+
|
337
|
+
.Overlay-backdrop--side {
|
338
|
+
position: fixed;
|
339
|
+
top: 0;
|
340
|
+
right: 0;
|
341
|
+
bottom: 0;
|
342
|
+
left: 0;
|
343
|
+
z-index: 999;
|
344
|
+
display: flex;
|
345
|
+
background-color: var(--color-neutral-muted);
|
346
|
+
/* default left */
|
347
|
+
align-items: center;
|
348
|
+
justify-content: left;
|
349
|
+
}
|
350
|
+
|
351
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-left {
|
352
|
+
align-items: center;
|
353
|
+
justify-content: left;
|
354
|
+
}
|
355
|
+
|
356
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-left > .Overlay {
|
357
|
+
height: 100vh;
|
358
|
+
max-height: unset;
|
359
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
360
|
+
border-top-left-radius: 0;
|
361
|
+
border-bottom-left-radius: 0;
|
362
|
+
}
|
363
|
+
|
364
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
365
|
+
|
366
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-left > .Overlay {
|
367
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInRight;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-right {
|
372
|
+
align-items: center;
|
373
|
+
justify-content: right;
|
374
|
+
}
|
375
|
+
|
376
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-right > .Overlay {
|
377
|
+
height: 100vh;
|
378
|
+
max-height: unset;
|
379
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
380
|
+
border-top-right-radius: 0;
|
381
|
+
border-bottom-right-radius: 0;
|
382
|
+
}
|
383
|
+
|
384
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
385
|
+
|
386
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-right > .Overlay {
|
387
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInLeft;
|
388
|
+
}
|
389
|
+
}
|
390
|
+
|
391
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-bottom {
|
392
|
+
align-items: end;
|
393
|
+
justify-content: center;
|
394
|
+
}
|
395
|
+
|
396
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-bottom > .Overlay {
|
397
|
+
width: 100vw;
|
398
|
+
height: auto;
|
399
|
+
max-height: calc(100vh - 2rem);
|
400
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
401
|
+
border-bottom-right-radius: 0;
|
402
|
+
border-bottom-left-radius: 0;
|
403
|
+
}
|
404
|
+
|
405
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
406
|
+
|
407
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-bottom > .Overlay {
|
408
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideUp;
|
409
|
+
}
|
410
|
+
}
|
411
|
+
|
412
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-top {
|
413
|
+
align-items: start;
|
414
|
+
justify-content: center;
|
415
|
+
}
|
416
|
+
|
417
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-top > .Overlay {
|
418
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
419
|
+
border-top-left-radius: 0;
|
420
|
+
border-top-right-radius: 0;
|
421
|
+
}
|
422
|
+
|
423
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
424
|
+
|
425
|
+
.Overlay-backdrop--side.Overlay-backdrop--placement-top > .Overlay {
|
426
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideDown;
|
427
|
+
}
|
428
|
+
}
|
429
|
+
|
430
|
+
.Overlay-backdrop--full {
|
431
|
+
position: fixed;
|
432
|
+
top: 0;
|
433
|
+
right: 0;
|
434
|
+
bottom: 0;
|
435
|
+
left: 0;
|
436
|
+
z-index: 999;
|
437
|
+
display: flex;
|
438
|
+
background-color: var(--color-neutral-muted);
|
439
|
+
}
|
440
|
+
|
441
|
+
.Overlay-backdrop--full .Overlay {
|
442
|
+
border-radius: unset !important;
|
443
|
+
}
|
444
|
+
|
445
|
+
.Overlay-backdrop--full .Overlay {
|
446
|
+
width: 100%;
|
447
|
+
max-width: 100vw;
|
448
|
+
height: 100%;
|
449
|
+
max-height: 100vh;
|
450
|
+
flex-grow: 1;
|
451
|
+
}
|
452
|
+
|
453
|
+
/* responsive variants */
|
454
|
+
|
455
|
+
/* --yattho-viewportRange-narrowLandscape */
|
456
|
+
|
457
|
+
@media (max-width: 767px) {
|
458
|
+
.Overlay-backdrop--center-whenNarrow {
|
459
|
+
position: fixed;
|
460
|
+
top: 0;
|
461
|
+
right: 0;
|
462
|
+
bottom: 0;
|
463
|
+
left: 0;
|
464
|
+
z-index: 999;
|
465
|
+
display: flex;
|
466
|
+
background-color: var(--color-neutral-muted);
|
467
|
+
align-items: center;
|
468
|
+
justify-content: center;
|
469
|
+
}
|
470
|
+
|
471
|
+
.Overlay-backdrop--anchor-whenNarrow {
|
472
|
+
position: absolute;
|
473
|
+
z-index: 999;
|
474
|
+
background-color: transparent;
|
475
|
+
}
|
476
|
+
.Overlay-backdrop--anchor-whenNarrow .Overlay {
|
477
|
+
width: auto;
|
478
|
+
}
|
479
|
+
|
480
|
+
.Overlay-backdrop--side-whenNarrow {
|
481
|
+
position: fixed;
|
482
|
+
top: 0;
|
483
|
+
right: 0;
|
484
|
+
bottom: 0;
|
485
|
+
left: 0;
|
486
|
+
z-index: 999;
|
487
|
+
display: flex;
|
488
|
+
background-color: var(--color-neutral-muted);
|
489
|
+
/* default left */
|
490
|
+
align-items: center;
|
491
|
+
justify-content: left;
|
492
|
+
}
|
493
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow {
|
494
|
+
align-items: center;
|
495
|
+
justify-content: left;
|
496
|
+
}
|
497
|
+
|
498
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow > .Overlay-whenNarrow {
|
499
|
+
height: 100vh;
|
500
|
+
max-height: unset;
|
501
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
502
|
+
border-top-left-radius: 0;
|
503
|
+
border-bottom-left-radius: 0;
|
504
|
+
}
|
505
|
+
|
506
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
507
|
+
|
508
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow > .Overlay-whenNarrow {
|
509
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInRight;
|
510
|
+
}
|
511
|
+
}
|
512
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow {
|
513
|
+
align-items: center;
|
514
|
+
justify-content: right;
|
515
|
+
}
|
516
|
+
|
517
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow > .Overlay-whenNarrow {
|
518
|
+
height: 100vh;
|
519
|
+
max-height: unset;
|
520
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
521
|
+
border-top-right-radius: 0;
|
522
|
+
border-bottom-right-radius: 0;
|
523
|
+
}
|
524
|
+
|
525
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
526
|
+
|
527
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow > .Overlay-whenNarrow {
|
528
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInLeft;
|
529
|
+
}
|
530
|
+
}
|
531
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow {
|
532
|
+
align-items: end;
|
533
|
+
justify-content: center;
|
534
|
+
}
|
535
|
+
|
536
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow > .Overlay-whenNarrow {
|
537
|
+
width: 100vw;
|
538
|
+
height: auto;
|
539
|
+
max-height: calc(100vh - 2rem);
|
540
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
541
|
+
border-bottom-right-radius: 0;
|
542
|
+
border-bottom-left-radius: 0;
|
543
|
+
}
|
544
|
+
|
545
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
546
|
+
|
547
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow > .Overlay-whenNarrow {
|
548
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideUp;
|
549
|
+
}
|
550
|
+
}
|
551
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow {
|
552
|
+
align-items: start;
|
553
|
+
justify-content: center;
|
554
|
+
}
|
555
|
+
|
556
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow > .Overlay-whenNarrow {
|
557
|
+
border-radius: var(--yattho-borderRadius-large, 12px);
|
558
|
+
border-top-left-radius: 0;
|
559
|
+
border-top-right-radius: 0;
|
560
|
+
}
|
561
|
+
|
562
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
563
|
+
|
564
|
+
.Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow > .Overlay-whenNarrow {
|
565
|
+
animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideDown;
|
566
|
+
}
|
567
|
+
}
|
568
|
+
|
569
|
+
.Overlay-backdrop--full-whenNarrow {
|
570
|
+
position: fixed;
|
571
|
+
top: 0;
|
572
|
+
right: 0;
|
573
|
+
bottom: 0;
|
574
|
+
left: 0;
|
575
|
+
z-index: 999;
|
576
|
+
display: flex;
|
577
|
+
background-color: var(--color-neutral-muted);
|
578
|
+
}
|
579
|
+
.Overlay-backdrop--full-whenNarrow .Overlay {
|
580
|
+
border-radius: unset !important;
|
581
|
+
}
|
582
|
+
.Overlay-backdrop--full-whenNarrow .Overlay {
|
583
|
+
width: 100%;
|
584
|
+
max-width: 100vw;
|
585
|
+
height: 100%;
|
586
|
+
max-height: 100vh;
|
587
|
+
flex-grow: 1;
|
588
|
+
}
|
589
|
+
}
|
590
|
+
|
591
|
+
@keyframes Overlay--motion-slideDown {
|
592
|
+
from {
|
593
|
+
transform: translateY(-100%);
|
594
|
+
}
|
595
|
+
}
|
596
|
+
|
597
|
+
@keyframes Overlay--motion-slideUp {
|
598
|
+
from {
|
599
|
+
transform: translateY(100%);
|
600
|
+
}
|
601
|
+
}
|
602
|
+
|
603
|
+
@keyframes Overlay--motion-slideInRight {
|
604
|
+
from {
|
605
|
+
transform: translateX(-100%);
|
606
|
+
}
|
607
|
+
}
|
608
|
+
|
609
|
+
@keyframes Overlay--motion-slideInLeft {
|
610
|
+
from {
|
611
|
+
transform: translateX(100%);
|
612
|
+
}
|
613
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"name":"alpha/dialog","selectors":[".Overlay--hidden",".Overlay--visibilityHidden",".Overlay",".Overlay.Overlay--size-auto",".Overlay.Overlay--size-full",".Overlay.Overlay--size-xsmall",".Overlay.Overlay--size-small",".Overlay.Overlay--size-small-portrait",".Overlay.Overlay--size-medium",".Overlay.Overlay--size-medium-portrait",".Overlay.Overlay--size-large",".Overlay.Overlay--size-xlarge",".Overlay.Overlay--height-auto",".Overlay.Overlay--height-xsmall",".Overlay.Overlay--height-small",".Overlay.Overlay--height-medium",".Overlay.Overlay--height-large",".Overlay.Overlay--height-xlarge",".Overlay.Overlay--width-auto",".Overlay.Overlay--width-small",".Overlay.Overlay--width-medium",".Overlay.Overlay--width-large",".Overlay.Overlay--width-xlarge",".Overlay.Overlay--width-xxlarge",".Overlay.Overlay--motion-scaleFade","0%","100%",".Overlay-form",".Overlay-header",".Overlay-header.Overlay-header--divided",".Overlay-header.Overlay-header--divided + .Overlay-body",".Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap",".Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title",".Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description",".Overlay-header .Overlay-headerContentWrap",".Overlay-header .Overlay-headerContentWrap .Overlay-actionWrap",".Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap",".Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title",".Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description",".Overlay-body",".Overlay-body.Overlay-body--paddingCondensed",".Overlay-body.Overlay-body--paddingNone",".Overlay-footer",".Overlay-footer.Overlay-footer--divided",".Overlay-footer.Overlay-footer--alignStart",".Overlay-footer.Overlay-footer--alignCenter",".Overlay-footer.Overlay-footer--alignEnd",".Overlay-closeButton",".Overlay-closeButton:hover","\n .Overlay-closeButton:focus",".Overlay-closeButton.close-button",".Overlay-backdrop--center",".Overlay-backdrop--anchor",".Overlay-backdrop--anchor .Overlay",".Overlay-backdrop--side",".Overlay-backdrop--side.Overlay-backdrop--placement-left",".Overlay-backdrop--side.Overlay-backdrop--placement-left > .Overlay",".Overlay-backdrop--side.Overlay-backdrop--placement-right",".Overlay-backdrop--side.Overlay-backdrop--placement-right > .Overlay",".Overlay-backdrop--side.Overlay-backdrop--placement-bottom",".Overlay-backdrop--side.Overlay-backdrop--placement-bottom > .Overlay",".Overlay-backdrop--side.Overlay-backdrop--placement-top",".Overlay-backdrop--side.Overlay-backdrop--placement-top > .Overlay",".Overlay-backdrop--full",".Overlay-backdrop--full .Overlay",".Overlay-backdrop--center-whenNarrow",".Overlay-backdrop--anchor-whenNarrow",".Overlay-backdrop--anchor-whenNarrow .Overlay",".Overlay-backdrop--side-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow > .Overlay-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow > .Overlay-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow > .Overlay-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow",".Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow > .Overlay-whenNarrow",".Overlay-backdrop--full-whenNarrow",".Overlay-backdrop--full-whenNarrow .Overlay","from"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["dialog.pcss"],"names":[],"mappings":"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","file":"dialog.css","sourcesContent":["/* Overlay */\n\n.Overlay--hidden {\n display: none !important;\n}\n\n.Overlay--visibilityHidden {\n height: 0;\n overflow: hidden;\n visibility: hidden;\n opacity: 0;\n}\n\n.Overlay {\n display: flex;\n width: min(var(--overlay-width), 100vw - 2rem);\n min-width: 192px;\n max-height: min(calc(100vh - 2rem), var(--overlay-height));\n white-space: normal;\n flex-direction: column;\n background-color: var(--color-canvas-overlay);\n border-radius: var(--yattho-borderRadius-large, 12px);\n box-shadow: var(--color-overlay-shadow);\n opacity: 1;\n\n &.Overlay--size-auto {\n min-width: 192px;\n max-width: calc(100vw - 2rem);\n max-height: calc(100vh - 2rem);\n }\n\n &.Overlay--size-full {\n width: 100vw;\n height: 100vh;\n }\n\n &.Overlay--size-xsmall {\n --overlay-width: 192px;\n\n max-height: calc(100vh - 2rem);\n }\n\n &.Overlay--size-small {\n --overlay-height: 256px;\n --overlay-width: 320px;\n }\n\n &.Overlay--size-small-portrait {\n --overlay-height: 432px;\n --overlay-width: 320px;\n }\n\n &.Overlay--size-medium {\n --overlay-height: 320px;\n --overlay-width: 480px;\n }\n\n &.Overlay--size-medium-portrait {\n --overlay-height: 600px;\n --overlay-width: 480px;\n }\n\n &.Overlay--size-large {\n --overlay-height: 432px;\n --overlay-width: 640px;\n }\n\n &.Overlay--size-xlarge {\n --overlay-height: 600px;\n --overlay-width: 960px;\n }\n\n &.Overlay--height-auto {\n height: auto;\n }\n\n /* start deprecate in favor of Alpha::Dialog */\n &.Overlay--height-xsmall {\n height: min(192px, 100vh - 2rem);\n }\n\n &.Overlay--height-small {\n height: min(256px, 100vh - 2rem);\n }\n\n &.Overlay--height-medium {\n height: min(320px, 100vh - 2rem);\n }\n\n &.Overlay--height-large {\n height: min(432px, 100vh - 2rem);\n }\n\n &.Overlay--height-xlarge {\n height: min(600px, 100vh - 2rem);\n }\n\n &.Overlay--width-auto {\n width: auto;\n }\n\n &.Overlay--width-small {\n width: min(256px, 100vw - 2rem);\n }\n\n &.Overlay--width-medium {\n width: min(320px, 100vw - 2rem);\n }\n\n &.Overlay--width-large {\n width: min(480px, 100vw - 2rem);\n }\n\n &.Overlay--width-xlarge {\n width: min(640px, 100vw - 2rem);\n }\n\n &.Overlay--width-xxlarge {\n width: min(960px, 100vw - 2rem);\n }\n\n /* end deprecate */\n\n &.Overlay--motion-scaleFade {\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-scaleFade;\n }\n }\n}\n\n@keyframes Overlay--motion-scaleFade {\n 0% {\n opacity: 0;\n transform: scale(0.5);\n }\n\n 100% {\n opacity: 1;\n transform: scale(1);\n }\n}\n\n/* for <form> element that wraps entire contents of overlay */\n.Overlay-form {\n display: flex;\n overflow: auto;\n flex-direction: column;\n flex-grow: 1;\n}\n\n.Overlay-header {\n z-index: 1;\n display: flex;\n flex-direction: column;\n\n &.Overlay-header--divided {\n padding-bottom: var(--yattho-stack-padding-condensed, 8px);\n box-shadow: inset 0 calc(var(--yattho-borderWidth-thin, 1px) * -1) var(--color-border-default);\n\n & + .Overlay-body {\n padding-top: var(--yattho-stack-padding-normal, 16px);\n }\n }\n\n &.Overlay-header--large {\n & .Overlay-headerContentWrap {\n & .Overlay-titleWrap {\n gap: var(--yattho-stack-gap-condensed, 8px);\n\n & .Overlay-title {\n font-size: var(--yattho-text-title-size-medium, 20px);\n }\n\n & .Overlay-description {\n font-size: var(--yattho-text-body-size-medium, 14px);\n }\n }\n }\n }\n\n & .Overlay-headerContentWrap {\n display: flex;\n align-items: flex-start;\n gap: var(--yattho-stack-gap-condensed, 8px);\n padding: var(--yattho-stack-gap-condensed, 8px) var(--yattho-stack-gap-condensed, 8px) 0 var(--yattho-stack-gap-condensed, 8px);\n\n & .Overlay-actionWrap {\n display: flex;\n flex-direction: row;\n gap: var(--yattho-stack-gap-condensed, 8px);\n }\n\n & .Overlay-titleWrap {\n display: flex;\n padding: calc(var(--yattho-stack-gap-condensed, 8px) * 0.75) 0 calc(var(--yattho-stack-gap-condensed, 8px) * 0.75) var(--yattho-stack-gap-condensed, 8px);\n flex-direction: column;\n flex-grow: 1;\n gap: var(--yattho-control-small-gap, 4px);\n\n & .Overlay-title {\n margin: 0;\n font-size: var(--yattho-text-body-size-medium, 14px);\n font-weight: var(--base-text-weight-semibold, 600);\n }\n\n & .Overlay-description {\n margin: 0;\n font-size: var(--yattho-text-body-size-small, 12px);\n font-weight: var(--base-text-weight-normal, 400);\n color: var(--color-fg-muted);\n }\n }\n }\n}\n\n/* generic body content slot */\n.Overlay-body {\n padding: var(--yattho-stack-padding-normal, 16px);\n padding-top: 0;\n overflow-y: auto;\n scrollbar-width: thin;\n font-size: var(--yattho-text-body-size-medium, 14px);\n flex-grow: 1;\n\n &.Overlay-body--paddingCondensed {\n padding: var(--yattho-stack-padding-condensed, 8px);\n padding-top: 0;\n }\n\n &.Overlay-body--paddingNone {\n padding: 0;\n }\n}\n\n/* generic footer slot */\n.Overlay-footer {\n z-index: 1;\n display: flex;\n padding: 0 var(--yattho-stack-padding-normal, 16px) var(--yattho-stack-padding-normal, 16px) var(--yattho-stack-padding-normal, 16px);\n flex-direction: row;\n flex-shrink: 0;\n flex-wrap: wrap;\n\n &.Overlay-footer--divided {\n padding-top: var(--yattho-stack-padding-normal, 16px);\n box-shadow: inset 0 var(--yattho-borderWidth-thin, 1px) var(--color-border-default);\n }\n\n &.Overlay-footer--alignStart {\n justify-content: flex-start;\n gap: var(--yattho-stack-gap-condensed, 8px);\n }\n\n &.Overlay-footer--alignCenter {\n justify-content: center;\n gap: var(--yattho-stack-gap-condensed, 8px);\n }\n\n &.Overlay-footer--alignEnd {\n justify-content: flex-end;\n gap: var(--yattho-stack-gap-condensed, 8px);\n }\n}\n\n/* TODO: replace with refactored IconButton */\n.Overlay-closeButton {\n position: relative;\n display: grid;\n width: var(--base-size-32, 32px);\n height: var(--base-size-32, 32px);\n padding: 0;\n color: var(--color-fg-muted);\n cursor: pointer;\n user-select: none;\n background-color: transparent;\n border: var(--yattho-borderWidth-thin, 1px) solid transparent;\n border-radius: var(--yattho-borderRadius-medium, 6px);\n transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);\n transition-property: color, background-color, border-color;\n place-content: center;\n align-self: flex-start;\n flex-shrink: 0;\n\n &:hover,\n &:focus {\n background-color: var(--color-btn-hover-bg);\n border: var(--yattho-borderWidth-thin, 1px) solid var(--color-btn-hover-bg);\n }\n\n /* Override .close-button's `border: 0` that triggers a border-color transition on hover */\n &.close-button {\n border: var(--yattho-borderWidth-thin, 1px) solid transparent;\n }\n}\n\n@define-mixin Overlay-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 999;\n display: flex;\n background-color: var(--color-neutral-muted);\n}\n\n@define-mixin Overlay-backdrop--transparent {\n position: absolute;\n z-index: 999;\n background-color: transparent;\n}\n\n/* variants must be mixins so we can extend within a media query (@extend is not supported inside media queries) */\n\n/* border-radius repeats within placement options to ensure the original radius is reset when two classes co-exist */\n\n/* center */\n@define-mixin Overlay-backdrop--center {\n @mixin Overlay-backdrop;\n\n align-items: center;\n justify-content: center;\n}\n\n/* anchor */\n@define-mixin Overlay-backdrop--anchor {\n @mixin Overlay-backdrop--transparent;\n\n & .Overlay {\n width: auto;\n }\n}\n\n/* anchor side(s) */\n@define-mixin Overlay-backdrop--side $responsiveVariant {\n @mixin Overlay-backdrop;\n\n /* default left */\n align-items: center;\n justify-content: left;\n\n &.Overlay-backdrop--placement-left$(responsiveVariant) {\n align-items: center;\n justify-content: left;\n\n & > .Overlay$(responsiveVariant) {\n height: 100vh;\n max-height: unset;\n border-radius: var(--yattho-borderRadius-large, 12px);\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInRight;\n }\n }\n }\n\n &.Overlay-backdrop--placement-right$(responsiveVariant) {\n align-items: center;\n justify-content: right;\n\n & > .Overlay$(responsiveVariant) {\n height: 100vh;\n max-height: unset;\n border-radius: var(--yattho-borderRadius-large, 12px);\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideInLeft;\n }\n }\n }\n\n &.Overlay-backdrop--placement-bottom$(responsiveVariant) {\n align-items: end;\n justify-content: center;\n\n & > .Overlay$(responsiveVariant) {\n width: 100vw;\n height: auto;\n max-height: calc(100vh - 2rem);\n border-radius: var(--yattho-borderRadius-large, 12px);\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideUp;\n }\n }\n }\n\n &.Overlay-backdrop--placement-top$(responsiveVariant) {\n align-items: start;\n justify-content: center;\n\n & > .Overlay$(responsiveVariant) {\n border-radius: var(--yattho-borderRadius-large, 12px);\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: 250ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running Overlay--motion-slideDown;\n }\n }\n }\n}\n\n/* full width */\n@define-mixin Overlay-backdrop--full {\n @mixin Overlay-backdrop;\n\n & .Overlay {\n width: 100%;\n max-width: 100vw;\n height: 100%;\n max-height: 100vh;\n border-radius: unset !important;\n flex-grow: 1;\n }\n}\n\n/* Overlay variant classnames */\n.Overlay-backdrop--center {\n @mixin Overlay-backdrop--center;\n}\n\n.Overlay-backdrop--anchor {\n @mixin Overlay-backdrop--anchor;\n}\n\n.Overlay-backdrop--side {\n @mixin Overlay-backdrop--side;\n}\n\n.Overlay-backdrop--full {\n @mixin Overlay-backdrop--full;\n}\n\n/* responsive variants */\n\n/* --yattho-viewportRange-narrowLandscape */\n@media (max-width: 767px) {\n .Overlay-backdrop--center-whenNarrow {\n @mixin Overlay-backdrop--center;\n }\n\n .Overlay-backdrop--anchor-whenNarrow {\n @mixin Overlay-backdrop--anchor;\n }\n\n .Overlay-backdrop--side-whenNarrow {\n @mixin Overlay-backdrop--side -whenNarrow;\n }\n\n .Overlay-backdrop--full-whenNarrow {\n @mixin Overlay-backdrop--full;\n }\n}\n\n@keyframes Overlay--motion-slideDown {\n from {\n transform: translateY(-100%);\n }\n}\n\n@keyframes Overlay--motion-slideUp {\n from {\n transform: translateY(100%);\n }\n}\n\n@keyframes Overlay--motion-slideInRight {\n from {\n transform: translateX(-100%);\n }\n}\n\n@keyframes Overlay--motion-slideInLeft {\n from {\n transform: translateX(100%);\n }\n}"]}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<%= show_button %>
|
2
|
+
<div class="Overlay--hidden <%= @backdrop_classes %>" data-modal-dialog-overlay>
|
3
|
+
<%= render Yattho::BaseComponent.new(**@system_arguments) do %>
|
4
|
+
<%= header %>
|
5
|
+
<% if content.present? %>
|
6
|
+
<%= content %>
|
7
|
+
<% else %>
|
8
|
+
<%= body %>
|
9
|
+
<%= footer %>
|
10
|
+
<% end %>
|
11
|
+
<% end %>
|
12
|
+
</div>
|