material_design 0.9.0 → 0.10.0
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/app/assets/stylesheets/material_design/chips.css +28 -7
- data/app/assets/stylesheets/material_design/menus.css +57 -0
- data/app/helpers/material_design/chip_helper.rb +4 -4
- data/app/helpers/material_design/menu_helper.rb +31 -0
- data/lib/material_design/railtie.rb +3 -2
- data/lib/material_design/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a307b88cc59be7be5ace27be05f2201ae397e9046fc71c3141eba67d58fdff42
|
4
|
+
data.tar.gz: 482b6f76ba707e1483643896913101b72521dc98736e7af8d145baed3c46c02d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ebb02dd9e0a39336e66673aef48467647949098404d3549a6dd396881c89f85a74141eff828d7091e53e3622b4b12edd96b90f0612eb5c0525463e63ec6515b
|
7
|
+
data.tar.gz: 1d9f16e88f991dfe4251d77aa06a327139fced3c3e7acea996f1db1d95c719f496259d43f4c09c8c0876a3f286977f47cf856b573053bea2de92e55316fc1b0a
|
@@ -32,6 +32,27 @@
|
|
32
32
|
}
|
33
33
|
|
34
34
|
.chip {
|
35
|
+
display: inline-flex;
|
36
|
+
align-items: center;
|
37
|
+
height: 32px;
|
38
|
+
padding: 8px 12px;
|
39
|
+
border-radius: 8px;
|
40
|
+
font-size: 14px;
|
41
|
+
font-weight: 500;
|
42
|
+
white-space: nowrap;
|
43
|
+
|
44
|
+
@media (prefers-color-scheme: light) {
|
45
|
+
background: rgb(var(--md-sys-light-secondary-fixed));
|
46
|
+
color: rgb(var(--md-sys-dark-on-secondary-fixed));
|
47
|
+
}
|
48
|
+
|
49
|
+
@media (prefers-color-scheme: dark) {
|
50
|
+
background: rgb(var(--md-sys-dark-secondary-fixed));
|
51
|
+
color: rgb(var(--md-sys-dark-on-secondary-fixed));
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
.filter-chip {
|
35
56
|
align-items: center;
|
36
57
|
border-radius: 8px;
|
37
58
|
cursor: pointer;
|
@@ -50,13 +71,13 @@
|
|
50
71
|
}
|
51
72
|
}
|
52
73
|
|
53
|
-
.chip:hover {
|
74
|
+
.filter-chip:hover {
|
54
75
|
background: var(--md-sys-hover-layer-state)
|
55
76
|
radial-gradient(circle, transparent 1%, var(--md-sys-hover-layer-state) 1%)
|
56
77
|
center/15000%;
|
57
78
|
}
|
58
79
|
|
59
|
-
.chip.selected {
|
80
|
+
.filter-chip.selected {
|
60
81
|
border-color: transparent;
|
61
82
|
@media (prefers-color-scheme: light) {
|
62
83
|
background: rgb(var(--md-sys-light-secondary-container));
|
@@ -69,7 +90,7 @@
|
|
69
90
|
}
|
70
91
|
}
|
71
92
|
|
72
|
-
.chip.selected:hover {
|
93
|
+
.filter-chip.selected:hover {
|
73
94
|
background: var(--md-sys-hover-selected-state)
|
74
95
|
radial-gradient(
|
75
96
|
circle,
|
@@ -79,7 +100,7 @@
|
|
79
100
|
center/15000%;
|
80
101
|
}
|
81
102
|
|
82
|
-
.chip__container {
|
103
|
+
.filter-chip__container {
|
83
104
|
box-sizing: border-box;
|
84
105
|
display: inline-block;
|
85
106
|
margin: 0;
|
@@ -87,7 +108,7 @@
|
|
87
108
|
vertical-align: middle;
|
88
109
|
}
|
89
110
|
|
90
|
-
.chip__dropdown {
|
111
|
+
.filter-chip__dropdown {
|
91
112
|
box-sizing: border-box;
|
92
113
|
display: block;
|
93
114
|
max-width: calc(100vw - 60px);
|
@@ -98,12 +119,12 @@
|
|
98
119
|
}
|
99
120
|
|
100
121
|
@media (min-width: 768px) {
|
101
|
-
.chip__dropdown {
|
122
|
+
.filter-chip__dropdown {
|
102
123
|
max-width: calc(100vw - 140px);
|
103
124
|
}
|
104
125
|
}
|
105
126
|
|
106
|
-
.chip__label {
|
127
|
+
.filter-chip__label {
|
107
128
|
font-size: 14px;
|
108
129
|
font-weight: 500;
|
109
130
|
padding: 0px 8px;
|
@@ -0,0 +1,57 @@
|
|
1
|
+
.menu {
|
2
|
+
position: absolute;
|
3
|
+
min-width: 200px;
|
4
|
+
max-width: max-content;
|
5
|
+
border-radius: 0.5rem;
|
6
|
+
z-index: 20;
|
7
|
+
box-shadow: 0 2px 10px rgb(0, 2, 6, 0.3), 0 2px 10px rgb(0, 1, 2, 0.2);
|
8
|
+
|
9
|
+
@media (prefers-color-scheme: light) {
|
10
|
+
background: rgb(var(--md-sys-light-surface-container));
|
11
|
+
}
|
12
|
+
|
13
|
+
@media (prefers-color-scheme: dark) {
|
14
|
+
background: rgb(var(--md-sys-dark-surface-container));
|
15
|
+
}
|
16
|
+
|
17
|
+
.menu__item {
|
18
|
+
width: 100%;
|
19
|
+
display: flex;
|
20
|
+
gap: 0.75rem;
|
21
|
+
padding: 0.75rem 1rem;
|
22
|
+
cursor: pointer;
|
23
|
+
|
24
|
+
&.divider {
|
25
|
+
border-bottom: 1px solid;
|
26
|
+
|
27
|
+
@media (prefers-color-scheme: light) {
|
28
|
+
background: rgb(var(--md-sys-light-surface-variant));
|
29
|
+
}
|
30
|
+
|
31
|
+
@media (prefers-color-scheme: dark) {
|
32
|
+
background: rgb(var(--md-sys-dark-surface-variant));
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
&:hover {
|
37
|
+
@media (prefers-color-scheme: light) {
|
38
|
+
background: rgb(var(--md-sys-light-on-surface) / 0.08);
|
39
|
+
}
|
40
|
+
|
41
|
+
@media (prefers-color-scheme: dark) {
|
42
|
+
background: rgb(var(--md-sys-dark-on-surface) / 0.08);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
&:active {
|
47
|
+
@media (prefers-color-scheme: light) {
|
48
|
+
background: rgb(var(--md-sys-light-surface-container-highest));
|
49
|
+
}
|
50
|
+
|
51
|
+
@media (prefers-color-scheme: dark) {
|
52
|
+
background: rgb(var(--md-sys-dark-surface-container-highest));
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
}
|
57
|
+
}
|
@@ -3,15 +3,15 @@ module MaterialDesign
|
|
3
3
|
def md_filter_chip(label=nil, leading_icon: nil, trailing_icon: nil, selected: false, data: {}, style: nil, &block)
|
4
4
|
merged_data = data.merge(controller: "filter-chip", filter_chip_selected_value: selected, action: "#{block_given? ? "click->filter-chip#toggleDropdown" : "click->filter-chip#toggleSelect"}")
|
5
5
|
|
6
|
-
chip_content = content_tag(:div, class: "chip__container", data: merged_data) do
|
7
|
-
concat(content_tag(:div, class: class_names("chip", selected: selected), data: { filter_chip_target: "chip"}, style: style) do
|
6
|
+
chip_content = content_tag(:div, class: "filter-chip__container", data: merged_data) do
|
7
|
+
concat(content_tag(:div, class: class_names("filter-chip", selected: selected), data: { filter_chip_target: "chip"}, style: style) do
|
8
8
|
concat(content_tag(:span, class: "dropdown--hidden", data: {filter_chip_target: "selectedIcon"}) do
|
9
9
|
render("material_design/icons/icon", locals: { icon: "check", size: 18 })
|
10
10
|
end)
|
11
11
|
concat(content_tag(:span, data: {filter_chip_target: "leadingIcon"}) do
|
12
12
|
render("material_design/icons/icon", locals: { icon: leading_icon, size: 18 }) if leading_icon
|
13
13
|
end)
|
14
|
-
concat(content_tag(:p, label, class: "chip__label", data: {filter_chip_target: "label"}))
|
14
|
+
concat(content_tag(:p, label, class: "filter-chip__label", data: {filter_chip_target: "label"}))
|
15
15
|
concat(content_tag(:span, data: {filter_chip_target: "chevronIcon"}) do
|
16
16
|
render("material_design/icons/icon", locals: { icon: "arrow_drop_down", size: 18 })
|
17
17
|
end) if block_given?
|
@@ -20,7 +20,7 @@ module MaterialDesign
|
|
20
20
|
end)
|
21
21
|
end)
|
22
22
|
if block_given?
|
23
|
-
concat(content_tag(:div, class: "dropdown--hidden chip__dropdown", data: {filter_chip_target: "dropdown"}) do
|
23
|
+
concat(content_tag(:div, class: "dropdown--hidden filter-chip__dropdown", data: {filter_chip_target: "dropdown"}) do
|
24
24
|
capture(&block)
|
25
25
|
end)
|
26
26
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module MaterialDesign
|
2
|
+
module MenuHelper
|
3
|
+
def md_menu(menu_options: [], data: {}, form: nil, attribute: nil)
|
4
|
+
content_tag(:div, class: "menu", data: data) do
|
5
|
+
menu_options.each do |option|
|
6
|
+
concat(menu_option(option, form, attribute))
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
def menu_option(option, form, attribute)
|
12
|
+
if option[:path]
|
13
|
+
link_to option[:path], data: option[:data], method: option[:method] do
|
14
|
+
content_tag(:div, class: class_names("menu__item", divider: option[:divider])) do
|
15
|
+
concat(render("material_design/icons/icon", locals: { icon: option[:icon], size: 18 })) if option[:icon]
|
16
|
+
concat(content_tag(:span, option[:label]))
|
17
|
+
end
|
18
|
+
end
|
19
|
+
elsif form
|
20
|
+
form.label "#{attribute}_#{option[:value]}", option[:label] do
|
21
|
+
concat(form.radio_button attribute, option[:value], class: "hidden", onchange: option[:onchange], checked: option[:checked])
|
22
|
+
concat(content_tag(:div, class: class_names("menu__item", divider: option[:divider])) do
|
23
|
+
concat(render("material_design/icons/icon", locals: { icon: option[:icon], size: 18 })) if option[:icon]
|
24
|
+
concat(content_tag(:span, option[:label]))
|
25
|
+
end)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
@@ -1,11 +1,12 @@
|
|
1
1
|
require "rails/railtie"
|
2
2
|
|
3
|
-
module
|
3
|
+
module MaterialDesign
|
4
4
|
class Railtie < Rails::Railtie
|
5
5
|
initializer "material_design.action_controller" do
|
6
|
-
ActiveSupport.on_load(:action_controller_base) do
|
6
|
+
ActiveSupport.on_load(:action_controller_base) do
|
7
7
|
helper MaterialDesign::ButtonHelper
|
8
8
|
helper MaterialDesign::ChipHelper
|
9
|
+
helper MaterialDesign::MenuHelper
|
9
10
|
end
|
10
11
|
end
|
11
12
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Yutaka Nakanishi
|
@@ -9,10 +9,10 @@ authors:
|
|
9
9
|
- Mariana Negrão Trancoso
|
10
10
|
- Prscila Sabino
|
11
11
|
- Bianca Cristina Ramos
|
12
|
-
autorequire:
|
12
|
+
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2024-10-
|
15
|
+
date: 2024-10-30 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: rails
|
@@ -76,6 +76,7 @@ files:
|
|
76
76
|
- app/assets/stylesheets/material_design/dividers.css
|
77
77
|
- app/assets/stylesheets/material_design/icons.css
|
78
78
|
- app/assets/stylesheets/material_design/lists.css
|
79
|
+
- app/assets/stylesheets/material_design/menus.css
|
79
80
|
- app/assets/stylesheets/material_design/navigation.css
|
80
81
|
- app/assets/stylesheets/material_design/segmented_button.css
|
81
82
|
- app/assets/stylesheets/material_design/tabs.css
|
@@ -84,6 +85,7 @@ files:
|
|
84
85
|
- app/helpers/material_design/application_helper.rb
|
85
86
|
- app/helpers/material_design/button_helper.rb
|
86
87
|
- app/helpers/material_design/chip_helper.rb
|
88
|
+
- app/helpers/material_design/menu_helper.rb
|
87
89
|
- app/javascript/material_design/application.js
|
88
90
|
- app/javascript/material_design/controllers/application.js
|
89
91
|
- app/javascript/material_design/controllers/filter_chip_controller.js
|
@@ -2252,7 +2254,7 @@ licenses:
|
|
2252
2254
|
- MIT
|
2253
2255
|
metadata:
|
2254
2256
|
homepage_uri: https://rubygems.org/gems/material_design
|
2255
|
-
post_install_message:
|
2257
|
+
post_install_message:
|
2256
2258
|
rdoc_options: []
|
2257
2259
|
require_paths:
|
2258
2260
|
- lib
|
@@ -2268,7 +2270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2268
2270
|
version: '0'
|
2269
2271
|
requirements: []
|
2270
2272
|
rubygems_version: 3.5.21
|
2271
|
-
signing_key:
|
2273
|
+
signing_key:
|
2272
2274
|
specification_version: 4
|
2273
2275
|
summary: Material Design
|
2274
2276
|
test_files: []
|