ariadne_view_components 0.0.95.3 → 0.0.95.5

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.95.3
4
+ version: 0.0.95.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-11 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tailwind_merge
@@ -269,7 +269,6 @@ files:
269
269
  - app/frontend/controllers/tooltip_controller.ts
270
270
  - app/frontend/entrypoints/application.ts
271
271
  - app/frontend/stylesheets/ariadne_view_components.css
272
- - app/frontend/stylesheets/scrollbar.css
273
272
  - app/frontend/stylesheets/theme.css
274
273
  - app/frontend/utils/createController.ts
275
274
  - app/frontend/utils/isMac.ts
@@ -1,28 +0,0 @@
1
- .scroll {
2
- scrollbar-color: theme('colors.gray.500/20') transparent;
3
-
4
- *::-webkit-scrollbar {
5
- @apply ariadne:h-4 ariadne:w-2;
6
- }
7
-
8
- *::-webkit-scrollbar:horizontal {
9
- @apply ariadne:h-2 ariadne:w-4;
10
- }
11
-
12
- *::-webkit-scrollbar-track {
13
- @apply ariadne:bg-transparent;
14
- }
15
-
16
- *::-webkit-scrollbar-thumb {
17
- @apply ariadne:bg-gray-500/20 ariadne:hover:bg-gray-500/40;
18
- @apply ariadne:transition-opacity;
19
- }
20
- }
21
-
22
- .scrollbar-trigger *::-webkit-scrollbar-thumb {
23
- @apply ariadne:md:invisible;
24
- }
25
-
26
- .scrollbar-trigger:hover *::-webkit-scrollbar-thumb {
27
- @apply ariadne:md:visible;
28
- }