avo 3.6.4 → 3.7.0
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 +20 -0
- data/app/components/avo/index/resource_controls_component.html.erb +2 -2
- data/app/components/avo/views/resource_index_component.html.erb +1 -0
- data/lib/avo/fields/trix_field.rb +1 -1
- data/lib/avo/version.rb +1 -1
- data/public/avo-assets/avo.base.css +4 -0
- data/tailwind.preset.js +3 -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: 0eccb23370cf981398626b999f8f330adb6574025cf3ebc5280db1e003d5be84
|
|
4
|
+
data.tar.gz: 51b8e80d74267ad7a7c4d4207b0290c45a439c96d184e0489b3870ca8d74d809
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5aa905525606ec8fac630fec53aa11ab66cf1e1a6dadb47064bc9cb3083fb0804f7eef1e3335a5960500dcbbd33fd63474b8ca9294b2d18baa8133ced753804
|
|
7
|
+
data.tar.gz: 0cccbeb4c71c3ebab915444b06bb9c6faf8e0bd057eea028c21b4067e0d2a475b5bb0cf5297ffcf9f558b5fb3cdcda4034806581f16b0f0d6a00f1eb4bfd3dd3
|
data/Gemfile.lock
CHANGED
|
@@ -7252,6 +7252,11 @@ tag.tagify__tag{
|
|
|
7252
7252
|
margin-right:1.5rem
|
|
7253
7253
|
}
|
|
7254
7254
|
|
|
7255
|
+
.mx-auto{
|
|
7256
|
+
margin-left:auto;
|
|
7257
|
+
margin-right:auto
|
|
7258
|
+
}
|
|
7259
|
+
|
|
7255
7260
|
.my-0{
|
|
7256
7261
|
margin-top:0px;
|
|
7257
7262
|
margin-bottom:0px
|
|
@@ -7791,6 +7796,10 @@ tag.tagify__tag{
|
|
|
7791
7796
|
max-width:32rem
|
|
7792
7797
|
}
|
|
7793
7798
|
|
|
7799
|
+
.max-w-screen-xl{
|
|
7800
|
+
max-width:1280px
|
|
7801
|
+
}
|
|
7802
|
+
|
|
7794
7803
|
.max-w-xs{
|
|
7795
7804
|
max-width:20rem
|
|
7796
7805
|
}
|
|
@@ -11082,6 +11091,17 @@ trix-editor {
|
|
|
11082
11091
|
}
|
|
11083
11092
|
}
|
|
11084
11093
|
|
|
11094
|
+
.rtl\:space-x-reverse:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]){
|
|
11095
|
+
--tw-space-x-reverse:1
|
|
11096
|
+
}
|
|
11097
|
+
|
|
11098
|
+
@media (prefers-color-scheme: dark){
|
|
11099
|
+
.dark\:bg-gray-900{
|
|
11100
|
+
--tw-bg-opacity:1;
|
|
11101
|
+
background-color:rgb(23 25 28 / var(--tw-bg-opacity))
|
|
11102
|
+
}
|
|
11103
|
+
}
|
|
11104
|
+
|
|
11085
11105
|
@media print{
|
|
11086
11106
|
.print\:hidden{
|
|
11087
11107
|
display:none
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
<%= content_tag :div, class: "space-x-2 flex flex-row justify-between ml-2 has-record-selector:ml-0" do %>
|
|
2
2
|
<% @resource.render_row_controls(item: singular_resource_name).each do |control| %>
|
|
3
3
|
<%= render_control control %>
|
|
4
4
|
<% end %>
|
|
5
|
-
|
|
5
|
+
<% end %>
|
|
@@ -23,7 +23,7 @@ module Avo
|
|
|
23
23
|
|
|
24
24
|
# Identify if field is bonded to a rich text model attribute
|
|
25
25
|
def is_action_text?
|
|
26
|
-
return false if record.nil? || !record.respond_to?(id)
|
|
26
|
+
return false if !defined?(ActionText::RichText) || record.nil? || !record.respond_to?(id)
|
|
27
27
|
|
|
28
28
|
record.send(id).is_a?(ActionText::RichText)
|
|
29
29
|
end
|
data/lib/avo/version.rb
CHANGED
|
@@ -10733,6 +10733,10 @@ trix-editor {
|
|
|
10733
10733
|
width:100%
|
|
10734
10734
|
}
|
|
10735
10735
|
|
|
10736
|
+
.has-record-selector .has-record-selector\:ml-0{
|
|
10737
|
+
margin-left:0px
|
|
10738
|
+
}
|
|
10739
|
+
|
|
10736
10740
|
@media (min-width: 495px){
|
|
10737
10741
|
.xs\:grid-cols-2{
|
|
10738
10742
|
grid-template-columns:repeat(2, minmax(0, 1fr))
|
data/tailwind.preset.js
CHANGED
|
@@ -147,9 +147,11 @@ module.exports = {
|
|
|
147
147
|
},
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
+
addUtilities(newUtilities, ['group-hover'])
|
|
151
|
+
|
|
150
152
|
// Add has-sidebar variant to make it easier to target fields in panels and use the full-width
|
|
151
153
|
addVariant('has-sidebar', '.has-sidebar & ')
|
|
152
|
-
|
|
154
|
+
addVariant('has-record-selector', '.has-record-selector & ')
|
|
153
155
|
}),
|
|
154
156
|
],
|
|
155
157
|
}
|
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.
|
|
4
|
+
version: 3.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrian Marin
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-05-
|
|
13
|
+
date: 2024-05-07 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activerecord
|