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
data/CHANGELOG.md
ADDED
@@ -0,0 +1,2931 @@
|
|
1
|
+
# CHANGELOG
|
2
|
+
|
3
|
+
## 0.6.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [`1343dfea`](https://github.com/primer/view_components/commit/1343dfea0ed4cc4295cf0a8a659adb31c142c229) Thanks [@HDinger](https://github.com/HDinger)! - Rename ruby gem
|
8
|
+
|
9
|
+
## 0.6.2
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- [`97f7fb24`](https://github.com/primer/view_components/commit/97f7fb24561927c649f31757db028ffd451b27e6) Thanks [@HDinger](https://github.com/HDinger)! - Preparation for the gem creation
|
14
|
+
|
15
|
+
## 0.6.1
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- [#2192](https://github.com/primer/view_components/pull/2192) [`73fc40bb`](https://github.com/primer/view_components/commit/73fc40bb83ac2b14936e38ad2706cfdd68abc34f) Thanks [@camertron](https://github.com/camertron)! - ActionMenu: Don't allow items to be unchecked in single-select mode
|
20
|
+
|
21
|
+
<!-- Changed components: Primer::Alpha::ActionMenu -->
|
22
|
+
|
23
|
+
- [#2190](https://github.com/primer/view_components/pull/2190) [`0a9bcda2`](https://github.com/primer/view_components/commit/0a9bcda29eedd5b4854ce71a413b22f275283729) Thanks [@radglob](https://github.com/radglob)! - Updates Primer::Beta::Button.with_tooltip to not accept `:label` type.
|
24
|
+
|
25
|
+
<!-- Changed components: Primer::Beta::Button -->
|
26
|
+
|
27
|
+
## 0.6.0
|
28
|
+
|
29
|
+
### Minor Changes
|
30
|
+
|
31
|
+
- [#2187](https://github.com/primer/view_components/pull/2187) [`ce2011e6`](https://github.com/primer/view_components/commit/ce2011e615325b2e18d0974b5a08831ef442681f) Thanks [@camertron](https://github.com/camertron)! - Expose ActionList's #build_item and #build_avatar_item externally to facilitate parent-less item construction
|
32
|
+
|
33
|
+
<!-- Changed components: Primer::Alpha::ActionList, Primer::Alpha::ActionMenu, Primer::Alpha::NavList -->
|
34
|
+
|
35
|
+
- [#2188](https://github.com/primer/view_components/pull/2188) [`5950afea`](https://github.com/primer/view_components/commit/5950afea48dca275df11603ffab6f8689777e08d) Thanks [@camertron](https://github.com/camertron)! - Allow disabling submit buttons
|
36
|
+
|
37
|
+
<!-- Changed components: Primer::Alpha::FormButton, Primer::Alpha::SubmitButton -->
|
38
|
+
|
39
|
+
- [#2165](https://github.com/primer/view_components/pull/2165) [`1b8ff1b7`](https://github.com/primer/view_components/commit/1b8ff1b7883b9870dfc09c6b59f26d17b8d2be92) Thanks [@camertron](https://github.com/camertron)! - Add an accessible avatar item to ActionList, NavList, and ActionMenu
|
40
|
+
|
41
|
+
<!-- Changed components: Primer::Alpha::ActionList, Primer::Alpha::ActionMenu, Primer::Alpha::NavList -->
|
42
|
+
|
43
|
+
- [#2186](https://github.com/primer/view_components/pull/2186) [`eab82c07`](https://github.com/primer/view_components/commit/eab82c0780b219f1d3a118cc912561f33ac49e7e) Thanks [@camertron](https://github.com/camertron)! - On dismiss, allow banners to be hidden instead of removed from DOM
|
44
|
+
|
45
|
+
<!-- Changed components: Primer::Alpha::Banner -->
|
46
|
+
|
47
|
+
### Patch Changes
|
48
|
+
|
49
|
+
- [#2164](https://github.com/primer/view_components/pull/2164) [`93344455`](https://github.com/primer/view_components/commit/93344455a3fc7666dd459eeb06843e2a9c7a7806) Thanks [@camertron](https://github.com/camertron)! - Allow form buttons to be disabled on click with data-disable-with
|
50
|
+
|
51
|
+
<!-- Changed components: Primer::Alpha::FormButton -->
|
52
|
+
|
53
|
+
- [#2158](https://github.com/primer/view_components/pull/2158) [`0afaecc6`](https://github.com/primer/view_components/commit/0afaecc6051ff5f85f804db3ac3494d208ed4999) Thanks [@jonrohan](https://github.com/jonrohan)! - Fix bug in ActionMenu button where return doesn't trigger menu
|
54
|
+
|
55
|
+
<!-- Changed components: Primer::Alpha::ActionMenu -->
|
56
|
+
|
57
|
+
- [#2168](https://github.com/primer/view_components/pull/2168) [`45822328`](https://github.com/primer/view_components/commit/4582232870286d9cc2d6ae8bea6c6fd9da9659a6) Thanks [@keithamus](https://github.com/keithamus)! - Guard tooltip popover calls from `Failed to execute 'showPopover' on 'HTMLElement': Not supported on elements that do not have a valid value for the 'popover' attribute.`
|
58
|
+
|
59
|
+
<!-- Changed components: Primer::Alpha::Tooltip -->
|
60
|
+
|
61
|
+
- [#2160](https://github.com/primer/view_components/pull/2160) [`8464823b`](https://github.com/primer/view_components/commit/8464823b7cb1d27cea9e4ead25014f1518e6bd26) Thanks [@langermank](https://github.com/langermank)! - Fix Dialog backdrop color fallback
|
62
|
+
|
63
|
+
<!-- Changed components: _none_ -->
|
64
|
+
|
65
|
+
- [#2163](https://github.com/primer/view_components/pull/2163) [`e3aeda1f`](https://github.com/primer/view_components/commit/e3aeda1f567f3a8d08a252ab98e0aeae880d1eaf) Thanks [@langermank](https://github.com/langermank)! - Add fallbacks for primary Button
|
66
|
+
|
67
|
+
<!-- Changed components: _none_ -->
|
68
|
+
|
69
|
+
- [#2170](https://github.com/primer/view_components/pull/2170) [`4391873d`](https://github.com/primer/view_components/commit/4391873d9970ef981e22d1b7360343037683c1d1) Thanks [@Tonkpils](https://github.com/Tonkpils)! - Add support for capitalize to text-transform
|
70
|
+
|
71
|
+
<!-- Changed components: Primer::BaseComponent -->
|
72
|
+
|
73
|
+
- [#2169](https://github.com/primer/view_components/pull/2169) [`4f11f5e3`](https://github.com/primer/view_components/commit/4f11f5e32d0d108bce6fb688156b21704a75785f) Thanks [@camertron](https://github.com/camertron)! - Fix color contrast issues for action list hover state (danger style)
|
74
|
+
|
75
|
+
<!-- Changed components: Primer::Alpha::ActionList, Primer::Alpha::ActionMenu -->
|
76
|
+
|
77
|
+
## 0.5.1
|
78
|
+
|
79
|
+
### Patch Changes
|
80
|
+
|
81
|
+
- [#2156](https://github.com/primer/view_components/pull/2156) [`5f809724`](https://github.com/primer/view_components/commit/5f8097241df130e5b54cd5a1bcfda0ca11258cda) Thanks [@langermank](https://github.com/langermank)! - Add correct fallbacks to `State` label
|
82
|
+
|
83
|
+
<!-- Changed components: _none_ -->
|
84
|
+
|
85
|
+
- [#2151](https://github.com/primer/view_components/pull/2151) [`78e0d175`](https://github.com/primer/view_components/commit/78e0d175d266534ab9042b671057bed3e6dfb7c5) Thanks [@jdrush89](https://github.com/jdrush89)! - Checking document scrollbar width before making dialog backdrop visible to fix issue with document padding on mobile screens.
|
86
|
+
|
87
|
+
<!-- Changed components: Primer::Alpha::Dialog -->
|
88
|
+
|
89
|
+
- [#2154](https://github.com/primer/view_components/pull/2154) [`9005b5cd`](https://github.com/primer/view_components/commit/9005b5cdb00a628f4f9efe93066dab5413b181e5) Thanks [@langermank](https://github.com/langermank)! - Add color declaration for Dialog `title`
|
90
|
+
|
91
|
+
<!-- Changed components: _none_ -->
|
92
|
+
|
93
|
+
## 0.5.0
|
94
|
+
|
95
|
+
### Minor Changes
|
96
|
+
|
97
|
+
- [#2148](https://github.com/primer/view_components/pull/2148) [`cbd5c84d`](https://github.com/primer/view_components/commit/cbd5c84d8d290b0d018f15c5ee84cd94afcd4b0b) Thanks [@keithamus](https://github.com/keithamus)! - Add a linter discouraging use of <details-menu> in favor of Primer::Alpha::ActionMenu
|
98
|
+
|
99
|
+
<!-- Changed components: _none_ -->
|
100
|
+
|
101
|
+
- [#2123](https://github.com/primer/view_components/pull/2123) [`f9119d95`](https://github.com/primer/view_components/commit/f9119d95f281d528f3c0086ebc521afd33bd4295) Thanks [@langermank](https://github.com/langermank)! - - Use Primitive v8 color tokens
|
102
|
+
- Add tests for compiled CSS to ensure CSS color variables have a fallback
|
103
|
+
|
104
|
+
### Patch Changes
|
105
|
+
|
106
|
+
- [#2153](https://github.com/primer/view_components/pull/2153) [`b9871598`](https://github.com/primer/view_components/commit/b98715986852c5f0f51aaf9f9af0463d2eda727c) Thanks [@langermank](https://github.com/langermank)! - Update color fallback for `UnderlineNav` counter
|
107
|
+
|
108
|
+
## 0.4.0
|
109
|
+
|
110
|
+
### Minor Changes
|
111
|
+
|
112
|
+
- [#2111](https://github.com/primer/view_components/pull/2111) [`6ee6d774`](https://github.com/primer/view_components/commit/6ee6d774b463753c7b2b944dcf57dd4ff40c9589) Thanks [@keithamus](https://github.com/keithamus)! - refactor Primer::Alpha::Tooltip to use popover
|
113
|
+
|
114
|
+
Changed components: Primer::Alpha::Tooltip
|
115
|
+
|
116
|
+
- [#2034](https://github.com/primer/view_components/pull/2034) [`707a1fa3`](https://github.com/primer/view_components/commit/707a1fa31dd23cae8316fa9d8a6c122bc4edc354) Thanks [@radglob](https://github.com/radglob)! - Partially address a11y issues in Link component.
|
117
|
+
|
118
|
+
Links can no longer be rendered as `<span>`s.
|
119
|
+
|
120
|
+
- [#1941](https://github.com/primer/view_components/pull/1941) [`a8cc5ba2`](https://github.com/primer/view_components/commit/a8cc5ba2061207d9ca65c42f3d355eb8b7f03bb8) Thanks [@jonrohan](https://github.com/jonrohan)! - 🆕 New component!
|
121
|
+
|
122
|
+
The `Primer::Alpha::ActionBar` component is used to create a toolbar of buttons that will fold into an ActionMenu when the space is smaller. [Design details](https://primer.style/design/components/action-bar/)
|
123
|
+
|
124
|
+
## 0.3.1
|
125
|
+
|
126
|
+
### Patch Changes
|
127
|
+
|
128
|
+
- [#2113](https://github.com/primer/view_components/pull/2113) [`f4736349`](https://github.com/primer/view_components/commit/f4736349bc7b04a8696960b821377b1237ec660c) Thanks [@camertron](https://github.com/camertron)! - Revert v8 color var fallbacks (#2083)
|
129
|
+
|
130
|
+
## 0.3.0
|
131
|
+
|
132
|
+
### Minor Changes
|
133
|
+
|
134
|
+
- [#2079](https://github.com/primer/view_components/pull/2079) [`f36ecc39`](https://github.com/primer/view_components/commit/f36ecc3969d339e43693d2fd81eee02e817e29db) Thanks [@camertron](https://github.com/camertron)! - Additional NavList accessibility improvements
|
135
|
+
|
136
|
+
* [#2086](https://github.com/primer/view_components/pull/2086) [`10abe7a0`](https://github.com/primer/view_components/commit/10abe7a0b068f2d7c6e8efe0d4f905b32e35253d) Thanks [@khiga8](https://github.com/khiga8)! - Add lint rule against .tooltipped and introduce accessibility.yml config
|
137
|
+
|
138
|
+
- [#2088](https://github.com/primer/view_components/pull/2088) [`b79fec8e`](https://github.com/primer/view_components/commit/b79fec8e134bd784658d2000a7ff4440e0cc34fb) Thanks [@jonrohan](https://github.com/jonrohan)! - Separating `<anchored-position>` web component and the .Overlay class into separate markup.
|
139
|
+
|
140
|
+
### Patch Changes
|
141
|
+
|
142
|
+
- [#2083](https://github.com/primer/view_components/pull/2083) [`e38ae1ec`](https://github.com/primer/view_components/commit/e38ae1ec7c5f0704b42f8978c03e4338dcd2c5e7) Thanks [@langermank](https://github.com/langermank)! - Update colors to use Primitive v8 CSS vars
|
143
|
+
|
144
|
+
* [#2078](https://github.com/primer/view_components/pull/2078) [`6bd439da`](https://github.com/primer/view_components/commit/6bd439da54b88a7aeb2900075405339415e9cc43) Thanks [@camertron](https://github.com/camertron)! - ToggleSwitch: Remove @debounce annotation in favor of a boolean flag to prevent confusing screen reader output
|
145
|
+
|
146
|
+
- [#2089](https://github.com/primer/view_components/pull/2089) [`4acf85d0`](https://github.com/primer/view_components/commit/4acf85d0cd8a6ce213ed8bc0313f07d947ebabbe) Thanks [@camertron](https://github.com/camertron)! - Change the 'skip changelog' label to 'skip changeset'
|
147
|
+
|
148
|
+
## 0.2.0
|
149
|
+
|
150
|
+
### Minor Changes
|
151
|
+
|
152
|
+
- [#2060](https://github.com/primer/view_components/pull/2060) [`bc40f586`](https://github.com/primer/view_components/commit/bc40f586293a26e977a9b96e538aa5fe92ac5bb1) Thanks [@camertron](https://github.com/camertron)! - ActionMenu: Move aria-checked to button
|
153
|
+
|
154
|
+
* [#2042](https://github.com/primer/view_components/pull/2042) [`9c53f8e0`](https://github.com/primer/view_components/commit/9c53f8e0c158e2f1c6618bf1a2635e4a41021fbb) Thanks [@camertron](https://github.com/camertron)! - Use polymorphic slots in ActionList and NavList
|
155
|
+
|
156
|
+
- [#2070](https://github.com/primer/view_components/pull/2070) [`04fc4f1b`](https://github.com/primer/view_components/commit/04fc4f1baec39993df468d0c9ca4a03803462186) Thanks [@camertron](https://github.com/camertron)! - Fix disabled button behavior
|
157
|
+
|
158
|
+
* [#2074](https://github.com/primer/view_components/pull/2074) [`b39eae8c`](https://github.com/primer/view_components/commit/b39eae8cd033089d3782c4552f9001a71eeceddf) Thanks [@camertron](https://github.com/camertron)! - Allow Beta::Details to be disabled
|
159
|
+
|
160
|
+
### Patch Changes
|
161
|
+
|
162
|
+
- [#2055](https://github.com/primer/view_components/pull/2055) [`5911ff9c`](https://github.com/primer/view_components/commit/5911ff9c3e22e3b52e435a0b7ed54ea97358621c) Thanks [@keithamus](https://github.com/keithamus)! - Tweak Overlay CSS to account for cases where the browser supports :open, :popover-open, both, or neither.
|
163
|
+
|
164
|
+
* [#2008](https://github.com/primer/view_components/pull/2008) [`53190440`](https://github.com/primer/view_components/commit/531904404a962620cca734f1582f0771bd47a125) Thanks [@langermank](https://github.com/langermank)! - Update color vars for `Button` with counter
|
165
|
+
|
166
|
+
- [#2021](https://github.com/primer/view_components/pull/2021) [`7abf0965`](https://github.com/primer/view_components/commit/7abf09658d28640efe278bd00a3d1d03dab3e3e5) Thanks [@keithamus](https://github.com/keithamus)! - dont open dialog if button is aria-disabled
|
167
|
+
|
168
|
+
* [#2006](https://github.com/primer/view_components/pull/2006) [`7282911b`](https://github.com/primer/view_components/commit/7282911ba38b2f11681e2a558e189cf2e6174bd4) Thanks [@keithamus](https://github.com/keithamus)! - Fix ActionMenu staying open when focus moved, in browsers with native popover
|
169
|
+
|
170
|
+
- [#2075](https://github.com/primer/view_components/pull/2075) [`2eb286f2`](https://github.com/primer/view_components/commit/2eb286f2c3f5171b52c6e64b70e1602230fc6e75) Thanks [@camertron](https://github.com/camertron)! - NavList: Add aria-current to active nav item
|
171
|
+
|
172
|
+
* [#2077](https://github.com/primer/view_components/pull/2077) [`fe578c16`](https://github.com/primer/view_components/commit/fe578c166da02173680e4825113ede4c94b9be43) Thanks [@camertron](https://github.com/camertron)! - Don't use aria-disabled for buttons
|
173
|
+
|
174
|
+
- [#2013](https://github.com/primer/view_components/pull/2013) [`b7207d27`](https://github.com/primer/view_components/commit/b7207d27b23c77ea7280cc4175c6d665897e8e40) Thanks [@langermank](https://github.com/langermank)! - Update `ButtonGroup` to use `Beta::Button`
|
175
|
+
|
176
|
+
* [#2073](https://github.com/primer/view_components/pull/2073) [`c4ada3b1`](https://github.com/primer/view_components/commit/c4ada3b1d567f6e819f8321e71d977c16f3215eb) Thanks [@camertron](https://github.com/camertron)! - Fix text_field.pcss to use flex-start instead of start
|
177
|
+
|
178
|
+
- [#2032](https://github.com/primer/view_components/pull/2032) [`607889bc`](https://github.com/primer/view_components/commit/607889bc18c4a4ec98dd966940bb361d272f5f60) Thanks [@langermank](https://github.com/langermank)! - Bug fix: Text field validation wrap styles
|
179
|
+
|
180
|
+
* [#2069](https://github.com/primer/view_components/pull/2069) [`532095e9`](https://github.com/primer/view_components/commit/532095e957b072337ed1707ebc5289990b6d8d56) Thanks [@jalafel](https://github.com/jalafel)! - Add event.stopPropogation to enter event
|
181
|
+
|
182
|
+
- [#2071](https://github.com/primer/view_components/pull/2071) [`c0fa71ec`](https://github.com/primer/view_components/commit/c0fa71ecf718a184b73bdfae5c799efb755ece3d) Thanks [@camertron](https://github.com/camertron)! - ActionMenu: don't swallow events attached via addEventListener
|
183
|
+
|
184
|
+
* [#2059](https://github.com/primer/view_components/pull/2059) [`bf60d7d7`](https://github.com/primer/view_components/commit/bf60d7d703752b9a6c096c8d1b1bd2fd0558a607) Thanks [@camertron](https://github.com/camertron)! - Fix keyboard functionality with deferred loading in ActionMenu
|
185
|
+
|
186
|
+
- [#2027](https://github.com/primer/view_components/pull/2027) [`f6d9fe97`](https://github.com/primer/view_components/commit/f6d9fe9741b66751a3c89cdfb5637a111ec4170b) Thanks [@keithamus](https://github.com/keithamus)! - ActionMenu: enable focussing first element on space activation
|
187
|
+
|
188
|
+
* [#2058](https://github.com/primer/view_components/pull/2058) [`3e50e06c`](https://github.com/primer/view_components/commit/3e50e06c308487b97aa5bf12bdc0c8eef66ba086) Thanks [@jonrohan](https://github.com/jonrohan)! - - Remove manual fallbacks for CSS vars
|
189
|
+
- Update PostCSS plugin to add fallbacks at build time
|
190
|
+
|
191
|
+
- [#2072](https://github.com/primer/view_components/pull/2072) [`70086f5e`](https://github.com/primer/view_components/commit/70086f5e3cbdd360cf85a34de34df83d063652d3) Thanks [@jonrohan](https://github.com/jonrohan)! - ButtonGroup: Change reset selector to use .Button class
|
192
|
+
|
193
|
+
* [#2025](https://github.com/primer/view_components/pull/2025) [`2d1f5074`](https://github.com/primer/view_components/commit/2d1f50747714706f93b8bc64495a56fb72b3e24e) Thanks [@strackoverflow](https://github.com/strackoverflow)! - Preserve aria-label when `Primer::Beta::IconButton` `show_tooltip` is false
|
194
|
+
|
195
|
+
- [#2023](https://github.com/primer/view_components/pull/2023) [`b47a3781`](https://github.com/primer/view_components/commit/b47a37811147af663358cb055fe9ac79701caf43) Thanks [@camertron](https://github.com/camertron)! - Bump popover-polyfill to latest version
|
196
|
+
|
197
|
+
* [#2033](https://github.com/primer/view_components/pull/2033) [`54ed872b`](https://github.com/primer/view_components/commit/54ed872bfb08b8fb07fb9fc9c057627419c601ca) Thanks [@langermank](https://github.com/langermank)! - Add `@primer/primitives` dependency to docs
|
198
|
+
|
199
|
+
## 0.1.9
|
200
|
+
|
201
|
+
### Patch Changes
|
202
|
+
|
203
|
+
- [#1967](https://github.com/primer/view_components/pull/1967) [`20890415`](https://github.com/primer/view_components/commit/2089041551f0682b7c4cfa27a8656e148eec69ff) Thanks [@camertron](https://github.com/camertron)! - Toggle switch accessibility fixes
|
204
|
+
|
205
|
+
* [#2009](https://github.com/primer/view_components/pull/2009) [`65745bf4`](https://github.com/primer/view_components/commit/65745bf4c8044806a23e741eac0daf8e1fe65d53) Thanks [@camertron](https://github.com/camertron)! - Fix embedded example in SelectInput docs
|
206
|
+
|
207
|
+
- [#2011](https://github.com/primer/view_components/pull/2011) [`a1ca6fd0`](https://github.com/primer/view_components/commit/a1ca6fd0de5789f2b80fbc03257487dbe255b6f5) Thanks [@camertron](https://github.com/camertron)! - Make ActionList leading visual icons the same color as the item text.
|
208
|
+
|
209
|
+
* [#1998](https://github.com/primer/view_components/pull/1998) [`a23d5533`](https://github.com/primer/view_components/commit/a23d553372e08dbd57a0d4ad890b38c26d08674f) Thanks [@keithamus](https://github.com/keithamus)! - Fix style bug in popovers using native popover
|
210
|
+
|
211
|
+
- [#1996](https://github.com/primer/view_components/pull/1996) [`aeb9d2aa`](https://github.com/primer/view_components/commit/aeb9d2aa50238ade6b018b53a816d2c8b11e6457) Thanks [@keithamus](https://github.com/keithamus)! - Fix Dialogs aria-disabled attribute
|
212
|
+
|
213
|
+
* [#2003](https://github.com/primer/view_components/pull/2003) [`52ba2505`](https://github.com/primer/view_components/commit/52ba2505ca9897708357c5ed22a7bee0de4657c5) Thanks [@keithamus](https://github.com/keithamus)! - Fix positioning for native popovers
|
214
|
+
|
215
|
+
- [#1994](https://github.com/primer/view_components/pull/1994) [`064b0dea`](https://github.com/primer/view_components/commit/064b0dea7267a00ed5321ac9e1fe020f672ee085) Thanks [@keithamus](https://github.com/keithamus)! - Fix Overlay close buttons
|
216
|
+
|
217
|
+
* [#1995](https://github.com/primer/view_components/pull/1995) [`546df103`](https://github.com/primer/view_components/commit/546df103b50309ee8f9b6398707cd28eb99dcd98) Thanks [@keithamus](https://github.com/keithamus)! - Prevent page scrolling when using arrow keys in an ActionMenu
|
218
|
+
|
219
|
+
- [#1990](https://github.com/primer/view_components/pull/1990) [`15553fa9`](https://github.com/primer/view_components/commit/15553fa9d8f01a200053ddc45d1fc62e4da02738) Thanks [@jonrohan](https://github.com/jonrohan)! - Add custom properties fallback plugin to fallback primitives v8 colors
|
220
|
+
|
221
|
+
* [#1987](https://github.com/primer/view_components/pull/1987) [`01ad9325`](https://github.com/primer/view_components/commit/01ad932570295d03dd927646483c2f10b6fe6760) Thanks [@langermank](https://github.com/langermank)! - add padding back to autocomplete
|
222
|
+
|
223
|
+
- [#2002](https://github.com/primer/view_components/pull/2002) [`ef2540a1`](https://github.com/primer/view_components/commit/ef2540a1408c37e8d67fefcad62adcb1d99d938c) Thanks [@keithamus](https://github.com/keithamus)! - Fix focus groups when using native `popover`
|
224
|
+
|
225
|
+
* [#2004](https://github.com/primer/view_components/pull/2004) [`0cc69107`](https://github.com/primer/view_components/commit/0cc691072892f194f58796bef87eb832ea92a6d4) Thanks [@keithamus](https://github.com/keithamus)! - Fix bug where dialogs aren't shown due to keydown and pointer events firing
|
226
|
+
|
227
|
+
## 0.1.8
|
228
|
+
|
229
|
+
### Patch Changes
|
230
|
+
|
231
|
+
- [#1969](https://github.com/primer/view_components/pull/1969) [`37174d1b`](https://github.com/primer/view_components/commit/37174d1b97b20ffaa4b00080962a56726c6f6bed) Thanks [@jhunschejones](https://github.com/jhunschejones)! - Don't show segmented control item separator on first item
|
232
|
+
|
233
|
+
* [#1943](https://github.com/primer/view_components/pull/1943) [`40912f6a`](https://github.com/primer/view_components/commit/40912f6a173a67a4fbd8aaab54962ea25821ba51) Thanks [@camertron](https://github.com/camertron)! - Additional accessibility fixes for NavList and ActionList
|
234
|
+
|
235
|
+
- [#1965](https://github.com/primer/view_components/pull/1965) [`cd6d5ed4`](https://github.com/primer/view_components/commit/cd6d5ed48f3773e8532886422bc4b8b5e0e38321) Thanks [@langermank](https://github.com/langermank)! - Adjust background color for Button with Counter, fix small and large TextField visual alignment bugs
|
236
|
+
|
237
|
+
## 0.1.7
|
238
|
+
|
239
|
+
### Patch Changes
|
240
|
+
|
241
|
+
- [#1955](https://github.com/primer/view_components/pull/1955) [`ef9c7be2`](https://github.com/primer/view_components/commit/ef9c7be27fd718bec7006619f7a69d19a198fbe8) Thanks [@keithamus](https://github.com/keithamus)! - Add size argument to ActionMenu
|
242
|
+
|
243
|
+
* [#1962](https://github.com/primer/view_components/pull/1962) [`25a7ce9d`](https://github.com/primer/view_components/commit/25a7ce9d92c6bb3537ef68022a519794b12b98a1) Thanks [@camertron](https://github.com/camertron)! - Action menu form input
|
244
|
+
|
245
|
+
- [#1960](https://github.com/primer/view_components/pull/1960) [`55e0d2c6`](https://github.com/primer/view_components/commit/55e0d2c66ee87a0d99a12f65a6bff2074efcc1b8) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Don't use to_sentence in ERB linters so they can be run outside of Rails.
|
246
|
+
|
247
|
+
* [#1964](https://github.com/primer/view_components/pull/1964) [`d6a46055`](https://github.com/primer/view_components/commit/d6a46055cd4e9c40352f0ca61a8b0b3e2967146d) Thanks [@langermank](https://github.com/langermank)! - Upgrade Primitives and PCSS, rename tokens to pre-v8 release
|
248
|
+
|
249
|
+
## 0.1.6
|
250
|
+
|
251
|
+
### Patch Changes
|
252
|
+
|
253
|
+
- [#1946](https://github.com/primer/view_components/pull/1946) [`62e60565`](https://github.com/primer/view_components/commit/62e605658abbbd59cefef18ebd4ad4acd68c2351) Thanks [@camertron](https://github.com/camertron)! - Address NavList Axe violation
|
254
|
+
|
255
|
+
* [#1949](https://github.com/primer/view_components/pull/1949) [`f398971f`](https://github.com/primer/view_components/commit/f398971f4e2da71b37fe731e43ae47e39849e0d0) Thanks [@langermank](https://github.com/langermank)! - Use min-width for ActionMenu to fix visual regression with inline descriptions
|
256
|
+
|
257
|
+
- [#1901](https://github.com/primer/view_components/pull/1901) [`dcab49f3`](https://github.com/primer/view_components/commit/dcab49f3ce542d62d1f819d18355ae8e1ed3ce79) Thanks [@radglob](https://github.com/radglob)! - Add width parameter to autocomplete.
|
258
|
+
|
259
|
+
* [#1953](https://github.com/primer/view_components/pull/1953) [`e64edfc4`](https://github.com/primer/view_components/commit/e64edfc495591719f3e0ac9c9b2b8e2e429d2e4f) Thanks [@camertron](https://github.com/camertron)! - Fix opening a dialog from an ActionMenu item
|
260
|
+
|
261
|
+
- [#1951](https://github.com/primer/view_components/pull/1951) [`90e32894`](https://github.com/primer/view_components/commit/90e32894c758bab65e22c8b0b1bfae86d66c2967) Thanks [@camertron](https://github.com/camertron)! - Fix ActionMenu's internal label
|
262
|
+
|
263
|
+
* [#1933](https://github.com/primer/view_components/pull/1933) [`92bd7848`](https://github.com/primer/view_components/commit/92bd7848db11384ed08a0094e20c952d682ac777) Thanks [@simurai](https://github.com/simurai)! - Use inline for Buttons
|
264
|
+
|
265
|
+
## 0.1.5
|
266
|
+
|
267
|
+
### Patch Changes
|
268
|
+
|
269
|
+
- [#1830](https://github.com/primer/view_components/pull/1830) [`d7e4f5d0`](https://github.com/primer/view_components/commit/d7e4f5d0d029a838696a16b0d85f928fe8b9268a) Thanks [@langermank](https://github.com/langermank)! - ActionMenu upstream from Experimental
|
270
|
+
|
271
|
+
* [#1903](https://github.com/primer/view_components/pull/1903) [`bb627a21`](https://github.com/primer/view_components/commit/bb627a21b0df7a109cbb939dbf8c171a368670bc) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Migrate usage of old Slots API in previews.
|
272
|
+
|
273
|
+
- [#1900](https://github.com/primer/view_components/pull/1900) [`9cd530ee`](https://github.com/primer/view_components/commit/9cd530eece6284848c4d7f9b0c8f1cd4e71537b0) Thanks [@keithamus](https://github.com/keithamus)! - Add the ability to pass an icon to Dialog `with_show_button`, which will turn it from a Beta::Button to a Beta::IconButton.
|
274
|
+
|
275
|
+
* [#1932](https://github.com/primer/view_components/pull/1932) [`5602fbbb`](https://github.com/primer/view_components/commit/5602fbbbc5783ba88f075d972c00082109da7e84) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Fix use of removed slots API in docs.
|
276
|
+
|
277
|
+
- [#1907](https://github.com/primer/view_components/pull/1907) [`c691fbeb`](https://github.com/primer/view_components/commit/c691fbeb6e65f1a4fc420933123a44664a6a4f5d) Thanks [@neall](https://github.com/neall)! - Fix up reserved CSS class linter
|
278
|
+
|
279
|
+
## 0.1.4
|
280
|
+
|
281
|
+
### Patch Changes
|
282
|
+
|
283
|
+
- [#1829](https://github.com/primer/view_components/pull/1829) [`bb54d982`](https://github.com/primer/view_components/commit/bb54d982433910ae28005b72de73ca69a6f8a8f3) Thanks [@josepmartins](https://github.com/josepmartins)! - Add responsive values for `border` and `border-radius` system argument
|
284
|
+
|
285
|
+
* [#1897](https://github.com/primer/view_components/pull/1897) [`eae7a7f8`](https://github.com/primer/view_components/commit/eae7a7f8a4891efa4873558d380eabb638272095) Thanks [@camertron](https://github.com/camertron)! - Fix widths of text fields and multi inputs.
|
286
|
+
|
287
|
+
## 0.1.3
|
288
|
+
|
289
|
+
### Patch Changes
|
290
|
+
|
291
|
+
- [#1895](https://github.com/primer/view_components/pull/1895) [`e53f1995`](https://github.com/primer/view_components/commit/e53f1995e6b97a92169479255196c1eec07cbd1f) Thanks [@camertron](https://github.com/camertron)! - Modify merge_aria to combine plural attributes; introduce merge_data
|
292
|
+
|
293
|
+
* [#1894](https://github.com/primer/view_components/pull/1894) [`5d118b0a`](https://github.com/primer/view_components/commit/5d118b0ae8b10429801f12f8c08e9aaf4895dbab) Thanks [@mikekavouras](https://github.com/mikekavouras)! - Update Primer::Alpha::TextInput to support multiple target attributes
|
294
|
+
|
295
|
+
- [#1887](https://github.com/primer/view_components/pull/1887) [`9cc2f5bf`](https://github.com/primer/view_components/commit/9cc2f5bf3a59e7c97ca44b4b17da7c849bda5e2a) Thanks [@camertron](https://github.com/camertron)! - ActionList item and divider content
|
296
|
+
|
297
|
+
* [#1892](https://github.com/primer/view_components/pull/1892) [`d72334d1`](https://github.com/primer/view_components/commit/d72334d1ef2a40e3ed1e96bfebc1b896752c521c) Thanks [@hrs](https://github.com/hrs)! - Deprecate Primer::LayoutComponent in favor of Primer::Alpha::Layout, and add a migration guide
|
298
|
+
|
299
|
+
- [#1891](https://github.com/primer/view_components/pull/1891) [`5f48d6f8`](https://github.com/primer/view_components/commit/5f48d6f83d0aa5b82ca3a764161cfafae9de8fe5) Thanks [@camertron](https://github.com/camertron)! - Associate title with dialog
|
300
|
+
|
301
|
+
* [#1889](https://github.com/primer/view_components/pull/1889) [`dd1d382d`](https://github.com/primer/view_components/commit/dd1d382d52abaff1edadb64cd4eef89515c17184) Thanks [@langermank](https://github.com/langermank)! - Bug fix: ActionList `danger` variant hover/active contrast
|
302
|
+
|
303
|
+
## 0.1.2
|
304
|
+
|
305
|
+
### Patch Changes
|
306
|
+
|
307
|
+
- [#1880](https://github.com/primer/view_components/pull/1880) [`7a160a4c`](https://github.com/primer/view_components/commit/7a160a4c6db18687fdc5ebebbe5dc9ab0926443a) Thanks [@camertron](https://github.com/camertron)! - Allow consumers to set ActionList item content's tag
|
308
|
+
|
309
|
+
* [#1869](https://github.com/primer/view_components/pull/1869) [`53b99f6a`](https://github.com/primer/view_components/commit/53b99f6ae1c7fdfb4b929d6f60215aacedbcdfc7) Thanks [@keithamus](https://github.com/keithamus)! - Make Overlay headings optional
|
310
|
+
|
311
|
+
- [#1873](https://github.com/primer/view_components/pull/1873) [`125861b8`](https://github.com/primer/view_components/commit/125861b8cbff95db90126f8c0aa297b9a0bb4ade) Thanks [@camertron](https://github.com/camertron)! - Remove ability to show trailing action buttons in ActionList and NavList on hover
|
312
|
+
|
313
|
+
* [#1875](https://github.com/primer/view_components/pull/1875) [`8bbeb72a`](https://github.com/primer/view_components/commit/8bbeb72a5ef60917265b93791cd20ab99045540e) Thanks [@camertron](https://github.com/camertron)! - Allow ActionList dividers to be added manually
|
314
|
+
|
315
|
+
- [#1871](https://github.com/primer/view_components/pull/1871) [`6b1170ae`](https://github.com/primer/view_components/commit/6b1170aef5b5f703e239881bdd0717c6e4c1a973) Thanks [@camertron](https://github.com/camertron)! - Deny tag argument for ActionList headings
|
316
|
+
|
317
|
+
* [#1876](https://github.com/primer/view_components/pull/1876) [`b3b94e98`](https://github.com/primer/view_components/commit/b3b94e989f51fcc776cf312208bd4dcadde31161) Thanks [@antn](https://github.com/antn)! - Upgrade octicons to >= 18.0.0
|
318
|
+
|
319
|
+
- [#1877](https://github.com/primer/view_components/pull/1877) [`864fb98f`](https://github.com/primer/view_components/commit/864fb98fd38af79490b326caf3a0fe325ffb3066) Thanks [@hrs](https://github.com/hrs)! - Deprecate Primer::Truncate in favor of Primer::Beta::Truncate, and adding a migration guide
|
320
|
+
|
321
|
+
* [#1878](https://github.com/primer/view_components/pull/1878) [`9c211ce2`](https://github.com/primer/view_components/commit/9c211ce222e774acef11d1d438adfdc6251ce5ac) Thanks [@camertron](https://github.com/camertron)! - Attach behavior to TextField's clear button
|
322
|
+
|
323
|
+
## 0.1.1
|
324
|
+
|
325
|
+
### Patch Changes
|
326
|
+
|
327
|
+
- [#1864](https://github.com/primer/view_components/pull/1864) [`1476b869`](https://github.com/primer/view_components/commit/1476b869db27a6ed50b7e8d83db6ef475efb31de) Thanks [@simurai](https://github.com/simurai)! - Fix underline of UnderlineNav being cut off when followed by a flash banner
|
328
|
+
|
329
|
+
* [#1865](https://github.com/primer/view_components/pull/1865) [`df8dcced`](https://github.com/primer/view_components/commit/df8dcceda484c2582f9085e11e5678c1f0bd446d) Thanks [@keithamus](https://github.com/keithamus)! - Add aria attributes to Overlay show_button
|
330
|
+
|
331
|
+
- [#1865](https://github.com/primer/view_components/pull/1865) [`df8dcced`](https://github.com/primer/view_components/commit/df8dcceda484c2582f9085e11e5678c1f0bd446d) Thanks [@keithamus](https://github.com/keithamus)! - Allow for IconButtons in overlay show_button
|
332
|
+
|
333
|
+
* [#1867](https://github.com/primer/view_components/pull/1867) [`c6bfce04`](https://github.com/primer/view_components/commit/c6bfce043a9cf197a7b212e96bc0178bc5310246) Thanks [@jonrohan](https://github.com/jonrohan)! - Fixing TabNav double render of extra content
|
334
|
+
|
335
|
+
- [#1828](https://github.com/primer/view_components/pull/1828) [`4e6201d4`](https://github.com/primer/view_components/commit/4e6201d4307f923f24a2fd04b6bb30ddb1cf5337) Thanks [@camertron](https://github.com/camertron)! - Address accessibility issues in NavList and ActionList
|
336
|
+
|
337
|
+
* [#1730](https://github.com/primer/view_components/pull/1730) [`8c77e133`](https://github.com/primer/view_components/commit/8c77e133ba2507e6dd70d0666ea78b50a57d4144) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move Primer::Navigation::TabComponent to Primer::Alpha::Navigation::Tab
|
338
|
+
|
339
|
+
- [#1850](https://github.com/primer/view_components/pull/1850) [`a909eae0`](https://github.com/primer/view_components/commit/a909eae016c1716387799c76a00019b5a03cc25c) Thanks [@mayamessinger](https://github.com/mayamessinger)! - Fix beta button tooltip compatibility with display :block
|
340
|
+
|
341
|
+
* [#1847](https://github.com/primer/view_components/pull/1847) [`16b16264`](https://github.com/primer/view_components/commit/16b162646fb51422d6604addbd27cb6bf0978106) Thanks [@keithamus](https://github.com/keithamus)! - Remove animation from Overlay component
|
342
|
+
|
343
|
+
## 0.1.0
|
344
|
+
|
345
|
+
### Minor Changes
|
346
|
+
|
347
|
+
- [#1401](https://github.com/primer/view_components/pull/1401) [`f824d1d0`](https://github.com/primer/view_components/commit/f824d1d0e8337ef34eef6af2419bd9ecc8537fe3) Thanks [@keithamus](https://github.com/keithamus)! - Add Overlay component
|
348
|
+
|
349
|
+
### Patch Changes
|
350
|
+
|
351
|
+
- [#1844](https://github.com/primer/view_components/pull/1844) [`15869d48`](https://github.com/primer/view_components/commit/15869d48ad3b22151ef97290fb0f1c8cf8dc6c6f) Thanks [@camertron](https://github.com/camertron)! - Remove extra space between flash icon and message
|
352
|
+
|
353
|
+
* [#1840](https://github.com/primer/view_components/pull/1840) [`04b75c70`](https://github.com/primer/view_components/commit/04b75c70e4b42a82e4a4ce31a976bfd1e5c6e9fa) Thanks [@camertron](https://github.com/camertron)! - Fix issue causing NavList parents to appear selected
|
354
|
+
|
355
|
+
- [#1845](https://github.com/primer/view_components/pull/1845) [`98792bdd`](https://github.com/primer/view_components/commit/98792bdd47c8f0ac50ef839ab5e5948984d66c3b) Thanks [@camertron](https://github.com/camertron)! - Use system arguments instead of utility classes for NavList's "show more" item
|
356
|
+
|
357
|
+
* [#1823](https://github.com/primer/view_components/pull/1823) [`5eadffd3`](https://github.com/primer/view_components/commit/5eadffd354891a3befb3b9152a16ba0a7c375aec) Thanks [@neall](https://github.com/neall)! - Add general reserved-class-checking linter
|
358
|
+
|
359
|
+
## 0.0.123
|
360
|
+
|
361
|
+
### Patch Changes
|
362
|
+
|
363
|
+
- [#1835](https://github.com/primer/view_components/pull/1835) [`498191b4`](https://github.com/primer/view_components/commit/498191b437a30abd15d3ca3996d26bfcfe73a717) Thanks [@camertron](https://github.com/camertron)! - Fix conditional inclusion of polymorphic slots module
|
364
|
+
|
365
|
+
* [#1822](https://github.com/primer/view_components/pull/1822) [`ad56ddef`](https://github.com/primer/view_components/commit/ad56ddef07b2a4e45ca17f0838e5c211840f5873) Thanks [@camertron](https://github.com/camertron)! - Allow NavList selection/deselection by id/href in javascript
|
366
|
+
|
367
|
+
## 0.0.122
|
368
|
+
|
369
|
+
### Patch Changes
|
370
|
+
|
371
|
+
- [#1818](https://github.com/primer/view_components/pull/1818) [`c8fa002f`](https://github.com/primer/view_components/commit/c8fa002f807c508c86cd387512e3e81ef01b1db3) Thanks [@camertron](https://github.com/camertron)! - Fix issue in TabPanels causing extra content to render twice
|
372
|
+
|
373
|
+
* [#1824](https://github.com/primer/view_components/pull/1824) [`2a234537`](https://github.com/primer/view_components/commit/2a2345372113dc23df1507fdcd6c588351cc3fd7) Thanks [@langermank](https://github.com/langermank)! - ToggleSwitch and SegmentedControl visual updates + Primitives (PCSS) version bump
|
374
|
+
|
375
|
+
- [#1595](https://github.com/primer/view_components/pull/1595) [`f31bf3f9`](https://github.com/primer/view_components/commit/f31bf3f95a03efb4931a421b7d49df7aa22b6ea7) Thanks [@soberstadt](https://github.com/soberstadt)! - Change engine to mount on ActionController::Base
|
376
|
+
|
377
|
+
* [#1832](https://github.com/primer/view_components/pull/1832) [`557ec8ba`](https://github.com/primer/view_components/commit/557ec8bad66e32a6a5183a9b6496d5910658de41) Thanks [@joelhawksley](https://github.com/joelhawksley)! - support ViewComponent v3.0.0.rc2
|
378
|
+
|
379
|
+
- [#1821](https://github.com/primer/view_components/pull/1821) [`c12ae8c5`](https://github.com/primer/view_components/commit/c12ae8c5dbe9fd0b8c723cac297139976fa28552) Thanks [@camertron](https://github.com/camertron)! - Add a standalone FormControl component
|
380
|
+
|
381
|
+
* [#1814](https://github.com/primer/view_components/pull/1814) [`8090cda2`](https://github.com/primer/view_components/commit/8090cda2a389a99e100ecea979d40602a3d52ae6) Thanks [@camertron](https://github.com/camertron)! - Expose additional form components
|
382
|
+
|
383
|
+
- [#1827](https://github.com/primer/view_components/pull/1827) [`c0545a65`](https://github.com/primer/view_components/commit/c0545a659855c3c6ec20f5e9faf680b2e7a9cc52) Thanks [@joelhawksley](https://github.com/joelhawksley)! - use lookbook 1.5.2
|
384
|
+
|
385
|
+
* [#1833](https://github.com/primer/view_components/pull/1833) [`a90e1554`](https://github.com/primer/view_components/commit/a90e155475819bb5f82b0947916b46ada4ea1633) Thanks [@camertron](https://github.com/camertron)! - Fix regression causing check boxes to always render enabled
|
386
|
+
|
387
|
+
## 0.0.121
|
388
|
+
|
389
|
+
### Patch Changes
|
390
|
+
|
391
|
+
- [#1791](https://github.com/primer/view_components/pull/1791) [`b68cf7f7`](https://github.com/primer/view_components/commit/b68cf7f7d74379765cd373a5ea060204e3cf7db2) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::LocalTime component
|
392
|
+
|
393
|
+
* [#1808](https://github.com/primer/view_components/pull/1808) [`31544417`](https://github.com/primer/view_components/commit/31544417010274b4f8b3b6574587b917a0bbf0e4) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Rename URLHelpers to UrlHelpers to fix console error.
|
394
|
+
|
395
|
+
- [#1788](https://github.com/primer/view_components/pull/1788) [`7ad70066`](https://github.com/primer/view_components/commit/7ad7006651dc4dbbd21f444ad10ee1fdb5c3eeba) Thanks [@camertron](https://github.com/camertron)! - Document TextField's auto_check_src argument
|
396
|
+
|
397
|
+
* [#1784](https://github.com/primer/view_components/pull/1784) [`3b830167`](https://github.com/primer/view_components/commit/3b8301674ccd74e7ae31826a766883a0612a3960) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove unused deprecated component wrappers
|
398
|
+
|
399
|
+
- "Primer::Dropdown::Menu::Item"
|
400
|
+
- "Primer::Dropdown::Menu"
|
401
|
+
- "Primer::Dropdown"
|
402
|
+
- "Primer::HellipButton"
|
403
|
+
- "Primer::LabelComponent"
|
404
|
+
- "Primer::LinkComponent"
|
405
|
+
- "Primer::Markdown"
|
406
|
+
- "Primer::MenuComponent"
|
407
|
+
- "Primer::OcticonComponent"
|
408
|
+
- "Primer::OcticonSymbolsComponent"
|
409
|
+
- "Primer::PopoverComponent"
|
410
|
+
- "Primer::SpinnerComponent"
|
411
|
+
- "Primer::StateComponent"
|
412
|
+
- "Primer::SubheadComponent"
|
413
|
+
- "Primer::TabContainerComponent"
|
414
|
+
- "Primer::TimelineItemComponent::BadgeComponent"
|
415
|
+
- "Primer::TimelineItemComponent"
|
416
|
+
|
417
|
+
- [#1787](https://github.com/primer/view_components/pull/1787) [`972dd7bd`](https://github.com/primer/view_components/commit/972dd7bd92e79b2e8b54555f91770c4c1b280709) Thanks [@neall](https://github.com/neall)! - Allow toggle-switch forms to use caption templates.
|
418
|
+
|
419
|
+
* [#1792](https://github.com/primer/view_components/pull/1792) [`730b0a8d`](https://github.com/primer/view_components/commit/730b0a8d70a9e5bc42856c3f30779ebf0d2b9ac9) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::TimeAgoComponent
|
420
|
+
|
421
|
+
- [#1776](https://github.com/primer/view_components/pull/1776) [`61b28872`](https://github.com/primer/view_components/commit/61b288721a0315bcad4694615c9b34ddad5d10b7) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding aria labeled by and described by check to SegmentedControl component. Marking as accessibility reviewed
|
422
|
+
|
423
|
+
* [#1805](https://github.com/primer/view_components/pull/1805) [`238328a7`](https://github.com/primer/view_components/commit/238328a734cff1322d18c129d340bb5a254bc272) Thanks [@paulcsmith](https://github.com/paulcsmith)! - Update CloseButton to work with more aria-label types
|
424
|
+
|
425
|
+
## 0.0.120
|
426
|
+
|
427
|
+
### Patch Changes
|
428
|
+
|
429
|
+
- [#1772](https://github.com/primer/view_components/pull/1772) [`9dfec861`](https://github.com/primer/view_components/commit/9dfec861e67aa90a392a0047ae7a06bdbcd1d437) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated Primer::ClipboardCopy component and clipboard_copy.rb file
|
430
|
+
|
431
|
+
* [#1771](https://github.com/primer/view_components/pull/1771) [`0541d18c`](https://github.com/primer/view_components/commit/0541d18c9d76155f5aea3e72420884b97c0ac3b9) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated box_component.rb file `Primer::BoxComponent`
|
432
|
+
|
433
|
+
- [#1782](https://github.com/primer/view_components/pull/1782) [`809d8d32`](https://github.com/primer/view_components/commit/809d8d3226ba62ce1040e5d9d5feacdbff1654f9) Thanks [@jdennes](https://github.com/jdennes)! - Prefer Primer::Beta::Button in ERBLint::Linters::ButtonComponentMigrationCounter
|
434
|
+
|
435
|
+
* [#1783](https://github.com/primer/view_components/pull/1783) [`7337d5ef`](https://github.com/primer/view_components/commit/7337d5ef691c07288d42ba14bf2ac30a2eb11737) Thanks [@langermank](https://github.com/langermank)! - Remove the deprecated `Primer::DropdownMenuComponent`.
|
436
|
+
|
437
|
+
- [#1768](https://github.com/primer/view_components/pull/1768) [`fe8e7071`](https://github.com/primer/view_components/commit/fe8e7071d90aa6bc8fe838fb75af384466f31bfa) Thanks [@jdennes](https://github.com/jdennes)! - Add RuboCop::Cop::Primer::TestSelector to encourage use of the test_selector argument
|
438
|
+
|
439
|
+
* [#1780](https://github.com/primer/view_components/pull/1780) [`49d27b22`](https://github.com/primer/view_components/commit/49d27b22724deeb68b8e017306c97808813e3ee3) Thanks [@langermank](https://github.com/langermank)! - Bug fix: Adjust the body tag padding-right when an overlay is open to avoid page shift
|
440
|
+
|
441
|
+
- [#1767](https://github.com/primer/view_components/pull/1767) [`cf28f5e4`](https://github.com/primer/view_components/commit/cf28f5e4179b73fe9307a944fdba52fc8e86449e) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Use ViewComponent 3.0.0.rc1
|
442
|
+
|
443
|
+
* [#1770](https://github.com/primer/view_components/pull/1770) [`b8b0308d`](https://github.com/primer/view_components/commit/b8b0308d9c12c98cc491cc2b9db905a3f0bb1073) Thanks [@tomthorogood](https://github.com/tomthorogood)! - Fix incorrect typography descriptions
|
444
|
+
|
445
|
+
- [#1781](https://github.com/primer/view_components/pull/1781) [`716abfb1`](https://github.com/primer/view_components/commit/716abfb1ddb026790c8d26f6d88f5de472946d3e) Thanks [@jdennes](https://github.com/jdennes)! - Correct contributing guidelines
|
446
|
+
|
447
|
+
## 0.0.119
|
448
|
+
|
449
|
+
### Patch Changes
|
450
|
+
|
451
|
+
- [#1763](https://github.com/primer/view_components/pull/1763) [`a2c5b4c9`](https://github.com/primer/view_components/commit/a2c5b4c9f73554a401a58902da1b4d247a6408b8) Thanks [@neall](https://github.com/neall)! - Standardize how we generate ids for HTML
|
452
|
+
|
453
|
+
* [#1588](https://github.com/primer/view_components/pull/1588) [`e389a554`](https://github.com/primer/view_components/commit/e389a554a05ec3dd12dbf139b2158caa81ee904b) Thanks [@koddsson](https://github.com/koddsson)! - Update `axe-core` scanning in system tests
|
454
|
+
|
455
|
+
- [#1760](https://github.com/primer/view_components/pull/1760) [`fdd7bc1e`](https://github.com/primer/view_components/commit/fdd7bc1ea3309a649586a04b3a10eeef5e1d0650) Thanks [@camertron](https://github.com/camertron)! - Show error messages when toggle switches fail
|
456
|
+
|
457
|
+
## 0.0.118
|
458
|
+
|
459
|
+
### Patch Changes
|
460
|
+
|
461
|
+
- [#1757](https://github.com/primer/view_components/pull/1757) [`9bc35cce`](https://github.com/primer/view_components/commit/9bc35cceff429a7fa347d3957afe7ea27eed2b19) Thanks [@camertron](https://github.com/camertron)! - Bump view_component to v2.81.0 to fix issue with Rails main
|
462
|
+
|
463
|
+
* [#1753](https://github.com/primer/view_components/pull/1753) [`95df035a`](https://github.com/primer/view_components/commit/95df035a61edbf2bf43a55570b63a8646a216b02) Thanks [@keithamus](https://github.com/keithamus)! - Update `with_show_button` slot to use `Primer::Beta::Button` instead of `Primer::ButtonComponent`.
|
464
|
+
|
465
|
+
- [#1736](https://github.com/primer/view_components/pull/1736) [`927a52c3`](https://github.com/primer/view_components/commit/927a52c3e83f4eb48e8c37fdbf6c377957eedc03) Thanks [@dependabot](https://github.com/apps/dependabot)! - Add format_style to RelativeTime component
|
466
|
+
|
467
|
+
* [#1728](https://github.com/primer/view_components/pull/1728) [`1c9981f4`](https://github.com/primer/view_components/commit/1c9981f48ae9113049ec55306b6fd3fd287d1cbc) Thanks [@langermank](https://github.com/langermank)! - Use a button tag for ActionList::Items
|
468
|
+
|
469
|
+
- [#1750](https://github.com/primer/view_components/pull/1750) [`64343de4`](https://github.com/primer/view_components/commit/64343de4323fc56ff5270d3809be3142795077cf) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding `:auto` to size option to Dialog component
|
470
|
+
|
471
|
+
* [#1756](https://github.com/primer/view_components/pull/1756) [`280972cb`](https://github.com/primer/view_components/commit/280972cbc38250971b071914cfaeb22e473b7c6a) Thanks [@langermank](https://github.com/langermank)! - Fix media query typo in Button
|
472
|
+
|
473
|
+
- [#1754](https://github.com/primer/view_components/pull/1754) [`d662c1c7`](https://github.com/primer/view_components/commit/d662c1c77f70cd27c5b894af0231a9de43938f2f) Thanks [@keithamus](https://github.com/keithamus)! - Fix bug where clicking inside dialog, but finishing click outside, dismisses dialog
|
474
|
+
|
475
|
+
## 0.0.117
|
476
|
+
|
477
|
+
### Patch Changes
|
478
|
+
|
479
|
+
- [#1719](https://github.com/primer/view_components/pull/1719) [`8e4b37bc`](https://github.com/primer/view_components/commit/8e4b37bc269a1a285ce1bce695691f82827c9bc2) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Fix previews that used old slots API
|
480
|
+
|
481
|
+
* [#1721](https://github.com/primer/view_components/pull/1721) [`3cea518c`](https://github.com/primer/view_components/commit/3cea518c521631ac5e40e857c0eb87d863409a0d) Thanks [@joelhawksley](https://github.com/joelhawksley)! - fix more previews to use new Slots API
|
482
|
+
|
483
|
+
- [#1722](https://github.com/primer/view_components/pull/1722) [`0186096b`](https://github.com/primer/view_components/commit/0186096be9ae6990ed90b1ff04a26d73dabc78a4) Thanks [@simurai](https://github.com/simurai)! - Disable `is()` selector
|
484
|
+
|
485
|
+
* [#1724](https://github.com/primer/view_components/pull/1724) [`3533d8fb`](https://github.com/primer/view_components/commit/3533d8fbc77189656c9c2c85e343c548bc2596cf) Thanks [@simurai](https://github.com/simurai)! - Remove PCSS imports for Docs
|
486
|
+
|
487
|
+
- [#1718](https://github.com/primer/view_components/pull/1718) [`f96b7edd`](https://github.com/primer/view_components/commit/f96b7edd1af06170c4dea3a418630a8bd12bc092) Thanks [@joelhawksley](https://github.com/joelhawksley)! - fix missed Slots API changes
|
488
|
+
|
489
|
+
* [#1716](https://github.com/primer/view_components/pull/1716) [`9a4ad693`](https://github.com/primer/view_components/commit/9a4ad6935ea9d6852ee08c3ff4d7d45e0f07cc78) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::StateComponent` to `Primer::Beta::State` and deprecate the original
|
490
|
+
|
491
|
+
- [#1720](https://github.com/primer/view_components/pull/1720) [`365048a3`](https://github.com/primer/view_components/commit/365048a39af18484ac0eb9ca6985858fb2285b88) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::SubheadComponent` to `Primer::Beta::Subhead` and deprecate the original
|
492
|
+
|
493
|
+
* [#1729](https://github.com/primer/view_components/pull/1729) [`897b3524`](https://github.com/primer/view_components/commit/897b35246c7d8c9a813984eaa101fa0e9368ad63) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Correctly deprecate `Primer::TimelineItemComponent::BadgeComponent` in favor of `Primer::Beta::TimelineItem::Badge`
|
494
|
+
|
495
|
+
- [#1715](https://github.com/primer/view_components/pull/1715) [`34dfc3ab`](https://github.com/primer/view_components/commit/34dfc3abdc66ad15db3449ec1acae4b41be63e28) Thanks [@neall](https://github.com/neall)! - Add Primer::Forms::ToggleSwitchForm
|
496
|
+
|
497
|
+
* [#1713](https://github.com/primer/view_components/pull/1713) [`9b535d89`](https://github.com/primer/view_components/commit/9b535d89962a2cac4fc50d3a43119db3ccad8041) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Use new Slots API in previews.
|
498
|
+
|
499
|
+
- [#1725](https://github.com/primer/view_components/pull/1725) [`f84c7dda`](https://github.com/primer/view_components/commit/f84c7dda2239f4e01b1785db83fe70007df47f89) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::TabContainerComponent` to `Primer::Alpha::TabContainer`
|
500
|
+
|
501
|
+
* [#1717](https://github.com/primer/view_components/pull/1717) [`da56d348`](https://github.com/primer/view_components/commit/da56d34842afc7cbe3abe54de7545faa993abcae) Thanks [@KyFaSt](https://github.com/KyFaSt)! - Make tool_tip Trusted Types compatible
|
502
|
+
|
503
|
+
- [#1699](https://github.com/primer/view_components/pull/1699) [`14498234`](https://github.com/primer/view_components/commit/14498234a2953427a7fffd54c2aff82df594c9a1) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Update component deprecation in CI to report as info instead of errors. Update the deprecation messages to always provide a replacement when possible.
|
504
|
+
|
505
|
+
* [#1726](https://github.com/primer/view_components/pull/1726) [`0b21fb75`](https://github.com/primer/view_components/commit/0b21fb757cabb2f9ddc40cad57b58db6216a2002) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::HellipButton` to `Primer::Alpha::HellipButton`
|
506
|
+
|
507
|
+
- [#1727](https://github.com/primer/view_components/pull/1727) [`97a781a9`](https://github.com/primer/view_components/commit/97a781a9da38aa6c0f5cd8a98a889130d488693a) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move Primer::TimelineItemComponent to Primer::Beta::TimelineItem
|
508
|
+
|
509
|
+
## 0.0.116
|
510
|
+
|
511
|
+
### Patch Changes
|
512
|
+
|
513
|
+
- [#1710](https://github.com/primer/view_components/pull/1710) [`8e3390cd`](https://github.com/primer/view_components/commit/8e3390cd67088e3cc4add0b98331239fc860cd3a) Thanks [@joelhawksley](https://github.com/joelhawksley)! - All components use new `with_*` Slots API.
|
514
|
+
|
515
|
+
* [#1712](https://github.com/primer/view_components/pull/1712) [`1568f7f9`](https://github.com/primer/view_components/commit/1568f7f99735baab0ab59d79a10675dda7c1ba1a) Thanks [@simurai](https://github.com/simurai)! - Improve `Counter` colors when nested in `Button`
|
516
|
+
|
517
|
+
- [#1711](https://github.com/primer/view_components/pull/1711) [`b39dd62c`](https://github.com/primer/view_components/commit/b39dd62c37d8311e2374e39e056fb94c3cb1c4a5) Thanks [@camertron](https://github.com/camertron)! - Add option for controlling when form fields should be nested under their parent
|
518
|
+
|
519
|
+
* [#1704](https://github.com/primer/view_components/pull/1704) [`f54ee3f7`](https://github.com/primer/view_components/commit/f54ee3f7a5cf13efafee6e0b6980f8607ced38dd) Thanks [@camertron](https://github.com/camertron)! - Add option to skip adding model scope to form inputs
|
520
|
+
|
521
|
+
- [#1586](https://github.com/primer/view_components/pull/1586) [`bf704000`](https://github.com/primer/view_components/commit/bf70400033f6d0aa4c57020f37ba8ccd51e9ef7a) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating touch targets on SegmentedControl
|
522
|
+
|
523
|
+
* [#1703](https://github.com/primer/view_components/pull/1703) [`8103ec36`](https://github.com/primer/view_components/commit/8103ec36c27bf31fdb073010a02556f9e57d7838) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Beta components use new `with_*` Slots API.
|
524
|
+
|
525
|
+
## 0.0.115
|
526
|
+
|
527
|
+
### Patch Changes
|
528
|
+
|
529
|
+
- [#1670](https://github.com/primer/view_components/pull/1670) [`217db072`](https://github.com/primer/view_components/commit/217db07287d7383155051eba8c496d9a9636c54c) Thanks [@simurai](https://github.com/simurai)! - Move `Layout` styles to PVC
|
530
|
+
|
531
|
+
* [#1667](https://github.com/primer/view_components/pull/1667) [`ee7f476d`](https://github.com/primer/view_components/commit/ee7f476dd13b58e1c38538950780493b97142c8b) Thanks [@camertron](https://github.com/camertron)! - Make multi input a form control
|
532
|
+
|
533
|
+
- [#1672](https://github.com/primer/view_components/pull/1672) [`1a7daddb`](https://github.com/primer/view_components/commit/1a7daddb62cfb01825f09a9edb5310c0d9e44e07) Thanks [@neall](https://github.com/neall)! - Add auto_check_src option to forms framework text fields to run server-side validation on field change
|
534
|
+
|
535
|
+
* [#1698](https://github.com/primer/view_components/pull/1698) [`29a5415e`](https://github.com/primer/view_components/commit/29a5415ecb6810d79abd135a32e9d63076c7a8c1) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::SpinnerComponent` to `Primer::Beta::Spinner`
|
536
|
+
|
537
|
+
- [#1697](https://github.com/primer/view_components/pull/1697) [`4ff75a58`](https://github.com/primer/view_components/commit/4ff75a58b5daa94c9e24fc0cf2723a5a6750f4fe) Thanks [@joelhawksley](https://github.com/joelhawksley)! - ActionList, Alpha::AutoComplete, Banner, and Alpha::Dialog use new "with\_\*" Slots API.
|
538
|
+
|
539
|
+
* [#1696](https://github.com/primer/view_components/pull/1696) [`d709bae1`](https://github.com/primer/view_components/commit/d709bae13ad0ff907b20b0471cbcb847daf3724a) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Moving `Primer::OcticonSymbolsComponent` to `Primer::Alpha::OcticonSymbols`, and deprecating the original
|
540
|
+
|
541
|
+
- [#1694](https://github.com/primer/view_components/pull/1694) [`b1fc5dfd`](https://github.com/primer/view_components/commit/b1fc5dfd591c4ebcb16469003c5aff4eb115b485) Thanks [@camertron](https://github.com/camertron)! - Fix sass variable in layout.pcss
|
542
|
+
|
543
|
+
* [#1687](https://github.com/primer/view_components/pull/1687) [`a5b6f02e`](https://github.com/primer/view_components/commit/a5b6f02e32e6fa05005a57cc82a0682b5bcd2351) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Deprecate Primer::LocalTime in favor of Primer::RelativeTime
|
544
|
+
|
545
|
+
- [#1692](https://github.com/primer/view_components/pull/1692) [`f50c77fe`](https://github.com/primer/view_components/commit/f50c77fe215240a70d9355180fdddf17a2daae24) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Deprecating Primer::TimeAgo in favor of Primer::RelativeTime, and adding a migration guide
|
546
|
+
|
547
|
+
* [#1690](https://github.com/primer/view_components/pull/1690) [`c1845c65`](https://github.com/primer/view_components/commit/c1845c65c3d7aaae3abb31f9846279783734974e) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Move `Primer::Beta::Octicon` to `Primer::Beta::Octicon` and deprecate the original
|
548
|
+
|
549
|
+
- [#1688](https://github.com/primer/view_components/pull/1688) [`988077aa`](https://github.com/primer/view_components/commit/988077aae27c11fc270e1e9302498b2d2cd1113c) Thanks [@manuelpuyol](https://github.com/manuelpuyol)! - Fix tooltips not adding aria attributes when Turbo navigating
|
550
|
+
|
551
|
+
* [#1691](https://github.com/primer/view_components/pull/1691) [`ab416be9`](https://github.com/primer/view_components/commit/ab416be957c4c48f0073c2d8a1c1218ea7f9c3d5) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Start migration to new slots API. You may see warnings for using the non-`with_` slot setter API.
|
552
|
+
|
553
|
+
- [#1682](https://github.com/primer/view_components/pull/1682) [`e5144a38`](https://github.com/primer/view_components/commit/e5144a3867ee10a37c8662a27d2cb85711aae8ad) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Moving `Primer::MenuComponent` to `Primer::Alpha::Menu` and deprecating the original
|
554
|
+
|
555
|
+
* [#1693](https://github.com/primer/view_components/pull/1693) [`219f5ef4`](https://github.com/primer/view_components/commit/219f5ef4844523f388843b612f23909484cb881a) Thanks [@camertron](https://github.com/camertron)! - Use URL helpers in previews that interact with the server-side
|
556
|
+
|
557
|
+
- [#1701](https://github.com/primer/view_components/pull/1701) [`2c73c2f7`](https://github.com/primer/view_components/commit/2c73c2f7fbfa142da67e5c1044bc1c2cdfa50891) Thanks [@camertron](https://github.com/camertron)! - Properly scope Lookbook routes
|
558
|
+
|
559
|
+
* [#1695](https://github.com/primer/view_components/pull/1695) [`7a881bf5`](https://github.com/primer/view_components/commit/7a881bf5a50720bc630c66a903256445aeb14a3e) Thanks [@simurai](https://github.com/simurai)! - Remove `forms.css` import for Lookbook
|
560
|
+
|
561
|
+
## 0.0.114
|
562
|
+
|
563
|
+
### Patch Changes
|
564
|
+
|
565
|
+
- [#1685](https://github.com/primer/view_components/pull/1685) [`5f062fed`](https://github.com/primer/view_components/commit/5f062fed16980bd1ec437636eef1851dfea56388) Thanks [@simurai](https://github.com/simurai)! - Revert moving `button` styles to PVC
|
566
|
+
|
567
|
+
* [#1681](https://github.com/primer/view_components/pull/1681) [`0c9611f5`](https://github.com/primer/view_components/commit/0c9611f5a08c78452be999c08d9f24703b5bd671) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Moving Primer::Markdown to Primer::Beta::Markdown, and deprecating the original
|
568
|
+
|
569
|
+
## 0.0.113
|
570
|
+
|
571
|
+
### Patch Changes
|
572
|
+
|
573
|
+
- [#1650](https://github.com/primer/view_components/pull/1650) [`2941ba2b`](https://github.com/primer/view_components/commit/2941ba2b9f98cb62f315e6b6ff90913e854da67d) Thanks [@keithamus](https://github.com/keithamus)! - Add RelativeTime component
|
574
|
+
|
575
|
+
* [#1665](https://github.com/primer/view_components/pull/1665) [`f9759ff0`](https://github.com/primer/view_components/commit/f9759ff0e4c2d33990a4b1cc22f5341239324b3d) Thanks [@camertron](https://github.com/camertron)! - Add a button input to the forms framework
|
576
|
+
|
577
|
+
- [#1636](https://github.com/primer/view_components/pull/1636) [`0af266a7`](https://github.com/primer/view_components/commit/0af266a7d6a75e351b35b620043f545dcaa8d03f) Thanks [@simurai](https://github.com/simurai)! - Remove `ActionListItem` animation
|
578
|
+
|
579
|
+
* [#1638](https://github.com/primer/view_components/pull/1638) [`5c421277`](https://github.com/primer/view_components/commit/5c4212777189c62c420f4e756cccef7c48a356fd) Thanks [@simurai](https://github.com/simurai)! - Move `FormControl` styles to PVC
|
580
|
+
|
581
|
+
- [#1664](https://github.com/primer/view_components/pull/1664) [`d56dfa60`](https://github.com/primer/view_components/commit/d56dfa606019b4951783ac2d581b74b5234a8d6c) Thanks [@camertron](https://github.com/camertron)! - Allow form inputs to be hidden
|
582
|
+
|
583
|
+
* [#1630](https://github.com/primer/view_components/pull/1630) [`e744c14f`](https://github.com/primer/view_components/commit/e744c14f72de7052fa52e14776675924e04ff269) Thanks [@simurai](https://github.com/simurai)! - Move `button` styles to PVC
|
584
|
+
|
585
|
+
- [#1666](https://github.com/primer/view_components/pull/1666) [`5a7c5320`](https://github.com/primer/view_components/commit/5a7c532075a5208e5aad9d801d79b2ce7e9a1c19) Thanks [@camertron](https://github.com/camertron)! - Add the primer_fields_for helper
|
586
|
+
|
587
|
+
* [#1671](https://github.com/primer/view_components/pull/1671) [`e0be2776`](https://github.com/primer/view_components/commit/e0be2776d46c390cbfc0a3fcfa278b3b5874f428) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Add a migration guide for moving from Primer::DropdownMenuComponent to Primer::Beta::Dropdown
|
588
|
+
|
589
|
+
- [#1635](https://github.com/primer/view_components/pull/1635) [`653ac92b`](https://github.com/primer/view_components/commit/653ac92b2db6853715221a579913839631db4fd6) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Converting deprecations list to a .yml file, and updating all code around deprecations to use this new structure
|
590
|
+
|
591
|
+
* [#1668](https://github.com/primer/view_components/pull/1668) [`84cd95ed`](https://github.com/primer/view_components/commit/84cd95ed641444a8acd602acd00389ce65173460) Thanks [@camertron](https://github.com/camertron)! - Allow form components and entire forms to skip rendering
|
592
|
+
|
593
|
+
- [#1643](https://github.com/primer/view_components/pull/1643) [`7e20e148`](https://github.com/primer/view_components/commit/7e20e1483caf000800c67e0a465b8f45587655cf) Thanks [@camertron](https://github.com/camertron)! - Fix disabled ToggleSwitch behavior
|
594
|
+
|
595
|
+
* [#1673](https://github.com/primer/view_components/pull/1673) [`7a26cbb6`](https://github.com/primer/view_components/commit/7a26cbb69b090d017f753d9f6a190ed197ad5563) Thanks [@camertron](https://github.com/camertron)! - Ensure nested forms can be hidden independently of their radio button or check box
|
596
|
+
|
597
|
+
- [#1651](https://github.com/primer/view_components/pull/1651) [`7e430ac1`](https://github.com/primer/view_components/commit/7e430ac18af9ec49396f89383cebfa976e69e059) Thanks [@simurai](https://github.com/simurai)! - Move `Overlay` styles to PVC
|
598
|
+
|
599
|
+
* [#1674](https://github.com/primer/view_components/pull/1674) [`a6c5bb52`](https://github.com/primer/view_components/commit/a6c5bb52bd3c941133bfedf05c0e107e6d7f1fbd) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Moving `Primer::ClipboardCopy` to `Primer::Beta::ClipboardCopy`, and deprecating the original
|
600
|
+
|
601
|
+
- [#1663](https://github.com/primer/view_components/pull/1663) [`15392142`](https://github.com/primer/view_components/commit/1539214202031b7646f2a709bf333283603a76e3) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Adding a migration guide and updating deprecation settings for Primer::ButtonComponent -> Primer::Beta::Button
|
602
|
+
|
603
|
+
* [#1662](https://github.com/primer/view_components/pull/1662) [`d2b33606`](https://github.com/primer/view_components/commit/d2b336065aacbe3dab3d67d9a53f3122a0dc31db) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding `Primer::ViewComponents::AUDITED` variable to access when a component was last audited. Get's data from the `static/audited_at.json` file.
|
604
|
+
|
605
|
+
- [#1639](https://github.com/primer/view_components/pull/1639) [`ddc30dd5`](https://github.com/primer/view_components/commit/ddc30dd5fa485966ead559d6de204df86c6aeddb) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Adding "guide" to PVC deprecation configuration, and providing a much more detailed deprecation notice based on configuration for each component
|
606
|
+
|
607
|
+
## 0.0.112
|
608
|
+
|
609
|
+
### Patch Changes
|
610
|
+
|
611
|
+
- [#1624](https://github.com/primer/view_components/pull/1624) [`61c8a7d6`](https://github.com/primer/view_components/commit/61c8a7d606f00eaf4e1b4c16f10306282ac034e0) Thanks [@jonrohan](https://github.com/jonrohan)! - Deleting deprecated Primer::Image component
|
612
|
+
|
613
|
+
* [#1620](https://github.com/primer/view_components/pull/1620) [`4898307e`](https://github.com/primer/view_components/commit/4898307eee7430555ef1e78fdfd1d3204c66823b) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - adding css source for Marketing Button and Link, from Primer CSS
|
614
|
+
|
615
|
+
- [#1626](https://github.com/primer/view_components/pull/1626) [`be3d92aa`](https://github.com/primer/view_components/commit/be3d92aaf1d6f656cc640a09168075279facfca3) Thanks [@simurai](https://github.com/simurai)! - Move `navigation` styles to PVC
|
616
|
+
|
617
|
+
* [#1617](https://github.com/primer/view_components/pull/1617) [`9322db97`](https://github.com/primer/view_components/commit/9322db976c7c29374faf7be3d4b4e1d0a12d42cf) Thanks [@simurai](https://github.com/simurai)! - Update `dropdown` hover text color
|
618
|
+
|
619
|
+
- [#1632](https://github.com/primer/view_components/pull/1632) [`7f1181be`](https://github.com/primer/view_components/commit/7f1181be49960337254db834e9b2b9a5fdb7b0b8) Thanks [@camertron](https://github.com/camertron)! - Improve performance of the deny\_\* methods
|
620
|
+
|
621
|
+
* [#1625](https://github.com/primer/view_components/pull/1625) [`3af9bf5e`](https://github.com/primer/view_components/commit/3af9bf5e778bb1fe475ed7efda9fc1a5ed36d695) Thanks [@jonrohan](https://github.com/jonrohan)! - Deprecate components and moving to new namespace:
|
622
|
+
|
623
|
+
- Primer::Dropdown moving to Primer::Alpha::Dropdown
|
624
|
+
- Primer::Dropdown::Menu moving to Primer::Alpha::Dropdown::Menu
|
625
|
+
- Primer::Dropdown::Menu::Item moving to Primer::Alpha::Dropdown::Menu::Item
|
626
|
+
|
627
|
+
- [#1618](https://github.com/primer/view_components/pull/1618) [`72f8c3a9`](https://github.com/primer/view_components/commit/72f8c3a989e23135b56e347a0be8e2be4dbb253e) Thanks [@simurai](https://github.com/simurai)! - Move`Box` styles to PVC
|
628
|
+
|
629
|
+
* [#1629](https://github.com/primer/view_components/pull/1629) [`a7527531`](https://github.com/primer/view_components/commit/a7527531d01d0af4a08d002bb3024bca1828d40a) Thanks [@jonrohan](https://github.com/jonrohan)! - Deprecate Primer::PopoverComponent moving to Primer::Beta::Popover
|
630
|
+
|
631
|
+
- [#1634](https://github.com/primer/view_components/pull/1634) [`cdc13a18`](https://github.com/primer/view_components/commit/cdc13a18d406e9b0b2dd3bb4ba7b058c72052b84) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - Adding a custom erblint schema to allow `severity` in linter configuration
|
632
|
+
|
633
|
+
* [#1609](https://github.com/primer/view_components/pull/1609) [`c4408661`](https://github.com/primer/view_components/commit/c44086611439e93d7214068dd332f37308b7c24f) Thanks [@simurai](https://github.com/simurai)! - Move `autocomplete` styles to PVC
|
634
|
+
|
635
|
+
- [#1623](https://github.com/primer/view_components/pull/1623) [`7643e514`](https://github.com/primer/view_components/commit/7643e51449abe73a71453c1d2f46a69e8661a963) Thanks [@jonrohan](https://github.com/jonrohan)! - Deleting deprecated Primer::ProgressBarComponent in favor of Primer::Beta::ProgressBar
|
636
|
+
|
637
|
+
## 0.0.111
|
638
|
+
|
639
|
+
### Patch Changes
|
640
|
+
|
641
|
+
- [#1599](https://github.com/primer/view_components/pull/1599) [`62dd9461`](https://github.com/primer/view_components/commit/62dd946124001709dcb193a49af91dd785fa4f8c) Thanks [@simurai](https://github.com/simurai)! - Move `Popover` styles to PVC
|
642
|
+
|
643
|
+
* [#1605](https://github.com/primer/view_components/pull/1605) [`63b40c1b`](https://github.com/primer/view_components/commit/63b40c1bd83bdcf0114a238d9904330ea7af6e3a) Thanks [@jonrohan](https://github.com/jonrohan)! - Remove the deprecated `Primer::CounterComponet` and use `Primer::Beta::Counter`.
|
644
|
+
|
645
|
+
- [#1611](https://github.com/primer/view_components/pull/1611) [`047674c8`](https://github.com/primer/view_components/commit/047674c872b5ca3fedd768cee8473b7d5e665c95) Thanks [@safeforge](https://github.com/safeforge)! - Avoid double-registering of exported components
|
646
|
+
|
647
|
+
* [#1601](https://github.com/primer/view_components/pull/1601) [`ce2e959d`](https://github.com/primer/view_components/commit/ce2e959dd62d2859e6dbb3113bc1867ff7b3dcf8) Thanks [@simurai](https://github.com/simurai)! - Move `flash` styles to PVC
|
648
|
+
|
649
|
+
- [#1607](https://github.com/primer/view_components/pull/1607) [`c97f7b72`](https://github.com/primer/view_components/commit/c97f7b72daed4d167668ac703c59702522def49b) Thanks [@simurai](https://github.com/simurai)! - Move `Avatar` + `AvatarStack` styles to PVC
|
650
|
+
|
651
|
+
* [#1598](https://github.com/primer/view_components/pull/1598) [`040f4943`](https://github.com/primer/view_components/commit/040f49435db61d5ec454b1be68e9addb0bb47a9b) Thanks [@simurai](https://github.com/simurai)! - Move `TimelineItem` styles to PVC
|
652
|
+
|
653
|
+
- [#1608](https://github.com/primer/view_components/pull/1608) [`75ad4765`](https://github.com/primer/view_components/commit/75ad4765ccbac2b0b5e631877c26373d13760ed3) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - testing to ensure CSS classes used by PVC components are valid, according to the available selectors
|
654
|
+
|
655
|
+
* [#1600](https://github.com/primer/view_components/pull/1600) [`4501861b`](https://github.com/primer/view_components/commit/4501861b6d8eb662fda30a9e6c9fbbb62d1ed6d3) Thanks [@simurai](https://github.com/simurai)! - Move `dropdown` styles to PVC
|
656
|
+
|
657
|
+
## 0.0.110
|
658
|
+
|
659
|
+
### Patch Changes
|
660
|
+
|
661
|
+
- [#1583](https://github.com/primer/view_components/pull/1583) [`a06f52cf`](https://github.com/primer/view_components/commit/a06f52cf77eff76f5a9003a9b224dc425de78f4b) Thanks [@jonrohan](https://github.com/jonrohan)! - Migrating progress bar component to beta folder, and adding progress bar css.
|
662
|
+
|
663
|
+
* [#1579](https://github.com/primer/view_components/pull/1579) [`05e07bb1`](https://github.com/primer/view_components/commit/05e07bb1ff0a7d42fca94c0a922e24e7558af939) Thanks [@camertron](https://github.com/camertron)! - Move Banner to alpha namespace
|
664
|
+
|
665
|
+
- [#1592](https://github.com/primer/view_components/pull/1592) [`f743267e`](https://github.com/primer/view_components/commit/f743267e791222a8388084433b2fa4143b11b129) Thanks [@simurai](https://github.com/simurai)! - Move `Breadcrumbs` styles to PVC
|
666
|
+
|
667
|
+
* [#1584](https://github.com/primer/view_components/pull/1584) [`cad5c235`](https://github.com/primer/view_components/commit/cad5c23548ad5682c8dce0d8f2831b08c2628889) Thanks [@simurai](https://github.com/simurai)! - Move `blankslate` styles to PVC
|
668
|
+
|
669
|
+
- [#1574](https://github.com/primer/view_components/pull/1574) [`b3e351d2`](https://github.com/primer/view_components/commit/b3e351d23bc0f545ddb21384dc2567d08c07ed83) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - adding a test suite to show all component-specific selectors are used in previews, and updating various component previews for lookbook
|
670
|
+
|
671
|
+
* [#1587](https://github.com/primer/view_components/pull/1587) [`ac54ecc4`](https://github.com/primer/view_components/commit/ac54ecc4c2870cbb89d326d5d1808e6a36c543ec) Thanks [@simurai](https://github.com/simurai)! - Move labels styles to PVC
|
672
|
+
|
673
|
+
- [#1594](https://github.com/primer/view_components/pull/1594) [`55f0d4df`](https://github.com/primer/view_components/commit/55f0d4dfd6fa111b4b3c551e087119637255f617) Thanks [@simurai](https://github.com/simurai)! - Move `Subhead` styles to PVC
|
674
|
+
|
675
|
+
* [#1593](https://github.com/primer/view_components/pull/1593) [`7042b5f5`](https://github.com/primer/view_components/commit/7042b5f5ef7f52fcef0a268023b6f096bd1d43e5) Thanks [@simurai](https://github.com/simurai)! - Move `ToggleSwitch` styles to PVC
|
676
|
+
|
677
|
+
- [#1590](https://github.com/primer/view_components/pull/1590) [`820022c3`](https://github.com/primer/view_components/commit/820022c3fbd69ab7d16aadcd46f23e74673bd2b0) Thanks [@simurai](https://github.com/simurai)! - Move `Truncate` styles to PVC
|
678
|
+
|
679
|
+
## 0.0.109
|
680
|
+
|
681
|
+
### Patch Changes
|
682
|
+
|
683
|
+
- [#1554](https://github.com/primer/view_components/pull/1554) [`74db3db4`](https://github.com/primer/view_components/commit/74db3db45e5d36b239a5c3ccf2c1f30da1106a69) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - build the utilities.yml for PVC's classify utilities directly in PVC
|
684
|
+
|
685
|
+
* [#1566](https://github.com/primer/view_components/pull/1566) [`613f5697`](https://github.com/primer/view_components/commit/613f56976d184961405dc96cfc334a0e915098a0) Thanks [@dependabot](https://github.com/apps/dependabot)! - Allow arrow key navigation on aria-disabled elements in details-menu
|
686
|
+
|
687
|
+
- [#1571](https://github.com/primer/view_components/pull/1571) [`bc235b39`](https://github.com/primer/view_components/commit/bc235b3901ff03b0d10de61eb3b5e7b450cfd262) Thanks [@jonrohan](https://github.com/jonrohan)! - SegmentedControl: Don't update selected state on links
|
688
|
+
|
689
|
+
* [#1559](https://github.com/primer/view_components/pull/1559) [`b5340016`](https://github.com/primer/view_components/commit/b53400169d180a662ac9c07d1786f533c7c3c29d) Thanks [@camertron](https://github.com/camertron)! - Additional legacy flash/banner classes; fix data-target issue
|
690
|
+
|
691
|
+
- [#1576](https://github.com/primer/view_components/pull/1576) [`619a8f9a`](https://github.com/primer/view_components/commit/619a8f9a97d0a4854f01de9c19c06a50807a65d2) Thanks [@camertron](https://github.com/camertron)! - Remove redundant data-show-dialog-id system_argument in dialog component
|
692
|
+
|
693
|
+
* [#1575](https://github.com/primer/view_components/pull/1575) [`eead9f6a`](https://github.com/primer/view_components/commit/eead9f6ac1021d4398341408c292d2f00a6f486c) Thanks [@neall](https://github.com/neall)! - Allow form field names to end in "?"
|
694
|
+
|
695
|
+
## 0.0.108
|
696
|
+
|
697
|
+
### Patch Changes
|
698
|
+
|
699
|
+
- [#1560](https://github.com/primer/view_components/pull/1560) [`8bc7d1c5`](https://github.com/primer/view_components/commit/8bc7d1c588b94aded4f15f159b40be71c33f3121) Thanks [@safeforge](https://github.com/safeforge)! - Avoid double-registering of exported components
|
700
|
+
|
701
|
+
## 0.0.107
|
702
|
+
|
703
|
+
### Patch Changes
|
704
|
+
|
705
|
+
- [#1539](https://github.com/primer/view_components/pull/1539) [`c86d4785`](https://github.com/primer/view_components/commit/c86d4785460507d9cab9fc44edab281ad2b128ef) Thanks [@jonrohan](https://github.com/jonrohan)! - Bug Fix: Fixing bad CSS in action-list.css and writing test to check for error
|
706
|
+
|
707
|
+
* [#1552](https://github.com/primer/view_components/pull/1552) [`746696f4`](https://github.com/primer/view_components/commit/746696f42dccda969f5306e67952ddc80023390f) Thanks [@jonrohan](https://github.com/jonrohan)! - Disable focus-visible-pseudo-class plugin to fix primary Button
|
708
|
+
|
709
|
+
- [#1550](https://github.com/primer/view_components/pull/1550) [`8211b263`](https://github.com/primer/view_components/commit/8211b26385355f39baad810c63b12cb34193a0bd) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated `Primer::ImageCrop` component
|
710
|
+
|
711
|
+
* [#1538](https://github.com/primer/view_components/pull/1538) [`03008a4a`](https://github.com/primer/view_components/commit/03008a4a06f03f8120c6510f3a45694ef79f72b8) Thanks [@jonrohan](https://github.com/jonrohan)! - Export component CSS selectors as json file for use in component CSS coverage tests, linters, etc.
|
712
|
+
|
713
|
+
- [#1540](https://github.com/primer/view_components/pull/1540) [`94c6b7fd`](https://github.com/primer/view_components/commit/94c6b7fd6653bc207635393d8a28d8f5014e29f3) Thanks [@jonrohan](https://github.com/jonrohan)! - `app/components/primer/alpha/action_list/action-list.pcss` was re-written to `app/components/primer/alpha/action_list.pcss`
|
714
|
+
|
715
|
+
* [#1548](https://github.com/primer/view_components/pull/1548) [`c9b2c558`](https://github.com/primer/view_components/commit/c9b2c5581b6d91fae709b6150bbf41db8b85ede2) Thanks [@camertron](https://github.com/camertron)! - Include legacy flash classes in banners
|
716
|
+
|
717
|
+
## 0.0.106
|
718
|
+
|
719
|
+
### Patch Changes
|
720
|
+
|
721
|
+
- [#1533](https://github.com/primer/view_components/pull/1533) [`1ee5cc19`](https://github.com/primer/view_components/commit/1ee5cc19d21f45662038449f288f35797b117d16) Thanks [@camertron](https://github.com/camertron)! - Introduce the Banner component
|
722
|
+
|
723
|
+
## 0.0.105
|
724
|
+
|
725
|
+
### Patch Changes
|
726
|
+
|
727
|
+
- [#1531](https://github.com/primer/view_components/pull/1531) [`58436f71`](https://github.com/primer/view_components/commit/58436f71d8a64a290bcd725542b5c2434c7aacf4) Thanks [@issyl0](https://github.com/issyl0)! - rubocop/config/default: Unset `DisabledByDefault`
|
728
|
+
|
729
|
+
* [#1532](https://github.com/primer/view_components/pull/1532) [`d67dae0a`](https://github.com/primer/view_components/commit/d67dae0a6d762d4aeb9ed48926daa93d9f2e3405) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - migrate Primer::LinkComponent to Primer::Beta::Link and mark the old one as deprecated
|
730
|
+
|
731
|
+
- [#1395](https://github.com/primer/view_components/pull/1395) [`488532ce`](https://github.com/primer/view_components/commit/488532ceaa024fd04fb1e00d8b7f052608679a9e) Thanks [@josepmartins](https://github.com/josepmartins)! - Add a11yreviewed variable in frontmatter
|
732
|
+
|
733
|
+
* [#1527](https://github.com/primer/view_components/pull/1527) [`595a6754`](https://github.com/primer/view_components/commit/595a67548ada4efcc1268fb59b15ebb9cc7bc5b6) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - deprecating Primer::Image in favor of Primer::Alpha::Image
|
734
|
+
|
735
|
+
- [#1507](https://github.com/primer/view_components/pull/1507) [`16ecd00e`](https://github.com/primer/view_components/commit/16ecd00e6022c5fb7607f278a014537d77ce84ff) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding lookbook and status to `static/arguments.json` file.
|
736
|
+
|
737
|
+
* [#1225](https://github.com/primer/view_components/pull/1225) [`c026577c`](https://github.com/primer/view_components/commit/c026577caa9a4c0eb52b9f83f614a928ab3f7445) Thanks [@jonrohan](https://github.com/jonrohan)! - Creating new `Primer::Alpha::SegmentedControl` component. [Design guidelines](https://primer.style/design/components/segmented-control)
|
738
|
+
|
739
|
+
- [#1530](https://github.com/primer/view_components/pull/1530) [`72866fc2`](https://github.com/primer/view_components/commit/72866fc297a5b3e64562f3b535f58eb1fcecb75a) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - migrating Primer::LabelComponent to Primer::Beta::Label
|
740
|
+
|
741
|
+
* [#1528](https://github.com/primer/view_components/pull/1528) [`1724aa2b`](https://github.com/primer/view_components/commit/1724aa2b39a0c515b4e1135999fd8d0d4cc869de) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - migrating Primer::ImageCrop to Primer::Alpha::ImageCrop
|
742
|
+
|
743
|
+
## 0.0.104
|
744
|
+
|
745
|
+
### Patch Changes
|
746
|
+
|
747
|
+
- [#1505](https://github.com/primer/view_components/pull/1505) [`5d3448bb`](https://github.com/primer/view_components/commit/5d3448bb379621d2acaf22c2ed38fae6528497bd) Thanks [@camertron](https://github.com/camertron)! - Pass select list options to Rails form builder
|
748
|
+
|
749
|
+
* [#1498](https://github.com/primer/view_components/pull/1498) [`b3668d38`](https://github.com/primer/view_components/commit/b3668d3836c35e52a301544de9955b09c023e82a) Thanks [@neall](https://github.com/neall)! - Add option for nested forms for check boxes
|
750
|
+
|
751
|
+
- [#1488](https://github.com/primer/view_components/pull/1488) [`db5b5f65`](https://github.com/primer/view_components/commit/db5b5f6514cfd0952dd299b121f5cc2f2f001067) Thanks [@jonrohan](https://github.com/jonrohan)! - Building PostCSS components separately
|
752
|
+
|
753
|
+
* [#1486](https://github.com/primer/view_components/pull/1486) [`9a936bd1`](https://github.com/primer/view_components/commit/9a936bd18053f7f17d1c1146349a157b90c5c91e) Thanks [@langermank](https://github.com/langermank)! - Remove dead SCSS code from ActionList
|
754
|
+
|
755
|
+
- [#1491](https://github.com/primer/view_components/pull/1491) [`f43bd08a`](https://github.com/primer/view_components/commit/f43bd08af6ffcd7ad4607c61cc1569bf2fccd7ee) Thanks [@camertron](https://github.com/camertron)! - Allow IconButton tooltips to be hidden
|
756
|
+
|
757
|
+
## 0.0.103
|
758
|
+
|
759
|
+
### Patch Changes
|
760
|
+
|
761
|
+
- [#1457](https://github.com/primer/view_components/pull/1457) [`7fa6d221`](https://github.com/primer/view_components/commit/7fa6d221f4e2196d3421592d89f48a4abe7b8373) Thanks [@orhantoy](https://github.com/orhantoy)! - Remove dead Flex and FlexItem links from nav
|
762
|
+
|
763
|
+
* [#1469](https://github.com/primer/view_components/pull/1469) [`a3442456`](https://github.com/primer/view_components/commit/a3442456c5230918ff3cedb7293d4799b963599d) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::HeadingComponent component.
|
764
|
+
|
765
|
+
- [#1480](https://github.com/primer/view_components/pull/1480) [`c764cee6`](https://github.com/primer/view_components/commit/c764cee6744c91671db729bd7ac60dc532398820) Thanks [@koddsson](https://github.com/koddsson)! - Fix nested dialogs
|
766
|
+
|
767
|
+
* [#1466](https://github.com/primer/view_components/pull/1466) [`9b5cff15`](https://github.com/primer/view_components/commit/9b5cff1513ca24f85906fd8ed54d34d056504535) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::HiddenTextExpander component.
|
768
|
+
|
769
|
+
- [#1471](https://github.com/primer/view_components/pull/1471) [`5687bebe`](https://github.com/primer/view_components/commit/5687bebebb3c0fa58bf63d2a1ff09602b9f3987d) Thanks [@koddsson](https://github.com/koddsson)! - Make sure nested dialogs behave correctly
|
770
|
+
|
771
|
+
* [#1479](https://github.com/primer/view_components/pull/1479) [`b0281033`](https://github.com/primer/view_components/commit/b028103397ac94375035d38c5ca85e85aeffde08) Thanks [@khiga8](https://github.com/khiga8)! - move tooltip to be adjacent to button
|
772
|
+
|
773
|
+
- [#1468](https://github.com/primer/view_components/pull/1468) [`ae99c2ed`](https://github.com/primer/view_components/commit/ae99c2ed9e9b937d79443cbc393bddd6f02a2112) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::CloseButton component.
|
774
|
+
|
775
|
+
* [#1476](https://github.com/primer/view_components/pull/1476) [`f174b31c`](https://github.com/primer/view_components/commit/f174b31c7bf59d08402d03c35a2bc52fc34bc687) Thanks [@camertron](https://github.com/camertron)! - Bump view_component to 2.74.1 to fix deadlock issues in Lookbook
|
776
|
+
|
777
|
+
- [#1452](https://github.com/primer/view_components/pull/1452) [`9252a124`](https://github.com/primer/view_components/commit/9252a12435d9bb5a3bd2610a72e12358c1ca2c2b) Thanks [@steves](https://github.com/steves)! - Move sample forms out of test folder
|
778
|
+
|
779
|
+
* [#1467](https://github.com/primer/view_components/pull/1467) [`a3b562ca`](https://github.com/primer/view_components/commit/a3b562cae569902c0ce3131599654b8a00720095) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing the deprecated Primer::DetailsComponent component.
|
780
|
+
|
781
|
+
## 0.0.102
|
782
|
+
|
783
|
+
### Patch Changes
|
784
|
+
|
785
|
+
- [#1450](https://github.com/primer/view_components/pull/1450) [`ef4498df`](https://github.com/primer/view_components/commit/ef4498df7630e3b5d9895eb92910fc36622c32de) Thanks [@camertron](https://github.com/camertron)! - Don't export ToggleSwitchElement
|
786
|
+
|
787
|
+
* [#1446](https://github.com/primer/view_components/pull/1446) [`4f235520`](https://github.com/primer/view_components/commit/4f23552009b932be1238a38b7cef21ffcc6fe632) Thanks [@camertron](https://github.com/camertron)! - Allow NavLists to define sub-items as well as a trailing visual
|
788
|
+
|
789
|
+
- [#1445](https://github.com/primer/view_components/pull/1445) [`493530ed`](https://github.com/primer/view_components/commit/493530ed8e097c89322d52e73d6ac8a320573b43) Thanks [@camertron](https://github.com/camertron)! - Remove unused instance variable in ActionList
|
790
|
+
|
791
|
+
* [#1441](https://github.com/primer/view_components/pull/1441) [`bd8fe7f5`](https://github.com/primer/view_components/commit/bd8fe7f5c9c20e28354d96a36717f6a56ef57fa4) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated FlexComponent and FlexItemComponent
|
792
|
+
|
793
|
+
## 0.0.101
|
794
|
+
|
795
|
+
### Patch Changes
|
796
|
+
|
797
|
+
- [#1424](https://github.com/primer/view_components/pull/1424) [`d7b277ef`](https://github.com/primer/view_components/commit/d7b277ef00aed062d6d123cb99c014a14ea3c7a1) Thanks [@camertron](https://github.com/camertron)! - Allow specifying an unchecked value for check box inputs
|
798
|
+
|
799
|
+
* [#1439](https://github.com/primer/view_components/pull/1439) [`56fae759`](https://github.com/primer/view_components/commit/56fae7599e74b1b734e30c10b7b8b54e4782df5d) Thanks [@camertron](https://github.com/camertron)! - Support system arguments for ActionList item anchor tags
|
800
|
+
|
801
|
+
- [#1438](https://github.com/primer/view_components/pull/1438) [`b0329cda`](https://github.com/primer/view_components/commit/b0329cdac8ea5edbe38ddec20107777c394caa0d) Thanks [@langermank](https://github.com/langermank)! - ActionListItem `line-height` bug fix
|
802
|
+
|
803
|
+
* [#1435](https://github.com/primer/view_components/pull/1435) [`8312e6ce`](https://github.com/primer/view_components/commit/8312e6cee8f51260e810000ed89624e2f316e25b) Thanks [@camertron](https://github.com/camertron)! - Allow NavList items to be selected by the current page
|
804
|
+
|
805
|
+
## 0.0.100
|
806
|
+
|
807
|
+
### Patch Changes
|
808
|
+
|
809
|
+
- [#1428](https://github.com/primer/view_components/pull/1428) [`b7b0c8be`](https://github.com/primer/view_components/commit/b7b0c8be1e2a82327f6dd4b2104a3e4fb3089394) Thanks [@bolonio](https://github.com/bolonio)! - Remove external classes from the the button content `<span>` in `Primer::beta::Button`
|
810
|
+
|
811
|
+
* [#1427](https://github.com/primer/view_components/pull/1427) [`2139fa30`](https://github.com/primer/view_components/commit/2139fa30982b49e88a44ab6be72f3428f6e5b0f1) Thanks [@langermank](https://github.com/langermank)! - Beta::Button CSS bug fixes
|
812
|
+
|
813
|
+
## 0.0.99
|
814
|
+
|
815
|
+
### Patch Changes
|
816
|
+
|
817
|
+
- [#1421](https://github.com/primer/view_components/pull/1421) [`c35a5c32`](https://github.com/primer/view_components/commit/c35a5c3226ab39aa62182ee4816e63d9c1d0c598) Thanks [@langermank](https://github.com/langermank)! - Fix Beta::Button visual regressions
|
818
|
+
- Add back link styles
|
819
|
+
- Ensure invisible buttons are blue when no visuals are present
|
820
|
+
|
821
|
+
* [#1422](https://github.com/primer/view_components/pull/1422) [`a129a4d1`](https://github.com/primer/view_components/commit/a129a4d1b7d1dfae6d2d623e1603ea6e75533940) Thanks [@camertron](https://github.com/camertron)! - Add SVG and custom content options to NavList's leading visual slot
|
822
|
+
|
823
|
+
## 0.0.98
|
824
|
+
|
825
|
+
### Patch Changes
|
826
|
+
|
827
|
+
- [#1420](https://github.com/primer/view_components/pull/1420) [`d6623553`](https://github.com/primer/view_components/commit/d662355359b1b5d8801cc6a86a1376cb1d2da63b) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - un-deprecate Primer::ButtonComponent for now, due to inconsistencies and issues in migrating to Primer::Beta::Button
|
828
|
+
|
829
|
+
* [`1d4b6851`](https://github.com/primer/view_components/commit/1d4b685174ca82cb0f67e65cc095810841b0b390) Thanks [@jonrohan](https://github.com/jonrohan)! - Move previews into root and include in gemspec. Thanks [@steves](https://github.com/steves)! [#1404](https://github.com/primer/view_components/pull/1404)
|
830
|
+
|
831
|
+
- [#1416](https://github.com/primer/view_components/pull/1416) [`f99156fd`](https://github.com/primer/view_components/commit/f99156fddcab45467a4da773387efa4ea13401c3) Thanks [@jonrohan](https://github.com/jonrohan)! - Don't use outside images in docs examples
|
832
|
+
|
833
|
+
## 0.0.97
|
834
|
+
|
835
|
+
### Patch Changes
|
836
|
+
|
837
|
+
- [#1268](https://github.com/primer/view_components/pull/1268) [`f26afd94`](https://github.com/primer/view_components/commit/f26afd9427c82d38c0c1f7d866dade959cb78364) Thanks [@camertron](https://github.com/camertron)! - Add the ActionList and NavList components
|
838
|
+
|
839
|
+
* [#1412](https://github.com/primer/view_components/pull/1412) [`cf548425`](https://github.com/primer/view_components/commit/cf54842572f9e040c1fb51c2b9c0c5e3a2902235) Thanks [@owenniblock](https://github.com/owenniblock)! - Change header tag to div on `Primer::Alpha::Dialog`
|
840
|
+
|
841
|
+
## 0.0.96
|
842
|
+
|
843
|
+
### Patch Changes
|
844
|
+
|
845
|
+
- [#1400](https://github.com/primer/view_components/pull/1400) [`ae48b9fe`](https://github.com/primer/view_components/commit/ae48b9fe9d7ef3a908ea9f84f5fd25cf9bf40e50) Thanks [@langermank](https://github.com/langermank)! - - Add Lookbook previews for Beta Button and IconButton
|
846
|
+
- Tiny CSS bug fix
|
847
|
+
|
848
|
+
* [#1406](https://github.com/primer/view_components/pull/1406) [`1fec4bf5`](https://github.com/primer/view_components/commit/1fec4bf5097d3f002208840694d05dd4401c7a83) Thanks [@jonrohan](https://github.com/jonrohan)! - Raise on usage of deprecated arguments in Primer::Beta::Button
|
849
|
+
|
850
|
+
- [#1402](https://github.com/primer/view_components/pull/1402) [`7e50f6d9`](https://github.com/primer/view_components/commit/7e50f6d93338da50e2aa670c7c9f1a23fb7dfecc) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Move Octicon cache preload to initializer.
|
851
|
+
|
852
|
+
## 0.0.95
|
853
|
+
|
854
|
+
### Patch Changes
|
855
|
+
|
856
|
+
- [#1372](https://github.com/primer/view_components/pull/1372) [`98155b10`](https://github.com/primer/view_components/commit/98155b10599d3b1753c32b7c247acadff926eaa4) Thanks [@jonrohan](https://github.com/jonrohan)! - Delete the deprecated Primer::ButtonGroup component
|
857
|
+
|
858
|
+
* [#1386](https://github.com/primer/view_components/pull/1386) [`142b8193`](https://github.com/primer/view_components/commit/142b8193abd973a5bf6fd413d0a1e11fa0b3d3ae) Thanks [@khiga8](https://github.com/khiga8)! - Make sure duplicate ID associations aren't created for the Button
|
859
|
+
|
860
|
+
- [#1371](https://github.com/primer/view_components/pull/1371) [`d0ddcce0`](https://github.com/primer/view_components/commit/d0ddcce0fbb4b46b1746e5688b23c54e1ba74f12) Thanks [@jonrohan](https://github.com/jonrohan)! - Delete the deprecated Primer::BaseButton component
|
861
|
+
|
862
|
+
* [#1396](https://github.com/primer/view_components/pull/1396) [`e0c50dcb`](https://github.com/primer/view_components/commit/e0c50dcbc12f31bdc0cac480f563952404051f14) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - mark Primer::ButtonComponent as deprecated in favor of Primer::Beta::Button
|
863
|
+
|
864
|
+
- [#1393](https://github.com/primer/view_components/pull/1393) [`5533f8e7`](https://github.com/primer/view_components/commit/5533f8e7dfffceba0e4b94bbc3bae1e17ebcff91) Thanks [@camertron](https://github.com/camertron)! - Add the Requested-With header to toggle switch requests
|
865
|
+
|
866
|
+
* [#1382](https://github.com/primer/view_components/pull/1382) [`6fd690c8`](https://github.com/primer/view_components/commit/6fd690c8804cd4a1cc8bdbb76d1f6f7e795ab8d6) Thanks [@kangarruu](https://github.com/kangarruu)! - Docs change to fix typo and descriptions in dialog.rb
|
867
|
+
|
868
|
+
- [#1397](https://github.com/primer/view_components/pull/1397) [`1ad8cfa7`](https://github.com/primer/view_components/commit/1ad8cfa753872e3ee5d196315ed5048351073029) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - deprecated Primer::IconButton in favor of Primer::Beta::IconButton"
|
869
|
+
|
870
|
+
* [#1390](https://github.com/primer/view_components/pull/1390) [`94c31645`](https://github.com/primer/view_components/commit/94c316459db0299afa0946eee5ae2987a16879f3) Thanks [@neall](https://github.com/neall)! - Support submitting a check box group as an array
|
871
|
+
|
872
|
+
- [#1392](https://github.com/primer/view_components/pull/1392) [`1f424aab`](https://github.com/primer/view_components/commit/1f424aabc6e8be4bd3a2c55190414a1b125b9111) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing `static/arguments.yml` and replacing with `static/arguments.json`. The data output doesn't change.
|
873
|
+
|
874
|
+
* [#1381](https://github.com/primer/view_components/pull/1381) [`040148d8`](https://github.com/primer/view_components/commit/040148d8cc197c12945466b99805177db69fbf95) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Simplify CI configuration to a single build per Ruby/Rails version.
|
875
|
+
|
876
|
+
- [#1394](https://github.com/primer/view_components/pull/1394) [`27d82335`](https://github.com/primer/view_components/commit/27d823358e4abb9ba6c5c208c44aab300546c144) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding optional wrapper arguments to IconButton
|
877
|
+
|
878
|
+
## 0.0.94
|
879
|
+
|
880
|
+
### Patch Changes
|
881
|
+
|
882
|
+
- [#1352](https://github.com/primer/view_components/pull/1352) [`a02944bb`](https://github.com/primer/view_components/commit/a02944bb6e2393ebe476466b96cfc022dd571fd2) Thanks [@jonrohan](https://github.com/jonrohan)! - Update eslint custom-element rules so web components can match ruby component names
|
883
|
+
|
884
|
+
* [#1364](https://github.com/primer/view_components/pull/1364) [`e8714975`](https://github.com/primer/view_components/commit/e87149754da0a7551ddc18f6244ec901fede943f) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - added Primer::Alpha::ToggleSwitch to the docs build task so it will build and deploy
|
885
|
+
|
886
|
+
- [#1354](https://github.com/primer/view_components/pull/1354) [`c1edd34f`](https://github.com/primer/view_components/commit/c1edd34f8e60ec5b9689891e279ded3a8b0ef23e) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - consolidating deprecations into a single list, updating component status migrator for this change, and ensuring rubocop / erblint deprecation linters can be run against changed files only instead of all files
|
887
|
+
|
888
|
+
## 0.0.93
|
889
|
+
|
890
|
+
### Patch Changes
|
891
|
+
|
892
|
+
- [#1214](https://github.com/primer/view_components/pull/1214) [`33949aa9`](https://github.com/primer/view_components/commit/33949aa9e1be9e9a86a1eefb10e9cd3b47ecdeda) Thanks [@keithamus](https://github.com/keithamus)! - Adding Primer Dialog Component
|
893
|
+
|
894
|
+
* [#1325](https://github.com/primer/view_components/pull/1325) [`a54e5510`](https://github.com/primer/view_components/commit/a54e5510ecc87b55ed9a6bf71ac1c9d2e3b3fef9) Thanks [@langermank](https://github.com/langermank)! - Adding Primer::Beta::Button and Primer::Beta::IconButton with visual refinements
|
895
|
+
|
896
|
+
- [#1340](https://github.com/primer/view_components/pull/1340) [`a4f868c3`](https://github.com/primer/view_components/commit/a4f868c32af1ae76f2bba760e9565c2bade22f56) Thanks [@jsoref](https://github.com/jsoref)! - Let forks ✅ on `main`
|
897
|
+
|
898
|
+
* [#1335](https://github.com/primer/view_components/pull/1335) [`cbf52761`](https://github.com/primer/view_components/commit/cbf52761ab5624dfd9bc35a2220f87068c370039) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding the `postcss-mixins` plugin to our CSS build step.
|
899
|
+
|
900
|
+
## 0.0.92
|
901
|
+
|
902
|
+
### Patch Changes
|
903
|
+
|
904
|
+
- [#1312](https://github.com/primer/view_components/pull/1312) [`ff515aa4`](https://github.com/primer/view_components/commit/ff515aa43baf99eda3ba56ede28693c733307b19) Thanks [@danielnc](https://github.com/danielnc)! - Fixing Primer::Forms::ActsAsComponent::TemplateParams keyword args
|
905
|
+
|
906
|
+
* [#1331](https://github.com/primer/view_components/pull/1331) [`7bf8ba76`](https://github.com/primer/view_components/commit/7bf8ba76ce54bc509eb12ab29f1aa0e3c5f6d3d8) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated Primer::BorderBoxComponent
|
907
|
+
|
908
|
+
- [#1318](https://github.com/primer/view_components/pull/1318) [`624a8875`](https://github.com/primer/view_components/commit/624a8875a7cc1640a23dec3cc8256ffb893ec1c3) Thanks [@jonrohan](https://github.com/jonrohan)! - Removing deprecated Primer::ButtonGroup component
|
909
|
+
|
910
|
+
* [#1330](https://github.com/primer/view_components/pull/1330) [`b89ac4dd`](https://github.com/primer/view_components/commit/b89ac4dd64be4e7fcbb4a14cf486a326db4e4a3c) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Rename test class names that collided
|
911
|
+
|
912
|
+
- [#1332](https://github.com/primer/view_components/pull/1332) [`3004d86d`](https://github.com/primer/view_components/commit/3004d86db2d7e99dbe16f85ce02100499661b1be) Thanks [@jonrohan](https://github.com/jonrohan)! - Ignore compiled _.js _.css files
|
913
|
+
|
914
|
+
* [#1307](https://github.com/primer/view_components/pull/1307) [`311fe11e`](https://github.com/primer/view_components/commit/311fe11e7a9e918e6a749c0f01b5db68b3210c2d) Thanks [@khiga8](https://github.com/khiga8)! - Improving screen reader support for tooltip with `sr-only`
|
915
|
+
|
916
|
+
- [#1321](https://github.com/primer/view_components/pull/1321) [`f18ef0f0`](https://github.com/primer/view_components/commit/f18ef0f0ea1404dd081cf4398505304ca9b9087d) Thanks [@camertron](https://github.com/camertron)! - Adding Primer::Alpha::ToggleSwitch component
|
917
|
+
|
918
|
+
## 0.0.91
|
919
|
+
|
920
|
+
### Patch Changes
|
921
|
+
|
922
|
+
- [#1280](https://github.com/primer/view_components/pull/1280) [`1337cd47`](https://github.com/primer/view_components/commit/1337cd471cb26eda8813ec7c508a0f19e7d0309b) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - moving Primer::DetailsComponent to Primer::Beta::Details, and replacing the original with a deprecated component for backward compatibility
|
923
|
+
|
924
|
+
* [#1303](https://github.com/primer/view_components/pull/1303) [`16204453`](https://github.com/primer/view_components/commit/1620445358b7dbc482fa371ac9df8a221f00ca90) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - moving Primer::Alpha::HiddenTextExpander to Primer::Alpha::HiddenTextExpander and replacing the original with a deprecated version
|
925
|
+
|
926
|
+
- [#1314](https://github.com/primer/view_components/pull/1314) [`9aef2dcb`](https://github.com/primer/view_components/commit/9aef2dcb4164e0a92f160c49ab40dd74fb24c8ff) Thanks [@camertron](https://github.com/camertron)! - Instruct terser to not mangle class names so Catalyst works
|
927
|
+
|
928
|
+
* [#1306](https://github.com/primer/view_components/pull/1306) [`5e9003eb`](https://github.com/primer/view_components/commit/5e9003eb32740c7a18864f2e6d7d51642e31d615) Thanks [@khiga8](https://github.com/khiga8)! - Update docs to discourage standalone tooltip use.
|
929
|
+
|
930
|
+
- [#1308](https://github.com/primer/view_components/pull/1308) [`b773b71c`](https://github.com/primer/view_components/commit/b773b71cbcecc20c04a835efc24e0dca0995b118) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Update ViewComponent dependency to fix failing integration tests.
|
931
|
+
|
932
|
+
* [#1297](https://github.com/primer/view_components/pull/1297) [`c684d071`](https://github.com/primer/view_components/commit/c684d0718b571d47cd508f3865237743c48172ee) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - migrating Primer::HeadingComponent to Primer::Beta::Heading, and replacing original with deprecated version
|
933
|
+
|
934
|
+
- [#1316](https://github.com/primer/view_components/pull/1316) [`6241f130`](https://github.com/primer/view_components/commit/6241f1307f4b46cce23981b5a1916c424a700d4c) Thanks [@jonrohan](https://github.com/jonrohan)! - Creating a primer_view_components.css bundle that will ship with the npm package
|
935
|
+
|
936
|
+
## 0.0.90
|
937
|
+
|
938
|
+
### Patch Changes
|
939
|
+
|
940
|
+
- [#1290](https://github.com/primer/view_components/pull/1290) [`cc81b54c`](https://github.com/primer/view_components/commit/cc81b54ccdeb685efb3711aad02e8229fee9d9c5) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating BorderBox slot use to the new `.with_#{slot_name}` syntax
|
941
|
+
|
942
|
+
* [#1294](https://github.com/primer/view_components/pull/1294) [`52fed9a9`](https://github.com/primer/view_components/commit/52fed9a944cae6104eeba1054d4a00b309eac795) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating slot use for examples in all components in the root component folder
|
943
|
+
|
944
|
+
- [#1295](https://github.com/primer/view_components/pull/1295) [`26d6c3e3`](https://github.com/primer/view_components/commit/26d6c3e3412ca18e71cd67b0797c40183f47ff17) Thanks [@khiga8](https://github.com/khiga8)! - Revert "Use `visibility: 'hidden'` instead of `hidden` attribute"
|
945
|
+
|
946
|
+
* [#1292](https://github.com/primer/view_components/pull/1292) [`28cdc994`](https://github.com/primer/view_components/commit/28cdc99466471fa7f89fe9cf094a91509456b604) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating slot use in examples, for all `status :alpha` components
|
947
|
+
|
948
|
+
- [#1293](https://github.com/primer/view_components/pull/1293) [`4d1e8d29`](https://github.com/primer/view_components/commit/4d1e8d297f52023ce3901e29e364bc1584cc6546) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating slot use for components in the beta/ folder
|
949
|
+
|
950
|
+
* [`fe709011`](https://github.com/primer/view_components/commit/fe7090113519090d08eddf04540986702c9a595e) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - move the Primer::CloseButton component into Primer::Beta::CloseButton, update all references, create a deprecated Primer::CloseButton in place of the original
|
951
|
+
|
952
|
+
- [`7da8c968`](https://github.com/primer/view_components/commit/7da8c968ef20fa3c19e1c6850886694a942facda) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - moving Primer::Counter to Primer::Beta::Counter, and replace original with a deprecated version"
|
953
|
+
|
954
|
+
## 0.0.89
|
955
|
+
|
956
|
+
### Patch Changes
|
957
|
+
|
958
|
+
- [#1284](https://github.com/primer/view_components/pull/1284) [`401dac2a`](https://github.com/primer/view_components/commit/401dac2a1ab2e026b231399ddb03cfb51bc7742f) Thanks [@jonrohan](https://github.com/jonrohan)! - Don't render tooltip on IconButton when tag is a summary element
|
959
|
+
|
960
|
+
* [#1283](https://github.com/primer/view_components/pull/1283) [`ea1c29d7`](https://github.com/primer/view_components/commit/ea1c29d7fa0d917a729cba684bf5f8ae039bb228) Thanks [@jonrohan](https://github.com/jonrohan)! - Updating label component to not always have large
|
961
|
+
|
962
|
+
## 0.0.88
|
963
|
+
|
964
|
+
### Patch Changes
|
965
|
+
|
966
|
+
- [#1275](https://github.com/primer/view_components/pull/1275) [`1e9ce95c`](https://github.com/primer/view_components/commit/1e9ce95cdc942acdb51807839b2924731a1ab295) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - move Primer::ButtonGroup to Primer::Beta::ButtonGroup, update all references, and add deprecated Primer::ButtonGroup for backwards compatibility
|
967
|
+
|
968
|
+
* [#1266](https://github.com/primer/view_components/pull/1266) [`7d2949de`](https://github.com/primer/view_components/commit/7d2949de758b97aa940287a1ceabd5d16209cae2) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - moving Primer::BoxComponent to Primer::Box and creating deprecated Primer::BoxComponent for backward compatibility
|
969
|
+
|
970
|
+
- [#1281](https://github.com/primer/view_components/pull/1281) [`843061de`](https://github.com/primer/view_components/commit/843061de168a1927a80fd22e7da795c1a9ddaacd) Thanks [@jonrohan](https://github.com/jonrohan)! - Always set `:absolute` position on Primer::Alpha::Tooltip
|
971
|
+
|
972
|
+
* [#934](https://github.com/primer/view_components/pull/934) [`d638fefb`](https://github.com/primer/view_components/commit/d638fefbb55ce9802e91b374903bcde9cc6ab612) Thanks [@pouretrebelle](https://github.com/pouretrebelle)! - Refactor the LabelComponent API
|
973
|
+
|
974
|
+
## 0.0.87
|
975
|
+
|
976
|
+
### Patch Changes
|
977
|
+
|
978
|
+
- [#1274](https://github.com/primer/view_components/pull/1274) [`c153f734`](https://github.com/primer/view_components/commit/c153f734a891fc3bc7dfc3bed34630ff38ab39d7) Thanks [@jonrohan](https://github.com/jonrohan)! - Fixing whitespace in rendered LinkComponent
|
979
|
+
|
980
|
+
* [#1273](https://github.com/primer/view_components/pull/1273) [`f38517ac`](https://github.com/primer/view_components/commit/f38517acf1aed43b27f2c6b94634d70b124883e6) Thanks [@camertron](https://github.com/camertron)! - Revert removal of BlankslateComponent
|
981
|
+
|
982
|
+
- [#1270](https://github.com/primer/view_components/pull/1270) [`44919308`](https://github.com/primer/view_components/commit/4491930812d16a9bcb5d8f05b4d94e49e469afa5) Thanks [@camertron](https://github.com/camertron)! - Use a custom form builder; introduce primer_form_for
|
983
|
+
|
984
|
+
* [#1269](https://github.com/primer/view_components/pull/1269) [`9ae9615f`](https://github.com/primer/view_components/commit/9ae9615f31acf43875feb89661cac6311527f9fd) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating component migrator script with improvements in component reference updates, deprecations, etc.
|
985
|
+
|
986
|
+
- [#1276](https://github.com/primer/view_components/pull/1276) [`759ea56f`](https://github.com/primer/view_components/commit/759ea56f00cbe3e536f4e558a9fb9a3e1b89bf7b) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - correcting the updates to nav.yml in the component status migrator
|
987
|
+
|
988
|
+
## 0.0.86
|
989
|
+
|
990
|
+
### Patch Changes
|
991
|
+
|
992
|
+
- [#1247](https://github.com/primer/view_components/pull/1247) [`dbe606b7`](https://github.com/primer/view_components/commit/dbe606b7f38ba52f24edeae2f02f390ad13133ab) Thanks [@khiga8](https://github.com/khiga8)! - Set `aria-hidden="true"` when type is label
|
993
|
+
|
994
|
+
* [#1262](https://github.com/primer/view_components/pull/1262) [`4a347b69`](https://github.com/primer/view_components/commit/4a347b6965990c1d73296d297367cb72b36539d2) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating the component migrator to support `--status stable`
|
995
|
+
|
996
|
+
- [#1244](https://github.com/primer/view_components/pull/1244) [`91a6d2df`](https://github.com/primer/view_components/commit/91a6d2df032fbb21ccaf3edc07b86f3c97b1add0) Thanks [@neall](https://github.com/neall)! - Stop requiring aria-label on ClipboardCopy with other content.
|
997
|
+
|
998
|
+
* [#1256](https://github.com/primer/view_components/pull/1256) [`544dd564`](https://github.com/primer/view_components/commit/544dd5647da64c06020d3ae7719f9b6ad32bee55) Thanks [@khiga8](https://github.com/khiga8)! - Use `visibility: 'hidden'` instead of `hidden` attribute to hide tooltip
|
999
|
+
|
1000
|
+
- [#1238](https://github.com/primer/view_components/pull/1238) [`204a8e4e`](https://github.com/primer/view_components/commit/204a8e4e11931061f7a855b79f90c7aaa2e51945) Thanks [@camertron](https://github.com/camertron)! - Merge primer/rails_forms into primer/view_components
|
1001
|
+
|
1002
|
+
* [#1265](https://github.com/primer/view_components/pull/1265) [`61a78c4f`](https://github.com/primer/view_components/commit/61a78c4f3362fc532149ddf5090252dd3af9122d) Thanks [@jonrohan](https://github.com/jonrohan)! - Update IconButton and Button tooltips to be sibling instead of child
|
1003
|
+
|
1004
|
+
- [#1255](https://github.com/primer/view_components/pull/1255) [`3729a9bf`](https://github.com/primer/view_components/commit/3729a9bfed5d1dbe40510b6a783212453fcc08d3) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - migrating `Primer::BorderBoxComponent` to `Primer::Beta::BorderBox`
|
1005
|
+
|
1006
|
+
* [#1241](https://github.com/primer/view_components/pull/1241) [`918cfe3f`](https://github.com/primer/view_components/commit/918cfe3f143e5fe30dfb4db1dd46449bc54a0a87) Thanks [@jonrohan](https://github.com/jonrohan)! - Deprecating the `Primer::Alpha::Autocomplete` component
|
1007
|
+
|
1008
|
+
- [#1062](https://github.com/primer/view_components/pull/1062) [`4b673a6c`](https://github.com/primer/view_components/commit/4b673a6c1ec9f0bc0710128fc365448e94d7b387) Thanks [@hectahertz](https://github.com/hectahertz)! - Add `Tooltip` support to `IconButton`
|
1009
|
+
|
1010
|
+
* [#1261](https://github.com/primer/view_components/pull/1261) [`8191b80d`](https://github.com/primer/view_components/commit/8191b80de219f100c07cea9d9fdabfa9f50f6e1e) Thanks [@camertron](https://github.com/camertron)! - Make all subdirs of docs/static in prepare script
|
1011
|
+
|
1012
|
+
- [#1260](https://github.com/primer/view_components/pull/1260) [`1a6562fe`](https://github.com/primer/view_components/commit/1a6562fe46503e21aade77df1f6ae542cbc2ddd6) Thanks [@khiga8](https://github.com/khiga8)! - Move tooltip to be sibling of link
|
1013
|
+
|
1014
|
+
* [#1258](https://github.com/primer/view_components/pull/1258) [`d3880f74`](https://github.com/primer/view_components/commit/d3880f74d4fe20ad1a81c9b40af10c67dda52369) Thanks [@camertron](https://github.com/camertron)! - Replace YAML load with YAML safe load with allowed classes list
|
1015
|
+
|
1016
|
+
- [#1254](https://github.com/primer/view_components/pull/1254) [`fc2fbace`](https://github.com/primer/view_components/commit/fc2fbace9c4728dea582df40efde118cfe8ac6a8) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - cleaning up the BlankSlate component to ensure it follows current standards for beta components
|
1017
|
+
|
1018
|
+
## 0.0.85
|
1019
|
+
|
1020
|
+
### Patch Changes
|
1021
|
+
|
1022
|
+
- [#1239](https://github.com/primer/view_components/pull/1239) [`bc9e8385`](https://github.com/primer/view_components/commit/bc9e8385894b708929d0e58a63681572493f090e) Thanks [@langermank](https://github.com/langermank)! - Remove deprecated params added for autocomplete beta
|
1023
|
+
|
1024
|
+
## 0.0.84
|
1025
|
+
|
1026
|
+
### Patch Changes
|
1027
|
+
|
1028
|
+
- [#1189](https://github.com/primer/view_components/pull/1189) [`ec3af746`](https://github.com/primer/view_components/commit/ec3af746dceb8e4a0c967fe270f149d48e81489b) Thanks [@langermank](https://github.com/langermank)! - Autocomplete design updates
|
1029
|
+
|
1030
|
+
* [#1229](https://github.com/primer/view_components/pull/1229) [`5631d286`](https://github.com/primer/view_components/commit/5631d286c559cf4bbb96b85c0bb41dbeda5953d4) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - component generator: correcting template and thor tasks to account for component status
|
1031
|
+
|
1032
|
+
- [#1232](https://github.com/primer/view_components/pull/1232) [`3a154bf4`](https://github.com/primer/view_components/commit/3a154bf4452f5ed8f7694eb917c13258d34ff6c0) Thanks [@jonrohan](https://github.com/jonrohan)! - Consolidating view_components previews into test/previews/ folder
|
1033
|
+
|
1034
|
+
* [#1224](https://github.com/primer/view_components/pull/1224) [`2fc38746`](https://github.com/primer/view_components/commit/2fc387460e5f185463cbca8ffe0f098a06e2dec8) Thanks [@camertron](https://github.com/camertron)! - Add the ConditionalWrapper for conditionally wrapping content
|
1035
|
+
|
1036
|
+
- [#1234](https://github.com/primer/view_components/pull/1234) [`ee04a4a9`](https://github.com/primer/view_components/commit/ee04a4a937c56156b3232552c7d10b0ec0336ab7) Thanks [@mxriverlynn](https://github.com/mxriverlynn)! - updating links in the contributing docs to point to correct locations
|
1037
|
+
|
1038
|
+
## 0.0.83
|
1039
|
+
|
1040
|
+
### Patch Changes
|
1041
|
+
|
1042
|
+
- [#1222](https://github.com/primer/view_components/pull/1222) [`d48f6c4b`](https://github.com/primer/view_components/commit/d48f6c4ba45945ad87e81ea98e16d36347a864eb) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding listen path for the app/components folder
|
1043
|
+
|
1044
|
+
* [#1223](https://github.com/primer/view_components/pull/1223) [`c675cfe1`](https://github.com/primer/view_components/commit/c675cfe15425ad61f89c0d9f78c6f5ad36f11f75) Thanks [@khiga8](https://github.com/khiga8)! - Update README.md
|
1045
|
+
|
1046
|
+
- [#1215](https://github.com/primer/view_components/pull/1215) [`32a8b21f`](https://github.com/primer/view_components/commit/32a8b21f5d0281ce10504946c8541520764310ac) Thanks [@khiga8](https://github.com/khiga8)! - Add `DeprecatedComponents` ERB lint rule
|
1047
|
+
|
1048
|
+
* [#1228](https://github.com/primer/view_components/pull/1228) [`ab9dfabc`](https://github.com/primer/view_components/commit/ab9dfabc92b7914f10828ffd6580a91508eae764) Thanks [@khiga8](https://github.com/khiga8)! - Update devcontainer.json with ERB lint extension
|
1049
|
+
|
1050
|
+
- [#1227](https://github.com/primer/view_components/pull/1227) [`85fdb403`](https://github.com/primer/view_components/commit/85fdb40385cf59dd181aceff56c4991515a7f3fe) Thanks [@keithamus](https://github.com/keithamus)! - Upgrade JS packages
|
1051
|
+
|
1052
|
+
* [#1216](https://github.com/primer/view_components/pull/1216) [`e3de2bb4`](https://github.com/primer/view_components/commit/e3de2bb466518b380ef87b1f4a2433fdc3bbbfcc) Thanks [@jonrohan](https://github.com/jonrohan)! - Move lookbook previews from the lookbook folder to the main project
|
1053
|
+
|
1054
|
+
## 0.0.82
|
1055
|
+
|
1056
|
+
### Patch Changes
|
1057
|
+
|
1058
|
+
- [#1211](https://github.com/primer/view_components/pull/1211) [`047c6be6`](https://github.com/primer/view_components/commit/047c6be6f601192255a3611940e46fc5a24b46bd) Thanks [@camertron](https://github.com/camertron)! - Don't lint ERB files with Rubocop
|
1059
|
+
|
1060
|
+
* [#1210](https://github.com/primer/view_components/pull/1210) [`7b3d5941`](https://github.com/primer/view_components/commit/7b3d59415d846e254128d04253fadfdb399c8c84) Thanks [@camertron](https://github.com/camertron)! - Silence polymorphic slots warning message
|
1061
|
+
|
1062
|
+
## 0.0.81
|
1063
|
+
|
1064
|
+
### Patch Changes
|
1065
|
+
|
1066
|
+
- [#1200](https://github.com/primer/view_components/pull/1200) [`a6505054`](https://github.com/primer/view_components/commit/a6505054a07ae006c9d48e19a2b4be6c2e2663b3) Thanks [@camertron](https://github.com/camertron)! - Use Rubocop cops to lint .erb files
|
1067
|
+
|
1068
|
+
* [#1201](https://github.com/primer/view_components/pull/1201) [`de2c7d68`](https://github.com/primer/view_components/commit/de2c7d68ff7d13135c04f5dd40a1e547e41923ba) Thanks [@camertron](https://github.com/camertron)! - Add xsmall size for octicons
|
1069
|
+
|
1070
|
+
## 0.0.80
|
1071
|
+
|
1072
|
+
### Patch Changes
|
1073
|
+
|
1074
|
+
- [#1192](https://github.com/primer/view_components/pull/1192) [`d9440694`](https://github.com/primer/view_components/commit/d9440694cccd6eee9642ee74a1f2c351c83de1e7) Thanks [@camertron](https://github.com/camertron)! - Fix sidebar link to the Flash component in docs
|
1075
|
+
|
1076
|
+
* [#1199](https://github.com/primer/view_components/pull/1199) [`3c16e7b3`](https://github.com/primer/view_components/commit/3c16e7b3825d9644a0628edf3d317c3418a9ca03) Thanks [@BlakeWilliams](https://github.com/BlakeWilliams)! - Prevent slot from overriding component system_arguments
|
1077
|
+
|
1078
|
+
- [#1191](https://github.com/primer/view_components/pull/1191) [`d82359d6`](https://github.com/primer/view_components/commit/d82359d6ea677ffa17c134536bfe660e27ce4851) Thanks [@camertron](https://github.com/camertron)! - Fix PVC installation docs to mention correct Javascript include
|
1079
|
+
|
1080
|
+
* [#1198](https://github.com/primer/view_components/pull/1198) [`63977720`](https://github.com/primer/view_components/commit/63977720e421d06942320c79345536a52ff4f9e2) Thanks [@camertron](https://github.com/camertron)! - Add ActionList linter
|
1081
|
+
|
1082
|
+
- [#1194](https://github.com/primer/view_components/pull/1194) [`568f312c`](https://github.com/primer/view_components/commit/568f312cce81250d6699027febb6ff3816532ca8) Thanks [@camertron](https://github.com/camertron)! - Remove version manager files
|
1083
|
+
|
1084
|
+
## 0.0.79
|
1085
|
+
|
1086
|
+
### Patch Changes
|
1087
|
+
|
1088
|
+
- [#1188](https://github.com/primer/view_components/pull/1188) [`fb7218ac`](https://github.com/primer/view_components/commit/fb7218ac5c4de2253cb627c99bc9469635cde98b) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Revert leftover deprecated arguments from 1163.
|
1089
|
+
|
1090
|
+
## 0.0.78
|
1091
|
+
|
1092
|
+
### Patch Changes
|
1093
|
+
|
1094
|
+
- [#1186](https://github.com/primer/view_components/pull/1186) [`ff2c3fe1`](https://github.com/primer/view_components/commit/ff2c3fe1913d7a1d65dbd4f608b68155ed247bef) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Revert #1163, as additional work will be needed to ship those changes to production successfully.
|
1095
|
+
|
1096
|
+
## 0.0.77
|
1097
|
+
|
1098
|
+
### Patch Changes
|
1099
|
+
|
1100
|
+
- [#1185](https://github.com/primer/view_components/pull/1185) [`66a15b1a`](https://github.com/primer/view_components/commit/66a15b1a556e9814109317729b729dbee5316594) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Rename FlashComponent to Flash
|
1101
|
+
|
1102
|
+
* [#1183](https://github.com/primer/view_components/pull/1183) [`84b9e4ef`](https://github.com/primer/view_components/commit/84b9e4ef60c9f0d1c2df830f247f2a55aac82783) Thanks [@camertron](https://github.com/camertron)! - Remove trailing newlines from the output of LinkComponent
|
1103
|
+
|
1104
|
+
## 0.0.76
|
1105
|
+
|
1106
|
+
### Patch Changes
|
1107
|
+
|
1108
|
+
- [#1182](https://github.com/primer/view_components/pull/1182) [`33fc7907`](https://github.com/primer/view_components/commit/33fc7907b0476bebd1d2c54e3e9c335b5e12da3b) Thanks [@camertron](https://github.com/camertron)! - Adjust DeprecatedArguments cop to handle boolean values
|
1109
|
+
|
1110
|
+
* [#1179](https://github.com/primer/view_components/pull/1179) [`aa7afef2`](https://github.com/primer/view_components/commit/aa7afef27dff6baac2d98e23d47194fbfddbe181) Thanks [@maxbeizer](https://github.com/maxbeizer)! - Add `role` to system args docs.
|
1111
|
+
|
1112
|
+
- [#1180](https://github.com/primer/view_components/pull/1180) [`3dfcf015`](https://github.com/primer/view_components/commit/3dfcf015af0e301e54a15986cb114ccf84dd65d9) Thanks [@joelhawksley](https://github.com/joelhawksley)! - Upgrading view_component
|
1113
|
+
- Bump to latest release of [view_component 2.56.0](https://github.com/github/view_component/releases/tag/v2.56.0).
|
1114
|
+
- Remove dependency on the now-changed private `@rendered_component` api.
|
1115
|
+
|
1116
|
+
## 0.0.75
|
1117
|
+
|
1118
|
+
### Patch Changes
|
1119
|
+
|
1120
|
+
- [#1163](https://github.com/primer/view_components/pull/1163) [`1fabdc63`](https://github.com/primer/view_components/commit/1fabdc636e44094cebbaf58bfde7c15e2231016a) Thanks [@langermank](https://github.com/langermank)! - Autocomplete design updates
|
1121
|
+
|
1122
|
+
## 0.0.74
|
1123
|
+
|
1124
|
+
### Patch Changes
|
1125
|
+
|
1126
|
+
- [#1150](https://github.com/primer/view_components/pull/1150) [`36702a8e`](https://github.com/primer/view_components/commit/36702a8e621766772fe09d80de74c4debe8950fd) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding changesets workflow to the repository for managing releases.
|
1127
|
+
|
1128
|
+
* [#1153](https://github.com/primer/view_components/pull/1153) [`8b21a680`](https://github.com/primer/view_components/commit/8b21a6808f5a9b18bd8b436b07b5b8b84b5a7397) Thanks [@camertron](https://github.com/camertron)! - Add a linter for calls to super in templates
|
1129
|
+
|
1130
|
+
- [#1141](https://github.com/primer/view_components/pull/1141) [`300f79a7`](https://github.com/primer/view_components/commit/300f79a762c71397de90f8d1cada529b9e9d63b6) Thanks [@maxbeizer](https://github.com/maxbeizer)! - AutoComplete component does not apply stacked label class if the label is not visible
|
1131
|
+
|
1132
|
+
## 0.0.73
|
1133
|
+
|
1134
|
+
### Bug
|
1135
|
+
|
1136
|
+
- Add conditional check for shadow root to avoid errors.
|
1137
|
+
|
1138
|
+
_Kate Higa_
|
1139
|
+
|
1140
|
+
## 0.0.72
|
1141
|
+
|
1142
|
+
### Bug
|
1143
|
+
|
1144
|
+
- Fix tooltip arrow being off-centered for `s` and `n`.
|
1145
|
+
- Revert tooltip arrow offset for `sw`, `se`, `nw`, and `ne`.
|
1146
|
+
|
1147
|
+
_Kate Higa_
|
1148
|
+
|
1149
|
+
### Misc
|
1150
|
+
|
1151
|
+
- Adding [lookbook](https://github.com/allmarkedup/lookbook) dev server to the project.
|
1152
|
+
|
1153
|
+
_Jon Rohan_
|
1154
|
+
|
1155
|
+
- Bump @primer/behaviors and remove dead code.
|
1156
|
+
|
1157
|
+
_Kate Higa_
|
1158
|
+
|
1159
|
+
- Enable `eslint-plugin-custom-elements` linting rulesets.
|
1160
|
+
|
1161
|
+
_Kate Higa_, _Kristján Oddsson_
|
1162
|
+
|
1163
|
+
- Introduce `DeprecatedComponents` rubocop rule.
|
1164
|
+
|
1165
|
+
_Kate Higa_
|
1166
|
+
|
1167
|
+
- Fix alphabetization of components in docs.
|
1168
|
+
|
1169
|
+
_David Wilson_
|
1170
|
+
|
1171
|
+
- Give codespaces more memory (4gb is not sufficient).
|
1172
|
+
|
1173
|
+
_Lindsey Wild_
|
1174
|
+
_Cameron Dutro_
|
1175
|
+
|
1176
|
+
- Rewrite the documentation for deploying the Rails storybook.
|
1177
|
+
|
1178
|
+
_Cameron Dutro_
|
1179
|
+
|
1180
|
+
### Bug Fixes
|
1181
|
+
|
1182
|
+
- Ensure that no whitespace is added inside LinkComponent.
|
1183
|
+
|
1184
|
+
_Sam Morrow_
|
1185
|
+
|
1186
|
+
### Misc
|
1187
|
+
|
1188
|
+
- Update documentation to reflect deprecation of `require "view_component/engine"`
|
1189
|
+
|
1190
|
+
_Leo Correa_
|
1191
|
+
|
1192
|
+
## 0.0.71
|
1193
|
+
|
1194
|
+
### Updates
|
1195
|
+
|
1196
|
+
- Add responsive values for `text_align` system argument
|
1197
|
+
|
1198
|
+
_Lukas Spieß_
|
1199
|
+
|
1200
|
+
## 0.0.70
|
1201
|
+
|
1202
|
+
### New
|
1203
|
+
|
1204
|
+
- Add `Tooltip` support to `Button`.
|
1205
|
+
|
1206
|
+
_Hector Garcia_
|
1207
|
+
|
1208
|
+
- Add `Tooltip` support to `Link`.
|
1209
|
+
|
1210
|
+
_Hector Garcia_
|
1211
|
+
|
1212
|
+
### Updates
|
1213
|
+
|
1214
|
+
- Bumps @primer/css to 19.7.1
|
1215
|
+
_Kate Higa_
|
1216
|
+
|
1217
|
+
- Bumps auto-complete package to 3.1.0
|
1218
|
+
- Updates AutoComplete API with optional clear button, restricted icon, and other argument restrictions
|
1219
|
+
|
1220
|
+
_Lindsey Wild_, _Kate Higa_, _Owen Niblock_
|
1221
|
+
|
1222
|
+
- Check for the `gh` CLI tool in release scripts.
|
1223
|
+
|
1224
|
+
_Cameron Dutro_
|
1225
|
+
|
1226
|
+
### Bug Fixes
|
1227
|
+
|
1228
|
+
- Ensure tooltip arrow position and tooltip width is correct.
|
1229
|
+
|
1230
|
+
_Kate Higa_
|
1231
|
+
|
1232
|
+
- Fix `.eslintrc.json` `.ts` files override.
|
1233
|
+
|
1234
|
+
_Hector Garcia_
|
1235
|
+
|
1236
|
+
## 0.0.69
|
1237
|
+
|
1238
|
+
### New
|
1239
|
+
|
1240
|
+
- Add ability to attach custom CSS classes to items added to `Truncate` components.
|
1241
|
+
|
1242
|
+
_Cameron Dutro_
|
1243
|
+
|
1244
|
+
- Add `Primer::Alpha::Tooltip` component
|
1245
|
+
|
1246
|
+
_Kate Higa_, _Kristján Oddsson_
|
1247
|
+
|
1248
|
+
### Breaking Changes
|
1249
|
+
|
1250
|
+
- Module for [script/update-statuses-project.rb](script/update-statuses-project.rb) changed to `GitHub`
|
1251
|
+
|
1252
|
+
_Josh Soref_
|
1253
|
+
|
1254
|
+
### Misc
|
1255
|
+
|
1256
|
+
- Spelling fixes
|
1257
|
+
|
1258
|
+
_Josh Soref_
|
1259
|
+
|
1260
|
+
- Bump view_component in Gemfile.lock files
|
1261
|
+
|
1262
|
+
_Cameron Dutro_
|
1263
|
+
|
1264
|
+
- Remove markdown file mistakenly checked in.
|
1265
|
+
|
1266
|
+
_Kate Higa_
|
1267
|
+
|
1268
|
+
- Upgrade octicons to >= 17.0.0
|
1269
|
+
|
1270
|
+
_Jon Rohan_
|
1271
|
+
|
1272
|
+
### Bug Fixes
|
1273
|
+
|
1274
|
+
- Fix missing @primer/components dependency.
|
1275
|
+
|
1276
|
+
_Hector Garcia_
|
1277
|
+
|
1278
|
+
## 0.0.68
|
1279
|
+
|
1280
|
+
### Updates
|
1281
|
+
|
1282
|
+
- Add accessible labels to Search AutoComplete when provided with an icon.
|
1283
|
+
|
1284
|
+
_Andri Alexandrou_
|
1285
|
+
|
1286
|
+
- Restricts children for AutoComplete API to prevent accessibility violations and misuse
|
1287
|
+
|
1288
|
+
_Lindsey Wild_
|
1289
|
+
|
1290
|
+
- Migrate from Heroku to Azure for the Rails storybook server.
|
1291
|
+
- Build storybook static assets into Docker image.
|
1292
|
+
|
1293
|
+
_Cameron Dutro_
|
1294
|
+
|
1295
|
+
- Remove CSS utilities from Blankslate
|
1296
|
+
|
1297
|
+
_Hector Garcia_
|
1298
|
+
|
1299
|
+
- Improve last example on the PopoverComponent docs
|
1300
|
+
|
1301
|
+
_Hector Garcia_
|
1302
|
+
|
1303
|
+
### Bug Fixes
|
1304
|
+
|
1305
|
+
- Fix live reloading during local docs development.
|
1306
|
+
|
1307
|
+
_Cameron Dutro_
|
1308
|
+
|
1309
|
+
- Fix sequence of content in Subhead.
|
1310
|
+
|
1311
|
+
_Hector Garcia_
|
1312
|
+
|
1313
|
+
### Deprecations
|
1314
|
+
|
1315
|
+
- Deprecate `Tooltip` component.
|
1316
|
+
|
1317
|
+
_Kate Higa_
|
1318
|
+
|
1319
|
+
### Misc
|
1320
|
+
|
1321
|
+
- Updates README with missing `alt` attribute on image
|
1322
|
+
|
1323
|
+
_Kate Higa_
|
1324
|
+
|
1325
|
+
- Updates contributing docs
|
1326
|
+
|
1327
|
+
_Lindsey Wild_
|
1328
|
+
|
1329
|
+
- Fix link in system arguments docs
|
1330
|
+
|
1331
|
+
_Lukas Spieß_
|
1332
|
+
|
1333
|
+
## 0.0.67
|
1334
|
+
|
1335
|
+
- Updating octicons to `> 16`
|
1336
|
+
|
1337
|
+
_Jon Rohan_
|
1338
|
+
|
1339
|
+
## 0.0.66
|
1340
|
+
|
1341
|
+
- Revert optimization changes to utilities.
|
1342
|
+
|
1343
|
+
_Josh Klina_
|
1344
|
+
|
1345
|
+
## 0.0.65
|
1346
|
+
|
1347
|
+
### Breaking Changes
|
1348
|
+
|
1349
|
+
- Revert accessibility changes to `Spinner` introduced since 0.0.60.
|
1350
|
+
|
1351
|
+
_Charlotte Dann_
|
1352
|
+
|
1353
|
+
### Updates
|
1354
|
+
|
1355
|
+
- Optimize logic for converting class names into args
|
1356
|
+
|
1357
|
+
_Josh Klina_
|
1358
|
+
|
1359
|
+
### Deprecations
|
1360
|
+
|
1361
|
+
- Deprecate `variant` in favor of `size` in `ButtonComponent` and `ButtonGroup`.
|
1362
|
+
|
1363
|
+
_Manuel Puyol_
|
1364
|
+
|
1365
|
+
### Bug Fixes
|
1366
|
+
|
1367
|
+
- Call `image_path` on `Primer::Image#src`.
|
1368
|
+
|
1369
|
+
_Manuel Puyol_
|
1370
|
+
|
1371
|
+
## 0.0.64
|
1372
|
+
|
1373
|
+
### New
|
1374
|
+
|
1375
|
+
- Add `raise_on_invalid_aria` config option to silence `aria-label` errors.
|
1376
|
+
|
1377
|
+
_Manuel Puyol_
|
1378
|
+
|
1379
|
+
### Bug Fixes
|
1380
|
+
|
1381
|
+
- Add missing `border: 0`, `font_size: 0` and responsive `flex` system arguments.
|
1382
|
+
|
1383
|
+
_Manuel Puyol_
|
1384
|
+
|
1385
|
+
## 0.0.63
|
1386
|
+
|
1387
|
+
### Breaking Changes
|
1388
|
+
|
1389
|
+
- Rename `caret` argument to `dropdown` in `ButtonComponent`.
|
1390
|
+
|
1391
|
+
_Manuel Puyol_
|
1392
|
+
|
1393
|
+
- Remove `:large` variant from `ButtonComponent`.
|
1394
|
+
|
1395
|
+
_Manuel Puyol_
|
1396
|
+
|
1397
|
+
- Update `Spinner` to add system arguments to outermost element
|
1398
|
+
|
1399
|
+
_Charlotte Dann_
|
1400
|
+
|
1401
|
+
### Deprecations
|
1402
|
+
|
1403
|
+
- Deprecate `icon` and `counter` slots in `ButtonComponent` in favor of `leading_visual` and `trailing_visual`.
|
1404
|
+
|
1405
|
+
_Manuel Puyol_
|
1406
|
+
|
1407
|
+
### Bug Fixes
|
1408
|
+
|
1409
|
+
- Fix `PopoverComponent`, allowing to reset `left` and `right` positioning.
|
1410
|
+
|
1411
|
+
_Manuel Puyol_
|
1412
|
+
|
1413
|
+
## 0.0.62
|
1414
|
+
|
1415
|
+
### New
|
1416
|
+
|
1417
|
+
- Add linter for tracking deprecated `LayoutComponent` callsites
|
1418
|
+
|
1419
|
+
_Josh Klina_
|
1420
|
+
|
1421
|
+
- Add functional `Label` schemes: `accent`, `attention`, `severe`, `done` and `sponsors`.
|
1422
|
+
|
1423
|
+
_Manuel Puyol, Simon Luthi_
|
1424
|
+
|
1425
|
+
- Add linter to migrate from deprecated `Label` schemes to the new ones.
|
1426
|
+
|
1427
|
+
_Manuel Puyol_
|
1428
|
+
|
1429
|
+
### Updates
|
1430
|
+
|
1431
|
+
- Update `Button` to add `8px` spacing between icon, text and counter.
|
1432
|
+
|
1433
|
+
_Manuel Puyol_
|
1434
|
+
|
1435
|
+
- Update `BlankslateApiMigration` linter to support interpolations.
|
1436
|
+
|
1437
|
+
_Manuel Puyol_
|
1438
|
+
|
1439
|
+
- Change spacing in `Blankslate`:
|
1440
|
+
|
1441
|
+
- Between `description` and `primary_action` to `32px`.
|
1442
|
+
- Between `primary_action` and `secondary_action` to `16px`.
|
1443
|
+
|
1444
|
+
_Manuel Puyol_
|
1445
|
+
|
1446
|
+
- Improve performance of `Classify#call`.
|
1447
|
+
|
1448
|
+
_Cameron Dutro_
|
1449
|
+
|
1450
|
+
### Breaking Changes
|
1451
|
+
|
1452
|
+
- Add a warning to users if they try to use `tag:` parameters on a component where the tag is fixed.
|
1453
|
+
|
1454
|
+
_Owen Niblock_
|
1455
|
+
|
1456
|
+
- Updating to @primer/css@19.0.0 and @primer/primitives@7.1.0. Which removes support for deprecated system color arguments.
|
1457
|
+
|
1458
|
+
_Jon Rohan_
|
1459
|
+
|
1460
|
+
- Prevent `aria-label` to be used with `:div, :span, :p` tags without an explicit `role`.
|
1461
|
+
|
1462
|
+
_Manuel Puyol_
|
1463
|
+
|
1464
|
+
### Deprecations
|
1465
|
+
|
1466
|
+
- Deprecate `Label` schemes `info` and `warning` in favor of `accent` and `attention`.
|
1467
|
+
|
1468
|
+
_Manuel Puyol, Simon Luthi_
|
1469
|
+
|
1470
|
+
## 0.0.61
|
1471
|
+
|
1472
|
+
### New
|
1473
|
+
|
1474
|
+
- Adding new Alpha component: `Layout` with `main` and `sidebar` slots
|
1475
|
+
|
1476
|
+
_Cameron Dutro_
|
1477
|
+
|
1478
|
+
- Add a two-column layout linter.
|
1479
|
+
|
1480
|
+
_Cameron Dutro_
|
1481
|
+
|
1482
|
+
- Add the `HellipButton` component
|
1483
|
+
|
1484
|
+
_Amélia Chavot_, _Owen Niblock_
|
1485
|
+
|
1486
|
+
### Updates
|
1487
|
+
|
1488
|
+
- Bump Storybook version to include Skip to Content links for keyboard auditors.
|
1489
|
+
|
1490
|
+
_Katie Foster @inkblotty_
|
1491
|
+
|
1492
|
+
- Update the `HiddenTextExpander` component to use the `HellipButton`.
|
1493
|
+
|
1494
|
+
_Amélia Chavot_, _Owen Niblock_
|
1495
|
+
|
1496
|
+
### Misc
|
1497
|
+
|
1498
|
+
- Fix components not rendering in Storybook because of kebab case arguments.
|
1499
|
+
|
1500
|
+
_Amélia Chavot_, _Manuel Puyol_, _Owen Niblock_
|
1501
|
+
|
1502
|
+
- Fix a typo on a command on the contribution page.
|
1503
|
+
|
1504
|
+
_Amélia Chavot_, _Owen Niblock_
|
1505
|
+
|
1506
|
+
### Bug Fixes
|
1507
|
+
|
1508
|
+
- Fix issue where tags were not self-closing when they are void elements.
|
1509
|
+
|
1510
|
+
_Owen Niblock_
|
1511
|
+
|
1512
|
+
### Deprecations
|
1513
|
+
|
1514
|
+
- Deprecate `Primer::BlankslateComponent` in favor of `Primer::Beta::Blankslate`.
|
1515
|
+
|
1516
|
+
_Manuel Puyol_
|
1517
|
+
|
1518
|
+
### Breaking Changes
|
1519
|
+
|
1520
|
+
- Require an `aria-label` to be provided for the `HiddenTextExpander` component.
|
1521
|
+
|
1522
|
+
_Amélia Chavot_, _Owen Niblock_
|
1523
|
+
|
1524
|
+
- Rename `force_system_arguments` to `raise_on_invalid_options` to better reflect its functionality
|
1525
|
+
|
1526
|
+
_Owen Niblock_
|
1527
|
+
|
1528
|
+
- Renamed `Blankslate` `title` slot to `heading`.
|
1529
|
+
|
1530
|
+
_Manuel Puyol_
|
1531
|
+
|
1532
|
+
- Removed `Blankslate` `large` variant.
|
1533
|
+
|
1534
|
+
_Manuel Puyol_
|
1535
|
+
|
1536
|
+
- Renamed `Blankslate` `graphic` slot to `visual`.
|
1537
|
+
|
1538
|
+
_Manuel Puyol_
|
1539
|
+
|
1540
|
+
## 0.0.60
|
1541
|
+
|
1542
|
+
### Updates
|
1543
|
+
|
1544
|
+
- Adding new Alpha component: BorderBox Header with optional `title` slot
|
1545
|
+
|
1546
|
+
_Katie Foster @inkblotty_
|
1547
|
+
|
1548
|
+
- Add note about `Breadcrumbs` not being responsive.
|
1549
|
+
|
1550
|
+
_Joel Hawksley_
|
1551
|
+
|
1552
|
+
- Handling arguments that aren't system arguments or string arguments in primer_octicon.
|
1553
|
+
|
1554
|
+
_Jon Rohan, Manuel Puyol_
|
1555
|
+
|
1556
|
+
- Improvements to the Procfile so script/dev works as expected.
|
1557
|
+
|
1558
|
+
_Cameron Dutro_
|
1559
|
+
|
1560
|
+
- Migrating grid classes to utilities.yml process
|
1561
|
+
|
1562
|
+
_Jon Rohan_
|
1563
|
+
|
1564
|
+
- Adding new system color arguments, and deprecating old arguments.
|
1565
|
+
|
1566
|
+
_Jon Rohan_
|
1567
|
+
|
1568
|
+
- Make `Spinner` more accessible by adding `sr-only` loading text.
|
1569
|
+
|
1570
|
+
_Manuel Puyol_
|
1571
|
+
|
1572
|
+
- Make class name validation configurable instead of relying on the Rails env.
|
1573
|
+
|
1574
|
+
_Cameron Dutro_
|
1575
|
+
|
1576
|
+
### Bug Fixes
|
1577
|
+
|
1578
|
+
- Removes unwanted bottom border from active tab of `Alpha::TabNav`.
|
1579
|
+
|
1580
|
+
_Ned Schwartz_
|
1581
|
+
|
1582
|
+
### Breaking changes
|
1583
|
+
|
1584
|
+
- Add size restriction to `Avatar`.
|
1585
|
+
|
1586
|
+
_Kate Higa_
|
1587
|
+
|
1588
|
+
- Remove `square` attribute from `Avatar` in favor of `shape`. This change also affects `TimelineItem` `avatar` slot.
|
1589
|
+
|
1590
|
+
_Manuel Puyol_
|
1591
|
+
|
1592
|
+
## 0.0.59
|
1593
|
+
|
1594
|
+
### Updates
|
1595
|
+
|
1596
|
+
- Changed `ClipboardCopy` to use `copy` instead of `paste` icon.
|
1597
|
+
|
1598
|
+
_Cole Bemis_
|
1599
|
+
|
1600
|
+
### Breaking changes
|
1601
|
+
|
1602
|
+
- `Breadcrumbs` no longer accepts padding and font size system arguments.
|
1603
|
+
|
1604
|
+
_Joel Hawksley_
|
1605
|
+
|
1606
|
+
## 0.0.58
|
1607
|
+
|
1608
|
+
### Updates
|
1609
|
+
|
1610
|
+
- Add accessibility section to `Breadcrumbs` page.
|
1611
|
+
|
1612
|
+
_Kate Higa_
|
1613
|
+
|
1614
|
+
- Improve performance of the Classify module, i.e. `Classify.call`.
|
1615
|
+
|
1616
|
+
_Cameron Dutro_
|
1617
|
+
|
1618
|
+
- Background arguments are now pulled in through the utilities class.
|
1619
|
+
|
1620
|
+
_Jon Rohan_
|
1621
|
+
|
1622
|
+
- Border arguments are now pulled in through the utilities class.
|
1623
|
+
|
1624
|
+
_Jon Rohan_
|
1625
|
+
|
1626
|
+
### Breaking changes
|
1627
|
+
|
1628
|
+
- `bg:` system argument will no longer accept hex color strings, and deprecated color scale.
|
1629
|
+
|
1630
|
+
_Jon Rohan_
|
1631
|
+
|
1632
|
+
### Bug fixes
|
1633
|
+
|
1634
|
+
- Fix `ClipboardCopy` octicons not toggling correctly after first click.
|
1635
|
+
|
1636
|
+
_Manuel Puyol, Kristján Oddsson_
|
1637
|
+
|
1638
|
+
## 0.0.57
|
1639
|
+
|
1640
|
+
### Bug fixes
|
1641
|
+
|
1642
|
+
- Don't suggest empty colors for Octicons when autocorrecting.
|
1643
|
+
|
1644
|
+
_Manuel Puyol_
|
1645
|
+
|
1646
|
+
## 0.0.56
|
1647
|
+
|
1648
|
+
### Updates
|
1649
|
+
|
1650
|
+
- `Octicon` linter will autocorrect colors.
|
1651
|
+
|
1652
|
+
_Manuel Puyol_
|
1653
|
+
|
1654
|
+
- `Button` linter will autocorrect when button uses `href`, `name`, `value` or `tabindex`.
|
1655
|
+
|
1656
|
+
_Manuel Puyol_
|
1657
|
+
|
1658
|
+
- `Flash` linter won't autocorrect flashes with ERB in their content.
|
1659
|
+
|
1660
|
+
_Manuel Puyol_
|
1661
|
+
|
1662
|
+
- Eager load components.
|
1663
|
+
|
1664
|
+
_Cameron Dutro_
|
1665
|
+
|
1666
|
+
### Misc
|
1667
|
+
|
1668
|
+
- Refactor some of the rubocop valid_node? logic into BaseCop class.
|
1669
|
+
|
1670
|
+
_Jon Rohan_
|
1671
|
+
|
1672
|
+
- Fix validation checker to use Utilities for color-\* classes.
|
1673
|
+
|
1674
|
+
_Jon Rohan_
|
1675
|
+
|
1676
|
+
## 0.0.55
|
1677
|
+
|
1678
|
+
### Breaking changes
|
1679
|
+
|
1680
|
+
- `Primer::Breadcrumbs` requires `href`s for all items and no longer accepts the `selected` argument.
|
1681
|
+
|
1682
|
+
_Joel Hawksley_
|
1683
|
+
|
1684
|
+
- Split `TabNav` into `TabNav` and `TabPanels`.
|
1685
|
+
|
1686
|
+
_Kate Higa_
|
1687
|
+
|
1688
|
+
### New
|
1689
|
+
|
1690
|
+
- Use the allocation_stats gem to count object allocations in our benchmarks.
|
1691
|
+
- Improve performance of Octicon cache key construction.
|
1692
|
+
|
1693
|
+
_Cameron Dutro_
|
1694
|
+
|
1695
|
+
- Update `@primer/css` to `17.7.0` which includes a new argument for `word_break`
|
1696
|
+
|
1697
|
+
_Jon Rohan_
|
1698
|
+
|
1699
|
+
### Misc
|
1700
|
+
|
1701
|
+
- Clean up extra constants in `UnderlineNav`.
|
1702
|
+
|
1703
|
+
_Kate Higa_
|
1704
|
+
|
1705
|
+
## 0.0.54
|
1706
|
+
|
1707
|
+
### Breaking changes
|
1708
|
+
|
1709
|
+
- Rename `BreadcrumbComponent` to `Beta::Breadcrumbs`.
|
1710
|
+
|
1711
|
+
_Joel Hawksley_
|
1712
|
+
|
1713
|
+
- Split `UnderlineNavComponent` into `Alpha::UnderlineNav` and `Alpha::UnderlinePanels`.
|
1714
|
+
|
1715
|
+
_Kate Higa_
|
1716
|
+
|
1717
|
+
## 0.0.53
|
1718
|
+
|
1719
|
+
### New
|
1720
|
+
|
1721
|
+
- Add autocorrection to `FlashComponent` linter when the context is basic text.
|
1722
|
+
|
1723
|
+
_Manuel Puyol_
|
1724
|
+
|
1725
|
+
### Updates
|
1726
|
+
|
1727
|
+
- Linters won't mark offenses when the ignore count is correct unless explicitly configured to do so.
|
1728
|
+
|
1729
|
+
_Manuel Puyol_
|
1730
|
+
|
1731
|
+
- Deprecating background and border color presentational arguments
|
1732
|
+
|
1733
|
+
_Jon Rohan_
|
1734
|
+
|
1735
|
+
- Map the `for` argument when autofixing `ClipboardCopy` migrations.
|
1736
|
+
|
1737
|
+
_Kristján Oddsson_
|
1738
|
+
|
1739
|
+
- Add autocorrection for `CloseButton` linter.
|
1740
|
+
|
1741
|
+
_Manuel Puyol_
|
1742
|
+
|
1743
|
+
- Moving text color variables to Utilities class
|
1744
|
+
|
1745
|
+
_Jon Rohan_
|
1746
|
+
|
1747
|
+
### Bug fixes
|
1748
|
+
|
1749
|
+
- Linters won't convert HTML special elements.
|
1750
|
+
|
1751
|
+
_Manuel Puyol_
|
1752
|
+
|
1753
|
+
### Misc
|
1754
|
+
|
1755
|
+
- Only run CHANGELOG CI on pull requests.
|
1756
|
+
|
1757
|
+
_Manuel Puyol_
|
1758
|
+
|
1759
|
+
- Run CI actions on pushes to main.
|
1760
|
+
|
1761
|
+
_Cameron Dutro_
|
1762
|
+
|
1763
|
+
- Get to 100% code coverage.
|
1764
|
+
|
1765
|
+
_Cameron Dutro_
|
1766
|
+
|
1767
|
+
## 0.0.52
|
1768
|
+
|
1769
|
+
### New
|
1770
|
+
|
1771
|
+
- Adding `Primer::Beta::Truncate` component to reflect changes in primer/css component [Truncate](https://primer.style/css/components/truncate).
|
1772
|
+
|
1773
|
+
_Jon Rohan_
|
1774
|
+
|
1775
|
+
- Add cop to look for deprecated system arguments and suggest replacements.
|
1776
|
+
|
1777
|
+
_Jon Rohan_
|
1778
|
+
|
1779
|
+
- Add cop to use `primer_octicon` in favor of `octicon`.
|
1780
|
+
|
1781
|
+
_Manuel Puyol_
|
1782
|
+
|
1783
|
+
- Fix release script so it doesn't loop continuously.
|
1784
|
+
|
1785
|
+
_Cameron Dutro_
|
1786
|
+
|
1787
|
+
### Updates
|
1788
|
+
|
1789
|
+
- Promote `ClipboardCopy` to beta.
|
1790
|
+
|
1791
|
+
_Manuel Puyol_
|
1792
|
+
|
1793
|
+
- PrimerOcticon linter supports `aria-` and `data-` attributes.
|
1794
|
+
|
1795
|
+
_Manuel Puyol_
|
1796
|
+
|
1797
|
+
- Linters can:
|
1798
|
+
|
1799
|
+
- convert values with ERB interpolations.
|
1800
|
+
- autocorrect cases with custom classes.
|
1801
|
+
|
1802
|
+
_Manuel Puyol_
|
1803
|
+
|
1804
|
+
- Add a `scheme` option to `BorderBoxComponent` rows.
|
1805
|
+
|
1806
|
+
_Cameron Dutro_
|
1807
|
+
|
1808
|
+
- Upgrade rubocop and support Ruby 3.0.
|
1809
|
+
|
1810
|
+
_Cameron Dutro_
|
1811
|
+
|
1812
|
+
- Linters will not autocorrect cases where a required argument is missing.
|
1813
|
+
|
1814
|
+
_Manuel Puyol_
|
1815
|
+
|
1816
|
+
### Misc
|
1817
|
+
|
1818
|
+
- Update benchmarks to run in every supported Ruby version.
|
1819
|
+
|
1820
|
+
_Manuel Puyol_
|
1821
|
+
|
1822
|
+
- Add a linter generator.
|
1823
|
+
|
1824
|
+
_Manuel Puyol_
|
1825
|
+
|
1826
|
+
## 0.0.51
|
1827
|
+
|
1828
|
+
### Breaking changes
|
1829
|
+
|
1830
|
+
- Rename `width` and `height` System Arguments to `w` and `h`, resolving conflict with HTML attribute names.
|
1831
|
+
|
1832
|
+
_Manuel Puyol_
|
1833
|
+
|
1834
|
+
### Updates
|
1835
|
+
|
1836
|
+
- `SystemArgumentInsteadOfClass` linter will check for arguments in ViewHelpers.
|
1837
|
+
|
1838
|
+
_Manuel Puyol_
|
1839
|
+
|
1840
|
+
## 0.0.50
|
1841
|
+
|
1842
|
+
### Updates
|
1843
|
+
|
1844
|
+
- Fix incorrect slots syntax in docs.
|
1845
|
+
|
1846
|
+
_Joel Hawksley_, _Blake Williams_
|
1847
|
+
|
1848
|
+
### New
|
1849
|
+
|
1850
|
+
- Add linter suggestions for `CloseButton` component.
|
1851
|
+
|
1852
|
+
_Manuel Puyol_
|
1853
|
+
|
1854
|
+
### Breaking changes
|
1855
|
+
|
1856
|
+
- Update to `octicons` `v15`, removing open-ended dependency. See [https://github.com/primer/octicons/releases/tag/v15.0.0] for icon name changes in release.
|
1857
|
+
|
1858
|
+
_Joel Hawksley_
|
1859
|
+
|
1860
|
+
### Updates
|
1861
|
+
|
1862
|
+
- Don't require `title` for `Label`.
|
1863
|
+
|
1864
|
+
_Manuel Puyol_
|
1865
|
+
|
1866
|
+
- Improve autocorrectable linters to convert known SystemArgument classes.
|
1867
|
+
|
1868
|
+
_Manuel Puyol_
|
1869
|
+
|
1870
|
+
- Add support for `width: :full` and `height: :full` to System Arguments.
|
1871
|
+
|
1872
|
+
_Joel Hawksley_
|
1873
|
+
|
1874
|
+
### Bug fixes
|
1875
|
+
|
1876
|
+
- Update linters to not autocorrect attributes with ERB blocks.
|
1877
|
+
|
1878
|
+
_Manuel Puyol_
|
1879
|
+
|
1880
|
+
- Fix `:height` and `:width` docs to pull from Utilities
|
1881
|
+
|
1882
|
+
_Jon Rohan_
|
1883
|
+
|
1884
|
+
## 0.0.49
|
1885
|
+
|
1886
|
+
### New
|
1887
|
+
|
1888
|
+
- Add linter suggestions for `Label` component.
|
1889
|
+
|
1890
|
+
_Manuel Puyol_
|
1891
|
+
|
1892
|
+
- Add linter suggestions for `ClipboardCopy` component.
|
1893
|
+
|
1894
|
+
_Manuel Puyol_
|
1895
|
+
|
1896
|
+
### Updates
|
1897
|
+
|
1898
|
+
- Update the `Truncate` component to accept `:strong` as a tag.
|
1899
|
+
|
1900
|
+
_Amélia Chavot_
|
1901
|
+
|
1902
|
+
- Improve `Primer::Classify::Utilities.classes_to_hash` performance.
|
1903
|
+
|
1904
|
+
_Manuel Puyol_
|
1905
|
+
|
1906
|
+
### Breaking changes
|
1907
|
+
|
1908
|
+
- Require tab with panels to have `panel_id` so `aria-controls` can be set.
|
1909
|
+
|
1910
|
+
_Kate Higa_
|
1911
|
+
|
1912
|
+
- Renames:
|
1913
|
+
|
1914
|
+
- `Primer::AvatarStackComponent` to `Primer::Beta::AvatarStack`.
|
1915
|
+
|
1916
|
+
_Manuel Puyol_
|
1917
|
+
|
1918
|
+
### Misc
|
1919
|
+
|
1920
|
+
- Extract example tag parsing into helper.
|
1921
|
+
|
1922
|
+
_Kate Higa_
|
1923
|
+
|
1924
|
+
- Generate a static constant JSON and use it when defining linters.
|
1925
|
+
|
1926
|
+
_Manuel Puyol_
|
1927
|
+
|
1928
|
+
## 0.0.48
|
1929
|
+
|
1930
|
+
### Breaking changes
|
1931
|
+
|
1932
|
+
- Ensure panels in `Navigation::Tab` have a label.
|
1933
|
+
|
1934
|
+
_Kate Higa_
|
1935
|
+
|
1936
|
+
### Misc
|
1937
|
+
|
1938
|
+
- Expose custom cops and default config for erblint.
|
1939
|
+
|
1940
|
+
_Manuel Puyol_
|
1941
|
+
|
1942
|
+
- Fix double constant assign.
|
1943
|
+
|
1944
|
+
_Manuel Puyol_
|
1945
|
+
|
1946
|
+
## 0.0.47
|
1947
|
+
|
1948
|
+
### Breaking changes
|
1949
|
+
|
1950
|
+
- Restrict tag for `Popover` to `:div` and `Popover` heading slot to headings.
|
1951
|
+
|
1952
|
+
_Kate Higa_
|
1953
|
+
|
1954
|
+
- Renames:
|
1955
|
+
|
1956
|
+
- `Primer::AutoComplete` to `Primer::Beta::AutoComplete`
|
1957
|
+
- `Primer::AutoComplete::Item` to `Primer::Beta::AutoComplete::Item`
|
1958
|
+
- `Primer::AvatarComponent` to `Primer::Beta::Avatar`
|
1959
|
+
|
1960
|
+
_Manuel Puyol_
|
1961
|
+
|
1962
|
+
### Misc
|
1963
|
+
|
1964
|
+
- Update `doc_examples_axe_test` to exclude non-standalone components and fix `Markdown` example.
|
1965
|
+
|
1966
|
+
_Kate Higa_
|
1967
|
+
|
1968
|
+
- Update `DetailsComponent` examples.
|
1969
|
+
|
1970
|
+
_Manuel Puyol_
|
1971
|
+
|
1972
|
+
- Add linter to suggest system arguments instead of classes.
|
1973
|
+
|
1974
|
+
_Manuel Puyol_
|
1975
|
+
|
1976
|
+
- Update component generator to create components in the right status module.
|
1977
|
+
|
1978
|
+
_Manuel Puyol_
|
1979
|
+
|
1980
|
+
- Add example for truncating HTML to `Truncate`.
|
1981
|
+
|
1982
|
+
_Joel Hawksley_
|
1983
|
+
|
1984
|
+
- Update docs generation to point to the correct file sources.
|
1985
|
+
|
1986
|
+
_Manuel Puyol_
|
1987
|
+
|
1988
|
+
- Add ENV flag to dump linter data into a file.
|
1989
|
+
|
1990
|
+
_Manuel Puyol_
|
1991
|
+
|
1992
|
+
## 0.0.46
|
1993
|
+
|
1994
|
+
### Updates
|
1995
|
+
|
1996
|
+
- Default to matching `name` and `id` of `input`.
|
1997
|
+
|
1998
|
+
_Kate Higa_
|
1999
|
+
|
2000
|
+
- Restrict usage of padding system arguments on BorderBox, recommending use of `padding` density instead.
|
2001
|
+
|
2002
|
+
_Joel Hawksley_
|
2003
|
+
|
2004
|
+
### Breaking changes
|
2005
|
+
|
2006
|
+
- Restrict `TabNav`and `Tab` tags.
|
2007
|
+
|
2008
|
+
_Kate Higa_
|
2009
|
+
|
2010
|
+
- Restrict `AvatarStack` body slot tag and `ImageCrop` spinner tag.
|
2011
|
+
|
2012
|
+
_Kate Higa_
|
2013
|
+
|
2014
|
+
- Restrict `Details` body slot tags and `UnderlineNav` body slot tags.
|
2015
|
+
|
2016
|
+
_Kate Higa_
|
2017
|
+
|
2018
|
+
- Move Primer::Classify from `app/lib/` to `lib/`. This requires an extra `require "primer/classify"` statement for anywhere Classify is needed.
|
2019
|
+
|
2020
|
+
_Manuel Puyol, Jon Rohan_
|
2021
|
+
|
2022
|
+
- Restrict `Menu` heading slot tags to heading tags and require `tag` argument.
|
2023
|
+
|
2024
|
+
_Kate Higa_
|
2025
|
+
|
2026
|
+
- Adding animation, vertical_align, word_break, display, visibility, & position arguments to the utilities class. `animation: :grow` is now `animation: :hover_grow` this was a change because we changed the class name in primer.
|
2027
|
+
|
2028
|
+
_Jon Rohan_
|
2029
|
+
|
2030
|
+
### Misc
|
2031
|
+
|
2032
|
+
- Update contributing guidelines with release instructions.
|
2033
|
+
|
2034
|
+
_Kate Higa_
|
2035
|
+
|
2036
|
+
- Prevent flexible tag syntax with rubocop rule.
|
2037
|
+
|
2038
|
+
_Kate Higa_
|
2039
|
+
|
2040
|
+
- Update linter autocorrection to use `""` instead of `true` for boolean attributes.
|
2041
|
+
|
2042
|
+
_Manuel Puyol_
|
2043
|
+
|
2044
|
+
- Update Storybook version.
|
2045
|
+
|
2046
|
+
_Manuel Puyol_
|
2047
|
+
|
2048
|
+
- Add a changelog authoring guide to `CHANGELOG.md`.
|
2049
|
+
|
2050
|
+
_Amélia Chavot_
|
2051
|
+
|
2052
|
+
## 0.0.45
|
2053
|
+
|
2054
|
+
### Updates
|
2055
|
+
|
2056
|
+
- Allow copying from elements using `for` in `ClipboardCopy`.
|
2057
|
+
|
2058
|
+
_Manuel Puyol_
|
2059
|
+
|
2060
|
+
### Breaking changes
|
2061
|
+
|
2062
|
+
- Remove `label` argument in favor of `aria-label` in `ClipboardCopy`.
|
2063
|
+
|
2064
|
+
_Manuel Puyol_
|
2065
|
+
|
2066
|
+
### Misc
|
2067
|
+
|
2068
|
+
- Add autocorrect for button linters.
|
2069
|
+
|
2070
|
+
_Manuel Puyol_
|
2071
|
+
|
2072
|
+
- Unify contributing guidelines.
|
2073
|
+
|
2074
|
+
_Kate Higa_
|
2075
|
+
|
2076
|
+
- Rerun flaky system tests.
|
2077
|
+
|
2078
|
+
_Manuel Puyol_
|
2079
|
+
|
2080
|
+
- Check if selector is a classify class in Utilities.
|
2081
|
+
|
2082
|
+
_Jon Rohan_
|
2083
|
+
|
2084
|
+
## 0.0.44
|
2085
|
+
|
2086
|
+
### Updates
|
2087
|
+
|
2088
|
+
- Allow `Dropdown` menu items to be rendered outside a list.
|
2089
|
+
|
2090
|
+
_Manuel Puyol_
|
2091
|
+
|
2092
|
+
### Breaking changes
|
2093
|
+
|
2094
|
+
- Require a label or `aria-label` to be provided for `AutoComplete` component.
|
2095
|
+
|
2096
|
+
_Kate Higa_
|
2097
|
+
|
2098
|
+
- Renames:
|
2099
|
+
|
2100
|
+
- `DropdownComponent` to `Dropdown`.
|
2101
|
+
- `Dropdown::MenuComponent` to `Dropdown::Menu`.
|
2102
|
+
- `Primer::ButtonMarketingComponent` to `Primer::Alpha::ButtonMarketing`.
|
2103
|
+
- `Primer::TextComponent` to `Primer::Beta::Text`.
|
2104
|
+
|
2105
|
+
_Manuel Puyol_
|
2106
|
+
|
2107
|
+
- Removes `summary_classes` attribute in favor of the `summary` slot in `Dropdown`.
|
2108
|
+
|
2109
|
+
_Manuel Puyol_
|
2110
|
+
|
2111
|
+
### Misc
|
2112
|
+
|
2113
|
+
- Replace Classify::Spacing class with pre-generated mappings.
|
2114
|
+
|
2115
|
+
_Jon Rohan_
|
2116
|
+
|
2117
|
+
- Add linter suggestions for `Button` component.
|
2118
|
+
|
2119
|
+
_Manuel Puyol_
|
2120
|
+
|
2121
|
+
- Sort documentation arguments.
|
2122
|
+
|
2123
|
+
_Jon Rohan_
|
2124
|
+
|
2125
|
+
- Add validations for docs generation.
|
2126
|
+
|
2127
|
+
_Manuel Puyol, Kate Higa_
|
2128
|
+
|
2129
|
+
- Change docs header order.
|
2130
|
+
|
2131
|
+
_Manuel Puyol, Kate Higa_
|
2132
|
+
|
2133
|
+
- Add preliminary criteria for new `alpha` components.
|
2134
|
+
|
2135
|
+
_Joel Hawksley_
|
2136
|
+
|
2137
|
+
## 0.0.43
|
2138
|
+
|
2139
|
+
### New
|
2140
|
+
|
2141
|
+
- Add `clearfix` and `container` system arguments.
|
2142
|
+
|
2143
|
+
_Manuel Puyol_
|
2144
|
+
|
2145
|
+
### Updates
|
2146
|
+
|
2147
|
+
- Promote `TabNav` component to beta.
|
2148
|
+
|
2149
|
+
_Manuel Puyol_
|
2150
|
+
|
2151
|
+
- Allow customizing `TabContainer` when using `TabNav` and `UnderlineNav` components.
|
2152
|
+
|
2153
|
+
_Manuel Puyol_
|
2154
|
+
|
2155
|
+
### Breaking changes
|
2156
|
+
|
2157
|
+
- Restrict `col` system arguments to only accept values between 1 and 12.
|
2158
|
+
|
2159
|
+
_Manuel Puyol_
|
2160
|
+
|
2161
|
+
### Misc
|
2162
|
+
|
2163
|
+
- Raise an error if `class` is used as a system argument.
|
2164
|
+
|
2165
|
+
_Manuel Puyol_
|
2166
|
+
|
2167
|
+
- Don't commit auto-generated component previews.
|
2168
|
+
|
2169
|
+
_Kate Higa_
|
2170
|
+
|
2171
|
+
- Provide linters for component migrations.
|
2172
|
+
|
2173
|
+
_Manuel Puyol_
|
2174
|
+
|
2175
|
+
- Update docs to accept multiline descriptions.
|
2176
|
+
|
2177
|
+
_Manuel Puyol_
|
2178
|
+
|
2179
|
+
- Upgrade primer/css to 17.2.1
|
2180
|
+
|
2181
|
+
_Jon Rohan_
|
2182
|
+
|
2183
|
+
## 0.0.42
|
2184
|
+
|
2185
|
+
### New
|
2186
|
+
|
2187
|
+
- Add `font_family`, `font_style` and `text_transform` system arguments.
|
2188
|
+
|
2189
|
+
_Manuel Puyol_
|
2190
|
+
|
2191
|
+
- Add more options for `font_size` and `font_weight`.
|
2192
|
+
|
2193
|
+
_Manuel Puyol_
|
2194
|
+
|
2195
|
+
### Updates
|
2196
|
+
|
2197
|
+
- Add `align` option to the `TabNav` extra slot to allow HTML ordering.
|
2198
|
+
|
2199
|
+
_Manuel Puyol_
|
2200
|
+
|
2201
|
+
### Misc
|
2202
|
+
|
2203
|
+
- Auto-generate component previews from doc examples and run integration test checks.
|
2204
|
+
|
2205
|
+
_Kate Higa, Joel Hawksley_
|
2206
|
+
|
2207
|
+
- Configure previews controller to allow view helper usage in preview template.
|
2208
|
+
|
2209
|
+
_Kate Higa_
|
2210
|
+
|
2211
|
+
- Only include `ViewComponent::SlotableV2` if `ViewComponent::Base` does not already include it.
|
2212
|
+
|
2213
|
+
_Manuel Puyol_
|
2214
|
+
|
2215
|
+
- Add `force_system_arguments` option to raise an error if a class is used instead of using System Arguments.
|
2216
|
+
|
2217
|
+
_Manuel Puyol_
|
2218
|
+
|
2219
|
+
### Breaking changes
|
2220
|
+
|
2221
|
+
- Restrict allowed tags for `Truncate`, `Markdown`, and `HiddenTextExpander`.
|
2222
|
+
|
2223
|
+
_Kate Higa_
|
2224
|
+
|
2225
|
+
## 0.0.41
|
2226
|
+
|
2227
|
+
### New
|
2228
|
+
|
2229
|
+
- Create `LocalTime` component.
|
2230
|
+
|
2231
|
+
_Kristján Oddsson_
|
2232
|
+
|
2233
|
+
- Create `Image` component.
|
2234
|
+
|
2235
|
+
_Manuel Puyol_
|
2236
|
+
|
2237
|
+
- Add `extra` slot to `TabNav`.
|
2238
|
+
|
2239
|
+
_Manuel Puyol_
|
2240
|
+
|
2241
|
+
- Do not raise error if Primer CSS class name is passed to component if `PRIMER_WARNINGS_DISABLED` is set.
|
2242
|
+
|
2243
|
+
_Joel Hawksley_
|
2244
|
+
|
2245
|
+
### Accessibility
|
2246
|
+
|
2247
|
+
- Accept `aria-current="true"` in tabbed components.
|
2248
|
+
|
2249
|
+
_Manuel Puyol_
|
2250
|
+
|
2251
|
+
### Changes
|
2252
|
+
|
2253
|
+
- Promote `Tooltip` component to beta.
|
2254
|
+
|
2255
|
+
_Manuel Puyol_
|
2256
|
+
|
2257
|
+
### Bug fixes
|
2258
|
+
|
2259
|
+
- Ensure that `ClipboardCopy` behaviors only target ViewComponents.
|
2260
|
+
|
2261
|
+
_Manuel Puyol_
|
2262
|
+
|
2263
|
+
- Ensure that the `rounded` attribute for `<image-crop>` is represented as a boolean attribute.
|
2264
|
+
|
2265
|
+
_Kristján Oddsson_
|
2266
|
+
|
2267
|
+
### Breaking changes
|
2268
|
+
|
2269
|
+
- Rename `TooltipComponent` to `Tooltip`.
|
2270
|
+
|
2271
|
+
_Manuel Puyol_
|
2272
|
+
|
2273
|
+
- Don't allow `OcticonComponent` height/width values under 16px
|
2274
|
+
|
2275
|
+
_Jon Rohan_
|
2276
|
+
|
2277
|
+
- Remove `:large` size option from `OcticonComponent` and change `:medium` to 24px
|
2278
|
+
|
2279
|
+
_Jon Rohan_
|
2280
|
+
|
2281
|
+
- Restrict `Label` tag to `span`, `div`, `a`, `summary`.
|
2282
|
+
|
2283
|
+
_Kate Higa_
|
2284
|
+
|
2285
|
+
### Misc
|
2286
|
+
|
2287
|
+
- Add a CI check for changes to the CHANGELOG file.
|
2288
|
+
|
2289
|
+
_Kristján Oddsson_
|
2290
|
+
|
2291
|
+
## 0.0.40
|
2292
|
+
|
2293
|
+
### New
|
2294
|
+
|
2295
|
+
- Create `ImageCrop` component.
|
2296
|
+
|
2297
|
+
_Kristján Oddsson_
|
2298
|
+
|
2299
|
+
### Changes
|
2300
|
+
|
2301
|
+
- Promote `IconButton` to beta.
|
2302
|
+
|
2303
|
+
_Manuel Puyol_
|
2304
|
+
|
2305
|
+
- Add `box` argument to `IconButton`.
|
2306
|
+
|
2307
|
+
_Manuel Puyol_
|
2308
|
+
|
2309
|
+
- Promote `Markdown` to beta.
|
2310
|
+
|
2311
|
+
_Manuel Puyol_
|
2312
|
+
|
2313
|
+
### Bug fixes
|
2314
|
+
|
2315
|
+
- Fix `IconButton` raising when `aria-label` was provided using an object.
|
2316
|
+
|
2317
|
+
_Manuel Puyol_
|
2318
|
+
|
2319
|
+
- Fix disabling of default styles for `SpinnerComponent` via `nil` style parameter.
|
2320
|
+
|
2321
|
+
_Chris Wilson_
|
2322
|
+
|
2323
|
+
### Deprecations
|
2324
|
+
|
2325
|
+
- Deprecate `Flex` in favor of `BoxComponent`.
|
2326
|
+
|
2327
|
+
_Manuel Puyol_
|
2328
|
+
|
2329
|
+
### Breaking Changes
|
2330
|
+
|
2331
|
+
- Restrict `ButtonGroup` tag to `:div` and update docs for `Text` tag.
|
2332
|
+
|
2333
|
+
_Kate Higa_
|
2334
|
+
|
2335
|
+
- Remove non-functional `width` and `height` `:fill` option.
|
2336
|
+
|
2337
|
+
_Jon Rohan_, _Joel Hawksley_
|
2338
|
+
|
2339
|
+
- Restrict `Subhead` `heading` slot tag to `div` and `h1`-`h6`.
|
2340
|
+
|
2341
|
+
_Kate Higa_
|
2342
|
+
|
2343
|
+
- Restrict `Blankslate` tag to `div`.
|
2344
|
+
|
2345
|
+
_Kate Higa_
|
2346
|
+
|
2347
|
+
- Explicitly limit tag for `AvatarStack` to `:div` and `:span`.
|
2348
|
+
|
2349
|
+
_Kate Higa_
|
2350
|
+
|
2351
|
+
- Rename `MarkdownComponent` to `Markdown`.
|
2352
|
+
|
2353
|
+
_Manuel Puyol_
|
2354
|
+
|
2355
|
+
## 0.0.39
|
2356
|
+
|
2357
|
+
- Promote `CloseButton` to beta.
|
2358
|
+
|
2359
|
+
_Manuel Puyol_
|
2360
|
+
|
2361
|
+
- Update `ClipboardCopy` to not toggle icons unless they both exist.
|
2362
|
+
|
2363
|
+
_Kristján Oddsson_
|
2364
|
+
|
2365
|
+
- Add `icon` and `counter` slots to `ButtonComponent`.
|
2366
|
+
|
2367
|
+
_Manuel Puyol_
|
2368
|
+
|
2369
|
+
- Create `IconButton` component.
|
2370
|
+
|
2371
|
+
_Manuel Puyol_
|
2372
|
+
|
2373
|
+
- Removing trailing whitespace from output of `class=""` Classify generation.
|
2374
|
+
|
2375
|
+
_Jon Rohan_
|
2376
|
+
|
2377
|
+
- Deprecate `FlexItem` in favor of `BoxComponent`.
|
2378
|
+
|
2379
|
+
_Manuel Puyol_
|
2380
|
+
|
2381
|
+
- Dropping requirement of `octicons_helper` and updating `OcticonComponent` to use `octicon` gem directly.
|
2382
|
+
|
2383
|
+
_Jon Rohan_
|
2384
|
+
|
2385
|
+
- **Breaking change:** Remove `:overlay` option from `border_color`.
|
2386
|
+
|
2387
|
+
_Simon Luthi_
|
2388
|
+
|
2389
|
+
## 0.0.38
|
2390
|
+
|
2391
|
+
- Extract `BaseButton` component.
|
2392
|
+
|
2393
|
+
_Manuel Puyol_
|
2394
|
+
|
2395
|
+
- Add default `aria-label` of "Close" to `CloseButton` component.
|
2396
|
+
|
2397
|
+
_Kate Higa_
|
2398
|
+
|
2399
|
+
- Set button variants in the `ButtonGroup` parent.
|
2400
|
+
|
2401
|
+
_Manuel Puyol_
|
2402
|
+
|
2403
|
+
- Create `ClipboardCopy` component.
|
2404
|
+
|
2405
|
+
_Kristján Oddsson_
|
2406
|
+
|
2407
|
+
- **Breaking change:** Rename `ButtonGroupComponent` to `ButtonGroup` and promote it to beta.
|
2408
|
+
|
2409
|
+
_Manuel Puyol_
|
2410
|
+
|
2411
|
+
- **Breaking change:** Do not provide default for `Heading` and improve documentation.
|
2412
|
+
|
2413
|
+
_Kate Higa_
|
2414
|
+
|
2415
|
+
- **Breaking change:** Don't allow `StateComponent` to be a link.
|
2416
|
+
|
2417
|
+
_Kate Higa_
|
2418
|
+
|
2419
|
+
## 0.0.37
|
2420
|
+
|
2421
|
+
- Update NPM package to include subdirectory JS files.
|
2422
|
+
|
2423
|
+
_Manuel Puyol_
|
2424
|
+
|
2425
|
+
## 0.0.36
|
2426
|
+
|
2427
|
+
- Add `block` flag to `ButtonComponent`.
|
2428
|
+
|
2429
|
+
_Manuel Puyol_
|
2430
|
+
|
2431
|
+
- Add `link` and `invisible` schemes to `ButtonComponent`.
|
2432
|
+
|
2433
|
+
_Manuel Puyol_
|
2434
|
+
|
2435
|
+
- Create `CloseButton` and `HiddenTextExpander` component.
|
2436
|
+
|
2437
|
+
_Manuel Puyol_
|
2438
|
+
|
2439
|
+
- **Breaking change:** Rename `AutoCompleteComponent` to `AutoComplete` and `AutoCompleteItemComponent` to `AutoComplete::Item`.
|
2440
|
+
|
2441
|
+
_Manuel Puyol_
|
2442
|
+
|
2443
|
+
- **Breaking change:** Rename `TruncateComponent` to `Truncate` and promote it to beta.
|
2444
|
+
|
2445
|
+
_Manuel Puyol_
|
2446
|
+
|
2447
|
+
## 0.0.35
|
2448
|
+
|
2449
|
+
- Promote `AutoCompleteComponent`, `AutoCompleteItemComponent`, `AvatarStackComponent` and `ButtonComponent` to beta.
|
2450
|
+
|
2451
|
+
_Manuel Puyol_
|
2452
|
+
|
2453
|
+
- Allow `UnderlineNav` tabs to be rendered as a `<ul><li>` list.
|
2454
|
+
|
2455
|
+
_Manuel Puyol_
|
2456
|
+
|
2457
|
+
- _Accessibility:_ Don't add tab roles when `UnderlineNav` or `TabNav` use link redirects.
|
2458
|
+
|
2459
|
+
_Manuel Puyol_
|
2460
|
+
|
2461
|
+
- **Breaking change:** Make `label` required for `UnderlineNav` and `TabNav`.
|
2462
|
+
|
2463
|
+
_Manuel Puyol_
|
2464
|
+
|
2465
|
+
## 0.0.34
|
2466
|
+
|
2467
|
+
- Add `p: :responsive` and `m: :auto` system arguments.
|
2468
|
+
|
2469
|
+
_Manuel Puyol_
|
2470
|
+
|
2471
|
+
- Remove `my: :auto` and negative `m:` system arguments.
|
2472
|
+
|
2473
|
+
_Manuel Puyol_
|
2474
|
+
|
2475
|
+
- **Breaking change:** Rename `FlashComponent` `variant` argument to `scheme`.
|
2476
|
+
|
2477
|
+
_Manuel Puyol_
|
2478
|
+
|
2479
|
+
- **Breaking change:** Rename `LinkComponent` `variant` argument to `scheme`.
|
2480
|
+
|
2481
|
+
_Manuel Puyol_
|
2482
|
+
|
2483
|
+
- **Breaking change:** Rename `ButtonComponent` `button_type` argument to `scheme`.
|
2484
|
+
|
2485
|
+
_Manuel Puyol_
|
2486
|
+
|
2487
|
+
- **Breaking change:** Rename `ButtonMarketing` `button_type` argument to `scheme`.
|
2488
|
+
|
2489
|
+
_Manuel Puyol_
|
2490
|
+
|
2491
|
+
- **Breaking change:** Rename `StateComponent` `color` argument to `scheme`.
|
2492
|
+
|
2493
|
+
_Manuel Puyol_
|
2494
|
+
|
2495
|
+
## 0.0.33
|
2496
|
+
|
2497
|
+
- Remove `TabbedComponent` validation requiring a tab to be selected.
|
2498
|
+
|
2499
|
+
_Manuel Puyol_
|
2500
|
+
|
2501
|
+
## 0.0.32
|
2502
|
+
|
2503
|
+
- Allow passing the icon name as a positional argument to `OcticonComponent`.
|
2504
|
+
|
2505
|
+
_Manuel Puyol_
|
2506
|
+
|
2507
|
+
- Promote `TimeAgoComponent` to beta.
|
2508
|
+
|
2509
|
+
_Manuel Puyol_
|
2510
|
+
|
2511
|
+
- **Breaking change:** Update `TabNav#tab` API to accept the tab content as a block and panel content as a slot.
|
2512
|
+
|
2513
|
+
_Manuel Puyol_
|
2514
|
+
|
2515
|
+
- **Breaking change:** Update `UnderlineNavComponent` API be more strict and support `TabContainer`.
|
2516
|
+
|
2517
|
+
_Manuel Puyol_
|
2518
|
+
|
2519
|
+
## 0.0.31
|
2520
|
+
|
2521
|
+
- Fix `Popover` bug where body was only returning the last line of the HTML.
|
2522
|
+
|
2523
|
+
_Manuel Puyol, Blake Williams_
|
2524
|
+
|
2525
|
+
## 0.0.30
|
2526
|
+
|
2527
|
+
- Make `color:`, `bg:` and `border_color:` accept string values.
|
2528
|
+
|
2529
|
+
_Manuel Puyol_
|
2530
|
+
|
2531
|
+
## 0.0.29
|
2532
|
+
|
2533
|
+
- Add `primer_time_ago` helper.
|
2534
|
+
|
2535
|
+
_Simon Taranto_
|
2536
|
+
|
2537
|
+
- Add `silence_deprecations` config to suppress deprecation warnings.
|
2538
|
+
|
2539
|
+
_Manuel Puyol_
|
2540
|
+
|
2541
|
+
## 0.0.28
|
2542
|
+
|
2543
|
+
- Update `CounterComponent` to accept functional schemes `primary` and `secondary`. Deprecate `gray` and `light_gray` schemes.
|
2544
|
+
|
2545
|
+
_Manuel Puyol_
|
2546
|
+
|
2547
|
+
- Add `force_functional_colors` option to convert colors to functional. This change includes a deprecation warning in non-production environments that warns about non functional color usage.
|
2548
|
+
|
2549
|
+
_Manuel Puyol_
|
2550
|
+
|
2551
|
+
- Promote `DetailsComponent`, `HeadingComponent`, `TextComponent`, `TimelineItemComponent`, and
|
2552
|
+
`PopoverComponent` to beta status.
|
2553
|
+
|
2554
|
+
_Simon Taranto_
|
2555
|
+
|
2556
|
+
- Update `LinkComponent`:
|
2557
|
+
|
2558
|
+
- use `Link--muted` instead of `muted-link`.
|
2559
|
+
- accept `variant` and `underline` options.
|
2560
|
+
- accept `:span` as a tag.
|
2561
|
+
|
2562
|
+
_Manuel Puyol_
|
2563
|
+
|
2564
|
+
- Add `AutoComplete` and `AutoCompleteItem` components.
|
2565
|
+
|
2566
|
+
_Manuel Puyol_
|
2567
|
+
|
2568
|
+
- Publish types with npm package.
|
2569
|
+
|
2570
|
+
_Keith Cirkel_ & _Clay Miller_
|
2571
|
+
|
2572
|
+
- Fix `AvatarComponent` to apply classes to the link wrapper if present.
|
2573
|
+
|
2574
|
+
_Steve Richert_
|
2575
|
+
|
2576
|
+
- Fix `AvatarComponent` to apply the `avatar-small` class rather than `avatar--small`.
|
2577
|
+
|
2578
|
+
_Steve Richert_
|
2579
|
+
|
2580
|
+
- **Breaking change:** Updates `PopoverComponent` to use Slots V2.
|
2581
|
+
|
2582
|
+
_Manuel Puyol_
|
2583
|
+
|
2584
|
+
## 0.0.27
|
2585
|
+
|
2586
|
+
- Promote `BreadcrumbComponent` and `ProgressBarComponent` to beta status.
|
2587
|
+
|
2588
|
+
_Simon Taranto_
|
2589
|
+
|
2590
|
+
- Fix `OcticonComponent` not rendering `data-test-selector` correctly.
|
2591
|
+
|
2592
|
+
_Manuel Puyol_
|
2593
|
+
|
2594
|
+
- Add `TimeAgo` component.
|
2595
|
+
|
2596
|
+
_Keith Cirkel_
|
2597
|
+
|
2598
|
+
- **Breaking change:** Updates `UnderlineNavComponent` to use Slots V2.
|
2599
|
+
|
2600
|
+
_Simon Taranto_
|
2601
|
+
|
2602
|
+
- **Breaking change:** Upgrade `LayoutComponent` to use Slots V2.
|
2603
|
+
|
2604
|
+
_Simon Taranto_
|
2605
|
+
|
2606
|
+
## 0.0.26
|
2607
|
+
|
2608
|
+
- Fix `DetailsComponent` summary always being rendered as a `btn`.
|
2609
|
+
|
2610
|
+
_Manuel Puyol_
|
2611
|
+
|
2612
|
+
- Promote `BlankslateComponent` and `BaseComponent` to beta status.
|
2613
|
+
|
2614
|
+
_Simon Taranto_
|
2615
|
+
|
2616
|
+
## 0.0.25
|
2617
|
+
|
2618
|
+
- Promote `SubheadComponent` to beta.
|
2619
|
+
|
2620
|
+
_Simon Taranto_
|
2621
|
+
|
2622
|
+
- Add deprecated `orange` and `purple` schemes to `LabelComponent`.
|
2623
|
+
|
2624
|
+
_Manuel Puyol_
|
2625
|
+
|
2626
|
+
## 0.0.24
|
2627
|
+
|
2628
|
+
- Fix zeitwerk autoload integration.
|
2629
|
+
|
2630
|
+
_Manuel Puyol_
|
2631
|
+
|
2632
|
+
- **Breaking change:** Upgrade `ProgressBarComponent` to use Slots V2.
|
2633
|
+
|
2634
|
+
_Simon Taranto_
|
2635
|
+
|
2636
|
+
- **Breaking change:** Upgrade `BreadcrumbComponent` to use Slots V2.
|
2637
|
+
|
2638
|
+
_Manuel Puyol_
|
2639
|
+
|
2640
|
+
## 0.0.23
|
2641
|
+
|
2642
|
+
- Remove node and yarn version requirements from `@primer/view-components`.
|
2643
|
+
|
2644
|
+
_Manuel Puyol_
|
2645
|
+
|
2646
|
+
- **Breaking change:** Upgrade `SubheadComponent` to use Slots V2.
|
2647
|
+
|
2648
|
+
_Simon Taranto_
|
2649
|
+
|
2650
|
+
- **Breaking change:** Update `LabelComponent` to use only functional color
|
2651
|
+
supportive scheme keys. The component no longer accepts colors (`:gray`, for
|
2652
|
+
example) but only functional schemes (`primary`, for example).
|
2653
|
+
`LabelComponent` is promoted to beta status.
|
2654
|
+
|
2655
|
+
_Simon Taranto_
|
2656
|
+
|
2657
|
+
## 0.0.22
|
2658
|
+
|
2659
|
+
- Add view helpers to easily render Primer components.
|
2660
|
+
|
2661
|
+
_Manuel Puyol_
|
2662
|
+
|
2663
|
+
- Add `TabContainer` and `TabNav` components.
|
2664
|
+
|
2665
|
+
_Manuel Puyol_
|
2666
|
+
|
2667
|
+
- Promote `StateComponent` to beta.
|
2668
|
+
|
2669
|
+
_Simon Taranto_
|
2670
|
+
|
2671
|
+
- **Breaking change:** Upgrade `BorderBoxComponent` to use Slots V2.
|
2672
|
+
|
2673
|
+
_Manuel Puyol_
|
2674
|
+
|
2675
|
+
- **Breaking change:** Upgrade `StateComponent` to support functional colors. This change requires using [@primer/css-next](https://www.npmjs.com/package/@primer/css-next). The required changes will be upstreamed to @primer/css at a later date.
|
2676
|
+
|
2677
|
+
_Simon Taranto_
|
2678
|
+
|
2679
|
+
- **Breaking change:** Upgrade `DetailsComponent` to use Slots V2.
|
2680
|
+
|
2681
|
+
_Simon Taranto_
|
2682
|
+
|
2683
|
+
## 0.0.21
|
2684
|
+
|
2685
|
+
- **Breaking change:** Upgrade `FlashComponent` to use Slots V2.
|
2686
|
+
|
2687
|
+
_Joel Hawksley, Simon Taranto_
|
2688
|
+
|
2689
|
+
- **Breaking change:** Upgrade `BlankslateComponent` to use Slots V2.
|
2690
|
+
|
2691
|
+
_Manuel Puyol_
|
2692
|
+
|
2693
|
+
- **Breaking change:** Upgrade `TimelineItemComponent` to use Slots V2.
|
2694
|
+
|
2695
|
+
_Manuel Puyol_
|
2696
|
+
|
2697
|
+
## 0.0.20
|
2698
|
+
|
2699
|
+
- Fix bug when empty string was passed to Classify.
|
2700
|
+
|
2701
|
+
_Manuel Puyol_
|
2702
|
+
|
2703
|
+
## 0.0.19
|
2704
|
+
|
2705
|
+
- Add support for functional colors to `color` system argument.
|
2706
|
+
|
2707
|
+
_Jake Shorty_
|
2708
|
+
|
2709
|
+
- Add `AvatarStack`, `Dropdown`, `Markdown` and `Menu` components.
|
2710
|
+
|
2711
|
+
_Manuel Puyol_
|
2712
|
+
|
2713
|
+
- Deprecate `DropdownMenuComponent`.
|
2714
|
+
|
2715
|
+
_Manuel Puyol_
|
2716
|
+
|
2717
|
+
- Fix `Avatar` bug when used with links.
|
2718
|
+
|
2719
|
+
_Manuel Puyol_
|
2720
|
+
|
2721
|
+
- Add cache for common Primer values.
|
2722
|
+
|
2723
|
+
_Blake Williams_
|
2724
|
+
|
2725
|
+
- Add support for `octicons_helper` v12.
|
2726
|
+
|
2727
|
+
_Cole Bemis_
|
2728
|
+
|
2729
|
+
- Add support for `border: true` to apply the `border` class.
|
2730
|
+
|
2731
|
+
_Simon Taranto_
|
2732
|
+
|
2733
|
+
- Promote `Avatar`, `Link`, and `Counter` components to beta.
|
2734
|
+
|
2735
|
+
_Simon Taranto_
|
2736
|
+
|
2737
|
+
- **Breaking change:** Drop support for Ruby 2.4.
|
2738
|
+
|
2739
|
+
_Simon Taranto_
|
2740
|
+
|
2741
|
+
## 0.0.18
|
2742
|
+
|
2743
|
+
- Add `border_radius` system argument.
|
2744
|
+
|
2745
|
+
_Ash Guillaume_
|
2746
|
+
|
2747
|
+
- Add `animation` system argument.
|
2748
|
+
|
2749
|
+
_Manuel Puyol_
|
2750
|
+
|
2751
|
+
- Add `Truncate`, `ButtonGroup` and `ButtonMarketing` components.
|
2752
|
+
|
2753
|
+
_Manuel Puyol_
|
2754
|
+
|
2755
|
+
- Add `Tooltip` component.
|
2756
|
+
|
2757
|
+
_Simon Taranto_
|
2758
|
+
|
2759
|
+
## 0.0.17
|
2760
|
+
|
2761
|
+
- Ensure all components support inline styles.
|
2762
|
+
|
2763
|
+
_Joel Hawksley_
|
2764
|
+
|
2765
|
+
## 0.0.16
|
2766
|
+
|
2767
|
+
- Adding a `spinner` slot to the `BlankslateComponent` that uses the `SpinnerComponent` added in `0.0.10`.
|
2768
|
+
|
2769
|
+
_Jon Rohan_
|
2770
|
+
|
2771
|
+
- Bumping node engine to version `15.x`
|
2772
|
+
|
2773
|
+
_Jon Rohan_
|
2774
|
+
|
2775
|
+
## 0.0.15
|
2776
|
+
|
2777
|
+
- Add ability to disable `limit` on Counter.
|
2778
|
+
|
2779
|
+
_Christian Giordano_
|
2780
|
+
|
2781
|
+
- Rename `v` system argument to `visibility`.
|
2782
|
+
|
2783
|
+
_Joel Hawksley_
|
2784
|
+
|
2785
|
+
## 0.0.14
|
2786
|
+
|
2787
|
+
- Add functional colors to Label.
|
2788
|
+
|
2789
|
+
_Joel Hawksley_
|
2790
|
+
|
2791
|
+
## 0.0.13
|
2792
|
+
|
2793
|
+
- Add support for `xl` breakpoint.
|
2794
|
+
|
2795
|
+
_Joel Hawksley_
|
2796
|
+
|
2797
|
+
## 0.0.12
|
2798
|
+
|
2799
|
+
- Adds support for disabling inline box-sizing style for `SpinnerComponent` via style parameter `Primer::SpinnerComponent.new(style: nil)`.
|
2800
|
+
|
2801
|
+
_Chris Wilson_
|
2802
|
+
|
2803
|
+
## 0.0.11
|
2804
|
+
|
2805
|
+
- Renames DetailsComponent::OVERLAY_DEFAULT to DetailsComponent::NO_OVERLAY to more correctly describe its value.
|
2806
|
+
|
2807
|
+
_Justin Kenyon_
|
2808
|
+
|
2809
|
+
## 0.0.10
|
2810
|
+
|
2811
|
+
- Add SpinnerComponent
|
2812
|
+
|
2813
|
+
_Cole Bemis_
|
2814
|
+
|
2815
|
+
## 0.0.9
|
2816
|
+
|
2817
|
+
- BREAKING CHANGE: OcticonComponent no longer accepts `class` parameter; use `classes` instead.
|
2818
|
+
|
2819
|
+
_heynan0_
|
2820
|
+
|
2821
|
+
## 0.0.8
|
2822
|
+
|
2823
|
+
- Add support for border margins, such as: `border_top: 0`.
|
2824
|
+
|
2825
|
+
_Natasha Umer_
|
2826
|
+
|
2827
|
+
- Add FlashComponent and OcticonComponent.
|
2828
|
+
|
2829
|
+
_Joel Hawksley_
|
2830
|
+
|
2831
|
+
- BREAKING CHANGE: BlankslateComponent accepts `icon_size` instead of `icon_height`.
|
2832
|
+
|
2833
|
+
_Joel Hawksley_
|
2834
|
+
|
2835
|
+
## 0.0.7
|
2836
|
+
|
2837
|
+
- Use `octicons_helper` v11.0.0.
|
2838
|
+
|
2839
|
+
_Joel Hawksley_
|
2840
|
+
|
2841
|
+
## 0.0.6
|
2842
|
+
|
2843
|
+
- Updated the invalid class name error message
|
2844
|
+
|
2845
|
+
_emplums_
|
2846
|
+
|
2847
|
+
- Updated README with testing instructions
|
2848
|
+
|
2849
|
+
_emplums_
|
2850
|
+
|
2851
|
+
- Add large and spacious option to BlankslateComponent
|
2852
|
+
|
2853
|
+
_simurai_
|
2854
|
+
|
2855
|
+
- Add option for `ButtonComponent` to render a `summary` tag
|
2856
|
+
|
2857
|
+
_Manuel Puyol_
|
2858
|
+
|
2859
|
+
- BREAKING CHANGE: Changed `DetailsComponent` summary and body to be slots
|
2860
|
+
|
2861
|
+
_Manuel Puyol_
|
2862
|
+
|
2863
|
+
## 0.0.5
|
2864
|
+
|
2865
|
+
- Add support for box_shadow
|
2866
|
+
- Add components:
|
2867
|
+
|
2868
|
+
- Popover
|
2869
|
+
|
2870
|
+
_Sarah Vessels_
|
2871
|
+
|
2872
|
+
## 0.0.4
|
2873
|
+
|
2874
|
+
- Added support for mx: and my: :auto.
|
2875
|
+
|
2876
|
+
_Christian Giordano_
|
2877
|
+
|
2878
|
+
- Added support for custom layout sizes.
|
2879
|
+
|
2880
|
+
_Manuel Puyol_
|
2881
|
+
|
2882
|
+
## 0.0.3
|
2883
|
+
|
2884
|
+
- Add support for responsive `float` system argument.
|
2885
|
+
|
2886
|
+
_Joel Hawksley_
|
2887
|
+
|
2888
|
+
- Add components:
|
2889
|
+
|
2890
|
+
- Avatar
|
2891
|
+
- Blankslate
|
2892
|
+
|
2893
|
+
_Manuel Puyol, Ben Emdon_
|
2894
|
+
|
2895
|
+
## 0.0.1
|
2896
|
+
|
2897
|
+
- Add initial gem configuration.
|
2898
|
+
|
2899
|
+
_Manuel Puyol, Joel Hawksley_
|
2900
|
+
|
2901
|
+
- Add demo app and storybook to test
|
2902
|
+
|
2903
|
+
_Manuel Puyol_
|
2904
|
+
|
2905
|
+
- Add Classify, FetchOrFallback and ClassName helpers
|
2906
|
+
|
2907
|
+
_Manuel Puyol_
|
2908
|
+
|
2909
|
+
- Add components:
|
2910
|
+
|
2911
|
+
- BorderBox
|
2912
|
+
- Box
|
2913
|
+
- Breadcrumb
|
2914
|
+
- Button
|
2915
|
+
- Counter
|
2916
|
+
- Details
|
2917
|
+
- Dropdown
|
2918
|
+
- Flex
|
2919
|
+
- FlexItem
|
2920
|
+
- Heading
|
2921
|
+
- Label
|
2922
|
+
- Layout
|
2923
|
+
- Link
|
2924
|
+
- ProgressBar
|
2925
|
+
- State
|
2926
|
+
- Subhead
|
2927
|
+
- Text
|
2928
|
+
- TimelineItem
|
2929
|
+
- UnderlineNav
|
2930
|
+
|
2931
|
+
_Manuel Puyol_
|