1
0
Fork 0

Changed stuff, added filter for statistics module

This commit is contained in:
Techognito 2025-09-02 16:37:06 +02:00
parent 4a91ae2bf9
commit fe87374e47
251 changed files with 3295 additions and 1705 deletions

2
node_modules/@types/bun/README.md generated vendored
View file

@ -13,7 +13,7 @@ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree
````
### Additional Details
* Last updated: Sat, 19 Jul 2025 15:35:34 GMT
* Last updated: Tue, 26 Aug 2025 05:02:57 GMT
* Dependencies: [bun-types](https://npmjs.com/package/bun-types)
# Credits

View file

@ -1,6 +1,6 @@
{
"name": "@types/bun",
"version": "1.2.19",
"version": "1.2.21",
"description": "TypeScript definitions for bun",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bun",
"license": "MIT",
@ -45,9 +45,9 @@
},
"scripts": {},
"dependencies": {
"bun-types": "1.2.19"
"bun-types": "1.2.21"
},
"peerDependencies": {},
"typesPublisherContentHash": "8da2dd3c51d5ee111d571de82c46eca1d872d4f3a39c3e3a06eff0ab145d6882",
"typeScriptVersion": "5.1"
"typesPublisherContentHash": "95edf465084e25778ca108276e8cf5eade636e3fed1e56e4e91d1d0cfabf74b3",
"typeScriptVersion": "5.2"
}

View file

@ -8,7 +8,7 @@ This package contains type definitions for react-dom (https://react.dev/).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom.
### Additional Details
* Last updated: Wed, 04 Jun 2025 12:44:27 GMT
* Last updated: Thu, 28 Aug 2025 12:02:46 GMT
* Dependencies: none
* Peer dependencies: [@types/react](https://npmjs.com/package/@types/react)

View file

@ -30,3 +30,8 @@ import React = require("react");
import ReactDOM = require(".");
export {};
declare module "react" {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface CacheSignal extends AbortSignal {}
}

View file

@ -72,6 +72,7 @@ declare module "react" {
listener: EventListener,
optionsOrUseCapture?: Parameters<Element["removeEventListener"]>[2],
): void;
experimental_scrollIntoView(alignToTop?: boolean): void;
}
}

View file

@ -1,6 +1,6 @@
{
"name": "@types/react-dom",
"version": "19.1.6",
"version": "19.1.9",
"description": "TypeScript definitions for react-dom",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom",
"license": "MIT",
@ -123,6 +123,6 @@
"peerDependencies": {
"@types/react": "^19.0.0"
},
"typesPublisherContentHash": "7b56a76f96eb2aa35d120d8e3b6f3d4d931764fe44b89b21cd496919cab0e223",
"typeScriptVersion": "5.1"
"typesPublisherContentHash": "7dbb3f6967ec6ea50b0b724a9bb3c8d7c7b80b27e0134b57296d46f7b9291d18",
"typeScriptVersion": "5.2"
}

View file

