avo 3.5.5 → 3.5.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 +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +4 -2
- data/app/assets/builds/avo.base.css +5 -1
- data/app/assets/builds/avo.base.js +371 -217
- data/app/assets/builds/avo.base.js.map +4 -4
- data/app/assets/builds/avo.custom.js +6 -0
- data/app/components/avo/actions_component.html.erb +2 -15
- data/app/components/avo/actions_component.rb +38 -0
- data/app/components/avo/divider_component.html.erb +3 -0
- data/app/components/avo/divider_component.rb +6 -0
- data/app/controllers/avo/base_controller.rb +8 -4
- data/app/controllers/avo/search_controller.rb +7 -1
- data/avo.gemspec +1 -1
- data/lib/avo/base_action.rb +3 -1
- data/lib/avo/base_resource.rb +6 -2
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/templates/js/avo.custom.js +2 -0
- data/public/avo-assets/avo.base.css +4 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c24c04902a3f17b4a3b396d9ff592290c8b5b8cc3ece5b6000a1baedfa294f4
|
4
|
+
data.tar.gz: 297fbfd4e5d45cd6dc6b8692733b4773ecbd863ff8e5c77dbcfdb16e51885b1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6268590bd9d34ebc5a2fd50f22467cee9366b974e4d2ef58e9537d2af4a766146d87cdfee590060df16bec2c1f937cd48b87fab789f412e443426e279f911a5d
|
7
|
+
data.tar.gz: f1e5b8fecc7bbe16d305674e1093bcbca9192698c7a9e478b365bfd749021366451d8300f8c685fcea19c4a1cea4095b25af1e420e563c64d769fbbfe335d273
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
avo (3.5.
|
4
|
+
avo (3.5.6)
|
5
5
|
actionview (>= 6.1)
|
6
6
|
active_link_to
|
7
7
|
activerecord (>= 6.1)
|
@@ -386,7 +386,7 @@ GEM
|
|
386
386
|
rb-inotify (0.10.1)
|
387
387
|
ffi (~> 1.0)
|
388
388
|
rbs (2.8.4)
|
389
|
-
rdoc (6.6.
|
389
|
+
rdoc (6.6.3.1)
|
390
390
|
psych (>= 4.0.0)
|
391
391
|
redis (5.0.8)
|
392
392
|
redis-client (>= 0.17.0)
|
@@ -451,6 +451,7 @@ GEM
|
|
451
451
|
rexml
|
452
452
|
simplecov (~> 0.19)
|
453
453
|
simplecov-html (0.12.3)
|
454
|
+
simplecov-lcov (0.8.0)
|
454
455
|
simplecov_json_formatter (0.1.4)
|
455
456
|
smart_properties (1.17.0)
|
456
457
|
solargraph (0.50.0)
|
@@ -600,6 +601,7 @@ DEPENDENCIES
|
|
600
601
|
rubocop-shopify
|
601
602
|
simplecov
|
602
603
|
simplecov-cobertura
|
604
|
+
simplecov-lcov
|
603
605
|
solargraph
|
604
606
|
solargraph-rails
|
605
607
|
spring
|
@@ -1779,7 +1779,7 @@ span.flatpickr-weekday {
|
|
1779
1779
|
}
|
1780
1780
|
}
|
1781
1781
|
|
1782
|
-
/*! @algolia/autocomplete-theme-classic 1.
|
1782
|
+
/*! @algolia/autocomplete-theme-classic 1.17.0 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
|
1783
1783
|
|
1784
1784
|
/* ----------------*/
|
1785
1785
|
|
@@ -8222,6 +8222,10 @@ tag.tagify__tag{
|
|
8222
8222
|
border-top-width:0px
|
8223
8223
|
}
|
8224
8224
|
|
8225
|
+
.border-solid{
|
8226
|
+
border-style:solid
|
8227
|
+
}
|
8228
|
+
|
8225
8229
|
.border-dashed{
|
8226
8230
|
border-style:dashed
|
8227
8231
|
}
|