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 +4 -4
- data/README.md +4 -1
- data/assets/builds/flowbite-plugin.js +20 -20
- data/assets/builds/flowbite.css +71 -1
- data/assets/builds/flowbite.turbo.esm.js +5 -5
- data/assets/builds/flowbite.turbo.js +5 -5
- data/lib/flowbite/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76f4f3a9c94e94fd02f1f7087701b5e7d3125437cefda08cef69a7635c4d5967
|
4
|
+
data.tar.gz: c4b0fde4d4d8a0c59da88c8b0da6560fa0245bf100934a7c49b491234ac4b226
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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", "~>
|
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
|