turbo_material 0.1.5 → 0.1.6

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: 766d2b159ec05b74b47cd28b95182e9ca655d22243c098722481316d3e0155df
4
- data.tar.gz: 23eda750f1793d1e403192dbd621e6ea67352ddf1799fb584f33f6b93a3c8c8c
3
+ metadata.gz: 9ce313d671ec8ddf4a04aef47fd96c570c5a67ff6dfe29742383a73ebcf7c1c0
4
+ data.tar.gz: b07884bbea9be47867e71624a895d06b32fa988c42639fe242c7d157f80bffc5
5
5
  SHA512:
6
- metadata.gz: e01923c13d37992beaad6f3516d4f74d2db2077d2ff22225bfe44225e1177cf5a75bf161ecef7c226887483a643dc2157b0b2adb16c5f57bf8fdd4a3367d3f42
7
- data.tar.gz: eafdedc67b979f6f80211e5bf1882b165f1a47cefccf7204b73787255a02ab598fda51e48c07615ddbc5097731516cba19b8a38bc35a940475ca7cd8cc4ec485
6
+ metadata.gz: 71f76f10911e651017f0da980a90fc617b23fe850645862600e1720d023d64f56e9457d175a1d92fc5ca9d079e330e63958b76f751ee1f157e4ada511152ebd8
7
+ data.tar.gz: 348ff4e4a953abdea779454c22cf72f34dfde4966d873277e1d0e6a98bcdee13d597c3fcbd72d13048accdeec942b6b581cde9e8248d5d33a7cfadc843ba3610
data/README.md CHANGED
@@ -211,6 +211,10 @@ aside.mdc-drawer.main-drawer {
211
211
  }
212
212
  ```
213
213
 
214
+ ## Tailwind Forms customizations leakage
215
+
216
+ This gem uses Tailwind for additional customizations, I am noticed that `@tailwindcss/forms` leaking to Material inputs adding partial white backgrounds. For now I would recommend to disable forms plugin while using this gem.
217
+
214
218
  ## Installation
215
219
  Add this line to your application's Gemfile:
216
220
 
@@ -230,15 +234,13 @@ $ gem install turbo_material
230
234
 
231
235
  ## Lookbook documentation for components
232
236
 
233
- Gem implements [Lookbook](https://lookbook.build) documentation for all components. I am considering implementing a way to pass it's previews to lookbook in hosting application, but for now, to use it, please checkout gem source code and use it like this:
237
+ Gem implements [Lookbook](https://lookbook.build) documentation for all components. To use it in the application, add `gem 'lookbook'` to your Gemfile and run `bundle install`. Then add following to your `config/application.rb`:
234
238
 
235
- ```bash
236
- bundle install
237
- cd test/dummy
238
- foreman start -f Procfile.dev
239
+ ```ruby
240
+ config.lookbook.preview_paths = [TurboMaterial::Engine.root.join('lib/lookbook')]
239
241
  ```
240
242
 
