ariadne_view_components 0.0.31-aarch64-linux → 0.0.33-aarch64-linux
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/app/lib/ariadne/form_builder.rb +1 -1
- data/lib/ariadne/view_components/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 487959e1068030b101d9985bcb2b97201b74ec26f1b1c5a9f7824727c7fc12bb
|
4
|
+
data.tar.gz: 9c6e6ad38b4a1ebfdd789fd06d45bd5402b230b1439b12ec879f9e5a512c0b6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fccebf60e809834c98203e251350c661307edc070bed08c1bf599619821db2865c671c6fc3a19e095f6b4323215e011b2d344dc09328a9229071e3016b228ac
|
7
|
+
data.tar.gz: 4fe83b499dc7c8163eb6d11448adf82a3b500b0f0c0aec8cdbd820cedc44ad1d14b176818c62124f42e1ab823349ffd18f6dec78e463318eb8719896b5ba597a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.0.33](https://github.com/yettoapp/ariadne/tree/v0.0.33) (2023-03-21)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.32...v0.0.33)
|
6
|
+
|
7
|
+
## [v0.0.32](https://github.com/yettoapp/ariadne/tree/v0.0.32) (2023-03-21)
|
8
|
+
|
9
|
+
[Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.31...v0.0.32)
|
10
|
+
|
3
11
|
## [v0.0.31](https://github.com/yettoapp/ariadne/tree/v0.0.31) (2023-03-21)
|
4
12
|
|
5
13
|
[Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.30...v0.0.31)
|
@@ -39,7 +39,7 @@ module Ariadne
|
|
39
39
|
end
|
40
40
|
|
41
41
|
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(
|
42
|
+
def check_box(method, options = {}, checked_value = "1", unchecked_value = "0")
|
43
43
|
options[:class] = class_names(DEFAULT_CHECKBOX_CLASSES, options.delete(:classes))
|
44
44
|
super(method, options, checked_value, unchecked_value)
|
45
45
|
end
|