@helpwave/hightide 0.10.3 → 0.11.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.
- package/dist/index.d.mts +39 -2
- package/dist/index.d.ts +39 -2
- package/dist/index.js +457 -377
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +380 -301
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +6 -0
- package/package.json +2 -1
package/dist/style/globals.css
CHANGED
|
@@ -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
|
}
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"license": "MPL-2.0",
|
|
13
|
-
"version": "0.
|
|
13
|
+
"version": "0.11.0",
|
|
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"
|