ariadne_view_components 0.0.86.8 → 0.0.86.9

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: c4c4e1c01355e1029dfd73a5d99e59584de225da37e09193b1ce4c2f0ebe066f
4
- data.tar.gz: a7c816e8a5af436dc47e5fe144b37387b24bcc71c6e0eb15230911da6dbaca79
3
+ metadata.gz: 34b651779a45aa19177c9f4b531bee68fc395fa1c3d6cf4c313523409478b7a8
4
+ data.tar.gz: 4364f8b536bdd7773b3548cce0c0036cad93ef86cce1d18cd142985972c710db
5
5
  SHA512:
6
- metadata.gz: 1da3beafdadeb60d8fc0694a0643550f607ea4ba4b4c75df0da0edb2f11f5676ea15844b454eb71443d1bd986e51473a692247af0a1f1760d317649c9e48a9ba
7
- data.tar.gz: 65314736b356d78f9e5ce2d7b4cf4c56685f036053903efb4ba4f1e2a317175141234293adbc97c5ef08a0dd8b37ead403129f2ea4537a9415c489dc1415ec2a
6
+ metadata.gz: 3cabf846c3ce0f9a337dea2d2a793ab599469f7a1139ab75e6fc00800ac43a478e286cc07ea2a0ac139a3b3f2de5167aa82976e01bd15b80044a5fa6bcfce0b8
7
+ data.tar.gz: 5b20d8acdaf5a5a34838acd3feb687dcdf5acf37bbd68ef4b4fa29d744af268fea1e310fc9e113bb3bf27e9bbfef3709e1c82811633112ec6a684c104ed60bbc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.0.86.9] - 15-08-2024
2
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.8...v0.0.86.9
1
3
  # [v0.0.86.8] - 15-08-2024
2
4
  **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.86.7...v0.0.86.8
3
5
  # [v0.0.86.7] - 15-08-2024
@@ -30,13 +30,13 @@ module Ariadne
30
30
  end
31
31
 
32
32
  html_attrs[:data] ||= {}
33
- added_controller = html_attrs[:data].delete(:controller) || ""
34
- added_action = html_attrs[:data].delete(:action) || ""
33
+ added_controller = html_attrs[:data][:controller] || ""
34
+ added_action = html_attrs[:data][:action] || ""
35
35
  html_attrs[:data] = {
36
36
  controller: "#{stimulus_name} #{added_controller}",
37
37
  "#{stimulus_name}-target": "toggle",
38
38
  action: "click->#{stimulus_name}#toggle #{added_action}",
39
- }.merge(html_attrs[:data])
39
+ }.merge(html_attrs[:data].except(:controller, :action))
40
40
  end
41
41
 
42
42
  def before_render
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.86.8"
6
+ VERSION = "0.0.86.9"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.86.8
4
+ version: 0.0.86.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian