@octanejs/window 0.0.15 → 0.0.16
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/README.md +7 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,6 +5,13 @@ the [Octane](https://github.com/octanejs/octane) renderer. Change the package
|
|
|
5
5
|
import and keep the current v2 `List`, `Grid`, sizing, callback, ref, and
|
|
6
6
|
imperative-scrolling contracts.
|
|
7
7
|
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm install @octanejs/window
|
|
12
|
+
pnpm add @octanejs/window
|
|
13
|
+
```
|
|
14
|
+
|
|
8
15
|
```diff
|
|
9
16
|
-import { List } from 'react-window';
|
|
10
17
|
+import { List } from '@octanejs/window';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/window",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/react": "^19.2.17"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"octane": "0.1.
|
|
46
|
+
"octane": "0.1.50"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"react-dom": "^19.2.7",
|
|
55
55
|
"react-window": "2.3.0",
|
|
56
56
|
"vitest": "^4.1.10",
|
|
57
|
-
"@octanejs/testing-library": "0.1.
|
|
58
|
-
"octane": "0.1.
|
|
57
|
+
"@octanejs/testing-library": "0.1.47",
|
|
58
|
+
"octane": "0.1.50"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"adapted:generate": "node ../../scripts/react-port/materialize.mjs run --package-dir .",
|