railsui 3.1.4 → 3.2.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 +4 -4
- data/.claude/settings.local.json +10 -0
- data/Gemfile.lock +29 -27
- data/README.md +1 -1
- data/app/assets/images/tailwind-corgie-thumbnail.jpg +0 -0
- data/app/assets/stylesheets/railsui/railsui.css +18 -0
- data/app/helpers/railsui/application_helper.rb +22 -17
- data/app/helpers/railsui/host_route_fallback_helper.rb +18 -0
- data/app/javascript/controllers/alert_controller.js +0 -0
- data/app/models/railsui/default.rb +28 -109
- data/app/views/railsui/admin/fields/_color.html.erb +6 -1
- data/app/views/railsui/admin/fields/_theme.html.erb +16 -8
- data/app/views/railsui/default/_launchpad.html.erb +1 -1
- data/app/views/railsui/shared/_flash_messages.html.erb +2 -2
- data/app/views/railsui/shared/_full_access_cta.html.erb +27 -0
- data/app/views/railsui/shared/_global_nav.html.erb +2 -2
- data/app/views/railsui/shared/_preview.html.erb +1 -1
- data/app/views/railsui/shared/_rui_email_preview.html.erb +60 -3
- data/app/views/railsui/systems/forms/form_builder.html.erb +171 -0
- data/app/views/railsui/themes/corgie/_components.html.erb +7 -0
- data/app/views/railsui/themes/corgie/_content.html.erb +9 -0
- data/app/views/railsui/themes/corgie/_fonts.html.erb +0 -0
- data/app/views/railsui/themes/corgie/_forms.html.erb +19 -0
- data/app/views/railsui/themes/corgie/_icons.html.erb +125 -0
- data/app/views/railsui/themes/corgie/_nav.html.erb +166 -0
- data/app/views/railsui/themes/corgie/_scaffolds.html.erb +42 -0
- data/app/views/railsui/themes/corgie/authentication/_overview.html.erb +5 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_change_password.html.erb +74 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_confirmation.html.erb +63 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_edit.html.erb +103 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_overview.html.erb +225 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_reset_password.html.erb +60 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_signin.html.erb +93 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_signup.html.erb +98 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_unlocks.html.erb +60 -0
- data/app/views/railsui/themes/corgie/authentication/static/_change_password.html.erb +67 -0
- data/app/views/railsui/themes/corgie/authentication/static/_confirmation.html.erb +58 -0
- data/app/views/railsui/themes/corgie/authentication/static/_overview.html.erb +204 -0
- data/app/views/railsui/themes/corgie/authentication/static/_reset_password.html.erb +59 -0
- data/app/views/railsui/themes/corgie/authentication/static/_signin.html.erb +102 -0
- data/app/views/railsui/themes/corgie/authentication/static/_signup.html.erb +108 -0
- data/app/views/railsui/themes/corgie/authentication/static/_unlocks.html.erb +60 -0
- data/app/views/railsui/themes/corgie/components/_accordion.html.erb +17 -0
- data/app/views/railsui/themes/corgie/components/_alert.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_avatar.html.erb +13 -0
- data/app/views/railsui/themes/corgie/components/_badge.html.erb +20 -0
- data/app/views/railsui/themes/corgie/components/_breadcrumb.html.erb +14 -0
- data/app/views/railsui/themes/corgie/components/_button.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/_card.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_combobox.html.erb +11 -0
- data/app/views/railsui/themes/corgie/components/_dropdown.html.erb +22 -0
- data/app/views/railsui/themes/corgie/components/_flash.html.erb +17 -0
- data/app/views/railsui/themes/corgie/components/_modal.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/_navigation.html.erb +7 -0
- data/app/views/railsui/themes/corgie/components/_pagination.html.erb +15 -0
- data/app/views/railsui/themes/corgie/components/_tab.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_toast.html.erb +75 -0
- data/app/views/railsui/themes/corgie/components/_tooltip.html.erb +77 -0
- data/app/views/railsui/themes/corgie/components/accordion/_contained.html.erb +90 -0
- data/app/views/railsui/themes/corgie/components/accordion/_flush.html.erb +92 -0
- data/app/views/railsui/themes/corgie/components/alert/_dismissable.html.erb +45 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_accent_border.html.erb +32 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_actions.html.erb +57 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_description.html.erb +41 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_list.html.erb +46 -0
- data/app/views/railsui/themes/corgie/components/avatar/_circle.html.erb +53 -0
- data/app/views/railsui/themes/corgie/components/avatar/_rounded.html.erb +53 -0
- data/app/views/railsui/themes/corgie/components/badge/_basic.html.erb +70 -0
- data/app/views/railsui/themes/corgie/components/badge/_outline.html.erb +67 -0
- data/app/views/railsui/themes/corgie/components/badge/_pill.html.erb +67 -0
- data/app/views/railsui/themes/corgie/components/badge/_tag.html.erb +277 -0
- data/app/views/railsui/themes/corgie/components/breadcrumb/_article.html.erb +88 -0
- data/app/views/railsui/themes/corgie/components/breadcrumb/_base.html.erb +77 -0
- data/app/views/railsui/themes/corgie/components/button/_base.html.erb +38 -0
- data/app/views/railsui/themes/corgie/components/button/_expanded.html.erb +24 -0
- data/app/views/railsui/themes/corgie/components/button/_sizes.html.erb +31 -0
- data/app/views/railsui/themes/corgie/components/card/_article.html.erb +119 -0
- data/app/views/railsui/themes/corgie/components/card/_base.html.erb +34 -0
- data/app/views/railsui/themes/corgie/components/card/_feature.html.erb +54 -0
- data/app/views/railsui/themes/corgie/components/card/_team_member.html.erb +60 -0
- data/app/views/railsui/themes/corgie/components/card/_value.html.erb +54 -0
- data/app/views/railsui/themes/corgie/components/combobox/_base.html.erb +250 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_base.html.erb +61 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_dropdown.html.erb +24 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_dropdown_w_icon.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_right_aligned.html.erb +82 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_with_dividers.html.erb +93 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_with_icons.html.erb +85 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_1.html.erb +44 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_2.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_3.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_4.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_dependencies.html.erb +3 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_tutorial.html.erb +25 -0
- data/app/views/railsui/themes/corgie/components/flash/_alert.html.erb +29 -0
- data/app/views/railsui/themes/corgie/components/flash/_dynamic.html.erb +46 -0
- data/app/views/railsui/themes/corgie/components/flash/_notice.html.erb +29 -0
- data/app/views/railsui/themes/corgie/components/modal/_base.html.erb +110 -0
- data/app/views/railsui/themes/corgie/components/modal/_centered_dual_action.html.erb +124 -0
- data/app/views/railsui/themes/corgie/components/modal/_dismiss_icon.html.erb +124 -0
- data/app/views/railsui/themes/corgie/components/modal/_settings.html.erb +201 -0
- data/app/views/railsui/themes/corgie/components/modal/_single_action.html.erb +119 -0
- data/app/views/railsui/themes/corgie/components/modal/_with_form.html.erb +148 -0
- data/app/views/railsui/themes/corgie/components/navigation/_base.html.erb +215 -0
- data/app/views/railsui/themes/corgie/components/navigation/_chat.html.erb +194 -0
- data/app/views/railsui/themes/corgie/components/navigation/_nav_preview.html.erb +9 -0
- data/app/views/railsui/themes/corgie/components/pagination/_contained.html.erb +131 -0
- data/app/views/railsui/themes/corgie/components/pagination/_pagy.html.erb +97 -0
- data/app/views/railsui/themes/corgie/components/pagination/_simple.html.erb +114 -0
- data/app/views/railsui/themes/corgie/components/tab/_base.html.erb +101 -0
- data/app/views/railsui/themes/corgie/components/tab/_pills.html.erb +102 -0
- data/app/views/railsui/themes/corgie/components/tab/_rounded.html.erb +104 -0
- data/app/views/railsui/themes/corgie/components/tab/_vertical.html.erb +145 -0
- data/app/views/railsui/themes/corgie/components/tab/_with_icons.html.erb +138 -0
- data/app/views/railsui/themes/corgie/components/toast/_base.html.erb +98 -0
- data/app/views/railsui/themes/corgie/components/tooltip/_base.html.erb +51 -0
- data/app/views/railsui/themes/corgie/content/_image.html.erb +31 -0
- data/app/views/railsui/themes/corgie/content/_table.html.erb +21 -0
- data/app/views/railsui/themes/corgie/content/_typography.html.erb +47 -0
- data/app/views/railsui/themes/corgie/content/image/_object_contain.html.erb +31 -0
- data/app/views/railsui/themes/corgie/content/image/_object_cover.html.erb +32 -0
- data/app/views/railsui/themes/corgie/content/image/_object_fill.html.erb +32 -0
- data/app/views/railsui/themes/corgie/content/image/_object_scale_down.html.erb +34 -0
- data/app/views/railsui/themes/corgie/content/image/_responsive.html.erb +24 -0
- data/app/views/railsui/themes/corgie/content/table/_bordered.html.erb +93 -0
- data/app/views/railsui/themes/corgie/content/table/_borderless.html.erb +92 -0
- data/app/views/railsui/themes/corgie/content/table/_comparison.html.erb +494 -0
- data/app/views/railsui/themes/corgie/content/typography/_blockquote.html.erb +41 -0
- data/app/views/railsui/themes/corgie/content/typography/_display_headings.html.erb +70 -0
- data/app/views/railsui/themes/corgie/content/typography/_fonts.html.erb +30 -0
- data/app/views/railsui/themes/corgie/content/typography/_headings.html.erb +88 -0
- data/app/views/railsui/themes/corgie/content/typography/_inline_formatting.html.erb +44 -0
- data/app/views/railsui/themes/corgie/content/typography/_lead_paragraph.html.erb +26 -0
- data/app/views/railsui/themes/corgie/content/typography/_lists.html.erb +82 -0
- data/app/views/railsui/themes/corgie/content/typography/_paragraphs.html.erb +33 -0
- data/app/views/railsui/themes/corgie/forms/_action_text.html.erb +54 -0
- data/app/views/railsui/themes/corgie/forms/_checkbox.html.erb +60 -0
- data/app/views/railsui/themes/corgie/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/corgie/forms/_input.html.erb +378 -0
- data/app/views/railsui/themes/corgie/forms/_input_group.html.erb +485 -0
- data/app/views/railsui/themes/corgie/forms/_radio.html.erb +92 -0
- data/app/views/railsui/themes/corgie/forms/_select.html.erb +118 -0
- data/app/views/railsui/themes/corgie/forms/_switch.html.erb +60 -0
- data/app/views/railsui/themes/corgie/forms/_validation.html.erb +52 -0
- data/app/views/railsui/themes/corgie/mailers/_devise.html.erb +44 -0
- data/app/views/railsui/themes/corgie/mailers/_layout.html.erb +536 -0
- data/app/views/railsui/themes/corgie/mailers/_mailer_preview.html.erb +523 -0
- data/app/views/railsui/themes/corgie/mailers/_minimal.html.erb +63 -0
- data/app/views/railsui/themes/corgie/mailers/_promotion.html.erb +62 -0
- data/app/views/railsui/themes/corgie/mailers/_transactional.html.erb +133 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_confirmation_instructions.html.erb +34 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_email_changed.html.erb +32 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_password_changed.html.erb +25 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_reset_password_instructions.html.erb +33 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_unlock_instructions.html.erb +32 -0
- data/app/views/railsui/themes/corgie/scaffolds/_edit.html.erb +88 -0
- data/app/views/railsui/themes/corgie/scaffolds/_index.html.erb +88 -0
- data/app/views/railsui/themes/corgie/scaffolds/_new.html.erb +80 -0
- data/app/views/railsui/themes/corgie/scaffolds/_partial.html.erb +56 -0
- data/app/views/railsui/themes/corgie/scaffolds/_show.html.erb +85 -0
- data/app/views/railsui/themes/hound/_forms.html.erb +2 -0
- data/app/views/railsui/themes/hound/_nav.html.erb +2 -0
- data/app/views/railsui/themes/hound/authentication/devise/_change_password.html.erb +1 -27
- data/app/views/railsui/themes/hound/authentication/devise/_confirmation.html.erb +1 -20
- data/app/views/railsui/themes/hound/authentication/devise/_edit.html.erb +1 -44
- data/app/views/railsui/themes/hound/authentication/devise/_overview.html.erb +3 -51
- data/app/views/railsui/themes/hound/authentication/devise/_reset_password.html.erb +1 -17
- data/app/views/railsui/themes/hound/authentication/devise/_signin.html.erb +1 -30
- data/app/views/railsui/themes/hound/authentication/devise/_signup.html.erb +1 -31
- data/app/views/railsui/themes/hound/authentication/devise/_unlocks.html.erb +1 -17
- data/app/views/railsui/themes/hound/authentication/static/_change_password.html.erb +1 -32
- data/app/views/railsui/themes/hound/authentication/static/_confirmation.html.erb +1 -23
- data/app/views/railsui/themes/hound/authentication/static/_edit.html.erb +1 -39
- data/app/views/railsui/themes/hound/authentication/static/_overview.html.erb +2 -40
- data/app/views/railsui/themes/hound/authentication/static/_reset_password.html.erb +1 -22
- data/app/views/railsui/themes/hound/authentication/static/_signin.html.erb +1 -35
- data/app/views/railsui/themes/hound/authentication/static/_signup.html.erb +1 -31
- data/app/views/railsui/themes/hound/authentication/static/_unlocks.html.erb +1 -20
- data/app/views/railsui/themes/hound/components/_toast.html.erb +0 -3
- data/app/views/railsui/themes/hound/components/accordion/_contained.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/accordion/_flush.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/alert/_dismissable.html.erb +0 -8
- data/app/views/railsui/themes/hound/components/alert/_with_accent_border.html.erb +0 -7
- data/app/views/railsui/themes/hound/components/alert/_with_actions.html.erb +0 -11
- data/app/views/railsui/themes/hound/components/alert/_with_description.html.erb +0 -7
- data/app/views/railsui/themes/hound/components/alert/_with_list.html.erb +0 -8
- data/app/views/railsui/themes/hound/components/avatar/_circle.html.erb +0 -12
- data/app/views/railsui/themes/hound/components/avatar/_rounded.html.erb +0 -12
- data/app/views/railsui/themes/hound/components/badge/_basic.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_outline.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_pill.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_tag.html.erb +0 -52
- data/app/views/railsui/themes/hound/components/breadcrumb/_base.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/breadcrumb/_contained.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/button/_base.html.erb +0 -10
- data/app/views/railsui/themes/hound/components/button/_expanded.html.erb +0 -3
- data/app/views/railsui/themes/hound/components/button/_sizes.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/card/_base.html.erb +0 -6
- data/app/views/railsui/themes/hound/components/card/_user_card.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/card/_user_card_dropdown.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/card/_user_card_with_actions.html.erb +0 -18
- data/app/views/railsui/themes/hound/components/card/_with_action.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/card/_with_header.html.erb +0 -43
- data/app/views/railsui/themes/hound/components/combobox/_base.html.erb +0 -40
- data/app/views/railsui/themes/hound/components/dropdown/_base.html.erb +0 -10
- data/app/views/railsui/themes/hound/components/dropdown/_right_aligned.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/dropdown/_with_dividers.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/dropdown/_with_icons.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/flash/_alert.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/flash/_dynamic.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/flash/_notice.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/modal/_base.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/modal/_centered_dual_action.html.erb +0 -16
- data/app/views/railsui/themes/hound/components/modal/_dismiss_icon.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/modal/_single_action.html.erb +0 -15
- data/app/views/railsui/themes/hound/components/modal/_with_form.html.erb +0 -23
- data/app/views/railsui/themes/hound/components/navigation/_base.html.erb +1 -41
- data/app/views/railsui/themes/hound/components/navigation/_with_action.html.erb +1 -38
- data/app/views/railsui/themes/hound/components/navigation/_with_dropdowns.html.erb +1 -105
- data/app/views/railsui/themes/hound/components/navigation/_with_search.html.erb +1 -41
- data/app/views/railsui/themes/hound/components/pagination/_contained.html.erb +0 -31
- data/app/views/railsui/themes/hound/components/pagination/_minimal.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/pagination/_pagy.html.erb +47 -72
- data/app/views/railsui/themes/hound/components/tab/_base.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_pills.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_rounded.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_with_icons.html.erb +1 -26
- data/app/views/railsui/themes/hound/components/toast/_base.html.erb +0 -16
- data/app/views/railsui/themes/hound/components/tooltip/_base.html.erb +0 -3
- data/app/views/railsui/themes/hound/content/image/_object_contain.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_cover.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_fill.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_scale_down.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_responsive.html.erb +0 -4
- data/app/views/railsui/themes/hound/content/table/_bordered.html.erb +0 -21
- data/app/views/railsui/themes/hound/content/table/_borderless.html.erb +0 -21
- data/app/views/railsui/themes/hound/content/typography/_blockquote.html.erb +0 -9
- data/app/views/railsui/themes/hound/content/typography/_display_headings.html.erb +0 -9
- data/app/views/railsui/themes/hound/content/typography/_headings.html.erb +0 -12
- data/app/views/railsui/themes/hound/content/typography/_inline_formatting.html.erb +0 -20
- data/app/views/railsui/themes/hound/content/typography/_lead_paragraph.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/typography/_lists.html.erb +0 -17
- data/app/views/railsui/themes/hound/content/typography/_paragraphs.html.erb +0 -4
- data/app/views/railsui/themes/hound/forms/_action_text.html.erb +0 -6
- data/app/views/railsui/themes/hound/forms/_checkbox.html.erb +0 -9
- data/app/views/railsui/themes/hound/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/hound/forms/_input.html.erb +0 -93
- data/app/views/railsui/themes/hound/forms/_input_group.html.erb +0 -83
- data/app/views/railsui/themes/hound/forms/_radio.html.erb +0 -13
- data/app/views/railsui/themes/hound/forms/_select.html.erb +0 -16
- data/app/views/railsui/themes/hound/forms/_switch.html.erb +0 -9
- data/app/views/railsui/themes/hound/forms/_validation.html.erb +0 -15
- data/app/views/railsui/themes/hound/mailers/_layout.html.erb +1 -432
- data/app/views/railsui/themes/hound/mailers/_minimal.html.erb +1 -16
- data/app/views/railsui/themes/hound/mailers/_promotion.html.erb +1 -20
- data/app/views/railsui/themes/hound/mailers/_transactional.html.erb +1 -43
- data/app/views/railsui/themes/hound/mailers/devise/_confirmation_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/mailers/devise/_email_changed.html.erb +1 -13
- data/app/views/railsui/themes/hound/mailers/devise/_password_changed.html.erb +1 -7
- data/app/views/railsui/themes/hound/mailers/devise/_reset_password_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/mailers/devise/_unlock_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/scaffolds/_edit.html.erb +1 -19
- data/app/views/railsui/themes/hound/scaffolds/_index.html.erb +1 -14
- data/app/views/railsui/themes/hound/scaffolds/_new.html.erb +1 -17
- data/app/views/railsui/themes/hound/scaffolds/_partial.html.erb +1 -17
- data/app/views/railsui/themes/hound/scaffolds/_show.html.erb +1 -20
- data/app/views/railsui/themes/shepherd/_forms.html.erb +5 -3
- data/app/views/railsui/themes/shepherd/_nav.html.erb +2 -0
- data/app/views/railsui/themes/shepherd/authentication/devise/_change_password.html.erb +1 -23
- data/app/views/railsui/themes/shepherd/authentication/devise/_confirmation.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/devise/_edit.html.erb +1 -74
- data/app/views/railsui/themes/shepherd/authentication/devise/_overview.html.erb +2 -57
- data/app/views/railsui/themes/shepherd/authentication/devise/_reset_password.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/devise/_signin.html.erb +1 -25
- data/app/views/railsui/themes/shepherd/authentication/devise/_signup.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/authentication/devise/_unlocks.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_change_password.html.erb +1 -23
- data/app/views/railsui/themes/shepherd/authentication/static/_confirmation.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_edit.html.erb +1 -67
- data/app/views/railsui/themes/shepherd/authentication/static/_overview.html.erb +1 -56
- data/app/views/railsui/themes/shepherd/authentication/static/_reset_password.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_signin.html.erb +1 -24
- data/app/views/railsui/themes/shepherd/authentication/static/_signup.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/authentication/static/_unlocks.html.erb +1 -16
- data/app/views/railsui/themes/shepherd/components/_toast.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/components/accordion/_contained.html.erb +0 -28
- data/app/views/railsui/themes/shepherd/components/accordion/_flush.html.erb +0 -27
- data/app/views/railsui/themes/shepherd/components/alert/_dismissable.html.erb +0 -8
- data/app/views/railsui/themes/shepherd/components/alert/_with_accent_border.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/components/alert/_with_actions.html.erb +0 -11
- data/app/views/railsui/themes/shepherd/components/alert/_with_description.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/alert/_with_list.html.erb +0 -8
- data/app/views/railsui/themes/shepherd/components/avatar/_circle.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/avatar/_rounded.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/badge/_basic.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_outline.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_pill.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_tag.html.erb +0 -52
- data/app/views/railsui/themes/shepherd/components/breadcrumb/_base.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/breadcrumb/_contained.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/button/_base.html.erb +0 -17
- data/app/views/railsui/themes/shepherd/components/button/_expanded.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/components/button/_sizes.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/card/_base.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/components/card/_property_card.html.erb +0 -28
- data/app/views/railsui/themes/shepherd/components/card/_property_user_card.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/card/_user_card_with_actions.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/card/_with_action.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/card/_with_header.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/combobox/_base.html.erb +0 -40
- data/app/views/railsui/themes/shepherd/components/datalist/_booking_list.html.erb +0 -45
- data/app/views/railsui/themes/shepherd/components/datalist/_property_list.html.erb +0 -47
- data/app/views/railsui/themes/shepherd/components/dropdown/_base.html.erb +0 -10
- data/app/views/railsui/themes/shepherd/components/dropdown/_right_aligned.html.erb +0 -13
- data/app/views/railsui/themes/shepherd/components/dropdown/_with_dividers.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/dropdown/_with_menu_icons.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/flash/_alert.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/flash/_dynamic.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/flash/_notice.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/modal/_base.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/modal/_centered_dual_action.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/modal/_dismiss_icon.html.erb +0 -23
- data/app/views/railsui/themes/shepherd/components/modal/_single_action.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/modal/_with_form.html.erb +0 -23
- data/app/views/railsui/themes/shepherd/components/navigation/_base.html.erb +0 -81
- data/app/views/railsui/themes/shepherd/components/navigation/_logged_out.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/navigation/_with_dropdowns.html.erb +0 -88
- data/app/views/railsui/themes/shepherd/components/navigation/_with_search.html.erb +1 -83
- data/app/views/railsui/themes/shepherd/components/pagination/_contained.html.erb +0 -31
- data/app/views/railsui/themes/shepherd/components/pagination/_dark.html.erb +0 -31
- data/app/views/railsui/themes/shepherd/components/pagination/_pagy.html.erb +53 -98
- data/app/views/railsui/themes/shepherd/components/pagination/_simple.html.erb +0 -27
- data/app/views/railsui/themes/shepherd/components/tab/_base.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_pills.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_rounded.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_with_icons.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/components/toast/_base.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/tooltip/_base.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/content/_image_old.html.erb +0 -20
- data/app/views/railsui/themes/shepherd/content/image/_object_contain.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_cover.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_fill.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_scale_down.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_responsive.html.erb +0 -4
- data/app/views/railsui/themes/shepherd/content/table/_bordered.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/table/_borderless.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/typography/_blockquote.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/content/typography/_display_headings.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/content/typography/_headings.html.erb +0 -15
- data/app/views/railsui/themes/shepherd/content/typography/_inline_formatting.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/typography/_lead_paragraph.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/typography/_lists.html.erb +0 -17
- data/app/views/railsui/themes/shepherd/content/typography/_paragraphs.html.erb +0 -4
- data/app/views/railsui/themes/shepherd/forms/_action_text.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/forms/_checkbox.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/shepherd/forms/_input.html.erb +0 -119
- data/app/views/railsui/themes/shepherd/forms/_input_group.html.erb +0 -81
- data/app/views/railsui/themes/shepherd/forms/_radio.html.erb +0 -13
- data/app/views/railsui/themes/shepherd/forms/_select.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/forms/_switch.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/forms/_validation.html.erb +0 -11
- data/app/views/railsui/themes/shepherd/mailers/_layout.html.erb +1 -493
- data/app/views/railsui/themes/shepherd/mailers/_minimal.html.erb +1 -16
- data/app/views/railsui/themes/shepherd/mailers/_promotion.html.erb +1 -20
- data/app/views/railsui/themes/shepherd/mailers/_transactional.html.erb +1 -43
- data/app/views/railsui/themes/shepherd/mailers/devise/_confirmation_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/mailers/devise/_email_changed.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/mailers/devise/_password_changed.html.erb +1 -7
- data/app/views/railsui/themes/shepherd/mailers/devise/_reset_password_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/mailers/devise/_unlock_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/scaffolds/_edit.html.erb +1 -19
- data/app/views/railsui/themes/shepherd/scaffolds/_index.html.erb +1 -11
- data/app/views/railsui/themes/shepherd/scaffolds/_new.html.erb +1 -17
- data/app/views/railsui/themes/shepherd/scaffolds/_partial.html.erb +1 -17
- data/app/views/railsui/themes/shepherd/scaffolds/_show.html.erb +1 -18
- data/config/pages.yml +103 -0
- data/config/routes.rb +6 -5
- data/config/theme.yml +2 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/auth-bg.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog-feature.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog1.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog2.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog3.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog4.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog5.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog6.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog7.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog8.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog9.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/copy.svg +6 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/pencil.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/scroll-text.svg +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/facebook.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/github.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/google.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/instagram.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/linkedin.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/twitter.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/x.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/youtube.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/stethoscope.svg +8 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/test-tubes.svg +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/logo.svg +10 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/android-chrome-192x192.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/android-chrome-512x512.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/apple-touch-icon.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon-16x16.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon-32x32.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon.ico +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon.svg +20 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/opengraph-mark.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/opengraph.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/site.webmanifest +19 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/railsui.svg +3 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/character_count_controller.js +134 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/chat_controller.js +45 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/help_search_controller.js +333 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/highlight_controller.js +13 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/markdown_controller.js +106 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/search_controller.js +311 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/sidebar_controller.js +105 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/snippet_controller.js +223 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/minimal.html.erb +21 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/minimal.text.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/promotion.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/promotion.text.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/transactional.html.erb +55 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/transactional.text.erb +22 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/actiontext.css +173 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/blog.css +29 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/buttons.css +49 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/card.css +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/chat.css +27 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/code.css +233 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/dropdown.css +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/forms.css +321 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/sidebar.css +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/tailwind.config.js +24 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/theme.css +77 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/typography.css +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui.html.erb +31 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_admin.html.erb +30 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_auth.html.erb +50 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_mailer.html.erb +503 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/about.html.erb +278 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog.html.erb +258 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog_category.html.erb +261 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog_show.html.erb +429 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/chat_new.html.erb +68 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/chat_show.html.erb +152 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/features.html.erb +356 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/help.html.erb +123 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/home.html.erb +252 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/pricing.html.erb +397 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/privacy.html.erb +140 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/signin.html.erb +38 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/signup.html.erb +48 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/terms.html.erb +182 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_account_dropdown.html.erb +46 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_action.html.erb +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_callout.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_spacer.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_error_messages.html.erb +10 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_faq.html.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_flash.html.erb +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_fonts.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_footer.html.erb +72 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_header.html.erb +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_meta.html.erb +90 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_nav.html.erb +3 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_railsui_head.html.erb +4 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_search.html.erb +32 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_sidebar.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_waves.html.erb +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/blog/_article.html.erb +39 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/blog/_pagination.html.erb +21 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_disclaimer.html.erb +4 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_form.html.erb +62 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_header.html.erb +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_history.html.erb +36 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_key_legend.html.erb +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_link.html.erb +17 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_message.html.erb +69 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_model_select.html.erb +55 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_cta_section.html.erb +16 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_feature_card.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_feature_check_item.html.erb +6 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_social_auth_buttons.html.erb +22 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_categories.html.erb +82 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_faq.html.erb +45 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_quick_actions.html.erb +46 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_career.html.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_nav.html.erb +57 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_team_member_card.html.erb +16 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/_modal.html.erb +84 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/_nav_item.html.erb +14 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_billing.html.erb +120 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_data_controls.html.erb +69 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_general.html.erb +92 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_notifications.html.erb +102 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_personalization.html.erb +100 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_security.html.erb +98 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_title.html.erb +5 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_actions.html.erb +39 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_header.html.erb +40 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_history.html.erb +36 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_link.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/hound/stylesheets/railsui/forms.css +18 -4
- data/lib/generators/railsui/install/templates/themes/hound/stylesheets/railsui/theme.css +3 -2
- data/lib/generators/railsui/install/templates/themes/shepherd/stylesheets/railsui/forms.css +12 -2
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/_form.html.erb.tt +52 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/edit.html.erb.tt +25 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/index.html.erb.tt +12 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/new.html.erb.tt +22 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/partial.html.erb.tt +22 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/show.html.erb.tt +24 -0
- data/lib/generators/railsui/scaffold/templates/themes/hound/views/_form.html.erb.tt +29 -24
- data/lib/generators/railsui/scaffold/templates/themes/shepherd/views/_form.html.erb.tt +28 -26
- data/lib/railsui/configuration.rb +22 -21
- data/lib/railsui/engine.rb +26 -20
- data/lib/railsui/form_builder.rb +307 -0
- data/lib/railsui/pages.rb +14 -3
- data/lib/railsui/theme_helper.rb +8 -8
- data/lib/railsui/theme_setup.rb +83 -49
- data/lib/railsui/themes.rb +3 -4
- data/lib/railsui/version.rb +1 -1
- data/lib/railsui.rb +9 -6
- data/lib/tasks/install.rake +1 -1
- data/lib/tasks/pages.rake +1 -1
- data/lib/tasks/stimulus.rake +1 -1
- metadata +287 -5
- data/.standard.yml +0 -3
- data/CHANGELOG.md +0 -9
- data/config/colors.yml +0 -50
@@ -0,0 +1,494 @@
|
|
1
|
+
<div id="table-comparison">
|
2
|
+
<%= render layout: example, locals: { heading: "Comparison" } do %>
|
3
|
+
|
4
|
+
<div class="overflow-x-auto">
|
5
|
+
<table class="w-full bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-xl">
|
6
|
+
<thead>
|
7
|
+
<tr class="border-b border-neutral-200 dark:border-neutral-700">
|
8
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
9
|
+
Features
|
10
|
+
</th>
|
11
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
12
|
+
Free
|
13
|
+
</th>
|
14
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
15
|
+
<div class="flex items-center justify-start gap-2">
|
16
|
+
Plus
|
17
|
+
<span class="px-2 py-1 text-xs text-white rounded-3xl bg-neutral-900">Popular</span>
|
18
|
+
</div>
|
19
|
+
</th>
|
20
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
21
|
+
Pro
|
22
|
+
</th>
|
23
|
+
</tr>
|
24
|
+
</thead>
|
25
|
+
<tbody class="divide-y divide-neutral-200 dark:divide-neutral-700">
|
26
|
+
<tr>
|
27
|
+
<td class="px-6 py-4 font-medium text-left text-neutral-900 dark:text-white">
|
28
|
+
Daily conversations
|
29
|
+
</td>
|
30
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
31
|
+
10
|
32
|
+
</td>
|
33
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
34
|
+
Unlimited
|
35
|
+
</td>
|
36
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
37
|
+
Unlimited
|
38
|
+
</td>
|
39
|
+
</tr>
|
40
|
+
|
41
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
42
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
43
|
+
AI models
|
44
|
+
</td>
|
45
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
46
|
+
Basic
|
47
|
+
</td>
|
48
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
49
|
+
Advanced
|
50
|
+
</td>
|
51
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
52
|
+
Premium
|
53
|
+
</td>
|
54
|
+
</tr>
|
55
|
+
|
56
|
+
<tr>
|
57
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
58
|
+
File upload limit
|
59
|
+
</td>
|
60
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
61
|
+
1MB
|
62
|
+
</td>
|
63
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
64
|
+
25MB
|
65
|
+
</td>
|
66
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
67
|
+
100MB
|
68
|
+
</td>
|
69
|
+
</tr>
|
70
|
+
|
71
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
72
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
73
|
+
Support
|
74
|
+
</td>
|
75
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
76
|
+
Community
|
77
|
+
</td>
|
78
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
79
|
+
Priority
|
80
|
+
</td>
|
81
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
82
|
+
Dedicated
|
83
|
+
</td>
|
84
|
+
</tr>
|
85
|
+
|
86
|
+
<tr>
|
87
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
88
|
+
Conversation history
|
89
|
+
</td>
|
90
|
+
<td class="px-6 py-4 text-center">
|
91
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
92
|
+
</td>
|
93
|
+
<td class="px-6 py-4 text-center">
|
94
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
95
|
+
</td>
|
96
|
+
<td class="px-6 py-4 text-center">
|
97
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
98
|
+
</td>
|
99
|
+
</tr>
|
100
|
+
|
101
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
102
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
103
|
+
Export conversations
|
104
|
+
</td>
|
105
|
+
<td class="px-6 py-4 text-center">
|
106
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
107
|
+
</td>
|
108
|
+
<td class="px-6 py-4 text-center">
|
109
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
110
|
+
</td>
|
111
|
+
<td class="px-6 py-4 text-center">
|
112
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
113
|
+
</td>
|
114
|
+
</tr>
|
115
|
+
|
116
|
+
<tr>
|
117
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
118
|
+
Team collaboration
|
119
|
+
</td>
|
120
|
+
<td class="px-6 py-4 text-center">
|
121
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
122
|
+
</td>
|
123
|
+
<td class="px-6 py-4 text-center">
|
124
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
125
|
+
</td>
|
126
|
+
<td class="px-6 py-4 text-center">
|
127
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
128
|
+
</td>
|
129
|
+
</tr>
|
130
|
+
|
131
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
132
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
133
|
+
Advanced analytics
|
134
|
+
</td>
|
135
|
+
<td class="px-6 py-4 text-center">
|
136
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
137
|
+
</td>
|
138
|
+
<td class="px-6 py-4 text-center">
|
139
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
140
|
+
</td>
|
141
|
+
<td class="px-6 py-4 text-center">
|
142
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
143
|
+
</td>
|
144
|
+
</tr>
|
145
|
+
|
146
|
+
<tr>
|
147
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
148
|
+
Custom integrations
|
149
|
+
</td>
|
150
|
+
<td class="px-6 py-4 text-center">
|
151
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
152
|
+
</td>
|
153
|
+
<td class="px-6 py-4 text-center">
|
154
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
155
|
+
</td>
|
156
|
+
<td class="px-6 py-4 text-center">
|
157
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
158
|
+
</td>
|
159
|
+
</tr>
|
160
|
+
</tbody>
|
161
|
+
</table>
|
162
|
+
</div>
|
163
|
+
|
164
|
+
<% content_for :example, flush: true do %>
|
165
|
+
<%# .html %>
|
166
|
+
<% content_for :html, flush: true do %>
|
167
|
+
<div class="overflow-x-auto">
|
168
|
+
<table class="w-full bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-xl">
|
169
|
+
<thead>
|
170
|
+
<tr class="border-b border-neutral-200 dark:border-neutral-700">
|
171
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
172
|
+
Features
|
173
|
+
</th>
|
174
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
175
|
+
Free
|
176
|
+
</th>
|
177
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
178
|
+
<div class="flex items-center justify-start gap-2">
|
179
|
+
Plus
|
180
|
+
<span class="px-2 py-1 text-xs text-white rounded-3xl bg-neutral-900">Popular</span>
|
181
|
+
</div>
|
182
|
+
</th>
|
183
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
184
|
+
Pro
|
185
|
+
</th>
|
186
|
+
</tr>
|
187
|
+
</thead>
|
188
|
+
<tbody class="divide-y divide-neutral-200 dark:divide-neutral-700">
|
189
|
+
<tr>
|
190
|
+
<td class="px-6 py-4 font-medium text-left text-neutral-900 dark:text-white">
|
191
|
+
Daily conversations
|
192
|
+
</td>
|
193
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
194
|
+
10
|
195
|
+
</td>
|
196
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
197
|
+
Unlimited
|
198
|
+
</td>
|
199
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
200
|
+
Unlimited
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
|
204
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
205
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
206
|
+
AI models
|
207
|
+
</td>
|
208
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
209
|
+
Basic
|
210
|
+
</td>
|
211
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
212
|
+
Advanced
|
213
|
+
</td>
|
214
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
215
|
+
Premium
|
216
|
+
</td>
|
217
|
+
</tr>
|
218
|
+
|
219
|
+
<tr>
|
220
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
221
|
+
File upload limit
|
222
|
+
</td>
|
223
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
224
|
+
1MB
|
225
|
+
</td>
|
226
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
227
|
+
25MB
|
228
|
+
</td>
|
229
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
230
|
+
100MB
|
231
|
+
</td>
|
232
|
+
</tr>
|
233
|
+
|
234
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
235
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
236
|
+
Support
|
237
|
+
</td>
|
238
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
239
|
+
Community
|
240
|
+
</td>
|
241
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
242
|
+
Priority
|
243
|
+
</td>
|
244
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
245
|
+
Dedicated
|
246
|
+
</td>
|
247
|
+
</tr>
|
248
|
+
|
249
|
+
<tr>
|
250
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
251
|
+
Conversation history
|
252
|
+
</td>
|
253
|
+
<td class="px-6 py-4 text-center">
|
254
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
255
|
+
</td>
|
256
|
+
<td class="px-6 py-4 text-center">
|
257
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
258
|
+
</td>
|
259
|
+
<td class="px-6 py-4 text-center">
|
260
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
261
|
+
</td>
|
262
|
+
</tr>
|
263
|
+
|
264
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
265
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
266
|
+
Export conversations
|
267
|
+
</td>
|
268
|
+
<td class="px-6 py-4 text-center">
|
269
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
270
|
+
</td>
|
271
|
+
<td class="px-6 py-4 text-center">
|
272
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
273
|
+
</td>
|
274
|
+
<td class="px-6 py-4 text-center">
|
275
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
276
|
+
</td>
|
277
|
+
</tr>
|
278
|
+
|
279
|
+
<tr>
|
280
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
281
|
+
Team collaboration
|
282
|
+
</td>
|
283
|
+
<td class="px-6 py-4 text-center">
|
284
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
285
|
+
</td>
|
286
|
+
<td class="px-6 py-4 text-center">
|
287
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
288
|
+
</td>
|
289
|
+
<td class="px-6 py-4 text-center">
|
290
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
291
|
+
</td>
|
292
|
+
</tr>
|
293
|
+
|
294
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
295
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
296
|
+
Advanced analytics
|
297
|
+
</td>
|
298
|
+
<td class="px-6 py-4 text-center">
|
299
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
300
|
+
</td>
|
301
|
+
<td class="px-6 py-4 text-center">
|
302
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
303
|
+
</td>
|
304
|
+
<td class="px-6 py-4 text-center">
|
305
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
306
|
+
</td>
|
307
|
+
</tr>
|
308
|
+
|
309
|
+
<tr>
|
310
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
311
|
+
Custom integrations
|
312
|
+
</td>
|
313
|
+
<td class="px-6 py-4 text-center">
|
314
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
315
|
+
</td>
|
316
|
+
<td class="px-6 py-4 text-center">
|
317
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
318
|
+
</td>
|
319
|
+
<td class="px-6 py-4 text-center">
|
320
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
321
|
+
</td>
|
322
|
+
</tr>
|
323
|
+
</tbody>
|
324
|
+
</table>
|
325
|
+
</div>
|
326
|
+
<% end %>
|
327
|
+
|
328
|
+
<%# .erb %>
|
329
|
+
<% content_for :erb, flush: true do %>
|
330
|
+
<div class="overflow-x-auto">
|
331
|
+
<table class="w-full bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-xl">
|
332
|
+
<thead>
|
333
|
+
<tr class="border-b border-neutral-200 dark:border-neutral-700">
|
334
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
335
|
+
Features
|
336
|
+
</th>
|
337
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
338
|
+
Free
|
339
|
+
</th>
|
340
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
341
|
+
<div class="flex items-center justify-start gap-2">
|
342
|
+
Plus
|
343
|
+
<span class="px-2 py-1 text-xs text-white rounded-3xl bg-neutral-900">Popular</span>
|
344
|
+
</div>
|
345
|
+
</th>
|
346
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
347
|
+
Pro
|
348
|
+
</th>
|
349
|
+
</tr>
|
350
|
+
</thead>
|
351
|
+
<tbody class="divide-y divide-neutral-200 dark:divide-neutral-700">
|
352
|
+
<tr>
|
353
|
+
<td class="px-6 py-4 font-medium text-left text-neutral-900 dark:text-white">
|
354
|
+
Daily conversations
|
355
|
+
</td>
|
356
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
357
|
+
10
|
358
|
+
</td>
|
359
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
360
|
+
Unlimited
|
361
|
+
</td>
|
362
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
363
|
+
Unlimited
|
364
|
+
</td>
|
365
|
+
</tr>
|
366
|
+
|
367
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
368
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
369
|
+
AI models
|
370
|
+
</td>
|
371
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
372
|
+
Basic
|
373
|
+
</td>
|
374
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
375
|
+
Advanced
|
376
|
+
</td>
|
377
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
378
|
+
Premium
|
379
|
+
</td>
|
380
|
+
</tr>
|
381
|
+
|
382
|
+
<tr>
|
383
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
384
|
+
File upload limit
|
385
|
+
</td>
|
386
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
387
|
+
1MB
|
388
|
+
</td>
|
389
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
390
|
+
25MB
|
391
|
+
</td>
|
392
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
393
|
+
100MB
|
394
|
+
</td>
|
395
|
+
</tr>
|
396
|
+
|
397
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
398
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
399
|
+
Support
|
400
|
+
</td>
|
401
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
402
|
+
Community
|
403
|
+
</td>
|
404
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
405
|
+
Priority
|
406
|
+
</td>
|
407
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
408
|
+
Dedicated
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
|
412
|
+
<tr>
|
413
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
414
|
+
Conversation history
|
415
|
+
</td>
|
416
|
+
<td class="px-6 py-4 text-center">
|
417
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
418
|
+
</td>
|
419
|
+
<td class="px-6 py-4 text-center">
|
420
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
421
|
+
</td>
|
422
|
+
<td class="px-6 py-4 text-center">
|
423
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
424
|
+
</td>
|
425
|
+
</tr>
|
426
|
+
|
427
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
428
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
429
|
+
Export conversations
|
430
|
+
</td>
|
431
|
+
<td class="px-6 py-4 text-center">
|
432
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
433
|
+
</td>
|
434
|
+
<td class="px-6 py-4 text-center">
|
435
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
436
|
+
</td>
|
437
|
+
<td class="px-6 py-4 text-center">
|
438
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
439
|
+
</td>
|
440
|
+
</tr>
|
441
|
+
|
442
|
+
<tr>
|
443
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
444
|
+
Team collaboration
|
445
|
+
</td>
|
446
|
+
<td class="px-6 py-4 text-center">
|
447
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
448
|
+
</td>
|
449
|
+
<td class="px-6 py-4 text-center">
|
450
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
451
|
+
</td>
|
452
|
+
<td class="px-6 py-4 text-center">
|
453
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
454
|
+
</td>
|
455
|
+
</tr>
|
456
|
+
|
457
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
458
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
459
|
+
Advanced analytics
|
460
|
+
</td>
|
461
|
+
<td class="px-6 py-4 text-center">
|
462
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
463
|
+
</td>
|
464
|
+
<td class="px-6 py-4 text-center">
|
465
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
466
|
+
</td>
|
467
|
+
<td class="px-6 py-4 text-center">
|
468
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
469
|
+
</td>
|
470
|
+
</tr>
|
471
|
+
|
472
|
+
<tr>
|
473
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
474
|
+
Custom integrations
|
475
|
+
</td>
|
476
|
+
<td class="px-6 py-4 text-center">
|
477
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
478
|
+
</td>
|
479
|
+
<td class="px-6 py-4 text-center">
|
480
|
+
<%%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
481
|
+
</td>
|
482
|
+
<td class="px-6 py-4 text-center">
|
483
|
+
<%%= icon "check", class: "size-5 text-green-500" %>
|
484
|
+
</td>
|
485
|
+
</tr>
|
486
|
+
</tbody>
|
487
|
+
</table>
|
488
|
+
</div>
|
489
|
+
<% end %>
|
490
|
+
|
491
|
+
<%= render_snippet %>
|
492
|
+
<% end %>
|
493
|
+
<% end %>
|
494
|
+
</div>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<div id="typography-blockquote">
|
2
|
+
<%= render layout: example, locals: { heading: "Blockquote", section: "Typography" } do %>
|
3
|
+
|
4
|
+
<figure class="font-tiktok pl-6 border-l-2 border-neutral-200 dark:border-neutral-600 py-1">
|
5
|
+
<blockquote class="text-xl font-light mb-1 text-neutral-600 dark:text-neutral-300">
|
6
|
+
<p>A well-known quote, contained in a blockquote element.</p>
|
7
|
+
</blockquote>
|
8
|
+
<figcaption class="text-neutral-600 text-sm dark:text-neutral-500">
|
9
|
+
Someone famous in <cite title="Source Title">Source Title</cite>
|
10
|
+
</figcaption>
|
11
|
+
</figure>
|
12
|
+
|
13
|
+
<%# .html %>
|
14
|
+
<% content_for :html, flush: true do %>
|
15
|
+
<figure class="pl-6 border-l-2 border-neutral-200 dark:border-neutral-600 py-1">
|
16
|
+
<blockquote class="text-xl font-light mb-1 text-neutral-800 dark:text-neutral-100">
|
17
|
+
<p>A well-known quote, contained in a blockquote element.</p>
|
18
|
+
</blockquote>
|
19
|
+
<figcaption class="text-neutral-500 text-sm dark:text-neutral-300">Someone famous in <cite title="Source Title">Source Title</cite>
|
20
|
+
</figcaption>
|
21
|
+
</figure>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<% content_for :example, flush: true do %>
|
25
|
+
<%# .erb %>
|
26
|
+
<% content_for :erb, flush: true do %>
|
27
|
+
<%% tag.figure class: "pl-6 border-l-2 border-neutral-200 dark:border-neutral-600 py-1" do %>
|
28
|
+
<%%= tag.blockquote class: "text-xl font-light mb-1 text-neutral-800 dark:text-neutral-100" do %>
|
29
|
+
<%%= tag.p "A well-known quote, contained in a blockquote element." %>
|
30
|
+
<%% end %>
|
31
|
+
<%%= tag.figcaption class: "text-neutral-600 text-sm dark:text-neutral-500" do %>
|
32
|
+
Someone famous in
|
33
|
+
<%%= tag.cite "Source Title", title: "Source Title" %>
|
34
|
+
<%% end %>
|
35
|
+
<%% end %>
|
36
|
+
<% end %>
|
37
|
+
|
38
|
+
<%= render_snippet %>
|
39
|
+
<% end %>
|
40
|
+
<% end %>
|
41
|
+
</div>
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<div id="typography-display-headings" %>
|
2
|
+
<%= render layout: example, locals: { heading: "Display headings", section: "Typography" } do %>
|
3
|
+
<div class="mb-4">
|
4
|
+
<h1 class="display-1">A quick brown fox jumps over the lazy dog.</h1>
|
5
|
+
<%= help_text do %>
|
6
|
+
<p>h1</p>
|
7
|
+
<% end %>
|
8
|
+
</div>
|
9
|
+
|
10
|
+
<div class="mb-4">
|
11
|
+
<h2 class="display-2">A quick brown fox jumps over the lazy dog.</h2>
|
12
|
+
<%= help_text do %>
|
13
|
+
<p>h2</p>
|
14
|
+
<% end %>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="mb-4">
|
18
|
+
<h3 class="display-3">A quick brown fox jumps over the lazy dog.</h3>
|
19
|
+
<%= help_text do %>
|
20
|
+
<p>h3</p>
|
21
|
+
<% end %>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<div class="mb-4">
|
25
|
+
<h4 class="display-4">A quick brown fox jumps over the lazy dog.</h4>
|
26
|
+
<%= help_text do %>
|
27
|
+
<p>h4</p>
|
28
|
+
<% end %>
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<div class="mb-4">
|
32
|
+
<h5 class="display-5">A quick brown fox jumps over the lazy dog.</h5>
|
33
|
+
<%= help_text do %>
|
34
|
+
<p>h5</p>
|
35
|
+
<% end %>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="mb-4">
|
39
|
+
<h6 class="display-6">A quick brown fox jumps over the lazy dog.</h6>
|
40
|
+
<%= help_text do %>
|
41
|
+
<p>h6</p>
|
42
|
+
<% end %>
|
43
|
+
</div>
|
44
|
+
|
45
|
+
|
46
|
+
<% content_for :example, flush: true do %>
|
47
|
+
<%# .html %>
|
48
|
+
<% content_for :html, flush: true do %>
|
49
|
+
<h1 class="display-1">A quick brown fox jumps over the lazy dog.</h1>
|
50
|
+
<h2 class="display-2">A quick brown fox jumps over the lazy dog.</h2>
|
51
|
+
<h3 class="display-3">A quick brown fox jumps over the lazy dog.</h3>
|
52
|
+
<h4 class="display-4">A quick brown fox jumps over the lazy dog.</h4>
|
53
|
+
<h5 class="display-5">A quick brown fox jumps over the lazy dog.</h5>
|
54
|
+
<h6 class="display-6">A quick brown fox jumps over the lazy dog.</h6>
|
55
|
+
<% end %>
|
56
|
+
|
57
|
+
<%# .erb %>
|
58
|
+
<% content_for :erb, flush: true do %>
|
59
|
+
<%%= content_tag :h1, "A quick brown fox jumps over the lazy dog.", class: "display-1" %>
|
60
|
+
<%%= content_tag :h2, "A quick brown fox jumps over the lazy dog.", class: "display-2" %>
|
61
|
+
<%%= content_tag :h3, "A quick brown fox jumps over the lazy dog.", class: "display-3" %>
|
62
|
+
<%%= content_tag :h4, "A quick brown fox jumps over the lazy dog.", class: "display-4" %>
|
63
|
+
<%%= content_tag :h5, "A quick brown fox jumps over the lazy dog.", class: "display-5" %>
|
64
|
+
<%%= content_tag :h6, "A quick brown fox jumps over the lazy dog.", class: "display-6" %>
|
65
|
+
<% end %>
|
66
|
+
|
67
|
+
<%= render_snippet %>
|
68
|
+
<% end %>
|
69
|
+
<% end %>
|
70
|
+
</div>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<div id="typography-fonts">
|
2
|
+
<div class="my-6">
|
3
|
+
<%= render "railsui/shared/code_example_heading", title: "Typography", subtitle: "Fonts" %>
|
4
|
+
</div>
|
5
|
+
|
6
|
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-16">
|
7
|
+
<div>
|
8
|
+
<h4 class="font-medium mb-3">Headings</h3>
|
9
|
+
<p>
|
10
|
+
<%= link_to "https://fonts.google.com/specimen/TikTok+Sans", target: :_blank, class: button_classes(variant: "white") do %>
|
11
|
+
<span>TikTok Sans</span>
|
12
|
+
<%= icon "arrow-up-right", class: "size-3" %>
|
13
|
+
<% end %>
|
14
|
+
</p>
|
15
|
+
</div>
|
16
|
+
<div>
|
17
|
+
<h4 class="font-medium mb-3">Body</h4>
|
18
|
+
<p>
|
19
|
+
<%= link_to "https://fonts.google.com/specimen/TikTok+Sans", class: button_classes(variant: "white") do %>
|
20
|
+
<span>TikTok Sans</span>
|
21
|
+
<%= icon "arrow-up-right", class: "size-3" %>
|
22
|
+
<% end %>
|
23
|
+
</p>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="prose-sm prose-neutral dark:prose-invert">
|
28
|
+
<p><strong>Tip</strong>: To change fonts, you'll need to reference them in both <br /><code>app/views/rui/shared/_fonts.html.erb</code> and <code>app/assets/stylesheets/railsui/theme.css</code>.</p>
|
29
|
+
</div>
|
30
|
+
</div>
|