@helpwave/hightide 0.10.3 → 0.11.1

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.
@@ -361,6 +361,9 @@
361
361
  .static {
362
362
  position: static;
363
363
  }
364
+ .sticky {
365
+ position: sticky;
366
+ }
364
367
  .inset-0 {
365
368
  inset: calc(var(--spacing) * 0);
366
369
  }
@@ -698,6 +701,9 @@
698
701
  .max-h-128 {
699
702
  max-height: calc(var(--spacing) * 128);
700
703
  }
704
+ .max-h-\[600px\] {
705
+ max-height: 600px;
706
+ }
701
707
  .\!min-h-10 {
702
708
  min-height: calc(var(--spacing) * 10) !important;
703
709
  }
@@ -2946,6 +2952,7 @@
2946
2952
  &[data-sticky] {
2947
2953
  position: sticky;
2948
2954
  top: calc(var(--spacing) * 0);
2955
+ z-index: 10;
2949
2956
  }
2950
2957
  }
2951
2958
  [data-name="table-body-row"] {
@@ -24,7 +24,7 @@
24
24
  @apply bg-table-header-background text-description font-bold;
25
25
 
26
26
  &[data-sticky] {
27
- @apply sticky top-0;
27
+ @apply sticky top-0 z-10;
28
28
  }
29
29
  }
30
30
 
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "access": "public"
11
11
  },
12
12
  "license": "MPL-2.0",
13
- "version": "0.10.3",
13
+ "version": "0.11.1",
14
14
  "files": [
15
15
  "dist"
16
16
  ],
@@ -45,6 +45,7 @@
45
45
  "@radix-ui/react-slot": "1.2.4",
46
46
  "@tailwindcss/cli": "4.1.18",
47
47
  "@tanstack/react-table": "8.21.3",
48
+ "@tanstack/react-virtual": "3.14.3",
48
49
  "clsx": "2.1.1",
49
50
  "lucide-react": "0.561.0",
50
51
  "tailwindcss": "4.1.18"