@ -22,7 +22,7 @@ declare global {
}
import { ReactNode } from "react";
import { ErrorInfo } from "./client";
import { ErrorInfo, ReactFormState } from "./client";
export type BootstrapScriptDescriptor = {
src: string;
@ -42,6 +42,7 @@ export interface RenderToPipeableStreamOptions {
onShellError?: (error: unknown) => void;
onAllReady?: () => void;
onError?: (error: unknown, errorInfo: ErrorInfo) => string | void;
formState?: ReactFormState | null;
}
export interface PipeableStream {
@ -93,6 +94,7 @@ export interface RenderToReadableStreamOptions {
progressiveChunkSize?: number;
signal?: AbortSignal;
onError?: (error: unknown, errorInfo: ErrorInfo) => string | void;
formState?: ReactFormState | null;
}
export interface ReactDOMServerReadableStream extends ReadableStream {

View file

@ -8,7 +8,7 @@ This package contains type definitions for react (https://react.dev/).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react.
### Additional Details
* Last updated: Wed, 11 Jun 2025 13:41:16 GMT
* Last updated: Wed, 27 Aug 2025 17:02:32 GMT
* Dependencies: [csstype](https://npmjs.com/package/csstype)
# Credits

View file

@ -32,4 +32,7 @@ type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never };
declare module "." {
export function unstable_useCacheRefresh(): () => void;
export interface CacheSignal {}
export function cacheSignal(): null | CacheSignal;
}

View file

@ -226,6 +226,11 @@ declare module "." {
| "hidden"
| "visible"
| undefined;
/**
* A name for this Activity boundary for instrumentation purposes.
* The name will help identify this boundary in React DevTools.
*/
name?: string | undefined;
children: ReactNode;
}

21
node_modules/@types/react/index.d.ts generated vendored
View file

@ -1779,8 +1779,6 @@ declare namespace React {
* `useImperativeHandle` customizes the instance value that is exposed to parent components when using
* `ref`. As always, imperative code using refs should be avoided in most cases.
*
* `useImperativeHandle` should be used with `React.forwardRef`.
*
* @version 16.8.0
* @see {@link https://react.dev/reference/react/useImperativeHandle}
*/
@ -3365,6 +3363,7 @@ declare namespace React {
charSet?: string | undefined;
crossOrigin?: CrossOrigin;
defer?: boolean | undefined;
fetchPriority?: "high" | "low" | "auto" | undefined;
integrity?: string | undefined;
noModule?: boolean | undefined;
referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
@ -3572,7 +3571,21 @@ declare namespace React {
direction?: number | string | undefined;
display?: number | string | undefined;
divisor?: number | string | undefined;
dominantBaseline?: number | string | undefined;
dominantBaseline?:
| "auto"
| "use-script"
| "no-change"
| "reset-size"
| "ideographic"
| "alphabetic"
| "hanging"
| "mathematical"
| "central"
| "middle"
| "text-after-edge"
| "text-before-edge"
| "inherit"
| undefined;
dur?: number | string | undefined;
dx?: number | string | undefined;
dy?: number | string | undefined;
@ -3719,7 +3732,7 @@ declare namespace React {
tableValues?: number | string | undefined;
targetX?: number | string | undefined;
targetY?: number | string | undefined;
textAnchor?: string | undefined;
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
textDecoration?: number | string | undefined;
textLength?: number | string | undefined;
textRendering?: number | string | undefined;

View file

@ -1,6 +1,6 @@
{
"name": "@types/react",
"version": "19.1.8",
"version": "19.1.12",
"description": "TypeScript definitions for react",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
"license": "MIT",
@ -205,6 +205,6 @@
"csstype": "^3.0.2"
},
"peerDependencies": {},
"typesPublisherContentHash": "585a01b49a65d7fbb67c6837bf92323a5aeed126fb67079897cfc5b780c19454",
"typeScriptVersion": "5.1"
"typesPublisherContentHash": "59e7509ab740518a751d8910ee1150e7e8056ac89bef5db10db693128940b821",
"typeScriptVersion": "5.2"
}

View file

@ -32,4 +32,7 @@ type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never };
declare module "." {
export function unstable_useCacheRefresh(): () => void;
export interface CacheSignal {}
export function cacheSignal(): null | CacheSignal;
}

View file

@ -226,6 +226,11 @@ declare module "." {
| "hidden"
| "visible"
| undefined;
/**
* A name for this Activity boundary for instrumentation purposes.
* The name will help identify this boundary in React DevTools.
*/
name?: string | undefined;
children: ReactNode;
}

View file

@ -1777,8 +1777,6 @@ declare namespace React {
* `useImperativeHandle` customizes the instance value that is exposed to parent components when using
* `ref`. As always, imperative code using refs should be avoided in most cases.
*
* `useImperativeHandle` should be used with `React.forwardRef`.
*
* @version 16.8.0
* @see {@link https://react.dev/reference/react/useImperativeHandle}
*/
@ -3363,6 +3361,7 @@ declare namespace React {
charSet?: string | undefined;
crossOrigin?: CrossOrigin;
defer?: boolean | undefined;
fetchPriority?: "high" | "low" | "auto" | undefined;
integrity?: string | undefined;
noModule?: boolean | undefined;
referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
@ -3570,7 +3569,21 @@ declare namespace React {
direction?: number | string | undefined;
display?: number | string | undefined;
divisor?: number | string | undefined;
dominantBaseline?: number | string | undefined;
dominantBaseline?:
| "auto"
| "use-script"
| "no-change"
| "reset-size"
| "ideographic"
| "alphabetic"
| "hanging"
| "mathematical"
| "central"
| "middle"
| "text-after-edge"
| "text-before-edge"
| "inherit"
| undefined;
dur?: number | string | undefined;
dx?: number | string | undefined;
dy?: number | string | undefined;
@ -3717,7 +3730,7 @@ declare namespace React {
tableValues?: number | string | undefined;
targetX?: number | string | undefined;
targetY?: number | string | undefined;
textAnchor?: string | undefined;
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
textDecoration?: number | string | undefined;
textLength?: number | string | undefined;
textRendering?: number | string | undefined;

View file

@ -3733,7 +3733,21 @@ declare namespace React {
direction?: number | string | undefined;
display?: number | string | undefined;
divisor?: number | string | undefined;
dominantBaseline?: number | string | undefined;
dominantBaseline?:
| "auto"
| "use-script"
| "no-change"
| "reset-size"
| "ideographic"
| "alphabetic"
| "hanging"
| "mathematical"
| "central"
| "middle"
| "text-after-edge"
| "text-before-edge"
| "inherit"
| undefined;
dur?: number | string | undefined;
dx?: number | string | undefined;
dy?: number | string | undefined;
@ -3880,7 +3894,7 @@ declare namespace React {
tableValues?: number | string | undefined;
targetX?: number | string | undefined;
targetY?: number | string | undefined;
textAnchor?: string | undefined;
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
textDecoration?: number | string | undefined;
textLength?: number | string | undefined;
textRendering?: number | string | undefined;

View file

@ -3734,7 +3734,21 @@ declare namespace React {
direction?: number | string | undefined;
display?: number | string | undefined;
divisor?: number | string | undefined;
dominantBaseline?: number | string | undefined;
dominantBaseline?:
| "auto"
| "use-script"
| "no-change"
| "reset-size"
| "ideographic"
| "alphabetic"
| "hanging"
| "mathematical"
| "central"
| "middle"
| "text-after-edge"
| "text-before-edge"
| "inherit"
| undefined;
dur?: number | string | undefined;
dx?: number | string | undefined;
dy?: number | string | undefined;
@ -3881,7 +3895,7 @@ declare namespace React {
tableValues?: number | string | undefined;
targetX?: number | string | undefined;
targetY?: number | string | undefined;
textAnchor?: string | undefined;
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
textDecoration?: number | string | undefined;
textLength?: number | string | undefined;
textRendering?: number | string | undefined;