tailwindcss-rails 2.2.0-x86_64-linux → 2.2.1-x86_64-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: 927f8fce9cdd72071903d28bb3d9603c23e2d12070a1ff3e6204423a7a6886ed
4
- data.tar.gz: d7691e03d2d6243e86683cc9e9a26501db5ddf1fdc5b2a917bcb5ba8058f9832
3
+ metadata.gz: 8c229e1a8d973f606179204d10edfd982dd74f8e12cd1b1ffe5acb943d7a5bf6
4
+ data.tar.gz: 40fd46f5fd7bcd54f17b99f07d29fb1a0c288d4133da325f782ef8bda55bf984
5
5
  SHA512:
6
- metadata.gz: 3f6f26c3961a8bdbfe55abd864a3ddf14830af56f316b4f0b51424abb98656c32543b9ba9a3f2783a8cb85a312556bac4e4ce83600257041f428662ea633aa3a
7
- data.tar.gz: 812495733d2eca65e6dbada82bdc08511851bfaa5596c1f9e63e84571c008f05205903f0683db613165c5844ff91ecf8641ba72869347aeb995dbce9c36febe7
6
+ metadata.gz: 0a4ff6d5824bfd52111c56f3415a6645a5279cfb157b7907d9e99da54d0200b7df917a36664e19ae91025f976ff75cd2a454bc14d6cd82baa94ea1ffef4f9b94
7
+ data.tar.gz: 993ee186ed9075fbba8ec68d88da543ffecdd5e17cb11d2478f4adab50f64e8746933c6495f33e0b91903762978783887c8531649e55110cb7df90ec36de33ef
data/README.md CHANGED
@@ -192,6 +192,12 @@ The inline version also works:
192
192
  <section class="bg-[url('image.svg')]">Has the image as it's background</section>
193
193
  ```
194
194
 
195
+ ### Conflict with pre-existing asset pipeline stylesheets
196
+
197
+ If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you incorrectly double-process `application.tailwind.css`. This is a misconfiguration, even though the styles will be fully effective in many cases. The file `application.tailwind.css` is installed when running `rails tailwindcss:install` and is placed alongside the common `application.css` in `app/assets/stylesheets`. Because the `application.css` in a newly generated Rails app includes a `require_tree .` directive, the asset pipeline incorrectly processes `application.tailwind.css`, where it should be taken care of by `tailwindcss`. The asset pipeline ignores TailwindCSS's at-directives, and the browser can't process them.
198
+
199
+ To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes. Else, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
200
+
195
201
  ## License
196
202
 
197
203
  Tailwind for Rails is released under the [MIT License](https://opensource.org/licenses/MIT).
Binary file
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <style>
6
+ /* Email styles need to be inline */
7
+ </style>
8
+ </head>
9
+
10
+ <body>
11
+ <%%= yield %>
12
+ </body>
13
+ </html>
@@ -15,7 +15,7 @@
15
15
  <div class="my-5">
16
16
  <% if attribute.password_digest? -%>
17
17
  <%%= form.label :password %>
18
- <%%= form.password_field :password %>
18
+ <%%= form.password_field :password, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
19
19
  </div>
20
20
 
21
21
  <div class="my-5">
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.4.0"
4
+ VERSION = "v3.4.1"
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.2.0"
2
+ VERSION = "2.2.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.2.0
4
+ version: 2.2.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -58,6 +58,8 @@ files:
58
58
  - lib/generators/tailwindcss/controller/controller_generator.rb
59
59
  - lib/generators/tailwindcss/controller/templates/view.html.erb.tt
60
60
  - lib/generators/tailwindcss/mailer/mailer_generator.rb
61
+ - lib/generators/tailwindcss/mailer/templates/layout.html.erb.tt
62
+ - lib/generators/tailwindcss/mailer/templates/layout.text.erb.tt
61
63
  - lib/generators/tailwindcss/mailer/templates/view.html.erb.tt
62
64
  - lib/generators/tailwindcss/mailer/templates/view.text.erb.tt
63
65
  - lib/generators/tailwindcss/scaffold/scaffold_generator.rb