Latest repo

This commit is contained in:
Marc
2025-06-02 16:42:16 +00:00
parent 53ddf1a329
commit cde5fae175
27907 changed files with 3875388 additions and 1 deletions

20
node_modules/@react-pdf/reconciler/lib/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
interface Reconciler<T> {
createContainer: (container: any) => T;
updateContainer: (element: T, container: T, parentComponent: T, callback?: () => void) => void;
}
type ReconcilerFactory = <I, T>(config: {
appendChild: (parent: I, child: I | T) => void;
appendChildToContainer: (parent: I, child: I | T) => void;
commitTextUpdate: (textInstance: T, oldText: string, newText: string) => void;
commitUpdate: (instance: I, updatePayload: any, type: string, oldProps: any, newProps: any) => void;
createInstance: (type: string, props: any) => I;
createTextInstance: (text: string) => T;
insertBefore: (parent: I, child: I | T, beforeChild: I | T) => void;
removeChild: (parent: I, child: I | T) => void;
removeChildFromContainer: (parent: I, child: I | T) => void;
resetAfterCommit: () => void;
}) => Reconciler<I>;
declare const _default: ReconcilerFactory;
export { _default as default };

10
node_modules/@react-pdf/reconciler/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import createRendererForReact19 from './reconciler-31.js';
import createRendererForReact18AndLess from './reconciler-23.js';
const isReact19 = React.version.startsWith('19');
var index = isReact19
? createRendererForReact19
: createRendererForReact18AndLess;
export { index as default };

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long