lato 3.11.6 → 3.11.7
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 +4 -4
- data/app/assets/stylesheets/lato/application.scss +5 -0
- data/app/helpers/lato/components_helper.rb +14 -0
- data/lib/lato/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df86f3c338023c7cb4253ba9fe107a7fc02ed7d0bcb8f036c408a5c1e31c9212
|
4
|
+
data.tar.gz: '08ca6bc541e1519b60394dfa1ad306580bde2f6ee0740e38bd451277c33c80e9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4b238b8473d9db464d0f089a9ff7263fc3c7cd6dcd97fb5b724c60933927d045ace59d08fc3e1475a46d20442ae22454fcd4f3bc39ff8e8624ececc19b24506
|
7
|
+
data.tar.gz: e7f1b73a0f6c1cc42bb4d845dd2e70afb18bf29121e296f3af8cfe900b188472724fbc7e46ab2aa9d2076a1d4ddf100e5bb01addbd46753cd919ac93fca50e56
|
@@ -208,6 +208,20 @@ module Lato
|
|
208
208
|
form.datetime_field key, options
|
209
209
|
end
|
210
210
|
|
211
|
+
def lato_form_item_input_time(form, key, options = {})
|
212
|
+
_lato_form_input_options(form, key, options, :change, 'form-control')
|
213
|
+
|
214
|
+
form.time_field key, options
|
215
|
+
end
|
216
|
+
|
217
|
+
def lato_form_item_input_color(form, key, options = {})
|
218
|
+
_lato_form_input_options(form, key, options, :change, 'form-control')
|
219
|
+
options[:class] ||= []
|
220
|
+
options[:class].push('lato-form-item-input-color')
|
221
|
+
|
222
|
+
form.color_field key, options
|
223
|
+
end
|
224
|
+
|
211
225
|
def lato_form_submit(form, label, options = {})
|
212
226
|
options[:class] ||= []
|
213
227
|
options[:class].push('btn')
|
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.7
|
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-04-
|
11
|
+
date: 2025-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|