railsui 3.1.5 → 3.2.1
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/shared/_flash_messages.html.erb +2 -2
- data/app/views/railsui/shared/_full_access_cta.html.erb +27 -0
- 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
@@ -538,504 +538,12 @@ end
|
|
538
538
|
</html>
|
539
539
|
<% end %>
|
540
540
|
|
541
|
-
<% content_for :haml, flush: true do %>
|
542
|
-
!!!
|
543
|
-
%html
|
544
|
-
%body
|
545
|
-
- theme = {
|
546
|
-
- align_logo: "center",
|
547
|
-
- primary: "#f43f5e",
|
548
|
-
- secondary: "#1D9AE2",
|
549
|
-
- heading_text_color: "#0f172a",
|
550
|
-
- footer_text_color: "#71717a",
|
551
|
-
- body_text_color: "#27272a",
|
552
|
-
- light_text_color: "#71717a",
|
553
|
-
- callout_bg_color: "#fef9c3",
|
554
|
-
- callout_border_color: "#fef08a",
|
555
|
-
- callout_text_color: "#a16207",
|
556
|
-
- button_border_radius: "25px",
|
557
|
-
- hr_color: "#e4e4e7",
|
558
|
-
- dark_mode_background_color: "#18181b",
|
559
|
-
- dark_mode_hr_color: "#3f3f46"
|
560
|
-
- }
|
561
|
-
%meta{content: "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
562
|
-
:css
|
563
|
-
:root {
|
564
|
-
color-scheme: light dark;
|
565
|
-
supported-color-schemes: light dark;
|
566
|
-
}
|
567
|
-
|
568
|
-
@media (prefers-color-scheme: dark) {
|
569
|
-
body {
|
570
|
-
background-color: #{theme[:dark_mode_background_color]} !important;
|
571
|
-
color: #ffffff !important;
|
572
|
-
}
|
573
|
-
|
574
|
-
.content {
|
575
|
-
color: #ffffff !important;
|
576
|
-
}
|
577
|
-
|
578
|
-
h1,
|
579
|
-
h2,
|
580
|
-
h3,
|
581
|
-
h4 {
|
582
|
-
color: #ffffff !important;
|
583
|
-
}
|
584
|
-
|
585
|
-
.main {
|
586
|
-
background: #{theme[:dark_mode_background_color]} !important;
|
587
|
-
}
|
588
|
-
|
589
|
-
.footer td,
|
590
|
-
.footer p,
|
591
|
-
.footer span,
|
592
|
-
.footer a {
|
593
|
-
color: #{theme[:footer_text_color]} !important;
|
594
|
-
}
|
595
|
-
|
596
|
-
.small {
|
597
|
-
color: #{theme[:footer_text_color]} !important;
|
598
|
-
}
|
599
|
-
|
600
|
-
table.callout td {
|
601
|
-
background-color: #{theme[:callout_bg_color]} !important;
|
602
|
-
color: #{theme[:callout_text_color]} !important;
|
603
|
-
}
|
604
|
-
|
605
|
-
.view-in-browser {
|
606
|
-
color: #9ca3af !important;
|
607
|
-
}
|
608
|
-
|
609
|
-
.action__link--primary {
|
610
|
-
background-color: #{theme[:primary]} !important;
|
611
|
-
border-color: #{theme[:primary]} !important;
|
612
|
-
}
|
613
|
-
|
614
|
-
.action__link--secondary {
|
615
|
-
background-color: #{theme[:secondary]} !important;
|
616
|
-
border-color: #{theme[:secondary]} !important;
|
617
|
-
}
|
618
|
-
table hr {
|
619
|
-
border-color: #{theme[:dark_mode_hr_color]};
|
620
|
-
}
|
621
|
-
}
|
622
|
-
|
623
|
-
@media all {
|
624
|
-
.ExternalClass {
|
625
|
-
width: 100%;
|
626
|
-
}
|
627
|
-
.ExternalClass,
|
628
|
-
.ExternalClass p,
|
629
|
-
.ExternalClass span,
|
630
|
-
.ExternalClass font,
|
631
|
-
.ExternalClass td,
|
632
|
-
.ExternalClass div {
|
633
|
-
line-height: 100%;
|
634
|
-
}
|
635
|
-
}
|
636
|
-
|
637
|
-
img {
|
638
|
-
border: none;
|
639
|
-
-ms-interpolation-mode: bicubic;
|
640
|
-
max-width: 100%;
|
641
|
-
}
|
642
|
-
|
643
|
-
img.rounded-full {
|
644
|
-
border-radius: 99999px;
|
645
|
-
width: 20px;
|
646
|
-
height: 20px;
|
647
|
-
margin-bottom: -2px;
|
648
|
-
margin-bottom: -2px;
|
649
|
-
}
|
650
|
-
|
651
|
-
table {
|
652
|
-
border-collapse: separate;
|
653
|
-
mso-table-lspace: 0pt;
|
654
|
-
mso-table-rspace: 0pt;
|
655
|
-
width: 100%;
|
656
|
-
}
|
657
|
-
|
658
|
-
table td {
|
659
|
-
font-family: sans-serif;
|
660
|
-
font-size: 16px;
|
661
|
-
vertical-align: top;
|
662
|
-
}
|
663
|
-
|
664
|
-
.container {
|
665
|
-
display: block;
|
666
|
-
margin: 0 auto !important;
|
667
|
-
/* makes it centered */
|
668
|
-
max-width: 600px;
|
669
|
-
padding: 10px;
|
670
|
-
width: 600px;
|
671
|
-
}
|
672
|
-
|
673
|
-
.content {
|
674
|
-
box-sizing: border-box;
|
675
|
-
display: block;
|
676
|
-
margin: 0 auto;
|
677
|
-
max-width: 600px;
|
678
|
-
padding: 20px;
|
679
|
-
line-height: 1.6;
|
680
|
-
color: #{theme[:body_text_color]};
|
681
|
-
}
|
682
|
-
|
683
|
-
.logo {
|
684
|
-
color: #222;
|
685
|
-
text-decoration: none;
|
686
|
-
font-size: 18px;
|
687
|
-
font-weight: 500;
|
688
|
-
line-height: 0;
|
689
|
-
}
|
690
|
-
|
691
|
-
.logo:hover {
|
692
|
-
text-decoration: none;
|
693
|
-
}
|
694
|
-
|
695
|
-
.main {
|
696
|
-
background: #ffffff;
|
697
|
-
width: 100%;
|
698
|
-
}
|
699
|
-
|
700
|
-
.wrapper {
|
701
|
-
box-sizing: border-box;
|
702
|
-
padding: 20px;
|
703
|
-
}
|
704
|
-
|
705
|
-
.footer {
|
706
|
-
clear: both;
|
707
|
-
padding-top: 16px;
|
708
|
-
margin-bottom: 16px;
|
709
|
-
text-align: center;
|
710
|
-
}
|
711
|
-
|
712
|
-
.footer td,
|
713
|
-
.footer p,
|
714
|
-
.footer span,
|
715
|
-
.footer a {
|
716
|
-
color: #{theme[:footer_text_color]};
|
717
|
-
font-size: 13px;
|
718
|
-
line-height: 150%;
|
719
|
-
margin: 0;
|
720
|
-
text-align: center;
|
721
|
-
}
|
722
|
-
|
723
|
-
h1,
|
724
|
-
h2,
|
725
|
-
h3,
|
726
|
-
h4 {
|
727
|
-
color: #{theme[:heading_text_color]};
|
728
|
-
font-family: 'system-ui',
|
729
|
-
'-apple-system',
|
730
|
-
'BlinkMacSystemFont',
|
731
|
-
'"Segoe UI"',
|
732
|
-
'Roboto',
|
733
|
-
'"Helvetica Neue"',
|
734
|
-
'Arial',
|
735
|
-
'"Noto Sans"',
|
736
|
-
'sans-serif',
|
737
|
-
'"Apple Color Emoji"',
|
738
|
-
'"Segoe UI Emoji"',
|
739
|
-
'"Segoe UI Symbol"',
|
740
|
-
'"Noto Color Emoji"';
|
741
|
-
line-height: 1.4;
|
742
|
-
margin-bottom: 20px;
|
743
|
-
}
|
744
|
-
|
745
|
-
h1 {
|
746
|
-
font-size: 24px;
|
747
|
-
font-weight: 800;
|
748
|
-
line-height: 30px;
|
749
|
-
}
|
750
|
-
|
751
|
-
h2 {
|
752
|
-
font-size: 22px;
|
753
|
-
font-weight: 800;
|
754
|
-
}
|
755
|
-
|
756
|
-
p,
|
757
|
-
ul,
|
758
|
-
ol,
|
759
|
-
table.callout {
|
760
|
-
font-family: sans-serif;
|
761
|
-
font-size: 16px;
|
762
|
-
font-weight: normal;
|
763
|
-
margin-bottom: 18px;
|
764
|
-
}
|
765
|
-
|
766
|
-
ul {
|
767
|
-
padding-left: 16px;
|
768
|
-
margin: 10px 0;
|
769
|
-
Margin: 10px 0;
|
770
|
-
list-style-type: disc;
|
771
|
-
}
|
772
|
-
|
773
|
-
ul li {
|
774
|
-
Margin-bottom: 10px;
|
775
|
-
margin-bottom: 10px;
|
776
|
-
}
|
777
|
-
|
778
|
-
p li,
|
779
|
-
ul li,
|
780
|
-
ol li {
|
781
|
-
list-style-position: outside;
|
782
|
-
}
|
783
|
-
|
784
|
-
p.no-bottom-margin {
|
785
|
-
margin-bottom: 0;
|
786
|
-
}
|
787
|
-
|
788
|
-
a {
|
789
|
-
color: #{theme[:primary]};
|
790
|
-
text-decoration: underline;
|
791
|
-
}
|
792
|
-
|
793
|
-
a:hover {
|
794
|
-
text-decoration: underline;
|
795
|
-
}
|
796
|
-
|
797
|
-
.intro blockquote {
|
798
|
-
font-style: italic;
|
799
|
-
color: #111827 !important;
|
800
|
-
border-left: 5px solid #e5e7eb;
|
801
|
-
margin: 0 0 18px 0;
|
802
|
-
padding-left: 24px;
|
803
|
-
}
|
804
|
-
|
805
|
-
.intro blockquote p {
|
806
|
-
font-weight: 500 !important;
|
807
|
-
font-style: italic;
|
808
|
-
color: #111827 !important;
|
809
|
-
margin: 0;
|
810
|
-
}
|
811
|
-
|
812
|
-
.last {
|
813
|
-
margin-bottom: 0;
|
814
|
-
}
|
815
|
-
|
816
|
-
.first {
|
817
|
-
margin-top: 0;
|
818
|
-
}
|
819
|
-
|
820
|
-
.align-center {
|
821
|
-
text-align: center;
|
822
|
-
}
|
823
|
-
|
824
|
-
.align-right {
|
825
|
-
text-align: right;
|
826
|
-
}
|
827
|
-
|
828
|
-
.align-left {
|
829
|
-
text-align: left;
|
830
|
-
}
|
831
|
-
|
832
|
-
.mt-0 {
|
833
|
-
margin-top: 0;
|
834
|
-
}
|
835
|
-
|
836
|
-
.mb-0 {
|
837
|
-
margin-bottom: 0;
|
838
|
-
}
|
839
|
-
|
840
|
-
.mt-10 {
|
841
|
-
margin-top: 10px;
|
842
|
-
Margin-top: 10px;
|
843
|
-
}
|
844
|
-
|
845
|
-
.mb-10 {
|
846
|
-
margin-bottom: 10px;
|
847
|
-
Margin-bottom: 10px;
|
848
|
-
}
|
849
|
-
|
850
|
-
.small {
|
851
|
-
font-size: 14px;
|
852
|
-
color: #{theme[:light_text_color]};
|
853
|
-
line-height: 130%;
|
854
|
-
}
|
855
|
-
|
856
|
-
hr {
|
857
|
-
border: 0;
|
858
|
-
border-bottom: 1px solid #{theme[:hr_color]};
|
859
|
-
margin: 20px 0;
|
860
|
-
}
|
861
|
-
|
862
|
-
table.callout td {
|
863
|
-
background-color: #{theme[:callout_bg_color]};
|
864
|
-
padding: 16px;
|
865
|
-
border-radius: 6px;
|
866
|
-
color: #{theme[:callout_text_color]}
|
867
|
-
}
|
868
|
-
|
869
|
-
table.callout td p {
|
870
|
-
margin: 0;
|
871
|
-
}
|
872
|
-
|
873
|
-
.view-in-browser {
|
874
|
-
font-size: 12px;
|
875
|
-
color: #{theme[:light_text_color]};
|
876
|
-
margin-bottom: 10px;
|
877
|
-
text-align: center;
|
878
|
-
display: block;
|
879
|
-
}
|
880
|
-
|
881
|
-
table.social-links {
|
882
|
-
width: auto;
|
883
|
-
}
|
884
|
-
|
885
|
-
table.social-links td {
|
886
|
-
width: 44px;
|
887
|
-
overflow: hidden;
|
888
|
-
text-align: center;
|
889
|
-
}
|
890
|
-
|
891
|
-
table.social-links td img {
|
892
|
-
display: inline;
|
893
|
-
}
|
894
|
-
|
895
|
-
@media only screen and (max-width: 620px) {
|
896
|
-
table[class="body"] a.view-in-browser {
|
897
|
-
font-size: 12px !important;
|
898
|
-
margin-top: 10px;
|
899
|
-
}
|
900
|
-
|
901
|
-
table[class="body"] h1 {
|
902
|
-
font-size: 28px !important;
|
903
|
-
margin-bottom: 10px !important;
|
904
|
-
}
|
905
|
-
|
906
|
-
table[class="body"] a,
|
907
|
-
table[class="body"] ol,
|
908
|
-
table[class="body"] p,
|
909
|
-
table[class="body"] span,
|
910
|
-
table[class="body"] td,
|
911
|
-
table[class="body"] ul {
|
912
|
-
font-size: 16px !important;
|
913
|
-
}
|
914
|
-
|
915
|
-
table[class="body"] p.small {
|
916
|
-
font-size: 14px !important;
|
917
|
-
}
|
918
|
-
|
919
|
-
table[class="body"] .footer {
|
920
|
-
padding: 10px;
|
921
|
-
}
|
922
|
-
|
923
|
-
table[class="body"] .footer p {
|
924
|
-
font-size: 16px !important;;
|
925
|
-
line-height: 150%;
|
926
|
-
}
|
927
|
-
|
928
|
-
.wrapper {
|
929
|
-
padding: 20px 10px !important;
|
930
|
-
}
|
931
|
-
|
932
|
-
.content {
|
933
|
-
padding: 0 !important;
|
934
|
-
}
|
935
|
-
|
936
|
-
.container {
|
937
|
-
padding: 0 !important;
|
938
|
-
width: 100.85% !important;
|
939
|
-
}
|
940
|
-
|
941
|
-
.main {
|
942
|
-
border-left-width: 0 !important;
|
943
|
-
border-radius: 0 !important;
|
944
|
-
border-right-width: 0 !important;
|
945
|
-
width: 100% !important;
|
946
|
-
}
|
947
|
-
|
948
|
-
.img-responsive {
|
949
|
-
height: auto !important;
|
950
|
-
max-width: 100% !important;
|
951
|
-
width: auto !important;
|
952
|
-
}
|
953
|
-
|
954
|
-
.action__link--primary,
|
955
|
-
.action__link--secondary {
|
956
|
-
border-width: 10px 0px !important;
|
957
|
-
}
|
958
|
-
}
|
959
|
-
|
960
|
-
/* Action buttons */
|
961
|
-
.action__link {
|
962
|
-
display: inline-block;
|
963
|
-
text-decoration: none !important;
|
964
|
-
text-align: center;
|
965
|
-
border-radius: #{theme[:button_border_radius]} !important;
|
966
|
-
-webkit-text-size-adjust: none;
|
967
|
-
color: white !important;
|
968
|
-
font-size: 15px;
|
969
|
-
}
|
970
|
-
/* Update your brand colors here */
|
971
|
-
.action__link--primary {
|
972
|
-
background-color: #{theme[:primary]};
|
973
|
-
border-top: 10px solid #{theme[:primary]};
|
974
|
-
border-right: 24px solid #{theme[:primary]};
|
975
|
-
border-bottom: 10px solid #{theme[:primary]};
|
976
|
-
border-left: 24px solid #{theme[:primary]};
|
977
|
-
}
|
978
|
-
|
979
|
-
.action__link--secondary {
|
980
|
-
color: white;
|
981
|
-
background-color: #{theme[:secondary]};
|
982
|
-
border-top: 10px solid #{theme[:secondary]};
|
983
|
-
border-right: 24px solid #{theme[:secondary]};
|
984
|
-
border-bottom: 10px solid #{theme[:secondary]};
|
985
|
-
border-left: 24px solid #{theme[:secondary]};
|
986
|
-
}
|
987
|
-
|
988
|
-
.action {
|
989
|
-
width: 100%;
|
990
|
-
padding: 0 0 5px 0 !important;
|
991
|
-
text-align: center;
|
992
|
-
}
|
993
|
-
|
994
|
-
.action__link--expanded {
|
995
|
-
width: 100%;
|
996
|
-
}
|
997
|
-
|
998
|
-
.action td {
|
999
|
-
padding: 0 !important;
|
1000
|
-
border: none;
|
1001
|
-
}
|
1002
|
-
|
1003
|
-
@media only screen and (max-width: 600px) {
|
1004
|
-
.action a {
|
1005
|
-
width: 100%;
|
1006
|
-
}
|
1007
|
-
}
|
1008
|
-
%table.body{border: "0", cellpadding: "0", cellspacing: "0"}
|
1009
|
-
%tr
|
1010
|
-
%td.container
|
1011
|
-
.content
|
1012
|
-
%table.main{border: "0", cellpadding: "0", cellspacing: "0"}
|
1013
|
-
%tr
|
1014
|
-
%td
|
1015
|
-
%table{border: "0", cellpadding: "0", cellspacing: "0"}
|
1016
|
-
%tr
|
1017
|
-
%td.wrapper
|
1018
|
-
%table{align: "#{theme[:align_logo] ||= "left"}"}
|
1019
|
-
%tr
|
1020
|
-
%td{align: "#{theme[:align_logo] ||= "left"}"}
|
1021
|
-
= spacer(12)
|
1022
|
-
= link_to root_url, class: "logo", target: :_blank do
|
1023
|
-
= image_tag Railsui.theme_logo_url, style: "width: 40px; max-width: 40px; height: auto; display: inline; text-align: center;", alt: "#{Railsui.config.application_name} logo"
|
1024
|
-
= spacer(24)
|
1025
|
-
= yield
|
1026
|
-
= spacer(8)
|
1027
|
-
%table.footer{border: "0", cellpadding: "0", cellspacing: "0"}
|
1028
|
-
%tr
|
1029
|
-
%td
|
1030
|
-
Please contact #{mail_to Railsui.config.support_email, Railsui.config.support_email, subject: "Help", body: "I need help...", style: "text-decoration: underline;"} if you have any questions.
|
1031
|
-
%td
|
1032
|
-
<% end %>
|
1033
541
|
|
1034
542
|
<% content_for :ruby, flush: true do %>
|
1035
543
|
|
1036
544
|
<% end %>
|
1037
545
|
|
1038
|
-
<%= render_snippet active_tab: "erb", erb_filename: "mailer.html.erb"
|
546
|
+
<%= render_snippet active_tab: "erb", erb_filename: "mailer.html.erb" %>
|
1039
547
|
</div>
|
1040
548
|
|
1041
549
|
<%= system_pagination(prev_path: systems_authentication_static_unlocks_path, prev_text: "Unlock", next_path: systems_mailers_minimal_path, next_text: "Minimal") %>
|
@@ -45,23 +45,8 @@
|
|
45
45
|
<%%= link_to "Learn more", "https://railsui.com" %>
|
46
46
|
<% end %>
|
47
47
|
|
48
|
-
<% content_for :haml, flush: true do %>
|
49
|
-
/ app/views/some_mailer/minimal.haml.erb
|
50
|
-
%h1 This is a heading
|
51
|
-
= spacer(16)
|
52
|
-
%p Lorem ipsum dolor sit amet consectetur adipisicing elit. Excepturi nulla rem ipsam, praesentium quisquam quidem laboriosam nihil cumque, molestias vero enim corrupti corporis quibusdam mollitia! Dolores ipsum eos animi facere.
|
53
|
-
= spacer(16)
|
54
|
-
%ul
|
55
|
-
%li List item 1
|
56
|
-
%li List item 2
|
57
|
-
%li List item 3
|
58
|
-
= spacer(16)
|
59
|
-
%p Lorem ipsum dolor sit amet consectetur adipisicing elit. Excepturi nulla rem ipsam, praesentium quisquam quidem laboriosam nihil cumque, molestias vero enim corrupti corporis quibusdam mollitia! Dolores ipsum eos animi facere.
|
60
|
-
= spacer(16)
|
61
|
-
= link_to "Learn more", "https://railsui.com"
|
62
|
-
<% end %>
|
63
48
|
|
64
|
-
<%= render_snippet active_tab: "erb", erb_filename: "minimal.html.erb"
|
49
|
+
<%= render_snippet active_tab: "erb", erb_filename: "minimal.html.erb" %>
|
65
50
|
<% end %>
|
66
51
|
<% end %>
|
67
52
|
|
@@ -55,27 +55,8 @@
|
|
55
55
|
<%%= email_action "Start shopping", "#", align: "center", fullwidth: true, theme: "secondary" %>
|
56
56
|
<% end %>
|
57
57
|
|
58
|
-
<% content_for :haml, flush: true do %>
|
59
|
-
/ app/views/some_mailer/promotion.haml.erb
|
60
|
-
/ Add width and height attributes to all images for maximum cross-email client support
|
61
|
-
= image_tag "your/promotion/image.jpg", alt: "Promotional image example", width: "1200px", height: "600px"
|
62
|
-
= spacer(16)
|
63
|
-
%h1 Limited time offer!
|
64
|
-
= spacer(16)
|
65
|
-
%p Lorem ipsum dolor...
|
66
|
-
= spacer(16)
|
67
|
-
= email_callout do
|
68
|
-
%p
|
69
|
-
For a limited time use the coupon code
|
70
|
-
%strong 50OFF
|
71
|
-
for 50% off your first purchase.
|
72
|
-
= spacer(16)
|
73
|
-
%p Lorem ipsum dolor...
|
74
|
-
= spacer(16)
|
75
|
-
= email_action "Start shopping", "#", align: "center", fullwidth: true, theme: "secondary"
|
76
|
-
<% end %>
|
77
58
|
|
78
|
-
<%= render_snippet active_tab: "erb", erb_filename: "promotion.html.erb"
|
59
|
+
<%= render_snippet active_tab: "erb", erb_filename: "promotion.html.erb" %>
|
79
60
|
<% end %>
|
80
61
|
<% end %>
|
81
62
|
|
@@ -125,50 +125,8 @@
|
|
125
125
|
<%%= email_action("View receipt", "#") %>
|
126
126
|
<% end %>
|
127
127
|
|
128
|
-
<% content_for :haml, flush: true do %>
|
129
|
-
/ app/views/some_mailer/transactional.haml.erb
|
130
|
-
%p Hey Andy,
|
131
|
-
%p Thanks for subscribing to Rails UI. This email contains the receipt from your purchase.
|
132
|
-
%p
|
133
|
-
The purchase will appear as
|
134
|
-
%code RAILSUI
|
135
|
-
on your credit card statement for the card ending in
|
136
|
-
= succeed "." do
|
137
|
-
%code 1234
|
138
|
-
= link_to "update your payment information", "#"
|
139
|
-
at any time. Below you'll find the details of your order:
|
140
|
-
= spacer(16)
|
141
|
-
%table.mb-0
|
142
|
-
%tbody
|
143
|
-
%tr
|
144
|
-
%td
|
145
|
-
Order #2345
|
146
|
-
%td{align: "right"}
|
147
|
-
01/01/23
|
148
|
-
%hr/
|
149
|
-
%table
|
150
|
-
%thead
|
151
|
-
%th{align: "left"} Description
|
152
|
-
%th{align: "right"} Amount
|
153
|
-
%tbody
|
154
|
-
%tr
|
155
|
-
%td
|
156
|
-
= link_to "Rails UI", "https://railsui.com", target: :_blank
|
157
|
-
%p.small.mb-0 Renews annually. Next charge on 01/01/24.
|
158
|
-
%td{align: "right"}
|
159
|
-
$1,000,000.00
|
160
|
-
%tr
|
161
|
-
%td
|
162
|
-
%tr
|
163
|
-
%td
|
164
|
-
%td{align: "right"}
|
165
|
-
%strong Total: $1,000,000.00
|
166
|
-
= spacer(16)
|
167
|
-
%p If you have any questions about this receipt or Rails UI, please reply to this email or reach out to our support team for help. Someone will get back to you within a few hours.
|
168
|
-
= email_action("View receipt", "#")
|
169
|
-
<% end %>
|
170
128
|
|
171
|
-
<%= render_snippet active_tab: "erb", erb_filename: "transactional.html.erb"
|
129
|
+
<%= render_snippet active_tab: "erb", erb_filename: "transactional.html.erb" %>
|
172
130
|
<% end %>
|
173
131
|
<% end %>
|
174
132
|
|
@@ -26,16 +26,8 @@
|
|
26
26
|
<%%= email_action "Confirm my account", confirmation_url(@resource, confirmation_token: @token), fullwidth: true %>
|
27
27
|
<% end %>
|
28
28
|
|
29
|
-
<% content_for :haml, flush: true do %>
|
30
|
-
/ app/views/devise/mailer/confirmation_instructions.html.erb
|
31
|
-
%p
|
32
|
-
Hi #{@email},
|
33
|
-
%p Thanks for signing up at ACME.xyz! Before you access your new account we want to make sure it's really you.
|
34
|
-
%p Confirm your account by clicking the button below.
|
35
|
-
= email_action "Confirm my account", confirmation_url(@resource, confirmation_token: @token), fullwidth: true
|
36
|
-
<% end %>
|
37
29
|
|
38
|
-
<%= render_snippet active_tab: "erb", erb_filename: "confirmation_instructions.html.erb"
|
30
|
+
<%= render_snippet active_tab: "erb", erb_filename: "confirmation_instructions.html.erb" %>
|
39
31
|
<% end %>
|
40
32
|
<% end %>
|
41
33
|
</div>
|
@@ -24,18 +24,7 @@
|
|
24
24
|
<%% end %>
|
25
25
|
<% end %>
|
26
26
|
|
27
|
-
|
28
|
-
/ app/views/devise/mailer/email_changed.haml.erb
|
29
|
-
%p
|
30
|
-
Hi #{@email},
|
31
|
-
- if @resource.try(:unconfirmed_email?)
|
32
|
-
%p
|
33
|
-
We're contacting you to notify you that your email is being changed to #{@resource.unconfirmed_email}.
|
34
|
-
- else
|
35
|
-
%p
|
36
|
-
We're contacting you to notify you that your email has been changed to #{@resource.email}.
|
37
|
-
<% end %>
|
38
|
-
<%= render_snippet active_tab: "erb", erb_filename: "email_changed.html.erb", haml_filename: "email_changed.haml.erb" %>
|
27
|
+
<%= render_snippet active_tab: "erb", erb_filename: "email_changed.html.erb" %>
|
39
28
|
<% end %>
|
40
29
|
<% end %>
|
41
30
|
</div>
|
@@ -19,13 +19,7 @@
|
|
19
19
|
<p>We're contacting you to notify you that your password has been changed.</p>
|
20
20
|
<% end %>
|
21
21
|
|
22
|
-
|
23
|
-
/ app/views/devise/mailer/password_changed.haml.erb
|
24
|
-
%p
|
25
|
-
Hi #{@resource.email},
|
26
|
-
%p We're contacting you to notify you that your password has been changed.
|
27
|
-
<% end %>
|
28
|
-
<%= render_snippet active_tab: "erb", erb_filename: "password_changed.html.erb", haml_filename: "password_changed.haml.erb" %>
|
22
|
+
<%= render_snippet active_tab: "erb", erb_filename: "password_changed.html.erb" %>
|
29
23
|
<% end %>
|
30
24
|
<% end %>
|
31
25
|
</div>
|
@@ -23,15 +23,7 @@
|
|
23
23
|
<p>If you didn't make this change we recommend <%%= link_to "resetting your password immediately", edit_password_url(@resource, reset_password_token: @token) %> or <%%= mail_to Railsui.config.support_email, "contacting someone from our support team" %>.</p>
|
24
24
|
<% end %>
|
25
25
|
|
26
|
-
|
27
|
-
/ app/views/devise/mailer/reset_password_instructions.haml.erb
|
28
|
-
%p
|
29
|
-
Hi #{@resource.email},
|
30
|
-
%p We're contacting you to notify you that your password has been changed.
|
31
|
-
%p
|
32
|
-
If you didn't make this change we recommend #{link_to "resetting your password immediately", edit_password_url(@resource, reset_password_token: @token)} or #{mail_to "some@email.com", "contacting someone from our support team"}.
|
33
|
-
<% end %>
|
34
|
-
<%= render_snippet active_tab: "erb", erb_filename: "reset_password_instructions.html.erb", haml_filename: "reset_password_instructions.haml.erb" %>
|
26
|
+
<%= render_snippet active_tab: "erb", erb_filename: "reset_password_instructions.html.erb" %>
|
35
27
|
<% end %>
|
36
28
|
<% end %>
|
37
29
|
</div>
|
@@ -26,15 +26,7 @@
|
|
26
26
|
<%%= email_action "Unlock account", unlock_url(@resource, unlock_token: @token) %>
|
27
27
|
<% end %>
|
28
28
|
|
29
|
-
|
30
|
-
/ app/views/devise/mailer/unlock_instructions.html.erb
|
31
|
-
%p
|
32
|
-
Hi #{@resource.email},
|
33
|
-
%p Your account has been locked due to an excessive number of unsuccessful sign in attempts.
|
34
|
-
%p Click the link below to unlock your account:
|
35
|
-
= email_action "Unlock account", unlock_url(@resource, unlock_token: @token)
|
36
|
-
<% end %>
|
37
|
-
<%= render_snippet active_tab: "erb", erb_filename: "unlock_instructions.html.erb", haml_filename: "unlock_instructions.haml.erb" %>
|
29
|
+
<%= render_snippet active_tab: "erb", erb_filename: "unlock_instructions.html.erb" %>
|
38
30
|
<% end %>
|
39
31
|
<% end %>
|
40
32
|
</div>
|