flowbite 2.5.2 → 3.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 595b112feaf0622eb9951def97f3e4e35adc35fa46994a1624a8fc0576852cd7
4
- data.tar.gz: 2355ed9beadb32a48468acae53be8037dc4df039c39baba51e586058f5b96675
3
+ metadata.gz: 76f4f3a9c94e94fd02f1f7087701b5e7d3125437cefda08cef69a7635c4d5967
4
+ data.tar.gz: c4b0fde4d4d8a0c59da88c8b0da6560fa0245bf100934a7c49b491234ac4b226
5
5
  SHA512:
6
- metadata.gz: 8c14d85b577e0f0d50d87def1386ca0c723b6ee35e628a7982fd1fb2e4b4348e586f500e442c8e68ea1cef4ae541d3016fef61fac0dcebf87321368ad1742536
7
- data.tar.gz: ab6059afc9dbd597685972a0dbbb9bb1e918a4e79445442dfdee7c8e52c67315a60cacb62c8f7663af6014f2e515ef37fb801f622fec594dd0f485ef2a4e49fd
6
+ metadata.gz: 7a16152b2a05dae08a3eeecd3137749b07cc6752533ed96c90bbdf706d2dd53c534a0b71488b40325173e227e67c8ba0f5622211c1c89636d4d47daf3bee5d58
7
+ data.tar.gz: 3d6cefd5a2d63dc85f3a3e87b0a80f97b8ac84c55d8afbab58fa970d3d57ef5739df0b3b72305df612a25eb98601e77a2cb5aa46ec5b000636eb874b7d1af1a6
data/README.md CHANGED
@@ -20,7 +20,7 @@ Works great with the following gems:
20
20
  Add `flowbite` to your Gemfile:
21
21
 
22
22
  ```ruby
23
- gem "flowbite", "~> 2.3"
23
+ gem "flowbite", "~> 3.1"
24
24
  ```
25
25
 
26
26
  ### Importmaps
@@ -32,6 +32,9 @@ pin "flowbite", to: "flowbite.esm.js"
32
32
 
33
33
  ### Tailwind CSS for Rails
34
34
 
35
+ > [!WARNING]
36
+ > To upgrade from flowbite 2.x to 3.x, also upgrade tailwind from version 3 to version 4 [using these instructions](https://github.com/rails/tailwindcss-rails/tree/v4.0.0#upgrading-your-application-from-tailwind-v3-to-v4). Don't forget to update the plugin using the `bin/rails flowbite:bundler:plugin` command.
37
+
35
38
  [Tailwind CSS for Rails gem](https://github.com/rails/tailwindcss-rails) is wraps the [standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS framework, which means to add additional plugins you need to download the script to your server. To solve this problem, we wrote a rake task:
36
39
 
37
40
  ```bash