material_design 0.7.0 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 267d95cd22d5c516fdd24f30262e6a6c5a11b9804c82be744167f385f644d38a
4
- data.tar.gz: 2b04c3523424970989ec9f41946f9e24e18f8cd66c984c72404dfc92af792e8c
3
+ metadata.gz: 501465343ada2fe0bb7395ee4c3b4a5c9b7445900652ce708f4c3624624824b1
4
+ data.tar.gz: 1521b11bdda2eed12d22b25b4bfaf7c596967b90c0c0fe48301eadbdb2cfc63c
5
5
  SHA512:
6
- metadata.gz: 2fcc6c55b74177b993d7d75b8a546edf70470b9cb79032048ca9511349623acf6187968e800ac9042e2cdbabf4a9cc1667a118129ec652610d4a4aabed50601a
7
- data.tar.gz: 4282b24f18fb7a2e04487804449f833aa45f83b03f0c18ddddff7ea19adf2e5d9d5748f06fc06f25517ad5f0ea478f0bcea98b512432d1225ff2dcf7b5369602
6
+ metadata.gz: ef3296019b0cb8baf3c0f6555901e82c7e13d7438a137987bc792407dd80f3cb3022a0b8cd5bd785119320b533001f5e0f3ad375eea61da5082398e7afeb5a2e
7
+ data.tar.gz: dd14b3ed25d14787d566dcff0a304e250f1d37ad111925d434de21e9ee56b47113323aa16a1525ca48a35ae6d555a76389253e32255dab18aa05a81c906f5a15
@@ -0,0 +1,3 @@
1
+ //= link_directory ../stylesheets/material_design .css
2
+ //= link_directory ../../javascript/material_design .js
3
+ //= link_directory ../../javascript/material_design/controllers .js
@@ -0,0 +1,118 @@
1
+ @media (prefers-color-scheme: light) {
2
+ :root {
3
+ --md-sys-hover-layer-state: rgb(
4
+ var(--md-sys-light-on-surface-variant) /
5
+ var(--md-sys-light-state-hover-state-layer-opacity)
6
+ );
7
+ --md-sys-hover-selected-state: rgb(
8
+ var(--md-sys-light-on-secondary-container) /
9
+ var(--md-sys-light-state-hover-state-layer-opacity)
10
+ );
11
+ --md-sys-pressed-layer-state: rgb(
12
+ var(--md-sys-light-on-secondary-container) / 0.1
13
+ );
14
+ }
15
+ }
16
+
17
+ @media (prefers-color-scheme: dark) {
18
+ :root {
19
+ --md-sys-hover-layer-state: rgb(
20
+ var(--md-sys-dark-on-surface-variant) /
21
+ var(--md-sys-dark-state-hover-state-layer-opacity)
22
+ );
23
+ --md-sys-hover-selected-state: rgb(
24
+ var(--md-sys-dark-on-secondary-container) /
25
+ var(--md-sys-dark-state-hover-state-layer-opacity)
26
+ );
27
+ --md-sys-pressed-layer-state: rgb(
28
+ var(--md-sys-dark-on-secondary-container) /
29
+ var(--md-sys-dark-state-pressed-state-layer-opacity)
30
+ );
31
+ }
32
+ }
33
+
34
+ .chip {
35
+ align-items: center;
36
+ border-radius: 8px;
37
+ cursor: pointer;
38
+ display: inline-flex;
39
+ height: 32px;
40
+ padding: 0px 8px;
41
+ white-space: nowrap;
42
+ @media (prefers-color-scheme: light) {
43
+ border: 1px solid rgb(var(--md-sys-light-outline-variant));
44
+ color: rgb(var(--md-sys-light-on-surface-variant));
45
+ }
46
+
47
+ @media (prefers-color-scheme: dark) {
48
+ border: 1px solid rgb(var(--md-sys-dark-outline-variant));
49
+ color: rgb(var(--md-sys-dark-on-surface-variant));
50
+ }
51
+ }
52
+
53
+ .chip:hover {
54
+ background: var(--md-sys-hover-layer-state)
55
+ radial-gradient(circle, transparent 1%, var(--md-sys-hover-layer-state) 1%)
56
+ center/15000%;
57
+ }
58
+
59
+ .chip.selected {
60
+ border-color: transparent;
61
+ @media (prefers-color-scheme: light) {
62
+ background: rgb(var(--md-sys-light-secondary-container));
63
+ color: rgb(var(--md-sys-light-on-secondary-container));
64
+ }
65
+
66
+ @media (prefers-color-scheme: dark) {
67
+ background: rgb(var(--md-sys-dark-secondary-container));
68
+ color: rgb(var(--md-sys-dark-on-secondary-container));
69
+ }
70
+ }
71
+
72
+ .chip.selected:hover {
73
+ background: var(--md-sys-hover-selected-state)
74
+ radial-gradient(
75
+ circle,
76
+ transparent 1%,
77
+ var(--md-sys-hover-selected-state) 1%
78
+ )
79
+ center/15000%;
80
+ }
81
+
82
+ .chip__container {
83
+ box-sizing: border-box;
84
+ display: inline-block;
85
+ margin: 0;
86
+ position: relative;
87
+ vertical-align: middle;
88
+ }
89
+
90
+ .chip__dropdown {
91
+ box-sizing: border-box;
92
+ display: block;
93
+ max-width: calc(100vw - 60px);
94
+ min-width: 100%;
95
+ position: absolute;
96
+ width: fit-content;
97
+ z-index: 1051;
98
+ }
99
+
100
+ @media (min-width: 768px) {
101
+ .chip__dropdown {
102
+ max-width: calc(100vw - 140px);
103
+ }
104
+ }
105
+
106
+ .chip__label {
107
+ font-size: 14px;
108
+ font-weight: 500;
109
+ padding: 0px 8px;
110
+ }
111
+
112
+ .dropdown--hidden {
113
+ display: none;
114
+ }
115
+
116
+ .rotate-180 {
117
+ transform: rotate(180deg);
118
+ }
@@ -0,0 +1,56 @@
1
+ .segmented-control {
2
+ display: flex;
3
+ border: 1px solid #ccc;
4
+ border-radius: 30px;
5
+ overflow: hidden;
6
+ background-color: var(--md-sys-surface);
7
+ width: fit-content;
8
+ }
9
+
10
+ .segmented-control label {
11
+ display: flex;
12
+ align-items: center;
13
+ padding: 8px 16px;
14
+ cursor: pointer;
15
+ border-left: 1px solid #ccc;
16
+ transition: background-color 0.3s ease;
17
+ font-size: 14px;
18
+ color: var(--md-sys-on-surface);
19
+ background-color: transparent;
20
+ }
21
+
22
+ .segmented-control label:first-child {
23
+ border-left: none;
24
+ border-radius: 12px 0 0 12px;
25
+ }
26
+
27
+ .segmented-control label:last-child {
28
+ border-radius: 0 12px 12px 0;
29
+ }
30
+
31
+ .segmented-control input[type="radio"] {
32
+ display: none;
33
+ }
34
+
35
+ .segmented-control input[type="radio"]:checked + label {
36
+ background-color: rgb(var(--md-sys-light-primary-container)) !important;
37
+ color: rgb(var(--md-sys-on-primary-container));
38
+ }
39
+
40
+ .segmented-control label.active {
41
+ background-color: rgb(var(--md-sys-light-primary-container)) !important;
42
+ color: rgb(var(--md-sys-on-primary-container));
43
+ }
44
+
45
+ .checkmark {
46
+ margin-right: 8px;
47
+ visibility: hidden;
48
+ }
49
+
50
+ .segmented-control input[type="radio"]:checked + label .checkmark {
51
+ visibility: visible;
52
+ }
53
+
54
+ .segmented-control label:hover {
55
+ background-color: rgba(0, 0, 0, 0.04);
56
+ }
@@ -0,0 +1,32 @@
1
+ module MaterialDesign
2
+ module ChipHelper
3
+ def md_filter_chip(label=nil, leading_icon: nil, trailing_icon: nil, selected: false, data: {}, style: nil, &block)
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
+
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
8
+ concat(content_tag(:span, class: "dropdown--hidden", data: {filter_chip_target: "selectedIcon"}) do
9
+ render("material_design/icons/icon", locals: { icon: "check", size: 18 })
10
+ end)
11
+ concat(content_tag(:span, data: {filter_chip_target: "leadingIcon"}) do
12
+ render("material_design/icons/icon", locals: { icon: leading_icon, size: 18 }) if leading_icon
13
+ end)
14
+ concat(content_tag(:p, label, class: "chip__label", data: {filter_chip_target: "label"}))
15
+ concat(content_tag(:span, data: {filter_chip_target: "chevronIcon"}) do
16
+ render("material_design/icons/icon", locals: { icon: "arrow_drop_down", size: 18 })
17
+ end) if block_given?
18
+ concat(content_tag(:span, data: {filter_chip_target: "trailingIcon"}) do
19
+ render("material_design/icons/icon", locals: { icon: trailing_icon, size: 18 }) if trailing_icon && !block_given?
20
+ end)
21
+ end)
22
+ if block_given?
23
+ concat(content_tag(:div, class: "dropdown--hidden chip__dropdown", data: {filter_chip_target: "dropdown"}) do
24
+ capture(&block)
25
+ end)
26
+ end
27
+ end
28
+
29
+ chip_content
30
+ end
31
+ end
32
+ end
@@ -0,0 +1 @@
1
+ import "controllers";
@@ -0,0 +1,9 @@
1
+ import { Application } from "@hotwired/stimulus";
2
+
3
+ const application = Application.start();
4
+
5
+ // Configure Stimulus development experience
6
+ application.debug = false;
7
+ window.Stimulus = application;
8
+
9
+ export { application };
@@ -0,0 +1,73 @@
1
+ import { Controller } from "@hotwired/stimulus";
2
+ import { useClickOutside, useTransition } from "stimulus-use";
3
+
4
+ export default class extends Controller {
5
+ static targets = [
6
+ "chevronIcon",
7
+ "chip",
8
+ "dropdown",
9
+ "label",
10
+ "leadingIcon",
11
+ "selectedIcon",
12
+ "trailingIcon",
13
+ ];
14
+ static values = { open: Boolean, selected: Boolean };
15
+
16
+ connect() {
17
+ this.setSelected();
18
+
19
+ useTransition(this, {
20
+ element: this.dropdownTarget,
21
+ enterActive: "transition ease-out duration-100",
22
+ enterFrom: "transform opacity-0 scale-95",
23
+ enterTo: "transform opacity-100 scale-100",
24
+ leaveActive: "transition ease-in duration-75",
25
+ leaveFrom: "transform opacity-100 scale-100",
26
+ leaveTo: "transform opacity-0 scale-95",
27
+ hiddenClass: "dropdown--hidden",
28
+ transitioned: false,
29
+ });
30
+
31
+ useClickOutside(this);
32
+
33
+ if (this.openValue) {
34
+ this.openDropdown();
35
+ } else {
36
+ this.closeDropdown();
37
+ }
38
+ }
39
+
40
+ clickOutside() {
41
+ this.closeDropdown();
42
+ }
43
+
44
+ toggleDropdown() {
45
+ if (this.dropdownTarget.classList.contains("dropdown--hidden")) {
46
+ this.openDropdown();
47
+ } else {
48
+ this.closeDropdown();
49
+ }
50
+ }
51
+
52
+ openDropdown() {
53
+ this.enter();
54
+ this.chevronIconTarget.classList.add("rotate-180");
55
+ }
56
+
57
+ closeDropdown() {
58
+ this.leave();
59
+ this.chevronIconTarget.classList.remove("rotate-180");
60
+ }
61
+
62
+ setSelected() {
63
+ if (this.selectedValue) {
64
+ this.selectedIconTarget.classList.remove("dropdown--hidden");
65
+ this.leadingIconTarget.classList.add("dropdown--hidden");
66
+ }
67
+ }
68
+
69
+ toggleSelected() {
70
+ this.selectedIconTarget.classList.toggle("dropdown--hidden");
71
+ this.leadingIconTarget.classList.toggle("dropdown--hidden");
72
+ }
73
+ }
@@ -0,0 +1,11 @@
1
+ // Import and register all your controllers from the importmap under controllers/*
2
+
3
+ import { application } from "./application";
4
+
5
+ // Eager load all controllers defined in the import map under controllers/**/*_controller
6
+ import { eagerLoadControllersFrom } from "@hotwired/stimulus-loading";
7
+ eagerLoadControllersFrom("controllers", application);
8
+
9
+ // Lazy load controllers as they appear in the DOM (remember not to preload controllers in import map!)
10
+ // import { lazyLoadControllersFrom } from "@hotwired/stimulus-loading"
11
+ // lazyLoadControllersFrom("controllers", application)
@@ -0,0 +1,3 @@
1
+ <div class="chip <%= locals[:class] %>">
2
+ <%= locals[:label] %>
3
+ </div>
@@ -0,0 +1,13 @@
1
+ <div class="segmented-control">
2
+ <% options.each do |option| %>
3
+ <%= form.radio_button field_name, option[:value], checked: option[:checked], id: "#{field_name}_#{option[:value]}" %>
4
+ <%= form.label "#{field_name}_#{option[:value]}", class: "segmented-btn grey-hover #{option[:class]}" do %>
5
+ <% if option[:checked] %>
6
+ <div class="mr-2">
7
+ <%= render "material_design/icons/icon", locals: { size: 18, icon: "check" } %>
8
+ </div>
9
+ <% end %>
10
+ <%= option[:label] %>
11
+ <% end %>
12
+ <% end %>
13
+ </div>
@@ -0,0 +1,5 @@
1
+ pin "application-md", to: "material_design/application.js"
2
+ pin "@hotwired/stimulus", to: "stimulus.min.js", preload: true
3
+ pin "@hotwired/stimulus-loading", to: "stimulus-loading.js", preload: true
4
+ pin_all_from MaterialDesign::Engine.root.join("app/javascript/material_design/controllers"), under: "controllers", to: "material_design/controllers"
5
+
@@ -1,5 +1,18 @@
1
+ require "importmap-rails"
2
+ require "stimulus-rails"
3
+
1
4
  module MaterialDesign
