avo 3.0.0.pre2 → 3.0.0.pre3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of avo might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5edd1c061d529e103ca857e69f733cbc5a1eb4d02bda7b0cb5e07c86d1eba626
4
- data.tar.gz: a4d3a53bcc19da8552ba98596a8c87b9a92eda2bd599d5b9f6498dea97076c01
3
+ metadata.gz: 7f117de09263bc99b10c9f8233e502d83fc947ffab6dbef63d0fdd387f805e52
4
+ data.tar.gz: 28b4571b9aa91905fb75ab19f83d9c980adc1f484a1910c64172abfe5b280a45
5
5
  SHA512:
6
- metadata.gz: d6c58713141049c38e4943103f6f463188f48e37ec0ac8641b331d485d374284986125c554391abbc3366b0786d5cf3cd67a147d610e6357062e573bcdac11a9
7
- data.tar.gz: e588dbad4324bc3021762cefdb803c7095ab421945b362f6f4def4a17b5b21034907f1b81d9bc2c226eb3bedfae425211f7e87fe825fa6e832ab488d5e4ddca7
6
+ metadata.gz: a8724b3dc5f568fe785a8d846bc788d4598a48a1cfea4493c2c5c95ed77869be7d71c1d38e7956eacd6455d654dab21f0900b4b1613201b7fb81b4f0decec52c
7
+ data.tar.gz: 38c572097f0f80734e2d2f8849cfad42b2b8e2e5b082415af699905dc5f98ce63655de717166e741b8e1493ba9b0e4518bf1657029ed4d45accf4492014a8f16
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (3.0.0.pre2)
4
+ avo (3.0.0.pre3)
5
5
  actionview (>= 6.1)
6
6
  active_link_to
7
7
  activerecord (>= 6.1)
data/lib/avo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "3.0.0.pre2" unless const_defined?(:VERSION)
2
+ VERSION = "3.0.0.pre3" unless const_defined?(:VERSION)
3
3
  end
@@ -6280,6 +6280,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6280
6280
  visibility:hidden
6281
6281
  }
6282
6282
 
6283
+ .collapse{
6284
+ visibility:collapse
6285
+ }
6286
+
6283
6287
  .static{
6284
6288
  position:static
6285
6289
  }
@@ -6296,6 +6300,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6296
6300
  position:relative
6297
6301
  }
6298
6302
 
6303
+ .sticky{
6304
+ position:sticky
6305
+ }
6306
+
6299
6307
  .inset-auto{
6300
6308
  top:auto;
6301
6309
  right:auto;
@@ -6310,6 +6318,11 @@ trix-toolbar .trix-button-group:not(:first-child){
6310
6318
  left:0px
6311
6319
  }
6312
6320
 
6321
+ .inset-x-0{
6322
+ left:0px;
6323
+ right:0px
6324
+ }
6325
+
6313
6326
  .left-0{
6314
6327
  left:0px
6315
6328
  }
@@ -6346,6 +6359,30 @@ trix-toolbar .trix-button-group:not(:first-child){
6346
6359
  top:-0.1rem
6347
6360
  }
6348
6361
 
6362
+ .top-0{
6363
+ top:0px
6364
+ }
6365
+
6366
+ .left-1{
6367
+ left:0.25rem
6368
+ }
6369
+
6370
+ .bottom-1{
6371
+ bottom:0.25rem
6372
+ }
6373
+
6374
+ .top-3{
6375
+ top:0.75rem
6376
+ }
6377
+
6378
+ .top-5{
6379
+ top:1.25rem
6380
+ }
6381
+
6382
+ .left-5{
6383
+ left:1.25rem
6384
+ }
6385
+
6349
6386
  .z-10{
6350
6387
  z-index:10
6351
6388
  }
@@ -6386,6 +6423,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6386
6423
  margin:0px
6387
6424
  }
6388
6425
 
6426
+ .m-1{
6427
+ margin:0.25rem
6428
+ }
6429
+
6389
6430
  .mx-3{
6390
6431
  margin-left:0.75rem;
6391
6432
  margin-right:0.75rem
@@ -6593,10 +6634,58 @@ trix-toolbar .trix-button-group:not(:first-child){
6593
6634
  display:table
6594
6635
  }
6595
6636
 
6637
+ .inline-table{
6638
+ display:inline-table
6639
+ }
6640
+
6641
+ .table-caption{
6642
+ display:table-caption
6643
+ }
6644
+
6645
+ .table-cell{
6646
+ display:table-cell
6647
+ }
6648
+
6649
+ .table-column{
6650
+ display:table-column
6651
+ }
6652
+
6653
+ .table-column-group{
6654
+ display:table-column-group
6655
+ }
6656
+
6657
+ .table-footer-group{
6658
+ display:table-footer-group
6659
+ }
6660
+
6661
+ .table-header-group{
6662
+ display:table-header-group
6663
+ }
6664
+
6665
+ .table-row-group{
6666
+ display:table-row-group
6667
+ }
6668
+
6669
+ .table-row{
6670
+ display:table-row
6671
+ }
6672
+
6596
6673
  .grid{
6597
6674
  display:grid
6598
6675
  }
6599
6676
 
6677
+ .inline-grid{
6678
+ display:inline-grid
6679
+ }
6680
+
6681
+ .contents{
6682
+ display:contents
6683
+ }
6684
+
6685
+ .list-item{
6686
+ display:list-item
6687
+ }
6688
+
6600
6689
  .hidden{
6601
6690
  display:none
6602
6691
  }
@@ -6661,6 +6750,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6661
6750
  height:2.25rem
6662
6751
  }
