tailwindcss-rails 2.6.5-aarch64-linux → 2.7.1-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c10a6986ac27ec42b3676c98cfcf45992c7c174d2797d7955b0b25508410115
4
- data.tar.gz: 239b9e36986f13c4b196fcb739e645e96852133676b56490f38341d89ded565a
3
+ metadata.gz: 0d1a5f96f9103fb827827a425f5b0162980279e7d0b3b3dbdcba30910b4b22e0
4
+ data.tar.gz: 5720e55c58d05549b3765efaf4346a904b1622187473bea59772b8b5fa59485d
5
5
  SHA512:
6
- metadata.gz: d680236219ceb05582745355f4e0e56317abc7bf997c4aefce1b14a36f08814da4e97e38547fb5a9d4d633f2c220a401daebce01f11cf4fc7652bce85cd6ce99
7
- data.tar.gz: f49af9d961a749c2aa206aac3d2afa8dccfe4671ea394004527740639f541c13ffefd40223506193f244656a5b55e7449049daaea32bb946a2e2245da500b505
6
+ metadata.gz: 1951a67ec13a5e17aff4082f2d0e1e8c740d0c8432d4b63b58a624eeacccae1633869e17ec9d3d5a060acad81b9239cda0f725caec03cf75e6e54e9d5e0d052e
7
+ data.tar.gz: 249f90544b7eba30d4da77267e0e96357407338c427caa2ad432351c630722d011dcc8c7ba1779bf29e89608871ab4d76fb1ed9a7cc3b98e70a481f39f17b6cf
Binary file
@@ -0,0 +1,9 @@
1
+ require "rails/generators/erb/authentication/authentication_generator"
2
+
3
+ module Tailwindcss
4
+ module Generators
5
+ class AuthenticationGenerator < Erb::Generators::AuthenticationGenerator
6
+ source_root File.expand_path("templates", __dir__)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <h1 class="font-bold text-4xl">Update your password</h1>
7
+
8
+ <%%= form_with url: password_path(params[:token]), method: :put, class: "contents" do |form| %>
9
+ <div class="my-5">
10
+ <%%= form.password_field :password, required: true, autocomplete: "new-password", placeholder: "Enter new password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
11
+ </div>
12
+
13
+ <div class="my-5">
14
+ <%%= form.password_field :password_confirmation, required: true, autocomplete: "new-password", placeholder: "Repeat new password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
15
+ </div>
16
+
17
+ <div class="inline">
18
+ <%%= form.submit "Save", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
19
+ </div>
20
+ <%% end %>
21
+ </div>
@@ -0,0 +1,17 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <h1 class="font-bold text-4xl">Forgot your password?</h1>
7
+
8
+ <%%= form_with url: passwords_path, class: "contents" do |form| %>
9
+ <div class="my-5">
10
+ <%%= form.email_field :email_address, required: true, autofocus: true, autocomplete: "username", placeholder: "Enter your email address", value: params[:email_address], class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
11
+ </div>
12
+
13
+ <div class="inline">
14
+ <%%= form.submit "Email reset instructions", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
15
+ </div>
16
+ <%% end %>
17
+ </div>
@@ -0,0 +1,31 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <%% if notice = flash[:notice] %>
7
+ <p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%%= notice %></p>
8
+ <%% end %>
9
+
10
+ <h1 class="font-bold text-4xl">Sign in</h1>
11
+
12
+ <%%= form_with url: session_url, class: "contents" do |form| %>
13
+ <div class="my-5">
14
+ <%%= form.email_field :email_address, required: true, autofocus: true, autocomplete: "username", placeholder: "Enter your email address", value: params[:email_address], class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
15
+ </div>
16
+
17
+ <div class="my-5">
18
+ <%%= form.password_field :password, required: true, autocomplete: "current-password", placeholder: "Enter your password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
19
+ </div>
20
+
21
+ <div class="col-span-6 sm:flex sm:items-center sm:gap-4">
22
+ <div class="inline">
23
+ <%%= form.submit "Sign in", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
24
+ </div>
25
+
26
+ <div class="mt-4 text-sm text-gray-500 sm:mt-0">
27
+ <%%= link_to "Forgot password?", new_password_path, class: "text-gray-700 underline" %>
28
+ </div>
29
+ </div>
30
+ <%% end %>
31
+ </div>
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.4.7"
4
+ VERSION = "v3.4.8"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.6.5"
2
+ VERSION = "2.7.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.5
4
+ version: 2.7.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-30 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -55,6 +55,10 @@ files:
55
55
  - app/assets/stylesheets/inter-font.css
56
56
  - exe/aarch64-linux/tailwindcss
57
57
  - exe/tailwindcss
58
+ - lib/generators/tailwindcss/authentication/authentication_generator.rb
59
+ - lib/generators/tailwindcss/authentication/templates/views/passwords/edit.html.erb
60
+ - lib/generators/tailwindcss/authentication/templates/views/passwords/new.html.erb
61
+ - lib/generators/tailwindcss/authentication/templates/views/sessions/new.html.erb
58
62
  - lib/generators/tailwindcss/controller/controller_generator.rb
59
63
  - lib/generators/tailwindcss/controller/templates/view.html.erb.tt
60
64
  - lib/generators/tailwindcss/mailer/mailer_generator.rb