turbo_power 0.5.0 → 0.6.1

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: 678db176d816e2a22ddf77a35a42447fef3f823c956a69e5f107186c632dde36
4
- data.tar.gz: c91240c7d009cf7ed54195d77de945c6a2cd013745673d47393a8a83305952fa
3
+ metadata.gz: 4e8ff8643127634682d934640147295a85a4c5d865299031b79eaca8d9e07a2a
4
+ data.tar.gz: ce24c63c1e2bb9bdeca2bdbb30cb3515aed4b320f01659f65c089a3d1ae63e7c
5
5
  SHA512:
6
- metadata.gz: e24d81bd1d2ef91938458dc7c2c2e1a109d9ff2d29336010b97e835d7a905f9ddf4163ac7d14887712c62d109751ca0b601cee24c9ae14f0cde376a6f3a75f30
7
- data.tar.gz: cdf838e14aa5e3f7c9a9b9285ec0c5b58e96464bcf36b8826709b79551437814c0e074bcfa7343b4f7ee954ba8a565a43a932b4d4955744edf9b2cd022f661ae
6
+ metadata.gz: d69f06b40f30aa9848182d26c59f5b46af9b9783d9bd21a194ea523266530f3dda316da634bf9a4b4096457f4746044a20e0e4b2defc64b2a79e2a4a7d5f75a2
7
+ data.tar.gz: 260f22024b9ddeb9201434d366d463258c293d4b85fd981ad02c2d3f14b91e85fa35e7881f22cae53d412bb66f0d5a7bc70a912a00e2943bd80571fe15dd285b
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- turbo_power (0.5.0)
5
- turbo-rails (~> 1.3)
4
+ turbo_power (0.6.1)
5
+ turbo-rails (>= 1.3.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -43,8 +43,10 @@ GEM
43
43
  crass (~> 1.0.2)
44
44
  nokogiri (>= 1.5.9)
45
45
  method_source (1.0.0)
46
+ mini_portile2 (2.8.5)
46
47
  minitest (5.17.0)
47
- nokogiri (1.14.2-x86_64-darwin)
48
+ nokogiri (1.14.2)
49
+ mini_portile2 (~> 2.8.0)
48
50
  racc (~> 1.4)
49
51
  parallel (1.22.1)
50
52
  parser (3.1.3.0)
@@ -95,7 +97,8 @@ GEM
95
97
  actionpack (>= 5.2)
96
98
  activesupport (>= 5.2)
97
99
  sprockets (>= 3.0.0)
98
- sqlite3 (1.5.4-x86_64-darwin)
100
+ sqlite3 (1.5.4)
101
+ mini_portile2 (~> 2.8.0)
99
102
  thor (1.2.1)
100
103
  turbo-rails (1.3.3)
101
104
  actionpack (>= 6.0.0)
@@ -109,6 +112,7 @@ GEM
109
112
  PLATFORMS
110
113
  x86_64-darwin-19
111
114
  x86_64-darwin-22
115
+ x86_64-darwin-23
112
116
 
113
117
  DEPENDENCIES
114
118
  rake (~> 13.0)
data/README.md CHANGED
@@ -108,6 +108,8 @@ import 'controllers'
108
108
  * `turbo_stream.set_style(targets, name, value, **attributes)`
109
109
  * `turbo_stream.set_styles(targets, styles, **attributes)`
110
110
  * `turbo_stream.set_value(targets, value, **attributes)`
111
+ * `turbo_stream.toggle_css_class(targets, classes, **attributes)`
112
+ * `turbo_stream.replace_css_class(targets, from, to, **attributes)`
111
113
 
112
114
 
113
115
  ### Event Actions
@@ -136,7 +138,10 @@ import 'controllers'
136
138
  ### Browser Actions
137
139
 
138
140
  * `turbo_stream.reload(**attributes)`
139
- * `turbo_stream.scroll_into_view(targets, **attributes)`
141
+ * `turbo_stream.scroll_into_view(**attributes)`
142
+ * `turbo_stream.scroll_into_view(targets)`
143
+ * `turbo_stream.scroll_into_view(targets, align_to_top)`
144
+ * `turbo_stream.scroll_into_view(targets, behavior:, block:, inline:)`
140
145
  * `turbo_stream.set_focus(targets, **attributes)`
141
146
  * `turbo_stream.set_title(title, **attributes)`
142
147
 
@@ -106,6 +106,20 @@ module TurboPower
106
106
  custom_action_all :set_value, targets: targets, attributes: attributes.reverse_merge(value: value)
107
107
  end
108
108
 
109
+ def toggle_css_class(targets = nil, classes = "", **attributes)
110
+ classes = attributes[:classes] || classes
111
+ classes = classes.join(" ") if classes.is_a?(Array)
112
+
113
+ custom_action_all :toggle_css_class, targets: targets, attributes: attributes.merge(classes: classes)
114
+ end
115
+
116
+ def replace_css_class(targets = nil, from = "", to = "", **attributes)
117
+ from = attributes[:from] || from
118
+ to = attributes[:to] || to
119
+
120
+ custom_action_all :replace_css_class, targets: targets, attributes: attributes.merge(from: from, to: to)
121
+ end
122
+
109
123
  # Event Actions
110
124
 
111
125
  def dispatch_event(targets = nil, name = nil, detail: {}, **attributes)
@@ -162,8 +176,8 @@ module TurboPower
162
176
  custom_action :reload, attributes: attributes
163
177
  end
164
178
 
165
- def scroll_into_view(targets = nil, **attributes)
166
- custom_action_all :scroll_into_view, targets: targets, attributes: attributes
179
+ def scroll_into_view(targets = nil, align_to_top = nil, **attributes)
180
+ custom_action_all :scroll_into_view, targets: targets, attributes: attributes.reverse_merge(align_to_top: align_to_top).compact
167
181
  end
168
182
 
169
183
  def set_cookie(cookie = nil, **attributes)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TurboPower
4
- VERSION = "0.5.0"
4
+ VERSION = "0.6.1"
5
5
  end
data/turbo_power.gemspec CHANGED
@@ -27,5 +27,5 @@ Gem::Specification.new do |spec|
27
27
  "[A-Z]*"
28
28
  ]
29
29
 
30
- spec.add_dependency "turbo-rails", "~> 1.3"
30
+ spec.add_dependency "turbo-rails", ">= 1.3.0"
31
31
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo_power
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco Roth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-15 00:00:00.000000000 Z
11
+ date: 2024-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: turbo-rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: 1.3.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.3'
26
+ version: 1.3.0
27
27
  description: Power-pack for Turbo Streams
28
28
  email:
29
29
  - marco.roth@hey.com
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  requirements: []
74
- rubygems_version: 3.3.26
74
+ rubygems_version: 3.5.3
75
75
  signing_key:
76
76
  specification_version: 4
77
77
  summary: Power-pack for Turbo Streams