@tanstack/solid-virtual 3.0.0-beta.6 → 3.0.0-beta.61

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/build/stats.json DELETED
@@ -1,104 +0,0 @@
1
- {
2
- "version": 2,
3
- "tree": {
4
- "name": "root",
5
- "children": [
6
- {
7
- "name": "index.production.js",
8
- "children": [
9
- {
10
- "name": "packages",
11
- "children": [
12
- {
13
- "name": "virtual-core/build/esm/index.js",
14
- "uid": "6b55-29"
15
- },
16
- {
17
- "name": "solid-virtual/src/index.tsx",
18
- "uid": "6b55-31"
19
- }
20
- ]
21
- }
22
- ]
23
- }
24
- ],
25
- "isRoot": true
26
- },
27
- "nodeParts": {
28
- "6b55-29": {
29
- "renderedLength": 16321,
30
- "gzipLength": 3919,
31
- "brotliLength": 0,
32
- "mainUid": "6b55-28"
33
- },
34
- "6b55-31": {
35
- "renderedLength": 1957,
36
- "gzipLength": 617,
37
- "brotliLength": 0,
38
- "mainUid": "6b55-30"
39
- }
40
- },
41
- "nodeMetas": {
42
- "6b55-28": {
43
- "id": "/packages/virtual-core/build/esm/index.js",
44
- "moduleParts": {
45
- "index.production.js": "6b55-29"
46
- },
47
- "imported": [],
48
- "importedBy": [
49
- {
50
- "uid": "6b55-30"
51
- }
52
- ]
53
- },
54
- "6b55-30": {
55
- "id": "/packages/solid-virtual/src/index.tsx",
56
- "moduleParts": {
57
- "index.production.js": "6b55-31"
58
- },
59
- "imported": [
60
- {
61
- "uid": "6b55-28"
62
- },
63
- {
64
- "uid": "6b55-32"
65
- },
66
- {
67
- "uid": "6b55-33"
68
- }
69
- ],
70
- "importedBy": [],
71
- "isEntry": true
72
- },
73
- "6b55-32": {
74
- "id": "solid-js",
75
- "moduleParts": {},
76
- "imported": [],
77
- "importedBy": [
78
- {
79
- "uid": "6b55-30"
80
- }
81
- ],
82
- "isExternal": true
83
- },
84
- "6b55-33": {
85
- "id": "solid-js/store",
86
- "moduleParts": {},
87
- "imported": [],
88
- "importedBy": [
89
- {
90
- "uid": "6b55-30"
91
- }
92
- ],
93
- "isExternal": true
94
- }
95
- },
96
- "env": {
97
- "rollup": "2.75.4"
98
- },
99
- "options": {
100
- "gzip": true,
101
- "brotli": false,
102
- "sourcemap": false
103
- }
104
- }
@@ -1,4 +0,0 @@
1
- import { PartialKeys, Virtualizer, VirtualizerOptions } from '@tanstack/virtual-core';
2
- export * from '@tanstack/virtual-core';
3
- export declare function createVirtualizer<TScrollElement, TItemElement = unknown>(options: PartialKeys<VirtualizerOptions<TScrollElement, TItemElement>, 'observeElementRect' | 'observeElementOffset' | 'scrollToFn'>): Virtualizer<TScrollElement, TItemElement>;
4
- export declare function createWindowVirtualizer<TItemElement = unknown>(options: PartialKeys<VirtualizerOptions<Window, TItemElement>, 'getScrollElement' | 'observeElementRect' | 'observeElementOffset' | 'scrollToFn'>): Virtualizer<Window, TItemElement>;