6663
6752
 
6753
+ .h-1{
6754
+ height:0.25rem
6755
+ }
6756
+
6664
6757
  .max-h-\[42rem\]{
6665
6758
  max-height:42rem
6666
6759
  }
@@ -6753,6 +6846,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6753
6846
  width:1%
6754
6847
  }
6755
6848
 
6849
+ .w-1{
6850
+ width:0.25rem
6851
+ }
6852
+
6756
6853
  .min-w-\[1rem\]{
6757
6854
  min-width:1rem
6758
6855
  }
@@ -6801,6 +6898,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6801
6898
  flex-shrink:0
6802
6899
  }
6803
6900
 
6901
+ .flex-shrink{
6902
+ flex-shrink:1
6903
+ }
6904
+
6804
6905
  .flex-grow-0{
6805
6906
  flex-grow:0
6806
6907
  }
@@ -6809,6 +6910,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6809
6910
  flex-grow:1
6810
6911
  }
6811
6912
 
6913
+ .border-collapse{
6914
+ border-collapse:collapse
6915
+ }
6916
+
6812
6917
  .-translate-x-1\/2{
6813
6918
  --tw-translate-x:-50%;
6814
6919
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
@@ -6870,6 +6975,10 @@ trix-toolbar .trix-button-group:not(:first-child){
6870
6975
  cursor:wait
6871
6976
  }
6872
6977
 
6978
+ .resize{
6979
+ resize:both
6980
+ }
6981
+
6873
6982
  .appearance-none{
6874
6983
  appearance:none
6875
6984
  }
@@ -7048,6 +7157,10 @@ trix-toolbar .trix-button-group:not(:first-child){
7048
7157
  align-self:flex-start
7049
7158
  }
7050
7159
 
7160
+ .self-end{
7161
+ align-self:flex-end
7162
+ }
7163
+
7051
7164
  .self-center{
7052
7165
  align-self:center
7053
7166
  }
@@ -7086,6 +7199,10 @@ trix-toolbar .trix-button-group:not(:first-child){
7086
7199
  overflow-wrap:break-word
7087
7200
  }
7088
7201
 
7202
+ .break-all{
7203
+ word-break:break-all
7204
+ }
7205
+
7089
7206
  .rounded{
7090
7207
  border-radius:0.25rem
7091
7208
  }
@@ -7729,6 +7846,10 @@ trix-toolbar .trix-button-group:not(:first-child){
7729
7846
  text-align:right
7730
7847
  }
7731
7848
 
7849
+ .text-justify{
7850
+ text-align:justify
7851
+ }
7852
+
7732
7853
  .text-sm{
7733
7854
  font-size:0.875rem;
7734
7855
  line-height:1.25rem
@@ -7775,6 +7896,10 @@ trix-toolbar .trix-button-group:not(:first-child){
7775
7896
  text-transform:uppercase
7776
7897
  }
7777
7898
 
7899
+ .lowercase{
7900
+ text-transform:lowercase
7901
+ }
7902
+
7778
7903
  .capitalize{
7779
7904
  text-transform:capitalize
7780
7905
  }
@@ -7783,6 +7908,11 @@ trix-toolbar .trix-button-group:not(:first-child){
7783
7908
  font-style:italic
7784
7909
  }
7785
7910
 
7911
+ .ordinal{
7912
+ --tw-ordinal:ordinal;
7913
+ font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
7914
+ }
7915
+
7786
7916
  .leading-6{
7787
7917
  line-height:1.5rem
7788
7918
  }
@@ -8006,6 +8136,26 @@ trix-toolbar .trix-button-group:not(:first-child){
8006
8136
  text-decoration-line:underline
8007
8137
  }
8008
8138
 
8139
+ .overline{
8140
+ -webkit-text-decoration-line:overline;
8141
+ text-decoration-line:overline
8142
+ }
8143
+
8144
+ .line-through{
8145
+ -webkit-text-decoration-line:line-through;
8146
+ text-decoration-line:line-through
8147
+ }
8148
+
8149
+ .antialiased{
8150
+ -webkit-font-smoothing:antialiased;
8151
+ -moz-osx-font-smoothing:grayscale
8152
+ }
8153
+
8154
+ .subpixel-antialiased{
8155
+ -webkit-font-smoothing:auto;
8156
+ -moz-osx-font-smoothing:auto
8157
+ }
8158
+
8009
8159
  .opacity-75{
8010
8160
  opacity:0.75
8011
8161
  }
@@ -8073,6 +8223,16 @@ trix-toolbar .trix-button-group:not(:first-child){
8073
8223
  outline-style:solid
8074
8224
  }
8075
8225
 
8226
+ .blur{
8227
+ --tw-blur:blur(8px);
8228
+ filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
8229
+ }
8230
+
8231
+ .grayscale{
8232
+ --tw-grayscale:grayscale(100%);
8233
+ filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
8234
+ }
8235
+
8076
8236
  .invert{
8077
8237
  --tw-invert:invert(100%);
8078
8238
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
@@ -8082,6 +8242,11 @@ trix-toolbar .trix-button-group:not(:first-child){
8082
8242
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
8083
8243
  }
8084
8244
 
8245
+ .backdrop-filter{
8246
+ -webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
8247
+ backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
8248
+ }
8249
+
8085
8250
  .transition{
8086
8251
  transition-property:color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
8087
8252
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;