@helpwave/hightide 0.10.2 → 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.
@@ -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.10.2",
13
+ "version": "0.11.0",
14
14
  "files": [
15
15
  "dist"
16
16
  ],
@@ -45,17 +45,20 @@
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
- "react": "19.2.3",
51
- "react-dom": "19.2.3",
52
51
  "tailwindcss": "4.1.18"
53
52
  },
53
+ "peerDependencies": {
54
+ "react": "^19.0.0",
55
+ "react-dom": "^19.0.0"
56
+ },
54
57
  "devDependencies": {
55
- "@babel/core": "7.26.0",
56
- "@babel/preset-env": "7.26.0",
57
- "@babel/preset-react": "7.26.3",
58
- "@babel/preset-typescript": "7.26.0",
58
+ "@babel/core": "7.29.7",
59
+ "@babel/preset-env": "7.29.7",
60
+ "@babel/preset-react": "7.29.7",
61
+ "@babel/preset-typescript": "7.29.7",
59
62
  "@faker-js/faker": "10.1.0",
60
63
  "@helpwave/eslint-config": "0.0.11",
61
64
  "@storybook/addon-docs": "10.4.5",
@@ -75,6 +78,8 @@
75
78
  "jest": "30.2.0",
76
79
  "jest-environment-jsdom": "30.2.0",
77
80
  "postcss": "8.5.15",
81
+ "react": "19.2.3",
82
+ "react-dom": "19.2.3",
78
83
  "storybook": "10.4.5",
79
84
  "ts-jest": "29.4.6",
80
85
  "tsup": "8.5.1",
@@ -92,6 +97,7 @@
92
97
  },
93
98
  "overrides": {
94
99
  "esbuild": "0.28.1",
95
- "postcss": "8.5.15"
100
+ "postcss": "8.5.15",
101
+ "js-yaml": "4.2.0"
96
102
  }
97
103
  }