hotwirebits 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/CHANGELOG.md +46 -0
- data/LICENSE +21 -0
- data/README.md +156 -0
- data/app/assets/stylesheets/hotwirebits/theme.css +131 -0
- data/app/assets/stylesheets/hotwirebits/themes/corporate.css +29 -0
- data/app/assets/stylesheets/hotwirebits/themes/midnight.css +29 -0
- data/app/components/hotwirebits/accordion_component.html.erb +23 -0
- data/app/components/hotwirebits/accordion_component.rb +34 -0
- data/app/components/hotwirebits/activity_feed_component.html.erb +40 -0
- data/app/components/hotwirebits/activity_feed_component.rb +11 -0
- data/app/components/hotwirebits/affix_component.html.erb +3 -0
- data/app/components/hotwirebits/affix_component.rb +25 -0
- data/app/components/hotwirebits/ai_chat_component.html.erb +32 -0
- data/app/components/hotwirebits/ai_chat_component.rb +12 -0
- data/app/components/hotwirebits/alert_component.html.erb +32 -0
- data/app/components/hotwirebits/alert_component.rb +39 -0
- data/app/components/hotwirebits/alert_dialog_component.html.erb +30 -0
- data/app/components/hotwirebits/alert_dialog_component.rb +40 -0
- data/app/components/hotwirebits/anchor_component.html.erb +9 -0
- data/app/components/hotwirebits/anchor_component.rb +12 -0
- data/app/components/hotwirebits/angle_slider_component.html.erb +9 -0
- data/app/components/hotwirebits/angle_slider_component.rb +19 -0
- data/app/components/hotwirebits/animated_number_component.html.erb +8 -0
- data/app/components/hotwirebits/animated_number_component.rb +28 -0
- data/app/components/hotwirebits/app_shell_component.html.erb +22 -0
- data/app/components/hotwirebits/app_shell_component.rb +15 -0
- data/app/components/hotwirebits/aspect_ratio_component.html.erb +3 -0
- data/app/components/hotwirebits/aspect_ratio_component.rb +27 -0
- data/app/components/hotwirebits/auth_block_component.html.erb +63 -0
- data/app/components/hotwirebits/auth_block_component.rb +35 -0
- data/app/components/hotwirebits/autocomplete_component.html.erb +5 -0
- data/app/components/hotwirebits/autocomplete_component.rb +45 -0
- data/app/components/hotwirebits/avatar_component.html.erb +18 -0
- data/app/components/hotwirebits/avatar_component.rb +67 -0
- data/app/components/hotwirebits/background_image_component.html.erb +9 -0
- data/app/components/hotwirebits/background_image_component.rb +17 -0
- data/app/components/hotwirebits/badge_component.html.erb +13 -0
- data/app/components/hotwirebits/badge_component.rb +55 -0
- data/app/components/hotwirebits/banner_component.html.erb +31 -0
- data/app/components/hotwirebits/banner_component.rb +36 -0
- data/app/components/hotwirebits/base.rb +13 -0
- data/app/components/hotwirebits/bento_grid_component.html.erb +7 -0
- data/app/components/hotwirebits/bento_grid_component.rb +36 -0
- data/app/components/hotwirebits/blog_section_component.html.erb +35 -0
- data/app/components/hotwirebits/blog_section_component.rb +20 -0
- data/app/components/hotwirebits/bottom_navigation_component.html.erb +21 -0
- data/app/components/hotwirebits/bottom_navigation_component.rb +22 -0
- data/app/components/hotwirebits/box_component.html.erb +3 -0
- data/app/components/hotwirebits/box_component.rb +16 -0
- data/app/components/hotwirebits/breadcrumb_advanced_component.html.erb +53 -0
- data/app/components/hotwirebits/breadcrumb_advanced_component.rb +32 -0
- data/app/components/hotwirebits/breadcrumb_component.html.erb +18 -0
- data/app/components/hotwirebits/breadcrumb_component.rb +11 -0
- data/app/components/hotwirebits/browser_mockup_component.html.erb +22 -0
- data/app/components/hotwirebits/browser_mockup_component.rb +11 -0
- data/app/components/hotwirebits/burger_component.html.erb +20 -0
- data/app/components/hotwirebits/burger_component.rb +29 -0
- data/app/components/hotwirebits/button_component.html.erb +21 -0
- data/app/components/hotwirebits/button_component.rb +84 -0
- data/app/components/hotwirebits/calendar_component.html.erb +70 -0
- data/app/components/hotwirebits/calendar_component.rb +49 -0
- data/app/components/hotwirebits/card_component.html.erb +24 -0
- data/app/components/hotwirebits/card_component.rb +21 -0
- data/app/components/hotwirebits/card_heading_component.html.erb +13 -0
- data/app/components/hotwirebits/card_heading_component.rb +13 -0
- data/app/components/hotwirebits/carousel_component.html.erb +50 -0
- data/app/components/hotwirebits/carousel_component.rb +27 -0
- data/app/components/hotwirebits/center_component.html.erb +3 -0
- data/app/components/hotwirebits/center_component.rb +22 -0
- data/app/components/hotwirebits/chart_component.html.erb +68 -0
- data/app/components/hotwirebits/chart_component.rb +67 -0
- data/app/components/hotwirebits/chat_bubble_component.html.erb +27 -0
- data/app/components/hotwirebits/chat_bubble_component.rb +35 -0
- data/app/components/hotwirebits/checkbox_component.html.erb +9 -0
- data/app/components/hotwirebits/checkbox_component.rb +70 -0
- data/app/components/hotwirebits/checkout_form_component.html.erb +40 -0
- data/app/components/hotwirebits/checkout_form_component.rb +21 -0
- data/app/components/hotwirebits/chip_component.html.erb +13 -0
- data/app/components/hotwirebits/chip_component.rb +51 -0
- data/app/components/hotwirebits/clipboard_component.html.erb +26 -0
- data/app/components/hotwirebits/clipboard_component.rb +19 -0
- data/app/components/hotwirebits/close_button_component.html.erb +3 -0
- data/app/components/hotwirebits/close_button_component.rb +40 -0
- data/app/components/hotwirebits/code_block_component.html.erb +17 -0
- data/app/components/hotwirebits/code_block_component.rb +19 -0
- data/app/components/hotwirebits/code_highlight_component.html.erb +6 -0
- data/app/components/hotwirebits/code_highlight_component.rb +32 -0
- data/app/components/hotwirebits/code_mockup_component.html.erb +13 -0
- data/app/components/hotwirebits/code_mockup_component.rb +19 -0
- data/app/components/hotwirebits/collapsible_component.html.erb +17 -0
- data/app/components/hotwirebits/collapsible_component.rb +11 -0
- data/app/components/hotwirebits/color_input_component.html.erb +19 -0
- data/app/components/hotwirebits/color_input_component.rb +14 -0
- data/app/components/hotwirebits/color_picker_component.html.erb +6 -0
- data/app/components/hotwirebits/color_picker_component.rb +37 -0
- data/app/components/hotwirebits/color_swatch_component.html.erb +1 -0
- data/app/components/hotwirebits/color_swatch_component.rb +18 -0
- data/app/components/hotwirebits/combobox_component.html.erb +15 -0
- data/app/components/hotwirebits/combobox_component.rb +56 -0
- data/app/components/hotwirebits/command_bar_component.html.erb +33 -0
- data/app/components/hotwirebits/command_bar_component.rb +11 -0
- data/app/components/hotwirebits/compare_component.html.erb +21 -0
- data/app/components/hotwirebits/compare_component.rb +17 -0
- data/app/components/hotwirebits/confirm_dialog_component.html.erb +17 -0
- data/app/components/hotwirebits/confirm_dialog_component.rb +23 -0
- data/app/components/hotwirebits/confirm_popup_component.html.erb +16 -0
- data/app/components/hotwirebits/confirm_popup_component.rb +31 -0
- data/app/components/hotwirebits/contact_section_component.html.erb +53 -0
- data/app/components/hotwirebits/contact_section_component.rb +17 -0
- data/app/components/hotwirebits/container_component.html.erb +3 -0
- data/app/components/hotwirebits/container_component.rb +29 -0
- data/app/components/hotwirebits/context_menu_component.html.erb +27 -0
- data/app/components/hotwirebits/context_menu_component.rb +14 -0
- data/app/components/hotwirebits/cookie_consent_component.html.erb +23 -0
- data/app/components/hotwirebits/cookie_consent_component.rb +28 -0
- data/app/components/hotwirebits/cookie_settings_component.html.erb +48 -0
- data/app/components/hotwirebits/cookie_settings_component.rb +10 -0
- data/app/components/hotwirebits/countdown_component.html.erb +8 -0
- data/app/components/hotwirebits/countdown_component.rb +14 -0
- data/app/components/hotwirebits/cta_section_component.html.erb +33 -0
- data/app/components/hotwirebits/cta_section_component.rb +23 -0
- data/app/components/hotwirebits/dashboard_card_component.html.erb +32 -0
- data/app/components/hotwirebits/dashboard_card_component.rb +25 -0
- data/app/components/hotwirebits/data_table_component.html.erb +53 -0
- data/app/components/hotwirebits/data_table_component.rb +40 -0
- data/app/components/hotwirebits/data_view_component.html.erb +21 -0
- data/app/components/hotwirebits/data_view_component.rb +76 -0
- data/app/components/hotwirebits/date_picker_component.html.erb +8 -0
- data/app/components/hotwirebits/date_picker_component.rb +61 -0
- data/app/components/hotwirebits/date_range_picker_component.html.erb +28 -0
- data/app/components/hotwirebits/date_range_picker_component.rb +14 -0
- data/app/components/hotwirebits/device_frame_component.html.erb +40 -0
- data/app/components/hotwirebits/device_frame_component.rb +36 -0
- data/app/components/hotwirebits/device_mockup_component.html.erb +51 -0
- data/app/components/hotwirebits/device_mockup_component.rb +37 -0
- data/app/components/hotwirebits/dialog_component.html.erb +41 -0
- data/app/components/hotwirebits/dialog_component.rb +49 -0
- data/app/components/hotwirebits/diff_component.html.erb +22 -0
- data/app/components/hotwirebits/diff_component.rb +21 -0
- data/app/components/hotwirebits/diff_view_component.html.erb +22 -0
- data/app/components/hotwirebits/diff_view_component.rb +39 -0
- data/app/components/hotwirebits/digital_signature_component.html.erb +21 -0
- data/app/components/hotwirebits/digital_signature_component.rb +14 -0
- data/app/components/hotwirebits/divider_component.html.erb +11 -0
- data/app/components/hotwirebits/divider_component.rb +29 -0
- data/app/components/hotwirebits/dock_menu_component.html.erb +21 -0
- data/app/components/hotwirebits/dock_menu_component.rb +10 -0
- data/app/components/hotwirebits/drag_drop_list_component.html.erb +16 -0
- data/app/components/hotwirebits/drag_drop_list_component.rb +20 -0
- data/app/components/hotwirebits/drawer_component.html.erb +38 -0
- data/app/components/hotwirebits/drawer_component.rb +21 -0
- data/app/components/hotwirebits/dropdown_component.html.erb +27 -0
- data/app/components/hotwirebits/dropdown_component.rb +21 -0
- data/app/components/hotwirebits/dropzone_component.html.erb +16 -0
- data/app/components/hotwirebits/dropzone_component.rb +15 -0
- data/app/components/hotwirebits/empty_cart_component.html.erb +19 -0
- data/app/components/hotwirebits/empty_cart_component.rb +14 -0
- data/app/components/hotwirebits/empty_state_component.html.erb +20 -0
- data/app/components/hotwirebits/empty_state_component.rb +14 -0
- data/app/components/hotwirebits/error_page_component.html.erb +14 -0
- data/app/components/hotwirebits/error_page_component.rb +30 -0
- data/app/components/hotwirebits/faq_section_component.html.erb +26 -0
- data/app/components/hotwirebits/faq_section_component.rb +18 -0
- data/app/components/hotwirebits/feature_section_component.html.erb +27 -0
- data/app/components/hotwirebits/feature_section_component.rb +24 -0
- data/app/components/hotwirebits/feedback_component.html.erb +51 -0
- data/app/components/hotwirebits/feedback_component.rb +23 -0
- data/app/components/hotwirebits/fieldset_component.html.erb +11 -0
- data/app/components/hotwirebits/fieldset_component.rb +21 -0
- data/app/components/hotwirebits/file_browser_component.html.erb +35 -0
- data/app/components/hotwirebits/file_browser_component.rb +11 -0
- data/app/components/hotwirebits/file_input_component.html.erb +7 -0
- data/app/components/hotwirebits/file_input_component.rb +25 -0
- data/app/components/hotwirebits/file_upload_progress_component.html.erb +26 -0
- data/app/components/hotwirebits/file_upload_progress_component.rb +33 -0
- data/app/components/hotwirebits/flex_component.html.erb +3 -0
- data/app/components/hotwirebits/flex_component.rb +37 -0
- data/app/components/hotwirebits/float_label_component.html.erb +4 -0
- data/app/components/hotwirebits/float_label_component.rb +11 -0
- data/app/components/hotwirebits/fluid_component.html.erb +3 -0
- data/app/components/hotwirebits/fluid_component.rb +13 -0
- data/app/components/hotwirebits/flyout_menu_component.html.erb +35 -0
- data/app/components/hotwirebits/flyout_menu_component.rb +25 -0
- data/app/components/hotwirebits/footer_component.html.erb +43 -0
- data/app/components/hotwirebits/footer_component.rb +13 -0
- data/app/components/hotwirebits/form_fieldset_component.html.erb +9 -0
- data/app/components/hotwirebits/form_fieldset_component.rb +11 -0
- data/app/components/hotwirebits/form_group_component.html.erb +31 -0
- data/app/components/hotwirebits/form_group_component.rb +15 -0
- data/app/components/hotwirebits/gallery_component.html.erb +25 -0
- data/app/components/hotwirebits/gallery_component.rb +29 -0
- data/app/components/hotwirebits/grid_component.html.erb +3 -0
- data/app/components/hotwirebits/grid_component.rb +31 -0
- data/app/components/hotwirebits/group_component.html.erb +3 -0
- data/app/components/hotwirebits/group_component.rb +27 -0
- data/app/components/hotwirebits/header_component.html.erb +25 -0
- data/app/components/hotwirebits/header_component.rb +23 -0
- data/app/components/hotwirebits/header_section_component.html.erb +33 -0
- data/app/components/hotwirebits/header_section_component.rb +18 -0
- data/app/components/hotwirebits/hero_component.html.erb +35 -0
- data/app/components/hotwirebits/hero_component.rb +36 -0
- data/app/components/hotwirebits/highlight_component.html.erb +1 -0
- data/app/components/hotwirebits/highlight_component.rb +21 -0
- data/app/components/hotwirebits/hover3d_card_component.html.erb +10 -0
- data/app/components/hotwirebits/hover3d_card_component.rb +16 -0
- data/app/components/hotwirebits/hover_card_component.html.erb +19 -0
- data/app/components/hotwirebits/hover_card_component.rb +35 -0
- data/app/components/hotwirebits/hover_gallery_component.html.erb +23 -0
- data/app/components/hotwirebits/hover_gallery_component.rb +15 -0
- data/app/components/hotwirebits/icon_field_component.html.erb +9 -0
- data/app/components/hotwirebits/icon_field_component.rb +35 -0
- data/app/components/hotwirebits/ifta_label_component.html.erb +4 -0
- data/app/components/hotwirebits/ifta_label_component.rb +11 -0
- data/app/components/hotwirebits/image_compare_component.html.erb +21 -0
- data/app/components/hotwirebits/image_compare_component.rb +19 -0
- data/app/components/hotwirebits/image_component.html.erb +22 -0
- data/app/components/hotwirebits/image_component.rb +23 -0
- data/app/components/hotwirebits/image_zoom_component.html.erb +8 -0
- data/app/components/hotwirebits/image_zoom_component.rb +17 -0
- data/app/components/hotwirebits/incentive_component.html.erb +11 -0
- data/app/components/hotwirebits/incentive_component.rb +16 -0
- data/app/components/hotwirebits/indicator_badge_component.html.erb +8 -0
- data/app/components/hotwirebits/indicator_badge_component.rb +33 -0
- data/app/components/hotwirebits/indicator_component.html.erb +6 -0
- data/app/components/hotwirebits/indicator_component.rb +30 -0
- data/app/components/hotwirebits/inline_edit_component.html.erb +50 -0
- data/app/components/hotwirebits/inline_edit_component.rb +16 -0
- data/app/components/hotwirebits/inplace_component.html.erb +6 -0
- data/app/components/hotwirebits/inplace_component.rb +39 -0
- data/app/components/hotwirebits/input_component.html.erb +13 -0
- data/app/components/hotwirebits/input_component.rb +97 -0
- data/app/components/hotwirebits/input_group_component.html.erb +9 -0
- data/app/components/hotwirebits/input_group_component.rb +38 -0
- data/app/components/hotwirebits/input_number_component.html.erb +14 -0
- data/app/components/hotwirebits/input_number_component.rb +78 -0
- data/app/components/hotwirebits/input_otp_component.html.erb +6 -0
- data/app/components/hotwirebits/input_otp_component.rb +29 -0
- data/app/components/hotwirebits/input_tags_component.html.erb +12 -0
- data/app/components/hotwirebits/input_tags_component.rb +31 -0
- data/app/components/hotwirebits/join_component.html.erb +3 -0
- data/app/components/hotwirebits/join_component.rb +18 -0
- data/app/components/hotwirebits/json_input_component.html.erb +14 -0
- data/app/components/hotwirebits/json_input_component.rb +20 -0
- data/app/components/hotwirebits/kanban_board_component.html.erb +39 -0
- data/app/components/hotwirebits/kanban_board_component.rb +17 -0
- data/app/components/hotwirebits/kbd_component.html.erb +1 -0
- data/app/components/hotwirebits/kbd_component.rb +27 -0
- data/app/components/hotwirebits/knob_component.html.erb +16 -0
- data/app/components/hotwirebits/knob_component.rb +23 -0
- data/app/components/hotwirebits/label_component.html.erb +5 -0
- data/app/components/hotwirebits/label_component.rb +18 -0
- data/app/components/hotwirebits/lightbox_component.html.erb +30 -0
- data/app/components/hotwirebits/lightbox_component.rb +11 -0
- data/app/components/hotwirebits/like_button_component.html.erb +15 -0
- data/app/components/hotwirebits/like_button_component.rb +23 -0
- data/app/components/hotwirebits/list_component.html.erb +3 -0
- data/app/components/hotwirebits/list_component.rb +19 -0
- data/app/components/hotwirebits/listbox_component.html.erb +16 -0
- data/app/components/hotwirebits/listbox_component.rb +52 -0
- data/app/components/hotwirebits/loading_overlay_component.html.erb +12 -0
- data/app/components/hotwirebits/loading_overlay_component.rb +23 -0
- data/app/components/hotwirebits/logo_cloud_component.html.erb +20 -0
- data/app/components/hotwirebits/logo_cloud_component.rb +23 -0
- data/app/components/hotwirebits/logo_item_component.html.erb +7 -0
- data/app/components/hotwirebits/logo_item_component.rb +20 -0
- data/app/components/hotwirebits/mark_component.html.erb +1 -0
- data/app/components/hotwirebits/mark_component.rb +17 -0
- data/app/components/hotwirebits/marquee_component.html.erb +29 -0
- data/app/components/hotwirebits/marquee_component.rb +38 -0
- data/app/components/hotwirebits/mask_component.html.erb +3 -0
- data/app/components/hotwirebits/mask_component.rb +25 -0
- data/app/components/hotwirebits/mega_menu_component.html.erb +43 -0
- data/app/components/hotwirebits/mega_menu_component.rb +11 -0
- data/app/components/hotwirebits/menu_component.html.erb +32 -0
- data/app/components/hotwirebits/menu_component.rb +20 -0
- data/app/components/hotwirebits/menubar_component.html.erb +30 -0
- data/app/components/hotwirebits/menubar_component.rb +10 -0
- data/app/components/hotwirebits/meter_group_component.html.erb +16 -0
- data/app/components/hotwirebits/meter_group_component.rb +36 -0
- data/app/components/hotwirebits/month_picker_component.html.erb +25 -0
- data/app/components/hotwirebits/month_picker_component.rb +51 -0
- data/app/components/hotwirebits/month_picker_input_component.html.erb +20 -0
- data/app/components/hotwirebits/month_picker_input_component.rb +21 -0
- data/app/components/hotwirebits/multiselect_component.html.erb +18 -0
- data/app/components/hotwirebits/multiselect_component.rb +56 -0
- data/app/components/hotwirebits/native_select_component.html.erb +10 -0
- data/app/components/hotwirebits/native_select_component.rb +20 -0
- data/app/components/hotwirebits/nav_link_component.html.erb +9 -0
- data/app/components/hotwirebits/nav_link_component.rb +23 -0
- data/app/components/hotwirebits/navbar_component.html.erb +25 -0
- data/app/components/hotwirebits/navbar_component.rb +26 -0
- data/app/components/hotwirebits/navigation_menu_component.html.erb +43 -0
- data/app/components/hotwirebits/navigation_menu_component.rb +10 -0
- data/app/components/hotwirebits/newsletter_section_component.html.erb +18 -0
- data/app/components/hotwirebits/newsletter_section_component.rb +15 -0
- data/app/components/hotwirebits/notification_bell_component.html.erb +18 -0
- data/app/components/hotwirebits/notification_bell_component.rb +22 -0
- data/app/components/hotwirebits/notification_component.html.erb +28 -0
- data/app/components/hotwirebits/notification_component.rb +23 -0
- data/app/components/hotwirebits/number_formatter_component.html.erb +1 -0
- data/app/components/hotwirebits/number_formatter_component.rb +27 -0
- data/app/components/hotwirebits/number_input_component.html.erb +1 -0
- data/app/components/hotwirebits/number_input_component.rb +32 -0
- data/app/components/hotwirebits/order_summary_component.html.erb +37 -0
- data/app/components/hotwirebits/order_summary_component.rb +23 -0
- data/app/components/hotwirebits/org_chart_component.html.erb +34 -0
- data/app/components/hotwirebits/org_chart_component.rb +14 -0
- data/app/components/hotwirebits/page_heading_component.html.erb +28 -0
- data/app/components/hotwirebits/page_heading_component.rb +18 -0
- data/app/components/hotwirebits/pagination_component.html.erb +29 -0
- data/app/components/hotwirebits/pagination_component.rb +32 -0
- data/app/components/hotwirebits/paginator_component.html.erb +36 -0
- data/app/components/hotwirebits/paginator_component.rb +44 -0
- data/app/components/hotwirebits/panel_component.html.erb +14 -0
- data/app/components/hotwirebits/panel_component.rb +48 -0
- data/app/components/hotwirebits/password_input_component.html.erb +8 -0
- data/app/components/hotwirebits/password_input_component.rb +72 -0
- data/app/components/hotwirebits/password_strength_component.html.erb +18 -0
- data/app/components/hotwirebits/password_strength_component.rb +24 -0
- data/app/components/hotwirebits/password_toggle_component.html.erb +15 -0
- data/app/components/hotwirebits/password_toggle_component.rb +10 -0
- data/app/components/hotwirebits/permission_badge_component.html.erb +15 -0
- data/app/components/hotwirebits/permission_badge_component.rb +33 -0
- data/app/components/hotwirebits/phone_input_component.html.erb +1 -0
- data/app/components/hotwirebits/phone_input_component.rb +29 -0
- data/app/components/hotwirebits/phone_mockup_component.html.erb +12 -0
- data/app/components/hotwirebits/phone_mockup_component.rb +30 -0
- data/app/components/hotwirebits/popover_component.html.erb +20 -0
- data/app/components/hotwirebits/popover_component.rb +45 -0
- data/app/components/hotwirebits/portal_component.html.erb +3 -0
- data/app/components/hotwirebits/portal_component.rb +10 -0
- data/app/components/hotwirebits/pricing_section_component.html.erb +46 -0
- data/app/components/hotwirebits/pricing_section_component.rb +19 -0
- data/app/components/hotwirebits/product_list_component.html.erb +24 -0
- data/app/components/hotwirebits/product_list_component.rb +21 -0
- data/app/components/hotwirebits/product_overview_component.html.erb +59 -0
- data/app/components/hotwirebits/product_overview_component.rb +19 -0
- data/app/components/hotwirebits/product_quickview_component.html.erb +45 -0
- data/app/components/hotwirebits/product_quickview_component.rb +15 -0
- data/app/components/hotwirebits/progress_component.html.erb +10 -0
- data/app/components/hotwirebits/progress_component.rb +49 -0
- data/app/components/hotwirebits/progress_ring_component.html.erb +26 -0
- data/app/components/hotwirebits/progress_ring_component.rb +47 -0
- data/app/components/hotwirebits/promo_section_component.html.erb +31 -0
- data/app/components/hotwirebits/promo_section_component.rb +30 -0
- data/app/components/hotwirebits/qr_code_component.html.erb +19 -0
- data/app/components/hotwirebits/qr_code_component.rb +177 -0
- data/app/components/hotwirebits/radio_component.html.erb +6 -0
- data/app/components/hotwirebits/radio_component.rb +40 -0
- data/app/components/hotwirebits/range_slider_component.html.erb +9 -0
- data/app/components/hotwirebits/range_slider_component.rb +57 -0
- data/app/components/hotwirebits/rating_component.html.erb +11 -0
- data/app/components/hotwirebits/rating_component.rb +53 -0
- data/app/components/hotwirebits/resizable_component.html.erb +19 -0
- data/app/components/hotwirebits/resizable_component.rb +35 -0
- data/app/components/hotwirebits/review_component.html.erb +36 -0
- data/app/components/hotwirebits/review_component.rb +19 -0
- data/app/components/hotwirebits/rich_text_editor_component.html.erb +55 -0
- data/app/components/hotwirebits/rich_text_editor_component.rb +15 -0
- data/app/components/hotwirebits/scroll_area_component.html.erb +3 -0
- data/app/components/hotwirebits/scroll_area_component.rb +28 -0
- data/app/components/hotwirebits/search_component.html.erb +56 -0
- data/app/components/hotwirebits/search_component.rb +21 -0
- data/app/components/hotwirebits/search_input_component.html.erb +6 -0
- data/app/components/hotwirebits/search_input_component.rb +50 -0
- data/app/components/hotwirebits/section_heading_component.html.erb +6 -0
- data/app/components/hotwirebits/section_heading_component.rb +26 -0
- data/app/components/hotwirebits/select_component.html.erb +16 -0
- data/app/components/hotwirebits/select_component.rb +38 -0
- data/app/components/hotwirebits/semi_circle_progress_component.html.erb +9 -0
- data/app/components/hotwirebits/semi_circle_progress_component.rb +52 -0
- data/app/components/hotwirebits/separator_component.html.erb +9 -0
- data/app/components/hotwirebits/separator_component.rb +26 -0
- data/app/components/hotwirebits/sheet_component.html.erb +42 -0
- data/app/components/hotwirebits/sheet_component.rb +44 -0
- data/app/components/hotwirebits/shopping_cart_component.html.erb +46 -0
- data/app/components/hotwirebits/shopping_cart_component.rb +17 -0
- data/app/components/hotwirebits/sidebar_component.html.erb +40 -0
- data/app/components/hotwirebits/sidebar_component.rb +29 -0
- data/app/components/hotwirebits/simple_grid_component.html.erb +3 -0
- data/app/components/hotwirebits/simple_grid_component.rb +23 -0
- data/app/components/hotwirebits/skeleton_card_component.html.erb +15 -0
- data/app/components/hotwirebits/skeleton_card_component.rb +17 -0
- data/app/components/hotwirebits/skeleton_component.html.erb +5 -0
- data/app/components/hotwirebits/skeleton_component.rb +39 -0
- data/app/components/hotwirebits/slider_component.html.erb +3 -0
- data/app/components/hotwirebits/slider_component.rb +34 -0
- data/app/components/hotwirebits/social_share_component.html.erb +20 -0
- data/app/components/hotwirebits/social_share_component.rb +25 -0
- data/app/components/hotwirebits/space_component.html.erb +1 -0
- data/app/components/hotwirebits/space_component.rb +22 -0
- data/app/components/hotwirebits/speed_dial_component.html.erb +24 -0
- data/app/components/hotwirebits/speed_dial_component.rb +41 -0
- data/app/components/hotwirebits/speed_dial_fab_component.html.erb +30 -0
- data/app/components/hotwirebits/speed_dial_fab_component.rb +27 -0
- data/app/components/hotwirebits/spinner_component.html.erb +10 -0
- data/app/components/hotwirebits/spinner_component.rb +20 -0
- data/app/components/hotwirebits/split_button_component.html.erb +20 -0
- data/app/components/hotwirebits/split_button_component.rb +33 -0
- data/app/components/hotwirebits/splitter_component.html.erb +9 -0
- data/app/components/hotwirebits/splitter_component.rb +38 -0
- data/app/components/hotwirebits/spoiler_component.html.erb +17 -0
- data/app/components/hotwirebits/spoiler_component.rb +12 -0
- data/app/components/hotwirebits/stack_component.html.erb +3 -0
- data/app/components/hotwirebits/stack_component.rb +28 -0
- data/app/components/hotwirebits/stacked_list_component.html.erb +20 -0
- data/app/components/hotwirebits/stacked_list_component.rb +18 -0
- data/app/components/hotwirebits/stat_component.html.erb +21 -0
- data/app/components/hotwirebits/stat_component.rb +26 -0
- data/app/components/hotwirebits/stats_component.html.erb +15 -0
- data/app/components/hotwirebits/stats_component.rb +25 -0
- data/app/components/hotwirebits/status_bar_component.html.erb +13 -0
- data/app/components/hotwirebits/status_bar_component.rb +20 -0
- data/app/components/hotwirebits/status_component.html.erb +6 -0
- data/app/components/hotwirebits/status_component.rb +30 -0
- data/app/components/hotwirebits/status_dot_component.html.erb +11 -0
- data/app/components/hotwirebits/status_dot_component.rb +37 -0
- data/app/components/hotwirebits/stepper_form_component.html.erb +55 -0
- data/app/components/hotwirebits/stepper_form_component.rb +23 -0
- data/app/components/hotwirebits/steps_component.html.erb +45 -0
- data/app/components/hotwirebits/steps_component.rb +44 -0
- data/app/components/hotwirebits/swap_component.html.erb +18 -0
- data/app/components/hotwirebits/swap_component.rb +29 -0
- data/app/components/hotwirebits/switch_component.html.erb +9 -0
- data/app/components/hotwirebits/switch_component.rb +51 -0
- data/app/components/hotwirebits/table_component.html.erb +5 -0
- data/app/components/hotwirebits/table_component.rb +27 -0
- data/app/components/hotwirebits/table_of_contents_component.html.erb +12 -0
- data/app/components/hotwirebits/table_of_contents_component.rb +23 -0
- data/app/components/hotwirebits/tabs_component.html.erb +43 -0
- data/app/components/hotwirebits/tabs_component.rb +58 -0
- data/app/components/hotwirebits/tag_component.html.erb +3 -0
- data/app/components/hotwirebits/tag_component.rb +35 -0
- data/app/components/hotwirebits/tag_input_component.html.erb +14 -0
- data/app/components/hotwirebits/tag_input_component.rb +56 -0
- data/app/components/hotwirebits/team_section_component.html.erb +39 -0
- data/app/components/hotwirebits/team_section_component.rb +20 -0
- data/app/components/hotwirebits/terminal_component.html.erb +21 -0
- data/app/components/hotwirebits/terminal_component.rb +11 -0
- data/app/components/hotwirebits/testimonial_component.html.erb +29 -0
- data/app/components/hotwirebits/testimonial_component.rb +22 -0
- data/app/components/hotwirebits/testimonials_section_component.html.erb +34 -0
- data/app/components/hotwirebits/testimonials_section_component.rb +23 -0
- data/app/components/hotwirebits/text_gradient_component.html.erb +3 -0
- data/app/components/hotwirebits/text_gradient_component.rb +18 -0
- data/app/components/hotwirebits/text_rotate_component.html.erb +7 -0
- data/app/components/hotwirebits/text_rotate_component.rb +24 -0
- data/app/components/hotwirebits/textarea_component.html.erb +1 -0
- data/app/components/hotwirebits/textarea_component.rb +35 -0
- data/app/components/hotwirebits/theme_controller_component.html.erb +13 -0
- data/app/components/hotwirebits/theme_controller_component.rb +11 -0
- data/app/components/hotwirebits/theme_icon_component.html.erb +3 -0
- data/app/components/hotwirebits/theme_icon_component.rb +18 -0
- data/app/components/hotwirebits/theme_selector_component.html.erb +27 -0
- data/app/components/hotwirebits/theme_selector_component.rb +11 -0
- data/app/components/hotwirebits/time_picker_component.html.erb +29 -0
- data/app/components/hotwirebits/time_picker_component.rb +28 -0
- data/app/components/hotwirebits/timeline_component.html.erb +24 -0
- data/app/components/hotwirebits/timeline_component.rb +17 -0
- data/app/components/hotwirebits/toast_component.html.erb +34 -0
- data/app/components/hotwirebits/toast_component.rb +47 -0
- data/app/components/hotwirebits/toggle_button_component.html.erb +4 -0
- data/app/components/hotwirebits/toggle_button_component.rb +31 -0
- data/app/components/hotwirebits/toggle_button_group_component.html.erb +8 -0
- data/app/components/hotwirebits/toggle_button_group_component.rb +54 -0
- data/app/components/hotwirebits/toggle_component.html.erb +3 -0
- data/app/components/hotwirebits/toggle_component.rb +38 -0
- data/app/components/hotwirebits/toolbar_component.html.erb +18 -0
- data/app/components/hotwirebits/toolbar_component.rb +50 -0
- data/app/components/hotwirebits/tooltip_component.html.erb +16 -0
- data/app/components/hotwirebits/tooltip_component.rb +32 -0
- data/app/components/hotwirebits/tree_view_component.html.erb +7 -0
- data/app/components/hotwirebits/tree_view_component.rb +47 -0
- data/app/components/hotwirebits/two_factor_component.html.erb +26 -0
- data/app/components/hotwirebits/two_factor_component.rb +14 -0
- data/app/components/hotwirebits/typing_indicator_component.html.erb +5 -0
- data/app/components/hotwirebits/typing_indicator_component.rb +33 -0
- data/app/components/hotwirebits/typography_component.html.erb +3 -0
- data/app/components/hotwirebits/typography_component.rb +35 -0
- data/app/components/hotwirebits/validator_component.html.erb +20 -0
- data/app/components/hotwirebits/validator_component.rb +12 -0
- data/app/components/hotwirebits/version_diff_component.html.erb +17 -0
- data/app/components/hotwirebits/version_diff_component.rb +38 -0
- data/app/components/hotwirebits/video_player_component.html.erb +11 -0
- data/app/components/hotwirebits/video_player_component.rb +29 -0
- data/app/components/hotwirebits/voice_recorder_component.html.erb +29 -0
- data/app/components/hotwirebits/voice_recorder_component.rb +14 -0
- data/app/components/hotwirebits/window_mockup_component.html.erb +20 -0
- data/app/components/hotwirebits/window_mockup_component.rb +11 -0
- data/app/helpers/hotwirebits_helper.rb +738 -0
- data/app/javascript/controllers/hotwirebits/index.js +216 -0
- data/app/javascript/controllers/hotwirebits/rb_accordion_controller.js +16 -0
- data/app/javascript/controllers/hotwirebits/rb_activity_feed_controller.js +11 -0
- data/app/javascript/controllers/hotwirebits/rb_ai_chat_controller.js +21 -0
- data/app/javascript/controllers/hotwirebits/rb_alert_controller.js +24 -0
- data/app/javascript/controllers/hotwirebits/rb_angle_slider_controller.js +11 -0
- data/app/javascript/controllers/hotwirebits/rb_animated_number_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_autocomplete_controller.js +34 -0
- data/app/javascript/controllers/hotwirebits/rb_badge_controller.js +8 -0
- data/app/javascript/controllers/hotwirebits/rb_banner_controller.js +27 -0
- data/app/javascript/controllers/hotwirebits/rb_burger_controller.js +25 -0
- data/app/javascript/controllers/hotwirebits/rb_calendar_controller.js +85 -0
- data/app/javascript/controllers/hotwirebits/rb_carousel_controller.js +74 -0
- data/app/javascript/controllers/hotwirebits/rb_clipboard_controller.js +42 -0
- data/app/javascript/controllers/hotwirebits/rb_code_highlight_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_collapsible_controller.js +51 -0
- data/app/javascript/controllers/hotwirebits/rb_color_input_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_color_picker_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_combobox_controller.js +91 -0
- data/app/javascript/controllers/hotwirebits/rb_command_bar_controller.js +32 -0
- data/app/javascript/controllers/hotwirebits/rb_compare_controller.js +18 -0
- data/app/javascript/controllers/hotwirebits/rb_confirm_dialog_controller.js +11 -0
- data/app/javascript/controllers/hotwirebits/rb_confirm_popup_controller.js +10 -0
- data/app/javascript/controllers/hotwirebits/rb_context_menu_controller.js +27 -0
- data/app/javascript/controllers/hotwirebits/rb_cookie_consent_controller.js +60 -0
- data/app/javascript/controllers/hotwirebits/rb_cookie_settings_controller.js +9 -0
- data/app/javascript/controllers/hotwirebits/rb_countdown_controller.js +60 -0
- data/app/javascript/controllers/hotwirebits/rb_data_view_controller.js +10 -0
- data/app/javascript/controllers/hotwirebits/rb_date_range_controller.js +9 -0
- data/app/javascript/controllers/hotwirebits/rb_datepicker_controller.js +107 -0
- data/app/javascript/controllers/hotwirebits/rb_dialog_controller.js +68 -0
- data/app/javascript/controllers/hotwirebits/rb_drag_drop_controller.js +21 -0
- data/app/javascript/controllers/hotwirebits/rb_drawer_controller.js +69 -0
- data/app/javascript/controllers/hotwirebits/rb_dropdown_controller.js +73 -0
- data/app/javascript/controllers/hotwirebits/rb_feedback_controller.js +50 -0
- data/app/javascript/controllers/hotwirebits/rb_file_browser_controller.js +9 -0
- data/app/javascript/controllers/hotwirebits/rb_highlight_controller.js +47 -0
- data/app/javascript/controllers/hotwirebits/rb_hover_3d_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_hover_card_controller.js +19 -0
- data/app/javascript/controllers/hotwirebits/rb_hover_gallery_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_image_compare_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_image_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_image_zoom_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_inline_edit_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_inplace_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_input_number_controller.js +9 -0
- data/app/javascript/controllers/hotwirebits/rb_json_input_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_kanban_controller.js +78 -0
- data/app/javascript/controllers/hotwirebits/rb_knob_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_lightbox_controller.js +36 -0
- data/app/javascript/controllers/hotwirebits/rb_like_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_listbox_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_marquee_controller.js +68 -0
- data/app/javascript/controllers/hotwirebits/rb_menubar_controller.js +78 -0
- data/app/javascript/controllers/hotwirebits/rb_month_picker_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_month_picker_input_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_multiselect_controller.js +83 -0
- data/app/javascript/controllers/hotwirebits/rb_nav_menu_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_newsletter_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_notification_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_otp_controller.js +54 -0
- data/app/javascript/controllers/hotwirebits/rb_paginator_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_panel_controller.js +12 -0
- data/app/javascript/controllers/hotwirebits/rb_password_controller.js +36 -0
- data/app/javascript/controllers/hotwirebits/rb_password_strength_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_password_toggle_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_popover_controller.js +61 -0
- data/app/javascript/controllers/hotwirebits/rb_portal_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_quickview_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_range_slider_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_rating_controller.js +55 -0
- data/app/javascript/controllers/hotwirebits/rb_resizable_controller.js +82 -0
- data/app/javascript/controllers/hotwirebits/rb_rich_text_editor_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_search_controller.js +70 -0
- data/app/javascript/controllers/hotwirebits/rb_sheet_controller.js +43 -0
- data/app/javascript/controllers/hotwirebits/rb_sidebar_controller.js +66 -0
- data/app/javascript/controllers/hotwirebits/rb_signature_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_speed_dial_controller.js +64 -0
- data/app/javascript/controllers/hotwirebits/rb_splitter_controller.js +27 -0
- data/app/javascript/controllers/hotwirebits/rb_spoiler_controller.js +26 -0
- data/app/javascript/controllers/hotwirebits/rb_stepper_form_controller.js +11 -0
- data/app/javascript/controllers/hotwirebits/rb_steps_controller.js +46 -0
- data/app/javascript/controllers/hotwirebits/rb_swap_controller.js +22 -0
- data/app/javascript/controllers/hotwirebits/rb_switch_controller.js +33 -0
- data/app/javascript/controllers/hotwirebits/rb_tabs_controller.js +46 -0
- data/app/javascript/controllers/hotwirebits/rb_tag_input_controller.js +19 -0
- data/app/javascript/controllers/hotwirebits/rb_tags_controller.js +50 -0
- data/app/javascript/controllers/hotwirebits/rb_text_rotate_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_theme_controller.js +48 -0
- data/app/javascript/controllers/hotwirebits/rb_theme_selector_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_time_picker_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_toast_controller.js +43 -0
- data/app/javascript/controllers/hotwirebits/rb_toggle_button_controller.js +9 -0
- data/app/javascript/controllers/hotwirebits/rb_toggle_button_group_controller.js +12 -0
- data/app/javascript/controllers/hotwirebits/rb_toggle_controller.js +28 -0
- data/app/javascript/controllers/hotwirebits/rb_tooltip_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_tree_controller.js +58 -0
- data/app/javascript/controllers/hotwirebits/rb_two_factor_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_validator_controller.js +7 -0
- data/app/javascript/controllers/hotwirebits/rb_voice_recorder_controller.js +7 -0
- data/app/views/hotwirebits/_accordion.html.erb +26 -0
- data/app/views/hotwirebits/_activity_feed.html.erb +43 -0
- data/app/views/hotwirebits/_affix.html.erb +6 -0
- data/app/views/hotwirebits/_ai_chat.html.erb +35 -0
- data/app/views/hotwirebits/_alert.html.erb +53 -0
- data/app/views/hotwirebits/_alert_dialog.html.erb +33 -0
- data/app/views/hotwirebits/_anchor.html.erb +12 -0
- data/app/views/hotwirebits/_angle_slider.html.erb +12 -0
- data/app/views/hotwirebits/_animated_number.html.erb +11 -0
- data/app/views/hotwirebits/_app_shell.html.erb +25 -0
- data/app/views/hotwirebits/_aspect_ratio.html.erb +6 -0
- data/app/views/hotwirebits/_auth_block.html.erb +66 -0
- data/app/views/hotwirebits/_autocomplete.html.erb +8 -0
- data/app/views/hotwirebits/_avatar.html.erb +32 -0
- data/app/views/hotwirebits/_background_image.html.erb +12 -0
- data/app/views/hotwirebits/_badge.html.erb +32 -0
- data/app/views/hotwirebits/_banner.html.erb +52 -0
- data/app/views/hotwirebits/_bento_grid.html.erb +10 -0
- data/app/views/hotwirebits/_blog_section.html.erb +38 -0
- data/app/views/hotwirebits/_bottom_navigation.html.erb +24 -0
- data/app/views/hotwirebits/_box.html.erb +6 -0
- data/app/views/hotwirebits/_breadcrumb.html.erb +28 -0
- data/app/views/hotwirebits/_breadcrumb_advanced.html.erb +56 -0
- data/app/views/hotwirebits/_browser_mockup.html.erb +25 -0
- data/app/views/hotwirebits/_burger.html.erb +23 -0
- data/app/views/hotwirebits/_button.html.erb +59 -0
- data/app/views/hotwirebits/_calendar.html.erb +73 -0
- data/app/views/hotwirebits/_card.html.erb +23 -0
- data/app/views/hotwirebits/_card_heading.html.erb +16 -0
- data/app/views/hotwirebits/_carousel.html.erb +53 -0
- data/app/views/hotwirebits/_center.html.erb +6 -0
- data/app/views/hotwirebits/_chart.html.erb +71 -0
- data/app/views/hotwirebits/_chat_bubble.html.erb +30 -0
- data/app/views/hotwirebits/_checkbox.html.erb +25 -0
- data/app/views/hotwirebits/_checkout_form.html.erb +43 -0
- data/app/views/hotwirebits/_chip.html.erb +30 -0
- data/app/views/hotwirebits/_clipboard.html.erb +29 -0
- data/app/views/hotwirebits/_close_button.html.erb +6 -0
- data/app/views/hotwirebits/_code_block.html.erb +20 -0
- data/app/views/hotwirebits/_code_highlight.html.erb +9 -0
- data/app/views/hotwirebits/_code_mockup.html.erb +16 -0
- data/app/views/hotwirebits/_collapsible.html.erb +20 -0
- data/app/views/hotwirebits/_color_input.html.erb +22 -0
- data/app/views/hotwirebits/_color_picker.html.erb +9 -0
- data/app/views/hotwirebits/_color_swatch.html.erb +4 -0
- data/app/views/hotwirebits/_combobox.html.erb +18 -0
- data/app/views/hotwirebits/_command_bar.html.erb +36 -0
- data/app/views/hotwirebits/_compare.html.erb +24 -0
- data/app/views/hotwirebits/_confirm_dialog.html.erb +20 -0
- data/app/views/hotwirebits/_confirm_popup.html.erb +19 -0
- data/app/views/hotwirebits/_contact_section.html.erb +56 -0
- data/app/views/hotwirebits/_container.html.erb +21 -0
- data/app/views/hotwirebits/_context_menu.html.erb +30 -0
- data/app/views/hotwirebits/_cookie_consent.html.erb +26 -0
- data/app/views/hotwirebits/_cookie_settings.html.erb +51 -0
- data/app/views/hotwirebits/_countdown.html.erb +11 -0
- data/app/views/hotwirebits/_cta_section.html.erb +36 -0
- data/app/views/hotwirebits/_dashboard_card.html.erb +35 -0
- data/app/views/hotwirebits/_data_table.html.erb +56 -0
- data/app/views/hotwirebits/_data_view.html.erb +24 -0
- data/app/views/hotwirebits/_date_picker.html.erb +11 -0
- data/app/views/hotwirebits/_date_range_picker.html.erb +31 -0
- data/app/views/hotwirebits/_device_frame.html.erb +43 -0
- data/app/views/hotwirebits/_device_mockup.html.erb +54 -0
- data/app/views/hotwirebits/_dialog.html.erb +58 -0
- data/app/views/hotwirebits/_diff.html.erb +25 -0
- data/app/views/hotwirebits/_diff_view.html.erb +25 -0
- data/app/views/hotwirebits/_digital_signature.html.erb +24 -0
- data/app/views/hotwirebits/_divider.html.erb +22 -0
- data/app/views/hotwirebits/_dock_menu.html.erb +24 -0
- data/app/views/hotwirebits/_drag_drop_list.html.erb +19 -0
- data/app/views/hotwirebits/_drawer.html.erb +41 -0
- data/app/views/hotwirebits/_dropdown.html.erb +33 -0
- data/app/views/hotwirebits/_dropzone.html.erb +19 -0
- data/app/views/hotwirebits/_empty_cart.html.erb +22 -0
- data/app/views/hotwirebits/_empty_state.html.erb +29 -0
- data/app/views/hotwirebits/_error_page.html.erb +17 -0
- data/app/views/hotwirebits/_faq_section.html.erb +29 -0
- data/app/views/hotwirebits/_feature_section.html.erb +30 -0
- data/app/views/hotwirebits/_feedback.html.erb +54 -0
- data/app/views/hotwirebits/_fieldset.html.erb +14 -0
- data/app/views/hotwirebits/_file_browser.html.erb +38 -0
- data/app/views/hotwirebits/_file_input.html.erb +10 -0
- data/app/views/hotwirebits/_file_upload_progress.html.erb +29 -0
- data/app/views/hotwirebits/_flex.html.erb +6 -0
- data/app/views/hotwirebits/_float_label.html.erb +7 -0
- data/app/views/hotwirebits/_fluid.html.erb +6 -0
- data/app/views/hotwirebits/_flyout_menu.html.erb +38 -0
- data/app/views/hotwirebits/_footer.html.erb +46 -0
- data/app/views/hotwirebits/_form_group.html.erb +43 -0
- data/app/views/hotwirebits/_gallery.html.erb +28 -0
- data/app/views/hotwirebits/_grid.html.erb +14 -0
- data/app/views/hotwirebits/_group.html.erb +6 -0
- data/app/views/hotwirebits/_header.html.erb +28 -0
- data/app/views/hotwirebits/_header_section.html.erb +36 -0
- data/app/views/hotwirebits/_hero.html.erb +38 -0
- data/app/views/hotwirebits/_highlight.html.erb +4 -0
- data/app/views/hotwirebits/_hover_3d_card.html.erb +13 -0
- data/app/views/hotwirebits/_hover_card.html.erb +22 -0
- data/app/views/hotwirebits/_hover_gallery.html.erb +26 -0
- data/app/views/hotwirebits/_icon_field.html.erb +12 -0
- data/app/views/hotwirebits/_ifta_label.html.erb +7 -0
- data/app/views/hotwirebits/_image.html.erb +22 -0
- data/app/views/hotwirebits/_image_compare.html.erb +24 -0
- data/app/views/hotwirebits/_image_zoom.html.erb +11 -0
- data/app/views/hotwirebits/_incentive.html.erb +14 -0
- data/app/views/hotwirebits/_indicator.html.erb +9 -0
- data/app/views/hotwirebits/_indicator_badge.html.erb +11 -0
- data/app/views/hotwirebits/_inline_edit.html.erb +53 -0
- data/app/views/hotwirebits/_inplace.html.erb +9 -0
- data/app/views/hotwirebits/_input.html.erb +33 -0
- data/app/views/hotwirebits/_input_group.html.erb +12 -0
- data/app/views/hotwirebits/_input_number.html.erb +17 -0
- data/app/views/hotwirebits/_input_otp.html.erb +9 -0
- data/app/views/hotwirebits/_input_tags.html.erb +15 -0
- data/app/views/hotwirebits/_join.html.erb +6 -0
- data/app/views/hotwirebits/_json_input.html.erb +17 -0
- data/app/views/hotwirebits/_kanban_board.html.erb +42 -0
- data/app/views/hotwirebits/_kbd.html.erb +17 -0
- data/app/views/hotwirebits/_knob.html.erb +19 -0
- data/app/views/hotwirebits/_label.html.erb +8 -0
- data/app/views/hotwirebits/_lightbox.html.erb +33 -0
- data/app/views/hotwirebits/_like_button.html.erb +18 -0
- data/app/views/hotwirebits/_list.html.erb +6 -0
- data/app/views/hotwirebits/_listbox.html.erb +19 -0
- data/app/views/hotwirebits/_loading_overlay.html.erb +15 -0
- data/app/views/hotwirebits/_logo_cloud.html.erb +23 -0
- data/app/views/hotwirebits/_logo_item.html.erb +10 -0
- data/app/views/hotwirebits/_mark.html.erb +4 -0
- data/app/views/hotwirebits/_marquee.html.erb +32 -0
- data/app/views/hotwirebits/_mask.html.erb +6 -0
- data/app/views/hotwirebits/_mega_menu.html.erb +46 -0
- data/app/views/hotwirebits/_menu.html.erb +35 -0
- data/app/views/hotwirebits/_menubar.html.erb +33 -0
- data/app/views/hotwirebits/_meter_group.html.erb +19 -0
- data/app/views/hotwirebits/_month_picker.html.erb +28 -0
- data/app/views/hotwirebits/_month_picker_input.html.erb +23 -0
- data/app/views/hotwirebits/_multiselect.html.erb +21 -0
- data/app/views/hotwirebits/_native_select.html.erb +13 -0
- data/app/views/hotwirebits/_nav_link.html.erb +12 -0
- data/app/views/hotwirebits/_navbar.html.erb +30 -0
- data/app/views/hotwirebits/_navigation_menu.html.erb +46 -0
- data/app/views/hotwirebits/_newsletter_section.html.erb +21 -0
- data/app/views/hotwirebits/_notification.html.erb +31 -0
- data/app/views/hotwirebits/_notification_bell.html.erb +21 -0
- data/app/views/hotwirebits/_number_formatter.html.erb +4 -0
- data/app/views/hotwirebits/_number_input.html.erb +4 -0
- data/app/views/hotwirebits/_order_summary.html.erb +40 -0
- data/app/views/hotwirebits/_org_chart.html.erb +37 -0
- data/app/views/hotwirebits/_page_heading.html.erb +31 -0
- data/app/views/hotwirebits/_pagination.html.erb +46 -0
- data/app/views/hotwirebits/_paginator.html.erb +39 -0
- data/app/views/hotwirebits/_panel.html.erb +17 -0
- data/app/views/hotwirebits/_password_input.html.erb +11 -0
- data/app/views/hotwirebits/_password_strength.html.erb +21 -0
- data/app/views/hotwirebits/_password_toggle.html.erb +18 -0
- data/app/views/hotwirebits/_permission_badge.html.erb +18 -0
- data/app/views/hotwirebits/_phone_input.html.erb +4 -0
- data/app/views/hotwirebits/_phone_mockup.html.erb +15 -0
- data/app/views/hotwirebits/_popover.html.erb +23 -0
- data/app/views/hotwirebits/_portal.html.erb +6 -0
- data/app/views/hotwirebits/_pricing.html.erb +55 -0
- data/app/views/hotwirebits/_pricing_section.html.erb +49 -0
- data/app/views/hotwirebits/_product_list.html.erb +27 -0
- data/app/views/hotwirebits/_product_overview.html.erb +62 -0
- data/app/views/hotwirebits/_product_quickview.html.erb +48 -0
- data/app/views/hotwirebits/_progress.html.erb +13 -0
- data/app/views/hotwirebits/_progress_ring.html.erb +29 -0
- data/app/views/hotwirebits/_promo_section.html.erb +34 -0
- data/app/views/hotwirebits/_qr_code.html.erb +22 -0
- data/app/views/hotwirebits/_radio.html.erb +9 -0
- data/app/views/hotwirebits/_range_slider.html.erb +12 -0
- data/app/views/hotwirebits/_rating.html.erb +14 -0
- data/app/views/hotwirebits/_resizable.html.erb +22 -0
- data/app/views/hotwirebits/_review.html.erb +39 -0
- data/app/views/hotwirebits/_rich_text_editor.html.erb +58 -0
- data/app/views/hotwirebits/_scroll_area.html.erb +6 -0
- data/app/views/hotwirebits/_search.html.erb +59 -0
- data/app/views/hotwirebits/_search_input.html.erb +9 -0
- data/app/views/hotwirebits/_section_heading.html.erb +9 -0
- data/app/views/hotwirebits/_select.html.erb +30 -0
- data/app/views/hotwirebits/_semi_circle_progress.html.erb +12 -0
- data/app/views/hotwirebits/_separator.html.erb +18 -0
- data/app/views/hotwirebits/_sheet.html.erb +45 -0
- data/app/views/hotwirebits/_shopping_cart.html.erb +49 -0
- data/app/views/hotwirebits/_sidebar.html.erb +39 -0
- data/app/views/hotwirebits/_simple_grid.html.erb +6 -0
- data/app/views/hotwirebits/_skeleton.html.erb +20 -0
- data/app/views/hotwirebits/_skeleton_card.html.erb +18 -0
- data/app/views/hotwirebits/_slider.html.erb +17 -0
- data/app/views/hotwirebits/_social_share.html.erb +23 -0
- data/app/views/hotwirebits/_space.html.erb +4 -0
- data/app/views/hotwirebits/_speed_dial.html.erb +27 -0
- data/app/views/hotwirebits/_speed_dial_fab.html.erb +33 -0
- data/app/views/hotwirebits/_spinner.html.erb +22 -0
- data/app/views/hotwirebits/_split_button.html.erb +23 -0
- data/app/views/hotwirebits/_splitter.html.erb +12 -0
- data/app/views/hotwirebits/_spoiler.html.erb +20 -0
- data/app/views/hotwirebits/_stack.html.erb +20 -0
- data/app/views/hotwirebits/_stacked_list.html.erb +23 -0
- data/app/views/hotwirebits/_stat.html.erb +24 -0
- data/app/views/hotwirebits/_stats.html.erb +6 -0
- data/app/views/hotwirebits/_status.html.erb +9 -0
- data/app/views/hotwirebits/_status_bar.html.erb +16 -0
- data/app/views/hotwirebits/_status_dot.html.erb +9 -0
- data/app/views/hotwirebits/_stepper_form.html.erb +58 -0
- data/app/views/hotwirebits/_steps.html.erb +48 -0
- data/app/views/hotwirebits/_swap.html.erb +20 -0
- data/app/views/hotwirebits/_switch.html.erb +19 -0
- data/app/views/hotwirebits/_table.html.erb +8 -0
- data/app/views/hotwirebits/_table_of_contents.html.erb +15 -0
- data/app/views/hotwirebits/_tabs.html.erb +44 -0
- data/app/views/hotwirebits/_tag.html.erb +20 -0
- data/app/views/hotwirebits/_tag_input.html.erb +17 -0
- data/app/views/hotwirebits/_team_section.html.erb +42 -0
- data/app/views/hotwirebits/_terminal.html.erb +24 -0
- data/app/views/hotwirebits/_testimonial.html.erb +32 -0
- data/app/views/hotwirebits/_testimonials_section.html.erb +37 -0
- data/app/views/hotwirebits/_text_gradient.html.erb +6 -0
- data/app/views/hotwirebits/_text_rotate.html.erb +10 -0
- data/app/views/hotwirebits/_textarea.html.erb +17 -0
- data/app/views/hotwirebits/_theme_controller.html.erb +16 -0
- data/app/views/hotwirebits/_theme_icon.html.erb +6 -0
- data/app/views/hotwirebits/_theme_selector.html.erb +30 -0
- data/app/views/hotwirebits/_time_picker.html.erb +32 -0
- data/app/views/hotwirebits/_timeline.html.erb +27 -0
- data/app/views/hotwirebits/_toast.html.erb +52 -0
- data/app/views/hotwirebits/_toggle.html.erb +12 -0
- data/app/views/hotwirebits/_toggle_button.html.erb +7 -0
- data/app/views/hotwirebits/_toggle_button_group.html.erb +11 -0
- data/app/views/hotwirebits/_toolbar.html.erb +21 -0
- data/app/views/hotwirebits/_tooltip.html.erb +26 -0
- data/app/views/hotwirebits/_tree_view.html.erb +18 -0
- data/app/views/hotwirebits/_two_factor.html.erb +29 -0
- data/app/views/hotwirebits/_typing_indicator.html.erb +8 -0
- data/app/views/hotwirebits/_typography.html.erb +7 -0
- data/app/views/hotwirebits/_validator.html.erb +23 -0
- data/app/views/hotwirebits/_version_diff.html.erb +20 -0
- data/app/views/hotwirebits/_video_player.html.erb +14 -0
- data/app/views/hotwirebits/_voice_recorder.html.erb +32 -0
- data/app/views/hotwirebits/_window_mockup.html.erb +23 -0
- data/config/routes.rb +4 -0
- data/lib/generators/hotwirebits/component_generator.rb +48 -0
- data/lib/generators/hotwirebits/install_generator.rb +47 -0
- data/lib/generators/hotwirebits/templates/component.html.erb.tt +4 -0
- data/lib/generators/hotwirebits/templates/component.rb.tt +9 -0
- data/lib/generators/hotwirebits/templates/controller.js.tt +6 -0
- data/lib/generators/hotwirebits/templates/theme.css +2 -0
- data/lib/hotwirebits/engine.rb +25 -0
- data/lib/hotwirebits/version.rb +5 -0
- data/lib/hotwirebits.rb +19 -0
- metadata +965 -0
metadata
ADDED
|
@@ -0,0 +1,965 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hotwirebits
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- HotwireBits Contributors
|
|
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: '7.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: '7.0'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '9.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: stimulus-rails
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.0'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.0'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: turbo-rails
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '1.0'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '1.0'
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: view_component
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '3.0'
|
|
67
|
+
type: :runtime
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - "~>"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '3.0'
|
|
74
|
+
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: tailwindcss-rails
|
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - "~>"
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '3.0'
|
|
81
|
+
type: :runtime
|
|
82
|
+
prerelease: false
|
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - "~>"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3.0'
|
|
88
|
+
description: HotwireBits provides 240+ beautifully designed, accessible UI components
|
|
89
|
+
for Ruby on Rails. Each component ships in ERB partial and ViewComponent formats
|
|
90
|
+
with Tailwind CSS v4 styling, Stimulus interactivity, and Turbo compatibility including
|
|
91
|
+
Turbo Native.
|
|
92
|
+
email:
|
|
93
|
+
- hello@hotwirebits.dev
|
|
94
|
+
executables: []
|
|
95
|
+
extensions: []
|
|
96
|
+
extra_rdoc_files: []
|
|
97
|
+
files:
|
|
98
|
+
- CHANGELOG.md
|
|
99
|
+
- LICENSE
|
|
100
|
+
- README.md
|
|
101
|
+
- app/assets/stylesheets/hotwirebits/theme.css
|
|
102
|
+
- app/assets/stylesheets/hotwirebits/themes/corporate.css
|
|
103
|
+
- app/assets/stylesheets/hotwirebits/themes/midnight.css
|
|
104
|
+
- app/components/hotwirebits/accordion_component.html.erb
|
|
105
|
+
- app/components/hotwirebits/accordion_component.rb
|
|
106
|
+
- app/components/hotwirebits/activity_feed_component.html.erb
|
|
107
|
+
- app/components/hotwirebits/activity_feed_component.rb
|
|
108
|
+
- app/components/hotwirebits/affix_component.html.erb
|
|
109
|
+
- app/components/hotwirebits/affix_component.rb
|
|
110
|
+
- app/components/hotwirebits/ai_chat_component.html.erb
|
|
111
|
+
- app/components/hotwirebits/ai_chat_component.rb
|
|
112
|
+
- app/components/hotwirebits/alert_component.html.erb
|
|
113
|
+
- app/components/hotwirebits/alert_component.rb
|
|
114
|
+
- app/components/hotwirebits/alert_dialog_component.html.erb
|
|
115
|
+
- app/components/hotwirebits/alert_dialog_component.rb
|
|
116
|
+
- app/components/hotwirebits/anchor_component.html.erb
|
|
117
|
+
- app/components/hotwirebits/anchor_component.rb
|
|
118
|
+
- app/components/hotwirebits/angle_slider_component.html.erb
|
|
119
|
+
- app/components/hotwirebits/angle_slider_component.rb
|
|
120
|
+
- app/components/hotwirebits/animated_number_component.html.erb
|
|
121
|
+
- app/components/hotwirebits/animated_number_component.rb
|
|
122
|
+
- app/components/hotwirebits/app_shell_component.html.erb
|
|
123
|
+
- app/components/hotwirebits/app_shell_component.rb
|
|
124
|
+
- app/components/hotwirebits/aspect_ratio_component.html.erb
|
|
125
|
+
- app/components/hotwirebits/aspect_ratio_component.rb
|
|
126
|
+
- app/components/hotwirebits/auth_block_component.html.erb
|
|
127
|
+
- app/components/hotwirebits/auth_block_component.rb
|
|
128
|
+
- app/components/hotwirebits/autocomplete_component.html.erb
|
|
129
|
+
- app/components/hotwirebits/autocomplete_component.rb
|
|
130
|
+
- app/components/hotwirebits/avatar_component.html.erb
|
|
131
|
+
- app/components/hotwirebits/avatar_component.rb
|
|
132
|
+
- app/components/hotwirebits/background_image_component.html.erb
|
|
133
|
+
- app/components/hotwirebits/background_image_component.rb
|
|
134
|
+
- app/components/hotwirebits/badge_component.html.erb
|
|
135
|
+
- app/components/hotwirebits/badge_component.rb
|
|
136
|
+
- app/components/hotwirebits/banner_component.html.erb
|
|
137
|
+
- app/components/hotwirebits/banner_component.rb
|
|
138
|
+
- app/components/hotwirebits/base.rb
|
|
139
|
+
- app/components/hotwirebits/bento_grid_component.html.erb
|
|
140
|
+
- app/components/hotwirebits/bento_grid_component.rb
|
|
141
|
+
- app/components/hotwirebits/blog_section_component.html.erb
|
|
142
|
+
- app/components/hotwirebits/blog_section_component.rb
|
|
143
|
+
- app/components/hotwirebits/bottom_navigation_component.html.erb
|
|
144
|
+
- app/components/hotwirebits/bottom_navigation_component.rb
|
|
145
|
+
- app/components/hotwirebits/box_component.html.erb
|
|
146
|
+
- app/components/hotwirebits/box_component.rb
|
|
147
|
+
- app/components/hotwirebits/breadcrumb_advanced_component.html.erb
|
|
148
|
+
- app/components/hotwirebits/breadcrumb_advanced_component.rb
|
|
149
|
+
- app/components/hotwirebits/breadcrumb_component.html.erb
|
|
150
|
+
- app/components/hotwirebits/breadcrumb_component.rb
|
|
151
|
+
- app/components/hotwirebits/browser_mockup_component.html.erb
|
|
152
|
+
- app/components/hotwirebits/browser_mockup_component.rb
|
|
153
|
+
- app/components/hotwirebits/burger_component.html.erb
|
|
154
|
+
- app/components/hotwirebits/burger_component.rb
|
|
155
|
+
- app/components/hotwirebits/button_component.html.erb
|
|
156
|
+
- app/components/hotwirebits/button_component.rb
|
|
157
|
+
- app/components/hotwirebits/calendar_component.html.erb
|
|
158
|
+
- app/components/hotwirebits/calendar_component.rb
|
|
159
|
+
- app/components/hotwirebits/card_component.html.erb
|
|
160
|
+
- app/components/hotwirebits/card_component.rb
|
|
161
|
+
- app/components/hotwirebits/card_heading_component.html.erb
|
|
162
|
+
- app/components/hotwirebits/card_heading_component.rb
|
|
163
|
+
- app/components/hotwirebits/carousel_component.html.erb
|
|
164
|
+
- app/components/hotwirebits/carousel_component.rb
|
|
165
|
+
- app/components/hotwirebits/center_component.html.erb
|
|
166
|
+
- app/components/hotwirebits/center_component.rb
|
|
167
|
+
- app/components/hotwirebits/chart_component.html.erb
|
|
168
|
+
- app/components/hotwirebits/chart_component.rb
|
|
169
|
+
- app/components/hotwirebits/chat_bubble_component.html.erb
|
|
170
|
+
- app/components/hotwirebits/chat_bubble_component.rb
|
|
171
|
+
- app/components/hotwirebits/checkbox_component.html.erb
|
|
172
|
+
- app/components/hotwirebits/checkbox_component.rb
|
|
173
|
+
- app/components/hotwirebits/checkout_form_component.html.erb
|
|
174
|
+
- app/components/hotwirebits/checkout_form_component.rb
|
|
175
|
+
- app/components/hotwirebits/chip_component.html.erb
|
|
176
|
+
- app/components/hotwirebits/chip_component.rb
|
|
177
|
+
- app/components/hotwirebits/clipboard_component.html.erb
|
|
178
|
+
- app/components/hotwirebits/clipboard_component.rb
|
|
179
|
+
- app/components/hotwirebits/close_button_component.html.erb
|
|
180
|
+
- app/components/hotwirebits/close_button_component.rb
|
|
181
|
+
- app/components/hotwirebits/code_block_component.html.erb
|
|
182
|
+
- app/components/hotwirebits/code_block_component.rb
|
|
183
|
+
- app/components/hotwirebits/code_highlight_component.html.erb
|
|
184
|
+
- app/components/hotwirebits/code_highlight_component.rb
|
|
185
|
+
- app/components/hotwirebits/code_mockup_component.html.erb
|
|
186
|
+
- app/components/hotwirebits/code_mockup_component.rb
|
|
187
|
+
- app/components/hotwirebits/collapsible_component.html.erb
|
|
188
|
+
- app/components/hotwirebits/collapsible_component.rb
|
|
189
|
+
- app/components/hotwirebits/color_input_component.html.erb
|
|
190
|
+
- app/components/hotwirebits/color_input_component.rb
|
|
191
|
+
- app/components/hotwirebits/color_picker_component.html.erb
|
|
192
|
+
- app/components/hotwirebits/color_picker_component.rb
|
|
193
|
+
- app/components/hotwirebits/color_swatch_component.html.erb
|
|
194
|
+
- app/components/hotwirebits/color_swatch_component.rb
|
|
195
|
+
- app/components/hotwirebits/combobox_component.html.erb
|
|
196
|
+
- app/components/hotwirebits/combobox_component.rb
|
|
197
|
+
- app/components/hotwirebits/command_bar_component.html.erb
|
|
198
|
+
- app/components/hotwirebits/command_bar_component.rb
|
|
199
|
+
- app/components/hotwirebits/compare_component.html.erb
|
|
200
|
+
- app/components/hotwirebits/compare_component.rb
|
|
201
|
+
- app/components/hotwirebits/confirm_dialog_component.html.erb
|
|
202
|
+
- app/components/hotwirebits/confirm_dialog_component.rb
|
|
203
|
+
- app/components/hotwirebits/confirm_popup_component.html.erb
|
|
204
|
+
- app/components/hotwirebits/confirm_popup_component.rb
|
|
205
|
+
- app/components/hotwirebits/contact_section_component.html.erb
|
|
206
|
+
- app/components/hotwirebits/contact_section_component.rb
|
|
207
|
+
- app/components/hotwirebits/container_component.html.erb
|
|
208
|
+
- app/components/hotwirebits/container_component.rb
|
|
209
|
+
- app/components/hotwirebits/context_menu_component.html.erb
|
|
210
|
+
- app/components/hotwirebits/context_menu_component.rb
|
|
211
|
+
- app/components/hotwirebits/cookie_consent_component.html.erb
|
|
212
|
+
- app/components/hotwirebits/cookie_consent_component.rb
|
|
213
|
+
- app/components/hotwirebits/cookie_settings_component.html.erb
|
|
214
|
+
- app/components/hotwirebits/cookie_settings_component.rb
|
|
215
|
+
- app/components/hotwirebits/countdown_component.html.erb
|
|
216
|
+
- app/components/hotwirebits/countdown_component.rb
|
|
217
|
+
- app/components/hotwirebits/cta_section_component.html.erb
|
|
218
|
+
- app/components/hotwirebits/cta_section_component.rb
|
|
219
|
+
- app/components/hotwirebits/dashboard_card_component.html.erb
|
|
220
|
+
- app/components/hotwirebits/dashboard_card_component.rb
|
|
221
|
+
- app/components/hotwirebits/data_table_component.html.erb
|
|
222
|
+
- app/components/hotwirebits/data_table_component.rb
|
|
223
|
+
- app/components/hotwirebits/data_view_component.html.erb
|
|
224
|
+
- app/components/hotwirebits/data_view_component.rb
|
|
225
|
+
- app/components/hotwirebits/date_picker_component.html.erb
|
|
226
|
+
- app/components/hotwirebits/date_picker_component.rb
|
|
227
|
+
- app/components/hotwirebits/date_range_picker_component.html.erb
|
|
228
|
+
- app/components/hotwirebits/date_range_picker_component.rb
|
|
229
|
+
- app/components/hotwirebits/device_frame_component.html.erb
|
|
230
|
+
- app/components/hotwirebits/device_frame_component.rb
|
|
231
|
+
- app/components/hotwirebits/device_mockup_component.html.erb
|
|
232
|
+
- app/components/hotwirebits/device_mockup_component.rb
|
|
233
|
+
- app/components/hotwirebits/dialog_component.html.erb
|
|
234
|
+
- app/components/hotwirebits/dialog_component.rb
|
|
235
|
+
- app/components/hotwirebits/diff_component.html.erb
|
|
236
|
+
- app/components/hotwirebits/diff_component.rb
|
|
237
|
+
- app/components/hotwirebits/diff_view_component.html.erb
|
|
238
|
+
- app/components/hotwirebits/diff_view_component.rb
|
|
239
|
+
- app/components/hotwirebits/digital_signature_component.html.erb
|
|
240
|
+
- app/components/hotwirebits/digital_signature_component.rb
|
|
241
|
+
- app/components/hotwirebits/divider_component.html.erb
|
|
242
|
+
- app/components/hotwirebits/divider_component.rb
|
|
243
|
+
- app/components/hotwirebits/dock_menu_component.html.erb
|
|
244
|
+
- app/components/hotwirebits/dock_menu_component.rb
|
|
245
|
+
- app/components/hotwirebits/drag_drop_list_component.html.erb
|
|
246
|
+
- app/components/hotwirebits/drag_drop_list_component.rb
|
|
247
|
+
- app/components/hotwirebits/drawer_component.html.erb
|
|
248
|
+
- app/components/hotwirebits/drawer_component.rb
|
|
249
|
+
- app/components/hotwirebits/dropdown_component.html.erb
|
|
250
|
+
- app/components/hotwirebits/dropdown_component.rb
|
|
251
|
+
- app/components/hotwirebits/dropzone_component.html.erb
|
|
252
|
+
- app/components/hotwirebits/dropzone_component.rb
|
|
253
|
+
- app/components/hotwirebits/empty_cart_component.html.erb
|
|
254
|
+
- app/components/hotwirebits/empty_cart_component.rb
|
|
255
|
+
- app/components/hotwirebits/empty_state_component.html.erb
|
|
256
|
+
- app/components/hotwirebits/empty_state_component.rb
|
|
257
|
+
- app/components/hotwirebits/error_page_component.html.erb
|
|
258
|
+
- app/components/hotwirebits/error_page_component.rb
|
|
259
|
+
- app/components/hotwirebits/faq_section_component.html.erb
|
|
260
|
+
- app/components/hotwirebits/faq_section_component.rb
|
|
261
|
+
- app/components/hotwirebits/feature_section_component.html.erb
|
|
262
|
+
- app/components/hotwirebits/feature_section_component.rb
|
|
263
|
+
- app/components/hotwirebits/feedback_component.html.erb
|
|
264
|
+
- app/components/hotwirebits/feedback_component.rb
|
|
265
|
+
- app/components/hotwirebits/fieldset_component.html.erb
|
|
266
|
+
- app/components/hotwirebits/fieldset_component.rb
|
|
267
|
+
- app/components/hotwirebits/file_browser_component.html.erb
|
|
268
|
+
- app/components/hotwirebits/file_browser_component.rb
|
|
269
|
+
- app/components/hotwirebits/file_input_component.html.erb
|
|
270
|
+
- app/components/hotwirebits/file_input_component.rb
|
|
271
|
+
- app/components/hotwirebits/file_upload_progress_component.html.erb
|
|
272
|
+
- app/components/hotwirebits/file_upload_progress_component.rb
|
|
273
|
+
- app/components/hotwirebits/flex_component.html.erb
|
|
274
|
+
- app/components/hotwirebits/flex_component.rb
|
|
275
|
+
- app/components/hotwirebits/float_label_component.html.erb
|
|
276
|
+
- app/components/hotwirebits/float_label_component.rb
|
|
277
|
+
- app/components/hotwirebits/fluid_component.html.erb
|
|
278
|
+
- app/components/hotwirebits/fluid_component.rb
|
|
279
|
+
- app/components/hotwirebits/flyout_menu_component.html.erb
|
|
280
|
+
- app/components/hotwirebits/flyout_menu_component.rb
|
|
281
|
+
- app/components/hotwirebits/footer_component.html.erb
|
|
282
|
+
- app/components/hotwirebits/footer_component.rb
|
|
283
|
+
- app/components/hotwirebits/form_fieldset_component.html.erb
|
|
284
|
+
- app/components/hotwirebits/form_fieldset_component.rb
|
|
285
|
+
- app/components/hotwirebits/form_group_component.html.erb
|
|
286
|
+
- app/components/hotwirebits/form_group_component.rb
|
|
287
|
+
- app/components/hotwirebits/gallery_component.html.erb
|
|
288
|
+
- app/components/hotwirebits/gallery_component.rb
|
|
289
|
+
- app/components/hotwirebits/grid_component.html.erb
|
|
290
|
+
- app/components/hotwirebits/grid_component.rb
|
|
291
|
+
- app/components/hotwirebits/group_component.html.erb
|
|
292
|
+
- app/components/hotwirebits/group_component.rb
|
|
293
|
+
- app/components/hotwirebits/header_component.html.erb
|
|
294
|
+
- app/components/hotwirebits/header_component.rb
|
|
295
|
+
- app/components/hotwirebits/header_section_component.html.erb
|
|
296
|
+
- app/components/hotwirebits/header_section_component.rb
|
|
297
|
+
- app/components/hotwirebits/hero_component.html.erb
|
|
298
|
+
- app/components/hotwirebits/hero_component.rb
|
|
299
|
+
- app/components/hotwirebits/highlight_component.html.erb
|
|
300
|
+
- app/components/hotwirebits/highlight_component.rb
|
|
301
|
+
- app/components/hotwirebits/hover3d_card_component.html.erb
|
|
302
|
+
- app/components/hotwirebits/hover3d_card_component.rb
|
|
303
|
+
- app/components/hotwirebits/hover_card_component.html.erb
|
|
304
|
+
- app/components/hotwirebits/hover_card_component.rb
|
|
305
|
+
- app/components/hotwirebits/hover_gallery_component.html.erb
|
|
306
|
+
- app/components/hotwirebits/hover_gallery_component.rb
|
|
307
|
+
- app/components/hotwirebits/icon_field_component.html.erb
|
|
308
|
+
- app/components/hotwirebits/icon_field_component.rb
|
|
309
|
+
- app/components/hotwirebits/ifta_label_component.html.erb
|
|
310
|
+
- app/components/hotwirebits/ifta_label_component.rb
|
|
311
|
+
- app/components/hotwirebits/image_compare_component.html.erb
|
|
312
|
+
- app/components/hotwirebits/image_compare_component.rb
|
|
313
|
+
- app/components/hotwirebits/image_component.html.erb
|
|
314
|
+
- app/components/hotwirebits/image_component.rb
|
|
315
|
+
- app/components/hotwirebits/image_zoom_component.html.erb
|
|
316
|
+
- app/components/hotwirebits/image_zoom_component.rb
|
|
317
|
+
- app/components/hotwirebits/incentive_component.html.erb
|
|
318
|
+
- app/components/hotwirebits/incentive_component.rb
|
|
319
|
+
- app/components/hotwirebits/indicator_badge_component.html.erb
|
|
320
|
+
- app/components/hotwirebits/indicator_badge_component.rb
|
|
321
|
+
- app/components/hotwirebits/indicator_component.html.erb
|
|
322
|
+
- app/components/hotwirebits/indicator_component.rb
|
|
323
|
+
- app/components/hotwirebits/inline_edit_component.html.erb
|
|
324
|
+
- app/components/hotwirebits/inline_edit_component.rb
|
|
325
|
+
- app/components/hotwirebits/inplace_component.html.erb
|
|
326
|
+
- app/components/hotwirebits/inplace_component.rb
|
|
327
|
+
- app/components/hotwirebits/input_component.html.erb
|
|
328
|
+
- app/components/hotwirebits/input_component.rb
|
|
329
|
+
- app/components/hotwirebits/input_group_component.html.erb
|
|
330
|
+
- app/components/hotwirebits/input_group_component.rb
|
|
331
|
+
- app/components/hotwirebits/input_number_component.html.erb
|
|
332
|
+
- app/components/hotwirebits/input_number_component.rb
|
|
333
|
+
- app/components/hotwirebits/input_otp_component.html.erb
|
|
334
|
+
- app/components/hotwirebits/input_otp_component.rb
|
|
335
|
+
- app/components/hotwirebits/input_tags_component.html.erb
|
|
336
|
+
- app/components/hotwirebits/input_tags_component.rb
|
|
337
|
+
- app/components/hotwirebits/join_component.html.erb
|
|
338
|
+
- app/components/hotwirebits/join_component.rb
|
|
339
|
+
- app/components/hotwirebits/json_input_component.html.erb
|
|
340
|
+
- app/components/hotwirebits/json_input_component.rb
|
|
341
|
+
- app/components/hotwirebits/kanban_board_component.html.erb
|
|
342
|
+
- app/components/hotwirebits/kanban_board_component.rb
|
|
343
|
+
- app/components/hotwirebits/kbd_component.html.erb
|
|
344
|
+
- app/components/hotwirebits/kbd_component.rb
|
|
345
|
+
- app/components/hotwirebits/knob_component.html.erb
|
|
346
|
+
- app/components/hotwirebits/knob_component.rb
|
|
347
|
+
- app/components/hotwirebits/label_component.html.erb
|
|
348
|
+
- app/components/hotwirebits/label_component.rb
|
|
349
|
+
- app/components/hotwirebits/lightbox_component.html.erb
|
|
350
|
+
- app/components/hotwirebits/lightbox_component.rb
|
|
351
|
+
- app/components/hotwirebits/like_button_component.html.erb
|
|
352
|
+
- app/components/hotwirebits/like_button_component.rb
|
|
353
|
+
- app/components/hotwirebits/list_component.html.erb
|
|
354
|
+
- app/components/hotwirebits/list_component.rb
|
|
355
|
+
- app/components/hotwirebits/listbox_component.html.erb
|
|
356
|
+
- app/components/hotwirebits/listbox_component.rb
|
|
357
|
+
- app/components/hotwirebits/loading_overlay_component.html.erb
|
|
358
|
+
- app/components/hotwirebits/loading_overlay_component.rb
|
|
359
|
+
- app/components/hotwirebits/logo_cloud_component.html.erb
|
|
360
|
+
- app/components/hotwirebits/logo_cloud_component.rb
|
|
361
|
+
- app/components/hotwirebits/logo_item_component.html.erb
|
|
362
|
+
- app/components/hotwirebits/logo_item_component.rb
|
|
363
|
+
- app/components/hotwirebits/mark_component.html.erb
|
|
364
|
+
- app/components/hotwirebits/mark_component.rb
|
|
365
|
+
- app/components/hotwirebits/marquee_component.html.erb
|
|
366
|
+
- app/components/hotwirebits/marquee_component.rb
|
|
367
|
+
- app/components/hotwirebits/mask_component.html.erb
|
|
368
|
+
- app/components/hotwirebits/mask_component.rb
|
|
369
|
+
- app/components/hotwirebits/mega_menu_component.html.erb
|
|
370
|
+
- app/components/hotwirebits/mega_menu_component.rb
|
|
371
|
+
- app/components/hotwirebits/menu_component.html.erb
|
|
372
|
+
- app/components/hotwirebits/menu_component.rb
|
|
373
|
+
- app/components/hotwirebits/menubar_component.html.erb
|
|
374
|
+
- app/components/hotwirebits/menubar_component.rb
|
|
375
|
+
- app/components/hotwirebits/meter_group_component.html.erb
|
|
376
|
+
- app/components/hotwirebits/meter_group_component.rb
|
|
377
|
+
- app/components/hotwirebits/month_picker_component.html.erb
|
|
378
|
+
- app/components/hotwirebits/month_picker_component.rb
|
|
379
|
+
- app/components/hotwirebits/month_picker_input_component.html.erb
|
|
380
|
+
- app/components/hotwirebits/month_picker_input_component.rb
|
|
381
|
+
- app/components/hotwirebits/multiselect_component.html.erb
|
|
382
|
+
- app/components/hotwirebits/multiselect_component.rb
|
|
383
|
+
- app/components/hotwirebits/native_select_component.html.erb
|
|
384
|
+
- app/components/hotwirebits/native_select_component.rb
|
|
385
|
+
- app/components/hotwirebits/nav_link_component.html.erb
|
|
386
|
+
- app/components/hotwirebits/nav_link_component.rb
|
|
387
|
+
- app/components/hotwirebits/navbar_component.html.erb
|
|
388
|
+
- app/components/hotwirebits/navbar_component.rb
|
|
389
|
+
- app/components/hotwirebits/navigation_menu_component.html.erb
|
|
390
|
+
- app/components/hotwirebits/navigation_menu_component.rb
|
|
391
|
+
- app/components/hotwirebits/newsletter_section_component.html.erb
|
|
392
|
+
- app/components/hotwirebits/newsletter_section_component.rb
|
|
393
|
+
- app/components/hotwirebits/notification_bell_component.html.erb
|
|
394
|
+
- app/components/hotwirebits/notification_bell_component.rb
|
|
395
|
+
- app/components/hotwirebits/notification_component.html.erb
|
|
396
|
+
- app/components/hotwirebits/notification_component.rb
|
|
397
|
+
- app/components/hotwirebits/number_formatter_component.html.erb
|
|
398
|
+
- app/components/hotwirebits/number_formatter_component.rb
|
|
399
|
+
- app/components/hotwirebits/number_input_component.html.erb
|
|
400
|
+
- app/components/hotwirebits/number_input_component.rb
|
|
401
|
+
- app/components/hotwirebits/order_summary_component.html.erb
|
|
402
|
+
- app/components/hotwirebits/order_summary_component.rb
|
|
403
|
+
- app/components/hotwirebits/org_chart_component.html.erb
|
|
404
|
+
- app/components/hotwirebits/org_chart_component.rb
|
|
405
|
+
- app/components/hotwirebits/page_heading_component.html.erb
|
|
406
|
+
- app/components/hotwirebits/page_heading_component.rb
|
|
407
|
+
- app/components/hotwirebits/pagination_component.html.erb
|
|
408
|
+
- app/components/hotwirebits/pagination_component.rb
|
|
409
|
+
- app/components/hotwirebits/paginator_component.html.erb
|
|
410
|
+
- app/components/hotwirebits/paginator_component.rb
|
|
411
|
+
- app/components/hotwirebits/panel_component.html.erb
|
|
412
|
+
- app/components/hotwirebits/panel_component.rb
|
|
413
|
+
- app/components/hotwirebits/password_input_component.html.erb
|
|
414
|
+
- app/components/hotwirebits/password_input_component.rb
|
|
415
|
+
- app/components/hotwirebits/password_strength_component.html.erb
|
|
416
|
+
- app/components/hotwirebits/password_strength_component.rb
|
|
417
|
+
- app/components/hotwirebits/password_toggle_component.html.erb
|
|
418
|
+
- app/components/hotwirebits/password_toggle_component.rb
|
|
419
|
+
- app/components/hotwirebits/permission_badge_component.html.erb
|
|
420
|
+
- app/components/hotwirebits/permission_badge_component.rb
|
|
421
|
+
- app/components/hotwirebits/phone_input_component.html.erb
|
|
422
|
+
- app/components/hotwirebits/phone_input_component.rb
|
|
423
|
+
- app/components/hotwirebits/phone_mockup_component.html.erb
|
|
424
|
+
- app/components/hotwirebits/phone_mockup_component.rb
|
|
425
|
+
- app/components/hotwirebits/popover_component.html.erb
|
|
426
|
+
- app/components/hotwirebits/popover_component.rb
|
|
427
|
+
- app/components/hotwirebits/portal_component.html.erb
|
|
428
|
+
- app/components/hotwirebits/portal_component.rb
|
|
429
|
+
- app/components/hotwirebits/pricing_section_component.html.erb
|
|
430
|
+
- app/components/hotwirebits/pricing_section_component.rb
|
|
431
|
+
- app/components/hotwirebits/product_list_component.html.erb
|
|
432
|
+
- app/components/hotwirebits/product_list_component.rb
|
|
433
|
+
- app/components/hotwirebits/product_overview_component.html.erb
|
|
434
|
+
- app/components/hotwirebits/product_overview_component.rb
|
|
435
|
+
- app/components/hotwirebits/product_quickview_component.html.erb
|
|
436
|
+
- app/components/hotwirebits/product_quickview_component.rb
|
|
437
|
+
- app/components/hotwirebits/progress_component.html.erb
|
|
438
|
+
- app/components/hotwirebits/progress_component.rb
|
|
439
|
+
- app/components/hotwirebits/progress_ring_component.html.erb
|
|
440
|
+
- app/components/hotwirebits/progress_ring_component.rb
|
|
441
|
+
- app/components/hotwirebits/promo_section_component.html.erb
|
|
442
|
+
- app/components/hotwirebits/promo_section_component.rb
|
|
443
|
+
- app/components/hotwirebits/qr_code_component.html.erb
|
|
444
|
+
- app/components/hotwirebits/qr_code_component.rb
|
|
445
|
+
- app/components/hotwirebits/radio_component.html.erb
|
|
446
|
+
- app/components/hotwirebits/radio_component.rb
|
|
447
|
+
- app/components/hotwirebits/range_slider_component.html.erb
|
|
448
|
+
- app/components/hotwirebits/range_slider_component.rb
|
|
449
|
+
- app/components/hotwirebits/rating_component.html.erb
|
|
450
|
+
- app/components/hotwirebits/rating_component.rb
|
|
451
|
+
- app/components/hotwirebits/resizable_component.html.erb
|
|
452
|
+
- app/components/hotwirebits/resizable_component.rb
|
|
453
|
+
- app/components/hotwirebits/review_component.html.erb
|
|
454
|
+
- app/components/hotwirebits/review_component.rb
|
|
455
|
+
- app/components/hotwirebits/rich_text_editor_component.html.erb
|
|
456
|
+
- app/components/hotwirebits/rich_text_editor_component.rb
|
|
457
|
+
- app/components/hotwirebits/scroll_area_component.html.erb
|
|
458
|
+
- app/components/hotwirebits/scroll_area_component.rb
|
|
459
|
+
- app/components/hotwirebits/search_component.html.erb
|
|
460
|
+
- app/components/hotwirebits/search_component.rb
|
|
461
|
+
- app/components/hotwirebits/search_input_component.html.erb
|
|
462
|
+
- app/components/hotwirebits/search_input_component.rb
|
|
463
|
+
- app/components/hotwirebits/section_heading_component.html.erb
|
|
464
|
+
- app/components/hotwirebits/section_heading_component.rb
|
|
465
|
+
- app/components/hotwirebits/select_component.html.erb
|
|
466
|
+
- app/components/hotwirebits/select_component.rb
|
|
467
|
+
- app/components/hotwirebits/semi_circle_progress_component.html.erb
|
|
468
|
+
- app/components/hotwirebits/semi_circle_progress_component.rb
|
|
469
|
+
- app/components/hotwirebits/separator_component.html.erb
|
|
470
|
+
- app/components/hotwirebits/separator_component.rb
|
|
471
|
+
- app/components/hotwirebits/sheet_component.html.erb
|
|
472
|
+
- app/components/hotwirebits/sheet_component.rb
|
|
473
|
+
- app/components/hotwirebits/shopping_cart_component.html.erb
|
|
474
|
+
- app/components/hotwirebits/shopping_cart_component.rb
|
|
475
|
+
- app/components/hotwirebits/sidebar_component.html.erb
|
|
476
|
+
- app/components/hotwirebits/sidebar_component.rb
|
|
477
|
+
- app/components/hotwirebits/simple_grid_component.html.erb
|
|
478
|
+
- app/components/hotwirebits/simple_grid_component.rb
|
|
479
|
+
- app/components/hotwirebits/skeleton_card_component.html.erb
|
|
480
|
+
- app/components/hotwirebits/skeleton_card_component.rb
|
|
481
|
+
- app/components/hotwirebits/skeleton_component.html.erb
|
|
482
|
+
- app/components/hotwirebits/skeleton_component.rb
|
|
483
|
+
- app/components/hotwirebits/slider_component.html.erb
|
|
484
|
+
- app/components/hotwirebits/slider_component.rb
|
|
485
|
+
- app/components/hotwirebits/social_share_component.html.erb
|
|
486
|
+
- app/components/hotwirebits/social_share_component.rb
|
|
487
|
+
- app/components/hotwirebits/space_component.html.erb
|
|
488
|
+
- app/components/hotwirebits/space_component.rb
|
|
489
|
+
- app/components/hotwirebits/speed_dial_component.html.erb
|
|
490
|
+
- app/components/hotwirebits/speed_dial_component.rb
|
|
491
|
+
- app/components/hotwirebits/speed_dial_fab_component.html.erb
|
|
492
|
+
- app/components/hotwirebits/speed_dial_fab_component.rb
|
|
493
|
+
- app/components/hotwirebits/spinner_component.html.erb
|
|
494
|
+
- app/components/hotwirebits/spinner_component.rb
|
|
495
|
+
- app/components/hotwirebits/split_button_component.html.erb
|
|
496
|
+
- app/components/hotwirebits/split_button_component.rb
|
|
497
|
+
- app/components/hotwirebits/splitter_component.html.erb
|
|
498
|
+
- app/components/hotwirebits/splitter_component.rb
|
|
499
|
+
- app/components/hotwirebits/spoiler_component.html.erb
|
|
500
|
+
- app/components/hotwirebits/spoiler_component.rb
|
|
501
|
+
- app/components/hotwirebits/stack_component.html.erb
|
|
502
|
+
- app/components/hotwirebits/stack_component.rb
|
|
503
|
+
- app/components/hotwirebits/stacked_list_component.html.erb
|
|
504
|
+
- app/components/hotwirebits/stacked_list_component.rb
|
|
505
|
+
- app/components/hotwirebits/stat_component.html.erb
|
|
506
|
+
- app/components/hotwirebits/stat_component.rb
|
|
507
|
+
- app/components/hotwirebits/stats_component.html.erb
|
|
508
|
+
- app/components/hotwirebits/stats_component.rb
|
|
509
|
+
- app/components/hotwirebits/status_bar_component.html.erb
|
|
510
|
+
- app/components/hotwirebits/status_bar_component.rb
|
|
511
|
+
- app/components/hotwirebits/status_component.html.erb
|
|
512
|
+
- app/components/hotwirebits/status_component.rb
|
|
513
|
+
- app/components/hotwirebits/status_dot_component.html.erb
|
|
514
|
+
- app/components/hotwirebits/status_dot_component.rb
|
|
515
|
+
- app/components/hotwirebits/stepper_form_component.html.erb
|
|
516
|
+
- app/components/hotwirebits/stepper_form_component.rb
|
|
517
|
+
- app/components/hotwirebits/steps_component.html.erb
|
|
518
|
+
- app/components/hotwirebits/steps_component.rb
|
|
519
|
+
- app/components/hotwirebits/swap_component.html.erb
|
|
520
|
+
- app/components/hotwirebits/swap_component.rb
|
|
521
|
+
- app/components/hotwirebits/switch_component.html.erb
|
|
522
|
+
- app/components/hotwirebits/switch_component.rb
|
|
523
|
+
- app/components/hotwirebits/table_component.html.erb
|
|
524
|
+
- app/components/hotwirebits/table_component.rb
|
|
525
|
+
- app/components/hotwirebits/table_of_contents_component.html.erb
|
|
526
|
+
- app/components/hotwirebits/table_of_contents_component.rb
|
|
527
|
+
- app/components/hotwirebits/tabs_component.html.erb
|
|
528
|
+
- app/components/hotwirebits/tabs_component.rb
|
|
529
|
+
- app/components/hotwirebits/tag_component.html.erb
|
|
530
|
+
- app/components/hotwirebits/tag_component.rb
|
|
531
|
+
- app/components/hotwirebits/tag_input_component.html.erb
|
|
532
|
+
- app/components/hotwirebits/tag_input_component.rb
|
|
533
|
+
- app/components/hotwirebits/team_section_component.html.erb
|
|
534
|
+
- app/components/hotwirebits/team_section_component.rb
|
|
535
|
+
- app/components/hotwirebits/terminal_component.html.erb
|
|
536
|
+
- app/components/hotwirebits/terminal_component.rb
|
|
537
|
+
- app/components/hotwirebits/testimonial_component.html.erb
|
|
538
|
+
- app/components/hotwirebits/testimonial_component.rb
|
|
539
|
+
- app/components/hotwirebits/testimonials_section_component.html.erb
|
|
540
|
+
- app/components/hotwirebits/testimonials_section_component.rb
|
|
541
|
+
- app/components/hotwirebits/text_gradient_component.html.erb
|
|
542
|
+
- app/components/hotwirebits/text_gradient_component.rb
|
|
543
|
+
- app/components/hotwirebits/text_rotate_component.html.erb
|
|
544
|
+
- app/components/hotwirebits/text_rotate_component.rb
|
|
545
|
+
- app/components/hotwirebits/textarea_component.html.erb
|
|
546
|
+
- app/components/hotwirebits/textarea_component.rb
|
|
547
|
+
- app/components/hotwirebits/theme_controller_component.html.erb
|
|
548
|
+
- app/components/hotwirebits/theme_controller_component.rb
|
|
549
|
+
- app/components/hotwirebits/theme_icon_component.html.erb
|
|
550
|
+
- app/components/hotwirebits/theme_icon_component.rb
|
|
551
|
+
- app/components/hotwirebits/theme_selector_component.html.erb
|
|
552
|
+
- app/components/hotwirebits/theme_selector_component.rb
|
|
553
|
+
- app/components/hotwirebits/time_picker_component.html.erb
|
|
554
|
+
- app/components/hotwirebits/time_picker_component.rb
|
|
555
|
+
- app/components/hotwirebits/timeline_component.html.erb
|
|
556
|
+
- app/components/hotwirebits/timeline_component.rb
|
|
557
|
+
- app/components/hotwirebits/toast_component.html.erb
|
|
558
|
+
- app/components/hotwirebits/toast_component.rb
|
|
559
|
+
- app/components/hotwirebits/toggle_button_component.html.erb
|
|
560
|
+
- app/components/hotwirebits/toggle_button_component.rb
|
|
561
|
+
- app/components/hotwirebits/toggle_button_group_component.html.erb
|
|
562
|
+
- app/components/hotwirebits/toggle_button_group_component.rb
|
|
563
|
+
- app/components/hotwirebits/toggle_component.html.erb
|
|
564
|
+
- app/components/hotwirebits/toggle_component.rb
|
|
565
|
+
- app/components/hotwirebits/toolbar_component.html.erb
|
|
566
|
+
- app/components/hotwirebits/toolbar_component.rb
|
|
567
|
+
- app/components/hotwirebits/tooltip_component.html.erb
|
|
568
|
+
- app/components/hotwirebits/tooltip_component.rb
|
|
569
|
+
- app/components/hotwirebits/tree_view_component.html.erb
|
|
570
|
+
- app/components/hotwirebits/tree_view_component.rb
|
|
571
|
+
- app/components/hotwirebits/two_factor_component.html.erb
|
|
572
|
+
- app/components/hotwirebits/two_factor_component.rb
|
|
573
|
+
- app/components/hotwirebits/typing_indicator_component.html.erb
|
|
574
|
+
- app/components/hotwirebits/typing_indicator_component.rb
|
|
575
|
+
- app/components/hotwirebits/typography_component.html.erb
|
|
576
|
+
- app/components/hotwirebits/typography_component.rb
|
|
577
|
+
- app/components/hotwirebits/validator_component.html.erb
|
|
578
|
+
- app/components/hotwirebits/validator_component.rb
|
|
579
|
+
- app/components/hotwirebits/version_diff_component.html.erb
|
|
580
|
+
- app/components/hotwirebits/version_diff_component.rb
|
|
581
|
+
- app/components/hotwirebits/video_player_component.html.erb
|
|
582
|
+
- app/components/hotwirebits/video_player_component.rb
|
|
583
|
+
- app/components/hotwirebits/voice_recorder_component.html.erb
|
|
584
|
+
- app/components/hotwirebits/voice_recorder_component.rb
|
|
585
|
+
- app/components/hotwirebits/window_mockup_component.html.erb
|
|
586
|
+
- app/components/hotwirebits/window_mockup_component.rb
|
|
587
|
+
- app/helpers/hotwirebits_helper.rb
|
|
588
|
+
- app/javascript/controllers/hotwirebits/index.js
|
|
589
|
+
- app/javascript/controllers/hotwirebits/rb_accordion_controller.js
|
|
590
|
+
- app/javascript/controllers/hotwirebits/rb_activity_feed_controller.js
|
|
591
|
+
- app/javascript/controllers/hotwirebits/rb_ai_chat_controller.js
|
|
592
|
+
- app/javascript/controllers/hotwirebits/rb_alert_controller.js
|
|
593
|
+
- app/javascript/controllers/hotwirebits/rb_angle_slider_controller.js
|
|
594
|
+
- app/javascript/controllers/hotwirebits/rb_animated_number_controller.js
|
|
595
|
+
- app/javascript/controllers/hotwirebits/rb_autocomplete_controller.js
|
|
596
|
+
- app/javascript/controllers/hotwirebits/rb_badge_controller.js
|
|
597
|
+
- app/javascript/controllers/hotwirebits/rb_banner_controller.js
|
|
598
|
+
- app/javascript/controllers/hotwirebits/rb_burger_controller.js
|
|
599
|
+
- app/javascript/controllers/hotwirebits/rb_calendar_controller.js
|
|
600
|
+
- app/javascript/controllers/hotwirebits/rb_carousel_controller.js
|
|
601
|
+
- app/javascript/controllers/hotwirebits/rb_clipboard_controller.js
|
|
602
|
+
- app/javascript/controllers/hotwirebits/rb_code_highlight_controller.js
|
|
603
|
+
- app/javascript/controllers/hotwirebits/rb_collapsible_controller.js
|
|
604
|
+
- app/javascript/controllers/hotwirebits/rb_color_input_controller.js
|
|
605
|
+
- app/javascript/controllers/hotwirebits/rb_color_picker_controller.js
|
|
606
|
+
- app/javascript/controllers/hotwirebits/rb_combobox_controller.js
|
|
607
|
+
- app/javascript/controllers/hotwirebits/rb_command_bar_controller.js
|
|
608
|
+
- app/javascript/controllers/hotwirebits/rb_compare_controller.js
|
|
609
|
+
- app/javascript/controllers/hotwirebits/rb_confirm_dialog_controller.js
|
|
610
|
+
- app/javascript/controllers/hotwirebits/rb_confirm_popup_controller.js
|
|
611
|
+
- app/javascript/controllers/hotwirebits/rb_context_menu_controller.js
|
|
612
|
+
- app/javascript/controllers/hotwirebits/rb_cookie_consent_controller.js
|
|
613
|
+
- app/javascript/controllers/hotwirebits/rb_cookie_settings_controller.js
|
|
614
|
+
- app/javascript/controllers/hotwirebits/rb_countdown_controller.js
|
|
615
|
+
- app/javascript/controllers/hotwirebits/rb_data_view_controller.js
|
|
616
|
+
- app/javascript/controllers/hotwirebits/rb_date_range_controller.js
|
|
617
|
+
- app/javascript/controllers/hotwirebits/rb_datepicker_controller.js
|
|
618
|
+
- app/javascript/controllers/hotwirebits/rb_dialog_controller.js
|
|
619
|
+
- app/javascript/controllers/hotwirebits/rb_drag_drop_controller.js
|
|
620
|
+
- app/javascript/controllers/hotwirebits/rb_drawer_controller.js
|
|
621
|
+
- app/javascript/controllers/hotwirebits/rb_dropdown_controller.js
|
|
622
|
+
- app/javascript/controllers/hotwirebits/rb_feedback_controller.js
|
|
623
|
+
- app/javascript/controllers/hotwirebits/rb_file_browser_controller.js
|
|
624
|
+
- app/javascript/controllers/hotwirebits/rb_highlight_controller.js
|
|
625
|
+
- app/javascript/controllers/hotwirebits/rb_hover_3d_controller.js
|
|
626
|
+
- app/javascript/controllers/hotwirebits/rb_hover_card_controller.js
|
|
627
|
+
- app/javascript/controllers/hotwirebits/rb_hover_gallery_controller.js
|
|
628
|
+
- app/javascript/controllers/hotwirebits/rb_image_compare_controller.js
|
|
629
|
+
- app/javascript/controllers/hotwirebits/rb_image_controller.js
|
|
630
|
+
- app/javascript/controllers/hotwirebits/rb_image_zoom_controller.js
|
|
631
|
+
- app/javascript/controllers/hotwirebits/rb_inline_edit_controller.js
|
|
632
|
+
- app/javascript/controllers/hotwirebits/rb_inplace_controller.js
|
|
633
|
+
- app/javascript/controllers/hotwirebits/rb_input_number_controller.js
|
|
634
|
+
- app/javascript/controllers/hotwirebits/rb_json_input_controller.js
|
|
635
|
+
- app/javascript/controllers/hotwirebits/rb_kanban_controller.js
|
|
636
|
+
- app/javascript/controllers/hotwirebits/rb_knob_controller.js
|
|
637
|
+
- app/javascript/controllers/hotwirebits/rb_lightbox_controller.js
|
|
638
|
+
- app/javascript/controllers/hotwirebits/rb_like_controller.js
|
|
639
|
+
- app/javascript/controllers/hotwirebits/rb_listbox_controller.js
|
|
640
|
+
- app/javascript/controllers/hotwirebits/rb_marquee_controller.js
|
|
641
|
+
- app/javascript/controllers/hotwirebits/rb_menubar_controller.js
|
|
642
|
+
- app/javascript/controllers/hotwirebits/rb_month_picker_controller.js
|
|
643
|
+
- app/javascript/controllers/hotwirebits/rb_month_picker_input_controller.js
|
|
644
|
+
- app/javascript/controllers/hotwirebits/rb_multiselect_controller.js
|
|
645
|
+
- app/javascript/controllers/hotwirebits/rb_nav_menu_controller.js
|
|
646
|
+
- app/javascript/controllers/hotwirebits/rb_newsletter_controller.js
|
|
647
|
+
- app/javascript/controllers/hotwirebits/rb_notification_controller.js
|
|
648
|
+
- app/javascript/controllers/hotwirebits/rb_otp_controller.js
|
|
649
|
+
- app/javascript/controllers/hotwirebits/rb_paginator_controller.js
|
|
650
|
+
- app/javascript/controllers/hotwirebits/rb_panel_controller.js
|
|
651
|
+
- app/javascript/controllers/hotwirebits/rb_password_controller.js
|
|
652
|
+
- app/javascript/controllers/hotwirebits/rb_password_strength_controller.js
|
|
653
|
+
- app/javascript/controllers/hotwirebits/rb_password_toggle_controller.js
|
|
654
|
+
- app/javascript/controllers/hotwirebits/rb_popover_controller.js
|
|
655
|
+
- app/javascript/controllers/hotwirebits/rb_portal_controller.js
|
|
656
|
+
- app/javascript/controllers/hotwirebits/rb_quickview_controller.js
|
|
657
|
+
- app/javascript/controllers/hotwirebits/rb_range_slider_controller.js
|
|
658
|
+
- app/javascript/controllers/hotwirebits/rb_rating_controller.js
|
|
659
|
+
- app/javascript/controllers/hotwirebits/rb_resizable_controller.js
|
|
660
|
+
- app/javascript/controllers/hotwirebits/rb_rich_text_editor_controller.js
|
|
661
|
+
- app/javascript/controllers/hotwirebits/rb_search_controller.js
|
|
662
|
+
- app/javascript/controllers/hotwirebits/rb_sheet_controller.js
|
|
663
|
+
- app/javascript/controllers/hotwirebits/rb_sidebar_controller.js
|
|
664
|
+
- app/javascript/controllers/hotwirebits/rb_signature_controller.js
|
|
665
|
+
- app/javascript/controllers/hotwirebits/rb_speed_dial_controller.js
|
|
666
|
+
- app/javascript/controllers/hotwirebits/rb_splitter_controller.js
|
|
667
|
+
- app/javascript/controllers/hotwirebits/rb_spoiler_controller.js
|
|
668
|
+
- app/javascript/controllers/hotwirebits/rb_stepper_form_controller.js
|
|
669
|
+
- app/javascript/controllers/hotwirebits/rb_steps_controller.js
|
|
670
|
+
- app/javascript/controllers/hotwirebits/rb_swap_controller.js
|
|
671
|
+
- app/javascript/controllers/hotwirebits/rb_switch_controller.js
|
|
672
|
+
- app/javascript/controllers/hotwirebits/rb_tabs_controller.js
|
|
673
|
+
- app/javascript/controllers/hotwirebits/rb_tag_input_controller.js
|
|
674
|
+
- app/javascript/controllers/hotwirebits/rb_tags_controller.js
|
|
675
|
+
- app/javascript/controllers/hotwirebits/rb_text_rotate_controller.js
|
|
676
|
+
- app/javascript/controllers/hotwirebits/rb_theme_controller.js
|
|
677
|
+
- app/javascript/controllers/hotwirebits/rb_theme_selector_controller.js
|
|
678
|
+
- app/javascript/controllers/hotwirebits/rb_time_picker_controller.js
|
|
679
|
+
- app/javascript/controllers/hotwirebits/rb_toast_controller.js
|
|
680
|
+
- app/javascript/controllers/hotwirebits/rb_toggle_button_controller.js
|
|
681
|
+
- app/javascript/controllers/hotwirebits/rb_toggle_button_group_controller.js
|
|
682
|
+
- app/javascript/controllers/hotwirebits/rb_toggle_controller.js
|
|
683
|
+
- app/javascript/controllers/hotwirebits/rb_tooltip_controller.js
|
|
684
|
+
- app/javascript/controllers/hotwirebits/rb_tree_controller.js
|
|
685
|
+
- app/javascript/controllers/hotwirebits/rb_two_factor_controller.js
|
|
686
|
+
- app/javascript/controllers/hotwirebits/rb_validator_controller.js
|
|
687
|
+
- app/javascript/controllers/hotwirebits/rb_voice_recorder_controller.js
|
|
688
|
+
- app/views/hotwirebits/_accordion.html.erb
|
|
689
|
+
- app/views/hotwirebits/_activity_feed.html.erb
|
|
690
|
+
- app/views/hotwirebits/_affix.html.erb
|
|
691
|
+
- app/views/hotwirebits/_ai_chat.html.erb
|
|
692
|
+
- app/views/hotwirebits/_alert.html.erb
|
|
693
|
+
- app/views/hotwirebits/_alert_dialog.html.erb
|
|
694
|
+
- app/views/hotwirebits/_anchor.html.erb
|
|
695
|
+
- app/views/hotwirebits/_angle_slider.html.erb
|
|
696
|
+
- app/views/hotwirebits/_animated_number.html.erb
|
|
697
|
+
- app/views/hotwirebits/_app_shell.html.erb
|
|
698
|
+
- app/views/hotwirebits/_aspect_ratio.html.erb
|
|
699
|
+
- app/views/hotwirebits/_auth_block.html.erb
|
|
700
|
+
- app/views/hotwirebits/_autocomplete.html.erb
|
|
701
|
+
- app/views/hotwirebits/_avatar.html.erb
|
|
702
|
+
- app/views/hotwirebits/_background_image.html.erb
|
|
703
|
+
- app/views/hotwirebits/_badge.html.erb
|
|
704
|
+
- app/views/hotwirebits/_banner.html.erb
|
|
705
|
+
- app/views/hotwirebits/_bento_grid.html.erb
|
|
706
|
+
- app/views/hotwirebits/_blog_section.html.erb
|
|
707
|
+
- app/views/hotwirebits/_bottom_navigation.html.erb
|
|
708
|
+
- app/views/hotwirebits/_box.html.erb
|
|
709
|
+
- app/views/hotwirebits/_breadcrumb.html.erb
|
|
710
|
+
- app/views/hotwirebits/_breadcrumb_advanced.html.erb
|
|
711
|
+
- app/views/hotwirebits/_browser_mockup.html.erb
|
|
712
|
+
- app/views/hotwirebits/_burger.html.erb
|
|
713
|
+
- app/views/hotwirebits/_button.html.erb
|
|
714
|
+
- app/views/hotwirebits/_calendar.html.erb
|
|
715
|
+
- app/views/hotwirebits/_card.html.erb
|
|
716
|
+
- app/views/hotwirebits/_card_heading.html.erb
|
|
717
|
+
- app/views/hotwirebits/_carousel.html.erb
|
|
718
|
+
- app/views/hotwirebits/_center.html.erb
|
|
719
|
+
- app/views/hotwirebits/_chart.html.erb
|
|
720
|
+
- app/views/hotwirebits/_chat_bubble.html.erb
|
|
721
|
+
- app/views/hotwirebits/_checkbox.html.erb
|
|
722
|
+
- app/views/hotwirebits/_checkout_form.html.erb
|
|
723
|
+
- app/views/hotwirebits/_chip.html.erb
|
|
724
|
+
- app/views/hotwirebits/_clipboard.html.erb
|
|
725
|
+
- app/views/hotwirebits/_close_button.html.erb
|
|
726
|
+
- app/views/hotwirebits/_code_block.html.erb
|
|
727
|
+
- app/views/hotwirebits/_code_highlight.html.erb
|
|
728
|
+
- app/views/hotwirebits/_code_mockup.html.erb
|
|
729
|
+
- app/views/hotwirebits/_collapsible.html.erb
|
|
730
|
+
- app/views/hotwirebits/_color_input.html.erb
|
|
731
|
+
- app/views/hotwirebits/_color_picker.html.erb
|
|
732
|
+
- app/views/hotwirebits/_color_swatch.html.erb
|
|
733
|
+
- app/views/hotwirebits/_combobox.html.erb
|
|
734
|
+
- app/views/hotwirebits/_command_bar.html.erb
|
|
735
|
+
- app/views/hotwirebits/_compare.html.erb
|
|
736
|
+
- app/views/hotwirebits/_confirm_dialog.html.erb
|
|
737
|
+
- app/views/hotwirebits/_confirm_popup.html.erb
|
|
738
|
+
- app/views/hotwirebits/_contact_section.html.erb
|
|
739
|
+
- app/views/hotwirebits/_container.html.erb
|
|
740
|
+
- app/views/hotwirebits/_context_menu.html.erb
|
|
741
|
+
- app/views/hotwirebits/_cookie_consent.html.erb
|
|
742
|
+
- app/views/hotwirebits/_cookie_settings.html.erb
|
|
743
|
+
- app/views/hotwirebits/_countdown.html.erb
|
|
744
|
+
- app/views/hotwirebits/_cta_section.html.erb
|
|
745
|
+
- app/views/hotwirebits/_dashboard_card.html.erb
|
|
746
|
+
- app/views/hotwirebits/_data_table.html.erb
|
|
747
|
+
- app/views/hotwirebits/_data_view.html.erb
|
|
748
|
+
- app/views/hotwirebits/_date_picker.html.erb
|
|
749
|
+
- app/views/hotwirebits/_date_range_picker.html.erb
|
|
750
|
+
- app/views/hotwirebits/_device_frame.html.erb
|
|
751
|
+
- app/views/hotwirebits/_device_mockup.html.erb
|
|
752
|
+
- app/views/hotwirebits/_dialog.html.erb
|
|
753
|
+
- app/views/hotwirebits/_diff.html.erb
|
|
754
|
+
- app/views/hotwirebits/_diff_view.html.erb
|
|
755
|
+
- app/views/hotwirebits/_digital_signature.html.erb
|
|
756
|
+
- app/views/hotwirebits/_divider.html.erb
|
|
757
|
+
- app/views/hotwirebits/_dock_menu.html.erb
|
|
758
|
+
- app/views/hotwirebits/_drag_drop_list.html.erb
|
|
759
|
+
- app/views/hotwirebits/_drawer.html.erb
|
|
760
|
+
- app/views/hotwirebits/_dropdown.html.erb
|
|
761
|
+
- app/views/hotwirebits/_dropzone.html.erb
|
|
762
|
+
- app/views/hotwirebits/_empty_cart.html.erb
|
|
763
|
+
- app/views/hotwirebits/_empty_state.html.erb
|
|
764
|
+
- app/views/hotwirebits/_error_page.html.erb
|
|
765
|
+
- app/views/hotwirebits/_faq_section.html.erb
|
|
766
|
+
- app/views/hotwirebits/_feature_section.html.erb
|
|
767
|
+
- app/views/hotwirebits/_feedback.html.erb
|
|
768
|
+
- app/views/hotwirebits/_fieldset.html.erb
|
|
769
|
+
- app/views/hotwirebits/_file_browser.html.erb
|
|
770
|
+
- app/views/hotwirebits/_file_input.html.erb
|
|
771
|
+
- app/views/hotwirebits/_file_upload_progress.html.erb
|
|
772
|
+
- app/views/hotwirebits/_flex.html.erb
|
|
773
|
+
- app/views/hotwirebits/_float_label.html.erb
|
|
774
|
+
- app/views/hotwirebits/_fluid.html.erb
|
|
775
|
+
- app/views/hotwirebits/_flyout_menu.html.erb
|
|
776
|
+
- app/views/hotwirebits/_footer.html.erb
|
|
777
|
+
- app/views/hotwirebits/_form_group.html.erb
|
|
778
|
+
- app/views/hotwirebits/_gallery.html.erb
|
|
779
|
+
- app/views/hotwirebits/_grid.html.erb
|
|
780
|
+
- app/views/hotwirebits/_group.html.erb
|
|
781
|
+
- app/views/hotwirebits/_header.html.erb
|
|
782
|
+
- app/views/hotwirebits/_header_section.html.erb
|
|
783
|
+
- app/views/hotwirebits/_hero.html.erb
|
|
784
|
+
- app/views/hotwirebits/_highlight.html.erb
|
|
785
|
+
- app/views/hotwirebits/_hover_3d_card.html.erb
|
|
786
|
+
- app/views/hotwirebits/_hover_card.html.erb
|
|
787
|
+
- app/views/hotwirebits/_hover_gallery.html.erb
|
|
788
|
+
- app/views/hotwirebits/_icon_field.html.erb
|
|
789
|
+
- app/views/hotwirebits/_ifta_label.html.erb
|
|
790
|
+
- app/views/hotwirebits/_image.html.erb
|
|
791
|
+
- app/views/hotwirebits/_image_compare.html.erb
|
|
792
|
+
- app/views/hotwirebits/_image_zoom.html.erb
|
|
793
|
+
- app/views/hotwirebits/_incentive.html.erb
|
|
794
|
+
- app/views/hotwirebits/_indicator.html.erb
|
|
795
|
+
- app/views/hotwirebits/_indicator_badge.html.erb
|
|
796
|
+
- app/views/hotwirebits/_inline_edit.html.erb
|
|
797
|
+
- app/views/hotwirebits/_inplace.html.erb
|
|
798
|
+
- app/views/hotwirebits/_input.html.erb
|
|
799
|
+
- app/views/hotwirebits/_input_group.html.erb
|
|
800
|
+
- app/views/hotwirebits/_input_number.html.erb
|
|
801
|
+
- app/views/hotwirebits/_input_otp.html.erb
|
|
802
|
+
- app/views/hotwirebits/_input_tags.html.erb
|
|
803
|
+
- app/views/hotwirebits/_join.html.erb
|
|
804
|
+
- app/views/hotwirebits/_json_input.html.erb
|
|
805
|
+
- app/views/hotwirebits/_kanban_board.html.erb
|
|
806
|
+
- app/views/hotwirebits/_kbd.html.erb
|
|
807
|
+
- app/views/hotwirebits/_knob.html.erb
|
|
808
|
+
- app/views/hotwirebits/_label.html.erb
|
|
809
|
+
- app/views/hotwirebits/_lightbox.html.erb
|
|
810
|
+
- app/views/hotwirebits/_like_button.html.erb
|
|
811
|
+
- app/views/hotwirebits/_list.html.erb
|
|
812
|
+
- app/views/hotwirebits/_listbox.html.erb
|
|
813
|
+
- app/views/hotwirebits/_loading_overlay.html.erb
|
|
814
|
+
- app/views/hotwirebits/_logo_cloud.html.erb
|
|
815
|
+
- app/views/hotwirebits/_logo_item.html.erb
|
|
816
|
+
- app/views/hotwirebits/_mark.html.erb
|
|
817
|
+
- app/views/hotwirebits/_marquee.html.erb
|
|
818
|
+
- app/views/hotwirebits/_mask.html.erb
|
|
819
|
+
- app/views/hotwirebits/_mega_menu.html.erb
|
|
820
|
+
- app/views/hotwirebits/_menu.html.erb
|
|
821
|
+
- app/views/hotwirebits/_menubar.html.erb
|
|
822
|
+
- app/views/hotwirebits/_meter_group.html.erb
|
|
823
|
+
- app/views/hotwirebits/_month_picker.html.erb
|
|
824
|
+
- app/views/hotwirebits/_month_picker_input.html.erb
|
|
825
|
+
- app/views/hotwirebits/_multiselect.html.erb
|
|
826
|
+
- app/views/hotwirebits/_native_select.html.erb
|
|
827
|
+
- app/views/hotwirebits/_nav_link.html.erb
|
|
828
|
+
- app/views/hotwirebits/_navbar.html.erb
|
|
829
|
+
- app/views/hotwirebits/_navigation_menu.html.erb
|
|
830
|
+
- app/views/hotwirebits/_newsletter_section.html.erb
|
|
831
|
+
- app/views/hotwirebits/_notification.html.erb
|
|
832
|
+
- app/views/hotwirebits/_notification_bell.html.erb
|
|
833
|
+
- app/views/hotwirebits/_number_formatter.html.erb
|
|
834
|
+
- app/views/hotwirebits/_number_input.html.erb
|
|
835
|
+
- app/views/hotwirebits/_order_summary.html.erb
|
|
836
|
+
- app/views/hotwirebits/_org_chart.html.erb
|
|
837
|
+
- app/views/hotwirebits/_page_heading.html.erb
|
|
838
|
+
- app/views/hotwirebits/_pagination.html.erb
|
|
839
|
+
- app/views/hotwirebits/_paginator.html.erb
|
|
840
|
+
- app/views/hotwirebits/_panel.html.erb
|
|
841
|
+
- app/views/hotwirebits/_password_input.html.erb
|
|
842
|
+
- app/views/hotwirebits/_password_strength.html.erb
|
|
843
|
+
- app/views/hotwirebits/_password_toggle.html.erb
|
|
844
|
+
- app/views/hotwirebits/_permission_badge.html.erb
|
|
845
|
+
- app/views/hotwirebits/_phone_input.html.erb
|
|
846
|
+
- app/views/hotwirebits/_phone_mockup.html.erb
|
|
847
|
+
- app/views/hotwirebits/_popover.html.erb
|
|
848
|
+
- app/views/hotwirebits/_portal.html.erb
|
|
849
|
+
- app/views/hotwirebits/_pricing.html.erb
|
|
850
|
+
- app/views/hotwirebits/_pricing_section.html.erb
|
|
851
|
+
- app/views/hotwirebits/_product_list.html.erb
|
|
852
|
+
- app/views/hotwirebits/_product_overview.html.erb
|
|
853
|
+
- app/views/hotwirebits/_product_quickview.html.erb
|
|
854
|
+
- app/views/hotwirebits/_progress.html.erb
|
|
855
|
+
- app/views/hotwirebits/_progress_ring.html.erb
|
|
856
|
+
- app/views/hotwirebits/_promo_section.html.erb
|
|
857
|
+
- app/views/hotwirebits/_qr_code.html.erb
|
|
858
|
+
- app/views/hotwirebits/_radio.html.erb
|
|
859
|
+
- app/views/hotwirebits/_range_slider.html.erb
|
|
860
|
+
- app/views/hotwirebits/_rating.html.erb
|
|
861
|
+
- app/views/hotwirebits/_resizable.html.erb
|
|
862
|
+
- app/views/hotwirebits/_review.html.erb
|
|
863
|
+
- app/views/hotwirebits/_rich_text_editor.html.erb
|
|
864
|
+
- app/views/hotwirebits/_scroll_area.html.erb
|
|
865
|
+
- app/views/hotwirebits/_search.html.erb
|
|
866
|
+
- app/views/hotwirebits/_search_input.html.erb
|
|
867
|
+
- app/views/hotwirebits/_section_heading.html.erb
|
|
868
|
+
- app/views/hotwirebits/_select.html.erb
|
|
869
|
+
- app/views/hotwirebits/_semi_circle_progress.html.erb
|
|
870
|
+
- app/views/hotwirebits/_separator.html.erb
|
|
871
|
+
- app/views/hotwirebits/_sheet.html.erb
|
|
872
|
+
- app/views/hotwirebits/_shopping_cart.html.erb
|
|
873
|
+
- app/views/hotwirebits/_sidebar.html.erb
|
|
874
|
+
- app/views/hotwirebits/_simple_grid.html.erb
|
|
875
|
+
- app/views/hotwirebits/_skeleton.html.erb
|
|
876
|
+
- app/views/hotwirebits/_skeleton_card.html.erb
|
|
877
|
+
- app/views/hotwirebits/_slider.html.erb
|
|
878
|
+
- app/views/hotwirebits/_social_share.html.erb
|
|
879
|
+
- app/views/hotwirebits/_space.html.erb
|
|
880
|
+
- app/views/hotwirebits/_speed_dial.html.erb
|
|
881
|
+
- app/views/hotwirebits/_speed_dial_fab.html.erb
|
|
882
|
+
- app/views/hotwirebits/_spinner.html.erb
|
|
883
|
+
- app/views/hotwirebits/_split_button.html.erb
|
|
884
|
+
- app/views/hotwirebits/_splitter.html.erb
|
|
885
|
+
- app/views/hotwirebits/_spoiler.html.erb
|
|
886
|
+
- app/views/hotwirebits/_stack.html.erb
|
|
887
|
+
- app/views/hotwirebits/_stacked_list.html.erb
|
|
888
|
+
- app/views/hotwirebits/_stat.html.erb
|
|
889
|
+
- app/views/hotwirebits/_stats.html.erb
|
|
890
|
+
- app/views/hotwirebits/_status.html.erb
|
|
891
|
+
- app/views/hotwirebits/_status_bar.html.erb
|
|
892
|
+
- app/views/hotwirebits/_status_dot.html.erb
|
|
893
|
+
- app/views/hotwirebits/_stepper_form.html.erb
|
|
894
|
+
- app/views/hotwirebits/_steps.html.erb
|
|
895
|
+
- app/views/hotwirebits/_swap.html.erb
|
|
896
|
+
- app/views/hotwirebits/_switch.html.erb
|
|
897
|
+
- app/views/hotwirebits/_table.html.erb
|
|
898
|
+
- app/views/hotwirebits/_table_of_contents.html.erb
|
|
899
|
+
- app/views/hotwirebits/_tabs.html.erb
|
|
900
|
+
- app/views/hotwirebits/_tag.html.erb
|
|
901
|
+
- app/views/hotwirebits/_tag_input.html.erb
|
|
902
|
+
- app/views/hotwirebits/_team_section.html.erb
|
|
903
|
+
- app/views/hotwirebits/_terminal.html.erb
|
|
904
|
+
- app/views/hotwirebits/_testimonial.html.erb
|
|
905
|
+
- app/views/hotwirebits/_testimonials_section.html.erb
|
|
906
|
+
- app/views/hotwirebits/_text_gradient.html.erb
|
|
907
|
+
- app/views/hotwirebits/_text_rotate.html.erb
|
|
908
|
+
- app/views/hotwirebits/_textarea.html.erb
|
|
909
|
+
- app/views/hotwirebits/_theme_controller.html.erb
|
|
910
|
+
- app/views/hotwirebits/_theme_icon.html.erb
|
|
911
|
+
- app/views/hotwirebits/_theme_selector.html.erb
|
|
912
|
+
- app/views/hotwirebits/_time_picker.html.erb
|
|
913
|
+
- app/views/hotwirebits/_timeline.html.erb
|
|
914
|
+
- app/views/hotwirebits/_toast.html.erb
|
|
915
|
+
- app/views/hotwirebits/_toggle.html.erb
|
|
916
|
+
- app/views/hotwirebits/_toggle_button.html.erb
|
|
917
|
+
- app/views/hotwirebits/_toggle_button_group.html.erb
|
|
918
|
+
- app/views/hotwirebits/_toolbar.html.erb
|
|
919
|
+
- app/views/hotwirebits/_tooltip.html.erb
|
|
920
|
+
- app/views/hotwirebits/_tree_view.html.erb
|
|
921
|
+
- app/views/hotwirebits/_two_factor.html.erb
|
|
922
|
+
- app/views/hotwirebits/_typing_indicator.html.erb
|
|
923
|
+
- app/views/hotwirebits/_typography.html.erb
|
|
924
|
+
- app/views/hotwirebits/_validator.html.erb
|
|
925
|
+
- app/views/hotwirebits/_version_diff.html.erb
|
|
926
|
+
- app/views/hotwirebits/_video_player.html.erb
|
|
927
|
+
- app/views/hotwirebits/_voice_recorder.html.erb
|
|
928
|
+
- app/views/hotwirebits/_window_mockup.html.erb
|
|
929
|
+
- config/routes.rb
|
|
930
|
+
- lib/generators/hotwirebits/component_generator.rb
|
|
931
|
+
- lib/generators/hotwirebits/install_generator.rb
|
|
932
|
+
- lib/generators/hotwirebits/templates/component.html.erb.tt
|
|
933
|
+
- lib/generators/hotwirebits/templates/component.rb.tt
|
|
934
|
+
- lib/generators/hotwirebits/templates/controller.js.tt
|
|
935
|
+
- lib/generators/hotwirebits/templates/theme.css
|
|
936
|
+
- lib/hotwirebits.rb
|
|
937
|
+
- lib/hotwirebits/engine.rb
|
|
938
|
+
- lib/hotwirebits/version.rb
|
|
939
|
+
homepage: https://hotwirebits.dev
|
|
940
|
+
licenses:
|
|
941
|
+
- MIT
|
|
942
|
+
metadata:
|
|
943
|
+
homepage_uri: https://hotwirebits.dev
|
|
944
|
+
source_code_uri: https://github.com/DonsWayo/hotwirebits
|
|
945
|
+
changelog_uri: https://github.com/DonsWayo/hotwirebits/blob/main/CHANGELOG.md
|
|
946
|
+
bug_tracker_uri: https://github.com/DonsWayo/hotwirebits/issues
|
|
947
|
+
rubygems_mfa_required: 'true'
|
|
948
|
+
rdoc_options: []
|
|
949
|
+
require_paths:
|
|
950
|
+
- lib
|
|
951
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
952
|
+
requirements:
|
|
953
|
+
- - ">="
|
|
954
|
+
- !ruby/object:Gem::Version
|
|
955
|
+
version: 3.4.0
|
|
956
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
957
|
+
requirements:
|
|
958
|
+
- - ">="
|
|
959
|
+
- !ruby/object:Gem::Version
|
|
960
|
+
version: '0'
|
|
961
|
+
requirements: []
|
|
962
|
+
rubygems_version: 3.6.9
|
|
963
|
+
specification_version: 4
|
|
964
|
+
summary: The most comprehensive free UI component library for Ruby on Rails
|
|
965
|
+
test_files: []
|