ariadne_view_components 0.0.86.9 → 0.0.87

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34b651779a45aa19177c9f4b531bee68fc395fa1c3d6cf4c313523409478b7a8
4
- data.tar.gz: 4364f8b536bdd7773b3548cce0c0036cad93ef86cce1d18cd142985972c710db
3
+ metadata.gz: e24ad08f7ace486ef85dbd12f3f72c817cea36ca628b147afb17ed11af96509a
4
+ data.tar.gz: a5f49a2c7f99f153bdffec190562fb8e8d646dcb635db15139ff3449b75331aa
5
5
  SHA512:
6
- metadata.gz: 3cabf846c3ce0f9a337dea2d2a793ab599469f7a1139ab75e6fc00800ac43a478e286cc07ea2a0ac139a3b3f2de5167aa82976e01bd15b80044a5fa6bcfce0b8
7
- data.tar.gz: 5b20d8acdaf5a5a34838acd3feb687dcdf5acf37bbd68ef4b4fa29d744af268fea1e310fc9e113bb3bf27e9bbfef3709e1c82811633112ec6a684c104ed60bbc
6
+ metadata.gz: 6b8388a6a16ab00e650733d38514b3a62e49892e9d5d281cc585f6ba1f881e9c5a66f8c917d90e51beea462bb046b7a620066a67c80542232560bcf967d0fe1d
7
+ data.tar.gz: d36b5655a09a7c718b5711eac8cb55694d8baee30c4b3f63ffc2da2509a40f6ee092c102255d395afa4868147430b0670052a7cb1c799f6e9da47b347fa62527
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.0.87] - 20-08-2024
2
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.9...v0.0.87
1
3
  # [v0.0.86.9] - 15-08-2024
2
4
  **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.8...v0.0.86.9
3
5
  # [v0.0.86.8] - 15-08-2024
@@ -1,4 +1,4 @@
1
- <tr class="<%= style(:row) %>" <%= html_attributes %>>
1
+ <tr class="<%= html_attrs[:class] %>" <%= html_attributes %>>
2
2
  <% cells.each do |cell| %>
3
3
  <%= cell %>
4
4
  <% end %>
@@ -11,6 +11,10 @@ module Ariadne
11
11
  renders_one :row_action, Ariadne::UI::Combobox::Component
12
12
  renders_many :cells, Ariadne::UI::Table::Cell::Component
13
13
 
14
+ accepts_html_attributes do |html_attrs|
15
+ html_attrs[:class] = Ariadne::ViewComponents.tailwind_merger.merge([style(:row), html_attrs[:class]].join(" "))
16
+ end
17
+
14
18
  style :row do
15
19
  base do
16
20
  [
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.86.9"
6
+ VERSION = "0.0.87"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.86.9
4
+ version: 0.0.87
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-15 00:00:00.000000000 Z
11
+ date: 2024-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tailwind_merge