Skip to content

Bump ws from 8.12.1 to 8.17.1 #109

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 1 commit into from
May 31, 2025
Merged
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
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.


Unchanged files with check annotations Beta

} from "./uiFunctions";
interface ScrollRendererProps<ListItem> {
list?: any[];

Check warning on line 17 in src/___subComponents/ScrollRenderer.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
renderItem?: renderFunc<ListItem>;
groupSeparator?:
| ReactNode
| ((g: any, idx: number, label: string) => ReactNode | null)

Check warning on line 21 in src/___subComponents/ScrollRenderer.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
| null;
}
if (render.index < list.length) {
const index = render.index + count;
setRender({
renderList: list.slice(0, index) as any,

Check warning on line 42 in src/___subComponents/ScrollRenderer.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
index,
});
}
useLayoutEffect(() => {
if (mounted) {
// reset list on list change
const span: any = containerRef.current;

Check warning on line 75 in src/___subComponents/ScrollRenderer.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
const pos = span.parentNode.scrollTop;
const index = Math.max(render.renderList.length, setupCount);
setRender({
renderList: list.slice(0, index) as any,

Check warning on line 80 in src/___subComponents/ScrollRenderer.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
index,
});
renderWhenEmpty?: ReactNode | (() => JSX.Element);
wrapperHtmlTag?: string;
renderOnScroll?: boolean;
[key: string]: any;

Check warning on line 14 in src/___subComponents/PlainList.tsx

GitHub Actions / build (14.x)

Unexpected any. Specify a different type
}
function PlainList<ListItem>(props: PlainListProps<ListItem>) {
renderWhenEmpty,
renderOnScroll,
wrapperHtmlTag,
__forwarededRef,

Check warning on line 24 in src/___subComponents/PlainList.tsx

GitHub Actions / build (14.x)

Variable name `__forwarededRef` must match one of the following formats: camelCase, PascalCase, UPPER_CASE
...tagProps
} = props;
const dataList = convertListToArray(list);
return (
<>
{WrapperElement ? (
// @ts-ignore

Check warning on line 54 in src/___subComponents/PlainList.tsx

GitHub Actions / build (14.x)

Do not use "@ts-ignore" because it alters compilation errors
<WrapperElement {...tagProps} ref={__forwarededRef}>
{content}
</WrapperElement>
componentDidUpdate(
prevProps: InfiniteLoaderProps,
prevState: InfiniteLoaderState

Check warning on line 69 in src/___subComponents/InfiniteLoader.tsx

GitHub Actions / build (14.x)

'prevState' is defined but never used
): void {
// reset scroll position to where last was
if (this.state.scrollingContainer) {
style.remove();
}
};
}, []);

Check warning on line 146 in src/___subComponents/DisplayHandler.tsx

GitHub Actions / build (14.x)

React Hook useEffect has missing dependencies: 'childSpanRef' and 'handleDisplayHandlerProps'. Either include them or remove the dependency array
return (
<>