2
5
  class Engine < ::Rails::Engine
3
6
  isolate_namespace MaterialDesign
7
+
8
+ initializer "material_design.assets" do |app|
9
+ app.config.assets.paths << root.join("app/javascript")
10
+ app.config.assets.precompile += %w[ material_design_manifest ]
11
+ end
12
+
13
+ initializer "material_design.importmap", before: "importmap" do |app|
14
+ app.config.importmap.paths << root.join("config/importmap.rb")
15
+ app.config.importmap.cache_sweepers << root.join("app/javascript")
16
+ end
4
17
  end
5
18
  end
@@ -1,10 +1,11 @@
1
1
  require "rails/railtie"
2
2
 
3
3
  module MyGem
4
- class Railtie < Rails::Railtie #add uma funcionalidade a um app rails a partir de uma gem
4
+ class Railtie < Rails::Railtie
5
5
  initializer "material_design.action_controller" do
6
- ActiveSupport.on_load(:action_controller_base) do #quando a base controller for carregada
7
- helper MaterialDesign::ButtonHelper #disponibiliza o helper em todos os arquivos
6
+ ActiveSupport.on_load(:action_controller_base) do
7
+ helper MaterialDesign::ButtonHelper
8
+ helper MaterialDesign::ChipHelper
8
9
  end
