lato 3.22.0 → 3.22.1

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: 925e5dd4e3c5460a38172e5f67acaf5130c15e080777a91330becf009888dd52
4
- data.tar.gz: 672b343b2de9def169bc3a97314b4ccee9db6f3254f89fb42f3e5c3ae17de863
3
+ metadata.gz: 796d69a53a77b898ae602cfe54f33604397c9505eb623ecf84d77985b3086bf4
4
+ data.tar.gz: c72842a56b5856f10a3a7be6d5cbe4bd0c8d9ddd192d4a61118ea6c77cc936b6
5
5
  SHA512:
6
- metadata.gz: 3b558bf2e8b153d3c173d1219b0689147611f341e80a9454634247bcf830cf378fb6780045ece64ecd54d42b34efb57e246e66d89e292aa67cd7ad4c7ba13536
7
- data.tar.gz: dfd3b28e1322227882c6b8b1432b6119cb3678cedb28b6cadde4fce09358b31d451b1297af664f0f6c03a26df10cdb7c0e1cf8d2b10ef4ecabea24c69e36cd67
6
+ metadata.gz: 12b9391e20a74ef9ddfc9cd875bef64bc872186d57db3f8017a8f7595719f767056ca4eca8e7f249db5c7b0b4dde6946f7cf077130eebb54e19ef0987c2845dc
7
+ data.tar.gz: f1bd4870565a2a65bf58ec632412c914e2137db77a4d210e07939dbb3afedfd275b4485f7c5b3608900b6fc53b40500c8e55bf86a6c1317cda88bf9b16237c09
data/README.md CHANGED
@@ -34,6 +34,7 @@ The idea behind Lato is to create an eco-system of engines that can improve the
34
34
  - [Lato Settings](https://github.com/Lato-org/lato_settings): manage application settings from the UI panel;
35
35
  - [Lato Storage](https://github.com/Lato-org/lato_storage): manage storage (Active Storage data) from the UI panel;
36
36
  - [Lato Users](https://github.com/Lato-org/lato_users): manage users from the UI panel;
37
+ - [Lato CMS](https://github.com/Lato-org/lato_cms): manage web pages from the UI panel;
37
38
 
38
39
  ## Installation
39
40
  Add required dependencies to your application's Gemfile:
@@ -8,6 +8,10 @@ export default class extends Controller {
8
8
  connect() {
9
9
  this.tooltip = new bootstrap.Tooltip(this.element)
10
10
 
11
+ // Always close the tooltip when its trigger element is clicked, since the
12
+ // click may move the element and leave the tooltip stuck in the old position
13
+ this.element.addEventListener('click', () => this.tooltip.hide())
14
+
11
15
  // HACK: Force tooltip to be closed when a boostrap modal is opened/closed
12
16
  const modals = document.querySelectorAll('.modal')
13
17
  modals.forEach((modal) => {
data/lib/lato/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lato
2
- VERSION = "3.22.0"
2
+ VERSION = "3.22.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lato
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.22.0
4
+ version: 3.22.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante