lato 3.10.1 → 3.10.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e00cca9110424c452feab9aea4a1f4b812f3af01b0f863aff89d6d9f2736de72
|
4
|
+
data.tar.gz: 0af37bfd2eb48b193353ec7a54f1155906efa746a9df70d4cb3b09c44598b978
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9aa8aaee2ebc20f2340b298d39a43275bd8c96d6454fdb5b8da1622c87af18702e0afcf9ac38d26a24092b8a03834671e5de8306e93b19d5c9d6071890bba081
|
7
|
+
data.tar.gz: 29075530da5562decca1a38f13197d3f627c97f83012652661ec4841f78e4689b399b02b44717235e95cbd4f855bf8b775318ea5c8fef491e604bae7144253aa
|
@@ -7,6 +7,17 @@ export default class extends Controller {
|
|
7
7
|
|
8
8
|
connect() {
|
9
9
|
this.tooltip = new bootstrap.Tooltip(this.element)
|
10
|
+
|
11
|
+
// HACK: Force tooltip to be closed when a boostrap modal is opened/closed
|
12
|
+
const modals = document.querySelectorAll('.modal')
|
13
|
+
modals.forEach((modal) => {
|
14
|
+
modal.addEventListener('show.bs.modal', () => {
|
15
|
+
setTimeout(() => this.tooltip.hide(), 0)
|
16
|
+
})
|
17
|
+
modal.addEventListener('hide.bs.modal', () => {
|
18
|
+
setTimeout(() => this.tooltip.hide(), 0)
|
19
|
+
})
|
20
|
+
})
|
10
21
|
}
|
11
22
|
|
12
23
|
disconnect() {
|
@@ -64,7 +64,8 @@ module Lato
|
|
64
64
|
model_name: model_name,
|
65
65
|
model_name_underscore: model_name_underscore,
|
66
66
|
pagination_options: pagination_options,
|
67
|
-
custom_actions: options[:custom_actions] || {}
|
67
|
+
custom_actions: options[:custom_actions] || {},
|
68
|
+
dropdown_actions: options[:dropdown_actions] || nil
|
68
69
|
)
|
69
70
|
end
|
70
71
|
|
@@ -13,8 +13,8 @@ collection_total = collection.respond_to?(:total_count) ? collection.total_count
|
|
13
13
|
<%= hidden_field_tag k, v %>
|
14
14
|
<% end %>
|
15
15
|
|
16
|
-
<% if custom_actions.any? || searchable_columns.any? %>
|
17
|
-
<div class="d-flex
|
16
|
+
<% if custom_actions.any? || searchable_columns.any? || dropdown_actions %>
|
17
|
+
<div class="d-flex mb-3">
|
18
18
|
<% if searchable_columns.any? %>
|
19
19
|
<div class="input-group">
|
20
20
|
<input type="text" name="search" class="form-control" placeholder="<%= I18n.t('lato.search_for') %>: <%= searchable_columns.map { |c| collection.model.human_attribute_name(c) }.to_sentence %>" value="<%= params[:search] %>">
|
@@ -23,16 +23,36 @@ collection_total = collection.respond_to?(:total_count) ? collection.total_count
|
|
23
23
|
<% else %>
|
24
24
|
<div></div>
|
25
25
|
<% end %>
|
26
|
-
|
27
|
-
|
28
|
-
|
26
|
+
|
27
|
+
<% if custom_actions.any? %>
|
28
|
+
<div class="btn-group ms-2">
|
29
29
|
<% custom_actions.each do |action_key, action_params| %>
|
30
30
|
<%= link_to action_params[:path], { class: 'btn btn-primary' }.merge(action_params) do %>
|
31
31
|
<i class="<%= action_params[:icon] %>"></i>
|
32
32
|
<% end %>
|
33
33
|
<% end %>
|
34
|
-
|
35
|
-
|
34
|
+
</div>
|
35
|
+
<% end %>
|
36
|
+
|
37
|
+
<% if dropdown_actions %>
|
38
|
+
<div class="dropdown ms-2">
|
39
|
+
<%= content_tag :button, { class: 'btn btn-primary dropdown-toggle', 'data-bs-toggle': 'dropdown' }.merge(dropdown_actions) do %>
|
40
|
+
<i class="<%= dropdown_actions[:icon] %>"></i>
|
41
|
+
<% end %>
|
42
|
+
<ul class="dropdown-menu">
|
43
|
+
<% dropdown_actions[:actions].each do |action| %>
|
44
|
+
<li>
|
45
|
+
<%= link_to action[:path], { class: 'dropdown-item' }.merge(action) do %>
|
46
|
+
<% if action[:icon] %>
|
47
|
+
<i class="<%= action[:icon] %> me-1"></i>
|
48
|
+
<% end %>
|
49
|
+
<%= action[:title] %>
|
50
|
+
<% end %>
|
51
|
+
</li>
|
52
|
+
<% end %>
|
53
|
+
</ul>
|
54
|
+
</div>
|
55
|
+
<% end %>
|
36
56
|
</div>
|
37
57
|
<% end %>
|
38
58
|
|
data/lib/lato/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lato
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.10.
|
4
|
+
version: 3.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gregorio Galante
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|