openproject-primer_view_components 0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +2931 -0
- data/LICENSE.txt +21 -0
- data/README.md +17 -0
- data/app/assets/javascripts/app/components/primer/alpha/action_bar_element.d.ts +16 -0
- data/app/assets/javascripts/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
- data/app/assets/javascripts/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/alpha/dropdown.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/alpha/image_crop.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/alpha/modal_dialog.d.ts +18 -0
- data/app/assets/javascripts/app/components/primer/alpha/nav_list.d.ts +28 -0
- data/app/assets/javascripts/app/components/primer/alpha/segmented_control.d.ts +12 -0
- data/app/assets/javascripts/app/components/primer/alpha/tab_container.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/alpha/toggle_switch.d.ts +30 -0
- data/app/assets/javascripts/app/components/primer/alpha/tool_tip.d.ts +26 -0
- data/app/assets/javascripts/app/components/primer/alpha/x_banner.d.ts +13 -0
- data/app/assets/javascripts/app/components/primer/anchored_position.d.ts +27 -0
- data/app/assets/javascripts/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/beta/clipboard_copy.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/beta/relative_time.d.ts +1 -0
- data/app/assets/javascripts/app/components/primer/focus_group.d.ts +19 -0
- data/app/assets/javascripts/app/components/primer/primer.d.ts +21 -0
- data/app/assets/javascripts/lib/primer/forms/primer_multi_input.d.ts +10 -0
- data/app/assets/javascripts/lib/primer/forms/primer_text_field.d.ts +1 -0
- data/app/assets/javascripts/lib/primer/forms/toggle_switch_input.d.ts +5 -0
- data/app/assets/javascripts/primer_view_components.js +2 -0
- data/app/assets/javascripts/primer_view_components.js.map +1 -0
- data/app/assets/styles/primer_view_components.css +1 -0
- data/app/assets/styles/primer_view_components.css.map +1 -0
- data/app/components/primer/alpha/action_bar/divider.rb +30 -0
- data/app/components/primer/alpha/action_bar/item.rb +26 -0
- data/app/components/primer/alpha/action_bar.css +1 -0
- data/app/components/primer/alpha/action_bar.css.json +17 -0
- data/app/components/primer/alpha/action_bar.css.map +1 -0
- data/app/components/primer/alpha/action_bar.html.erb +12 -0
- data/app/components/primer/alpha/action_bar.pcss +69 -0
- data/app/components/primer/alpha/action_bar.rb +109 -0
- data/app/components/primer/alpha/action_bar_element.d.ts +16 -0
- data/app/components/primer/alpha/action_bar_element.js +172 -0
- data/app/components/primer/alpha/action_bar_element.ts +175 -0
- data/app/components/primer/alpha/action_list/divider.rb +35 -0
- data/app/components/primer/alpha/action_list/form_wrapper.html.erb +10 -0
- data/app/components/primer/alpha/action_list/form_wrapper.rb +61 -0
- data/app/components/primer/alpha/action_list/heading.html.erb +8 -0
- data/app/components/primer/alpha/action_list/heading.rb +50 -0
- data/app/components/primer/alpha/action_list/item.html.erb +53 -0
- data/app/components/primer/alpha/action_list/item.rb +301 -0
- data/app/components/primer/alpha/action_list.css +1 -0
- data/app/components/primer/alpha/action_list.css.json +134 -0
- data/app/components/primer/alpha/action_list.css.map +1 -0
- data/app/components/primer/alpha/action_list.html.erb +20 -0
- data/app/components/primer/alpha/action_list.pcss +697 -0
- data/app/components/primer/alpha/action_list.rb +256 -0
- data/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
- data/app/components/primer/alpha/action_menu/action_menu_element.js +241 -0
- data/app/components/primer/alpha/action_menu/action_menu_element.ts +252 -0
- data/app/components/primer/alpha/action_menu/list.rb +123 -0
- data/app/components/primer/alpha/action_menu.html.erb +26 -0
- data/app/components/primer/alpha/action_menu.rb +411 -0
- data/app/components/primer/alpha/auto_complete/auto_complete.html.erb +24 -0
- data/app/components/primer/alpha/auto_complete/item.rb +46 -0
- data/app/components/primer/alpha/auto_complete.css +1 -0
- data/app/components/primer/alpha/auto_complete.css.json +23 -0
- data/app/components/primer/alpha/auto_complete.css.map +1 -0
- data/app/components/primer/alpha/auto_complete.pcss +118 -0
- data/app/components/primer/alpha/auto_complete.rb +158 -0
- data/app/components/primer/alpha/banner.css +1 -0
- data/app/components/primer/alpha/banner.css.json +24 -0
- data/app/components/primer/alpha/banner.css.map +1 -0
- data/app/components/primer/alpha/banner.html.erb +33 -0
- data/app/components/primer/alpha/banner.pcss +126 -0
- data/app/components/primer/alpha/banner.rb +141 -0
- data/app/components/primer/alpha/button_marketing.css +1 -0
- data/app/components/primer/alpha/button_marketing.css.json +33 -0
- data/app/components/primer/alpha/button_marketing.css.map +1 -0
- data/app/components/primer/alpha/button_marketing.pcss +168 -0
- data/app/components/primer/alpha/button_marketing.rb +73 -0
- data/app/components/primer/alpha/check_box.rb +74 -0
- data/app/components/primer/alpha/check_box_group.rb +36 -0
- data/app/components/primer/alpha/dialog/body.rb +28 -0
- data/app/components/primer/alpha/dialog/footer.rb +34 -0
- data/app/components/primer/alpha/dialog/header.html.erb +17 -0
- data/app/components/primer/alpha/dialog/header.rb +40 -0
- data/app/components/primer/alpha/dialog.css +1 -0
- data/app/components/primer/alpha/dialog.css.json +80 -0
- data/app/components/primer/alpha/dialog.css.map +1 -0
- data/app/components/primer/alpha/dialog.html.erb +12 -0
- data/app/components/primer/alpha/dialog.pcss +482 -0
- data/app/components/primer/alpha/dialog.rb +176 -0
- data/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
- data/app/components/primer/alpha/dropdown/menu.html.erb +25 -0
- data/app/components/primer/alpha/dropdown/menu.js +1 -0
- data/app/components/primer/alpha/dropdown/menu.rb +107 -0
- data/app/components/primer/alpha/dropdown/menu.ts +1 -0
- data/app/components/primer/alpha/dropdown.css +1 -0
- data/app/components/primer/alpha/dropdown.css.json +40 -0
- data/app/components/primer/alpha/dropdown.css.map +1 -0
- data/app/components/primer/alpha/dropdown.d.ts +1 -0
- data/app/components/primer/alpha/dropdown.html.erb +9 -0
- data/app/components/primer/alpha/dropdown.js +1 -0
- data/app/components/primer/alpha/dropdown.pcss +261 -0
- data/app/components/primer/alpha/dropdown.rb +154 -0
- data/app/components/primer/alpha/dropdown.ts +1 -0
- data/app/components/primer/alpha/form_button.rb +32 -0
- data/app/components/primer/alpha/form_control.html.erb +26 -0
- data/app/components/primer/alpha/form_control.rb +105 -0
- data/app/components/primer/alpha/hellip_button.rb +43 -0
- data/app/components/primer/alpha/hidden_text_expander.rb +57 -0
- data/app/components/primer/alpha/image.rb +50 -0
- data/app/components/primer/alpha/image_crop.d.ts +1 -0
- data/app/components/primer/alpha/image_crop.html.erb +12 -0
- data/app/components/primer/alpha/image_crop.js +1 -0
- data/app/components/primer/alpha/image_crop.rb +39 -0
- data/app/components/primer/alpha/image_crop.ts +1 -0
- data/app/components/primer/alpha/layout.css +1 -0
- data/app/components/primer/alpha/layout.css.json +80 -0
- data/app/components/primer/alpha/layout.css.map +1 -0
- data/app/components/primer/alpha/layout.html.erb +5 -0
- data/app/components/primer/alpha/layout.pcss +268 -0
- data/app/components/primer/alpha/layout.rb +278 -0
- data/app/components/primer/alpha/menu.css +1 -0
- data/app/components/primer/alpha/menu.css.json +28 -0
- data/app/components/primer/alpha/menu.css.map +1 -0
- data/app/components/primer/alpha/menu.html.erb +6 -0
- data/app/components/primer/alpha/menu.pcss +119 -0
- data/app/components/primer/alpha/menu.rb +76 -0
- data/app/components/primer/alpha/modal_dialog.d.ts +18 -0
- data/app/components/primer/alpha/modal_dialog.js +189 -0
- data/app/components/primer/alpha/modal_dialog.ts +202 -0
- data/app/components/primer/alpha/multi_input.rb +81 -0
- data/app/components/primer/alpha/nav_list/divider.rb +14 -0
- data/app/components/primer/alpha/nav_list/group.html.erb +7 -0
- data/app/components/primer/alpha/nav_list/group.rb +107 -0
- data/app/components/primer/alpha/nav_list/heading.rb +36 -0
- data/app/components/primer/alpha/nav_list/item.html.erb +13 -0
- data/app/components/primer/alpha/nav_list/item.rb +156 -0
- data/app/components/primer/alpha/nav_list.d.ts +28 -0
- data/app/components/primer/alpha/nav_list.html.erb +15 -0
- data/app/components/primer/alpha/nav_list.js +248 -0
- data/app/components/primer/alpha/nav_list.rb +281 -0
- data/app/components/primer/alpha/nav_list.ts +267 -0
- data/app/components/primer/alpha/navigation/tab.html.erb +11 -0
- data/app/components/primer/alpha/navigation/tab.rb +168 -0
- data/app/components/primer/alpha/octicon_symbols.html.erb +3 -0
- data/app/components/primer/alpha/octicon_symbols.rb +59 -0
- data/app/components/primer/alpha/overlay/body.rb +26 -0
- data/app/components/primer/alpha/overlay/footer.rb +41 -0
- data/app/components/primer/alpha/overlay/header.html.erb +17 -0
- data/app/components/primer/alpha/overlay/header.rb +50 -0
- data/app/components/primer/alpha/overlay.css +1 -0
- data/app/components/primer/alpha/overlay.css.json +8 -0
- data/app/components/primer/alpha/overlay.css.map +1 -0
- data/app/components/primer/alpha/overlay.html.erb +13 -0
- data/app/components/primer/alpha/overlay.pcss +30 -0
- data/app/components/primer/alpha/overlay.rb +214 -0
- data/app/components/primer/alpha/radio_button.rb +25 -0
- data/app/components/primer/alpha/radio_button_group.rb +36 -0
- data/app/components/primer/alpha/segmented_control/item.html.erb +13 -0
- data/app/components/primer/alpha/segmented_control/item.rb +30 -0
- data/app/components/primer/alpha/segmented_control.css +1 -0
- data/app/components/primer/alpha/segmented_control.css.json +33 -0
- data/app/components/primer/alpha/segmented_control.css.map +1 -0
- data/app/components/primer/alpha/segmented_control.d.ts +12 -0
- data/app/components/primer/alpha/segmented_control.html.erb +7 -0
- data/app/components/primer/alpha/segmented_control.js +47 -0
- data/app/components/primer/alpha/segmented_control.pcss +157 -0
- data/app/components/primer/alpha/segmented_control.rb +122 -0
- data/app/components/primer/alpha/segmented_control.ts +41 -0
- data/app/components/primer/alpha/select.rb +37 -0
- data/app/components/primer/alpha/submit_button.rb +32 -0
- data/app/components/primer/alpha/tab_container.d.ts +1 -0
- data/app/components/primer/alpha/tab_container.js +1 -0
- data/app/components/primer/alpha/tab_container.rb +43 -0
- data/app/components/primer/alpha/tab_container.ts +1 -0
- data/app/components/primer/alpha/tab_nav.css +1 -0
- data/app/components/primer/alpha/tab_nav.css.json +24 -0
- data/app/components/primer/alpha/tab_nav.css.map +1 -0
- data/app/components/primer/alpha/tab_nav.html.erb +11 -0
- data/app/components/primer/alpha/tab_nav.pcss +100 -0
- data/app/components/primer/alpha/tab_nav.rb +136 -0
- data/app/components/primer/alpha/tab_panels.html.erb +14 -0
- data/app/components/primer/alpha/tab_panels.rb +89 -0
- data/app/components/primer/alpha/text_area.rb +24 -0
- data/app/components/primer/alpha/text_field.css +1 -0
- data/app/components/primer/alpha/text_field.css.json +135 -0
- data/app/components/primer/alpha/text_field.css.map +1 -0
- data/app/components/primer/alpha/text_field.pcss +706 -0
- data/app/components/primer/alpha/text_field.rb +101 -0
- data/app/components/primer/alpha/toggle_switch.css +1 -0
- data/app/components/primer/alpha/toggle_switch.css.json +40 -0
- data/app/components/primer/alpha/toggle_switch.css.map +1 -0
- data/app/components/primer/alpha/toggle_switch.d.ts +30 -0
- data/app/components/primer/alpha/toggle_switch.html.erb +46 -0
- data/app/components/primer/alpha/toggle_switch.js +165 -0
- data/app/components/primer/alpha/toggle_switch.pcss +220 -0
- data/app/components/primer/alpha/toggle_switch.rb +96 -0
- data/app/components/primer/alpha/toggle_switch.ts +189 -0
- data/app/components/primer/alpha/tool_tip.d.ts +26 -0
- data/app/components/primer/alpha/tool_tip.js +427 -0
- data/app/components/primer/alpha/tool_tip.ts +430 -0
- data/app/components/primer/alpha/tooltip.rb +128 -0
- data/app/components/primer/alpha/underline_nav.css +1 -0
- data/app/components/primer/alpha/underline_nav.css.json +28 -0
- data/app/components/primer/alpha/underline_nav.css.map +1 -0
- data/app/components/primer/alpha/underline_nav.html.erb +15 -0
- data/app/components/primer/alpha/underline_nav.pcss +134 -0
- data/app/components/primer/alpha/underline_nav.rb +138 -0
- data/app/components/primer/alpha/underline_panels.html.erb +18 -0
- data/app/components/primer/alpha/underline_panels.rb +86 -0
- data/app/components/primer/alpha/x_banner.d.ts +13 -0
- data/app/components/primer/alpha/x_banner.js +49 -0
- data/app/components/primer/alpha/x_banner.ts +40 -0
- data/app/components/primer/anchored_position.d.ts +27 -0
- data/app/components/primer/anchored_position.js +147 -0
- data/app/components/primer/anchored_position.ts +153 -0
- data/app/components/primer/base_component.rb +172 -0
- data/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
- data/app/components/primer/beta/auto_complete/auto_complete.html.erb +28 -0
- data/app/components/primer/beta/auto_complete/auto_complete.js +1 -0
- data/app/components/primer/beta/auto_complete/auto_complete.ts +1 -0
- data/app/components/primer/beta/auto_complete/item.html.erb +21 -0
- data/app/components/primer/beta/auto_complete/item.rb +84 -0
- data/app/components/primer/beta/auto_complete.rb +218 -0
- data/app/components/primer/beta/avatar.css +1 -0
- data/app/components/primer/beta/avatar.css.json +17 -0
- data/app/components/primer/beta/avatar.css.map +1 -0
- data/app/components/primer/beta/avatar.pcss +73 -0
- data/app/components/primer/beta/avatar.rb +84 -0
- data/app/components/primer/beta/avatar_stack.css +1 -0
- data/app/components/primer/beta/avatar_stack.css.json +28 -0
- data/app/components/primer/beta/avatar_stack.css.map +1 -0
- data/app/components/primer/beta/avatar_stack.html.erb +10 -0
- data/app/components/primer/beta/avatar_stack.pcss +141 -0
- data/app/components/primer/beta/avatar_stack.rb +92 -0
- data/app/components/primer/beta/base_button.rb +56 -0
- data/app/components/primer/beta/blankslate.css +1 -0
- data/app/components/primer/beta/blankslate.css.json +22 -0
- data/app/components/primer/beta/blankslate.css.map +1 -0
- data/app/components/primer/beta/blankslate.html.erb +19 -0
- data/app/components/primer/beta/blankslate.pcss +90 -0
- data/app/components/primer/beta/blankslate.rb +238 -0
- data/app/components/primer/beta/border_box/header.html.erb +4 -0
- data/app/components/primer/beta/border_box/header.rb +52 -0
- data/app/components/primer/beta/border_box.css +1 -0
- data/app/components/primer/beta/border_box.css.json +54 -0
- data/app/components/primer/beta/border_box.css.map +1 -0
- data/app/components/primer/beta/border_box.html.erb +12 -0
- data/app/components/primer/beta/border_box.pcss +284 -0
- data/app/components/primer/beta/border_box.rb +147 -0
- data/app/components/primer/beta/breadcrumbs.css +1 -0
- data/app/components/primer/beta/breadcrumbs.css.json +11 -0
- data/app/components/primer/beta/breadcrumbs.css.map +1 -0
- data/app/components/primer/beta/breadcrumbs.html.erb +8 -0
- data/app/components/primer/beta/breadcrumbs.pcss +30 -0
- data/app/components/primer/beta/breadcrumbs.rb +82 -0
- data/app/components/primer/beta/button.css +1 -0
- data/app/components/primer/beta/button.css.json +75 -0
- data/app/components/primer/beta/button.css.map +1 -0
- data/app/components/primer/beta/button.html.erb +23 -0
- data/app/components/primer/beta/button.pcss +366 -0
- data/app/components/primer/beta/button.rb +197 -0
- data/app/components/primer/beta/button_group.css +1 -0
- data/app/components/primer/beta/button_group.css.json +14 -0
- data/app/components/primer/beta/button_group.css.map +1 -0
- data/app/components/primer/beta/button_group.html.erb +5 -0
- data/app/components/primer/beta/button_group.pcss +27 -0
- data/app/components/primer/beta/button_group.rb +59 -0
- data/app/components/primer/beta/clipboard_copy.d.ts +1 -0
- data/app/components/primer/beta/clipboard_copy.html.erb +8 -0
- data/app/components/primer/beta/clipboard_copy.js +43 -0
- data/app/components/primer/beta/clipboard_copy.rb +50 -0
- data/app/components/primer/beta/clipboard_copy.ts +55 -0
- data/app/components/primer/beta/close_button.rb +43 -0
- data/app/components/primer/beta/counter.css +1 -0
- data/app/components/primer/beta/counter.css.json +10 -0
- data/app/components/primer/beta/counter.css.map +1 -0
- data/app/components/primer/beta/counter.pcss +35 -0
- data/app/components/primer/beta/counter.rb +113 -0
- data/app/components/primer/beta/details.html.erb +8 -0
- data/app/components/primer/beta/details.rb +80 -0
- data/app/components/primer/beta/flash.css +1 -0
- data/app/components/primer/beta/flash.css.json +27 -0
- data/app/components/primer/beta/flash.css.map +1 -0
- data/app/components/primer/beta/flash.html.erb +10 -0
- data/app/components/primer/beta/flash.pcss +142 -0
- data/app/components/primer/beta/flash.rb +71 -0
- data/app/components/primer/beta/heading.rb +46 -0
- data/app/components/primer/beta/icon_button.html.erb +6 -0
- data/app/components/primer/beta/icon_button.rb +112 -0
- data/app/components/primer/beta/label.css +1 -0
- data/app/components/primer/beta/label.css.json +25 -0
- data/app/components/primer/beta/label.css.map +1 -0
- data/app/components/primer/beta/label.pcss +103 -0
- data/app/components/primer/beta/label.rb +100 -0
- data/app/components/primer/beta/link.css +1 -0
- data/app/components/primer/beta/link.css.json +19 -0
- data/app/components/primer/beta/link.css.map +1 -0
- data/app/components/primer/beta/link.pcss +64 -0
- data/app/components/primer/beta/link.rb +95 -0
- data/app/components/primer/beta/markdown.rb +290 -0
- data/app/components/primer/beta/octicon.html.erb +7 -0
- data/app/components/primer/beta/octicon.rb +88 -0
- data/app/components/primer/beta/popover.css +1 -0
- data/app/components/primer/beta/popover.css.json +39 -0
- data/app/components/primer/beta/popover.css.map +1 -0
- data/app/components/primer/beta/popover.html.erb +6 -0
- data/app/components/primer/beta/popover.pcss +225 -0
- data/app/components/primer/beta/popover.rb +127 -0
- data/app/components/primer/beta/progress_bar.css +1 -0
- data/app/components/primer/beta/progress_bar.css.json +10 -0
- data/app/components/primer/beta/progress_bar.css.map +1 -0
- data/app/components/primer/beta/progress_bar.html.erb +5 -0
- data/app/components/primer/beta/progress_bar.pcss +26 -0
- data/app/components/primer/beta/progress_bar.rb +72 -0
- data/app/components/primer/beta/relative_time.d.ts +1 -0
- data/app/components/primer/beta/relative_time.js +1 -0
- data/app/components/primer/beta/relative_time.rb +166 -0
- data/app/components/primer/beta/relative_time.ts +1 -0
- data/app/components/primer/beta/spinner.html.erb +4 -0
- data/app/components/primer/beta/spinner.rb +45 -0
- data/app/components/primer/beta/state.css +1 -0
- data/app/components/primer/beta/state.css.json +13 -0
- data/app/components/primer/beta/state.css.map +1 -0
- data/app/components/primer/beta/state.pcss +50 -0
- data/app/components/primer/beta/state.rb +76 -0
- data/app/components/primer/beta/subhead.css +1 -0
- data/app/components/primer/beta/subhead.css.json +12 -0
- data/app/components/primer/beta/subhead.css.map +1 -0
- data/app/components/primer/beta/subhead.html.erb +5 -0
- data/app/components/primer/beta/subhead.pcss +49 -0
- data/app/components/primer/beta/subhead.rb +135 -0
- data/app/components/primer/beta/text.rb +27 -0
- data/app/components/primer/beta/timeline_item.css +1 -0
- data/app/components/primer/beta/timeline_item.css.json +16 -0
- data/app/components/primer/beta/timeline_item.css.map +1 -0
- data/app/components/primer/beta/timeline_item.html.erb +5 -0
- data/app/components/primer/beta/timeline_item.pcss +93 -0
- data/app/components/primer/beta/timeline_item.rb +90 -0
- data/app/components/primer/beta/truncate.css +1 -0
- data/app/components/primer/beta/truncate.css.json +12 -0
- data/app/components/primer/beta/truncate.css.map +1 -0
- data/app/components/primer/beta/truncate.html.erb +5 -0
- data/app/components/primer/beta/truncate.pcss +31 -0
- data/app/components/primer/beta/truncate.rb +111 -0
- data/app/components/primer/blankslate_component.html.erb +25 -0
- data/app/components/primer/blankslate_component.rb +156 -0
- data/app/components/primer/box.rb +25 -0
- data/app/components/primer/button_component.html.erb +12 -0
- data/app/components/primer/button_component.rb +175 -0
- data/app/components/primer/component.rb +145 -0
- data/app/components/primer/conditional_wrapper.rb +36 -0
- data/app/components/primer/content.rb +12 -0
- data/app/components/primer/focus_group.d.ts +19 -0
- data/app/components/primer/focus_group.js +139 -0
- data/app/components/primer/focus_group.ts +133 -0
- data/app/components/primer/icon_button.html.erb +12 -0
- data/app/components/primer/icon_button.rb +108 -0
- data/app/components/primer/layout_component.html.erb +11 -0
- data/app/components/primer/layout_component.rb +73 -0
- data/app/components/primer/navigation/tab_component.rb +10 -0
- data/app/components/primer/primer.d.ts +21 -0
- data/app/components/primer/primer.js +21 -0
- data/app/components/primer/primer.pcss +42 -0
- data/app/components/primer/primer.ts +21 -0
- data/app/components/primer/tooltip.rb +91 -0
- data/app/components/primer/truncate.css +1 -0
- data/app/components/primer/truncate.css.json +13 -0
- data/app/components/primer/truncate.css.map +1 -0
- data/app/components/primer/truncate.pcss +30 -0
- data/app/components/primer/truncate.rb +52 -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 +39 -0
- data/app/forms/select_form.rb +12 -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/primer/form_helper.rb +23 -0
- data/app/lib/primer/attributes_helper.rb +105 -0
- data/app/lib/primer/audited/dsl.rb +32 -0
- data/app/lib/primer/class_name_helper.rb +29 -0
- data/app/lib/primer/css/layout.css +1541 -0
- data/app/lib/primer/css/layout.css.json +316 -0
- data/app/lib/primer/css/utilities.css +7304 -0
- data/app/lib/primer/css/utilities.css.json +1659 -0
- data/app/lib/primer/fetch_or_fallback_helper.rb +65 -0
- data/app/lib/primer/join_style_arguments_helper.rb +14 -0
- data/app/lib/primer/octicon/cache.rb +44 -0
- data/app/lib/primer/status/dsl.rb +44 -0
- data/app/lib/primer/tab_nav_helper.rb +35 -0
- data/app/lib/primer/tabbed_component_helper.rb +39 -0
- data/app/lib/primer/test_selector_helper.rb +20 -0
- data/app/lib/primer/underline_nav_helper.rb +44 -0
- data/app/lib/primer/view_helper.rb +21 -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 +6 -0
- data/lib/primer/accessibility.rb +74 -0
- data/lib/primer/classify/utilities.rb +201 -0
- data/lib/primer/classify/utilities.yml +1879 -0
- data/lib/primer/classify/validation.rb +18 -0
- data/lib/primer/classify.rb +135 -0
- data/lib/primer/deprecations.rb +99 -0
- data/lib/primer/deprecations.yml +45 -0
- data/lib/primer/example_image.rb +8 -0
- data/lib/primer/form_components.rb +57 -0
- data/lib/primer/forms/acts_as_component.rb +129 -0
- data/lib/primer/forms/base.html.erb +8 -0
- data/lib/primer/forms/base.rb +133 -0
- data/lib/primer/forms/base_component.rb +76 -0
- data/lib/primer/forms/buffer_rewriter.rb +51 -0
- data/lib/primer/forms/builder.rb +71 -0
- data/lib/primer/forms/button.html.erb +4 -0
- data/lib/primer/forms/button.rb +66 -0
- data/lib/primer/forms/caption.html.erb +10 -0
- data/lib/primer/forms/caption.rb +29 -0
- data/lib/primer/forms/check_box.html.erb +16 -0
- data/lib/primer/forms/check_box.rb +46 -0
- data/lib/primer/forms/check_box_group.html.erb +17 -0
- data/lib/primer/forms/check_box_group.rb +19 -0
- data/lib/primer/forms/dsl/button_input.rb +29 -0
- data/lib/primer/forms/dsl/check_box_group_input.rb +53 -0
- data/lib/primer/forms/dsl/check_box_input.rb +54 -0
- data/lib/primer/forms/dsl/form_object.rb +25 -0
- data/lib/primer/forms/dsl/form_reference_input.rb +59 -0
- data/lib/primer/forms/dsl/hidden_input.rb +29 -0
- data/lib/primer/forms/dsl/input.rb +315 -0
- data/lib/primer/forms/dsl/input_group.rb +34 -0
- data/lib/primer/forms/dsl/input_methods.rb +139 -0
- data/lib/primer/forms/dsl/multi_input.rb +55 -0
- data/lib/primer/forms/dsl/radio_button_group_input.rb +37 -0
- data/lib/primer/forms/dsl/radio_button_input.rb +37 -0
- data/lib/primer/forms/dsl/select_input.rb +61 -0
- data/lib/primer/forms/dsl/submit_button_input.rb +29 -0
- data/lib/primer/forms/dsl/text_area_input.rb +33 -0
- data/lib/primer/forms/dsl/text_field_input.rb +86 -0
- data/lib/primer/forms/dsl/toggle_switch_input.rb +39 -0
- data/lib/primer/forms/form_control.html.erb +20 -0
- data/lib/primer/forms/form_control.rb +28 -0
- data/lib/primer/forms/form_list.html.erb +5 -0
- data/lib/primer/forms/form_list.rb +21 -0
- data/lib/primer/forms/form_reference.html.erb +3 -0
- data/lib/primer/forms/form_reference.rb +18 -0
- data/lib/primer/forms/group.html.erb +5 -0
- data/lib/primer/forms/group.rb +27 -0
- data/lib/primer/forms/hidden_field.html.erb +1 -0
- data/lib/primer/forms/hidden_field.rb +15 -0
- data/lib/primer/forms/multi.html.erb +7 -0
- data/lib/primer/forms/multi.rb +16 -0
- data/lib/primer/forms/primer_base_component_wrapper.html.erb +3 -0
- data/lib/primer/forms/primer_base_component_wrapper.rb +24 -0
- data/lib/primer/forms/primer_multi_input.d.ts +10 -0
- data/lib/primer/forms/primer_multi_input.js +45 -0
- data/lib/primer/forms/primer_multi_input.ts +46 -0
- data/lib/primer/forms/primer_text_field.d.ts +1 -0
- data/lib/primer/forms/primer_text_field.js +73 -0
- data/lib/primer/forms/primer_text_field.ts +56 -0
- data/lib/primer/forms/radio_button.html.erb +16 -0
- data/lib/primer/forms/radio_button.rb +29 -0
- data/lib/primer/forms/radio_button_group.html.erb +17 -0
- data/lib/primer/forms/radio_button_group.rb +19 -0
- data/lib/primer/forms/select.html.erb +5 -0
- data/lib/primer/forms/select.rb +29 -0
- data/lib/primer/forms/separator.html.erb +1 -0
- data/lib/primer/forms/separator.rb +8 -0
- data/lib/primer/forms/spacing_wrapper.html.erb +3 -0
- data/lib/primer/forms/spacing_wrapper.rb +8 -0
- data/lib/primer/forms/submit_button.html.erb +1 -0
- data/lib/primer/forms/submit_button.rb +14 -0
- data/lib/primer/forms/text_area.html.erb +5 -0
- data/lib/primer/forms/text_area.rb +20 -0
- data/lib/primer/forms/text_field.html.erb +17 -0
- data/lib/primer/forms/text_field.rb +46 -0
- data/lib/primer/forms/toggle_switch.html.erb +22 -0
- data/lib/primer/forms/toggle_switch.rb +21 -0
- data/lib/primer/forms/toggle_switch_form.rb +81 -0
- data/lib/primer/forms/toggle_switch_input.d.ts +5 -0
- data/lib/primer/forms/toggle_switch_input.js +34 -0
- data/lib/primer/forms/toggle_switch_input.ts +26 -0
- data/lib/primer/forms/utils.rb +48 -0
- data/lib/primer/static/generate_arguments.rb +55 -0
- data/lib/primer/static/generate_audited_at.rb +17 -0
- data/lib/primer/static/generate_constants.rb +19 -0
- data/lib/primer/static/generate_info_arch.rb +160 -0
- data/lib/primer/static/generate_previews.rb +61 -0
- data/lib/primer/static/generate_statuses.rb +17 -0
- data/lib/primer/static.rb +72 -0
- data/lib/primer/view_components/audited.rb +14 -0
- data/lib/primer/view_components/constants.rb +55 -0
- data/lib/primer/view_components/engine.rb +69 -0
- data/lib/primer/view_components/linters/accessibility.yml +9 -0
- data/lib/primer/view_components/linters/argument_mappers/base.rb +100 -0
- data/lib/primer/view_components/linters/argument_mappers/button.rb +72 -0
- data/lib/primer/view_components/linters/argument_mappers/clipboard_copy.rb +21 -0
- data/lib/primer/view_components/linters/argument_mappers/close_button.rb +43 -0
- data/lib/primer/view_components/linters/argument_mappers/conversion_error.rb +10 -0
- data/lib/primer/view_components/linters/argument_mappers/flash.rb +32 -0
- data/lib/primer/view_components/linters/argument_mappers/helpers/erb_block.rb +67 -0
- data/lib/primer/view_components/linters/argument_mappers/label.rb +56 -0
- data/lib/primer/view_components/linters/argument_mappers/system_arguments.rb +48 -0
- data/lib/primer/view_components/linters/autocorrectable.rb +32 -0
- data/lib/primer/view_components/linters/base_linter.rb +190 -0
- data/lib/primer/view_components/linters/blankslate_api_migration.rb +152 -0
- data/lib/primer/view_components/linters/blankslate_component_migration_counter.rb +14 -0
- data/lib/primer/view_components/linters/breadcrumbs_component_migration_counter.rb +14 -0
- data/lib/primer/view_components/linters/button_component_migration_counter.rb +26 -0
- data/lib/primer/view_components/linters/clipboard_copy_component_migration_counter.rb +20 -0
- data/lib/primer/view_components/linters/close_button_component_migration_counter.rb +121 -0
- data/lib/primer/view_components/linters/deprecated_components_counter.rb +84 -0
- data/lib/primer/view_components/linters/details_menu_migration.rb +35 -0
- data/lib/primer/view_components/linters/disallow_action_list.rb +73 -0
- data/lib/primer/view_components/linters/disallow_component_css_counter.rb +69 -0
- data/lib/primer/view_components/linters/flash_migration_counter.rb +36 -0
- data/lib/primer/view_components/linters/helpers/deprecated_components_helpers.rb +20 -0
- data/lib/primer/view_components/linters/helpers/rubocop_helpers.rb +14 -0
- data/lib/primer/view_components/linters/helpers/rule_helpers.rb +39 -0
- data/lib/primer/view_components/linters/label_component_migration_counter.rb +24 -0
- data/lib/primer/view_components/linters/migrate_deprecated_flash_arguments.rb +140 -0
- data/lib/primer/view_components/linters/severity_schema.rb +14 -0
- data/lib/primer/view_components/linters/subhead_component_migration_counter.rb +14 -0
- data/lib/primer/view_components/linters/super_in_component_templates.rb +65 -0
- data/lib/primer/view_components/linters/tag_tree_helpers.rb +61 -0
- data/lib/primer/view_components/linters/tooltipped_migration.rb +35 -0
- data/lib/primer/view_components/linters/two_column_layout_migration_counter.rb +158 -0
- data/lib/primer/view_components/linters.rb +3 -0
- data/lib/primer/view_components/statuses.rb +14 -0
- data/lib/primer/view_components/version.rb +18 -0
- data/lib/primer/view_components.rb +15 -0
- data/lib/primer/yard/backend.rb +24 -0
- data/lib/primer/yard/component_manifest.rb +144 -0
- data/lib/primer/yard/component_ref.rb +54 -0
- data/lib/primer/yard/docs_helper.rb +98 -0
- data/lib/primer/yard/info_arch_docs_helper.rb +31 -0
- data/lib/primer/yard/legacy_gatsby_backend.rb +233 -0
- data/lib/primer/yard/lookbook_docs_helper.rb +32 -0
- data/lib/primer/yard/lookbook_pages_backend.rb +231 -0
- data/lib/primer/yard/registry.rb +136 -0
- data/lib/primer/yard/renders_many_handler.rb +23 -0
- data/lib/primer/yard/renders_one_handler.rb +23 -0
- data/lib/primer/yard.rb +20 -0
- data/lib/rubocop/config/default.yml +20 -0
- data/lib/rubocop/cop/primer/base_cop.rb +28 -0
- data/lib/rubocop/cop/primer/component_name_migration.rb +37 -0
- data/lib/rubocop/cop/primer/deprecated_arguments.rb +317 -0
- data/lib/rubocop/cop/primer/deprecated_button_arguments.rb +51 -0
- data/lib/rubocop/cop/primer/deprecated_components.rb +49 -0
- data/lib/rubocop/cop/primer/deprecated_label_schemes.rb +68 -0
- data/lib/rubocop/cop/primer/deprecated_label_variants.rb +71 -0
- data/lib/rubocop/cop/primer/deprecated_layout_component.rb +30 -0
- data/lib/rubocop/cop/primer/no_tag_memoize.rb +43 -0
- data/lib/rubocop/cop/primer/primer_octicon.rb +217 -0
- data/lib/rubocop/cop/primer/system_argument_instead_of_class.rb +57 -0
- data/lib/rubocop/cop/primer/test_selector.rb +48 -0
- data/lib/rubocop/cop/primer.rb +3 -0
- data/lib/tasks/custom_utilities.yml +372 -0
- data/previews/pages/forms/01_introduction.md.erb +44 -0
- data/previews/pages/forms/02_getting_started.md.erb +125 -0
- data/previews/pages/forms/03_caption_templates.md.erb +30 -0
- data/previews/pages/forms/04_after_content.md.erb +39 -0
- data/previews/pages/forms/05_groups_layouts.md.erb +22 -0
- data/previews/pages/forms/06_miscellaneous_inputs.md.erb +43 -0
- data/previews/pages/forms/07_toggle_switch_forms.md.erb +58 -0
- data/previews/pages/forms/08_validations.md.erb +28 -0
- data/previews/pages/forms/09_compound_forms.md.erb +97 -0
- data/previews/primer/alpha/action_bar_preview/inline.html.erb +16 -0
- data/previews/primer/alpha/action_bar_preview.rb +77 -0
- data/previews/primer/alpha/action_list_preview.rb +464 -0
- data/previews/primer/alpha/action_menu_preview/align_end.html.erb +6 -0
- data/previews/primer/alpha/action_menu_preview/content_labels.html.erb +9 -0
- data/previews/primer/alpha/action_menu_preview/multiple_select_form.html.erb +13 -0
- data/previews/primer/alpha/action_menu_preview/opens_dialog.html.erb +21 -0
- data/previews/primer/alpha/action_menu_preview/single_select_form.html.erb +13 -0
- data/previews/primer/alpha/action_menu_preview/submitting_forms.html.erb +15 -0
- data/previews/primer/alpha/action_menu_preview/two_menus.html.erb +13 -0
- data/previews/primer/alpha/action_menu_preview/with_actions.html.erb +21 -0
- data/previews/primer/alpha/action_menu_preview.rb +328 -0
- data/previews/primer/alpha/auto_complete_preview.rb +121 -0
- data/previews/primer/alpha/banner_preview/with_action_button.html.erb +4 -0
- data/previews/primer/alpha/banner_preview/with_action_content.html.erb +6 -0
- data/previews/primer/alpha/banner_preview.rb +102 -0
- data/previews/primer/alpha/button_marketing_preview.rb +65 -0
- data/previews/primer/alpha/check_box_group_preview.rb +90 -0
- data/previews/primer/alpha/check_box_preview.rb +68 -0
- data/previews/primer/alpha/dialog_preview/body_has_scrollbar_overflow.html.erb +9 -0
- data/previews/primer/alpha/dialog_preview/custom_header.html.erb +7 -0
- data/previews/primer/alpha/dialog_preview/nested_dialog.html.erb +14 -0
- data/previews/primer/alpha/dialog_preview/test.html.erb +7 -0
- data/previews/primer/alpha/dialog_preview/with_footer.html.erb +8 -0
- data/previews/primer/alpha/dialog_preview/with_form.html.erb +12 -0
- data/previews/primer/alpha/dialog_preview/with_text_input.html.erb +10 -0
- data/previews/primer/alpha/dialog_preview.rb +154 -0
- data/previews/primer/alpha/dropdown_preview.rb +211 -0
- data/previews/primer/alpha/form_control_preview/playground.html.erb +9 -0
- data/previews/primer/alpha/form_control_preview.rb +106 -0
- data/previews/primer/alpha/hellip_button_preview.rb +26 -0
- data/previews/primer/alpha/hidden_text_expander_preview.rb +23 -0
- data/previews/primer/alpha/image_crop_preview.rb +31 -0
- data/previews/primer/alpha/layout_preview.rb +215 -0
- data/previews/primer/alpha/menu_preview/default.html.erb +17 -0
- data/previews/primer/alpha/menu_preview/playground.html.erb +17 -0
- data/previews/primer/alpha/menu_preview.rb +15 -0
- data/previews/primer/alpha/multi_input_preview/playground.html.erb +41 -0
- data/previews/primer/alpha/multi_input_preview.rb +84 -0
- data/previews/primer/alpha/nav_list_preview/trailing_action.html.erb +19 -0
- data/previews/primer/alpha/nav_list_preview.rb +125 -0
- data/previews/primer/alpha/overlay_preview/middle_of_page.html.erb +17 -0
- data/previews/primer/alpha/overlay_preview/middle_of_page_with_relative_container.html.erb +19 -0
- data/previews/primer/alpha/overlay_preview.rb +179 -0
- data/previews/primer/alpha/radio_button_group_preview.rb +85 -0
- data/previews/primer/alpha/radio_button_preview.rb +72 -0
- data/previews/primer/alpha/segmented_control_preview/with_label_and_caption.html.erb +9 -0
- data/previews/primer/alpha/segmented_control_preview/with_subhead_actions.html.erb +11 -0
- data/previews/primer/alpha/segmented_control_preview.rb +183 -0
- data/previews/primer/alpha/select_preview.rb +136 -0
- data/previews/primer/alpha/tab_nav_preview/with_extra.html.erb +8 -0
- data/previews/primer/alpha/tab_nav_preview.rb +63 -0
- data/previews/primer/alpha/tab_panels_preview/with_extra.html.erb +17 -0
- data/previews/primer/alpha/tab_panels_preview.rb +44 -0
- data/previews/primer/alpha/text_area_preview.rb +94 -0
- data/previews/primer/alpha/text_field_preview.rb +194 -0
- data/previews/primer/alpha/toggle_switch_preview.rb +63 -0
- data/previews/primer/alpha/tooltip_preview/tooltip_inside_primer_overlay.html.erb +20 -0
- data/previews/primer/alpha/tooltip_preview/with_multiple_on_a_page.html.erb +14 -0
- data/previews/primer/alpha/tooltip_preview/with_right_most_position.html.erb +7 -0
- data/previews/primer/alpha/tooltip_preview.rb +88 -0
- data/previews/primer/alpha/underline_nav_preview/default.html.erb +8 -0
- data/previews/primer/alpha/underline_nav_preview/playground.html.erb +8 -0
- data/previews/primer/alpha/underline_nav_preview.rb +58 -0
- data/previews/primer/alpha/underline_panels_preview.rb +38 -0
- data/previews/primer/beta/auto_complete_item_preview/default.html.erb +9 -0
- data/previews/primer/beta/auto_complete_item_preview/playground.html.erb +9 -0
- data/previews/primer/beta/auto_complete_item_preview/with_description.html.erb +11 -0
- data/previews/primer/beta/auto_complete_item_preview.rb +57 -0
- data/previews/primer/beta/auto_complete_preview/with_submit_button.html.erb +20 -0
- data/previews/primer/beta/auto_complete_preview.rb +287 -0
- data/previews/primer/beta/avatar_preview.rb +92 -0
- data/previews/primer/beta/avatar_stack_preview.rb +104 -0
- data/previews/primer/beta/base_button_preview.rb +33 -0
- data/previews/primer/beta/blankslate_preview.rb +139 -0
- data/previews/primer/beta/border_box_preview.rb +102 -0
- data/previews/primer/beta/breadcrumbs_preview.rb +31 -0
- data/previews/primer/beta/button_group_preview/action_menus.html.erb +8 -0
- data/previews/primer/beta/button_group_preview.rb +74 -0
- data/previews/primer/beta/button_preview/all_schemes.html.erb +30 -0
- data/previews/primer/beta/button_preview/invisible_all_visuals.html.erb +54 -0
- data/previews/primer/beta/button_preview/leading_visual.html.erb +10 -0
- data/previews/primer/beta/button_preview/trailing_action.html.erb +10 -0
- data/previews/primer/beta/button_preview/trailing_counter.html.erb +11 -0
- data/previews/primer/beta/button_preview/trailing_visual.html.erb +11 -0
- data/previews/primer/beta/button_preview/with_tooltip.html.erb +10 -0
- data/previews/primer/beta/button_preview.rb +324 -0
- data/previews/primer/beta/clipboard_copy_preview/element.html.erb +2 -0
- data/previews/primer/beta/clipboard_copy_preview.rb +41 -0
- data/previews/primer/beta/close_button_preview.rb +24 -0
- data/previews/primer/beta/counter_preview.rb +93 -0
- data/previews/primer/beta/details_preview.rb +63 -0
- data/previews/primer/beta/flash_preview.rb +77 -0
- data/previews/primer/beta/heading_preview.rb +25 -0
- data/previews/primer/beta/icon_button_preview.rb +113 -0
- data/previews/primer/beta/label_preview.rb +117 -0
- data/previews/primer/beta/link_preview.rb +71 -0
- data/previews/primer/beta/markdown_preview.rb +294 -0
- data/previews/primer/beta/octicon_preview.rb +25 -0
- data/previews/primer/beta/popover_preview.rb +85 -0
- data/previews/primer/beta/progress_bar_preview.rb +64 -0
- data/previews/primer/beta/relative_time_preview.rb +286 -0
- data/previews/primer/beta/spinner_preview.rb +23 -0
- data/previews/primer/beta/state_preview.rb +72 -0
- data/previews/primer/beta/subhead_preview/actions.html.erb +14 -0
- data/previews/primer/beta/subhead_preview.rb +103 -0
- data/previews/primer/beta/text_preview.rb +25 -0
- data/previews/primer/beta/timeline_item_preview.rb +31 -0
- data/previews/primer/beta/truncate_preview.rb +55 -0
- data/previews/primer/box_preview.rb +30 -0
- data/previews/primer/forms_preview/after_content_form.html.erb +3 -0
- data/previews/primer/forms_preview/array_check_box_group_form.html.erb +3 -0
- data/previews/primer/forms_preview/caption_template_form.html.erb +3 -0
- data/previews/primer/forms_preview/check_box_group_form.html.erb +3 -0
- data/previews/primer/forms_preview/check_box_with_nested_form.html.erb +3 -0
- data/previews/primer/forms_preview/composed_form.html.erb +4 -0
- data/previews/primer/forms_preview/example_toggle_switch_form.html.erb +3 -0
- data/previews/primer/forms_preview/horizontal_form.html.erb +3 -0
- data/previews/primer/forms_preview/immediate_validation_form.html.erb +3 -0
- data/previews/primer/forms_preview/invalid_form.html.erb +3 -0
- data/previews/primer/forms_preview/multi_input_form.html.erb +14 -0
- data/previews/primer/forms_preview/multi_text_field_form.html.erb +3 -0
- data/previews/primer/forms_preview/name_with_question_mark_form.html.erb +3 -0
- data/previews/primer/forms_preview/radio_button_group_form.html.erb +3 -0
- data/previews/primer/forms_preview/radio_button_with_nested_form.html.erb +3 -0
- data/previews/primer/forms_preview/select_form.html.erb +3 -0
- data/previews/primer/forms_preview/single_text_field_form.html.erb +3 -0
- data/previews/primer/forms_preview/submit_button_form.html.erb +3 -0
- data/previews/primer/forms_preview/text_field_and_checkbox_form.html.erb +3 -0
- data/previews/primer/forms_preview.rb +44 -0
- data/previews/primer/url_helpers.rb +15 -0
- data/static/arguments.json +4501 -0
- data/static/assets/view-components.svg +18 -0
- data/static/audited_at.json +107 -0
- data/static/classes.json +606 -0
- data/static/constants.json +1335 -0
- data/static/info_arch.json +14465 -0
- data/static/previews.json +6408 -0
- data/static/statuses.json +107 -0
- metadata +1145 -0
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
title: "Introduction"
|
3
|
+
id: introduction
|
4
|
+
---
|
5
|
+
|
6
|
+
Primer contains a framework for declaratively building Rails forms. It was designed to meet the following goals:
|
7
|
+
|
8
|
+
1. Be accessible by default.
|
9
|
+
1. Integrate deeply with Ruby on Rails and its existing form capabilities.
|
10
|
+
1. Follow web standards.
|
11
|
+
1. Adhere to Primer's [form interface guidelines](/design/ui-patterns/forms).
|
12
|
+
|
13
|
+
### Accessible by default
|
14
|
+
|
15
|
+
Creating accessible forms can be challenging. Forms are a common source of accessibility issues, and can hinder someone from successfully completing and submitting a form. This can be true even for people who do not use assistive technologies.
|
16
|
+
|
17
|
+
Primer forms are designed to be accessible by default - i.e. accessible without developer effort - borrowing from Rails' sane defaults philosophy.
|
18
|
+
|
19
|
+
For example, Primer forms:
|
20
|
+
|
21
|
+
1. Automatically associate labels, captions, and validation messages with their inputs.
|
22
|
+
1. Use `<fieldset>`s where appropriate.
|
23
|
+
1. Focus the first invalid input after submission.
|
24
|
+
|
25
|
+
And more!
|
26
|
+
|
27
|
+
### Integrates with Rails
|
28
|
+
|
29
|
+
Primer forms augment Rails' battle-tested form capabilties, allowing developers to leverage their existing Rails knowledge. Primer forms delegate HTML generation to Rails, meaning inputs accept the same arguments as their vanilla Rails counterparts. For example, Primer's `#text_field` method accepts all the arguments Rails' `#text_field_tag` method accepts.
|
30
|
+
|
31
|
+
Primer forms are emitted using the familiar `#render` method, and wrapped using `#primer_form_with`, analogous to Rails' `#form_with`.
|
32
|
+
|
33
|
+
### Follows web standards
|
34
|
+
|
35
|
+
Under the hood, Primer forms are just HTML with some JavaScript sprinkles. Nothing too fancy, meaning they should work pretty much everywhere.
|
36
|
+
|
37
|
+
### What to read next
|
38
|
+
|
39
|
+
1. Read the getting started guide.
|
40
|
+
1. Take a look at the various form inputs.
|
41
|
+
1. Explore form layout options.
|
42
|
+
1. Compose forms together.
|
43
|
+
1. Include custom validation messages.
|
44
|
+
1. Submit boolean values immediately with toggle switch forms.
|
@@ -0,0 +1,125 @@
|
|
1
|
+
---
|
2
|
+
title: "Getting started"
|
3
|
+
id: getting_started
|
4
|
+
---
|
5
|
+
|
6
|
+
A number of the concepts in Primer Forms are borrowed from the [view_component](https://viewcomponent.org) framework. For example, forms are defined inside Ruby classes and rendered using the `#render` method.
|
7
|
+
|
8
|
+
Let's create a sign up form and render it on the page.
|
9
|
+
|
10
|
+
## Example for the impatient
|
11
|
+
|
12
|
+
<%= code :ruby do %>
|
13
|
+
class SignUpForm < ApplicationForm
|
14
|
+
form do |sign_up_form|
|
15
|
+
sign_up_form.group(layout: :horizontal) do |name_group|
|
16
|
+
name_group.text_field(
|
17
|
+
name: :first_name,
|
18
|
+
label: "First name",
|
19
|
+
required: true,
|
20
|
+
caption: "What your friends call you."
|
21
|
+
)
|
22
|
+
|
23
|
+
name_group.text_field(
|
24
|
+
name: :last_name,
|
25
|
+
label: "Last name",
|
26
|
+
required: true,
|
27
|
+
caption: "What the principal calls you."
|
28
|
+
)
|
29
|
+
end
|
30
|
+
|
31
|
+
sign_up_form.text_field(
|
32
|
+
name: :dietary_restrictions,
|
33
|
+
label: "Dietary restrictions",
|
34
|
+
caption: "Any allergies?"
|
35
|
+
)
|
36
|
+
|
37
|
+
if @show_notifications_checkbox
|
38
|
+
sign_up_form.check_box(
|
39
|
+
name: :email_notifications,
|
40
|
+
label: "Send me gobs of email!",
|
41
|
+
caption: "Check this if you enjoy getting spam."
|
42
|
+
)
|
43
|
+
end
|
44
|
+
|
45
|
+
sign_up_form.submit(label: "Submit")
|
46
|
+
end
|
47
|
+
|
48
|
+
def initialize(show_notifications_checkbox: true)
|
49
|
+
@show_notifications_checkbox = show_notifications_checkbox
|
50
|
+
end
|
51
|
+
end
|
52
|
+
<% end %>
|
53
|
+
|
54
|
+
## Directory structure
|
55
|
+
|
56
|
+
Autoloading is automatically enabled for any sub-directory inside a Rails' app's app/ directory. Accordingly, we recommend placing all form classes inside app/forms/.
|
57
|
+
|
58
|
+
The directory structure within app/forms/ is arbitrary, but we have seen success using the same directory structure as app/controllers/. For example:
|
59
|
+
|
60
|
+
```
|
61
|
+
app
|
62
|
+
╵─ controllers
|
63
|
+
╵─ settings
|
64
|
+
╵─ email_notifications_controller.rb
|
65
|
+
╵─ forms
|
66
|
+
╵─ settings
|
67
|
+
╵─ email_notifications
|
68
|
+
╵─ config_form.rb
|
69
|
+
```
|
70
|
+
|
71
|
+
## `ApplicationForm`
|
72
|
+
|
73
|
+
Our example class above inherits from `ApplicationForm`. This follows the Rails convention of a base class that houses application-specific logic common to all forms. It's similar in purpose to `ApplicationRecord` and `ApplicationController`.
|
74
|
+
|
75
|
+
Ultimately, forms must inherit from `Primer::Forms::Base`, meaning `ApplicationForm` can be as simple as:
|
76
|
+
|
77
|
+
<%= code :ruby do %>
|
78
|
+
class ApplicationForm < Primer::Forms::Base
|
79
|
+
# empty body, add common methods, includes, etc here
|
80
|
+
end
|
81
|
+
<% end %>
|
82
|
+
|
83
|
+
Place `ApplicationForm` in app/forms/application_form.rb
|
84
|
+
|
85
|
+
## Anatomy of a form
|
86
|
+
|
87
|
+
Forms are just Ruby classes that inherit from `Primer::Forms::Base`. Define a form's inputs using the `form` class method, which accepts a block. The block is called with an instance of `Primer::Forms::Dsl::FormObject`, which responds to the following form input methods:
|
88
|
+
|
89
|
+
* [`text_field`](<%= page_path(:text_field_input) %>): Text input field.
|
90
|
+
* [`text_area`](<%= page_path(:text_area_input) %>): Text area field (multi-line).
|
91
|
+
* [`select_list`](<%= page_path(:select_list_input) %>): Drop-down select list.
|
92
|
+
* [`check_box`](<%= page_path(:check_box_input) %>): Single check box.
|
93
|
+
* [`check_box_group`](<%= page_path(:check_box_group_input) %>): Group of related check boxes.
|
94
|
+
* [`radio_button_group`](<%= page_path(:radio_button_group_input) %>): Group of related radio buttons.
|
95
|
+
* [`hidden`](<%= page_path(:miscellaneous_inputs) %>): Hidden input.
|
96
|
+
* [`multi`](<%= page_path(:multi_input) %>): Multi input (multiple fields that look like a single field).
|
97
|
+
* [`submit`](<%= page_path(:submit_button_input) %>): Submit button.
|
98
|
+
* [`button`](<%= page_path(:form_button_input) %>): Regular, non-submit button.
|
99
|
+
* [`separator`](<%= page_path(:miscellaneous_inputs) %>): Horizontal separator.
|
100
|
+
* [`fields_for`](<%= page_path(:compound_forms) %>): Used for composing forms together.
|
101
|
+
|
102
|
+
## Rendering
|
103
|
+
|
104
|
+
Forms are rendered using the familiar Rails `#render` method:
|
105
|
+
|
106
|
+
<%= code :erb do %>
|
107
|
+
<%%= primer_form_with(model: @user) do |f| %>
|
108
|
+
<%%= render SignUpForm.new(f, show_notifications_checkbox: false) %>
|
109
|
+
<%% end %>
|
110
|
+
<% end %>
|
111
|
+
|
112
|
+
## The `primer_form_with` helper
|
113
|
+
|
114
|
+
You may have noticed the use of the `primer_form_with` helper above. This helper is analogous to Rails' `form_with` helper, but layers on some additional functionality. It automatically:
|
115
|
+
|
116
|
+
1. configures the form to use Primer's form builder
|
117
|
+
1. disables Rails' default error markup functionality, which breaks Primer styling
|
118
|
+
1. forces labels to always identify their inputs via the `for` attribute
|
119
|
+
1. enables the special handling of `system_arguments` that allows for utility arguments like `ml: 2` and friends
|
120
|
+
|
121
|
+
It is recommended to always use `primer_form_with` instead of `form_with`.
|
122
|
+
|
123
|
+
## The `primer_form_for` helper
|
124
|
+
|
125
|
+
Before the introduction of `#form_with` in Rails 5.1, forms were created using the `#form_for` helper. Although `#form_for` has since been soft-deprecated, Primer includes the analogous `#primer_form_for` for completeness. Prefer `#primer_form_with` for new forms.
|
@@ -0,0 +1,30 @@
|
|
1
|
+
---
|
2
|
+
title: "Caption templates"
|
3
|
+
id: caption_templates
|
4
|
+
---
|
5
|
+
|
6
|
+
All inputs support the `caption:` argument as a string, which renders explainer text underneath the input and validation message. Caption strings can be anything that responds to `#to_s`, meaning HTML-safe strings can be used in cases that need a little bit of markup:
|
7
|
+
|
8
|
+
<%= code :ruby do %>
|
9
|
+
class ExampleForm < ApplicationForm
|
10
|
+
form do |example_form|
|
11
|
+
example_form.text_field(
|
12
|
+
name: :disco_name,
|
13
|
+
label: "Disco name",
|
14
|
+
caption: "Enter your <strong>grooviest</strong> name".html_safe
|
15
|
+
)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
## Defining caption templates
|
21
|
+
|
22
|
+
In cases where a lot of logic or markup is necessary, or where the caption text is awkward to express in Ruby code, forms may define caption content in separate template files. Caption templates are located in a directory named after the form. For example, if `ExampleForm` lives in app/forms/example\_form.rb, its caption templates should be created in the `app/forms/example_form/` directory.
|
23
|
+
|
24
|
+
Caption template files must be named after the field they describe. For example, a caption template for the `disco_name` field above would live in app/forms/example\_form/disco\_name_caption.html.erb.
|
25
|
+
|
26
|
+
In cases where the `caption:` argument _and_ a caption template are provided, the `caption:` argument takes precedence.
|
27
|
+
|
28
|
+
## Example
|
29
|
+
|
30
|
+
<%= embed Primer::FormsPreview, :caption_template_form %>
|
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
title: '"After" content'
|
3
|
+
id: after_content
|
4
|
+
---
|
5
|
+
|
6
|
+
Primer forms is designed to be accessible by default. In service of this goal, the framework intentionally limits the types of inputs, layout styles, etc that may be used to build a form. For example, consider rendering a hidden component like a dialog or tooltip that appears when a form input is hovered or clicked. Normally these hidden elements can only be rendered _outside_ the form. The hidden elements don't "travel" with the form and can be easily forgotten.
|
7
|
+
|
8
|
+
For such cases, Primer forms feature "after" content. Like [caption templates](<%= page_path(:caption_templates) %>), after content lives in a directory named after the form, specifically in a file called after\_content.html.erb. If present, after\_content.html.erb is rendered after the last form input.
|
9
|
+
|
10
|
+
## Usage
|
11
|
+
|
12
|
+
<%= code :ruby do %>
|
13
|
+
# app/forms/example_form.rb
|
14
|
+
class ExampleForm < ApplicationForm
|
15
|
+
form do |example_form|
|
16
|
+
example_form.text_field(
|
17
|
+
name: :name,
|
18
|
+
label: "Name",
|
19
|
+
id: "my-text-field"
|
20
|
+
)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
<% end %>
|
24
|
+
|
25
|
+
<%= code :erb do %>
|
26
|
+
<%%# app/forms/example_form/after_content.html.erb %>
|
27
|
+
<%%= render(
|
28
|
+
Primer::Alpha::Tooltip.new(
|
29
|
+
for_id: "my-text-field",
|
30
|
+
type: :description,
|
31
|
+
text: "Some tooltip text",
|
32
|
+
direction: :ne
|
33
|
+
)
|
34
|
+
) %>
|
35
|
+
<% end %>
|
36
|
+
|
37
|
+
## Example
|
38
|
+
|
39
|
+
<%= embed Primer::FormsPreview, :after_content_form %>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
title: "Groups and layouts"
|
3
|
+
label: "Groups and Layouts"
|
4
|
+
id: groups_layouts
|
5
|
+
---
|
6
|
+
|
7
|
+
By default, forms are oriented vertically. In other words, inputs are rendered from top to bottom in the order they are defined. Rendering inputs this way is generally more accessible than rendering inputs side-by-side, and should be preferred for most use-cases.
|
8
|
+
|
9
|
+
However in certain circumstances it may be appropriate to render groups of inputs horizontally, and Primer forms provides a grouping mechanism for doing so:
|
10
|
+
|
11
|
+
<%= code :ruby do %>
|
12
|
+
class ExampleForm < ApplicationForm
|
13
|
+
form do |example_form|
|
14
|
+
example_form.group(layout: :horizontal) do |name_group|
|
15
|
+
name_group.text_field(name: :first_name, label: "First name")
|
16
|
+
name_group.text_field(name: :last_name, label: "Last name")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
<% end %>
|
21
|
+
|
22
|
+
The `layout:` argument also accepts a `:vertical` option, which is the default.
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
title: "Miscellaneous inputs"
|
3
|
+
label: "Miscellaneous Inputs"
|
4
|
+
id: miscellaneous_inputs
|
5
|
+
---
|
6
|
+
|
7
|
+
Aside from the set of component-based form inputs, Primer forms also features several additional inputs.
|
8
|
+
|
9
|
+
## Hidden inputs
|
10
|
+
|
11
|
+
Primer supports standard hidden HTML inputs, eg. `<input type="hidden">`, via the `#hidden` method.
|
12
|
+
|
13
|
+
### Usage
|
14
|
+
|
15
|
+
<%= code :ruby do %>
|
16
|
+
class ExampleForm < ApplicationForm
|
17
|
+
form do |example_form|
|
18
|
+
example_form.hidden(arguments)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
`#hidden` is a thin wrapper around Rails' [`hidden_field` method](https://api.rubyonrails.org/classes/ActionView/Helpers/FormBuilder.html#method-i-hidden_field) and accepts the same arguments.
|
24
|
+
|
25
|
+
## Separators
|
26
|
+
|
27
|
+
Occasionally it can be appealing to visually distinguish parts of a form from each other. The `#separator` method adds a horizontal rule between inputs.
|
28
|
+
|
29
|
+
### Usage
|
30
|
+
|
31
|
+
<%= code :ruby do %>
|
32
|
+
class ExampleForm < ApplicationForm
|
33
|
+
form do |example_form|
|
34
|
+
example_form.separator
|
35
|
+
end
|
36
|
+
end
|
37
|
+
<% end %>
|
38
|
+
|
39
|
+
`#separator` does not accept any arguments.
|
40
|
+
|
41
|
+
### Example
|
42
|
+
|
43
|
+
<%= embed Primer::FormsPreview, :multi_text_field_form %>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
---
|
2
|
+
title: "Toggle switch forms"
|
3
|
+
label: "Toggle Switch Forms"
|
4
|
+
id: toggle_switch_forms
|
5
|
+
---
|
6
|
+
|
7
|
+
The Primer toggle switch component is designed to immediately submit a true/false value to the server when toggled. The forms framework adds a label, caption, and validation message to the stock toggle switch in keeping with the other inputs in the framework. However, toggle switches cannot be added to forms directly. Instead, toggle switch forms are their own complete, standalone forms.
|
8
|
+
|
9
|
+
Toggle switches make POST requests to the configured URL (the `src` argument).
|
10
|
+
|
11
|
+
## Creating toggle switch forms
|
12
|
+
|
13
|
+
Toggle switch forms can be defined in one of two ways: either by creating an instance of the `Primer::Forms::ToggleSwitchForm` class or by inheriting from it.
|
14
|
+
|
15
|
+
### Instance
|
16
|
+
|
17
|
+
<%= code :erb do %>
|
18
|
+
<%% render(Primer::Forms::ToggleSwitchForm.new(arguments)) %>
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
### Inheritance
|
22
|
+
|
23
|
+
Define the form:
|
24
|
+
|
25
|
+
<%= code :ruby do %>
|
26
|
+
# app/forms/my_toggle_form.rb
|
27
|
+
class MyToggleForm < Primer::Forms::ToggleSwitchForm
|
28
|
+
def initialize(**system_arguments)
|
29
|
+
super(arguments, **system_arguments)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
<% end %>
|
33
|
+
|
34
|
+
Render the form:
|
35
|
+
|
36
|
+
<%= code :erb do %>
|
37
|
+
<%%# app/views/some_controller/some_view.html.erb %>
|
38
|
+
<%% render(MyToggleForm.new) %>
|
39
|
+
<% end %>
|
40
|
+
|
41
|
+
## Arguments
|
42
|
+
|
43
|
+
| Name | Type | Default | Description |
|
44
|
+
| :- | :- | :- | :- |
|
45
|
+
|`name`|String||The name of the input, used to associate the toggle switch with its label.|
|
46
|
+
|`label`|String||Label text displayed adjacent to the input.|
|
47
|
+
|`src`|String||The URL to submit toggle POST requests to.|
|
48
|
+
|`csrf`|String||A CSRF token to submit along with the toggle value. If no value is provided, a CSRF token is automatically generated via Rails' [`form_authenticity_token` method](https://api.rubyonrails.org/v7.0/classes/ActionController/RequestForgeryProtection.html#method-i-form_authenticity_token)|
|
49
|
+
|`hidden`|Boolean||When set to `true`, visually hides the form.|
|
50
|
+
|`label_arguments`|Hash||Attributes that will be passed to Rails' `builder.label` method. These can be HTML attributes or any of the other label options Rails supports. They will appear as HTML attributes on the `<label>` tag.|
|
51
|
+
|
52
|
+
## Error messages
|
53
|
+
|
54
|
+
The server can indicate that an error occurred by responding with a non-2xx status code to toggle switch POST requests. In such a scenario, the response body will be used to populate the toggle switch form's validation message, and will cause a red warning icon to appear next to the switch.
|
55
|
+
|
56
|
+
## Example
|
57
|
+
|
58
|
+
<%= embed Primer::FormsPreview, :example_toggle_switch_form %>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
title: "Validations"
|
3
|
+
id: validations
|
4
|
+
---
|
5
|
+
|
6
|
+
In Rails, forms usually have an associated model object. Models define validations which include validation messages that describe which validations failed and why. Primer forms automatically display validation messages when a model object is provided.
|
7
|
+
|
8
|
+
## Custom validation messages
|
9
|
+
|
10
|
+
All form inputs allow overriding the default validation message via the `:validation_message` argument:
|
11
|
+
|
12
|
+
<%= code :ruby do %>
|
13
|
+
class ExampleForm < ApplicationForm
|
14
|
+
form do |example_form|
|
15
|
+
example_form.text_field(
|
16
|
+
name: :foo,
|
17
|
+
label: "Foo",
|
18
|
+
validation_message: "Custom validation message"
|
19
|
+
)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
A custom validation message is also useful if no associated model object is available, i.e. for forms that are not tied to a database table.
|
25
|
+
|
26
|
+
## Input focus
|
27
|
+
|
28
|
+
Primer forms will automatically focus the first invalid input in accordance with accessibility best-practices. Inputs are considered invalid if the associated model's field is invalid _or_ if a custom validation message has been provided.
|
@@ -0,0 +1,97 @@
|
|
1
|
+
---
|
2
|
+
title: "Compound forms"
|
3
|
+
label: "Compound Forms"
|
4
|
+
id: compound_forms
|
5
|
+
---
|
6
|
+
|
7
|
+
In addition to rendering individual forms, Primer supports combining forms together.
|
8
|
+
|
9
|
+
## Form lists
|
10
|
+
|
11
|
+
Form lists are arrays of one or more forms. They can be rendered anywhere individual forms can be rendered. Consider this example where the user wants to render two individual forms:
|
12
|
+
|
13
|
+
<%= code :erb do %>
|
14
|
+
<%%= primer_form_with(model: Foo.new) do |f| %>
|
15
|
+
<%%= render(FirstForm.new(f)) %>
|
16
|
+
<%%= render(SecondForm.new(f)) %>
|
17
|
+
<%% end %>
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
The example above can be re-written using `FormList`:
|
21
|
+
|
22
|
+
<%= code :erb do %>
|
23
|
+
<%%= primer_form_with(model: Foo.new) do |f| %>
|
24
|
+
<%%= render(Primer::Forms::FormList.new(FirstForm.new(f), SecondForm.new(f))) %>
|
25
|
+
<%% end %>
|
26
|
+
<% end %>
|
27
|
+
|
28
|
+
Form lists can come in handy in cases where the framework expects a single form object, such as the nested form option for check boxes and radio buttons:
|
29
|
+
|
30
|
+
<%= code :ruby do %>
|
31
|
+
class ExampleForm < ApplicationForm
|
32
|
+
form do |example_form|
|
33
|
+
example_form.check_box(name: :foo, label: "Foo") do |check_box|
|
34
|
+
check_box.nested_form do |builder|
|
35
|
+
Primer::Forms::FormList.new(
|
36
|
+
FirstForm.new(builder),
|
37
|
+
SecondForm.new(builder)
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
<% end %>
|
44
|
+
|
45
|
+
## Associated records
|
46
|
+
|
47
|
+
In all the examples above, Primer assumes `FirstForm` and `SecondForm` define inputs that have corresponding fields in the provided model object (an instance of `Foo`). However it's common in Rails to accept nested attributes for an associated model object. For example, a `User` may have a `Profile`. Both are created on signup, so the form should accept both sets of attributes. Rails provides the `fields_for` helper for just this scenario:
|
48
|
+
|
49
|
+
<%= code :erb do %>
|
50
|
+
<%%= form_with(model: User.new) do |f| %>
|
51
|
+
<%%= f.text_field :username %>
|
52
|
+
<%%= f.fields_for(:profile) do |f| %>
|
53
|
+
<%%= f.text_field :first_name %>
|
54
|
+
<%%= f.text_field :last_name %>
|
55
|
+
<%% end %>
|
56
|
+
<%% end %>
|
57
|
+
<% end %>
|
58
|
+
|
59
|
+
Primer forms also support a `#fields_for` method for accomplishing the same goal with form objects. The example above can be rewritten as follows:
|
60
|
+
|
61
|
+
<%= code :ruby do %>
|
62
|
+
# app/forms/signup_form.rb
|
63
|
+
class SignupForm < ApplicationForm
|
64
|
+
form do |signup_form|
|
65
|
+
signup_form.text_field(name: :username, label: "Username")
|
66
|
+
signup_form.fields_for(:profile) do |builder|
|
67
|
+
ProfileForm.new(builder)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
<% end %>
|
72
|
+
|
73
|
+
<%= code :ruby do %>
|
74
|
+
# app/forms/profile_form.rb
|
75
|
+
class ProfileForm < ApplicationForm
|
76
|
+
form do |profile_form|
|
77
|
+
profile_form.text_field(name: :first_name, label: "First name")
|
78
|
+
profile_form.text_field(name: :last_name, label: "Last name")
|
79
|
+
end
|
80
|
+
end
|
81
|
+
<% end %>
|
82
|
+
|
83
|
+
## Avoiding attribute nesting
|
84
|
+
|
85
|
+
For situations where an association exists between two models, the approach described above works well. However sometimes all you want is to compose two forms together that aren't connected by an association. In such cases the fields will still include the name of the parent model when submitted to the server, eg. `user[profile][first_name]` instead of `profile[first_name]`. To render the form independent of the parent, pass `nested: false` to `fields_for`:
|
86
|
+
|
87
|
+
<%= code :ruby do %>
|
88
|
+
# app/forms/signup_form.rb
|
89
|
+
class SignupForm < ApplicationForm
|
90
|
+
form do |signup_form|
|
91
|
+
signup_form.text_field(name: :username, label: "Username")
|
92
|
+
signup_form.fields_for(:profile, nested: false) do |builder|
|
93
|
+
ProfileForm.new(builder)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
<% end %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
|
2
|
+
<%= render(Primer::BaseComponent.new(tag: :div, flex_items: :center, display: :flex)) do %>
|
3
|
+
<%= render(Primer::Beta::Heading.new(tag: :h1, font_size: 3, mr: 2)) { "Title" }%>
|
4
|
+
<%= render(Primer::Alpha::ActionBar.new) do |component| %>
|
5
|
+
<% component.with_item_icon_button(icon: :search, label: "Search") %>
|
6
|
+
<% component.with_item_icon_button(icon: :pencil, label: "Edit") %>
|
7
|
+
<% component.with_item_icon_button(icon: :archive, label: "Archive") %>
|
8
|
+
<% component.with_item_divider %>
|
9
|
+
<% component.with_item_icon_button(icon: :heart, label: "Heart") %>
|
10
|
+
<% component.with_item_icon_button(icon: :bookmark, label: "Bookmark") %>
|
11
|
+
<% component.with_item_icon_button(icon: :mention, label: "Mention") %>
|
12
|
+
<% component.with_item_divider %>
|
13
|
+
<% component.with_item_icon_button(icon: :paperclip, label: "Attach") %>
|
14
|
+
<% end %>
|
15
|
+
<%= render(Primer::Beta::Button.new(scheme: :primary, ml: 2)) { "New Issue"} %>
|
16
|
+
<% end %>
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# typed: true
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# Setup Playground to use all available component props
|
5
|
+
# Setup Features to use individual component props and combinations
|
6
|
+
|
7
|
+
module Primer
|
8
|
+
module Alpha
|
9
|
+
# @label ActionBar
|
10
|
+
class ActionBarPreview < ViewComponent::Preview
|
11
|
+
# @label Default
|
12
|
+
# @snapshot
|
13
|
+
def default
|
14
|
+
render(Primer::Alpha::ActionBar.new) do |component|
|
15
|
+
component.with_item_icon_button(icon: :search, label: "Search")
|
16
|
+
component.with_item_icon_button(icon: :pencil, label: "Edit")
|
17
|
+
component.with_item_icon_button(icon: :archive, label: "Archive")
|
18
|
+
component.with_item_divider
|
19
|
+
component.with_item_icon_button(icon: :heart, label: "Heart")
|
20
|
+
component.with_item_icon_button(icon: :bookmark, label: "Bookmark")
|
21
|
+
component.with_item_icon_button(icon: :mention, label: "Mention")
|
22
|
+
component.with_item_divider
|
23
|
+
component.with_item_icon_button(icon: :paperclip, label: "Attach")
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# @label Inline with other components
|
28
|
+
def inline; end
|
29
|
+
|
30
|
+
# @label Playground
|
31
|
+
# @param size [Symbol] select [[Small, small], [Medium, medium], [Large, large]]
|
32
|
+
# @param overflow_menu [Boolean]
|
33
|
+
def playground(size: :medium, overflow_menu: true)
|
34
|
+
render(Primer::Alpha::ActionBar.new(size: size, overflow_menu: overflow_menu)) do |component|
|
35
|
+
component.with_item_icon_button(icon: :search, label: "Search")
|
36
|
+
component.with_item_icon_button(icon: :pencil, label: "Edit")
|
37
|
+
component.with_item_icon_button(icon: :archive, label: "Archive")
|
38
|
+
component.with_item_divider
|
39
|
+
component.with_item_icon_button(icon: :heart, label: "Heart")
|
40
|
+
component.with_item_icon_button(icon: :bookmark, label: "Bookmark")
|
41
|
+
component.with_item_icon_button(icon: :mention, label: "Mention")
|
42
|
+
component.with_item_divider
|
43
|
+
component.with_item_icon_button(icon: :paperclip, label: "Attach")
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# @!group sizes
|
48
|
+
def small
|
49
|
+
render(Primer::Alpha::ActionBar.new(size: :small)) do |component|
|
50
|
+
component.with_item_icon_button(icon: :search, label: "Search")
|
51
|
+
component.with_item_icon_button(icon: :pencil, label: "Edit")
|
52
|
+
component.with_item_icon_button(icon: :archive, label: "Archive")
|
53
|
+
component.with_item_divider
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def medium
|
58
|
+
render(Primer::Alpha::ActionBar.new(size: :medium)) do |component|
|
59
|
+
component.with_item_icon_button(icon: :search, label: "Search")
|
60
|
+
component.with_item_icon_button(icon: :pencil, label: "Edit")
|
61
|
+
component.with_item_icon_button(icon: :archive, label: "Archive")
|
62
|
+
component.with_item_divider
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def large
|
67
|
+
render(Primer::Alpha::ActionBar.new(size: :large)) do |component|
|
68
|
+
component.with_item_icon_button(icon: :search, label: "Search")
|
69
|
+
component.with_item_icon_button(icon: :pencil, label: "Edit")
|
70
|
+
component.with_item_icon_button(icon: :archive, label: "Archive")
|
71
|
+
component.with_item_divider
|
72
|
+
end
|
73
|
+
end
|
74
|
+
# @!endgroup
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|