thunderclap 0.4.0 → 0.5.0
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/app/views/thunderclap/partials/_flash.html.erb +8 -6
- data/lib/thunderclap/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4a8238a72cd02da254441748a1a7c0f106fce423d0cd503c60bc94c2165a549
|
4
|
+
data.tar.gz: e4d70c481d9352e95843ad67e9043c86c14b93ef3730d46e454d5f7f6addad2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e52a689695c54185955a3451180bcf3c2658a17a7f640432f9012191971db0f7a16654af8cc0066c3f62055f802f79312c5c459b0964675cf11ddffa895257f5
|
7
|
+
data.tar.gz: 294e06225a559c8cc67863a1395ff3ddb25005fe52bec24ee3f0d8c4ea4f685a8413b5588415174b437ec751049c0d64828384720b4ee08e6f7893838926803f
|
@@ -1,7 +1,8 @@
|
|
1
|
-
<ul>
|
1
|
+
<ul id="flash-messages-list" class="absolute top-5 left-1/2 -translate-x-1/2 flex flex-col gap-y-5 text-black-1">
|
2
2
|
<% flash_object.each do |type, msg| %>
|
3
|
-
<li
|
4
|
-
|
3
|
+
<li
|
4
|
+
class="relative p-6 rounded-lg transition transform duration-500 shadow-md">
|
5
|
+
<div class="flex items-center">
|
5
6
|
<span>
|
6
7
|
<% if local_assigns[:flash_type] == "notice" %>
|
7
8
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="#31cb00" class="w-6 h-6">
|
@@ -14,9 +15,9 @@
|
|
14
15
|
<% end %>
|
15
16
|
</span>
|
16
17
|
|
17
|
-
<p><%= msg %></p>
|
18
|
+
<p class="ml-2 mr-10 font-medium"><%= msg %></p>
|
18
19
|
|
19
|
-
<button type="button">
|
20
|
+
<button type="button" data-action="click->notification#hide">
|
20
21
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="#6c757d" class="w-5 h-5">
|
21
22
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
|
22
23
|
</svg>
|
@@ -26,7 +27,8 @@
|
|
26
27
|
<% if local_assigns[:redirect] %>
|
27
28
|
<%= link_to(
|
28
29
|
local_assigns[:redirect][:copy],
|
29
|
-
local_assigns[:redirect][:path]
|
30
|
+
local_assigns[:redirect][:path],
|
31
|
+
class: "block w-fit pt-0.5 pb-1 px-2.5 rounded-lg mt-5 ml-auto text-sm bg-blue-1 text-white"
|
30
32
|
) %>
|
31
33
|
<% end %>
|
32
34
|
</li>
|
data/lib/thunderclap/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thunderclap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LuigiR0jas
|
@@ -25,6 +25,20 @@ dependencies:
|
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: 7.0.5
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: tailwindcss-rails
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 2.3.0
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 2.3.0
|
28
42
|
description: Thunderclap description
|
29
43
|
email:
|
30
44
|
- luigirojasdev@gmail.com
|