ariadne_view_components 0.0.32-x64-mingw32 → 0.0.34-x64-mingw32

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: b089a8025cf66c999da321ae913794d502235e0371204576182acc00c9ef50f0
4
- data.tar.gz: f83f6cbeacd48ad5c93b5be3e33792eef21242320691f1884c47de6b6c246bdd
3
+ metadata.gz: bedd978e7fef0833e2ec82e63e5f7585da6761051c5ef287f6ff0150701e5ed9
4
+ data.tar.gz: 1008c87cf1fcc5c7b04d321ba75ae15370c9cefe18dea69be6ded686858e054d
5
5
  SHA512:
6
- metadata.gz: 56c91f72c99ffd10e2c4651bc7c2b0ba00311b0e609108faf45597f5db6ca13159bafb1cf043979c00b5d429f8c00de4b065fa911b3911d8e5d0cba2c24846a9
7
- data.tar.gz: 7218c88f59353f98f1789878613bee8cb4c4cddc5fc798c04e91f96e81b2f4bd844bea74296707e648b4299a0252fab5dff564db706857fbc4415e6d27546fca
6
+ metadata.gz: 681d5f5eaeb762c6e27b2b2907cb335dc09f1de07f3b1be11e9941821b23810d18d82ee5828d87584622a593d51a7342139bdd3040a61ea96bd9fb53fb136152
7
+ data.tar.gz: 96812982275eac3d55867a8a6dd407c696fdfd6cd4add27b99b5da301f14e78ca25fd8b80d2606c29382a0f47e405531ef1abc44e67a1154e0e9ec7501135009
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.0.34](https://github.com/yettoapp/ariadne/tree/v0.0.34) (2023-03-21)
4
+
5
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.33...v0.0.34)
6
+
7
+ ## [v0.0.33](https://github.com/yettoapp/ariadne/tree/v0.0.33) (2023-03-21)
8
+
9
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.32...v0.0.33)
10
+
3
11
  ## [v0.0.32](https://github.com/yettoapp/ariadne/tree/v0.0.32) (2023-03-21)
4
12
 
5
13
  [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.31...v0.0.32)
@@ -2,6 +2,9 @@
2
2
 
3
3
  module Ariadne
4
4
  # :nodoc:
5
+ # Many of the form methods simply call out to the corresponding ActionView::Helpers::FormBuilder methods,
6
+ # documented at https://api.rubyonrails.org/classes/ActionView/Helpers/FormBuilder.html, with
7
+ # default Tailwind classes applied.
5
8
  class FormBuilder < ActionView::Helpers::FormBuilder
6
9
  include ClassNameHelper
7
10
 
@@ -27,9 +30,9 @@ module Ariadne
27
30
  end
28
31
 
29
32
  DEFAULT_LABEL_CLASSES = "ariadne-block ariadne-text-sm ariadne-font-medium ariadne-text-gray-700 ariadne-pl-2"
30
- def label(object_name, content, options = {}, &block)
33
+ def label(method, text = nil, options = {}, &block)
31
34
  options[:class] = class_names(DEFAULT_LABEL_CLASSES, options.delete(:classes))
32
- super(object_name, content, options, &block)
35
+ super(method, text, options, &block)
33
36
  end
34
37
 
35
38
  DEFAULT_TEXT_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 ariadne-block ariadne-w-full sm:ariadne-text-sm ariadne-border-gray-300 ariadne-rounded-md"
@@ -39,15 +42,15 @@ module Ariadne
39
42
  end
40
43
 
41
44
  DEFAULT_CHECKBOX_CLASSES = "focus:ariadne-ring-slate-500 ariadne-h-4 ariadne-w-4 ariadne-text-slate-600 ariadne-border-slate-300 ariadne-rounded"
42
- def check_box(object_name, method, options = {}, checked_value = "1", unchecked_value = "0")
45
+ def check_box(method, options = {}, checked_value = "1", unchecked_value = "0")
43
46
  options[:class] = class_names(DEFAULT_CHECKBOX_CLASSES, options.delete(:classes))
44
- super(object_name, method, options, checked_value, unchecked_value)
47
+ super(method, options, checked_value, unchecked_value)
45
48
  end
46
49
 
47
50
  DEFAULT_RADIO_CLASSES = "focus:ariadne-ring-slate-500 ariadne-h-4 ariadne-w-4 ariadne-text-slate-600 ariadne-border-gray-300 ariadne-rounded"
48
- def radio_button(object_name, method, tag_value, options = {})
51
+ def radio_button(method, tag_value, options = {})
49
52
  options[:class] = class_names(DEFAULT_RADIO_CLASSES, options.delete(:classes))
50
- super(object_name, method, tag_value, **options)
53
+ super(method, tag_value, **options)
51
54
  end
52
55
 
53
56
  DEFAULT_TEXTAREA_CLASSES = "ariadne-shadow-sm focus:ariadne-ring-slate-500 focus:ariadne-border-slate-500 ariadne-block ariadne-w-full sm:ariadne-text-sm ariadne-border ariadne-border-gray-300 ariadne-rounded-md"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ariadne
4
4
  module ViewComponents
5
- VERSION = "0.0.32"
5
+ VERSION = "0.0.34"
6
6
  end
7
7
  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.32
4
+ version: 0.0.34
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Garen J. Torikian