ariadne_view_components 0.0.86.9 → 0.0.88

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: 99c01fe6b6923d0f08b21b1f6c012690e80764253b4adcd22f78d004039f96a6
4
+ data.tar.gz: ae58c8221640c2f6d50568d03a62cba7f7544b4058fe1ef17b838a0ad406936c
5
5
  SHA512:
6
- metadata.gz: 3cabf846c3ce0f9a337dea2d2a793ab599469f7a1139ab75e6fc00800ac43a478e286cc07ea2a0ac139a3b3f2de5167aa82976e01bd15b80044a5fa6bcfce0b8
7
- data.tar.gz: 5b20d8acdaf5a5a34838acd3feb687dcdf5acf37bbd68ef4b4fa29d744af268fea1e310fc9e113bb3bf27e9bbfef3709e1c82811633112ec6a684c104ed60bbc
6
+ metadata.gz: aa1564c49cc2da76b2f1da86da3911655cba817f4ad836b538462197aa208458497be155d508e91aa832afc1f8c135a23fe6a0223f5c0fa91aff7e639c7eafb8
7
+ data.tar.gz: ea336abe38b51d3d612cfcba3679cceb47c1c042abc108f3c3e76353b7629f8d4b5d86c92a3244837bf4cbde2118546bd3d852bcbd60f8a5eb38bcb566f2776d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [v0.0.88] - 28-08-2024
2
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.87...v0.0.88
3
+ # [v0.0.87] - 20-08-2024
4
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.9...v0.0.87
1
5
  # [v0.0.86.9] - 15-08-2024
2
6
  **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.8...v0.0.86.9
3
7
  # [v0.0.86.8] - 15-08-2024
@@ -8,6 +8,7 @@ module Ariadne
8
8
  option :name
9
9
  option :value
10
10
  option :label, default: proc { false }
11
+ option :selected, default: proc { false }
11
12
 
12
13
  option :label_classes, default: -> { "" }
13
14
  option :label_arguments, default: -> { {} }
@@ -16,6 +17,9 @@ module Ariadne
16
17
  html_attrs[:name] = @name
17
18
  html_attrs[:value] = @value
18
19
  html_attrs[:id] = id
20
+ html_attrs[:checked] = @selected
21
+
22
+ html_attrs
19
23
  end
20
24
 
21
25
  def id
@@ -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.88"
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.88
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-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tailwind_merge