avo 3.1.4 → 3.1.5
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/Gemfile.lock +1 -1
- data/app/assets/builds/avo.base.css +8 -4
- data/app/assets/builds/avo.base.js +68 -35
- data/app/assets/builds/avo.base.js.map +3 -3
- data/lib/avo/concerns/has_items.rb +2 -1
- data/lib/avo/version.rb +1 -1
- metadata +2 -2
|
@@ -282,12 +282,13 @@ module Avo
|
|
|
282
282
|
# Skip items that don't have an id
|
|
283
283
|
next true if !item.respond_to?(:id)
|
|
284
284
|
|
|
285
|
-
# Skip tab groups
|
|
285
|
+
# Skip tab groups and tabs
|
|
286
286
|
# Skip headings
|
|
287
287
|
# Skip location fields
|
|
288
288
|
# On location field we can have field coordinates and setters with different names
|
|
289
289
|
# like latitude and longitude
|
|
290
290
|
next true if item.is_a?(Avo::Resources::Items::TabGroup) ||
|
|
291
|
+
item.is_a?(Avo::Resources::Items::Tab) ||
|
|
291
292
|
item.is_heading? ||
|
|
292
293
|
item.is_a?(Avo::Fields::LocationField)
|
|
293
294
|
|
data/lib/avo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrian Marin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-12-
|
|
12
|
+
date: 2023-12-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|