lato 3.11.5 → 3.11.6

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: d5c5a09699df9b3bf38945da760831ea4665b52442f36ac0d05fc1b962e78d7a
4
- data.tar.gz: df0526aa1220216bc79c117eccd41b6fa233cd27bf0bef825e01cd66a122235a
3
+ metadata.gz: ef7bb310740a155bc6c9d002b6c9fe0b5e0b40ebd2218176369a0fa0b07c9866
4
+ data.tar.gz: 48ff0aabbbe4e5c107d716279c774be15370b3d4d6b3e12f1da29ed54bbb9ac7
5
5
  SHA512:
6
- metadata.gz: 36fa0b306360fe4acc52f12c90a1a4cebddab63a220da70788946ebd51ea93358654fbc6427e3375f81f22f58c78de9c24bc3d7277491cb1fea85a702b1af474
7
- data.tar.gz: 5bbfa598b9db7576116aa2ac378a13ddf9207f7f7bb598ce53b68ef4cd505cc5900be23031f093f11737aa6f5d654e39ed25fe05e6d6862efb36c0f77a7e4a9a
6
+ metadata.gz: a65ae7379545fe07f70a96b9c557f8aa2e4755ac2a9dc10a4b5051ec625d716c2baa8e9ec94629d05e1ef620875adc21b220a55baa954d5ee53dd71edb7214c0
7
+ data.tar.gz: fb374af295c90254e180ad5b1e82669ed6f9f1dbf825ed679afb121bd2d2903d568c3117f6e9e94f7e192f9189da721edc54262cdb819d0b0a27f5dc765a72d5
data/README.md CHANGED
@@ -21,6 +21,7 @@ The front-end is designed to be responsive, mobile friendly and accessible.
21
21
  The idea behind Lato is to create an eco-system of engines that can improve the functionalities of the panel. The following engines are already available:
22
22
 
23
23
  - [LatoSpaces](https://github.com/Lato-org/lato_spaces): A simple engine to manage multiple workspaces in the panel with user invitation and workspace roles;
24
+ - [LatoSettings](https://github.com/Lato-org/lato_settings): A simple engine to manage application settings from the UI panel;
24
25
 
25
26
  ## Installation
26
27
  Add required dependencies to your application's Gemfile:
@@ -48,7 +48,9 @@ export default class extends Controller {
48
48
  try {
49
49
  this.suggestShowLoading()
50
50
  setTimeout(async () => {
51
- const response = await fetch(this.pathValue + '?q=' + value)
51
+ const url = new URL(this.pathValue, window.location.origin)
52
+ url.searchParams.append('q', value)
53
+ const response = await fetch(url)
52
54
  const data = await response.json()
53
55
  this.suggestShow(data)
54
56
  }, 500)
@@ -127,7 +129,9 @@ export default class extends Controller {
127
129
 
128
130
  async setDefaultElementValue() {
129
131
  try {
130
- const response = await fetch(this.pathValue + '?value=' + this.element.value)
132
+ const url = new URL(this.pathValue, window.location.origin)
133
+ url.searchParams.append('value', this.element.value)
134
+ const response = await fetch(url)
131
135
  const data = await response.json()
132
136
  this.element.value = data?.label || this.element.value
133
137
  } catch (err) {
@@ -6,4 +6,4 @@ module LatoUserApplication
6
6
  end
7
7
 
8
8
  # Add here custom methods
9
- end
9
+ end
data/lib/lato/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lato
2
- VERSION = "3.11.5"
2
+ VERSION = "3.11.6"
3
3
  end
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.11.5
4
+ version: 3.11.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-24 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails