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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1686cd42a28d62d2877e3db2582df2ad34a6e30d27002151c1f3cc3b92490ac7
4
- data.tar.gz: 319d4b0e6ad38d87e88379cef31c8ec650961643c5268d86b20e5579bb693b35
3
+ metadata.gz: 0eccb23370cf981398626b999f8f330adb6574025cf3ebc5280db1e003d5be84
4
+ data.tar.gz: 51b8e80d74267ad7a7c4d4207b0290c45a439c96d184e0489b3870ca8d74d809
5
5
  SHA512:
6
- metadata.gz: 6bb3637bf610b0ee8b78642685661015e26371d44e9dd7c31bf3e0796b89c9698f4e026a37f0378c4457e933a381f63040e66cd3dc55f155e7ba74e746b7b743
7
- data.tar.gz: '081b731423609d9f8f53dd1fa1866b37674aacf3374f7911d582b426a533ee1caf3d390563c7d2807db52a58db916c6ced8099ec1d703ffc2c13c1d31882b950'
6
+ metadata.gz: f5aa905525606ec8fac630fec53aa11ab66cf1e1a6dadb47064bc9cb3083fb0804f7eef1e3335a5960500dcbbd33fd63474b8ca9294b2d18baa8133ced753804
7
+ data.tar.gz: 0cccbeb4c71c3ebab915444b06bb9c6faf8e0bd057eea028c21b4067e0d2a475b5bb0cf5297ffcf9f558b5fb3cdcda4034806581f16b0f0d6a00f1eb4bfd3dd3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (3.6.4)
4
+ avo (3.7.0)
5
5
  actionview (>= 6.1)
6
6
  active_link_to
7
7
  activerecord (>= 6.1)
@@ -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
- <div class="space-x-2 flex flex-row justify-between">
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
- </div>
5
+ <% end %>
@@ -1,4 +1,5 @@
1
1
  <%= content_tag :div,
2
+ class: class_names('has-record-selector': @resource.record_selector),
2
3
  data: {
3
4
  component_name: self.class.to_s.underscore,
4
5
  model_name: @resource.model_name.to_s,
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "3.6.4" unless const_defined?(:VERSION)
2
+ VERSION = "3.7.0" unless const_defined?(:VERSION)
3
3
  end
@@ -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
- addUtilities(newUtilities, ['group-hover'])
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.6.4
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-01 00:00:00.000000000 Z
13
+ date: 2024-05-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord