fernandes-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +392 -0
- data/Rakefile +6 -0
- data/app/assets/javascripts/ui.esm.js +14385 -0
- data/app/assets/javascripts/ui.js +13990 -0
- data/app/assets/stylesheets/ui/application.css +584 -0
- data/app/assets/stylesheets/ui/sonner.css +610 -0
- data/app/behaviors/ui/accordion_behavior.rb +30 -0
- data/app/behaviors/ui/accordion_content_behavior.rb +72 -0
- data/app/behaviors/ui/accordion_item_behavior.rb +47 -0
- data/app/behaviors/ui/accordion_trigger_behavior.rb +79 -0
- data/app/behaviors/ui/alert_behavior.rb +44 -0
- data/app/behaviors/ui/alert_description_behavior.rb +32 -0
- data/app/behaviors/ui/alert_dialog_action_behavior.rb +27 -0
- data/app/behaviors/ui/alert_dialog_behavior.rb +41 -0
- data/app/behaviors/ui/alert_dialog_cancel_behavior.rb +27 -0
- data/app/behaviors/ui/alert_dialog_content_behavior.rb +42 -0
- data/app/behaviors/ui/alert_dialog_description_behavior.rb +25 -0
- data/app/behaviors/ui/alert_dialog_footer_behavior.rb +26 -0
- data/app/behaviors/ui/alert_dialog_header_behavior.rb +25 -0
- data/app/behaviors/ui/alert_dialog_overlay_behavior.rb +68 -0
- data/app/behaviors/ui/alert_dialog_title_behavior.rb +25 -0
- data/app/behaviors/ui/alert_dialog_trigger_behavior.rb +39 -0
- data/app/behaviors/ui/alert_title_behavior.rb +32 -0
- data/app/behaviors/ui/aspect_ratio_behavior.rb +47 -0
- data/app/behaviors/ui/avatar_behavior.rb +43 -0
- data/app/behaviors/ui/avatar_fallback_behavior.rb +43 -0
- data/app/behaviors/ui/avatar_image_behavior.rb +46 -0
- data/app/behaviors/ui/badge_behavior.rb +50 -0
- data/app/behaviors/ui/blockquote_behavior.rb +23 -0
- data/app/behaviors/ui/breadcrumb_behavior.rb +22 -0
- data/app/behaviors/ui/breadcrumb_ellipsis_behavior.rb +34 -0
- data/app/behaviors/ui/breadcrumb_item_behavior.rb +32 -0
- data/app/behaviors/ui/breadcrumb_link_behavior.rb +33 -0
- data/app/behaviors/ui/breadcrumb_list_behavior.rb +32 -0
- data/app/behaviors/ui/breadcrumb_page_behavior.rb +35 -0
- data/app/behaviors/ui/breadcrumb_separator_behavior.rb +34 -0
- data/app/behaviors/ui/button_behavior.rb +99 -0
- data/app/behaviors/ui/button_group_behavior.rb +55 -0
- data/app/behaviors/ui/button_group_separator_behavior.rb +33 -0
- data/app/behaviors/ui/button_group_text_behavior.rb +34 -0
- data/app/behaviors/ui/calendar_behavior.rb +119 -0
- data/app/behaviors/ui/card_action_behavior.rb +32 -0
- data/app/behaviors/ui/card_behavior.rb +32 -0
- data/app/behaviors/ui/card_content_behavior.rb +32 -0
- data/app/behaviors/ui/card_description_behavior.rb +32 -0
- data/app/behaviors/ui/card_footer_behavior.rb +32 -0
- data/app/behaviors/ui/card_header_behavior.rb +32 -0
- data/app/behaviors/ui/card_title_behavior.rb +32 -0
- data/app/behaviors/ui/carousel_behavior.rb +53 -0
- data/app/behaviors/ui/carousel_content_behavior.rb +65 -0
- data/app/behaviors/ui/carousel_item_behavior.rb +26 -0
- data/app/behaviors/ui/carousel_next_behavior.rb +39 -0
- data/app/behaviors/ui/carousel_previous_behavior.rb +39 -0
- data/app/behaviors/ui/checkbox_behavior.rb +48 -0
- data/app/behaviors/ui/collapsible_behavior.rb +42 -0
- data/app/behaviors/ui/collapsible_content_behavior.rb +39 -0
- data/app/behaviors/ui/collapsible_trigger_behavior.rb +55 -0
- data/app/behaviors/ui/combobox_behavior.rb +0 -0
- data/app/behaviors/ui/command_behavior.rb +37 -0
- data/app/behaviors/ui/command_dialog_behavior.rb +30 -0
- data/app/behaviors/ui/command_empty_behavior.rb +36 -0
- data/app/behaviors/ui/command_group_behavior.rb +43 -0
- data/app/behaviors/ui/command_input_behavior.rb +49 -0
- data/app/behaviors/ui/command_item_behavior.rb +47 -0
- data/app/behaviors/ui/command_list_behavior.rb +38 -0
- data/app/behaviors/ui/command_separator_behavior.rb +30 -0
- data/app/behaviors/ui/command_shortcut_behavior.rb +29 -0
- data/app/behaviors/ui/context_menu_behavior.rb +32 -0
- data/app/behaviors/ui/context_menu_checkbox_item_behavior.rb +38 -0
- data/app/behaviors/ui/context_menu_content_behavior.rb +37 -0
- data/app/behaviors/ui/context_menu_item_behavior.rb +40 -0
- data/app/behaviors/ui/context_menu_label_behavior.rb +33 -0
- data/app/behaviors/ui/context_menu_radio_group_behavior.rb +20 -0
- data/app/behaviors/ui/context_menu_radio_item_behavior.rb +38 -0
- data/app/behaviors/ui/context_menu_separator_behavior.rb +22 -0
- data/app/behaviors/ui/context_menu_shortcut_behavior.rb +21 -0
- data/app/behaviors/ui/context_menu_trigger_behavior.rb +32 -0
- data/app/behaviors/ui/date_picker_behavior.rb +90 -0
- data/app/behaviors/ui/date_picker_input_behavior.rb +62 -0
- data/app/behaviors/ui/date_picker_trigger_behavior.rb +62 -0
- data/app/behaviors/ui/dialog_behavior.rb +46 -0
- data/app/behaviors/ui/dialog_content_behavior.rb +46 -0
- data/app/behaviors/ui/dialog_footer_behavior.rb +26 -0
- data/app/behaviors/ui/dialog_header_behavior.rb +26 -0
- data/app/behaviors/ui/dialog_overlay_behavior.rb +69 -0
- data/app/behaviors/ui/drawer_behavior.rb +57 -0
- data/app/behaviors/ui/drawer_close_behavior.rb +10 -0
- data/app/behaviors/ui/drawer_content_behavior.rb +107 -0
- data/app/behaviors/ui/drawer_description_behavior.rb +23 -0
- data/app/behaviors/ui/drawer_footer_behavior.rb +23 -0
- data/app/behaviors/ui/drawer_handle_behavior.rb +40 -0
- data/app/behaviors/ui/drawer_header_behavior.rb +29 -0
- data/app/behaviors/ui/drawer_overlay_behavior.rb +75 -0
- data/app/behaviors/ui/drawer_title_behavior.rb +26 -0
- data/app/behaviors/ui/drawer_trigger_behavior.rb +18 -0
- data/app/behaviors/ui/dropdown_menu_behavior.rb +43 -0
- data/app/behaviors/ui/dropdown_menu_checkbox_item_behavior.rb +46 -0
- data/app/behaviors/ui/dropdown_menu_content_behavior.rb +37 -0
- data/app/behaviors/ui/dropdown_menu_item_behavior.rb +40 -0
- data/app/behaviors/ui/dropdown_menu_label_behavior.rb +30 -0
- data/app/behaviors/ui/dropdown_menu_radio_group_behavior.rb +20 -0
- data/app/behaviors/ui/dropdown_menu_radio_item_behavior.rb +46 -0
- data/app/behaviors/ui/dropdown_menu_separator_behavior.rb +23 -0
- data/app/behaviors/ui/dropdown_menu_shortcut_behavior.rb +21 -0
- data/app/behaviors/ui/dropdown_menu_sub_behavior.rb +21 -0
- data/app/behaviors/ui/dropdown_menu_sub_content_behavior.rb +38 -0
- data/app/behaviors/ui/dropdown_menu_sub_trigger_behavior.rb +35 -0
- data/app/behaviors/ui/dropdown_menu_trigger_behavior.rb +46 -0
- data/app/behaviors/ui/empty_behavior.rb +124 -0
- data/app/behaviors/ui/field_behavior.rb +46 -0
- data/app/behaviors/ui/field_content_behavior.rb +26 -0
- data/app/behaviors/ui/field_description_behavior.rb +26 -0
- data/app/behaviors/ui/field_error_behavior.rb +47 -0
- data/app/behaviors/ui/field_group_behavior.rb +26 -0
- data/app/behaviors/ui/field_label_behavior.rb +27 -0
- data/app/behaviors/ui/field_legend_behavior.rb +28 -0
- data/app/behaviors/ui/field_separator_behavior.rb +33 -0
- data/app/behaviors/ui/field_set_behavior.rb +26 -0
- data/app/behaviors/ui/field_title_behavior.rb +26 -0
- data/app/behaviors/ui/h1_behavior.rb +23 -0
- data/app/behaviors/ui/h2_behavior.rb +23 -0
- data/app/behaviors/ui/h3_behavior.rb +23 -0
- data/app/behaviors/ui/h4_behavior.rb +23 -0
- data/app/behaviors/ui/hover_card_behavior.rb +29 -0
- data/app/behaviors/ui/hover_card_content_behavior.rb +41 -0
- data/app/behaviors/ui/hover_card_trigger_behavior.rb +44 -0
- data/app/behaviors/ui/inline_code_behavior.rb +23 -0
- data/app/behaviors/ui/input_behavior.rb +52 -0
- data/app/behaviors/ui/input_group_addon_behavior.rb +52 -0
- data/app/behaviors/ui/input_group_behavior.rb +63 -0
- data/app/behaviors/ui/input_group_button_behavior.rb +82 -0
- data/app/behaviors/ui/input_group_input_behavior.rb +50 -0
- data/app/behaviors/ui/input_group_text_behavior.rb +32 -0
- data/app/behaviors/ui/input_group_textarea_behavior.rb +50 -0
- data/app/behaviors/ui/input_otp_behavior.rb +44 -0
- data/app/behaviors/ui/input_otp_group_behavior.rb +32 -0
- data/app/behaviors/ui/input_otp_separator_behavior.rb +33 -0
- data/app/behaviors/ui/input_otp_slot_behavior.rb +49 -0
- data/app/behaviors/ui/item_actions_behavior.rb +31 -0
- data/app/behaviors/ui/item_behavior.rb +100 -0
- data/app/behaviors/ui/item_content_behavior.rb +31 -0
- data/app/behaviors/ui/item_description_behavior.rb +31 -0
- data/app/behaviors/ui/item_footer_behavior.rb +31 -0
- data/app/behaviors/ui/item_group_behavior.rb +31 -0
- data/app/behaviors/ui/item_header_behavior.rb +31 -0
- data/app/behaviors/ui/item_media_behavior.rb +47 -0
- data/app/behaviors/ui/item_separator_behavior.rb +31 -0
- data/app/behaviors/ui/item_title_behavior.rb +31 -0
- data/app/behaviors/ui/kbd_behavior.rb +28 -0
- data/app/behaviors/ui/kbd_group_behavior.rb +26 -0
- data/app/behaviors/ui/label_behavior.rb +35 -0
- data/app/behaviors/ui/large_behavior.rb +23 -0
- data/app/behaviors/ui/lead_behavior.rb +23 -0
- data/app/behaviors/ui/list_behavior.rb +23 -0
- data/app/behaviors/ui/menubar_behavior.rb +43 -0
- data/app/behaviors/ui/menubar_checkbox_item_behavior.rb +56 -0
- data/app/behaviors/ui/menubar_content_behavior.rb +53 -0
- data/app/behaviors/ui/menubar_item_behavior.rb +78 -0
- data/app/behaviors/ui/menubar_label_behavior.rb +41 -0
- data/app/behaviors/ui/menubar_menu_behavior.rb +39 -0
- data/app/behaviors/ui/menubar_radio_group_behavior.rb +34 -0
- data/app/behaviors/ui/menubar_radio_item_behavior.rb +61 -0
- data/app/behaviors/ui/menubar_separator_behavior.rb +30 -0
- data/app/behaviors/ui/menubar_shortcut_behavior.rb +29 -0
- data/app/behaviors/ui/menubar_sub_behavior.rb +30 -0
- data/app/behaviors/ui/menubar_sub_content_behavior.rb +49 -0
- data/app/behaviors/ui/menubar_sub_trigger_behavior.rb +57 -0
- data/app/behaviors/ui/menubar_trigger_behavior.rb +48 -0
- data/app/behaviors/ui/muted_behavior.rb +23 -0
- data/app/behaviors/ui/navigation_menu_behavior.rb +42 -0
- data/app/behaviors/ui/navigation_menu_content_behavior.rb +65 -0
- data/app/behaviors/ui/navigation_menu_item_behavior.rb +38 -0
- data/app/behaviors/ui/navigation_menu_link_behavior.rb +68 -0
- data/app/behaviors/ui/navigation_menu_list_behavior.rb +33 -0
- data/app/behaviors/ui/navigation_menu_trigger_behavior.rb +57 -0
- data/app/behaviors/ui/navigation_menu_viewport_behavior.rb +61 -0
- data/app/behaviors/ui/p_behavior.rb +23 -0
- data/app/behaviors/ui/pagination_behavior.rb +26 -0
- data/app/behaviors/ui/pagination_content_behavior.rb +24 -0
- data/app/behaviors/ui/pagination_ellipsis_behavior.rb +25 -0
- data/app/behaviors/ui/pagination_item_behavior.rb +13 -0
- data/app/behaviors/ui/pagination_link_behavior.rb +57 -0
- data/app/behaviors/ui/pagination_next_behavior.rb +20 -0
- data/app/behaviors/ui/pagination_previous_behavior.rb +20 -0
- data/app/behaviors/ui/popover_behavior.rb +54 -0
- data/app/behaviors/ui/popover_content_behavior.rb +52 -0
- data/app/behaviors/ui/popover_trigger_behavior.rb +33 -0
- data/app/behaviors/ui/progress_behavior.rb +48 -0
- data/app/behaviors/ui/radio_button_behavior.rb +46 -0
- data/app/behaviors/ui/resizable_handle_behavior.rb +81 -0
- data/app/behaviors/ui/resizable_panel_behavior.rb +53 -0
- data/app/behaviors/ui/resizable_panel_group_behavior.rb +41 -0
- data/app/behaviors/ui/responsive_dialog_behavior.rb +41 -0
- data/app/behaviors/ui/scroll_area_behavior.rb +36 -0
- data/app/behaviors/ui/scroll_area_corner_behavior.rb +34 -0
- data/app/behaviors/ui/scroll_area_scrollbar_behavior.rb +50 -0
- data/app/behaviors/ui/scroll_area_thumb_behavior.rb +34 -0
- data/app/behaviors/ui/scroll_area_viewport_behavior.rb +36 -0
- data/app/behaviors/ui/select_behavior.rb +84 -0
- data/app/behaviors/ui/select_content_behavior.rb +42 -0
- data/app/behaviors/ui/select_group_behavior.rb +35 -0
- data/app/behaviors/ui/select_item_behavior.rb +48 -0
- data/app/behaviors/ui/select_label_behavior.rb +34 -0
- data/app/behaviors/ui/select_scroll_down_button_behavior.rb +51 -0
- data/app/behaviors/ui/select_scroll_up_button_behavior.rb +51 -0
- data/app/behaviors/ui/select_trigger_behavior.rb +40 -0
- data/app/behaviors/ui/separator_behavior.rb +58 -0
- data/app/behaviors/ui/shared_as_child_behavior.rb +71 -0
- data/app/behaviors/ui/sheet_behavior.rb +46 -0
- data/app/behaviors/ui/sheet_content_behavior.rb +92 -0
- data/app/behaviors/ui/sheet_footer_behavior.rb +27 -0
- data/app/behaviors/ui/sheet_header_behavior.rb +27 -0
- data/app/behaviors/ui/sheet_overlay_behavior.rb +76 -0
- data/app/behaviors/ui/sidebar_behavior.rb +88 -0
- data/app/behaviors/ui/sidebar_content_behavior.rb +36 -0
- data/app/behaviors/ui/sidebar_footer_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_group_action_behavior.rb +40 -0
- data/app/behaviors/ui/sidebar_group_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_group_content_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_group_label_behavior.rb +39 -0
- data/app/behaviors/ui/sidebar_header_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_input_behavior.rb +36 -0
- data/app/behaviors/ui/sidebar_inset_behavior.rb +39 -0
- data/app/behaviors/ui/sidebar_menu_action_behavior.rb +49 -0
- data/app/behaviors/ui/sidebar_menu_badge_behavior.rb +39 -0
- data/app/behaviors/ui/sidebar_menu_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_menu_button_behavior.rb +70 -0
- data/app/behaviors/ui/sidebar_menu_item_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_menu_skeleton_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_menu_sub_behavior.rb +36 -0
- data/app/behaviors/ui/sidebar_menu_sub_button_behavior.rb +59 -0
- data/app/behaviors/ui/sidebar_menu_sub_item_behavior.rb +35 -0
- data/app/behaviors/ui/sidebar_provider_behavior.rb +56 -0
- data/app/behaviors/ui/sidebar_rail_behavior.rb +47 -0
- data/app/behaviors/ui/sidebar_separator_behavior.rb +36 -0
- data/app/behaviors/ui/sidebar_trigger_behavior.rb +40 -0
- data/app/behaviors/ui/slider_behavior.rb +46 -0
- data/app/behaviors/ui/slider_range_behavior.rb +18 -0
- data/app/behaviors/ui/slider_thumb_behavior.rb +25 -0
- data/app/behaviors/ui/slider_track_behavior.rb +23 -0
- data/app/behaviors/ui/small_behavior.rb +23 -0
- data/app/behaviors/ui/sonner_toaster_behavior.rb +34 -0
- data/app/behaviors/ui/spinner_behavior.rb +50 -0
- data/app/behaviors/ui/switch_behavior.rb +68 -0
- data/app/behaviors/ui/table_behavior.rb +28 -0
- data/app/behaviors/ui/table_body_behavior.rb +28 -0
- data/app/behaviors/ui/table_caption_behavior.rb +28 -0
- data/app/behaviors/ui/table_cell_behavior.rb +28 -0
- data/app/behaviors/ui/table_footer_behavior.rb +28 -0
- data/app/behaviors/ui/table_head_behavior.rb +28 -0
- data/app/behaviors/ui/table_header_behavior.rb +28 -0
- data/app/behaviors/ui/table_row_behavior.rb +28 -0
- data/app/behaviors/ui/tabs_behavior.rb +32 -0
- data/app/behaviors/ui/tabs_content_behavior.rb +38 -0
- data/app/behaviors/ui/tabs_list_behavior.rb +20 -0
- data/app/behaviors/ui/tabs_trigger_behavior.rb +47 -0
- data/app/behaviors/ui/textarea_behavior.rb +36 -0
- data/app/behaviors/ui/toggle_behavior.rb +85 -0
- data/app/behaviors/ui/toggle_group_behavior.rb +68 -0
- data/app/behaviors/ui/toggle_group_item_behavior.rb +88 -0
- data/app/behaviors/ui/tooltip_behavior.rb +29 -0
- data/app/behaviors/ui/tooltip_content_behavior.rb +57 -0
- data/app/behaviors/ui/tooltip_trigger_behavior.rb +60 -0
- data/app/components/ui/accordion.rb +36 -0
- data/app/components/ui/accordion_content.rb +30 -0
- data/app/components/ui/accordion_item.rb +48 -0
- data/app/components/ui/accordion_trigger.rb +52 -0
- data/app/components/ui/alert.rb +31 -0
- data/app/components/ui/alert_description.rb +26 -0
- data/app/components/ui/alert_dialog.rb +33 -0
- data/app/components/ui/alert_dialog_action.rb +34 -0
- data/app/components/ui/alert_dialog_cancel.rb +34 -0
- data/app/components/ui/alert_dialog_content.rb +25 -0
- data/app/components/ui/alert_dialog_description.rb +25 -0
- data/app/components/ui/alert_dialog_footer.rb +28 -0
- data/app/components/ui/alert_dialog_header.rb +27 -0
- data/app/components/ui/alert_dialog_overlay.rb +30 -0
- data/app/components/ui/alert_dialog_title.rb +25 -0
- data/app/components/ui/alert_dialog_trigger.rb +27 -0
- data/app/components/ui/alert_title.rb +24 -0
- data/app/components/ui/aspect_ratio.rb +32 -0
- data/app/components/ui/avatar.rb +31 -0
- data/app/components/ui/avatar_fallback.rb +33 -0
- data/app/components/ui/avatar_image.rb +33 -0
- data/app/components/ui/badge.rb +37 -0
- data/app/components/ui/blockquote.rb +15 -0
- data/app/components/ui/breadcrumb.rb +31 -0
- data/app/components/ui/breadcrumb_ellipsis.rb +55 -0
- data/app/components/ui/breadcrumb_item.rb +27 -0
- data/app/components/ui/breadcrumb_link.rb +27 -0
- data/app/components/ui/breadcrumb_list.rb +27 -0
- data/app/components/ui/breadcrumb_page.rb +25 -0
- data/app/components/ui/breadcrumb_separator.rb +51 -0
- data/app/components/ui/button.rb +52 -0
- data/app/components/ui/button_group.rb +48 -0
- data/app/components/ui/button_group_separator.rb +32 -0
- data/app/components/ui/button_group_text.rb +45 -0
- data/app/components/ui/calendar.rb +209 -0
- data/app/components/ui/card.rb +14 -0
- data/app/components/ui/card_action.rb +14 -0
- data/app/components/ui/card_content.rb +14 -0
- data/app/components/ui/card_description.rb +14 -0
- data/app/components/ui/card_footer.rb +14 -0
- data/app/components/ui/card_header.rb +14 -0
- data/app/components/ui/card_title.rb +14 -0
- data/app/components/ui/carousel.rb +16 -0
- data/app/components/ui/carousel_content.rb +15 -0
- data/app/components/ui/carousel_item.rb +13 -0
- data/app/components/ui/carousel_next.rb +29 -0
- data/app/components/ui/carousel_previous.rb +29 -0
- data/app/components/ui/checkbox.rb +49 -0
- data/app/components/ui/collapsible.rb +23 -0
- data/app/components/ui/collapsible_content.rb +15 -0
- data/app/components/ui/collapsible_trigger.rb +21 -0
- data/app/components/ui/combobox_wrapper.rb +57 -0
- data/app/components/ui/command.rb +15 -0
- data/app/components/ui/command_dialog.rb +25 -0
- data/app/components/ui/command_empty.rb +14 -0
- data/app/components/ui/command_group.rb +21 -0
- data/app/components/ui/command_input.rb +32 -0
- data/app/components/ui/command_item.rb +16 -0
- data/app/components/ui/command_list.rb +14 -0
- data/app/components/ui/command_separator.rb +14 -0
- data/app/components/ui/command_shortcut.rb +14 -0
- data/app/components/ui/context_menu.rb +30 -0
- data/app/components/ui/context_menu_checkbox_item.rb +51 -0
- data/app/components/ui/context_menu_content.rb +27 -0
- data/app/components/ui/context_menu_item.rb +40 -0
- data/app/components/ui/context_menu_label.rb +27 -0
- data/app/components/ui/context_menu_radio_group.rb +28 -0
- data/app/components/ui/context_menu_radio_item.rb +51 -0
- data/app/components/ui/context_menu_separator.rb +23 -0
- data/app/components/ui/context_menu_shortcut.rb +25 -0
- data/app/components/ui/context_menu_trigger.rb +27 -0
- data/app/components/ui/date_picker.rb +128 -0
- data/app/components/ui/date_picker_input.rb +75 -0
- data/app/components/ui/date_picker_trigger.rb +74 -0
- data/app/components/ui/dialog.rb +19 -0
- data/app/components/ui/dialog_close.rb +27 -0
- data/app/components/ui/dialog_content.rb +17 -0
- data/app/components/ui/dialog_description.rb +22 -0
- data/app/components/ui/dialog_footer.rb +15 -0
- data/app/components/ui/dialog_header.rb +15 -0
- data/app/components/ui/dialog_overlay.rb +18 -0
- data/app/components/ui/dialog_title.rb +22 -0
- data/app/components/ui/dialog_trigger.rb +38 -0
- data/app/components/ui/drawer.rb +39 -0
- data/app/components/ui/drawer_close.rb +23 -0
- data/app/components/ui/drawer_content.rb +19 -0
- data/app/components/ui/drawer_description.rb +16 -0
- data/app/components/ui/drawer_footer.rb +16 -0
- data/app/components/ui/drawer_handle.rb +14 -0
- data/app/components/ui/drawer_header.rb +16 -0
- data/app/components/ui/drawer_overlay.rb +17 -0
- data/app/components/ui/drawer_title.rb +16 -0
- data/app/components/ui/drawer_trigger.rb +34 -0
- data/app/components/ui/dropdown_menu.rb +56 -0
- data/app/components/ui/dropdown_menu_checkbox_item.rb +55 -0
- data/app/components/ui/dropdown_menu_content.rb +29 -0
- data/app/components/ui/dropdown_menu_item.rb +40 -0
- data/app/components/ui/dropdown_menu_label.rb +27 -0
- data/app/components/ui/dropdown_menu_radio_group.rb +28 -0
- data/app/components/ui/dropdown_menu_radio_item.rb +57 -0
- data/app/components/ui/dropdown_menu_separator.rb +23 -0
- data/app/components/ui/dropdown_menu_shortcut.rb +25 -0
- data/app/components/ui/dropdown_menu_sub.rb +28 -0
- data/app/components/ui/dropdown_menu_sub_content.rb +31 -0
- data/app/components/ui/dropdown_menu_sub_trigger.rb +47 -0
- data/app/components/ui/dropdown_menu_trigger.rb +43 -0
- data/app/components/ui/empty.rb +25 -0
- data/app/components/ui/empty_content.rb +22 -0
- data/app/components/ui/empty_description.rb +20 -0
- data/app/components/ui/empty_header.rb +24 -0
- data/app/components/ui/empty_media.rb +28 -0
- data/app/components/ui/empty_title.rb +20 -0
- data/app/components/ui/field.rb +35 -0
- data/app/components/ui/field_content.rb +25 -0
- data/app/components/ui/field_description.rb +25 -0
- data/app/components/ui/field_error.rb +61 -0
- data/app/components/ui/field_group.rb +28 -0
- data/app/components/ui/field_label.rb +27 -0
- data/app/components/ui/field_legend.rb +30 -0
- data/app/components/ui/field_separator.rb +50 -0
- data/app/components/ui/field_set.rb +27 -0
- data/app/components/ui/field_title.rb +25 -0
- data/app/components/ui/h1.rb +15 -0
- data/app/components/ui/h2.rb +15 -0
- data/app/components/ui/h3.rb +15 -0
- data/app/components/ui/h4.rb +15 -0
- data/app/components/ui/hover_card.rb +26 -0
- data/app/components/ui/hover_card_content.rb +32 -0
- data/app/components/ui/hover_card_trigger.rb +46 -0
- data/app/components/ui/inline_code.rb +15 -0
- data/app/components/ui/input.rb +19 -0
- data/app/components/ui/input_group.rb +33 -0
- data/app/components/ui/input_group_addon.rb +32 -0
- data/app/components/ui/input_group_button.rb +40 -0
- data/app/components/ui/input_group_input.rb +43 -0
- data/app/components/ui/input_group_text.rb +31 -0
- data/app/components/ui/input_group_textarea.rb +43 -0
- data/app/components/ui/input_otp.rb +56 -0
- data/app/components/ui/input_otp_group.rb +25 -0
- data/app/components/ui/input_otp_separator.rb +34 -0
- data/app/components/ui/input_otp_slot.rb +32 -0
- data/app/components/ui/item.rb +26 -0
- data/app/components/ui/item_actions.rb +14 -0
- data/app/components/ui/item_content.rb +14 -0
- data/app/components/ui/item_description.rb +14 -0
- data/app/components/ui/item_footer.rb +14 -0
- data/app/components/ui/item_group.rb +14 -0
- data/app/components/ui/item_header.rb +14 -0
- data/app/components/ui/item_media.rb +15 -0
- data/app/components/ui/item_separator.rb +14 -0
- data/app/components/ui/item_title.rb +14 -0
- data/app/components/ui/kbd.rb +29 -0
- data/app/components/ui/kbd_group.rb +30 -0
- data/app/components/ui/label.rb +30 -0
- data/app/components/ui/large.rb +15 -0
- data/app/components/ui/lead.rb +15 -0
- data/app/components/ui/list.rb +15 -0
- data/app/components/ui/menubar.rb +36 -0
- data/app/components/ui/menubar_checkbox_item.rb +54 -0
- data/app/components/ui/menubar_content.rb +32 -0
- data/app/components/ui/menubar_item.rb +39 -0
- data/app/components/ui/menubar_label.rb +29 -0
- data/app/components/ui/menubar_menu.rb +29 -0
- data/app/components/ui/menubar_radio_group.rb +29 -0
- data/app/components/ui/menubar_radio_item.rb +56 -0
- data/app/components/ui/menubar_separator.rb +22 -0
- data/app/components/ui/menubar_shortcut.rb +27 -0
- data/app/components/ui/menubar_sub.rb +30 -0
- data/app/components/ui/menubar_sub_content.rb +27 -0
- data/app/components/ui/menubar_sub_trigger.rb +48 -0
- data/app/components/ui/menubar_trigger.rb +26 -0
- data/app/components/ui/muted.rb +15 -0
- data/app/components/ui/navigation_menu.rb +50 -0
- data/app/components/ui/navigation_menu_content.rb +33 -0
- data/app/components/ui/navigation_menu_item.rb +36 -0
- data/app/components/ui/navigation_menu_link.rb +70 -0
- data/app/components/ui/navigation_menu_list.rb +28 -0
- data/app/components/ui/navigation_menu_trigger.rb +51 -0
- data/app/components/ui/navigation_menu_viewport.rb +25 -0
- data/app/components/ui/p.rb +15 -0
- data/app/components/ui/pagination.rb +19 -0
- data/app/components/ui/pagination_content.rb +19 -0
- data/app/components/ui/pagination_ellipsis.rb +26 -0
- data/app/components/ui/pagination_item.rb +17 -0
- data/app/components/ui/pagination_link.rb +25 -0
- data/app/components/ui/pagination_next.rb +31 -0
- data/app/components/ui/pagination_previous.rb +31 -0
- data/app/components/ui/popover.rb +48 -0
- data/app/components/ui/popover_content.rb +29 -0
- data/app/components/ui/popover_trigger.rb +36 -0
- data/app/components/ui/progress.rb +37 -0
- data/app/components/ui/radio_button.rb +50 -0
- data/app/components/ui/resizable_handle.rb +58 -0
- data/app/components/ui/resizable_panel.rb +35 -0
- data/app/components/ui/resizable_panel_group.rb +41 -0
- data/app/components/ui/responsive_dialog.rb +98 -0
- data/app/components/ui/scroll_area.rb +62 -0
- data/app/components/ui/scroll_area_corner.rb +33 -0
- data/app/components/ui/scroll_area_scrollbar.rb +45 -0
- data/app/components/ui/scroll_area_thumb.rb +38 -0
- data/app/components/ui/scroll_area_viewport.rb +41 -0
- data/app/components/ui/select.rb +42 -0
- data/app/components/ui/select_content.rb +43 -0
- data/app/components/ui/select_group.rb +38 -0
- data/app/components/ui/select_item.rb +67 -0
- data/app/components/ui/select_label.rb +34 -0
- data/app/components/ui/select_scroll_down_button.rb +47 -0
- data/app/components/ui/select_scroll_up_button.rb +47 -0
- data/app/components/ui/select_trigger.rb +45 -0
- data/app/components/ui/separator.rb +39 -0
- data/app/components/ui/sheet.rb +19 -0
- data/app/components/ui/sheet_close.rb +39 -0
- data/app/components/ui/sheet_content.rb +55 -0
- data/app/components/ui/sheet_description.rb +22 -0
- data/app/components/ui/sheet_footer.rb +15 -0
- data/app/components/ui/sheet_header.rb +15 -0
- data/app/components/ui/sheet_overlay.rb +18 -0
- data/app/components/ui/sheet_title.rb +22 -0
- data/app/components/ui/sheet_trigger.rb +27 -0
- data/app/components/ui/sidebar.rb +100 -0
- data/app/components/ui/sidebar_content.rb +34 -0
- data/app/components/ui/sidebar_footer.rb +36 -0
- data/app/components/ui/sidebar_group.rb +52 -0
- data/app/components/ui/sidebar_group_action.rb +47 -0
- data/app/components/ui/sidebar_group_content.rb +42 -0
- data/app/components/ui/sidebar_group_label.rb +46 -0
- data/app/components/ui/sidebar_header.rb +36 -0
- data/app/components/ui/sidebar_input.rb +42 -0
- data/app/components/ui/sidebar_inset.rb +42 -0
- data/app/components/ui/sidebar_menu.rb +39 -0
- data/app/components/ui/sidebar_menu_action.rb +60 -0
- data/app/components/ui/sidebar_menu_badge.rb +39 -0
- data/app/components/ui/sidebar_menu_button.rb +71 -0
- data/app/components/ui/sidebar_menu_item.rb +45 -0
- data/app/components/ui/sidebar_menu_skeleton.rb +63 -0
- data/app/components/ui/sidebar_menu_sub.rb +50 -0
- data/app/components/ui/sidebar_menu_sub_button.rb +48 -0
- data/app/components/ui/sidebar_menu_sub_item.rb +34 -0
- data/app/components/ui/sidebar_provider.rb +73 -0
- data/app/components/ui/sidebar_rail.rb +35 -0
- data/app/components/ui/sidebar_separator.rb +32 -0
- data/app/components/ui/sidebar_trigger.rb +57 -0
- data/app/components/ui/skeleton.rb +42 -0
- data/app/components/ui/small.rb +15 -0
- data/app/components/ui/sonner_toaster.rb +53 -0
- data/app/components/ui/spinner.rb +41 -0
- data/app/components/ui/switch.rb +70 -0
- data/app/components/ui/table.rb +45 -0
- data/app/components/ui/table_body.rb +29 -0
- data/app/components/ui/table_caption.rb +16 -0
- data/app/components/ui/table_cell.rb +16 -0
- data/app/components/ui/table_footer.rb +29 -0
- data/app/components/ui/table_head.rb +16 -0
- data/app/components/ui/table_header.rb +29 -0
- data/app/components/ui/table_row.rb +25 -0
- data/app/components/ui/tabs.rb +40 -0
- data/app/components/ui/tabs_content.rb +30 -0
- data/app/components/ui/tabs_list.rb +27 -0
- data/app/components/ui/tabs_trigger.rb +33 -0
- data/app/components/ui/textarea.rb +19 -0
- data/app/components/ui/toggle.rb +43 -0
- data/app/components/ui/toggle_group.rb +58 -0
- data/app/components/ui/toggle_group_item.rb +71 -0
- data/app/components/ui/tooltip.rb +31 -0
- data/app/components/ui/tooltip_content.rb +35 -0
- data/app/components/ui/tooltip_trigger.rb +42 -0
- data/app/controllers/ui/application_controller.rb +4 -0
- data/app/helpers/ui/application_helper.rb +20 -0
- data/app/helpers/ui/combobox_behavior.rb +59 -0
- data/app/helpers/ui/empty_behavior.rb +124 -0
- data/app/helpers/ui/input_group_addon_behavior.rb +52 -0
- data/app/helpers/ui/input_group_behavior.rb +63 -0
- data/app/helpers/ui/input_group_button_behavior.rb +82 -0
- data/app/helpers/ui/input_group_input_behavior.rb +50 -0
- data/app/helpers/ui/input_group_text_behavior.rb +32 -0
- data/app/helpers/ui/input_group_textarea_behavior.rb +50 -0
- data/app/helpers/ui/popover_behavior.rb +54 -0
- data/app/helpers/ui/popover_content_behavior.rb +52 -0
- data/app/helpers/ui/popover_trigger_behavior.rb +33 -0
- data/app/helpers/ui/scroll_area_behavior.rb +36 -0
- data/app/helpers/ui/scroll_area_corner_behavior.rb +34 -0
- data/app/helpers/ui/scroll_area_scrollbar_behavior.rb +50 -0
- data/app/helpers/ui/scroll_area_thumb_behavior.rb +34 -0
- data/app/helpers/ui/scroll_area_viewport_behavior.rb +36 -0
- data/app/helpers/ui/select_behavior.rb +84 -0
- data/app/helpers/ui/select_content_behavior.rb +42 -0
- data/app/helpers/ui/select_group_behavior.rb +35 -0
- data/app/helpers/ui/select_item_behavior.rb +48 -0
- data/app/helpers/ui/select_label_behavior.rb +34 -0
- data/app/helpers/ui/select_scroll_down_button_behavior.rb +51 -0
- data/app/helpers/ui/select_scroll_up_button_behavior.rb +51 -0
- data/app/helpers/ui/select_trigger_behavior.rb +40 -0
- data/app/helpers/ui/spinner_behavior.rb +50 -0
- data/app/helpers/ui/textarea_behavior.rb +36 -0
- data/app/javascript/ui/common.js +24 -0
- data/app/javascript/ui/controllers/accordion_controller.js +159 -0
- data/app/javascript/ui/controllers/alert_dialog_controller.js +98 -0
- data/app/javascript/ui/controllers/avatar_controller.js +84 -0
- data/app/javascript/ui/controllers/calendar_controller.js +867 -0
- data/app/javascript/ui/controllers/carousel_controller.js +191 -0
- data/app/javascript/ui/controllers/checkbox_controller.js +27 -0
- data/app/javascript/ui/controllers/collapsible_controller.js +65 -0
- data/app/javascript/ui/controllers/combobox_controller.js +149 -0
- data/app/javascript/ui/controllers/command_controller.js +199 -0
- data/app/javascript/ui/controllers/command_dialog_controller.js +100 -0
- data/app/javascript/ui/controllers/context_menu_controller.js +289 -0
- data/app/javascript/ui/controllers/datepicker_controller.js +385 -0
- data/app/javascript/ui/controllers/dialog_controller.js +136 -0
- data/app/javascript/ui/controllers/drawer_controller.js +945 -0
- data/app/javascript/ui/controllers/dropdown_controller.js +850 -0
- data/app/javascript/ui/controllers/hello_controller.js +30 -0
- data/app/javascript/ui/controllers/hover_card_controller.js +147 -0
- data/app/javascript/ui/controllers/input_otp_controller.js +139 -0
- data/app/javascript/ui/controllers/menubar_controller.js +799 -0
- data/app/javascript/ui/controllers/navigation_menu_controller.js +527 -0
- data/app/javascript/ui/controllers/popover_controller.js +257 -0
- data/app/javascript/ui/controllers/resizable_controller.js +449 -0
- data/app/javascript/ui/controllers/responsive_dialog_controller.js +156 -0
- data/app/javascript/ui/controllers/scroll_area_controller.js +623 -0
- data/app/javascript/ui/controllers/select_controller.js +456 -0
- data/app/javascript/ui/controllers/sidebar_controller.js +284 -0
- data/app/javascript/ui/controllers/slider_controller.js +342 -0
- data/app/javascript/ui/controllers/sonner_controller.js +393 -0
- data/app/javascript/ui/controllers/switch_controller.js +75 -0
- data/app/javascript/ui/controllers/tabs_controller.js +156 -0
- data/app/javascript/ui/controllers/toggle_controller.js +49 -0
- data/app/javascript/ui/controllers/toggle_group_controller.js +155 -0
- data/app/javascript/ui/controllers/tooltip_controller.js +122 -0
- data/app/javascript/ui/index.js +94 -0
- data/app/javascript/ui/utils/click-outside-manager.js +133 -0
- data/app/javascript/ui/utils/escape-key-manager.js +118 -0
- data/app/javascript/ui/utils/floating-ui-positioner.js +282 -0
- data/app/javascript/ui/utils/focus-trap-manager.js +238 -0
- data/app/javascript/ui/utils/index.js +86 -0
- data/app/javascript/ui/utils/menu_utils.js +423 -0
- data/app/javascript/ui/utils/scroll-lock-manager.js +149 -0
- data/app/javascript/ui/utils/state-manager.js +205 -0
- data/app/jobs/ui/application_job.rb +4 -0
- data/app/mailers/ui/application_mailer.rb +6 -0
- data/app/models/ui/application_record.rb +5 -0
- data/app/view_components/ui/accordion_component.rb +35 -0
- data/app/view_components/ui/accordion_content_component.rb +29 -0
- data/app/view_components/ui/accordion_item_component.rb +43 -0
- data/app/view_components/ui/accordion_trigger_component.rb +31 -0
- data/app/view_components/ui/alert_component.rb +23 -0
- data/app/view_components/ui/alert_description_component.rb +21 -0
- data/app/view_components/ui/alert_title_component.rb +21 -0
- data/app/view_components/ui/aspect_ratio_component.rb +26 -0
- data/app/view_components/ui/avatar_component.rb +21 -0
- data/app/view_components/ui/avatar_fallback_component.rb +21 -0
- data/app/view_components/ui/avatar_image_component.rb +23 -0
- data/app/view_components/ui/badge_component.rb +23 -0
- data/app/view_components/ui/blockquote_component.rb +18 -0
- data/app/view_components/ui/breadcrumb_component.rb +33 -0
- data/app/view_components/ui/breadcrumb_ellipsis_component.rb +50 -0
- data/app/view_components/ui/breadcrumb_item_component.rb +29 -0
- data/app/view_components/ui/breadcrumb_link_component.rb +29 -0
- data/app/view_components/ui/breadcrumb_list_component.rb +29 -0
- data/app/view_components/ui/breadcrumb_page_component.rb +27 -0
- data/app/view_components/ui/breadcrumb_separator_component.rb +47 -0
- data/app/view_components/ui/button_component.rb +43 -0
- data/app/view_components/ui/button_group_component.rb +38 -0
- data/app/view_components/ui/button_group_separator_component.rb +33 -0
- data/app/view_components/ui/button_group_text_component.rb +30 -0
- data/app/view_components/ui/calendar_component.rb +185 -0
- data/app/view_components/ui/card_action_component.rb +14 -0
- data/app/view_components/ui/card_component.rb +14 -0
- data/app/view_components/ui/card_content_component.rb +14 -0
- data/app/view_components/ui/card_description_component.rb +14 -0
- data/app/view_components/ui/card_footer_component.rb +14 -0
- data/app/view_components/ui/card_header_component.rb +14 -0
- data/app/view_components/ui/card_title_component.rb +14 -0
- data/app/view_components/ui/carousel_component.rb +16 -0
- data/app/view_components/ui/carousel_content_component.rb +15 -0
- data/app/view_components/ui/carousel_item_component.rb +13 -0
- data/app/view_components/ui/carousel_next_component.rb +31 -0
- data/app/view_components/ui/carousel_previous_component.rb +31 -0
- data/app/view_components/ui/checkbox_component.rb +55 -0
- data/app/view_components/ui/collapsible_component.rb +23 -0
- data/app/view_components/ui/collapsible_content_component.rb +15 -0
- data/app/view_components/ui/collapsible_trigger_component.rb +21 -0
- data/app/view_components/ui/combobox_wrapper_component.rb +56 -0
- data/app/view_components/ui/command_component.rb +15 -0
- data/app/view_components/ui/command_dialog_component.rb +25 -0
- data/app/view_components/ui/command_empty_component.rb +14 -0
- data/app/view_components/ui/command_group_component.rb +21 -0
- data/app/view_components/ui/command_input_component.rb +20 -0
- data/app/view_components/ui/command_item_component.rb +16 -0
- data/app/view_components/ui/command_list_component.rb +14 -0
- data/app/view_components/ui/command_separator_component.rb +14 -0
- data/app/view_components/ui/command_shortcut_component.rb +14 -0
- data/app/view_components/ui/context_menu_checkbox_item_component.rb +45 -0
- data/app/view_components/ui/context_menu_component.rb +20 -0
- data/app/view_components/ui/context_menu_content_component.rb +20 -0
- data/app/view_components/ui/context_menu_item_component.rb +29 -0
- data/app/view_components/ui/context_menu_label_component.rb +22 -0
- data/app/view_components/ui/context_menu_radio_group_component.rb +19 -0
- data/app/view_components/ui/context_menu_radio_item_component.rb +45 -0
- data/app/view_components/ui/context_menu_separator_component.rb +15 -0
- data/app/view_components/ui/context_menu_shortcut_component.rb +19 -0
- data/app/view_components/ui/context_menu_trigger_component.rb +20 -0
- data/app/view_components/ui/date_picker_component.rb +137 -0
- data/app/view_components/ui/date_picker_input_component.rb +76 -0
- data/app/view_components/ui/date_picker_trigger_component.rb +79 -0
- data/app/view_components/ui/dialog_close_component.rb +71 -0
- data/app/view_components/ui/dialog_component.rb +50 -0
- data/app/view_components/ui/dialog_content_component.rb +28 -0
- data/app/view_components/ui/dialog_description_component.rb +26 -0
- data/app/view_components/ui/dialog_footer_component.rb +21 -0
- data/app/view_components/ui/dialog_header_component.rb +22 -0
- data/app/view_components/ui/dialog_overlay_component.rb +36 -0
- data/app/view_components/ui/dialog_title_component.rb +26 -0
- data/app/view_components/ui/dialog_trigger_component.rb +71 -0
- data/app/view_components/ui/drawer_close_component.rb +35 -0
- data/app/view_components/ui/drawer_component.rb +81 -0
- data/app/view_components/ui/drawer_content_component.rb +32 -0
- data/app/view_components/ui/drawer_description_component.rb +21 -0
- data/app/view_components/ui/drawer_footer_component.rb +24 -0
- data/app/view_components/ui/drawer_handle_component.rb +24 -0
- data/app/view_components/ui/drawer_header_component.rb +24 -0
- data/app/view_components/ui/drawer_overlay_component.rb +28 -0
- data/app/view_components/ui/drawer_title_component.rb +21 -0
- data/app/view_components/ui/drawer_trigger_component.rb +71 -0
- data/app/view_components/ui/dropdown_menu_checkbox_item_component.rb +36 -0
- data/app/view_components/ui/dropdown_menu_component.rb +52 -0
- data/app/view_components/ui/dropdown_menu_content_component.rb +18 -0
- data/app/view_components/ui/dropdown_menu_item_component.rb +21 -0
- data/app/view_components/ui/dropdown_menu_label_component.rb +18 -0
- data/app/view_components/ui/dropdown_menu_radio_group_component.rb +17 -0
- data/app/view_components/ui/dropdown_menu_radio_item_component.rb +37 -0
- data/app/view_components/ui/dropdown_menu_separator_component.rb +15 -0
- data/app/view_components/ui/dropdown_menu_shortcut_component.rb +17 -0
- data/app/view_components/ui/dropdown_menu_sub_component.rb +17 -0
- data/app/view_components/ui/dropdown_menu_sub_content_component.rb +19 -0
- data/app/view_components/ui/dropdown_menu_sub_trigger_component.rb +29 -0
- data/app/view_components/ui/dropdown_menu_trigger_component.rb +52 -0
- data/app/view_components/ui/empty_component.rb +17 -0
- data/app/view_components/ui/empty_content_component.rb +17 -0
- data/app/view_components/ui/empty_description_component.rb +17 -0
- data/app/view_components/ui/empty_header_component.rb +17 -0
- data/app/view_components/ui/empty_media_component.rb +18 -0
- data/app/view_components/ui/empty_title_component.rb +17 -0
- data/app/view_components/ui/field_component.rb +41 -0
- data/app/view_components/ui/field_content_component.rb +27 -0
- data/app/view_components/ui/field_description_component.rb +27 -0
- data/app/view_components/ui/field_error_component.rb +63 -0
- data/app/view_components/ui/field_group_component.rb +32 -0
- data/app/view_components/ui/field_label_component.rb +29 -0
- data/app/view_components/ui/field_legend_component.rb +34 -0
- data/app/view_components/ui/field_separator_component.rb +53 -0
- data/app/view_components/ui/field_set_component.rb +30 -0
- data/app/view_components/ui/field_title_component.rb +27 -0
- data/app/view_components/ui/h1_component.rb +21 -0
- data/app/view_components/ui/h2_component.rb +21 -0
- data/app/view_components/ui/h3_component.rb +18 -0
- data/app/view_components/ui/h4_component.rb +18 -0
- data/app/view_components/ui/hover_card_component.rb +30 -0
- data/app/view_components/ui/hover_card_content_component.rb +36 -0
- data/app/view_components/ui/hover_card_trigger_component.rb +54 -0
- data/app/view_components/ui/inline_code_component.rb +18 -0
- data/app/view_components/ui/input_component.rb +23 -0
- data/app/view_components/ui/input_group_addon_component.rb +36 -0
- data/app/view_components/ui/input_group_button_component.rb +36 -0
- data/app/view_components/ui/input_group_component.rb +35 -0
- data/app/view_components/ui/input_group_input_component.rb +42 -0
- data/app/view_components/ui/input_group_text_component.rb +33 -0
- data/app/view_components/ui/input_group_textarea_component.rb +42 -0
- data/app/view_components/ui/input_otp_component.rb +61 -0
- data/app/view_components/ui/input_otp_group_component.rb +29 -0
- data/app/view_components/ui/input_otp_separator_component.rb +36 -0
- data/app/view_components/ui/input_otp_slot_component.rb +32 -0
- data/app/view_components/ui/item_actions_component.rb +18 -0
- data/app/view_components/ui/item_component.rb +30 -0
- data/app/view_components/ui/item_content_component.rb +18 -0
- data/app/view_components/ui/item_description_component.rb +18 -0
- data/app/view_components/ui/item_footer_component.rb +18 -0
- data/app/view_components/ui/item_group_component.rb +18 -0
- data/app/view_components/ui/item_header_component.rb +18 -0
- data/app/view_components/ui/item_media_component.rb +19 -0
- data/app/view_components/ui/item_separator_component.rb +18 -0
- data/app/view_components/ui/item_title_component.rb +18 -0
- data/app/view_components/ui/kbd_component.rb +31 -0
- data/app/view_components/ui/kbd_group_component.rb +32 -0
- data/app/view_components/ui/label_component.rb +23 -0
- data/app/view_components/ui/large_component.rb +18 -0
- data/app/view_components/ui/lead_component.rb +18 -0
- data/app/view_components/ui/list_component.rb +18 -0
- data/app/view_components/ui/menubar_checkbox_item_component.rb +47 -0
- data/app/view_components/ui/menubar_component.rb +24 -0
- data/app/view_components/ui/menubar_content_component.rb +26 -0
- data/app/view_components/ui/menubar_item_component.rb +31 -0
- data/app/view_components/ui/menubar_label_component.rb +23 -0
- data/app/view_components/ui/menubar_menu_component.rb +25 -0
- data/app/view_components/ui/menubar_radio_group_component.rb +26 -0
- data/app/view_components/ui/menubar_radio_item_component.rb +48 -0
- data/app/view_components/ui/menubar_separator_component.rb +20 -0
- data/app/view_components/ui/menubar_shortcut_component.rb +22 -0
- data/app/view_components/ui/menubar_sub_component.rb +25 -0
- data/app/view_components/ui/menubar_sub_content_component.rb +25 -0
- data/app/view_components/ui/menubar_sub_trigger_component.rb +43 -0
- data/app/view_components/ui/menubar_trigger_component.rb +23 -0
- data/app/view_components/ui/muted_component.rb +18 -0
- data/app/view_components/ui/navigation_menu_component.rb +42 -0
- data/app/view_components/ui/navigation_menu_content_component.rb +23 -0
- data/app/view_components/ui/navigation_menu_item_component.rb +23 -0
- data/app/view_components/ui/navigation_menu_link_component.rb +101 -0
- data/app/view_components/ui/navigation_menu_list_component.rb +21 -0
- data/app/view_components/ui/navigation_menu_trigger_component.rb +45 -0
- data/app/view_components/ui/navigation_menu_viewport_component.rb +21 -0
- data/app/view_components/ui/p_component.rb +18 -0
- data/app/view_components/ui/pagination_component.rb +18 -0
- data/app/view_components/ui/pagination_content_component.rb +18 -0
- data/app/view_components/ui/pagination_ellipsis_component.rb +25 -0
- data/app/view_components/ui/pagination_item_component.rb +16 -0
- data/app/view_components/ui/pagination_link_component.rb +26 -0
- data/app/view_components/ui/pagination_next_component.rb +30 -0
- data/app/view_components/ui/pagination_previous_component.rb +30 -0
- data/app/view_components/ui/popover_component.rb +55 -0
- data/app/view_components/ui/popover_content_component.rb +43 -0
- data/app/view_components/ui/popover_trigger_component.rb +72 -0
- data/app/view_components/ui/progress_component.rb +39 -0
- data/app/view_components/ui/radio_button_component.rb +56 -0
- data/app/view_components/ui/resizable_handle_component.rb +35 -0
- data/app/view_components/ui/resizable_panel_component.rb +39 -0
- data/app/view_components/ui/resizable_panel_group_component.rb +45 -0
- data/app/view_components/ui/responsive_dialog_component.rb +81 -0
- data/app/view_components/ui/scroll_area_component.rb +46 -0
- data/app/view_components/ui/scroll_area_corner_component.rb +22 -0
- data/app/view_components/ui/scroll_area_scrollbar_component.rb +35 -0
- data/app/view_components/ui/scroll_area_thumb_component.rb +29 -0
- data/app/view_components/ui/scroll_area_viewport_component.rb +32 -0
- data/app/view_components/ui/select_component.rb +31 -0
- data/app/view_components/ui/select_content_component.rb +41 -0
- data/app/view_components/ui/select_group_component.rb +26 -0
- data/app/view_components/ui/select_item_component.rb +45 -0
- data/app/view_components/ui/select_label_component.rb +22 -0
- data/app/view_components/ui/select_scroll_down_button_component.rb +35 -0
- data/app/view_components/ui/select_scroll_up_button_component.rb +35 -0
- data/app/view_components/ui/select_trigger_component.rb +27 -0
- data/app/view_components/ui/separator_component.rb +27 -0
- data/app/view_components/ui/sheet_close_component.rb +71 -0
- data/app/view_components/ui/sheet_component.rb +50 -0
- data/app/view_components/ui/sheet_content_component.rb +52 -0
- data/app/view_components/ui/sheet_description_component.rb +25 -0
- data/app/view_components/ui/sheet_footer_component.rb +21 -0
- data/app/view_components/ui/sheet_header_component.rb +21 -0
- data/app/view_components/ui/sheet_overlay_component.rb +36 -0
- data/app/view_components/ui/sheet_title_component.rb +25 -0
- data/app/view_components/ui/sheet_trigger_component.rb +60 -0
- data/app/view_components/ui/skeleton_component.rb +30 -0
- data/app/view_components/ui/slider_component.rb +61 -0
- data/app/view_components/ui/slider_range_component.rb +24 -0
- data/app/view_components/ui/slider_thumb_component.rb +30 -0
- data/app/view_components/ui/slider_track_component.rb +28 -0
- data/app/view_components/ui/small_component.rb +18 -0
- data/app/view_components/ui/sonner_toaster_component.rb +53 -0
- data/app/view_components/ui/spinner_component.rb +48 -0
- data/app/view_components/ui/switch_component.rb +55 -0
- data/app/view_components/ui/table_body_component.rb +21 -0
- data/app/view_components/ui/table_caption_component.rb +14 -0
- data/app/view_components/ui/table_cell_component.rb +14 -0
- data/app/view_components/ui/table_component.rb +27 -0
- data/app/view_components/ui/table_footer_component.rb +21 -0
- data/app/view_components/ui/table_head_component.rb +14 -0
- data/app/view_components/ui/table_header_component.rb +21 -0
- data/app/view_components/ui/table_row_component.rb +23 -0
- data/app/view_components/ui/tabs_component.rb +39 -0
- data/app/view_components/ui/tabs_content_component.rb +34 -0
- data/app/view_components/ui/tabs_list_component.rb +30 -0
- data/app/view_components/ui/tabs_trigger_component.rb +37 -0
- data/app/view_components/ui/textarea_component.rb +18 -0
- data/app/view_components/ui/toggle_component.rb +48 -0
- data/app/view_components/ui/toggle_group_component.rb +68 -0
- data/app/view_components/ui/toggle_group_item_component.rb +72 -0
- data/app/view_components/ui/tooltip_component.rb +19 -0
- data/app/view_components/ui/tooltip_content_component.rb +28 -0
- data/app/view_components/ui/tooltip_trigger_component.rb +25 -0
- data/app/views/layouts/ui/application.html.erb +21 -0
- data/app/views/ui/_accordion.html.erb +17 -0
- data/app/views/ui/_alert.html.erb +22 -0
- data/app/views/ui/_aspect_ratio.html.erb +18 -0
- data/app/views/ui/_avatar.html.erb +13 -0
- data/app/views/ui/_badge.html.erb +18 -0
- data/app/views/ui/_blockquote.html.erb +19 -0
- data/app/views/ui/_breadcrumb.html.erb +14 -0
- data/app/views/ui/_button.html.erb +38 -0
- data/app/views/ui/_button_group.html.erb +17 -0
- data/app/views/ui/_calendar.html.erb +172 -0
- data/app/views/ui/_card.html.erb +18 -0
- data/app/views/ui/_carousel.html.erb +17 -0
- data/app/views/ui/_checkbox.html.erb +32 -0
- data/app/views/ui/_collapsible.html.erb +23 -0
- data/app/views/ui/_command.html.erb +19 -0
- data/app/views/ui/_context_menu.html.erb +21 -0
- data/app/views/ui/_date_picker.html.erb +93 -0
- data/app/views/ui/_dialog.html.erb +18 -0
- data/app/views/ui/_drawer.html.erb +25 -0
- data/app/views/ui/_dropdown_menu.html.erb +40 -0
- data/app/views/ui/_empty.html.erb +13 -0
- data/app/views/ui/_field.html.erb +15 -0
- data/app/views/ui/_h1.html.erb +19 -0
- data/app/views/ui/_h2.html.erb +19 -0
- data/app/views/ui/_h3.html.erb +19 -0
- data/app/views/ui/_h4.html.erb +19 -0
- data/app/views/ui/_hover_card.html.erb +14 -0
- data/app/views/ui/_inline_code.html.erb +19 -0
- data/app/views/ui/_input.html.erb +18 -0
- data/app/views/ui/_input_group.html.erb +14 -0
- data/app/views/ui/_input_otp.html.erb +44 -0
- data/app/views/ui/_item.html.erb +9 -0
- data/app/views/ui/_kbd.html.erb +15 -0
- data/app/views/ui/_label.html.erb +16 -0
- data/app/views/ui/_large.html.erb +19 -0
- data/app/views/ui/_lead.html.erb +19 -0
- data/app/views/ui/_list.html.erb +19 -0
- data/app/views/ui/_menubar.html.erb +25 -0
- data/app/views/ui/_muted.html.erb +19 -0
- data/app/views/ui/_navigation_menu.html.erb +34 -0
- data/app/views/ui/_p.html.erb +19 -0
- data/app/views/ui/_pagination.html.erb +14 -0
- data/app/views/ui/_popover.html.erb +19 -0
- data/app/views/ui/_progress.html.erb +15 -0
- data/app/views/ui/_radio_button.html.erb +34 -0
- data/app/views/ui/_responsive_dialog.html.erb +44 -0
- data/app/views/ui/_scroll_area.html.erb +60 -0
- data/app/views/ui/_select.html.erb +17 -0
- data/app/views/ui/_separator.html.erb +20 -0
- data/app/views/ui/_sheet.html.erb +18 -0
- data/app/views/ui/_skeleton.html.erb +19 -0
- data/app/views/ui/_slider.html.erb +27 -0
- data/app/views/ui/_small.html.erb +19 -0
- data/app/views/ui/_spinner.html.erb +28 -0
- data/app/views/ui/_switch.html.erb +45 -0
- data/app/views/ui/_table.html.erb +18 -0
- data/app/views/ui/_tabs.html.erb +23 -0
- data/app/views/ui/_textarea.html.erb +16 -0
- data/app/views/ui/_toggle.html.erb +27 -0
- data/app/views/ui/_toggle_group.html.erb +38 -0
- data/app/views/ui/_tooltip.html.erb +13 -0
- data/app/views/ui/accordion/_content.html.erb +21 -0
- data/app/views/ui/accordion/_item.html.erb +21 -0
- data/app/views/ui/accordion/_trigger.html.erb +23 -0
- data/app/views/ui/alert/_description.html.erb +13 -0
- data/app/views/ui/alert/_title.html.erb +13 -0
- data/app/views/ui/avatar/_fallback.html.erb +13 -0
- data/app/views/ui/avatar/_image.html.erb +18 -0
- data/app/views/ui/breadcrumb/_ellipsis.html.erb +26 -0
- data/app/views/ui/breadcrumb/_item.html.erb +14 -0
- data/app/views/ui/breadcrumb/_link.html.erb +16 -0
- data/app/views/ui/breadcrumb/_list.html.erb +14 -0
- data/app/views/ui/breadcrumb/_page.html.erb +15 -0
- data/app/views/ui/breadcrumb/_separator.html.erb +23 -0
- data/app/views/ui/button_group/_separator.html.erb +19 -0
- data/app/views/ui/button_group/_text.html.erb +16 -0
- data/app/views/ui/card/_action.html.erb +18 -0
- data/app/views/ui/card/_content.html.erb +18 -0
- data/app/views/ui/card/_description.html.erb +20 -0
- data/app/views/ui/card/_footer.html.erb +18 -0
- data/app/views/ui/card/_header.html.erb +18 -0
- data/app/views/ui/card/_title.html.erb +20 -0
- data/app/views/ui/carousel/_content.html.erb +16 -0
- data/app/views/ui/carousel/_item.html.erb +14 -0
- data/app/views/ui/carousel/_next.html.erb +13 -0
- data/app/views/ui/carousel/_previous.html.erb +13 -0
- data/app/views/ui/collapsible/_content.html.erb +20 -0
- data/app/views/ui/collapsible/_trigger.html.erb +18 -0
- data/app/views/ui/combobox/_wrapper.html.erb +43 -0
- data/app/views/ui/command/_dialog.html.erb +17 -0
- data/app/views/ui/command/_empty.html.erb +19 -0
- data/app/views/ui/command/_group.html.erb +23 -0
- data/app/views/ui/command/_input.html.erb +20 -0
- data/app/views/ui/command/_item.html.erb +21 -0
- data/app/views/ui/command/_list.html.erb +17 -0
- data/app/views/ui/command/_separator.html.erb +15 -0
- data/app/views/ui/command/_shortcut.html.erb +19 -0
- data/app/views/ui/context_menu/_checkbox_item.html.erb +23 -0
- data/app/views/ui/context_menu/_content.html.erb +15 -0
- data/app/views/ui/context_menu/_item.html.erb +19 -0
- data/app/views/ui/context_menu/_label.html.erb +16 -0
- data/app/views/ui/context_menu/_radio_group.html.erb +14 -0
- data/app/views/ui/context_menu/_radio_item.html.erb +23 -0
- data/app/views/ui/context_menu/_separator.html.erb +12 -0
- data/app/views/ui/context_menu/_shortcut.html.erb +15 -0
- data/app/views/ui/context_menu/_trigger.html.erb +14 -0
- data/app/views/ui/date_picker/_input.html.erb +47 -0
- data/app/views/ui/date_picker/_trigger.html.erb +53 -0
- data/app/views/ui/dialog/_close.html.erb +24 -0
- data/app/views/ui/dialog/_content.html.erb +22 -0
- data/app/views/ui/dialog/_description.html.erb +14 -0
- data/app/views/ui/dialog/_footer.html.erb +14 -0
- data/app/views/ui/dialog/_header.html.erb +14 -0
- data/app/views/ui/dialog/_overlay.html.erb +19 -0
- data/app/views/ui/dialog/_title.html.erb +14 -0
- data/app/views/ui/dialog/_trigger.html.erb +24 -0
- data/app/views/ui/drawer/_close.html.erb +17 -0
- data/app/views/ui/drawer/_content.html.erb +31 -0
- data/app/views/ui/drawer/_description.html.erb +15 -0
- data/app/views/ui/drawer/_footer.html.erb +15 -0
- data/app/views/ui/drawer/_handle.html.erb +12 -0
- data/app/views/ui/drawer/_header.html.erb +15 -0
- data/app/views/ui/drawer/_overlay.html.erb +16 -0
- data/app/views/ui/drawer/_title.html.erb +15 -0
- data/app/views/ui/drawer/_trigger.html.erb +25 -0
- data/app/views/ui/dropdown_menu/_checkbox_item.html.erb +24 -0
- data/app/views/ui/dropdown_menu/_content.html.erb +15 -0
- data/app/views/ui/dropdown_menu/_item.html.erb +24 -0
- data/app/views/ui/dropdown_menu/_label.html.erb +16 -0
- data/app/views/ui/dropdown_menu/_radio_group.html.erb +15 -0
- data/app/views/ui/dropdown_menu/_radio_item.html.erb +27 -0
- data/app/views/ui/dropdown_menu/_separator.html.erb +12 -0
- data/app/views/ui/dropdown_menu/_shortcut.html.erb +15 -0
- data/app/views/ui/dropdown_menu/_sub.html.erb +14 -0
- data/app/views/ui/dropdown_menu/_sub_content.html.erb +17 -0
- data/app/views/ui/dropdown_menu/_sub_trigger.html.erb +17 -0
- data/app/views/ui/dropdown_menu/_trigger.html.erb +20 -0
- data/app/views/ui/empty/_content.html.erb +13 -0
- data/app/views/ui/empty/_description.html.erb +13 -0
- data/app/views/ui/empty/_header.html.erb +13 -0
- data/app/views/ui/empty/_media.html.erb +14 -0
- data/app/views/ui/empty/_title.html.erb +13 -0
- data/app/views/ui/field/_content.html.erb +14 -0
- data/app/views/ui/field/_description.html.erb +15 -0
- data/app/views/ui/field/_error.html.erb +15 -0
- data/app/views/ui/field/_group.html.erb +14 -0
- data/app/views/ui/field/_label.html.erb +15 -0
- data/app/views/ui/field/_legend.html.erb +16 -0
- data/app/views/ui/field/_separator.html.erb +15 -0
- data/app/views/ui/field/_set.html.erb +14 -0
- data/app/views/ui/field/_title.html.erb +15 -0
- data/app/views/ui/hover_card/_content.html.erb +16 -0
- data/app/views/ui/hover_card/_trigger.html.erb +27 -0
- data/app/views/ui/input_group/_addon.html.erb +15 -0
- data/app/views/ui/input_group/_button.html.erb +18 -0
- data/app/views/ui/input_group/_input.html.erb +17 -0
- data/app/views/ui/input_group/_text.html.erb +15 -0
- data/app/views/ui/input_group/_textarea.html.erb +17 -0
- data/app/views/ui/input_otp/_group.html.erb +20 -0
- data/app/views/ui/input_otp/_separator.html.erb +22 -0
- data/app/views/ui/input_otp/_slot.html.erb +28 -0
- data/app/views/ui/item/_actions.html.erb +7 -0
- data/app/views/ui/item/_content.html.erb +7 -0
- data/app/views/ui/item/_description.html.erb +7 -0
- data/app/views/ui/item/_footer.html.erb +7 -0
- data/app/views/ui/item/_group.html.erb +7 -0
- data/app/views/ui/item/_header.html.erb +7 -0
- data/app/views/ui/item/_media.html.erb +8 -0
- data/app/views/ui/item/_separator.html.erb +5 -0
- data/app/views/ui/item/_title.html.erb +7 -0
- data/app/views/ui/kbd/_group.html.erb +14 -0
- data/app/views/ui/menubar/_checkbox_item.html.erb +24 -0
- data/app/views/ui/menubar/_content.html.erb +18 -0
- data/app/views/ui/menubar/_item.html.erb +24 -0
- data/app/views/ui/menubar/_label.html.erb +16 -0
- data/app/views/ui/menubar/_menu.html.erb +14 -0
- data/app/views/ui/menubar/_radio_group.html.erb +16 -0
- data/app/views/ui/menubar/_radio_item.html.erb +25 -0
- data/app/views/ui/menubar/_separator.html.erb +12 -0
- data/app/views/ui/menubar/_shortcut.html.erb +15 -0
- data/app/views/ui/menubar/_sub.html.erb +15 -0
- data/app/views/ui/menubar/_sub_content.html.erb +15 -0
- data/app/views/ui/menubar/_sub_trigger.html.erb +20 -0
- data/app/views/ui/menubar/_trigger.html.erb +15 -0
- data/app/views/ui/navigation_menu/_content.html.erb +13 -0
- data/app/views/ui/navigation_menu/_item.html.erb +13 -0
- data/app/views/ui/navigation_menu/_link.html.erb +33 -0
- data/app/views/ui/navigation_menu/_list.html.erb +12 -0
- data/app/views/ui/navigation_menu/_trigger.html.erb +30 -0
- data/app/views/ui/navigation_menu/_viewport.html.erb +13 -0
- data/app/views/ui/pagination/_content.html.erb +14 -0
- data/app/views/ui/pagination/_ellipsis.html.erb +19 -0
- data/app/views/ui/pagination/_item.html.erb +14 -0
- data/app/views/ui/pagination/_link.html.erb +18 -0
- data/app/views/ui/pagination/_next.html.erb +19 -0
- data/app/views/ui/pagination/_previous.html.erb +19 -0
- data/app/views/ui/popover/_content.html.erb +14 -0
- data/app/views/ui/popover/_trigger.html.erb +15 -0
- data/app/views/ui/resizable/_handle.html.erb +22 -0
- data/app/views/ui/resizable/_panel.html.erb +21 -0
- data/app/views/ui/resizable/_panel_group.html.erb +20 -0
- data/app/views/ui/scroll_area/_corner.html.erb +40 -0
- data/app/views/ui/scroll_area/_scrollbar.html.erb +50 -0
- data/app/views/ui/scroll_area/_thumb.html.erb +44 -0
- data/app/views/ui/scroll_area/_viewport.html.erb +47 -0
- data/app/views/ui/select/_content.html.erb +25 -0
- data/app/views/ui/select/_group.html.erb +42 -0
- data/app/views/ui/select/_item.html.erb +48 -0
- data/app/views/ui/select/_label.html.erb +42 -0
- data/app/views/ui/select/_scroll_down_button.html.erb +44 -0
- data/app/views/ui/select/_scroll_up_button.html.erb +44 -0
- data/app/views/ui/select/_trigger.html.erb +43 -0
- data/app/views/ui/sheet/_close.html.erb +24 -0
- data/app/views/ui/sheet/_content.html.erb +30 -0
- data/app/views/ui/sheet/_description.html.erb +14 -0
- data/app/views/ui/sheet/_footer.html.erb +14 -0
- data/app/views/ui/sheet/_header.html.erb +14 -0
- data/app/views/ui/sheet/_overlay.html.erb +19 -0
- data/app/views/ui/sheet/_title.html.erb +14 -0
- data/app/views/ui/sheet/_trigger.html.erb +21 -0
- data/app/views/ui/slider/_range.html.erb +13 -0
- data/app/views/ui/slider/_thumb.html.erb +14 -0
- data/app/views/ui/slider/_track.html.erb +16 -0
- data/app/views/ui/sonner/_toaster.html.erb +38 -0
- data/app/views/ui/table/_body.html.erb +18 -0
- data/app/views/ui/table/_caption.html.erb +18 -0
- data/app/views/ui/table/_cell.html.erb +18 -0
- data/app/views/ui/table/_footer.html.erb +18 -0
- data/app/views/ui/table/_head.html.erb +18 -0
- data/app/views/ui/table/_header.html.erb +18 -0
- data/app/views/ui/table/_row.html.erb +18 -0
- data/app/views/ui/tabs/_content.html.erb +19 -0
- data/app/views/ui/tabs/_list.html.erb +16 -0
- data/app/views/ui/tabs/_trigger.html.erb +20 -0
- data/app/views/ui/toggle_group/_item.html.erb +51 -0
- data/app/views/ui/tooltip/_content.html.erb +17 -0
- data/app/views/ui/tooltip/_trigger.html.erb +39 -0
- data/config/importmap.rb +6 -0
- data/config/routes.rb +3 -0
- data/lib/fernandes-ui.rb +12 -0
- data/lib/generators/ui/install/install_generator.rb +141 -0
- data/lib/generators/ui/install/templates/Procfile.dev +2 -0
- data/lib/generators/ui/install/templates/application.tailwind.css +32 -0
- data/lib/generators/ui/install/templates/package.json +13 -0
- data/lib/tasks/ui_tasks.rake +4 -0
- data/lib/ui/configuration.rb +54 -0
- data/lib/ui/engine.rb +158 -0
- data/lib/ui/version.rb +3 -0
- data/lib/ui.rb +8 -0
- metadata +1214 -0
metadata
ADDED
|
@@ -0,0 +1,1214 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: fernandes-ui
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Celso Fernandes
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '6.0'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '9.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '6.0'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '9.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: tailwind_merge
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0.13'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0.13'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: lucide-rails
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0.1'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0.1'
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: phlex-rails
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '2.0'
|
|
67
|
+
type: :development
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - "~>"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '2.0'
|
|
74
|
+
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: view_component
|
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - "~>"
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '3.0'
|
|
81
|
+
type: :development
|
|
82
|
+
prerelease: false
|
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - "~>"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3.0'
|
|
88
|
+
description: 'A comprehensive UI component library for Rails applications. Provides
|
|
89
|
+
reusable components in three formats: ERB partials, Phlex components, and ViewComponents.
|
|
90
|
+
Built with Tailwind CSS 4 and Stimulus.js.'
|
|
91
|
+
email:
|
|
92
|
+
- fernandes@coding.com.br
|
|
93
|
+
executables: []
|
|
94
|
+
extensions: []
|
|
95
|
+
extra_rdoc_files: []
|
|
96
|
+
files:
|
|
97
|
+
- MIT-LICENSE
|
|
98
|
+
- README.md
|
|
99
|
+
- Rakefile
|
|
100
|
+
- app/assets/javascripts/ui.esm.js
|
|
101
|
+
- app/assets/javascripts/ui.js
|
|
102
|
+
- app/assets/stylesheets/ui/application.css
|
|
103
|
+
- app/assets/stylesheets/ui/sonner.css
|
|
104
|
+
- app/behaviors/ui/accordion_behavior.rb
|
|
105
|
+
- app/behaviors/ui/accordion_content_behavior.rb
|
|
106
|
+
- app/behaviors/ui/accordion_item_behavior.rb
|
|
107
|
+
- app/behaviors/ui/accordion_trigger_behavior.rb
|
|
108
|
+
- app/behaviors/ui/alert_behavior.rb
|
|
109
|
+
- app/behaviors/ui/alert_description_behavior.rb
|
|
110
|
+
- app/behaviors/ui/alert_dialog_action_behavior.rb
|
|
111
|
+
- app/behaviors/ui/alert_dialog_behavior.rb
|
|
112
|
+
- app/behaviors/ui/alert_dialog_cancel_behavior.rb
|
|
113
|
+
- app/behaviors/ui/alert_dialog_content_behavior.rb
|
|
114
|
+
- app/behaviors/ui/alert_dialog_description_behavior.rb
|
|
115
|
+
- app/behaviors/ui/alert_dialog_footer_behavior.rb
|
|
116
|
+
- app/behaviors/ui/alert_dialog_header_behavior.rb
|
|
117
|
+
- app/behaviors/ui/alert_dialog_overlay_behavior.rb
|
|
118
|
+
- app/behaviors/ui/alert_dialog_title_behavior.rb
|
|
119
|
+
- app/behaviors/ui/alert_dialog_trigger_behavior.rb
|
|
120
|
+
- app/behaviors/ui/alert_title_behavior.rb
|
|
121
|
+
- app/behaviors/ui/aspect_ratio_behavior.rb
|
|
122
|
+
- app/behaviors/ui/avatar_behavior.rb
|
|
123
|
+
- app/behaviors/ui/avatar_fallback_behavior.rb
|
|
124
|
+
- app/behaviors/ui/avatar_image_behavior.rb
|
|
125
|
+
- app/behaviors/ui/badge_behavior.rb
|
|
126
|
+
- app/behaviors/ui/blockquote_behavior.rb
|
|
127
|
+
- app/behaviors/ui/breadcrumb_behavior.rb
|
|
128
|
+
- app/behaviors/ui/breadcrumb_ellipsis_behavior.rb
|
|
129
|
+
- app/behaviors/ui/breadcrumb_item_behavior.rb
|
|
130
|
+
- app/behaviors/ui/breadcrumb_link_behavior.rb
|
|
131
|
+
- app/behaviors/ui/breadcrumb_list_behavior.rb
|
|
132
|
+
- app/behaviors/ui/breadcrumb_page_behavior.rb
|
|
133
|
+
- app/behaviors/ui/breadcrumb_separator_behavior.rb
|
|
134
|
+
- app/behaviors/ui/button_behavior.rb
|
|
135
|
+
- app/behaviors/ui/button_group_behavior.rb
|
|
136
|
+
- app/behaviors/ui/button_group_separator_behavior.rb
|
|
137
|
+
- app/behaviors/ui/button_group_text_behavior.rb
|
|
138
|
+
- app/behaviors/ui/calendar_behavior.rb
|
|
139
|
+
- app/behaviors/ui/card_action_behavior.rb
|
|
140
|
+
- app/behaviors/ui/card_behavior.rb
|
|
141
|
+
- app/behaviors/ui/card_content_behavior.rb
|
|
142
|
+
- app/behaviors/ui/card_description_behavior.rb
|
|
143
|
+
- app/behaviors/ui/card_footer_behavior.rb
|
|
144
|
+
- app/behaviors/ui/card_header_behavior.rb
|
|
145
|
+
- app/behaviors/ui/card_title_behavior.rb
|
|
146
|
+
- app/behaviors/ui/carousel_behavior.rb
|
|
147
|
+
- app/behaviors/ui/carousel_content_behavior.rb
|
|
148
|
+
- app/behaviors/ui/carousel_item_behavior.rb
|
|
149
|
+
- app/behaviors/ui/carousel_next_behavior.rb
|
|
150
|
+
- app/behaviors/ui/carousel_previous_behavior.rb
|
|
151
|
+
- app/behaviors/ui/checkbox_behavior.rb
|
|
152
|
+
- app/behaviors/ui/collapsible_behavior.rb
|
|
153
|
+
- app/behaviors/ui/collapsible_content_behavior.rb
|
|
154
|
+
- app/behaviors/ui/collapsible_trigger_behavior.rb
|
|
155
|
+
- app/behaviors/ui/combobox_behavior.rb
|
|
156
|
+
- app/behaviors/ui/command_behavior.rb
|
|
157
|
+
- app/behaviors/ui/command_dialog_behavior.rb
|
|
158
|
+
- app/behaviors/ui/command_empty_behavior.rb
|
|
159
|
+
- app/behaviors/ui/command_group_behavior.rb
|
|
160
|
+
- app/behaviors/ui/command_input_behavior.rb
|
|
161
|
+
- app/behaviors/ui/command_item_behavior.rb
|
|
162
|
+
- app/behaviors/ui/command_list_behavior.rb
|
|
163
|
+
- app/behaviors/ui/command_separator_behavior.rb
|
|
164
|
+
- app/behaviors/ui/command_shortcut_behavior.rb
|
|
165
|
+
- app/behaviors/ui/context_menu_behavior.rb
|
|
166
|
+
- app/behaviors/ui/context_menu_checkbox_item_behavior.rb
|
|
167
|
+
- app/behaviors/ui/context_menu_content_behavior.rb
|
|
168
|
+
- app/behaviors/ui/context_menu_item_behavior.rb
|
|
169
|
+
- app/behaviors/ui/context_menu_label_behavior.rb
|
|
170
|
+
- app/behaviors/ui/context_menu_radio_group_behavior.rb
|
|
171
|
+
- app/behaviors/ui/context_menu_radio_item_behavior.rb
|
|
172
|
+
- app/behaviors/ui/context_menu_separator_behavior.rb
|
|
173
|
+
- app/behaviors/ui/context_menu_shortcut_behavior.rb
|
|
174
|
+
- app/behaviors/ui/context_menu_trigger_behavior.rb
|
|
175
|
+
- app/behaviors/ui/date_picker_behavior.rb
|
|
176
|
+
- app/behaviors/ui/date_picker_input_behavior.rb
|
|
177
|
+
- app/behaviors/ui/date_picker_trigger_behavior.rb
|
|
178
|
+
- app/behaviors/ui/dialog_behavior.rb
|
|
179
|
+
- app/behaviors/ui/dialog_content_behavior.rb
|
|
180
|
+
- app/behaviors/ui/dialog_footer_behavior.rb
|
|
181
|
+
- app/behaviors/ui/dialog_header_behavior.rb
|
|
182
|
+
- app/behaviors/ui/dialog_overlay_behavior.rb
|
|
183
|
+
- app/behaviors/ui/drawer_behavior.rb
|
|
184
|
+
- app/behaviors/ui/drawer_close_behavior.rb
|
|
185
|
+
- app/behaviors/ui/drawer_content_behavior.rb
|
|
186
|
+
- app/behaviors/ui/drawer_description_behavior.rb
|
|
187
|
+
- app/behaviors/ui/drawer_footer_behavior.rb
|
|
188
|
+
- app/behaviors/ui/drawer_handle_behavior.rb
|
|
189
|
+
- app/behaviors/ui/drawer_header_behavior.rb
|
|
190
|
+
- app/behaviors/ui/drawer_overlay_behavior.rb
|
|
191
|
+
- app/behaviors/ui/drawer_title_behavior.rb
|
|
192
|
+
- app/behaviors/ui/drawer_trigger_behavior.rb
|
|
193
|
+
- app/behaviors/ui/dropdown_menu_behavior.rb
|
|
194
|
+
- app/behaviors/ui/dropdown_menu_checkbox_item_behavior.rb
|
|
195
|
+
- app/behaviors/ui/dropdown_menu_content_behavior.rb
|
|
196
|
+
- app/behaviors/ui/dropdown_menu_item_behavior.rb
|
|
197
|
+
- app/behaviors/ui/dropdown_menu_label_behavior.rb
|
|
198
|
+
- app/behaviors/ui/dropdown_menu_radio_group_behavior.rb
|
|
199
|
+
- app/behaviors/ui/dropdown_menu_radio_item_behavior.rb
|
|
200
|
+
- app/behaviors/ui/dropdown_menu_separator_behavior.rb
|
|
201
|
+
- app/behaviors/ui/dropdown_menu_shortcut_behavior.rb
|
|
202
|
+
- app/behaviors/ui/dropdown_menu_sub_behavior.rb
|
|
203
|
+
- app/behaviors/ui/dropdown_menu_sub_content_behavior.rb
|
|
204
|
+
- app/behaviors/ui/dropdown_menu_sub_trigger_behavior.rb
|
|
205
|
+
- app/behaviors/ui/dropdown_menu_trigger_behavior.rb
|
|
206
|
+
- app/behaviors/ui/empty_behavior.rb
|
|
207
|
+
- app/behaviors/ui/field_behavior.rb
|
|
208
|
+
- app/behaviors/ui/field_content_behavior.rb
|
|
209
|
+
- app/behaviors/ui/field_description_behavior.rb
|
|
210
|
+
- app/behaviors/ui/field_error_behavior.rb
|
|
211
|
+
- app/behaviors/ui/field_group_behavior.rb
|
|
212
|
+
- app/behaviors/ui/field_label_behavior.rb
|
|
213
|
+
- app/behaviors/ui/field_legend_behavior.rb
|
|
214
|
+
- app/behaviors/ui/field_separator_behavior.rb
|
|
215
|
+
- app/behaviors/ui/field_set_behavior.rb
|
|
216
|
+
- app/behaviors/ui/field_title_behavior.rb
|
|
217
|
+
- app/behaviors/ui/h1_behavior.rb
|
|
218
|
+
- app/behaviors/ui/h2_behavior.rb
|
|
219
|
+
- app/behaviors/ui/h3_behavior.rb
|
|
220
|
+
- app/behaviors/ui/h4_behavior.rb
|
|
221
|
+
- app/behaviors/ui/hover_card_behavior.rb
|
|
222
|
+
- app/behaviors/ui/hover_card_content_behavior.rb
|
|
223
|
+
- app/behaviors/ui/hover_card_trigger_behavior.rb
|
|
224
|
+
- app/behaviors/ui/inline_code_behavior.rb
|
|
225
|
+
- app/behaviors/ui/input_behavior.rb
|
|
226
|
+
- app/behaviors/ui/input_group_addon_behavior.rb
|
|
227
|
+
- app/behaviors/ui/input_group_behavior.rb
|
|
228
|
+
- app/behaviors/ui/input_group_button_behavior.rb
|
|
229
|
+
- app/behaviors/ui/input_group_input_behavior.rb
|
|
230
|
+
- app/behaviors/ui/input_group_text_behavior.rb
|
|
231
|
+
- app/behaviors/ui/input_group_textarea_behavior.rb
|
|
232
|
+
- app/behaviors/ui/input_otp_behavior.rb
|
|
233
|
+
- app/behaviors/ui/input_otp_group_behavior.rb
|
|
234
|
+
- app/behaviors/ui/input_otp_separator_behavior.rb
|
|
235
|
+
- app/behaviors/ui/input_otp_slot_behavior.rb
|
|
236
|
+
- app/behaviors/ui/item_actions_behavior.rb
|
|
237
|
+
- app/behaviors/ui/item_behavior.rb
|
|
238
|
+
- app/behaviors/ui/item_content_behavior.rb
|
|
239
|
+
- app/behaviors/ui/item_description_behavior.rb
|
|
240
|
+
- app/behaviors/ui/item_footer_behavior.rb
|
|
241
|
+
- app/behaviors/ui/item_group_behavior.rb
|
|
242
|
+
- app/behaviors/ui/item_header_behavior.rb
|
|
243
|
+
- app/behaviors/ui/item_media_behavior.rb
|
|
244
|
+
- app/behaviors/ui/item_separator_behavior.rb
|
|
245
|
+
- app/behaviors/ui/item_title_behavior.rb
|
|
246
|
+
- app/behaviors/ui/kbd_behavior.rb
|
|
247
|
+
- app/behaviors/ui/kbd_group_behavior.rb
|
|
248
|
+
- app/behaviors/ui/label_behavior.rb
|
|
249
|
+
- app/behaviors/ui/large_behavior.rb
|
|
250
|
+
- app/behaviors/ui/lead_behavior.rb
|
|
251
|
+
- app/behaviors/ui/list_behavior.rb
|
|
252
|
+
- app/behaviors/ui/menubar_behavior.rb
|
|
253
|
+
- app/behaviors/ui/menubar_checkbox_item_behavior.rb
|
|
254
|
+
- app/behaviors/ui/menubar_content_behavior.rb
|
|
255
|
+
- app/behaviors/ui/menubar_item_behavior.rb
|
|
256
|
+
- app/behaviors/ui/menubar_label_behavior.rb
|
|
257
|
+
- app/behaviors/ui/menubar_menu_behavior.rb
|
|
258
|
+
- app/behaviors/ui/menubar_radio_group_behavior.rb
|
|
259
|
+
- app/behaviors/ui/menubar_radio_item_behavior.rb
|
|
260
|
+
- app/behaviors/ui/menubar_separator_behavior.rb
|
|
261
|
+
- app/behaviors/ui/menubar_shortcut_behavior.rb
|
|
262
|
+
- app/behaviors/ui/menubar_sub_behavior.rb
|
|
263
|
+
- app/behaviors/ui/menubar_sub_content_behavior.rb
|
|
264
|
+
- app/behaviors/ui/menubar_sub_trigger_behavior.rb
|
|
265
|
+
- app/behaviors/ui/menubar_trigger_behavior.rb
|
|
266
|
+
- app/behaviors/ui/muted_behavior.rb
|
|
267
|
+
- app/behaviors/ui/navigation_menu_behavior.rb
|
|
268
|
+
- app/behaviors/ui/navigation_menu_content_behavior.rb
|
|
269
|
+
- app/behaviors/ui/navigation_menu_item_behavior.rb
|
|
270
|
+
- app/behaviors/ui/navigation_menu_link_behavior.rb
|
|
271
|
+
- app/behaviors/ui/navigation_menu_list_behavior.rb
|
|
272
|
+
- app/behaviors/ui/navigation_menu_trigger_behavior.rb
|
|
273
|
+
- app/behaviors/ui/navigation_menu_viewport_behavior.rb
|
|
274
|
+
- app/behaviors/ui/p_behavior.rb
|
|
275
|
+
- app/behaviors/ui/pagination_behavior.rb
|
|
276
|
+
- app/behaviors/ui/pagination_content_behavior.rb
|
|
277
|
+
- app/behaviors/ui/pagination_ellipsis_behavior.rb
|
|
278
|
+
- app/behaviors/ui/pagination_item_behavior.rb
|
|
279
|
+
- app/behaviors/ui/pagination_link_behavior.rb
|
|
280
|
+
- app/behaviors/ui/pagination_next_behavior.rb
|
|
281
|
+
- app/behaviors/ui/pagination_previous_behavior.rb
|
|
282
|
+
- app/behaviors/ui/popover_behavior.rb
|
|
283
|
+
- app/behaviors/ui/popover_content_behavior.rb
|
|
284
|
+
- app/behaviors/ui/popover_trigger_behavior.rb
|
|
285
|
+
- app/behaviors/ui/progress_behavior.rb
|
|
286
|
+
- app/behaviors/ui/radio_button_behavior.rb
|
|
287
|
+
- app/behaviors/ui/resizable_handle_behavior.rb
|
|
288
|
+
- app/behaviors/ui/resizable_panel_behavior.rb
|
|
289
|
+
- app/behaviors/ui/resizable_panel_group_behavior.rb
|
|
290
|
+
- app/behaviors/ui/responsive_dialog_behavior.rb
|
|
291
|
+
- app/behaviors/ui/scroll_area_behavior.rb
|
|
292
|
+
- app/behaviors/ui/scroll_area_corner_behavior.rb
|
|
293
|
+
- app/behaviors/ui/scroll_area_scrollbar_behavior.rb
|
|
294
|
+
- app/behaviors/ui/scroll_area_thumb_behavior.rb
|
|
295
|
+
- app/behaviors/ui/scroll_area_viewport_behavior.rb
|
|
296
|
+
- app/behaviors/ui/select_behavior.rb
|
|
297
|
+
- app/behaviors/ui/select_content_behavior.rb
|
|
298
|
+
- app/behaviors/ui/select_group_behavior.rb
|
|
299
|
+
- app/behaviors/ui/select_item_behavior.rb
|
|
300
|
+
- app/behaviors/ui/select_label_behavior.rb
|
|
301
|
+
- app/behaviors/ui/select_scroll_down_button_behavior.rb
|
|
302
|
+
- app/behaviors/ui/select_scroll_up_button_behavior.rb
|
|
303
|
+
- app/behaviors/ui/select_trigger_behavior.rb
|
|
304
|
+
- app/behaviors/ui/separator_behavior.rb
|
|
305
|
+
- app/behaviors/ui/shared_as_child_behavior.rb
|
|
306
|
+
- app/behaviors/ui/sheet_behavior.rb
|
|
307
|
+
- app/behaviors/ui/sheet_content_behavior.rb
|
|
308
|
+
- app/behaviors/ui/sheet_footer_behavior.rb
|
|
309
|
+
- app/behaviors/ui/sheet_header_behavior.rb
|
|
310
|
+
- app/behaviors/ui/sheet_overlay_behavior.rb
|
|
311
|
+
- app/behaviors/ui/sidebar_behavior.rb
|
|
312
|
+
- app/behaviors/ui/sidebar_content_behavior.rb
|
|
313
|
+
- app/behaviors/ui/sidebar_footer_behavior.rb
|
|
314
|
+
- app/behaviors/ui/sidebar_group_action_behavior.rb
|
|
315
|
+
- app/behaviors/ui/sidebar_group_behavior.rb
|
|
316
|
+
- app/behaviors/ui/sidebar_group_content_behavior.rb
|
|
317
|
+
- app/behaviors/ui/sidebar_group_label_behavior.rb
|
|
318
|
+
- app/behaviors/ui/sidebar_header_behavior.rb
|
|
319
|
+
- app/behaviors/ui/sidebar_input_behavior.rb
|
|
320
|
+
- app/behaviors/ui/sidebar_inset_behavior.rb
|
|
321
|
+
- app/behaviors/ui/sidebar_menu_action_behavior.rb
|
|
322
|
+
- app/behaviors/ui/sidebar_menu_badge_behavior.rb
|
|
323
|
+
- app/behaviors/ui/sidebar_menu_behavior.rb
|
|
324
|
+
- app/behaviors/ui/sidebar_menu_button_behavior.rb
|
|
325
|
+
- app/behaviors/ui/sidebar_menu_item_behavior.rb
|
|
326
|
+
- app/behaviors/ui/sidebar_menu_skeleton_behavior.rb
|
|
327
|
+
- app/behaviors/ui/sidebar_menu_sub_behavior.rb
|
|
328
|
+
- app/behaviors/ui/sidebar_menu_sub_button_behavior.rb
|
|
329
|
+
- app/behaviors/ui/sidebar_menu_sub_item_behavior.rb
|
|
330
|
+
- app/behaviors/ui/sidebar_provider_behavior.rb
|
|
331
|
+
- app/behaviors/ui/sidebar_rail_behavior.rb
|
|
332
|
+
- app/behaviors/ui/sidebar_separator_behavior.rb
|
|
333
|
+
- app/behaviors/ui/sidebar_trigger_behavior.rb
|
|
334
|
+
- app/behaviors/ui/slider_behavior.rb
|
|
335
|
+
- app/behaviors/ui/slider_range_behavior.rb
|
|
336
|
+
- app/behaviors/ui/slider_thumb_behavior.rb
|
|
337
|
+
- app/behaviors/ui/slider_track_behavior.rb
|
|
338
|
+
- app/behaviors/ui/small_behavior.rb
|
|
339
|
+
- app/behaviors/ui/sonner_toaster_behavior.rb
|
|
340
|
+
- app/behaviors/ui/spinner_behavior.rb
|
|
341
|
+
- app/behaviors/ui/switch_behavior.rb
|
|
342
|
+
- app/behaviors/ui/table_behavior.rb
|
|
343
|
+
- app/behaviors/ui/table_body_behavior.rb
|
|
344
|
+
- app/behaviors/ui/table_caption_behavior.rb
|
|
345
|
+
- app/behaviors/ui/table_cell_behavior.rb
|
|
346
|
+
- app/behaviors/ui/table_footer_behavior.rb
|
|
347
|
+
- app/behaviors/ui/table_head_behavior.rb
|
|
348
|
+
- app/behaviors/ui/table_header_behavior.rb
|
|
349
|
+
- app/behaviors/ui/table_row_behavior.rb
|
|
350
|
+
- app/behaviors/ui/tabs_behavior.rb
|
|
351
|
+
- app/behaviors/ui/tabs_content_behavior.rb
|
|
352
|
+
- app/behaviors/ui/tabs_list_behavior.rb
|
|
353
|
+
- app/behaviors/ui/tabs_trigger_behavior.rb
|
|
354
|
+
- app/behaviors/ui/textarea_behavior.rb
|
|
355
|
+
- app/behaviors/ui/toggle_behavior.rb
|
|
356
|
+
- app/behaviors/ui/toggle_group_behavior.rb
|
|
357
|
+
- app/behaviors/ui/toggle_group_item_behavior.rb
|
|
358
|
+
- app/behaviors/ui/tooltip_behavior.rb
|
|
359
|
+
- app/behaviors/ui/tooltip_content_behavior.rb
|
|
360
|
+
- app/behaviors/ui/tooltip_trigger_behavior.rb
|
|
361
|
+
- app/components/ui/accordion.rb
|
|
362
|
+
- app/components/ui/accordion_content.rb
|
|
363
|
+
- app/components/ui/accordion_item.rb
|
|
364
|
+
- app/components/ui/accordion_trigger.rb
|
|
365
|
+
- app/components/ui/alert.rb
|
|
366
|
+
- app/components/ui/alert_description.rb
|
|
367
|
+
- app/components/ui/alert_dialog.rb
|
|
368
|
+
- app/components/ui/alert_dialog_action.rb
|
|
369
|
+
- app/components/ui/alert_dialog_cancel.rb
|
|
370
|
+
- app/components/ui/alert_dialog_content.rb
|
|
371
|
+
- app/components/ui/alert_dialog_description.rb
|
|
372
|
+
- app/components/ui/alert_dialog_footer.rb
|
|
373
|
+
- app/components/ui/alert_dialog_header.rb
|
|
374
|
+
- app/components/ui/alert_dialog_overlay.rb
|
|
375
|
+
- app/components/ui/alert_dialog_title.rb
|
|
376
|
+
- app/components/ui/alert_dialog_trigger.rb
|
|
377
|
+
- app/components/ui/alert_title.rb
|
|
378
|
+
- app/components/ui/aspect_ratio.rb
|
|
379
|
+
- app/components/ui/avatar.rb
|
|
380
|
+
- app/components/ui/avatar_fallback.rb
|
|
381
|
+
- app/components/ui/avatar_image.rb
|
|
382
|
+
- app/components/ui/badge.rb
|
|
383
|
+
- app/components/ui/blockquote.rb
|
|
384
|
+
- app/components/ui/breadcrumb.rb
|
|
385
|
+
- app/components/ui/breadcrumb_ellipsis.rb
|
|
386
|
+
- app/components/ui/breadcrumb_item.rb
|
|
387
|
+
- app/components/ui/breadcrumb_link.rb
|
|
388
|
+
- app/components/ui/breadcrumb_list.rb
|
|
389
|
+
- app/components/ui/breadcrumb_page.rb
|
|
390
|
+
- app/components/ui/breadcrumb_separator.rb
|
|
391
|
+
- app/components/ui/button.rb
|
|
392
|
+
- app/components/ui/button_group.rb
|
|
393
|
+
- app/components/ui/button_group_separator.rb
|
|
394
|
+
- app/components/ui/button_group_text.rb
|
|
395
|
+
- app/components/ui/calendar.rb
|
|
396
|
+
- app/components/ui/card.rb
|
|
397
|
+
- app/components/ui/card_action.rb
|
|
398
|
+
- app/components/ui/card_content.rb
|
|
399
|
+
- app/components/ui/card_description.rb
|
|
400
|
+
- app/components/ui/card_footer.rb
|
|
401
|
+
- app/components/ui/card_header.rb
|
|
402
|
+
- app/components/ui/card_title.rb
|
|
403
|
+
- app/components/ui/carousel.rb
|
|
404
|
+
- app/components/ui/carousel_content.rb
|
|
405
|
+
- app/components/ui/carousel_item.rb
|
|
406
|
+
- app/components/ui/carousel_next.rb
|
|
407
|
+
- app/components/ui/carousel_previous.rb
|
|
408
|
+
- app/components/ui/checkbox.rb
|
|
409
|
+
- app/components/ui/collapsible.rb
|
|
410
|
+
- app/components/ui/collapsible_content.rb
|
|
411
|
+
- app/components/ui/collapsible_trigger.rb
|
|
412
|
+
- app/components/ui/combobox_wrapper.rb
|
|
413
|
+
- app/components/ui/command.rb
|
|
414
|
+
- app/components/ui/command_dialog.rb
|
|
415
|
+
- app/components/ui/command_empty.rb
|
|
416
|
+
- app/components/ui/command_group.rb
|
|
417
|
+
- app/components/ui/command_input.rb
|
|
418
|
+
- app/components/ui/command_item.rb
|
|
419
|
+
- app/components/ui/command_list.rb
|
|
420
|
+
- app/components/ui/command_separator.rb
|
|
421
|
+
- app/components/ui/command_shortcut.rb
|
|
422
|
+
- app/components/ui/context_menu.rb
|
|
423
|
+
- app/components/ui/context_menu_checkbox_item.rb
|
|
424
|
+
- app/components/ui/context_menu_content.rb
|
|
425
|
+
- app/components/ui/context_menu_item.rb
|
|
426
|
+
- app/components/ui/context_menu_label.rb
|
|
427
|
+
- app/components/ui/context_menu_radio_group.rb
|
|
428
|
+
- app/components/ui/context_menu_radio_item.rb
|
|
429
|
+
- app/components/ui/context_menu_separator.rb
|
|
430
|
+
- app/components/ui/context_menu_shortcut.rb
|
|
431
|
+
- app/components/ui/context_menu_trigger.rb
|
|
432
|
+
- app/components/ui/date_picker.rb
|
|
433
|
+
- app/components/ui/date_picker_input.rb
|
|
434
|
+
- app/components/ui/date_picker_trigger.rb
|
|
435
|
+
- app/components/ui/dialog.rb
|
|
436
|
+
- app/components/ui/dialog_close.rb
|
|
437
|
+
- app/components/ui/dialog_content.rb
|
|
438
|
+
- app/components/ui/dialog_description.rb
|
|
439
|
+
- app/components/ui/dialog_footer.rb
|
|
440
|
+
- app/components/ui/dialog_header.rb
|
|
441
|
+
- app/components/ui/dialog_overlay.rb
|
|
442
|
+
- app/components/ui/dialog_title.rb
|
|
443
|
+
- app/components/ui/dialog_trigger.rb
|
|
444
|
+
- app/components/ui/drawer.rb
|
|
445
|
+
- app/components/ui/drawer_close.rb
|
|
446
|
+
- app/components/ui/drawer_content.rb
|
|
447
|
+
- app/components/ui/drawer_description.rb
|
|
448
|
+
- app/components/ui/drawer_footer.rb
|
|
449
|
+
- app/components/ui/drawer_handle.rb
|
|
450
|
+
- app/components/ui/drawer_header.rb
|
|
451
|
+
- app/components/ui/drawer_overlay.rb
|
|
452
|
+
- app/components/ui/drawer_title.rb
|
|
453
|
+
- app/components/ui/drawer_trigger.rb
|
|
454
|
+
- app/components/ui/dropdown_menu.rb
|
|
455
|
+
- app/components/ui/dropdown_menu_checkbox_item.rb
|
|
456
|
+
- app/components/ui/dropdown_menu_content.rb
|
|
457
|
+
- app/components/ui/dropdown_menu_item.rb
|
|
458
|
+
- app/components/ui/dropdown_menu_label.rb
|
|
459
|
+
- app/components/ui/dropdown_menu_radio_group.rb
|
|
460
|
+
- app/components/ui/dropdown_menu_radio_item.rb
|
|
461
|
+
- app/components/ui/dropdown_menu_separator.rb
|
|
462
|
+
- app/components/ui/dropdown_menu_shortcut.rb
|
|
463
|
+
- app/components/ui/dropdown_menu_sub.rb
|
|
464
|
+
- app/components/ui/dropdown_menu_sub_content.rb
|
|
465
|
+
- app/components/ui/dropdown_menu_sub_trigger.rb
|
|
466
|
+
- app/components/ui/dropdown_menu_trigger.rb
|
|
467
|
+
- app/components/ui/empty.rb
|
|
468
|
+
- app/components/ui/empty_content.rb
|
|
469
|
+
- app/components/ui/empty_description.rb
|
|
470
|
+
- app/components/ui/empty_header.rb
|
|
471
|
+
- app/components/ui/empty_media.rb
|
|
472
|
+
- app/components/ui/empty_title.rb
|
|
473
|
+
- app/components/ui/field.rb
|
|
474
|
+
- app/components/ui/field_content.rb
|
|
475
|
+
- app/components/ui/field_description.rb
|
|
476
|
+
- app/components/ui/field_error.rb
|
|
477
|
+
- app/components/ui/field_group.rb
|
|
478
|
+
- app/components/ui/field_label.rb
|
|
479
|
+
- app/components/ui/field_legend.rb
|
|
480
|
+
- app/components/ui/field_separator.rb
|
|
481
|
+
- app/components/ui/field_set.rb
|
|
482
|
+
- app/components/ui/field_title.rb
|
|
483
|
+
- app/components/ui/h1.rb
|
|
484
|
+
- app/components/ui/h2.rb
|
|
485
|
+
- app/components/ui/h3.rb
|
|
486
|
+
- app/components/ui/h4.rb
|
|
487
|
+
- app/components/ui/hover_card.rb
|
|
488
|
+
- app/components/ui/hover_card_content.rb
|
|
489
|
+
- app/components/ui/hover_card_trigger.rb
|
|
490
|
+
- app/components/ui/inline_code.rb
|
|
491
|
+
- app/components/ui/input.rb
|
|
492
|
+
- app/components/ui/input_group.rb
|
|
493
|
+
- app/components/ui/input_group_addon.rb
|
|
494
|
+
- app/components/ui/input_group_button.rb
|
|
495
|
+
- app/components/ui/input_group_input.rb
|
|
496
|
+
- app/components/ui/input_group_text.rb
|
|
497
|
+
- app/components/ui/input_group_textarea.rb
|
|
498
|
+
- app/components/ui/input_otp.rb
|
|
499
|
+
- app/components/ui/input_otp_group.rb
|
|
500
|
+
- app/components/ui/input_otp_separator.rb
|
|
501
|
+
- app/components/ui/input_otp_slot.rb
|
|
502
|
+
- app/components/ui/item.rb
|
|
503
|
+
- app/components/ui/item_actions.rb
|
|
504
|
+
- app/components/ui/item_content.rb
|
|
505
|
+
- app/components/ui/item_description.rb
|
|
506
|
+
- app/components/ui/item_footer.rb
|
|
507
|
+
- app/components/ui/item_group.rb
|
|
508
|
+
- app/components/ui/item_header.rb
|
|
509
|
+
- app/components/ui/item_media.rb
|
|
510
|
+
- app/components/ui/item_separator.rb
|
|
511
|
+
- app/components/ui/item_title.rb
|
|
512
|
+
- app/components/ui/kbd.rb
|
|
513
|
+
- app/components/ui/kbd_group.rb
|
|
514
|
+
- app/components/ui/label.rb
|
|
515
|
+
- app/components/ui/large.rb
|
|
516
|
+
- app/components/ui/lead.rb
|
|
517
|
+
- app/components/ui/list.rb
|
|
518
|
+
- app/components/ui/menubar.rb
|
|
519
|
+
- app/components/ui/menubar_checkbox_item.rb
|
|
520
|
+
- app/components/ui/menubar_content.rb
|
|
521
|
+
- app/components/ui/menubar_item.rb
|
|
522
|
+
- app/components/ui/menubar_label.rb
|
|
523
|
+
- app/components/ui/menubar_menu.rb
|
|
524
|
+
- app/components/ui/menubar_radio_group.rb
|
|
525
|
+
- app/components/ui/menubar_radio_item.rb
|
|
526
|
+
- app/components/ui/menubar_separator.rb
|
|
527
|
+
- app/components/ui/menubar_shortcut.rb
|
|
528
|
+
- app/components/ui/menubar_sub.rb
|
|
529
|
+
- app/components/ui/menubar_sub_content.rb
|
|
530
|
+
- app/components/ui/menubar_sub_trigger.rb
|
|
531
|
+
- app/components/ui/menubar_trigger.rb
|
|
532
|
+
- app/components/ui/muted.rb
|
|
533
|
+
- app/components/ui/navigation_menu.rb
|
|
534
|
+
- app/components/ui/navigation_menu_content.rb
|
|
535
|
+
- app/components/ui/navigation_menu_item.rb
|
|
536
|
+
- app/components/ui/navigation_menu_link.rb
|
|
537
|
+
- app/components/ui/navigation_menu_list.rb
|
|
538
|
+
- app/components/ui/navigation_menu_trigger.rb
|
|
539
|
+
- app/components/ui/navigation_menu_viewport.rb
|
|
540
|
+
- app/components/ui/p.rb
|
|
541
|
+
- app/components/ui/pagination.rb
|
|
542
|
+
- app/components/ui/pagination_content.rb
|
|
543
|
+
- app/components/ui/pagination_ellipsis.rb
|
|
544
|
+
- app/components/ui/pagination_item.rb
|
|
545
|
+
- app/components/ui/pagination_link.rb
|
|
546
|
+
- app/components/ui/pagination_next.rb
|
|
547
|
+
- app/components/ui/pagination_previous.rb
|
|
548
|
+
- app/components/ui/popover.rb
|
|
549
|
+
- app/components/ui/popover_content.rb
|
|
550
|
+
- app/components/ui/popover_trigger.rb
|
|
551
|
+
- app/components/ui/progress.rb
|
|
552
|
+
- app/components/ui/radio_button.rb
|
|
553
|
+
- app/components/ui/resizable_handle.rb
|
|
554
|
+
- app/components/ui/resizable_panel.rb
|
|
555
|
+
- app/components/ui/resizable_panel_group.rb
|
|
556
|
+
- app/components/ui/responsive_dialog.rb
|
|
557
|
+
- app/components/ui/scroll_area.rb
|
|
558
|
+
- app/components/ui/scroll_area_corner.rb
|
|
559
|
+
- app/components/ui/scroll_area_scrollbar.rb
|
|
560
|
+
- app/components/ui/scroll_area_thumb.rb
|
|
561
|
+
- app/components/ui/scroll_area_viewport.rb
|
|
562
|
+
- app/components/ui/select.rb
|
|
563
|
+
- app/components/ui/select_content.rb
|
|
564
|
+
- app/components/ui/select_group.rb
|
|
565
|
+
- app/components/ui/select_item.rb
|
|
566
|
+
- app/components/ui/select_label.rb
|
|
567
|
+
- app/components/ui/select_scroll_down_button.rb
|
|
568
|
+
- app/components/ui/select_scroll_up_button.rb
|
|
569
|
+
- app/components/ui/select_trigger.rb
|
|
570
|
+
- app/components/ui/separator.rb
|
|
571
|
+
- app/components/ui/sheet.rb
|
|
572
|
+
- app/components/ui/sheet_close.rb
|
|
573
|
+
- app/components/ui/sheet_content.rb
|
|
574
|
+
- app/components/ui/sheet_description.rb
|
|
575
|
+
- app/components/ui/sheet_footer.rb
|
|
576
|
+
- app/components/ui/sheet_header.rb
|
|
577
|
+
- app/components/ui/sheet_overlay.rb
|
|
578
|
+
- app/components/ui/sheet_title.rb
|
|
579
|
+
- app/components/ui/sheet_trigger.rb
|
|
580
|
+
- app/components/ui/sidebar.rb
|
|
581
|
+
- app/components/ui/sidebar_content.rb
|
|
582
|
+
- app/components/ui/sidebar_footer.rb
|
|
583
|
+
- app/components/ui/sidebar_group.rb
|
|
584
|
+
- app/components/ui/sidebar_group_action.rb
|
|
585
|
+
- app/components/ui/sidebar_group_content.rb
|
|
586
|
+
- app/components/ui/sidebar_group_label.rb
|
|
587
|
+
- app/components/ui/sidebar_header.rb
|
|
588
|
+
- app/components/ui/sidebar_input.rb
|
|
589
|
+
- app/components/ui/sidebar_inset.rb
|
|
590
|
+
- app/components/ui/sidebar_menu.rb
|
|
591
|
+
- app/components/ui/sidebar_menu_action.rb
|
|
592
|
+
- app/components/ui/sidebar_menu_badge.rb
|
|
593
|
+
- app/components/ui/sidebar_menu_button.rb
|
|
594
|
+
- app/components/ui/sidebar_menu_item.rb
|
|
595
|
+
- app/components/ui/sidebar_menu_skeleton.rb
|
|
596
|
+
- app/components/ui/sidebar_menu_sub.rb
|
|
597
|
+
- app/components/ui/sidebar_menu_sub_button.rb
|
|
598
|
+
- app/components/ui/sidebar_menu_sub_item.rb
|
|
599
|
+
- app/components/ui/sidebar_provider.rb
|
|
600
|
+
- app/components/ui/sidebar_rail.rb
|
|
601
|
+
- app/components/ui/sidebar_separator.rb
|
|
602
|
+
- app/components/ui/sidebar_trigger.rb
|
|
603
|
+
- app/components/ui/skeleton.rb
|
|
604
|
+
- app/components/ui/small.rb
|
|
605
|
+
- app/components/ui/sonner_toaster.rb
|
|
606
|
+
- app/components/ui/spinner.rb
|
|
607
|
+
- app/components/ui/switch.rb
|
|
608
|
+
- app/components/ui/table.rb
|
|
609
|
+
- app/components/ui/table_body.rb
|
|
610
|
+
- app/components/ui/table_caption.rb
|
|
611
|
+
- app/components/ui/table_cell.rb
|
|
612
|
+
- app/components/ui/table_footer.rb
|
|
613
|
+
- app/components/ui/table_head.rb
|
|
614
|
+
- app/components/ui/table_header.rb
|
|
615
|
+
- app/components/ui/table_row.rb
|
|
616
|
+
- app/components/ui/tabs.rb
|
|
617
|
+
- app/components/ui/tabs_content.rb
|
|
618
|
+
- app/components/ui/tabs_list.rb
|
|
619
|
+
- app/components/ui/tabs_trigger.rb
|
|
620
|
+
- app/components/ui/textarea.rb
|
|
621
|
+
- app/components/ui/toggle.rb
|
|
622
|
+
- app/components/ui/toggle_group.rb
|
|
623
|
+
- app/components/ui/toggle_group_item.rb
|
|
624
|
+
- app/components/ui/tooltip.rb
|
|
625
|
+
- app/components/ui/tooltip_content.rb
|
|
626
|
+
- app/components/ui/tooltip_trigger.rb
|
|
627
|
+
- app/controllers/ui/application_controller.rb
|
|
628
|
+
- app/helpers/ui/application_helper.rb
|
|
629
|
+
- app/helpers/ui/combobox_behavior.rb
|
|
630
|
+
- app/helpers/ui/empty_behavior.rb
|
|
631
|
+
- app/helpers/ui/input_group_addon_behavior.rb
|
|
632
|
+
- app/helpers/ui/input_group_behavior.rb
|
|
633
|
+
- app/helpers/ui/input_group_button_behavior.rb
|
|
634
|
+
- app/helpers/ui/input_group_input_behavior.rb
|
|
635
|
+
- app/helpers/ui/input_group_text_behavior.rb
|
|
636
|
+
- app/helpers/ui/input_group_textarea_behavior.rb
|
|
637
|
+
- app/helpers/ui/popover_behavior.rb
|
|
638
|
+
- app/helpers/ui/popover_content_behavior.rb
|
|
639
|
+
- app/helpers/ui/popover_trigger_behavior.rb
|
|
640
|
+
- app/helpers/ui/scroll_area_behavior.rb
|
|
641
|
+
- app/helpers/ui/scroll_area_corner_behavior.rb
|
|
642
|
+
- app/helpers/ui/scroll_area_scrollbar_behavior.rb
|
|
643
|
+
- app/helpers/ui/scroll_area_thumb_behavior.rb
|
|
644
|
+
- app/helpers/ui/scroll_area_viewport_behavior.rb
|
|
645
|
+
- app/helpers/ui/select_behavior.rb
|
|
646
|
+
- app/helpers/ui/select_content_behavior.rb
|
|
647
|
+
- app/helpers/ui/select_group_behavior.rb
|
|
648
|
+
- app/helpers/ui/select_item_behavior.rb
|
|
649
|
+
- app/helpers/ui/select_label_behavior.rb
|
|
650
|
+
- app/helpers/ui/select_scroll_down_button_behavior.rb
|
|
651
|
+
- app/helpers/ui/select_scroll_up_button_behavior.rb
|
|
652
|
+
- app/helpers/ui/select_trigger_behavior.rb
|
|
653
|
+
- app/helpers/ui/spinner_behavior.rb
|
|
654
|
+
- app/helpers/ui/textarea_behavior.rb
|
|
655
|
+
- app/javascript/ui/common.js
|
|
656
|
+
- app/javascript/ui/controllers/accordion_controller.js
|
|
657
|
+
- app/javascript/ui/controllers/alert_dialog_controller.js
|
|
658
|
+
- app/javascript/ui/controllers/avatar_controller.js
|
|
659
|
+
- app/javascript/ui/controllers/calendar_controller.js
|
|
660
|
+
- app/javascript/ui/controllers/carousel_controller.js
|
|
661
|
+
- app/javascript/ui/controllers/checkbox_controller.js
|
|
662
|
+
- app/javascript/ui/controllers/collapsible_controller.js
|
|
663
|
+
- app/javascript/ui/controllers/combobox_controller.js
|
|
664
|
+
- app/javascript/ui/controllers/command_controller.js
|
|
665
|
+
- app/javascript/ui/controllers/command_dialog_controller.js
|
|
666
|
+
- app/javascript/ui/controllers/context_menu_controller.js
|
|
667
|
+
- app/javascript/ui/controllers/datepicker_controller.js
|
|
668
|
+
- app/javascript/ui/controllers/dialog_controller.js
|
|
669
|
+
- app/javascript/ui/controllers/drawer_controller.js
|
|
670
|
+
- app/javascript/ui/controllers/dropdown_controller.js
|
|
671
|
+
- app/javascript/ui/controllers/hello_controller.js
|
|
672
|
+
- app/javascript/ui/controllers/hover_card_controller.js
|
|
673
|
+
- app/javascript/ui/controllers/input_otp_controller.js
|
|
674
|
+
- app/javascript/ui/controllers/menubar_controller.js
|
|
675
|
+
- app/javascript/ui/controllers/navigation_menu_controller.js
|
|
676
|
+
- app/javascript/ui/controllers/popover_controller.js
|
|
677
|
+
- app/javascript/ui/controllers/resizable_controller.js
|
|
678
|
+
- app/javascript/ui/controllers/responsive_dialog_controller.js
|
|
679
|
+
- app/javascript/ui/controllers/scroll_area_controller.js
|
|
680
|
+
- app/javascript/ui/controllers/select_controller.js
|
|
681
|
+
- app/javascript/ui/controllers/sidebar_controller.js
|
|
682
|
+
- app/javascript/ui/controllers/slider_controller.js
|
|
683
|
+
- app/javascript/ui/controllers/sonner_controller.js
|
|
684
|
+
- app/javascript/ui/controllers/switch_controller.js
|
|
685
|
+
- app/javascript/ui/controllers/tabs_controller.js
|
|
686
|
+
- app/javascript/ui/controllers/toggle_controller.js
|
|
687
|
+
- app/javascript/ui/controllers/toggle_group_controller.js
|
|
688
|
+
- app/javascript/ui/controllers/tooltip_controller.js
|
|
689
|
+
- app/javascript/ui/index.js
|
|
690
|
+
- app/javascript/ui/utils/click-outside-manager.js
|
|
691
|
+
- app/javascript/ui/utils/escape-key-manager.js
|
|
692
|
+
- app/javascript/ui/utils/floating-ui-positioner.js
|
|
693
|
+
- app/javascript/ui/utils/focus-trap-manager.js
|
|
694
|
+
- app/javascript/ui/utils/index.js
|
|
695
|
+
- app/javascript/ui/utils/menu_utils.js
|
|
696
|
+
- app/javascript/ui/utils/scroll-lock-manager.js
|
|
697
|
+
- app/javascript/ui/utils/state-manager.js
|
|
698
|
+
- app/jobs/ui/application_job.rb
|
|
699
|
+
- app/mailers/ui/application_mailer.rb
|
|
700
|
+
- app/models/ui/application_record.rb
|
|
701
|
+
- app/view_components/ui/accordion_component.rb
|
|
702
|
+
- app/view_components/ui/accordion_content_component.rb
|
|
703
|
+
- app/view_components/ui/accordion_item_component.rb
|
|
704
|
+
- app/view_components/ui/accordion_trigger_component.rb
|
|
705
|
+
- app/view_components/ui/alert_component.rb
|
|
706
|
+
- app/view_components/ui/alert_description_component.rb
|
|
707
|
+
- app/view_components/ui/alert_title_component.rb
|
|
708
|
+
- app/view_components/ui/aspect_ratio_component.rb
|
|
709
|
+
- app/view_components/ui/avatar_component.rb
|
|
710
|
+
- app/view_components/ui/avatar_fallback_component.rb
|
|
711
|
+
- app/view_components/ui/avatar_image_component.rb
|
|
712
|
+
- app/view_components/ui/badge_component.rb
|
|
713
|
+
- app/view_components/ui/blockquote_component.rb
|
|
714
|
+
- app/view_components/ui/breadcrumb_component.rb
|
|
715
|
+
- app/view_components/ui/breadcrumb_ellipsis_component.rb
|
|
716
|
+
- app/view_components/ui/breadcrumb_item_component.rb
|
|
717
|
+
- app/view_components/ui/breadcrumb_link_component.rb
|
|
718
|
+
- app/view_components/ui/breadcrumb_list_component.rb
|
|
719
|
+
- app/view_components/ui/breadcrumb_page_component.rb
|
|
720
|
+
- app/view_components/ui/breadcrumb_separator_component.rb
|
|
721
|
+
- app/view_components/ui/button_component.rb
|
|
722
|
+
- app/view_components/ui/button_group_component.rb
|
|
723
|
+
- app/view_components/ui/button_group_separator_component.rb
|
|
724
|
+
- app/view_components/ui/button_group_text_component.rb
|
|
725
|
+
- app/view_components/ui/calendar_component.rb
|
|
726
|
+
- app/view_components/ui/card_action_component.rb
|
|
727
|
+
- app/view_components/ui/card_component.rb
|
|
728
|
+
- app/view_components/ui/card_content_component.rb
|
|
729
|
+
- app/view_components/ui/card_description_component.rb
|
|
730
|
+
- app/view_components/ui/card_footer_component.rb
|
|
731
|
+
- app/view_components/ui/card_header_component.rb
|
|
732
|
+
- app/view_components/ui/card_title_component.rb
|
|
733
|
+
- app/view_components/ui/carousel_component.rb
|
|
734
|
+
- app/view_components/ui/carousel_content_component.rb
|
|
735
|
+
- app/view_components/ui/carousel_item_component.rb
|
|
736
|
+
- app/view_components/ui/carousel_next_component.rb
|
|
737
|
+
- app/view_components/ui/carousel_previous_component.rb
|
|
738
|
+
- app/view_components/ui/checkbox_component.rb
|
|
739
|
+
- app/view_components/ui/collapsible_component.rb
|
|
740
|
+
- app/view_components/ui/collapsible_content_component.rb
|
|
741
|
+
- app/view_components/ui/collapsible_trigger_component.rb
|
|
742
|
+
- app/view_components/ui/combobox_wrapper_component.rb
|
|
743
|
+
- app/view_components/ui/command_component.rb
|
|
744
|
+
- app/view_components/ui/command_dialog_component.rb
|
|
745
|
+
- app/view_components/ui/command_empty_component.rb
|
|
746
|
+
- app/view_components/ui/command_group_component.rb
|
|
747
|
+
- app/view_components/ui/command_input_component.rb
|
|
748
|
+
- app/view_components/ui/command_item_component.rb
|
|
749
|
+
- app/view_components/ui/command_list_component.rb
|
|
750
|
+
- app/view_components/ui/command_separator_component.rb
|
|
751
|
+
- app/view_components/ui/command_shortcut_component.rb
|
|
752
|
+
- app/view_components/ui/context_menu_checkbox_item_component.rb
|
|
753
|
+
- app/view_components/ui/context_menu_component.rb
|
|
754
|
+
- app/view_components/ui/context_menu_content_component.rb
|
|
755
|
+
- app/view_components/ui/context_menu_item_component.rb
|
|
756
|
+
- app/view_components/ui/context_menu_label_component.rb
|
|
757
|
+
- app/view_components/ui/context_menu_radio_group_component.rb
|
|
758
|
+
- app/view_components/ui/context_menu_radio_item_component.rb
|
|
759
|
+
- app/view_components/ui/context_menu_separator_component.rb
|
|
760
|
+
- app/view_components/ui/context_menu_shortcut_component.rb
|
|
761
|
+
- app/view_components/ui/context_menu_trigger_component.rb
|
|
762
|
+
- app/view_components/ui/date_picker_component.rb
|
|
763
|
+
- app/view_components/ui/date_picker_input_component.rb
|
|
764
|
+
- app/view_components/ui/date_picker_trigger_component.rb
|
|
765
|
+
- app/view_components/ui/dialog_close_component.rb
|
|
766
|
+
- app/view_components/ui/dialog_component.rb
|
|
767
|
+
- app/view_components/ui/dialog_content_component.rb
|
|
768
|
+
- app/view_components/ui/dialog_description_component.rb
|
|
769
|
+
- app/view_components/ui/dialog_footer_component.rb
|
|
770
|
+
- app/view_components/ui/dialog_header_component.rb
|
|
771
|
+
- app/view_components/ui/dialog_overlay_component.rb
|
|
772
|
+
- app/view_components/ui/dialog_title_component.rb
|
|
773
|
+
- app/view_components/ui/dialog_trigger_component.rb
|
|
774
|
+
- app/view_components/ui/drawer_close_component.rb
|
|
775
|
+
- app/view_components/ui/drawer_component.rb
|
|
776
|
+
- app/view_components/ui/drawer_content_component.rb
|
|
777
|
+
- app/view_components/ui/drawer_description_component.rb
|
|
778
|
+
- app/view_components/ui/drawer_footer_component.rb
|
|
779
|
+
- app/view_components/ui/drawer_handle_component.rb
|
|
780
|
+
- app/view_components/ui/drawer_header_component.rb
|
|
781
|
+
- app/view_components/ui/drawer_overlay_component.rb
|
|
782
|
+
- app/view_components/ui/drawer_title_component.rb
|
|
783
|
+
- app/view_components/ui/drawer_trigger_component.rb
|
|
784
|
+
- app/view_components/ui/dropdown_menu_checkbox_item_component.rb
|
|
785
|
+
- app/view_components/ui/dropdown_menu_component.rb
|
|
786
|
+
- app/view_components/ui/dropdown_menu_content_component.rb
|
|
787
|
+
- app/view_components/ui/dropdown_menu_item_component.rb
|
|
788
|
+
- app/view_components/ui/dropdown_menu_label_component.rb
|
|
789
|
+
- app/view_components/ui/dropdown_menu_radio_group_component.rb
|
|
790
|
+
- app/view_components/ui/dropdown_menu_radio_item_component.rb
|
|
791
|
+
- app/view_components/ui/dropdown_menu_separator_component.rb
|
|
792
|
+
- app/view_components/ui/dropdown_menu_shortcut_component.rb
|
|
793
|
+
- app/view_components/ui/dropdown_menu_sub_component.rb
|
|
794
|
+
- app/view_components/ui/dropdown_menu_sub_content_component.rb
|
|
795
|
+
- app/view_components/ui/dropdown_menu_sub_trigger_component.rb
|
|
796
|
+
- app/view_components/ui/dropdown_menu_trigger_component.rb
|
|
797
|
+
- app/view_components/ui/empty_component.rb
|
|
798
|
+
- app/view_components/ui/empty_content_component.rb
|
|
799
|
+
- app/view_components/ui/empty_description_component.rb
|
|
800
|
+
- app/view_components/ui/empty_header_component.rb
|
|
801
|
+
- app/view_components/ui/empty_media_component.rb
|
|
802
|
+
- app/view_components/ui/empty_title_component.rb
|
|
803
|
+
- app/view_components/ui/field_component.rb
|
|
804
|
+
- app/view_components/ui/field_content_component.rb
|
|
805
|
+
- app/view_components/ui/field_description_component.rb
|
|
806
|
+
- app/view_components/ui/field_error_component.rb
|
|
807
|
+
- app/view_components/ui/field_group_component.rb
|
|
808
|
+
- app/view_components/ui/field_label_component.rb
|
|
809
|
+
- app/view_components/ui/field_legend_component.rb
|
|
810
|
+
- app/view_components/ui/field_separator_component.rb
|
|
811
|
+
- app/view_components/ui/field_set_component.rb
|
|
812
|
+
- app/view_components/ui/field_title_component.rb
|
|
813
|
+
- app/view_components/ui/h1_component.rb
|
|
814
|
+
- app/view_components/ui/h2_component.rb
|
|
815
|
+
- app/view_components/ui/h3_component.rb
|
|
816
|
+
- app/view_components/ui/h4_component.rb
|
|
817
|
+
- app/view_components/ui/hover_card_component.rb
|
|
818
|
+
- app/view_components/ui/hover_card_content_component.rb
|
|
819
|
+
- app/view_components/ui/hover_card_trigger_component.rb
|
|
820
|
+
- app/view_components/ui/inline_code_component.rb
|
|
821
|
+
- app/view_components/ui/input_component.rb
|
|
822
|
+
- app/view_components/ui/input_group_addon_component.rb
|
|
823
|
+
- app/view_components/ui/input_group_button_component.rb
|
|
824
|
+
- app/view_components/ui/input_group_component.rb
|
|
825
|
+
- app/view_components/ui/input_group_input_component.rb
|
|
826
|
+
- app/view_components/ui/input_group_text_component.rb
|
|
827
|
+
- app/view_components/ui/input_group_textarea_component.rb
|
|
828
|
+
- app/view_components/ui/input_otp_component.rb
|
|
829
|
+
- app/view_components/ui/input_otp_group_component.rb
|
|
830
|
+
- app/view_components/ui/input_otp_separator_component.rb
|
|
831
|
+
- app/view_components/ui/input_otp_slot_component.rb
|
|
832
|
+
- app/view_components/ui/item_actions_component.rb
|
|
833
|
+
- app/view_components/ui/item_component.rb
|
|
834
|
+
- app/view_components/ui/item_content_component.rb
|
|
835
|
+
- app/view_components/ui/item_description_component.rb
|
|
836
|
+
- app/view_components/ui/item_footer_component.rb
|
|
837
|
+
- app/view_components/ui/item_group_component.rb
|
|
838
|
+
- app/view_components/ui/item_header_component.rb
|
|
839
|
+
- app/view_components/ui/item_media_component.rb
|
|
840
|
+
- app/view_components/ui/item_separator_component.rb
|
|
841
|
+
- app/view_components/ui/item_title_component.rb
|
|
842
|
+
- app/view_components/ui/kbd_component.rb
|
|
843
|
+
- app/view_components/ui/kbd_group_component.rb
|
|
844
|
+
- app/view_components/ui/label_component.rb
|
|
845
|
+
- app/view_components/ui/large_component.rb
|
|
846
|
+
- app/view_components/ui/lead_component.rb
|
|
847
|
+
- app/view_components/ui/list_component.rb
|
|
848
|
+
- app/view_components/ui/menubar_checkbox_item_component.rb
|
|
849
|
+
- app/view_components/ui/menubar_component.rb
|
|
850
|
+
- app/view_components/ui/menubar_content_component.rb
|
|
851
|
+
- app/view_components/ui/menubar_item_component.rb
|
|
852
|
+
- app/view_components/ui/menubar_label_component.rb
|
|
853
|
+
- app/view_components/ui/menubar_menu_component.rb
|
|
854
|
+
- app/view_components/ui/menubar_radio_group_component.rb
|
|
855
|
+
- app/view_components/ui/menubar_radio_item_component.rb
|
|
856
|
+
- app/view_components/ui/menubar_separator_component.rb
|
|
857
|
+
- app/view_components/ui/menubar_shortcut_component.rb
|
|
858
|
+
- app/view_components/ui/menubar_sub_component.rb
|
|
859
|
+
- app/view_components/ui/menubar_sub_content_component.rb
|
|
860
|
+
- app/view_components/ui/menubar_sub_trigger_component.rb
|
|
861
|
+
- app/view_components/ui/menubar_trigger_component.rb
|
|
862
|
+
- app/view_components/ui/muted_component.rb
|
|
863
|
+
- app/view_components/ui/navigation_menu_component.rb
|
|
864
|
+
- app/view_components/ui/navigation_menu_content_component.rb
|
|
865
|
+
- app/view_components/ui/navigation_menu_item_component.rb
|
|
866
|
+
- app/view_components/ui/navigation_menu_link_component.rb
|
|
867
|
+
- app/view_components/ui/navigation_menu_list_component.rb
|
|
868
|
+
- app/view_components/ui/navigation_menu_trigger_component.rb
|
|
869
|
+
- app/view_components/ui/navigation_menu_viewport_component.rb
|
|
870
|
+
- app/view_components/ui/p_component.rb
|
|
871
|
+
- app/view_components/ui/pagination_component.rb
|
|
872
|
+
- app/view_components/ui/pagination_content_component.rb
|
|
873
|
+
- app/view_components/ui/pagination_ellipsis_component.rb
|
|
874
|
+
- app/view_components/ui/pagination_item_component.rb
|
|
875
|
+
- app/view_components/ui/pagination_link_component.rb
|
|
876
|
+
- app/view_components/ui/pagination_next_component.rb
|
|
877
|
+
- app/view_components/ui/pagination_previous_component.rb
|
|
878
|
+
- app/view_components/ui/popover_component.rb
|
|
879
|
+
- app/view_components/ui/popover_content_component.rb
|
|
880
|
+
- app/view_components/ui/popover_trigger_component.rb
|
|
881
|
+
- app/view_components/ui/progress_component.rb
|
|
882
|
+
- app/view_components/ui/radio_button_component.rb
|
|
883
|
+
- app/view_components/ui/resizable_handle_component.rb
|
|
884
|
+
- app/view_components/ui/resizable_panel_component.rb
|
|
885
|
+
- app/view_components/ui/resizable_panel_group_component.rb
|
|
886
|
+
- app/view_components/ui/responsive_dialog_component.rb
|
|
887
|
+
- app/view_components/ui/scroll_area_component.rb
|
|
888
|
+
- app/view_components/ui/scroll_area_corner_component.rb
|
|
889
|
+
- app/view_components/ui/scroll_area_scrollbar_component.rb
|
|
890
|
+
- app/view_components/ui/scroll_area_thumb_component.rb
|
|
891
|
+
- app/view_components/ui/scroll_area_viewport_component.rb
|
|
892
|
+
- app/view_components/ui/select_component.rb
|
|
893
|
+
- app/view_components/ui/select_content_component.rb
|
|
894
|
+
- app/view_components/ui/select_group_component.rb
|
|
895
|
+
- app/view_components/ui/select_item_component.rb
|
|
896
|
+
- app/view_components/ui/select_label_component.rb
|
|
897
|
+
- app/view_components/ui/select_scroll_down_button_component.rb
|
|
898
|
+
- app/view_components/ui/select_scroll_up_button_component.rb
|
|
899
|
+
- app/view_components/ui/select_trigger_component.rb
|
|
900
|
+
- app/view_components/ui/separator_component.rb
|
|
901
|
+
- app/view_components/ui/sheet_close_component.rb
|
|
902
|
+
- app/view_components/ui/sheet_component.rb
|
|
903
|
+
- app/view_components/ui/sheet_content_component.rb
|
|
904
|
+
- app/view_components/ui/sheet_description_component.rb
|
|
905
|
+
- app/view_components/ui/sheet_footer_component.rb
|
|
906
|
+
- app/view_components/ui/sheet_header_component.rb
|
|
907
|
+
- app/view_components/ui/sheet_overlay_component.rb
|
|
908
|
+
- app/view_components/ui/sheet_title_component.rb
|
|
909
|
+
- app/view_components/ui/sheet_trigger_component.rb
|
|
910
|
+
- app/view_components/ui/skeleton_component.rb
|
|
911
|
+
- app/view_components/ui/slider_component.rb
|
|
912
|
+
- app/view_components/ui/slider_range_component.rb
|
|
913
|
+
- app/view_components/ui/slider_thumb_component.rb
|
|
914
|
+
- app/view_components/ui/slider_track_component.rb
|
|
915
|
+
- app/view_components/ui/small_component.rb
|
|
916
|
+
- app/view_components/ui/sonner_toaster_component.rb
|
|
917
|
+
- app/view_components/ui/spinner_component.rb
|
|
918
|
+
- app/view_components/ui/switch_component.rb
|
|
919
|
+
- app/view_components/ui/table_body_component.rb
|
|
920
|
+
- app/view_components/ui/table_caption_component.rb
|
|
921
|
+
- app/view_components/ui/table_cell_component.rb
|
|
922
|
+
- app/view_components/ui/table_component.rb
|
|
923
|
+
- app/view_components/ui/table_footer_component.rb
|
|
924
|
+
- app/view_components/ui/table_head_component.rb
|
|
925
|
+
- app/view_components/ui/table_header_component.rb
|
|
926
|
+
- app/view_components/ui/table_row_component.rb
|
|
927
|
+
- app/view_components/ui/tabs_component.rb
|
|
928
|
+
- app/view_components/ui/tabs_content_component.rb
|
|
929
|
+
- app/view_components/ui/tabs_list_component.rb
|
|
930
|
+
- app/view_components/ui/tabs_trigger_component.rb
|
|
931
|
+
- app/view_components/ui/textarea_component.rb
|
|
932
|
+
- app/view_components/ui/toggle_component.rb
|
|
933
|
+
- app/view_components/ui/toggle_group_component.rb
|
|
934
|
+
- app/view_components/ui/toggle_group_item_component.rb
|
|
935
|
+
- app/view_components/ui/tooltip_component.rb
|
|
936
|
+
- app/view_components/ui/tooltip_content_component.rb
|
|
937
|
+
- app/view_components/ui/tooltip_trigger_component.rb
|
|
938
|
+
- app/views/layouts/ui/application.html.erb
|
|
939
|
+
- app/views/ui/_accordion.html.erb
|
|
940
|
+
- app/views/ui/_alert.html.erb
|
|
941
|
+
- app/views/ui/_aspect_ratio.html.erb
|
|
942
|
+
- app/views/ui/_avatar.html.erb
|
|
943
|
+
- app/views/ui/_badge.html.erb
|
|
944
|
+
- app/views/ui/_blockquote.html.erb
|
|
945
|
+
- app/views/ui/_breadcrumb.html.erb
|
|
946
|
+
- app/views/ui/_button.html.erb
|
|
947
|
+
- app/views/ui/_button_group.html.erb
|
|
948
|
+
- app/views/ui/_calendar.html.erb
|
|
949
|
+
- app/views/ui/_card.html.erb
|
|
950
|
+
- app/views/ui/_carousel.html.erb
|
|
951
|
+
- app/views/ui/_checkbox.html.erb
|
|
952
|
+
- app/views/ui/_collapsible.html.erb
|
|
953
|
+
- app/views/ui/_command.html.erb
|
|
954
|
+
- app/views/ui/_context_menu.html.erb
|
|
955
|
+
- app/views/ui/_date_picker.html.erb
|
|
956
|
+
- app/views/ui/_dialog.html.erb
|
|
957
|
+
- app/views/ui/_drawer.html.erb
|
|
958
|
+
- app/views/ui/_dropdown_menu.html.erb
|
|
959
|
+
- app/views/ui/_empty.html.erb
|
|
960
|
+
- app/views/ui/_field.html.erb
|
|
961
|
+
- app/views/ui/_h1.html.erb
|
|
962
|
+
- app/views/ui/_h2.html.erb
|
|
963
|
+
- app/views/ui/_h3.html.erb
|
|
964
|
+
- app/views/ui/_h4.html.erb
|
|
965
|
+
- app/views/ui/_hover_card.html.erb
|
|
966
|
+
- app/views/ui/_inline_code.html.erb
|
|
967
|
+
- app/views/ui/_input.html.erb
|
|
968
|
+
- app/views/ui/_input_group.html.erb
|
|
969
|
+
- app/views/ui/_input_otp.html.erb
|
|
970
|
+
- app/views/ui/_item.html.erb
|
|
971
|
+
- app/views/ui/_kbd.html.erb
|
|
972
|
+
- app/views/ui/_label.html.erb
|
|
973
|
+
- app/views/ui/_large.html.erb
|
|
974
|
+
- app/views/ui/_lead.html.erb
|
|
975
|
+
- app/views/ui/_list.html.erb
|
|
976
|
+
- app/views/ui/_menubar.html.erb
|
|
977
|
+
- app/views/ui/_muted.html.erb
|
|
978
|
+
- app/views/ui/_navigation_menu.html.erb
|
|
979
|
+
- app/views/ui/_p.html.erb
|
|
980
|
+
- app/views/ui/_pagination.html.erb
|
|
981
|
+
- app/views/ui/_popover.html.erb
|
|
982
|
+
- app/views/ui/_progress.html.erb
|
|
983
|
+
- app/views/ui/_radio_button.html.erb
|
|
984
|
+
- app/views/ui/_responsive_dialog.html.erb
|
|
985
|
+
- app/views/ui/_scroll_area.html.erb
|
|
986
|
+
- app/views/ui/_select.html.erb
|
|
987
|
+
- app/views/ui/_separator.html.erb
|
|
988
|
+
- app/views/ui/_sheet.html.erb
|
|
989
|
+
- app/views/ui/_skeleton.html.erb
|
|
990
|
+
- app/views/ui/_slider.html.erb
|
|
991
|
+
- app/views/ui/_small.html.erb
|
|
992
|
+
- app/views/ui/_spinner.html.erb
|
|
993
|
+
- app/views/ui/_switch.html.erb
|
|
994
|
+
- app/views/ui/_table.html.erb
|
|
995
|
+
- app/views/ui/_tabs.html.erb
|
|
996
|
+
- app/views/ui/_textarea.html.erb
|
|
997
|
+
- app/views/ui/_toggle.html.erb
|
|
998
|
+
- app/views/ui/_toggle_group.html.erb
|
|
999
|
+
- app/views/ui/_tooltip.html.erb
|
|
1000
|
+
- app/views/ui/accordion/_content.html.erb
|
|
1001
|
+
- app/views/ui/accordion/_item.html.erb
|
|
1002
|
+
- app/views/ui/accordion/_trigger.html.erb
|
|
1003
|
+
- app/views/ui/alert/_description.html.erb
|
|
1004
|
+
- app/views/ui/alert/_title.html.erb
|
|
1005
|
+
- app/views/ui/avatar/_fallback.html.erb
|
|
1006
|
+
- app/views/ui/avatar/_image.html.erb
|
|
1007
|
+
- app/views/ui/breadcrumb/_ellipsis.html.erb
|
|
1008
|
+
- app/views/ui/breadcrumb/_item.html.erb
|
|
1009
|
+
- app/views/ui/breadcrumb/_link.html.erb
|
|
1010
|
+
- app/views/ui/breadcrumb/_list.html.erb
|
|
1011
|
+
- app/views/ui/breadcrumb/_page.html.erb
|
|
1012
|
+
- app/views/ui/breadcrumb/_separator.html.erb
|
|
1013
|
+
- app/views/ui/button_group/_separator.html.erb
|
|
1014
|
+
- app/views/ui/button_group/_text.html.erb
|
|
1015
|
+
- app/views/ui/card/_action.html.erb
|
|
1016
|
+
- app/views/ui/card/_content.html.erb
|
|
1017
|
+
- app/views/ui/card/_description.html.erb
|
|
1018
|
+
- app/views/ui/card/_footer.html.erb
|
|
1019
|
+
- app/views/ui/card/_header.html.erb
|
|
1020
|
+
- app/views/ui/card/_title.html.erb
|
|
1021
|
+
- app/views/ui/carousel/_content.html.erb
|
|
1022
|
+
- app/views/ui/carousel/_item.html.erb
|
|
1023
|
+
- app/views/ui/carousel/_next.html.erb
|
|
1024
|
+
- app/views/ui/carousel/_previous.html.erb
|
|
1025
|
+
- app/views/ui/collapsible/_content.html.erb
|
|
1026
|
+
- app/views/ui/collapsible/_trigger.html.erb
|
|
1027
|
+
- app/views/ui/combobox/_wrapper.html.erb
|
|
1028
|
+
- app/views/ui/command/_dialog.html.erb
|
|
1029
|
+
- app/views/ui/command/_empty.html.erb
|
|
1030
|
+
- app/views/ui/command/_group.html.erb
|
|
1031
|
+
- app/views/ui/command/_input.html.erb
|
|
1032
|
+
- app/views/ui/command/_item.html.erb
|
|
1033
|
+
- app/views/ui/command/_list.html.erb
|
|
1034
|
+
- app/views/ui/command/_separator.html.erb
|
|
1035
|
+
- app/views/ui/command/_shortcut.html.erb
|
|
1036
|
+
- app/views/ui/context_menu/_checkbox_item.html.erb
|
|
1037
|
+
- app/views/ui/context_menu/_content.html.erb
|
|
1038
|
+
- app/views/ui/context_menu/_item.html.erb
|
|
1039
|
+
- app/views/ui/context_menu/_label.html.erb
|
|
1040
|
+
- app/views/ui/context_menu/_radio_group.html.erb
|
|
1041
|
+
- app/views/ui/context_menu/_radio_item.html.erb
|
|
1042
|
+
- app/views/ui/context_menu/_separator.html.erb
|
|
1043
|
+
- app/views/ui/context_menu/_shortcut.html.erb
|
|
1044
|
+
- app/views/ui/context_menu/_trigger.html.erb
|
|
1045
|
+
- app/views/ui/date_picker/_input.html.erb
|
|
1046
|
+
- app/views/ui/date_picker/_trigger.html.erb
|
|
1047
|
+
- app/views/ui/dialog/_close.html.erb
|
|
1048
|
+
- app/views/ui/dialog/_content.html.erb
|
|
1049
|
+
- app/views/ui/dialog/_description.html.erb
|
|
1050
|
+
- app/views/ui/dialog/_footer.html.erb
|
|
1051
|
+
- app/views/ui/dialog/_header.html.erb
|
|
1052
|
+
- app/views/ui/dialog/_overlay.html.erb
|
|
1053
|
+
- app/views/ui/dialog/_title.html.erb
|
|
1054
|
+
- app/views/ui/dialog/_trigger.html.erb
|
|
1055
|
+
- app/views/ui/drawer/_close.html.erb
|
|
1056
|
+
- app/views/ui/drawer/_content.html.erb
|
|
1057
|
+
- app/views/ui/drawer/_description.html.erb
|
|
1058
|
+
- app/views/ui/drawer/_footer.html.erb
|
|
1059
|
+
- app/views/ui/drawer/_handle.html.erb
|
|
1060
|
+
- app/views/ui/drawer/_header.html.erb
|
|
1061
|
+
- app/views/ui/drawer/_overlay.html.erb
|
|
1062
|
+
- app/views/ui/drawer/_title.html.erb
|
|
1063
|
+
- app/views/ui/drawer/_trigger.html.erb
|
|
1064
|
+
- app/views/ui/dropdown_menu/_checkbox_item.html.erb
|
|
1065
|
+
- app/views/ui/dropdown_menu/_content.html.erb
|
|
1066
|
+
- app/views/ui/dropdown_menu/_item.html.erb
|
|
1067
|
+
- app/views/ui/dropdown_menu/_label.html.erb
|
|
1068
|
+
- app/views/ui/dropdown_menu/_radio_group.html.erb
|
|
1069
|
+
- app/views/ui/dropdown_menu/_radio_item.html.erb
|
|
1070
|
+
- app/views/ui/dropdown_menu/_separator.html.erb
|
|
1071
|
+
- app/views/ui/dropdown_menu/_shortcut.html.erb
|
|
1072
|
+
- app/views/ui/dropdown_menu/_sub.html.erb
|
|
1073
|
+
- app/views/ui/dropdown_menu/_sub_content.html.erb
|
|
1074
|
+
- app/views/ui/dropdown_menu/_sub_trigger.html.erb
|
|
1075
|
+
- app/views/ui/dropdown_menu/_trigger.html.erb
|
|
1076
|
+
- app/views/ui/empty/_content.html.erb
|
|
1077
|
+
- app/views/ui/empty/_description.html.erb
|
|
1078
|
+
- app/views/ui/empty/_header.html.erb
|
|
1079
|
+
- app/views/ui/empty/_media.html.erb
|
|
1080
|
+
- app/views/ui/empty/_title.html.erb
|
|
1081
|
+
- app/views/ui/field/_content.html.erb
|
|
1082
|
+
- app/views/ui/field/_description.html.erb
|
|
1083
|
+
- app/views/ui/field/_error.html.erb
|
|
1084
|
+
- app/views/ui/field/_group.html.erb
|
|
1085
|
+
- app/views/ui/field/_label.html.erb
|
|
1086
|
+
- app/views/ui/field/_legend.html.erb
|
|
1087
|
+
- app/views/ui/field/_separator.html.erb
|
|
1088
|
+
- app/views/ui/field/_set.html.erb
|
|
1089
|
+
- app/views/ui/field/_title.html.erb
|
|
1090
|
+
- app/views/ui/hover_card/_content.html.erb
|
|
1091
|
+
- app/views/ui/hover_card/_trigger.html.erb
|
|
1092
|
+
- app/views/ui/input_group/_addon.html.erb
|
|
1093
|
+
- app/views/ui/input_group/_button.html.erb
|
|
1094
|
+
- app/views/ui/input_group/_input.html.erb
|
|
1095
|
+
- app/views/ui/input_group/_text.html.erb
|
|
1096
|
+
- app/views/ui/input_group/_textarea.html.erb
|
|
1097
|
+
- app/views/ui/input_otp/_group.html.erb
|
|
1098
|
+
- app/views/ui/input_otp/_separator.html.erb
|
|
1099
|
+
- app/views/ui/input_otp/_slot.html.erb
|
|
1100
|
+
- app/views/ui/item/_actions.html.erb
|
|
1101
|
+
- app/views/ui/item/_content.html.erb
|
|
1102
|
+
- app/views/ui/item/_description.html.erb
|
|
1103
|
+
- app/views/ui/item/_footer.html.erb
|
|
1104
|
+
- app/views/ui/item/_group.html.erb
|
|
1105
|
+
- app/views/ui/item/_header.html.erb
|
|
1106
|
+
- app/views/ui/item/_media.html.erb
|
|
1107
|
+
- app/views/ui/item/_separator.html.erb
|
|
1108
|
+
- app/views/ui/item/_title.html.erb
|
|
1109
|
+
- app/views/ui/kbd/_group.html.erb
|
|
1110
|
+
- app/views/ui/menubar/_checkbox_item.html.erb
|
|
1111
|
+
- app/views/ui/menubar/_content.html.erb
|
|
1112
|
+
- app/views/ui/menubar/_item.html.erb
|
|
1113
|
+
- app/views/ui/menubar/_label.html.erb
|
|
1114
|
+
- app/views/ui/menubar/_menu.html.erb
|
|
1115
|
+
- app/views/ui/menubar/_radio_group.html.erb
|
|
1116
|
+
- app/views/ui/menubar/_radio_item.html.erb
|
|
1117
|
+
- app/views/ui/menubar/_separator.html.erb
|
|
1118
|
+
- app/views/ui/menubar/_shortcut.html.erb
|
|
1119
|
+
- app/views/ui/menubar/_sub.html.erb
|
|
1120
|
+
- app/views/ui/menubar/_sub_content.html.erb
|
|
1121
|
+
- app/views/ui/menubar/_sub_trigger.html.erb
|
|
1122
|
+
- app/views/ui/menubar/_trigger.html.erb
|
|
1123
|
+
- app/views/ui/navigation_menu/_content.html.erb
|
|
1124
|
+
- app/views/ui/navigation_menu/_item.html.erb
|
|
1125
|
+
- app/views/ui/navigation_menu/_link.html.erb
|
|
1126
|
+
- app/views/ui/navigation_menu/_list.html.erb
|
|
1127
|
+
- app/views/ui/navigation_menu/_trigger.html.erb
|
|
1128
|
+
- app/views/ui/navigation_menu/_viewport.html.erb
|
|
1129
|
+
- app/views/ui/pagination/_content.html.erb
|
|
1130
|
+
- app/views/ui/pagination/_ellipsis.html.erb
|
|
1131
|
+
- app/views/ui/pagination/_item.html.erb
|
|
1132
|
+
- app/views/ui/pagination/_link.html.erb
|
|
1133
|
+
- app/views/ui/pagination/_next.html.erb
|
|
1134
|
+
- app/views/ui/pagination/_previous.html.erb
|
|
1135
|
+
- app/views/ui/popover/_content.html.erb
|
|
1136
|
+
- app/views/ui/popover/_trigger.html.erb
|
|
1137
|
+
- app/views/ui/resizable/_handle.html.erb
|
|
1138
|
+
- app/views/ui/resizable/_panel.html.erb
|
|
1139
|
+
- app/views/ui/resizable/_panel_group.html.erb
|
|
1140
|
+
- app/views/ui/scroll_area/_corner.html.erb
|
|
1141
|
+
- app/views/ui/scroll_area/_scrollbar.html.erb
|
|
1142
|
+
- app/views/ui/scroll_area/_thumb.html.erb
|
|
1143
|
+
- app/views/ui/scroll_area/_viewport.html.erb
|
|
1144
|
+
- app/views/ui/select/_content.html.erb
|
|
1145
|
+
- app/views/ui/select/_group.html.erb
|
|
1146
|
+
- app/views/ui/select/_item.html.erb
|
|
1147
|
+
- app/views/ui/select/_label.html.erb
|
|
1148
|
+
- app/views/ui/select/_scroll_down_button.html.erb
|
|
1149
|
+
- app/views/ui/select/_scroll_up_button.html.erb
|
|
1150
|
+
- app/views/ui/select/_trigger.html.erb
|
|
1151
|
+
- app/views/ui/sheet/_close.html.erb
|
|
1152
|
+
- app/views/ui/sheet/_content.html.erb
|
|
1153
|
+
- app/views/ui/sheet/_description.html.erb
|
|
1154
|
+
- app/views/ui/sheet/_footer.html.erb
|
|
1155
|
+
- app/views/ui/sheet/_header.html.erb
|
|
1156
|
+
- app/views/ui/sheet/_overlay.html.erb
|
|
1157
|
+
- app/views/ui/sheet/_title.html.erb
|
|
1158
|
+
- app/views/ui/sheet/_trigger.html.erb
|
|
1159
|
+
- app/views/ui/slider/_range.html.erb
|
|
1160
|
+
- app/views/ui/slider/_thumb.html.erb
|
|
1161
|
+
- app/views/ui/slider/_track.html.erb
|
|
1162
|
+
- app/views/ui/sonner/_toaster.html.erb
|
|
1163
|
+
- app/views/ui/table/_body.html.erb
|
|
1164
|
+
- app/views/ui/table/_caption.html.erb
|
|
1165
|
+
- app/views/ui/table/_cell.html.erb
|
|
1166
|
+
- app/views/ui/table/_footer.html.erb
|
|
1167
|
+
- app/views/ui/table/_head.html.erb
|
|
1168
|
+
- app/views/ui/table/_header.html.erb
|
|
1169
|
+
- app/views/ui/table/_row.html.erb
|
|
1170
|
+
- app/views/ui/tabs/_content.html.erb
|
|
1171
|
+
- app/views/ui/tabs/_list.html.erb
|
|
1172
|
+
- app/views/ui/tabs/_trigger.html.erb
|
|
1173
|
+
- app/views/ui/toggle_group/_item.html.erb
|
|
1174
|
+
- app/views/ui/tooltip/_content.html.erb
|
|
1175
|
+
- app/views/ui/tooltip/_trigger.html.erb
|
|
1176
|
+
- config/importmap.rb
|
|
1177
|
+
- config/routes.rb
|
|
1178
|
+
- lib/fernandes-ui.rb
|
|
1179
|
+
- lib/generators/ui/install/install_generator.rb
|
|
1180
|
+
- lib/generators/ui/install/templates/Procfile.dev
|
|
1181
|
+
- lib/generators/ui/install/templates/application.tailwind.css
|
|
1182
|
+
- lib/generators/ui/install/templates/package.json
|
|
1183
|
+
- lib/tasks/ui_tasks.rake
|
|
1184
|
+
- lib/ui.rb
|
|
1185
|
+
- lib/ui/configuration.rb
|
|
1186
|
+
- lib/ui/engine.rb
|
|
1187
|
+
- lib/ui/version.rb
|
|
1188
|
+
homepage: https://ui.coding.com.br
|
|
1189
|
+
licenses:
|
|
1190
|
+
- MIT
|
|
1191
|
+
metadata:
|
|
1192
|
+
homepage_uri: https://ui.coding.com.br
|
|
1193
|
+
source_code_uri: https://github.com/fernandes/ui
|
|
1194
|
+
changelog_uri: https://github.com/fernandes/ui/blob/main/CHANGELOG.md
|
|
1195
|
+
bug_tracker_uri: https://github.com/fernandes/ui/issues
|
|
1196
|
+
rubygems_mfa_required: 'true'
|
|
1197
|
+
rdoc_options: []
|
|
1198
|
+
require_paths:
|
|
1199
|
+
- lib
|
|
1200
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1201
|
+
requirements:
|
|
1202
|
+
- - ">="
|
|
1203
|
+
- !ruby/object:Gem::Version
|
|
1204
|
+
version: '3.0'
|
|
1205
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1206
|
+
requirements:
|
|
1207
|
+
- - ">="
|
|
1208
|
+
- !ruby/object:Gem::Version
|
|
1209
|
+
version: '0'
|
|
1210
|
+
requirements: []
|
|
1211
|
+
rubygems_version: 3.7.2
|
|
1212
|
+
specification_version: 4
|
|
1213
|
+
summary: A Rails UI component library with ERB, Phlex, and ViewComponent support
|
|
1214
|
+
test_files: []
|