ariadne_view_components 0.0.30-x64-mingw32 → 0.0.31-x64-mingw32

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: 3b6b602b723d17314ab8064491411401f11a806fb1bc4663abe2753e44c5f2e2
4
- data.tar.gz: d6753c668ca735b9933bc2cea22ab80d2100f2b7810ea05bf2a8e3643e44ef81
3
+ metadata.gz: 81b1b17413703edaeb15f9b9319d28ebf58c2fe8ccf2e690edac563568ba65c2
4
+ data.tar.gz: f8b0eb276ec27011829b107d7fee3a831c1976d5bd34ce2f0bb8395a1ef83456
5
5
  SHA512:
6
- metadata.gz: 9e70a102227e6b6cefb00b17009ffc93dfd5aacab2702608ffd9127adf22f34495f82661fead416ec9ca93253ecf3098c708b26d6beafcb2a9cdd73566a63841
7
- data.tar.gz: 38f403b37978b17a79c5a7e892676a57fac12b27415f586f410deec9b5b391c661e913925f9292eb8594e322b7ae23b7261b5523a96e489c2b6e31cefd9427dc
6
+ metadata.gz: 056b441110a67137f7e0442f51dbf22af7c8ffc7e80320704d180cbdd6d131adcbed37759478ce8012b21d6f88f3a99ba55742f5503caf3b9abbfcf49a4b439e
7
+ data.tar.gz: 0d52e8a1703df6eda4ddb446de6dbb6195c7cd7b9df3b9767549143b4f50450b09c9ea1495c9fd0c77d1c39bae3f649efba0c657f67639557e722aa51fe7050b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.0.31](https://github.com/yettoapp/ariadne/tree/v0.0.31) (2023-03-21)
4
+
5
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.30...v0.0.31)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Fix form attrs [\#172](https://github.com/yettoapp/ariadne/pull/172) ([gjtorikian](https://github.com/gjtorikian))
10
+
3
11
  ## [v0.0.30](https://github.com/yettoapp/ariadne/tree/v0.0.30) (2023-03-08)
4
12
 
5
13
  [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.29...v0.0.30)
@@ -10,26 +10,16 @@ module Ariadne
10
10
  def ariadne_form_with(model: nil, scope: nil, url: nil, format: nil, classes: "", attributes: {}, **options, &block)
11
11
  options[:class] = class_names(DEFAULT_FORM_CLASSES, options[:class])
12
12
  options[:builder] ||= Ariadne::FormBuilder
13
- options[:html] ||= {}
13
+ options[:html] = attributes
14
14
 
15
- data = options.delete(:data) || {}
16
- attributes = attributes.delete_if do |key, value|
17
- key_name = key.to_s
18
- if key_name.start_with?("data-")
19
- data[key_name.sub(/^data-/, "").to_sym] = value
20
- true
21
- else
22
- false
23
- end
24
- end
25
-
26
- data[:controller] = if data.fetch(:controller, {}).present?
27
- "#{data[:controller]} ariadne-form"
15
+ data_controller = options[:html].fetch(:"data-controller", "")
16
+ options[:html][:"data-controller"] = if data_controller.present?
17
+ "#{data_controller} ariadne-form"
28
18
  else
29
19
  "ariadne-form"
30
20
  end
31
21
 
32
- form_with(model: model, scope: scope, url: url, format: format, data: data, attributes: attributes, **options, &block)
22
+ form_with(model: model, scope: scope, url: url, format: format, **options, &block)
33
23
  end
34
24
  end
35
25
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ariadne
4
4
  module ViewComponents
5
- VERSION = "0.0.30"
5
+ VERSION = "0.0.31"
6
6
  end
7
7
  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.30
4
+ version: 0.0.31
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-08 00:00:00.000000000 Z
11
+ date: 2023-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tailwind_merge