thunderclap 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b864f2762b90fb969134671f4c53c66ed1a2549c506bc6dcb29603602ffecf07
4
- data.tar.gz: f8a0a93c185d9600f451e7dbe646c4ad04d0f0a2347f129e5ad7c16c69852aa4
3
+ metadata.gz: b4a8238a72cd02da254441748a1a7c0f106fce423d0cd503c60bc94c2165a549
4
+ data.tar.gz: e4d70c481d9352e95843ad67e9043c86c14b93ef3730d46e454d5f7f6addad2b
5
5
  SHA512:
6
- metadata.gz: 5104cebc661318de90552dbc24476885d423bca5a14bbe3c7049f4846d2993f47a810c31c700fc0fdb26a483b947ec802623150af9fab94b802b057c51aa72f9
7
- data.tar.gz: e702b4077d25b63587a253ed08b8a7b22b0d29ccf4b3aa8a7ebb5256c386a0e01f2433f924c7e854a9c63c50cb41c46c6b16face1d3d6abe9a0869f77d898dda
6
+ metadata.gz: e52a689695c54185955a3451180bcf3c2658a17a7f640432f9012191971db0f7a16654af8cc0066c3f62055f802f79312c5c459b0964675cf11ddffa895257f5
7
+ data.tar.gz: 294e06225a559c8cc67863a1395ff3ddb25005fe52bec24ee3f0d8c4ea4f685a8413b5588415174b437ec751049c0d64828384720b4ee08e6f7893838926803f
@@ -6,7 +6,7 @@ module ThunderclapHelper
6
6
  #
7
7
  # @param auto_dismiss_delay [Integer] The delay in milliseconds before the flash message automatically dismisses.
8
8
  # @return [String] The rendered flash message.
9
- def flash
9
+ def render_thunderclap(flash: nil)
10
10
  render 'thunderclap/partials/flash', flash_object: flash
11
11
  end
12
12
  end
@@ -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
- <div>
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>
@@ -1,3 +1,3 @@
1
1
  module Thunderclap
2
- VERSION = "0.3.0"
2
+ VERSION = "0.5.0"
3
3
  end
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.3.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