9
10
  end
10
11
  end
@@ -1,3 +1,3 @@
1
1
  module MaterialDesign
2
- VERSION = "0.7.0"
2
+ VERSION = "0.9.0"
3
3
  end
metadata CHANGED
@@ -1,16 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: material_design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Yutaka Nakanishi
8
8
  - Fabiana Ramos
9
9
  - Mariana Negrão Trancoso
10
+ - Prscila Sabino
11
+ - Bianca Cristina Ramos
10
12
  autorequire:
11
13
  bindir: bin
12
14
  cert_chain: []
13
- date: 2024-10-03 00:00:00.000000000 Z
15
+ date: 2024-10-28 00:00:00.000000000 Z
14
16
  dependencies:
15
17
  - !ruby/object:Gem::Dependency
16
18
  name: rails
@@ -26,6 +28,34 @@ dependencies:
26
28
  - - ">="
27
29
  - !ruby/object:Gem::Version
28
30
  version: 7.1.3
31
+ - !ruby/object:Gem::Dependency
32
+ name: importmap-rails
33
+ requirement: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ - !ruby/object:Gem::Dependency
46
+ name: stimulus-rails
47
+ requirement: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ type: :runtime
53
+ prerelease: false
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
29
59
  description: Material is Google’s open-source design system. Design and build beautiful,
