material-components-web 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/app/helpers/material_components_web/mdc_checkbox/view_helper.rb +1 -1
- data/app/helpers/material_components_web/mdc_form_field/view_helper.rb +1 -1
- data/app/helpers/material_components_web/mdc_radio/view_helper.rb +1 -1
- data/lib/material_components_web/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: 3c3c5ae823cc98e5e872464b88022950ddd8c1550c6ce3c6af417e2f493fab77
|
4
|
+
data.tar.gz: c82bf021a2e7fc0b20301c001fffbb69338dd6143c81baf77e1e05da821975b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1b9c1345bcc7998e3b4db1e2b3407a7bea99d73691e35bd87f878803741f8fef1a869558e5e003ee15e1248808a7c92c7997188cc53f568efb027ea629aaab2
|
7
|
+
data.tar.gz: 998d33420cc075b2bf68765ee72c03a0bc888cdc6dd925c500816f18860f5cecc77f3c38128895a9cc02d18c5b4259a466ffea24b9fc05893bef4d1def90d824
|
data/CHANGELOG.md
CHANGED
@@ -11,7 +11,7 @@ module MaterialComponentsWeb
|
|
11
11
|
}
|
12
12
|
defaults.merge! options
|
13
13
|
|
14
|
-
render partial: 'material_components_web/mdc_checkbox',
|
14
|
+
render partial: 'material_components_web/mdc_checkbox', locals: { attribute: attribute, options: options }
|
15
15
|
end
|
16
16
|
|
17
17
|
end
|
@@ -6,7 +6,7 @@ module MaterialComponentsWeb
|
|
6
6
|
defaults = {}
|
7
7
|
defaults.merge! options
|
8
8
|
|
9
|
-
render partial: 'material_components_web/mdc_form_field',
|
9
|
+
render partial: 'material_components_web/mdc_form_field', locals: { options: options, block: capture(&block) }
|
10
10
|
end
|
11
11
|
|
12
12
|
end
|
@@ -11,7 +11,7 @@ module MaterialComponentsWeb
|
|
11
11
|
}
|
12
12
|
defaults.merge! options
|
13
13
|
|
14
|
-
render partial: 'material_components_web/mdc_radio',
|
14
|
+
render partial: 'material_components_web/mdc_radio', locals: { attribute: attribute, value: value, options: options }
|
15
15
|
end
|
16
16
|
|
17
17
|
end
|