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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef7bb310740a155bc6c9d002b6c9fe0b5e0b40ebd2218176369a0fa0b07c9866
|
4
|
+
data.tar.gz: 48ff0aabbbe4e5c107d716279c774be15370b3d4d6b3e12f1da29ed54bbb9ac7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
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) {
|
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.11.
|
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-
|
11
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|