30
60
  usable products with Material.
31
61
  email:
@@ -37,26 +67,36 @@ files:
37
67
  - MIT-LICENSE
38
68
  - README.md
39
69
  - Rakefile
70
+ - app/assets/config/material_design_manifest.js
40
71
  - app/assets/stylesheets/material_design/app_bars.css
41
72
  - app/assets/stylesheets/material_design/application.css
42
73
  - app/assets/stylesheets/material_design/buttons.css
43
74
  - app/assets/stylesheets/material_design/cards.css
75
+ - app/assets/stylesheets/material_design/chips.css
44
76
  - app/assets/stylesheets/material_design/dividers.css
45
77
  - app/assets/stylesheets/material_design/icons.css
46
78
  - app/assets/stylesheets/material_design/lists.css
47
79
  - app/assets/stylesheets/material_design/navigation.css
80
+ - app/assets/stylesheets/material_design/segmented_button.css
48
81
  - app/assets/stylesheets/material_design/tabs.css
49
82
  - app/assets/stylesheets/material_design/typography.css
50
83
  - app/controllers/material_design/application_controller.rb
51
84
  - app/helpers/material_design/application_helper.rb
52
85
  - app/helpers/material_design/button_helper.rb
86
+ - app/helpers/material_design/chip_helper.rb
87
+ - app/javascript/material_design/application.js
88
+ - app/javascript/material_design/controllers/application.js
89
+ - app/javascript/material_design/controllers/filter_chip_controller.js
90
+ - app/javascript/material_design/controllers/index.js
53
91
  - app/jobs/material_design/application_job.rb
54
92
  - app/mailers/material_design/application_mailer.rb
55
93
  - app/models/material_design/application_record.rb
56
94
  - app/views/layouts/material_design/application.html.erb
95
+ - app/views/material_design/_chip.html.erb
57
96
  - app/views/material_design/app_bars/_top_bar.html.erb
58
97
  - app/views/material_design/buttons/_fab.html.erb
59
98
  - app/views/material_design/buttons/_icon_button.html.erb
99
+ - app/views/material_design/buttons/_segmented_button.html.erb
60
100
  - app/views/material_design/cards/_outlined.html.erb
61
101
  - app/views/material_design/dividers/_horizontal.html.erb
62
102
  - app/views/material_design/icons/_10k.html.erb
@@ -2200,6 +2240,7 @@ files:
2200
2240
  - app/views/material_design/typography/_label_large.html.erb
2201
2241
  - app/views/material_design/typography/_title_large.html.erb
2202
2242
  - app/views/material_design/typography/_title_small.html.erb
2243
+ - config/importmap.rb
2203
2244
  - config/routes.rb
2204
2245
  - lib/material_design.rb
2205
2246
  - lib/material_design/engine.rb
@@ -2226,7 +2267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2226
2267
  - !ruby/object:Gem::Version
2227
2268
  version: '0'
2228
2269
  requirements: []
2229
- rubygems_version: 3.5.3
2270
+ rubygems_version: 3.5.21
2230
2271
  signing_key:
2231
2272
  specification_version: 4
2232
2273
  summary: Material Design