material-components-web 2.2.0 → 2.2.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/lib/material_components_web/railtie.rb +3 -3
- 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: 94cfc3c3962077dd58d8c4c64bfa910137f1e5959d00e801713a9af3eeb0466a
|
4
|
+
data.tar.gz: c34d494955601041b4131f481a0a6f6b2da7fdc8d1e7a732cd55ea543ae937ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7971fe55aaa403d6e7d243b0bcf5a25a63ac411a223b046a21064225da0e4ae5d6ae79a2bb2523ee4fb90115720cda7266076a364908fabc9f96b41cc73c34ca
|
7
|
+
data.tar.gz: 325a7bdccac73947500d28ac6b75c650bb064e31e331e53ca2fc66cbf4f1052c09deedebcba71e561dbaf8b28b3a71783f6e8676d08bf559bccedeb0ae1474f5
|
data/CHANGELOG.md
CHANGED
@@ -7,16 +7,16 @@ module MaterialComponentsWeb
|
|
7
7
|
Mozaic.configure do |config|
|
8
8
|
config.define_component 'mdc-checkbox', class: '', label: false, checked: false, disabled: false
|
9
9
|
config.define_component 'mdc-drawer', class: '', type: 'permanent', above_toolbar: false do |options|
|
10
|
-
options[:class]
|
10
|
+
options[:class] += " mdc-drawer mdc-drawer--#{options[:type]}"
|
11
11
|
options
|
12
12
|
end
|
13
13
|
config.define_component 'mdc-form-field', class: '' do |options|
|
14
|
-
options[:class]
|
14
|
+
options[:class] += ' mdc-form-field'
|
15
15
|
options
|
16
16
|
end
|
17
17
|
config.define_component 'mdc-radio', class: '', label: false, checked: false, disabled: false
|
18
18
|
config.define_component 'mdc-toolbar', class: '', type: 'permanent', above_toolbar: false do |options|
|
19
|
-
options[:class]
|
19
|
+
options[:class] += ' mdc-toolbar'
|
20
20
|
options
|
21
21
|
end
|
22
22
|
end
|