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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9996754205e7580e652dd0622226851d5496cb2513523c971e664cf0fa5f8c48
4
- data.tar.gz: cb9514b3288a2fbcbee147faf31c2fafcc4f70c3142663302eb17af5086e94c8
3
+ metadata.gz: b4a8238a72cd02da254441748a1a7c0f106fce423d0cd503c60bc94c2165a549
4
+ data.tar.gz: e4d70c481d9352e95843ad67e9043c86c14b93ef3730d46e454d5f7f6addad2b
5
5
  SHA512:
6
- metadata.gz: 228c9fee9e1af3f9eabb562e0741e3e8e27d0ab31329bbc85da51f66007230f2bb7b7bbc16fa7a0ad64f899e3f36b3382c603d1a7f34317e396f8a9577f0eb86
7
- data.tar.gz: 70f444d6a373a8416669611bacf8f326d4308cd7d58dc009e3ed6718e4fc0930c8d34eacd05fef0704944a56be036631e1d1d701a6fcdb74845b47b815657136
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
- <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.4.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.4.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