optics_view_components 0.1.8 → 0.1.10

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.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Optics
4
4
  module ViewComponents
5
- VERSION = '0.1.8'
5
+ VERSION = '0.1.10'
6
6
  end
7
7
  end
@@ -1,4 +1,4 @@
1
- <%= component('optics/button', active:, border:, disabled:, icon:, icon_with_label:, id:, pill:, size:, url:) do |component| %>
1
+ <%= component('optics/button', active:, border:, disabled:, icon:, icon_with_label:, id:, pill:, size:, variant:, url:) do |component| %>
2
2
  <%= component('optics/icon', name: 'home') %>
3
3
  Button
4
4
  <% end %>
@@ -54,7 +54,7 @@ module Optics
54
54
  variant: 'default',
55
55
  url: nil
56
56
  )
57
- render_with_template(locals: { active:, border:, disabled:, icon:, icon_with_label:, id:, pill:, size:, url: })
57
+ render_with_template(locals: { active:, border:, disabled:, icon:, icon_with_label:, id:, pill:, size:, variant:, url: })
58
58
  end
59
59
  end
60
60
  end
metadata CHANGED
@@ -1,14 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: optics_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reed Law
8
+ - Wes Rich
9
+ - Jeremy Walton
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2023-07-19 00:00:00.000000000 Z
13
+ date: 2023-10-18 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: view_component
@@ -112,7 +114,8 @@ files:
112
114
  - CHANGELOG.md
113
115
  - Gemfile
114
116
  - Gemfile.lock
115
- - LICENSE.txt
117
+ - LICENSE
118
+ - Procfile
116
119
  - README.md
117
120
  - Rakefile
118
121
  - app/components/optics/application_view_component.rb
@@ -120,6 +123,7 @@ files:
120
123
  - app/components/optics/button/component.rb
121
124
  - app/components/optics/icon/component.rb
122
125
  - app/components/optics/sidebar/component.rb
126
+ - config.ru
123
127
  - demo/.ruby-version
124
128
  - demo/Gemfile
125
129
  - demo/Gemfile.lock
@@ -173,6 +177,15 @@ files:
173
177
  - demo/public/404.html
174
178
  - demo/public/422.html
175
179
  - demo/public/500.html
180
+ - demo/public/assets/.sprockets-manifest-9054defc6f9a603f4d0efa7eef36e3a7.json
181
+ - demo/public/assets/actioncable-5433453f9b6619a9de91aaab2d7fc7ff183e5260c0107cbc9a1aa0c838d9a74e.js
182
+ - demo/public/assets/actioncable-5433453f9b6619a9de91aaab2d7fc7ff183e5260c0107cbc9a1aa0c838d9a74e.js.gz
183
+ - demo/public/assets/actioncable.esm-e01089c3ec4fe7817fa9abcad06cab6bdc387f95f0ca6aab4bf7ba7537f70690.js
184
+ - demo/public/assets/actioncable.esm-e01089c3ec4fe7817fa9abcad06cab6bdc387f95f0ca6aab4bf7ba7537f70690.js.gz
185
+ - demo/public/assets/application-0637d2874099d8ba663ba7c4b7ae404ed5d14dce524e1199c89ad93f13956807.css
186
+ - demo/public/assets/application-0637d2874099d8ba663ba7c4b7ae404ed5d14dce524e1199c89ad93f13956807.css.gz
187
+ - demo/public/assets/manifest-dad05bf766af0fe3d79dd746db3c1361c0583026cdf35d6a2921bccaea835331.js
188
+ - demo/public/assets/manifest-dad05bf766af0fe3d79dd746db3c1361c0583026cdf35d6a2921bccaea835331.js.gz
176
189
  - demo/public/favicon.ico
177
190
  - demo/yarn.lock
178
191
  - lib/optics/view_components.rb
File without changes