Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TanStack/virtual
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.2
Choose a base ref
...
head repository: TanStack/virtual
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.3
Choose a head ref
  • 3 commits
  • 41 files changed
  • 3 contributors

Commits on Jan 17, 2024

  1. release: v3.0.2

    tannerlinsley committed Jan 17, 2024
    Copy the full SHA
    8ce3edc View commit details

Commits on Jan 25, 2024

  1. docs: Re-organise for new docs layout (#653)

    * docs: Re-organise for new docs layout
    
    * Update paths
    lachlancollins authored Jan 25, 2024
    Copy the full SHA
    c2886b2 View commit details

Commits on Feb 2, 2024

  1. Copy the full SHA
    1a5a95c View commit details
Showing with 201 additions and 158 deletions.
  1. +164 −46 docs/config.json
  2. 0 docs/{adapters → framework/react}/react-virtual.md
  3. 0 docs/{adapters → framework/solid}/solid-virtual.md
  4. 0 docs/{adapters → framework/svelte}/svelte-virtual.md
  5. 0 docs/{adapters → framework/vue}/vue-virtual.md
  6. 0 docs/{guide → }/installation.md
  7. 0 docs/{guide → }/introduction.md
  8. BIN docs/public/images/bytes-logo.png
  9. +0 −49 docs/src/components/BytesForm.js
  10. +0 −32 docs/src/components/useBytesSubmit.js
  11. +1 −1 examples/react/dynamic/package.json
  12. +1 −1 examples/react/fixed/package.json
  13. +1 −1 examples/react/infinite-scroll/package.json
  14. +1 −1 examples/react/padding/package.json
  15. +1 −1 examples/react/scroll-padding/package.json
  16. +1 −1 examples/react/smooth-scroll/package.json
  17. +1 −1 examples/react/sticky/package.json
  18. +1 −1 examples/react/table/package.json
  19. +1 −1 examples/react/variable/package.json
  20. +1 −1 examples/react/window/package.json
  21. +1 −1 examples/svelte/dynamic/package.json
  22. +1 −1 examples/svelte/fixed/package.json
  23. +1 −1 examples/svelte/infinite-scroll/package.json
  24. +1 −1 examples/svelte/smooth-scroll/package.json
  25. +1 −1 examples/svelte/sticky/package.json
  26. +1 −1 examples/svelte/table/package.json
  27. +1 −1 examples/vue/dynamic/package.json
  28. +1 −1 examples/vue/fixed/package.json
  29. +1 −1 examples/vue/infinite-scroll/package.json
  30. +1 −1 examples/vue/padding/package.json
  31. +1 −1 examples/vue/scroll-padding/package.json
  32. +1 −1 examples/vue/smooth-scroll/package.json
  33. +1 −1 examples/vue/sticky/package.json
  34. +1 −1 examples/vue/table/package.json
  35. +1 −1 examples/vue/variable/package.json
  36. +1 −1 packages/react-virtual/package.json
  37. +1 −1 packages/solid-virtual/package.json
  38. +1 −1 packages/svelte-virtual/package.json
  39. +1 −1 packages/virtual-core/package.json
  40. +7 −1 packages/virtual-core/src/index.ts
  41. +1 −1 packages/vue-virtual/package.json
210 changes: 164 additions & 46 deletions docs/config.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
{
"$schema": "https://raw.githubusercontent.com/TanStack/tanstack.com/main/tanstack-docs-config.schema.json",
"docSearch": {
"appId": "",
"indexName": "",
"apiKey": ""
},
"menu": [
{
"label": "Guide",
"label": "Getting Started",
"children": [
{ "label": "Introduction", "to": "guide/introduction" },
{ "label": "Installation", "to": "guide/installation" }
]
},
{
"label": "Adapters",
"children": [
{ "label": "React Virtual", "to": "adapters/react-virtual" },
{ "label": "Solid Virtual", "to": "adapters/solid-virtual" },
{ "label": "Svelte Virtual", "to": "adapters/svelte-virtual" },
{ "label": "Vue Virtual", "to": "adapters/vue-virtual" }
{ "label": "Introduction", "to": "introduction" },
{ "label": "Installation", "to": "installation" }
]
},
{
@@ -27,49 +19,175 @@
{ "label": "Virtualizer", "to": "api/virtualizer" },
{ "label": "VirtualItem", "to": "api/virtual-item" }
]
},
}
],
"frameworkMenus": [
{
"label": "React Examples",
"children": [
{ "to": "examples/react/fixed", "label": "Fixed" },
{ "to": "examples/react/variable", "label": "Variable" },
{ "to": "examples/react/dynamic", "label": "Dynamic" },
{ "to": "examples/react/padding", "label": "Padding" },
{ "to": "examples/react/sticky", "label": "Sticky" },
{ "to": "examples/react/infinite-scroll", "label": "Infinite Scroll" },
{ "to": "examples/react/smooth-scroll", "label": "Smooth Scroll" },
{ "to": "examples/react/table", "label": "Table" },
{ "to": "examples/react/window", "label": "Window" }
"framework": "react",
"menuItems": [
{
"label": "Getting Started",
"children": [
{
"label": "React Virtual",
"to": "framework/react/react-virtual"
}
]
},
{
"label": "Examples",
"children": [
{
"to": "framework/react/examples/fixed",
"label": "Fixed"
},
{
"to": "framework/react/examples/variable",
"label": "Variable"
},
{
"to": "framework/react/examples/dynamic",
"label": "Dynamic"
},
{
"to": "framework/react/examples/padding",
"label": "Padding"
},
{
"to": "framework/react/examples/sticky",
"label": "Sticky"
},
{
"to": "framework/react/examples/infinite-scroll",
"label": "Infinite Scroll"
},
{
"to": "framework/react/examples/smooth-scroll",
"label": "Smooth Scroll"
},
{
"to": "framework/react/examples/table",
"label": "Table"
},
{
"to": "framework/react/examples/window",
"label": "Window"
}
]
}
]
},
{
"label": "Solid Examples",
"children": [{ "to": "#", "label": "Coming Soon!" }]
"framework": "solid",
"menuItems": [
{
"label": "Getting Started",
"children": [
{ "label": "Solid Virtual", "to": "framework/solid/solid-virtual" }
]
}
]
},
{
"label": "Svelte Examples",
"children": [
{ "to": "examples/svelte/fixed", "label": "Fixed" },
{ "to": "examples/svelte/variable", "label": "Variable" },
{ "to": "examples/svelte/dynamic", "label": "Dynamic" },
{ "to": "examples/svelte/sticky", "label": "Sticky" },
{ "to": "examples/svelte/infinite-scroll", "label": "Infinite Scroll" },
{ "to": "examples/svelte/smooth-scroll", "label": "Smooth Scroll" },
{ "to": "examples/svelte/table", "label": "Table" }
"framework": "svelte",
"menuItems": [
{
"label": "Getting Started",
"children": [
{
"label": "Svelte Virtual",
"to": "framework/svelte/svelte-virtual"
}
]
},
{
"label": "Examples",
"children": [
{
"to": "framework/svelte/examples/fixed",
"label": "Fixed"
},
{
"to": "framework/svelte/examples/variable",
"label": "Variable"
},
{
"to": "framework/svelte/examples/dynamic",
"label": "Dynamic"
},
{
"to": "framework/svelte/examples/sticky",
"label": "Sticky"
},
{
"to": "framework/svelte/examples/infinite-scroll",
"label": "Infinite Scroll"
},
{
"to": "framework/svelte/examples/smooth-scroll",
"label": "Smooth Scroll"
},
{
"to": "framework/svelte/examples/table",
"label": "Table"
}
]
}
]
},
{
"label": "Vue Examples",
"children": [
{ "to": "examples/vue/fixed", "label": "Fixed" },
{ "to": "examples/vue/variable", "label": "Variable" },
{ "to": "examples/vue/dynamic", "label": "Dynamic" },
{ "to": "examples/vue/sticky", "label": "Sticky" },
{ "to": "examples/vue/infinite-scroll", "label": "Infinite Scroll" },
{ "to": "examples/vue/smooth-scroll", "label": "Smooth Scroll" },
{ "to": "examples/vue/table", "label": "Table" },
{ "to": "examples/vue/padding", "label": "Padding" },
{ "to": "examples/vue/scroll-padding", "label": "Scroll Padding" }
"framework": "vue",
"menuItems": [
{
"label": "Getting Started",
"children": [
{
"label": "Vue Virtual",
"to": "framework/vue/vue-virtual"
}
]
},
{
"label": "Examples",
"children": [
{
"to": "framework/vue/examples/fixed",
"label": "Fixed"
},
{
"to": "framework/vue/examples/variable",
"label": "Variable"
},
{
"to": "framework/vue/examples/dynamic",
"label": "Dynamic"
},
{
"to": "framework/vue/examples/sticky",
"label": "Sticky"
},
{
"to": "framework/vue/examples/infinite-scroll",
"label": "Infinite Scroll"
},
{
"to": "framework/vue/examples/smooth-scroll",
"label": "Smooth Scroll"
},
{
"to": "framework/vue/examples/table",
"label": "Table"
},
{
"to": "framework/vue/examples/padding",
"label": "Padding"
},
{
"to": "framework/vue/examples/scroll-padding",
"label": "Scroll Padding"
}
]
}
]
}
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed docs/public/images/bytes-logo.png
Binary file not shown.
49 changes: 0 additions & 49 deletions docs/src/components/BytesForm.js

This file was deleted.

32 changes: 0 additions & 32 deletions docs/src/components/useBytesSubmit.js

This file was deleted.

2 changes: 1 addition & 1 deletion examples/react/dynamic/package.json
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
},
"dependencies": {
"@faker-js/faker": "7.6.0",
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
2 changes: 1 addition & 1 deletion examples/react/fixed/package.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"serve": "vite preview"
},
"dependencies": {
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
2 changes: 1 addition & 1 deletion examples/react/infinite-scroll/package.json
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
"start": "vite"
},
"dependencies": {
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.1"
2 changes: 1 addition & 1 deletion examples/react/padding/package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@tanstack/react-virtual": "3.0.1"
"@tanstack/react-virtual": "3.0.2"
},
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
2 changes: 1 addition & 1 deletion examples/react/scroll-padding/package.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
},
"dependencies": {
"@react-hookz/web": "^14.2.2",
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
2 changes: 1 addition & 1 deletion examples/react/smooth-scroll/package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@tanstack/react-virtual": "3.0.1"
"@tanstack/react-virtual": "3.0.2"
},
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
2 changes: 1 addition & 1 deletion examples/react/sticky/package.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
},
"dependencies": {
"@faker-js/faker": "^7.1.0",
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
2 changes: 1 addition & 1 deletion examples/react/table/package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"dependencies": {
"@faker-js/faker": "7.6.0",
"@tanstack/react-table": "^8.7.9",
"@tanstack/react-virtual": "3.0.1",
"@tanstack/react-virtual": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Loading