bippy 0.6.1-dev.0597fd5 → 0.6.1-dev.3a24abf
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -48
- package/dist/core.cjs +1 -1
- package/dist/core.d.cts +32 -44
- package/dist/core.d.ts +32 -44
- package/dist/core.js +1 -1
- package/dist/core2.cjs +9 -0
- package/dist/core2.d.cts +3 -3
- package/dist/core2.d.ts +3 -3
- package/dist/core2.js +9 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.iife.js +1 -1
- package/dist/index.js +1 -1
- package/dist/install-hook-only.cjs +1 -1
- package/dist/install-hook-only.d.cts +1 -1
- package/dist/install-hook-only.d.ts +1 -1
- package/dist/install-hook-only.iife.js +1 -1
- package/dist/install-hook-only.js +1 -1
- package/dist/rdt-hook.cjs +1 -1
- package/dist/rdt-hook.js +1 -1
- package/dist/source.cjs +14 -4
- package/dist/source.d.cts +1 -1
- package/dist/source.d.ts +1 -1
- package/dist/source.js +14 -4
- package/dist/types.d.cts +291 -0
- package/dist/types.d.ts +291 -0
- package/package.json +14 -12
- package/src/core.ts +206 -155
- package/src/generated/react-work-tags.ts +169 -0
- package/src/rdt-hook.ts +24 -67
- package/src/react-internals.ts +67 -0
- package/src/source/constants.ts +1 -1
- package/src/source/get-source.ts +2 -1
- package/src/source/owner-stack.ts +64 -77
- package/src/source/parse-stack.ts +1 -1
- package/src/source/symbolication.ts +25 -4
- package/src/types.ts +154 -333
- package/src/unsubscribe.ts +2 -2
- package/dist/get-source.cjs +0 -19
- package/dist/get-source.js +0 -19
- package/dist/react-refresh.cjs +0 -9
- package/dist/react-refresh.d.cts +0 -66
- package/dist/react-refresh.d.ts +0 -66
- package/dist/react-refresh.js +0 -9
- package/dist/unsubscribe.d.cts +0 -298
- package/dist/unsubscribe.d.ts +0 -298
- package/src/react-refresh/constants.ts +0 -9
- package/src/react-refresh/detect-hmr-transport.ts +0 -33
- package/src/react-refresh/index.ts +0 -173
- package/src/react-refresh/metro-hmr-transport.ts +0 -188
- package/src/react-refresh/next-webpack-hmr-transport.ts +0 -72
- package/src/react-refresh/normalize-hmr-file-path.ts +0 -24
- package/src/react-refresh/types.ts +0 -7
- package/src/react-refresh/vite-hmr-transport.ts +0 -116
package/dist/types.d.cts
ADDED
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import ReactReconciler from "react-reconciler";
|
|
3
|
+
//#region src/generated/react-work-tags.d.ts
|
|
4
|
+
interface ReactWorkTagMap {
|
|
5
|
+
ActivityComponent: number;
|
|
6
|
+
CacheComponent: number;
|
|
7
|
+
ClassComponent: number;
|
|
8
|
+
ContextConsumer: number;
|
|
9
|
+
ContextProvider: number;
|
|
10
|
+
CoroutineComponent: number;
|
|
11
|
+
CoroutineHandlerPhase: number;
|
|
12
|
+
DehydratedSuspenseComponent: number;
|
|
13
|
+
ForwardRef: number;
|
|
14
|
+
Fragment: number;
|
|
15
|
+
FunctionComponent: number;
|
|
16
|
+
HostComponent: number;
|
|
17
|
+
HostHoistable: number;
|
|
18
|
+
HostPortal: number;
|
|
19
|
+
HostRoot: number;
|
|
20
|
+
HostSingleton: number;
|
|
21
|
+
HostText: number;
|
|
22
|
+
IncompleteClassComponent: number;
|
|
23
|
+
IncompleteFunctionComponent: number;
|
|
24
|
+
IndeterminateComponent: number;
|
|
25
|
+
LazyComponent: number;
|
|
26
|
+
LegacyHiddenComponent: number;
|
|
27
|
+
MemoComponent: number;
|
|
28
|
+
Mode: number;
|
|
29
|
+
OffscreenComponent: number;
|
|
30
|
+
Profiler: number;
|
|
31
|
+
ScopeComponent: number;
|
|
32
|
+
SimpleMemoComponent: number;
|
|
33
|
+
SuspenseComponent: number;
|
|
34
|
+
SuspenseListComponent: number;
|
|
35
|
+
Throw: number;
|
|
36
|
+
TracingMarkerComponent: number;
|
|
37
|
+
ViewTransitionComponent: number;
|
|
38
|
+
YieldComponent: number;
|
|
39
|
+
}
|
|
40
|
+
declare const ReactWorkTags: {
|
|
41
|
+
readonly "17.0.1": {
|
|
42
|
+
readonly ActivityComponent: -1;
|
|
43
|
+
readonly CacheComponent: -1;
|
|
44
|
+
readonly ClassComponent: 1;
|
|
45
|
+
readonly ContextConsumer: 9;
|
|
46
|
+
readonly ContextProvider: 10;
|
|
47
|
+
readonly CoroutineComponent: -1;
|
|
48
|
+
readonly CoroutineHandlerPhase: -1;
|
|
49
|
+
readonly DehydratedSuspenseComponent: 18;
|
|
50
|
+
readonly ForwardRef: 11;
|
|
51
|
+
readonly Fragment: 7;
|
|
52
|
+
readonly FunctionComponent: 0;
|
|
53
|
+
readonly HostComponent: 5;
|
|
54
|
+
readonly HostHoistable: -1;
|
|
55
|
+
readonly HostPortal: 4;
|
|
56
|
+
readonly HostRoot: 3;
|
|
57
|
+
readonly HostSingleton: -1;
|
|
58
|
+
readonly HostText: 6;
|
|
59
|
+
readonly IncompleteClassComponent: 17;
|
|
60
|
+
readonly IncompleteFunctionComponent: -1;
|
|
61
|
+
readonly IndeterminateComponent: 2;
|
|
62
|
+
readonly LazyComponent: 16;
|
|
63
|
+
readonly LegacyHiddenComponent: 24;
|
|
64
|
+
readonly MemoComponent: 14;
|
|
65
|
+
readonly Mode: 8;
|
|
66
|
+
readonly OffscreenComponent: 23;
|
|
67
|
+
readonly Profiler: 12;
|
|
68
|
+
readonly ScopeComponent: 21;
|
|
69
|
+
readonly SimpleMemoComponent: 15;
|
|
70
|
+
readonly SuspenseComponent: 13;
|
|
71
|
+
readonly SuspenseListComponent: 19;
|
|
72
|
+
readonly Throw: -1;
|
|
73
|
+
readonly TracingMarkerComponent: -1;
|
|
74
|
+
readonly ViewTransitionComponent: -1;
|
|
75
|
+
readonly YieldComponent: -1;
|
|
76
|
+
};
|
|
77
|
+
readonly "17.0.2": {
|
|
78
|
+
readonly ActivityComponent: 31;
|
|
79
|
+
readonly CacheComponent: 24;
|
|
80
|
+
readonly ClassComponent: 1;
|
|
81
|
+
readonly ContextConsumer: 9;
|
|
82
|
+
readonly ContextProvider: 10;
|
|
83
|
+
readonly CoroutineComponent: -1;
|
|
84
|
+
readonly CoroutineHandlerPhase: -1;
|
|
85
|
+
readonly DehydratedSuspenseComponent: 18;
|
|
86
|
+
readonly ForwardRef: 11;
|
|
87
|
+
readonly Fragment: 7;
|
|
88
|
+
readonly FunctionComponent: 0;
|
|
89
|
+
readonly HostComponent: 5;
|
|
90
|
+
readonly HostHoistable: 26;
|
|
91
|
+
readonly HostPortal: 4;
|
|
92
|
+
readonly HostRoot: 3;
|
|
93
|
+
readonly HostSingleton: 27;
|
|
94
|
+
readonly HostText: 6;
|
|
95
|
+
readonly IncompleteClassComponent: 17;
|
|
96
|
+
readonly IncompleteFunctionComponent: 28;
|
|
97
|
+
readonly IndeterminateComponent: 2;
|
|
98
|
+
readonly LazyComponent: 16;
|
|
99
|
+
readonly LegacyHiddenComponent: 23;
|
|
100
|
+
readonly MemoComponent: 14;
|
|
101
|
+
readonly Mode: 8;
|
|
102
|
+
readonly OffscreenComponent: 22;
|
|
103
|
+
readonly Profiler: 12;
|
|
104
|
+
readonly ScopeComponent: 21;
|
|
105
|
+
readonly SimpleMemoComponent: 15;
|
|
106
|
+
readonly SuspenseComponent: 13;
|
|
107
|
+
readonly SuspenseListComponent: 19;
|
|
108
|
+
readonly Throw: 29;
|
|
109
|
+
readonly TracingMarkerComponent: 25;
|
|
110
|
+
readonly ViewTransitionComponent: 30;
|
|
111
|
+
readonly YieldComponent: -1;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
type ReactWorkTagVersion = keyof typeof ReactWorkTags;
|
|
115
|
+
declare const ActivityComponentTag: 31;
|
|
116
|
+
declare const ClassComponentTag: 1;
|
|
117
|
+
declare const ContextConsumerTag: 9;
|
|
118
|
+
declare const DehydratedSuspenseComponentTag: 18;
|
|
119
|
+
declare const ForwardRefTag: 11;
|
|
120
|
+
declare const FragmentTag: 7;
|
|
121
|
+
declare const FunctionComponentTag: 0;
|
|
122
|
+
declare const HostComponentTag: 5;
|
|
123
|
+
declare const HostHoistableTag: 26;
|
|
124
|
+
declare const HostPortalTag: 4;
|
|
125
|
+
declare const HostRootTag: 3;
|
|
126
|
+
declare const HostSingletonTag: 27;
|
|
127
|
+
declare const HostTextTag: 6;
|
|
128
|
+
declare const LazyComponentTag: 16;
|
|
129
|
+
declare const LegacyHiddenComponentTag: 23;
|
|
130
|
+
declare const MemoComponentTag: 14;
|
|
131
|
+
declare const OffscreenComponentTag: 22;
|
|
132
|
+
declare const SimpleMemoComponentTag: 15;
|
|
133
|
+
declare const SuspenseComponentTag: 13;
|
|
134
|
+
declare const SuspenseListComponentTag: 19;
|
|
135
|
+
declare const ViewTransitionComponentTag: 30;
|
|
136
|
+
type ReactWorkTag = Exclude<(typeof ReactWorkTags)[ReactWorkTagVersion][keyof ReactWorkTagMap], -1>;
|
|
137
|
+
type HostWorkTag = typeof HostComponentTag | typeof HostHoistableTag | typeof HostSingletonTag | typeof HostTextTag;
|
|
138
|
+
//#endregion
|
|
139
|
+
//#region src/types.d.ts
|
|
140
|
+
type BundleType = ReactReconciler.BundleType;
|
|
141
|
+
type Flags = ReactReconciler.Flags;
|
|
142
|
+
type HookType = ReactReconciler.HookType;
|
|
143
|
+
type LanePriority = ReactReconciler.LanePriority;
|
|
144
|
+
type Lanes = ReactReconciler.Lanes;
|
|
145
|
+
type MutableSource = ReactReconciler.MutableSource;
|
|
146
|
+
type OpaqueHandle = ReactReconciler.OpaqueHandle;
|
|
147
|
+
type OpaqueRoot = ReactReconciler.OpaqueRoot;
|
|
148
|
+
type React$AbstractComponent<Config, Instance = unknown> = ReactReconciler.React$AbstractComponent<Config, Instance>;
|
|
149
|
+
type RootTag = ReactReconciler.RootTag;
|
|
150
|
+
type TypeOfMode = ReactReconciler.TypeOfMode;
|
|
151
|
+
type WorkTag = ReactReconciler.WorkTag | ReactWorkTag;
|
|
152
|
+
interface HostConfig<Type = unknown, HostProps = unknown, Container = unknown, Instance = unknown, TextInstance = unknown, SuspenseInstance = unknown, HydratableInstance = unknown, FormInstance = unknown, PublicInstance = unknown, HostContext = unknown, ChildSet = unknown, TimeoutHandle = unknown, NoTimeout = unknown, TransitionStatus = unknown> extends ReactReconciler.HostConfig<Type, HostProps, Container, Instance, TextInstance, SuspenseInstance, HydratableInstance, FormInstance, PublicInstance, HostContext, ChildSet, TimeoutHandle, NoTimeout, TransitionStatus> {}
|
|
153
|
+
interface Source extends ReactReconciler.Source {}
|
|
154
|
+
interface RefObject extends ReactReconciler.RefObject {}
|
|
155
|
+
interface Thenable<T> extends ReactReconciler.Thenable<T> {}
|
|
156
|
+
interface ReactContext<T> extends ReactReconciler.ReactContext<T> {}
|
|
157
|
+
interface ReactProviderType<T> extends ReactReconciler.ReactProviderType<T> {}
|
|
158
|
+
interface ReactProvider<T> extends ReactReconciler.ReactProvider<T> {}
|
|
159
|
+
interface ReactConsumer<T> extends ReactReconciler.ReactConsumer<T> {}
|
|
160
|
+
interface ReactPortal extends ReactReconciler.ReactPortal {}
|
|
161
|
+
interface ComponentSelector extends ReactReconciler.ComponentSelector {}
|
|
162
|
+
interface HasPseudoClassSelector extends ReactReconciler.HasPseudoClassSelector {}
|
|
163
|
+
interface RoleSelector extends ReactReconciler.RoleSelector {}
|
|
164
|
+
interface TextSelector extends ReactReconciler.TextSelector {}
|
|
165
|
+
interface TestNameSelector extends ReactReconciler.TestNameSelector {}
|
|
166
|
+
type Selector = ReactReconciler.Selector;
|
|
167
|
+
interface DevToolsConfig<Instance = unknown, TextInstance = unknown, RendererInspectionConfig = unknown> extends ReactReconciler.DevToolsConfig<Instance, TextInstance, RendererInspectionConfig> {}
|
|
168
|
+
interface SuspenseHydrationCallbacks<SuspenseInstance = unknown> extends ReactReconciler.SuspenseHydrationCallbacks<SuspenseInstance> {}
|
|
169
|
+
interface TransitionTracingCallbacks extends ReactReconciler.TransitionTracingCallbacks {}
|
|
170
|
+
interface ContextDependency<T> extends Omit<ReactReconciler.ContextDependency<T>, "observedBits"> {
|
|
171
|
+
memoizedValue?: T;
|
|
172
|
+
observedBits?: number;
|
|
173
|
+
}
|
|
174
|
+
interface Dependencies extends Omit<ReactReconciler.Dependencies, "firstContext"> {
|
|
175
|
+
firstContext: ContextDependency<unknown> | null;
|
|
176
|
+
}
|
|
177
|
+
interface Effect {
|
|
178
|
+
[key: string]: unknown;
|
|
179
|
+
create: (...args: unknown[]) => unknown;
|
|
180
|
+
deps: null | unknown[];
|
|
181
|
+
destroy: ((...args: unknown[]) => unknown) | null;
|
|
182
|
+
next: Effect | null;
|
|
183
|
+
tag: number;
|
|
184
|
+
}
|
|
185
|
+
interface ServerComponentInfo {
|
|
186
|
+
name?: string;
|
|
187
|
+
env?: string;
|
|
188
|
+
owner?: Fiber | ServerComponentInfo | null;
|
|
189
|
+
debugStack?: Error | null;
|
|
190
|
+
}
|
|
191
|
+
interface ReactDebugInfo {
|
|
192
|
+
debugLocation?: unknown;
|
|
193
|
+
env?: string;
|
|
194
|
+
name?: string;
|
|
195
|
+
}
|
|
196
|
+
interface FiberDebugSource extends Source {
|
|
197
|
+
columnNumber?: number;
|
|
198
|
+
}
|
|
199
|
+
interface FiberUpdateQueue {
|
|
200
|
+
[key: string]: unknown;
|
|
201
|
+
dispatch?: unknown;
|
|
202
|
+
lastEffect: Effect | null;
|
|
203
|
+
memoCache?: unknown;
|
|
204
|
+
}
|
|
205
|
+
interface Fiber<T = unknown> extends Omit<ReactReconciler.Fiber, "alternate" | "_debugOwner" | "_debugSource" | "child" | "deletions" | "dependencies" | "memoizedProps" | "memoizedState" | "pendingProps" | "return" | "sibling" | "stateNode" | "tag" | "updateQueue"> {
|
|
206
|
+
_debugInfo?: ReactDebugInfo[];
|
|
207
|
+
_debugOwner?: Fiber | ServerComponentInfo | null;
|
|
208
|
+
_debugSource?: FiberDebugSource | null;
|
|
209
|
+
_debugStack?: Error & {
|
|
210
|
+
stack: string;
|
|
211
|
+
};
|
|
212
|
+
alternate: Fiber | null;
|
|
213
|
+
child: Fiber | null;
|
|
214
|
+
deletions: Fiber[] | null;
|
|
215
|
+
dependencies: Dependencies | null;
|
|
216
|
+
effectTag?: number;
|
|
217
|
+
memoizedProps: Props;
|
|
218
|
+
memoizedState: MemoizedState | null;
|
|
219
|
+
pendingProps: Props;
|
|
220
|
+
return: Fiber | null;
|
|
221
|
+
sibling: Fiber | null;
|
|
222
|
+
stateNode: T;
|
|
223
|
+
tag: WorkTag;
|
|
224
|
+
updateQueue: FiberUpdateQueue;
|
|
225
|
+
}
|
|
226
|
+
interface HostFiber<T = unknown> extends Fiber<T> {
|
|
227
|
+
tag: HostWorkTag;
|
|
228
|
+
}
|
|
229
|
+
interface FiberRoot {
|
|
230
|
+
current: Fiber;
|
|
231
|
+
}
|
|
232
|
+
interface MemoizedState {
|
|
233
|
+
[key: string]: unknown;
|
|
234
|
+
memoizedState: unknown;
|
|
235
|
+
next: MemoizedState | null;
|
|
236
|
+
}
|
|
237
|
+
interface Props {
|
|
238
|
+
[key: string]: unknown;
|
|
239
|
+
}
|
|
240
|
+
interface ReactDevToolsEventHandler {
|
|
241
|
+
(data: unknown): void;
|
|
242
|
+
}
|
|
243
|
+
interface ReactDevToolsGlobalHook {
|
|
244
|
+
_instrumentationIsActive?: boolean;
|
|
245
|
+
_instrumentationSource?: string;
|
|
246
|
+
checkDCE: (fn: unknown) => void;
|
|
247
|
+
emit?: (event: string, data?: unknown) => void;
|
|
248
|
+
getFiberRoots?: (rendererID: number) => Set<FiberRoot>;
|
|
249
|
+
hasUnsupportedRendererAttached: boolean;
|
|
250
|
+
inject: (renderer: ReactRenderer) => number;
|
|
251
|
+
off?: (event: string, handler: ReactDevToolsEventHandler) => void;
|
|
252
|
+
on: (event: string, handler: ReactDevToolsEventHandler) => void;
|
|
253
|
+
onCommitFiberRoot: (rendererID: number, root: FiberRoot, priority: number | void, didError?: boolean) => void;
|
|
254
|
+
onCommitFiberUnmount: (rendererID: number, fiber: Fiber) => void;
|
|
255
|
+
onPostCommitFiberRoot: (rendererID: number, root: FiberRoot) => void;
|
|
256
|
+
onScheduleFiberRoot?: (rendererID: number, root: FiberRoot, children: ReactNode) => void;
|
|
257
|
+
renderers: Map<number, ReactRenderer>;
|
|
258
|
+
sub?: (event: string, handler: ReactDevToolsEventHandler) => () => void;
|
|
259
|
+
supportsFiber: boolean;
|
|
260
|
+
supportsFlight: boolean;
|
|
261
|
+
}
|
|
262
|
+
interface LegacyDispatcherRef {
|
|
263
|
+
current: unknown;
|
|
264
|
+
}
|
|
265
|
+
interface CurrentDispatcherRef {
|
|
266
|
+
H: unknown;
|
|
267
|
+
}
|
|
268
|
+
type RendererDispatcherRef = CurrentDispatcherRef | LegacyDispatcherRef;
|
|
269
|
+
interface ReactRenderer extends Omit<ReactReconciler.DevToolsConfig<unknown, unknown, unknown>, "findFiberByHostInstance"> {
|
|
270
|
+
currentDispatcherRef?: RendererDispatcherRef | null;
|
|
271
|
+
findFiberByHostInstance?: (hostInstance: unknown) => Fiber | null;
|
|
272
|
+
getCurrentFiber?: () => Fiber | null;
|
|
273
|
+
overrideContext?: (fiber: Fiber, contextType: unknown, path: string[], value: unknown) => void;
|
|
274
|
+
overrideHookState?: (fiber: Fiber, id: number, path: string[], value: unknown) => void;
|
|
275
|
+
overrideHookStateDeletePath?: (fiber: Fiber, id: number, path: Array<number | string>) => void;
|
|
276
|
+
overrideHookStateRenamePath?: (fiber: Fiber, id: number, oldPath: Array<number | string>, newPath: Array<number | string>) => void;
|
|
277
|
+
overrideProps?: (fiber: Fiber, path: string[], value: unknown) => void;
|
|
278
|
+
overridePropsDeletePath?: (fiber: Fiber, path: Array<number | string>) => void;
|
|
279
|
+
overridePropsRenamePath?: (fiber: Fiber, oldPath: Array<number | string>, newPath: Array<number | string>) => void;
|
|
280
|
+
reconcilerVersion?: string;
|
|
281
|
+
scheduleRetry?: (fiber: Fiber) => void;
|
|
282
|
+
scheduleRoot?: (root: FiberRoot, element: React.ReactNode) => void;
|
|
283
|
+
scheduleUpdate?: (fiber: Fiber) => void;
|
|
284
|
+
setErrorHandler?: (newShouldErrorImpl: (fiber: Fiber) => boolean | null) => void;
|
|
285
|
+
setSuspenseHandler?: (newShouldSuspendImpl: (fiber: Fiber) => boolean) => void;
|
|
286
|
+
}
|
|
287
|
+
declare global {
|
|
288
|
+
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined;
|
|
289
|
+
}
|
|
290
|
+
//#endregion
|
|
291
|
+
export { ForwardRefTag as $, ReactDevToolsGlobalHook as A, ServerComponentInfo as B, OpaqueRoot as C, ReactContext as D, ReactConsumer as E, RefObject as F, Thenable as G, SuspenseHydrationCallbacks as H, RendererDispatcherRef as I, WorkTag as J, TransitionTracingCallbacks as K, RoleSelector as L, ReactProvider as M, ReactProviderType as N, ReactDebugInfo as O, ReactRenderer as P, DehydratedSuspenseComponentTag as Q, RootTag as R, OpaqueHandle as S, React$AbstractComponent as T, TestNameSelector as U, Source as V, TextSelector as W, ClassComponentTag as X, ActivityComponentTag as Y, ContextConsumerTag as Z, LanePriority as _, Dependencies as a, HostRootTag as at, MemoizedState as b, Fiber as c, LazyComponentTag as ct, FiberUpdateQueue as d, OffscreenComponentTag as dt, FragmentTag as et, Flags as f, SimpleMemoComponentTag as ft, HostFiber as g, HostConfig as h, ViewTransitionComponentTag as ht, CurrentDispatcherRef as i, HostPortalTag as it, ReactPortal as j, ReactDevToolsEventHandler as k, FiberDebugSource as l, LegacyHiddenComponentTag as lt, HookType as m, SuspenseListComponentTag as mt, ComponentSelector as n, HostComponentTag as nt, DevToolsConfig as o, HostSingletonTag as ot, HasPseudoClassSelector as p, SuspenseComponentTag as pt, TypeOfMode as q, ContextDependency as r, HostHoistableTag as rt, Effect as s, HostTextTag as st, BundleType as t, FunctionComponentTag as tt, FiberRoot as u, MemoComponentTag as ut, Lanes as v, Props as w, MutableSource as x, LegacyDispatcherRef as y, Selector as z };
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import ReactReconciler from "react-reconciler";
|
|
3
|
+
//#region src/generated/react-work-tags.d.ts
|
|
4
|
+
interface ReactWorkTagMap {
|
|
5
|
+
ActivityComponent: number;
|
|
6
|
+
CacheComponent: number;
|
|
7
|
+
ClassComponent: number;
|
|
8
|
+
ContextConsumer: number;
|
|
9
|
+
ContextProvider: number;
|
|
10
|
+
CoroutineComponent: number;
|
|
11
|
+
CoroutineHandlerPhase: number;
|
|
12
|
+
DehydratedSuspenseComponent: number;
|
|
13
|
+
ForwardRef: number;
|
|
14
|
+
Fragment: number;
|
|
15
|
+
FunctionComponent: number;
|
|
16
|
+
HostComponent: number;
|
|
17
|
+
HostHoistable: number;
|
|
18
|
+
HostPortal: number;
|
|
19
|
+
HostRoot: number;
|
|
20
|
+
HostSingleton: number;
|
|
21
|
+
HostText: number;
|
|
22
|
+
IncompleteClassComponent: number;
|
|
23
|
+
IncompleteFunctionComponent: number;
|
|
24
|
+
IndeterminateComponent: number;
|
|
25
|
+
LazyComponent: number;
|
|
26
|
+
LegacyHiddenComponent: number;
|
|
27
|
+
MemoComponent: number;
|
|
28
|
+
Mode: number;
|
|
29
|
+
OffscreenComponent: number;
|
|
30
|
+
Profiler: number;
|
|
31
|
+
ScopeComponent: number;
|
|
32
|
+
SimpleMemoComponent: number;
|
|
33
|
+
SuspenseComponent: number;
|
|
34
|
+
SuspenseListComponent: number;
|
|
35
|
+
Throw: number;
|
|
36
|
+
TracingMarkerComponent: number;
|
|
37
|
+
ViewTransitionComponent: number;
|
|
38
|
+
YieldComponent: number;
|
|
39
|
+
}
|
|
40
|
+
declare const ReactWorkTags: {
|
|
41
|
+
readonly "17.0.1": {
|
|
42
|
+
readonly ActivityComponent: -1;
|
|
43
|
+
readonly CacheComponent: -1;
|
|
44
|
+
readonly ClassComponent: 1;
|
|
45
|
+
readonly ContextConsumer: 9;
|
|
46
|
+
readonly ContextProvider: 10;
|
|
47
|
+
readonly CoroutineComponent: -1;
|
|
48
|
+
readonly CoroutineHandlerPhase: -1;
|
|
49
|
+
readonly DehydratedSuspenseComponent: 18;
|
|
50
|
+
readonly ForwardRef: 11;
|
|
51
|
+
readonly Fragment: 7;
|
|
52
|
+
readonly FunctionComponent: 0;
|
|
53
|
+
readonly HostComponent: 5;
|
|
54
|
+
readonly HostHoistable: -1;
|
|
55
|
+
readonly HostPortal: 4;
|
|
56
|
+
readonly HostRoot: 3;
|
|
57
|
+
readonly HostSingleton: -1;
|
|
58
|
+
readonly HostText: 6;
|
|
59
|
+
readonly IncompleteClassComponent: 17;
|
|
60
|
+
readonly IncompleteFunctionComponent: -1;
|
|
61
|
+
readonly IndeterminateComponent: 2;
|
|
62
|
+
readonly LazyComponent: 16;
|
|
63
|
+
readonly LegacyHiddenComponent: 24;
|
|
64
|
+
readonly MemoComponent: 14;
|
|
65
|
+
readonly Mode: 8;
|
|
66
|
+
readonly OffscreenComponent: 23;
|
|
67
|
+
readonly Profiler: 12;
|
|
68
|
+
readonly ScopeComponent: 21;
|
|
69
|
+
readonly SimpleMemoComponent: 15;
|
|
70
|
+
readonly SuspenseComponent: 13;
|
|
71
|
+
readonly SuspenseListComponent: 19;
|
|
72
|
+
readonly Throw: -1;
|
|
73
|
+
readonly TracingMarkerComponent: -1;
|
|
74
|
+
readonly ViewTransitionComponent: -1;
|
|
75
|
+
readonly YieldComponent: -1;
|
|
76
|
+
};
|
|
77
|
+
readonly "17.0.2": {
|
|
78
|
+
readonly ActivityComponent: 31;
|
|
79
|
+
readonly CacheComponent: 24;
|
|
80
|
+
readonly ClassComponent: 1;
|
|
81
|
+
readonly ContextConsumer: 9;
|
|
82
|
+
readonly ContextProvider: 10;
|
|
83
|
+
readonly CoroutineComponent: -1;
|
|
84
|
+
readonly CoroutineHandlerPhase: -1;
|
|
85
|
+
readonly DehydratedSuspenseComponent: 18;
|
|
86
|
+
readonly ForwardRef: 11;
|
|
87
|
+
readonly Fragment: 7;
|
|
88
|
+
readonly FunctionComponent: 0;
|
|
89
|
+
readonly HostComponent: 5;
|
|
90
|
+
readonly HostHoistable: 26;
|
|
91
|
+
readonly HostPortal: 4;
|
|
92
|
+
readonly HostRoot: 3;
|
|
93
|
+
readonly HostSingleton: 27;
|
|
94
|
+
readonly HostText: 6;
|
|
95
|
+
readonly IncompleteClassComponent: 17;
|
|
96
|
+
readonly IncompleteFunctionComponent: 28;
|
|
97
|
+
readonly IndeterminateComponent: 2;
|
|
98
|
+
readonly LazyComponent: 16;
|
|
99
|
+
readonly LegacyHiddenComponent: 23;
|
|
100
|
+
readonly MemoComponent: 14;
|
|
101
|
+
readonly Mode: 8;
|
|
102
|
+
readonly OffscreenComponent: 22;
|
|
103
|
+
readonly Profiler: 12;
|
|
104
|
+
readonly ScopeComponent: 21;
|
|
105
|
+
readonly SimpleMemoComponent: 15;
|
|
106
|
+
readonly SuspenseComponent: 13;
|
|
107
|
+
readonly SuspenseListComponent: 19;
|
|
108
|
+
readonly Throw: 29;
|
|
109
|
+
readonly TracingMarkerComponent: 25;
|
|
110
|
+
readonly ViewTransitionComponent: 30;
|
|
111
|
+
readonly YieldComponent: -1;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
type ReactWorkTagVersion = keyof typeof ReactWorkTags;
|
|
115
|
+
declare const ActivityComponentTag: 31;
|
|
116
|
+
declare const ClassComponentTag: 1;
|
|
117
|
+
declare const ContextConsumerTag: 9;
|
|
118
|
+
declare const DehydratedSuspenseComponentTag: 18;
|
|
119
|
+
declare const ForwardRefTag: 11;
|
|
120
|
+
declare const FragmentTag: 7;
|
|
121
|
+
declare const FunctionComponentTag: 0;
|
|
122
|
+
declare const HostComponentTag: 5;
|
|
123
|
+
declare const HostHoistableTag: 26;
|
|
124
|
+
declare const HostPortalTag: 4;
|
|
125
|
+
declare const HostRootTag: 3;
|
|
126
|
+
declare const HostSingletonTag: 27;
|
|
127
|
+
declare const HostTextTag: 6;
|
|
128
|
+
declare const LazyComponentTag: 16;
|
|
129
|
+
declare const LegacyHiddenComponentTag: 23;
|
|
130
|
+
declare const MemoComponentTag: 14;
|
|
131
|
+
declare const OffscreenComponentTag: 22;
|
|
132
|
+
declare const SimpleMemoComponentTag: 15;
|
|
133
|
+
declare const SuspenseComponentTag: 13;
|
|
134
|
+
declare const SuspenseListComponentTag: 19;
|
|
135
|
+
declare const ViewTransitionComponentTag: 30;
|
|
136
|
+
type ReactWorkTag = Exclude<(typeof ReactWorkTags)[ReactWorkTagVersion][keyof ReactWorkTagMap], -1>;
|
|
137
|
+
type HostWorkTag = typeof HostComponentTag | typeof HostHoistableTag | typeof HostSingletonTag | typeof HostTextTag;
|
|
138
|
+
//#endregion
|
|
139
|
+
//#region src/types.d.ts
|
|
140
|
+
type BundleType = ReactReconciler.BundleType;
|
|
141
|
+
type Flags = ReactReconciler.Flags;
|
|
142
|
+
type HookType = ReactReconciler.HookType;
|
|
143
|
+
type LanePriority = ReactReconciler.LanePriority;
|
|
144
|
+
type Lanes = ReactReconciler.Lanes;
|
|
145
|
+
type MutableSource = ReactReconciler.MutableSource;
|
|
146
|
+
type OpaqueHandle = ReactReconciler.OpaqueHandle;
|
|
147
|
+
type OpaqueRoot = ReactReconciler.OpaqueRoot;
|
|
148
|
+
type React$AbstractComponent<Config, Instance = unknown> = ReactReconciler.React$AbstractComponent<Config, Instance>;
|
|
149
|
+
type RootTag = ReactReconciler.RootTag;
|
|
150
|
+
type TypeOfMode = ReactReconciler.TypeOfMode;
|
|
151
|
+
type WorkTag = ReactReconciler.WorkTag | ReactWorkTag;
|
|
152
|
+
interface HostConfig<Type = unknown, HostProps = unknown, Container = unknown, Instance = unknown, TextInstance = unknown, SuspenseInstance = unknown, HydratableInstance = unknown, FormInstance = unknown, PublicInstance = unknown, HostContext = unknown, ChildSet = unknown, TimeoutHandle = unknown, NoTimeout = unknown, TransitionStatus = unknown> extends ReactReconciler.HostConfig<Type, HostProps, Container, Instance, TextInstance, SuspenseInstance, HydratableInstance, FormInstance, PublicInstance, HostContext, ChildSet, TimeoutHandle, NoTimeout, TransitionStatus> {}
|
|
153
|
+
interface Source extends ReactReconciler.Source {}
|
|
154
|
+
interface RefObject extends ReactReconciler.RefObject {}
|
|
155
|
+
interface Thenable<T> extends ReactReconciler.Thenable<T> {}
|
|
156
|
+
interface ReactContext<T> extends ReactReconciler.ReactContext<T> {}
|
|
157
|
+
interface ReactProviderType<T> extends ReactReconciler.ReactProviderType<T> {}
|
|
158
|
+
interface ReactProvider<T> extends ReactReconciler.ReactProvider<T> {}
|
|
159
|
+
interface ReactConsumer<T> extends ReactReconciler.ReactConsumer<T> {}
|
|
160
|
+
interface ReactPortal extends ReactReconciler.ReactPortal {}
|
|
161
|
+
interface ComponentSelector extends ReactReconciler.ComponentSelector {}
|
|
162
|
+
interface HasPseudoClassSelector extends ReactReconciler.HasPseudoClassSelector {}
|
|
163
|
+
interface RoleSelector extends ReactReconciler.RoleSelector {}
|
|
164
|
+
interface TextSelector extends ReactReconciler.TextSelector {}
|
|
165
|
+
interface TestNameSelector extends ReactReconciler.TestNameSelector {}
|
|
166
|
+
type Selector = ReactReconciler.Selector;
|
|
167
|
+
interface DevToolsConfig<Instance = unknown, TextInstance = unknown, RendererInspectionConfig = unknown> extends ReactReconciler.DevToolsConfig<Instance, TextInstance, RendererInspectionConfig> {}
|
|
168
|
+
interface SuspenseHydrationCallbacks<SuspenseInstance = unknown> extends ReactReconciler.SuspenseHydrationCallbacks<SuspenseInstance> {}
|
|
169
|
+
interface TransitionTracingCallbacks extends ReactReconciler.TransitionTracingCallbacks {}
|
|
170
|
+
interface ContextDependency<T> extends Omit<ReactReconciler.ContextDependency<T>, "observedBits"> {
|
|
171
|
+
memoizedValue?: T;
|
|
172
|
+
observedBits?: number;
|
|
173
|
+
}
|
|
174
|
+
interface Dependencies extends Omit<ReactReconciler.Dependencies, "firstContext"> {
|
|
175
|
+
firstContext: ContextDependency<unknown> | null;
|
|
176
|
+
}
|
|
177
|
+
interface Effect {
|
|
178
|
+
[key: string]: unknown;
|
|
179
|
+
create: (...args: unknown[]) => unknown;
|
|
180
|
+
deps: null | unknown[];
|
|
181
|
+
destroy: ((...args: unknown[]) => unknown) | null;
|
|
182
|
+
next: Effect | null;
|
|
183
|
+
tag: number;
|
|
184
|
+
}
|
|
185
|
+
interface ServerComponentInfo {
|
|
186
|
+
name?: string;
|
|
187
|
+
env?: string;
|
|
188
|
+
owner?: Fiber | ServerComponentInfo | null;
|
|
189
|
+
debugStack?: Error | null;
|
|
190
|
+
}
|
|
191
|
+
interface ReactDebugInfo {
|
|
192
|
+
debugLocation?: unknown;
|
|
193
|
+
env?: string;
|
|
194
|
+
name?: string;
|
|
195
|
+
}
|
|
196
|
+
interface FiberDebugSource extends Source {
|
|
197
|
+
columnNumber?: number;
|
|
198
|
+
}
|
|
199
|
+
interface FiberUpdateQueue {
|
|
200
|
+
[key: string]: unknown;
|
|
201
|
+
dispatch?: unknown;
|
|
202
|
+
lastEffect: Effect | null;
|
|
203
|
+
memoCache?: unknown;
|
|
204
|
+
}
|
|
205
|
+
interface Fiber<T = unknown> extends Omit<ReactReconciler.Fiber, "alternate" | "_debugOwner" | "_debugSource" | "child" | "deletions" | "dependencies" | "memoizedProps" | "memoizedState" | "pendingProps" | "return" | "sibling" | "stateNode" | "tag" | "updateQueue"> {
|
|
206
|
+
_debugInfo?: ReactDebugInfo[];
|
|
207
|
+
_debugOwner?: Fiber | ServerComponentInfo | null;
|
|
208
|
+
_debugSource?: FiberDebugSource | null;
|
|
209
|
+
_debugStack?: Error & {
|
|
210
|
+
stack: string;
|
|
211
|
+
};
|
|
212
|
+
alternate: Fiber | null;
|
|
213
|
+
child: Fiber | null;
|
|
214
|
+
deletions: Fiber[] | null;
|
|
215
|
+
dependencies: Dependencies | null;
|
|
216
|
+
effectTag?: number;
|
|
217
|
+
memoizedProps: Props;
|
|
218
|
+
memoizedState: MemoizedState | null;
|
|
219
|
+
pendingProps: Props;
|
|
220
|
+
return: Fiber | null;
|
|
221
|
+
sibling: Fiber | null;
|
|
222
|
+
stateNode: T;
|
|
223
|
+
tag: WorkTag;
|
|
224
|
+
updateQueue: FiberUpdateQueue;
|
|
225
|
+
}
|
|
226
|
+
interface HostFiber<T = unknown> extends Fiber<T> {
|
|
227
|
+
tag: HostWorkTag;
|
|
228
|
+
}
|
|
229
|
+
interface FiberRoot {
|
|
230
|
+
current: Fiber;
|
|
231
|
+
}
|
|
232
|
+
interface MemoizedState {
|
|
233
|
+
[key: string]: unknown;
|
|
234
|
+
memoizedState: unknown;
|
|
235
|
+
next: MemoizedState | null;
|
|
236
|
+
}
|
|
237
|
+
interface Props {
|
|
238
|
+
[key: string]: unknown;
|
|
239
|
+
}
|
|
240
|
+
interface ReactDevToolsEventHandler {
|
|
241
|
+
(data: unknown): void;
|
|
242
|
+
}
|
|
243
|
+
interface ReactDevToolsGlobalHook {
|
|
244
|
+
_instrumentationIsActive?: boolean;
|
|
245
|
+
_instrumentationSource?: string;
|
|
246
|
+
checkDCE: (fn: unknown) => void;
|
|
247
|
+
emit?: (event: string, data?: unknown) => void;
|
|
248
|
+
getFiberRoots?: (rendererID: number) => Set<FiberRoot>;
|
|
249
|
+
hasUnsupportedRendererAttached: boolean;
|
|
250
|
+
inject: (renderer: ReactRenderer) => number;
|
|
251
|
+
off?: (event: string, handler: ReactDevToolsEventHandler) => void;
|
|
252
|
+
on: (event: string, handler: ReactDevToolsEventHandler) => void;
|
|
253
|
+
onCommitFiberRoot: (rendererID: number, root: FiberRoot, priority: number | void, didError?: boolean) => void;
|
|
254
|
+
onCommitFiberUnmount: (rendererID: number, fiber: Fiber) => void;
|
|
255
|
+
onPostCommitFiberRoot: (rendererID: number, root: FiberRoot) => void;
|
|
256
|
+
onScheduleFiberRoot?: (rendererID: number, root: FiberRoot, children: ReactNode) => void;
|
|
257
|
+
renderers: Map<number, ReactRenderer>;
|
|
258
|
+
sub?: (event: string, handler: ReactDevToolsEventHandler) => () => void;
|
|
259
|
+
supportsFiber: boolean;
|
|
260
|
+
supportsFlight: boolean;
|
|
261
|
+
}
|
|
262
|
+
interface LegacyDispatcherRef {
|
|
263
|
+
current: unknown;
|
|
264
|
+
}
|
|
265
|
+
interface CurrentDispatcherRef {
|
|
266
|
+
H: unknown;
|
|
267
|
+
}
|
|
268
|
+
type RendererDispatcherRef = CurrentDispatcherRef | LegacyDispatcherRef;
|
|
269
|
+
interface ReactRenderer extends Omit<ReactReconciler.DevToolsConfig<unknown, unknown, unknown>, "findFiberByHostInstance"> {
|
|
270
|
+
currentDispatcherRef?: RendererDispatcherRef | null;
|
|
271
|
+
findFiberByHostInstance?: (hostInstance: unknown) => Fiber | null;
|
|
272
|
+
getCurrentFiber?: () => Fiber | null;
|
|
273
|
+
overrideContext?: (fiber: Fiber, contextType: unknown, path: string[], value: unknown) => void;
|
|
274
|
+
overrideHookState?: (fiber: Fiber, id: number, path: string[], value: unknown) => void;
|
|
275
|
+
overrideHookStateDeletePath?: (fiber: Fiber, id: number, path: Array<number | string>) => void;
|
|
276
|
+
overrideHookStateRenamePath?: (fiber: Fiber, id: number, oldPath: Array<number | string>, newPath: Array<number | string>) => void;
|
|
277
|
+
overrideProps?: (fiber: Fiber, path: string[], value: unknown) => void;
|
|
278
|
+
overridePropsDeletePath?: (fiber: Fiber, path: Array<number | string>) => void;
|
|
279
|
+
overridePropsRenamePath?: (fiber: Fiber, oldPath: Array<number | string>, newPath: Array<number | string>) => void;
|
|
280
|
+
reconcilerVersion?: string;
|
|
281
|
+
scheduleRetry?: (fiber: Fiber) => void;
|
|
282
|
+
scheduleRoot?: (root: FiberRoot, element: React.ReactNode) => void;
|
|
283
|
+
scheduleUpdate?: (fiber: Fiber) => void;
|
|
284
|
+
setErrorHandler?: (newShouldErrorImpl: (fiber: Fiber) => boolean | null) => void;
|
|
285
|
+
setSuspenseHandler?: (newShouldSuspendImpl: (fiber: Fiber) => boolean) => void;
|
|
286
|
+
}
|
|
287
|
+
declare global {
|
|
288
|
+
var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined;
|
|
289
|
+
}
|
|
290
|
+
//#endregion
|
|
291
|
+
export { ForwardRefTag as $, ReactDevToolsGlobalHook as A, ServerComponentInfo as B, OpaqueRoot as C, ReactContext as D, ReactConsumer as E, RefObject as F, Thenable as G, SuspenseHydrationCallbacks as H, RendererDispatcherRef as I, WorkTag as J, TransitionTracingCallbacks as K, RoleSelector as L, ReactProvider as M, ReactProviderType as N, ReactDebugInfo as O, ReactRenderer as P, DehydratedSuspenseComponentTag as Q, RootTag as R, OpaqueHandle as S, React$AbstractComponent as T, TestNameSelector as U, Source as V, TextSelector as W, ClassComponentTag as X, ActivityComponentTag as Y, ContextConsumerTag as Z, LanePriority as _, Dependencies as a, HostRootTag as at, MemoizedState as b, Fiber as c, LazyComponentTag as ct, FiberUpdateQueue as d, OffscreenComponentTag as dt, FragmentTag as et, Flags as f, SimpleMemoComponentTag as ft, HostFiber as g, HostConfig as h, ViewTransitionComponentTag as ht, CurrentDispatcherRef as i, HostPortalTag as it, ReactPortal as j, ReactDevToolsEventHandler as k, FiberDebugSource as l, LegacyHiddenComponentTag as lt, HookType as m, SuspenseListComponentTag as mt, ComponentSelector as n, HostComponentTag as nt, DevToolsConfig as o, HostSingletonTag as ot, HasPseudoClassSelector as p, SuspenseComponentTag as pt, TypeOfMode as q, ContextDependency as r, HostHoistableTag as rt, Effect as s, HostTextTag as st, BundleType as t, FunctionComponentTag as tt, FiberRoot as u, MemoComponentTag as ut, Lanes as v, Props as w, MutableSource as x, LegacyDispatcherRef as y, Selector as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bippy",
|
|
3
|
-
"version": "0.6.1-dev.
|
|
3
|
+
"version": "0.6.1-dev.3a24abf",
|
|
4
4
|
"description": "hack into react internals",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bippy",
|
|
@@ -78,16 +78,6 @@
|
|
|
78
78
|
"default": "./dist/source.cjs"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"./react-refresh": {
|
|
82
|
-
"import": {
|
|
83
|
-
"types": "./dist/react-refresh.d.ts",
|
|
84
|
-
"default": "./dist/react-refresh.js"
|
|
85
|
-
},
|
|
86
|
-
"require": {
|
|
87
|
-
"types": "./dist/react-refresh.d.cts",
|
|
88
|
-
"default": "./dist/react-refresh.cjs"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
81
|
"./dist/*": "./dist/*.js",
|
|
92
82
|
"./dist/*.js": "./dist/*.js",
|
|
93
83
|
"./dist/*.cjs": "./dist/*.cjs"
|
|
@@ -95,8 +85,16 @@
|
|
|
95
85
|
"publishConfig": {
|
|
96
86
|
"access": "public"
|
|
97
87
|
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@types/react-reconciler": "^0.33.0"
|
|
90
|
+
},
|
|
98
91
|
"devDependencies": {
|
|
92
|
+
"@babylonjs/core": "^9.20.0",
|
|
93
|
+
"@babylonjs/gui": "^9.20.0",
|
|
99
94
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
95
|
+
"@opentui/core": "^0.5.1",
|
|
96
|
+
"@opentui/react": "^0.5.1",
|
|
97
|
+
"@pixi/react": "^8.0.5",
|
|
100
98
|
"@react-pdf/renderer": "^4.5.1",
|
|
101
99
|
"@react-three/fiber": "^9.6.1",
|
|
102
100
|
"@react-three/test-renderer": "^9.1.0",
|
|
@@ -109,12 +107,16 @@
|
|
|
109
107
|
"happy-dom": "^15.11.7",
|
|
110
108
|
"ink": "^7.1.1",
|
|
111
109
|
"ink-testing-library": "^4.0.0",
|
|
110
|
+
"konva": "^10.3.0",
|
|
111
|
+
"pixi.js": "^8.19.0",
|
|
112
112
|
"publint": "^0.3.0",
|
|
113
113
|
"react": "19.0.0",
|
|
114
|
+
"react-babylonjs": "^4.0.2",
|
|
115
|
+
"react-devtools-core": "^7.0.1",
|
|
114
116
|
"react-devtools-inline": "^6.0.1",
|
|
115
117
|
"react-dom": "19.0.0",
|
|
118
|
+
"react-konva": "^19.2.5",
|
|
116
119
|
"react-nil": "^2.0.0",
|
|
117
|
-
"react-refresh": "^0.16.0",
|
|
118
120
|
"remotion": "^4.0.496",
|
|
119
121
|
"three": "^0.185.1",
|
|
120
122
|
"tsx": "^4.21.0",
|