241
- and then open [http://localhost:3000/lookbook](http://localhost:3000/lookbook) in your browser.
243
+ Or extend your existing config for `lookbook.preview_paths` with same value.
242
244
 
243
245
  ## Contributing
244
246
  This gem is open for new contributions. Use [Material Components for Web documentation](https://github.com/material-components/material-components-web/tree/master/packages) as a references for missing functionality.
@@ -0,0 +1,8 @@
1
+ class CheckboxPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ def default(label: 'Checkbox', disabled: false)
6
+ render 'common/form', helper_name: 'material_checkbox', label: label, name: 'checkbox', id: 'Checkbox', disabled: disabled
7
+ end
8
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ class ChipsInputPreview < Lookbook::Preview
4
+
5
+ # @param label text
6
+ # @param disabled toggle
7
+ # @param required toggle
8
+ def default(label: 'Input', disabled: false, required: false)
9
+ render 'common/form', helper_name: 'material_chips_input',
10
+ url: '/countries', name: 'countries', label:, id: 'Input', disabled:,
11
+ required:,
12
+ options: Carmen::Country.all.map { |c| { id: c.alpha_3_code, label: c.name } }
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ class ChipsSelectPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ # @param required toggle
6
+ def default(label: 'Input', disabled: false, required: false)
7
+ render 'common/form', helper_name: 'material_chips_select', label: label, name: 'checkbox',
8
+ id: 'Input', disabled: disabled, value: [],
9
+ options: [
10
+ { value: '1', label: 'Option 1' },
11
+ { value: '2', label: 'Option 2' },
12
+ { value: '3', label: 'Option 3' }
13
+ ]
14
+ end
15
+ end
@@ -0,0 +1,9 @@
1
+ class InputPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ # @param required toggle
6
+ def default(label: 'Input', disabled: false, required: false)
7
+ render 'common/form', helper_name: 'material_input', label: label, name: 'checkbox', id: 'Input', disabled: disabled, required: required
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ class MenuButtonPreview < Lookbook::Preview
2
+
3
+ # @param button_text text
4
+ def default(button_text: 'Menu')
5
+ render 'common/standalone', helper_name: 'material_menu_button', button_text:, menu_contents_partial: 'common/menu_contents'
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class ModalPreview < Lookbook::Preview
2
+
3
+ # @param title text
4
+ def default(title: 'Modal')
5
+ render 'common/standalone', helper_name: 'material_modal', title:
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ class RadioPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ # @param required toggle
6
+ def default(label: 'Input', disabled: false, required: false)
7
+ render 'common/form', helper_name: 'material_radio', label: label, name: 'checkbox', id: 'Input', disabled: disabled, required: required
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ class SelectPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ # @param required toggle
6
+ def default(label: 'Select', disabled: false, required: false)
7
+ render 'common/form', helper_name: 'material_select', label: label, name: 'checkbox', id: 'Input', disabled: disabled, required: required, options: [
8
+ { value: '', label: '-' },
9
+ { value: 'on', label: 'On' },
10
+ { value: 'off', label: 'Off' }
11
+ ]
12
+ end
13
+ end
@@ -0,0 +1,10 @@
1
+ class SwitchPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param true_label text
5
+ # @param false_label text
6
+ # @param disabled toggle
7
+ def default(label: 'Switch', disabled: false, required: false, true_label: nil, false_label: nil)
8
+ render 'common/form', helper_name: 'material_switch', label: label, name: 'checkbox', id: 'Input', disabled: disabled, true_label: true_label, false_label: false_label
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class TextareaPreview < Lookbook::Preview
2
+
3
+ # @param label text
4
+ # @param disabled toggle
5
+ # @param required toggle
6
+ def default(label: 'Text', disabled: false, required: false)
7
+ render 'common/form', helper_name: 'material_textarea', label: label, name: 'textarea', id: 'Text', disabled: disabled, required: required
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module TurboMaterial
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo_material
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Moiseev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-25 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -134,6 +134,16 @@ files:
134
134
  - config/importmap.rb
135
135
  - config/routes.rb
136
136
  - config/tailwind.config.js
137
+ - lib/lookbook/checkbox_preview.rb
138
+ - lib/lookbook/chips_input_preview.rb
139
+ - lib/lookbook/chips_select_preview.rb
140
+ - lib/lookbook/input_preview.rb
141
+ - lib/lookbook/menu_button_preview.rb
142
+ - lib/lookbook/modal_preview.rb
143
+ - lib/lookbook/radio_preview.rb
144
+ - lib/lookbook/select_preview.rb
145
+ - lib/lookbook/switch_preview.rb
146
+ - lib/lookbook/textarea_preview.rb
137
147
  - lib/tasks/turbo_material_tasks.rake
138
148
  - lib/turbo_material.rb
139
149
  - lib/turbo_material/engine.rb
@@ -160,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
170
  - !ruby/object:Gem::Version
161
171
  version: '0'
162
172
  requirements: []
163
- rubygems_version: 3.5.3
173
+ rubygems_version: 3.4.12
164
174
  signing_key:
165
175
  specification_version: 4
166
176
  summary: Material Web Components for Hotwire Turbo.