Skip to content

fix(deps): update dependency @tanstack/react-virtual to v3.10.8 #6292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"watch:css": "yarn build:css --watch"
},
"dependencies": {
"@tanstack/react-virtual": "~3.8.0",
"@tanstack/react-virtual": "~3.10.0",
"@ui5/webcomponents-react-base": "workspace:~",
"clsx": "2.1.1",
"react-table": "7.8.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface ColumnHeaderProps {
dragOver: boolean;
isDraggable: boolean;
headerTooltip: string;
virtualColumn: VirtualItem<HTMLDivElement>;
virtualColumn: VirtualItem;
columnVirtualizer: Virtualizer<DivWithCustomScrollProp, Element>;
isRtl: boolean;
children: ReactNode | ReactNode[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const EmptyRow = ({
className,
children
}: {
virtualRow: VirtualItem<HTMLDivElement>;
virtualRow: VirtualItem;
className: string;
children?: ReactNode;
}) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { classNames, styleData } from './RowSubComponent.module.css.js';

interface RowSubComponent {
subComponentsHeight: Record<string, { rowId: string; subComponentHeight?: number }>;
virtualRow: VirtualItem<HTMLDivElement>;
virtualRow: VirtualItem;
dispatch: (e: { type: string; payload?: Record<string, unknown> }) => void;
row: Record<string, unknown>;
rowHeight: number;
Expand Down
20 changes: 10 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5146,22 +5146,22 @@ __metadata:
languageName: node
linkType: hard

"@tanstack/react-virtual@npm:~3.8.0":
version: 3.8.4
resolution: "@tanstack/react-virtual@npm:3.8.4"
"@tanstack/react-virtual@npm:~3.10.0":
version: 3.10.8
resolution: "@tanstack/react-virtual@npm:3.10.8"
dependencies:
"@tanstack/virtual-core": "npm:3.8.4"
"@tanstack/virtual-core": "npm:3.10.8"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
checksum: 10c0/2c803a0fd9101c75666b894d455c0c793bc50df4b5039e2bc748c4c50b64ec4ebaf3de990ab711d396ad8cd0582ca1858c7d0132d7f72acb57dfd9721464186e
checksum: 10c0/b7aec88ef48f604d3e7245b9996ba42f06e6ee2c1a45146cb96814cb3873a4c888bf86d26d10284c847a5ed97e16dc9430c380387abc1231c2e43c00f6ebadff
languageName: node
linkType: hard

"@tanstack/virtual-core@npm:3.8.4":
version: 3.8.4
resolution: "@tanstack/virtual-core@npm:3.8.4"
checksum: 10c0/32b3d7c7d7c380992730f38efe171eddb4841a3f9bdac198ff6f6e7c00da0e22d2984d57dcb27895f234768accb5625fc04946aa8745c22a136b3f31941d42ac
"@tanstack/virtual-core@npm:3.10.8":
version: 3.10.8
resolution: "@tanstack/virtual-core@npm:3.10.8"
checksum: 10c0/ddb97cd03d84b343b38a2c14d85e33c788f4af622fccc0fdf997caf4e83e47e8f67b099b854c7dc4337d7662f647625ab3247cd8aa1bc9d4dda701bda83245f6
languageName: node
linkType: hard

Expand Down Expand Up @@ -6454,7 +6454,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@ui5/webcomponents-react@workspace:packages/main"
dependencies:
"@tanstack/react-virtual": "npm:~3.8.0"
"@tanstack/react-virtual": "npm:~3.10.0"
"@ui5/webcomponents-react-base": "workspace:~"
clsx: "npm:2.1.1"
react-table: "npm:7.8.0"
Expand Down
Loading