avo 4.0.0.beta.14 → 4.0.0.beta.15

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: 4f947594c0722c0fb803cf5b63e747b25ae4253c302e3bb006e7fd2ee438ee25
4
- data.tar.gz: 624c6f1979f82257698ac2f4823ec7b6951593b04d7c0747fbf34fedb47fd555
3
+ metadata.gz: 1071f00b1ea8452984cabfbefcb91e8ba3681cee0b34e5432acf2d97c7f4ab6f
4
+ data.tar.gz: ae20a85de18af36806433d0ba1b8be349683541df065c360d7d417550c94ab58
5
5
  SHA512:
6
- metadata.gz: e49aec3c2b2d3233447164ecc919f305bd5c82753d6ef6df660db2f02c4b3f595f360fb16b1e1c82b198835c8ed6eee28bdb83b116a7a670fe332daff36ed603
7
- data.tar.gz: 8faad030713c86cd1a920a127e5971c752c2a40c67ba27267717677f2f8c863253f798e31c32f27667819c3be79f1b691dde0d1ce04f58b845990984ce0537fe
6
+ metadata.gz: 9841450ee5f2ea9d1d9ad95db2916dd9e08c56d6cba707188e841dc899ecacd6bcc87b1b6ace1884042cb82de7e3f819ae3b105b0e195428ff88a3b346c462de
7
+ data.tar.gz: 6abbe21b187ca9fa79f08edeecf5582b7f399a026d2a8ad602025ab0c63434579d235de18a82aec6807a07cddc51046317758b1de6c4e017b2112923a17700e0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (4.0.0.beta.14)
4
+ avo (4.0.0.beta.15)
5
5
  actionview (>= 6.1)
6
6
  active_link_to
7
7
  activerecord (>= 6.1)
@@ -4230,6 +4230,36 @@
4230
4230
  opacity: 60%;
4231
4231
  }
4232
4232
  }
4233
+ .tippy-box[data-theme~='basic'] {
4234
+ border-radius: var(--radius-md);
4235
+ border-style: var(--tw-border-style);
4236
+ border-width: 1px;
4237
+ border-color: var(--color-neutral-200);
4238
+ background-color: var(--color-background);
4239
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
4240
+ }
4241
+ .tippy-box[data-theme~='basic'] .tippy-content {
4242
+ padding-inline: calc(var(--spacing) * 2);
4243
+ padding-block: calc(var(--spacing) * 1);
4244
+ font-family: var(--font-sans);
4245
+ font-size: var(--text-sm);
4246
+ line-height: var(--tw-leading, var(--text-sm--line-height));
4247
+ --tw-leading: calc(var(--spacing) * 5);
4248
+ line-height: calc(var(--spacing) * 5);
4249
+ --tw-font-weight: var(--font-weight-normal);
4250
+ font-weight: var(--font-weight-normal);
4251
+ color: var(--color-content);
4252
+ }
4253
+ .tippy-box[data-theme~='basic'] .tippy-arrow {
4254
+ display: none;
4255
+ }
4256
+ .dark .tippy-box[data-theme~='basic'] {
4257
+ border-color: var(--color-secondary);
4258
+ background-color: var(--color-background);
4259
+ }
4260
+ .dark .tippy-box[data-theme~='basic'] .tippy-content {
4261
+ color: var(--color-content);
4262
+ }
4233
4263
  @layer components {
4234
4264
  @font-face {
4235
4265
  font-family: 'Inter';
@@ -8958,36 +8988,6 @@
8958
8988
  font-weight: var(--font-weight-medium);
8959
8989
  color: var(--color-content-secondary);
8960
8990
  }
8961
- .tippy-box[data-theme~='basic'] {
8962
- border-radius: var(--radius-md);
8963
- border-style: var(--tw-border-style);
8964
- border-width: 1px;
8965
- border-color: var(--color-neutral-200);
8966
- background-color: var(--color-background);
8967
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
8968
- }
8969
- .tippy-box[data-theme~='basic'] .tippy-content {
8970
- padding-inline: calc(var(--spacing) * 2);
8971
- padding-block: calc(var(--spacing) * 1);
8972
- font-family: var(--font-sans);
8973
- font-size: var(--text-sm);
8974
- line-height: var(--tw-leading, var(--text-sm--line-height));
8975
- --tw-leading: calc(var(--spacing) * 5);
8976
- line-height: calc(var(--spacing) * 5);
8977
- --tw-font-weight: var(--font-weight-normal);
8978
- font-weight: var(--font-weight-normal);
8979
- color: var(--color-content);
8980
- }
8981
- .tippy-box[data-theme~='basic'] .tippy-arrow {
8982
- display: none;
8983
- }
8984
- .dark .tippy-box[data-theme~='basic'] {
8985
- border-color: var(--color-secondary);
8986
- background-color: var(--color-background);
8987
- }
8988
- .dark .tippy-box[data-theme~='basic'] .tippy-content {
8989
- color: var(--color-content);
8990
- }
8991
8991
  .modal {
8992
8992
  --modal-height-sm: 24rem;
8993
8993
  --modal-height-md: 28rem;
@@ -84,6 +84,7 @@
84
84
  @custom-variant hover (&:hover);
85
85
 
86
86
  @import "./css/components/ui/checkbox.css";
87
+ @import "./css/components/tooltip.css";
87
88
 
88
89
  @layer components {
89
90
  @import "./css/fonts.css";
@@ -135,7 +136,6 @@
135
136
  @import "./css/components/color_scheme_switcher.css";
136
137
  @import "./css/components/discreet_information.css";
137
138
  @import "./css/components/hotkey.css";
138
- @import "./css/components/tooltip.css";
139
139
  @import "./css/components/modal.css";
140
140
  @import "./css/css-animations.css";
141
141
  @import "./css/sidebar.css";
data/lib/avo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "4.0.0.beta.14" unless const_defined?(:VERSION)
2
+ VERSION = "4.0.0.beta.15" unless const_defined?(:VERSION)
3
3
  end
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: 4.0.0.beta.14
4
+ version: 4.0.0.beta.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Marin