material-components-web 2.0.3 → 2.0.4

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: d32a229ac0fd458f42503ece88e74dccb6b968ffd4e3a99047f8982244e87645
4
- data.tar.gz: 5ef03e4d6ff2cf0d0aa1c9f223256332858e26495be146b92c2a9259f58f0e5a
3
+ metadata.gz: adb6399f41b0a2fdcb1e64f404596e38c16c9a82878ccbdbbcebbf06d0aa5c99
4
+ data.tar.gz: 8c11bf3e93c82a71be7b553992119718d1b01600b6336b1553bcc6887b97544e
5
5
  SHA512:
6
- metadata.gz: 659aa76b325ca22539fd2500574d03164d2634bc9583e5a6c9160273fa1935a215563956d274ed8323b61a3c889ee067e14512250821e54576836500128aef2a
7
- data.tar.gz: af885c1f22bc7feb7b670050d56d8a234879794f7bc0f2441d5b505de5e26f50a36190eab0111155db580096d76a4d8c5742468434c7d23f2a712f802271fed8
6
+ metadata.gz: fb512df537cf9a8001bdca3b52e611da9418fe7594946b71ed20b77b35232fa9daaac8aeada168855bd08a70ce740af91411097dd34562f1d8f9627cad7decb7
7
+ data.tar.gz: 85793cffd3d0e8cd7bbe3dcc46a2236d0986e8b18555d0603e4c883f21cea36daabbcf6d4d39bdfdb232b21432a0368036333a7910a62faf9792c4409677e077
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@
4
4
 
5
5
  * nothing yet
6
6
 
7
+ ### 2.0.4 - 2018/01/13
8
+
9
+ * bugfixes
10
+ * fixed `mdc-radio` `checked` option
11
+
7
12
  ### 2.0.3 - 2018/01/13
8
13
 
9
14
  * bugfixes
@@ -1,5 +1,5 @@
1
1
  <div class="mdc-radio<%= ' mdc-radio--disabled' if options[:disabled] %>">
2
- <input checked="<%= options[:checked] %>" class="mdc-radio__native-control" type="radio" value="<%= options[:value] %>" name="<%= options[:class_name] ? options[:class_name].to_s + '[' + options[:attribute].to_s + ']' : options[:attribute].to_s %>" id="<%= options[:class_name] ? options[:class_name].to_s + '_' + options[:attribute].to_s + '_' + options[:value].to_s : options[:attribute].to_s + '_' + options[:value].to_s %>" />
2
+ <input class="mdc-radio__native-control" type="radio"<%= ' checked="true"' if options[:checked] %> value="<%= options[:value] %>" name="<%= options[:class_name] ? options[:class_name].to_s + '[' + options[:attribute].to_s + ']' : options[:attribute].to_s %>" id="<%= options[:class_name] ? options[:class_name].to_s + '_' + options[:attribute].to_s + '_' + options[:value].to_s : options[:attribute].to_s + '_' + options[:value].to_s %>" />
3
3
  <div class="mdc-radio__background">
4
4
  <div class="mdc-radio__outer-circle"></div>
5
5
  <div class="mdc-radio__inner-circle"></div>
@@ -1,5 +1,5 @@
1
1
  module MaterialComponentsWeb
2
2
 
3
- VERSION = '2.0.3'
3
+ VERSION = '2.0.4'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: material-components-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter