@kubb/react-fabric 0.1.5 → 0.1.6
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/dist/{App-Cdnk4C-T.d.cts → App-Bqmn4Mqu.d.cts} +12 -12
- package/dist/{App-BSJU0vg2.d.ts → App-DLp9W8mB.d.ts} +12 -12
- package/dist/{Runtime-CmpwGMfo.js → Runtime-DWlDUeLZ.js} +21 -21
- package/dist/Runtime-DWlDUeLZ.js.map +1 -0
- package/dist/{Runtime-DuxjdecG.cjs → Runtime-JI640uK4.cjs} +21 -21
- package/dist/Runtime-JI640uK4.cjs.map +1 -0
- package/dist/devtools.cjs +5 -5
- package/dist/devtools.cjs.map +1 -1
- package/dist/devtools.js +5 -5
- package/dist/devtools.js.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/{jsx-runtime-dzWW5eHB.js → jsx-runtime-Dg-pJBHd.js} +8 -8
- package/dist/jsx-runtime-Dg-pJBHd.js.map +1 -0
- package/dist/{jsx-runtime-CxtdoFyp.cjs → jsx-runtime-d2dmYscH.cjs} +8 -8
- package/dist/jsx-runtime-d2dmYscH.cjs.map +1 -0
- package/dist/jsx-runtime.cjs +2 -2
- package/dist/jsx-runtime.js +2 -2
- package/dist/parsers.d.cts +2 -2
- package/dist/parsers.d.ts +2 -2
- package/dist/plugins.cjs +7 -5
- package/dist/plugins.cjs.map +1 -1
- package/dist/plugins.d.cts +29 -6
- package/dist/plugins.d.ts +29 -6
- package/dist/plugins.js +7 -5
- package/dist/plugins.js.map +1 -1
- package/dist/{react-DA-4hb8R.js → react-BBkwFtZV.js} +7 -7
- package/dist/react-BBkwFtZV.js.map +1 -0
- package/dist/{react-m108td-u.cjs → react-Bq0UOw6S.cjs} +7 -7
- package/dist/react-Bq0UOw6S.cjs.map +1 -0
- package/package.json +2 -2
- package/src/plugins/reactPlugin.ts +6 -3
- package/dist/Runtime-CmpwGMfo.js.map +0 -1
- package/dist/Runtime-DuxjdecG.cjs.map +0 -1
- package/dist/jsx-runtime-CxtdoFyp.cjs.map +0 -1
- package/dist/jsx-runtime-dzWW5eHB.js.map +0 -1
- package/dist/react-DA-4hb8R.js.map +0 -1
- package/dist/react-m108td-u.cjs.map +0 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { i as File, o as Path, r as Extname, s as ResolvedFile } from "./KubbFile-FGXV713i.cjs";
|
|
2
2
|
|
|
3
3
|
//#region ../fabric-core/src/plugins/types.d.ts
|
|
4
|
-
type Plugin<TOptions =
|
|
4
|
+
type Plugin<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = {
|
|
5
5
|
name: string;
|
|
6
6
|
type: 'plugin';
|
|
7
|
-
install: Install<TOptions
|
|
7
|
+
install: Install<TOptions>;
|
|
8
8
|
/**
|
|
9
9
|
* Runtime app overrides or extensions.
|
|
10
10
|
* Merged into the app instance after install.
|
|
@@ -12,13 +12,13 @@ type Plugin<TOptions = any[], TAppExtension$1 extends Record<string, any> = {}>
|
|
|
12
12
|
*/
|
|
13
13
|
inject?: Inject<TOptions, TAppExtension$1>;
|
|
14
14
|
};
|
|
15
|
-
type UserPlugin<TOptions =
|
|
15
|
+
type UserPlugin<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = Omit<Plugin<TOptions, TAppExtension$1>, 'type'>;
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region ../fabric-core/src/parsers/types.d.ts
|
|
18
18
|
type PrintOptions = {
|
|
19
19
|
extname?: Extname;
|
|
20
20
|
};
|
|
21
|
-
type Parser<TOptions =
|
|
21
|
+
type Parser<TOptions = unknown, TMeta$1 extends object = any> = {
|
|
22
22
|
name: string;
|
|
23
23
|
type: 'parser';
|
|
24
24
|
/**
|
|
@@ -31,7 +31,7 @@ type Parser<TOptions = any[], TMeta$1 extends object = any> = {
|
|
|
31
31
|
*/
|
|
32
32
|
parse(file: ResolvedFile<TMeta$1>, options: PrintOptions): Promise<string>;
|
|
33
33
|
};
|
|
34
|
-
type UserParser<TOptions =
|
|
34
|
+
type UserParser<TOptions = unknown, TMeta$1 extends object = any> = Omit<Parser<TOptions, TMeta$1>, 'type'>;
|
|
35
35
|
//#endregion
|
|
36
36
|
//#region ../fabric-core/src/utils/AsyncEventEmitter.d.ts
|
|
37
37
|
declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
@@ -39,6 +39,7 @@ declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
|
39
39
|
constructor(maxListener?: number);
|
|
40
40
|
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
41
41
|
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
42
|
+
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArgs: TEvents[TEventName]) => void): void;
|
|
42
43
|
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
43
44
|
removeAll(): void;
|
|
44
45
|
}
|
|
@@ -79,6 +80,7 @@ type Options = {
|
|
|
79
80
|
};
|
|
80
81
|
declare class FileManager {
|
|
81
82
|
#private;
|
|
83
|
+
events: AsyncEventEmitter<AppEvents>;
|
|
82
84
|
processor: FileProcessor;
|
|
83
85
|
constructor({
|
|
84
86
|
events
|
|
@@ -161,17 +163,15 @@ type AppContext<TOptions = unknown> = {
|
|
|
161
163
|
installedPlugins: Set<Plugin>;
|
|
162
164
|
installedParsers: Set<Parser>;
|
|
163
165
|
};
|
|
164
|
-
type
|
|
165
|
-
type
|
|
166
|
+
type AllOptional<T> = {} extends T ? true : false;
|
|
167
|
+
type Install<TOptions = unknown> = TOptions extends any[] ? (app: App, ...options: TOptions) => void | Promise<void> : AllOptional<TOptions> extends true ? (app: App, options: TOptions | undefined) => void | Promise<void> : (app: App, options: TOptions) => void | Promise<void>;
|
|
168
|
+
type Inject<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = TOptions extends any[] ? (app: App, ...options: TOptions) => Partial<TAppExtension$1> : AllOptional<TOptions> extends true ? (app: App, options: TOptions | undefined) => Partial<TAppExtension$1> : (app: App, options: TOptions) => Partial<TAppExtension$1>;
|
|
166
169
|
interface App<TOptions = unknown> extends Kubb.App {
|
|
167
170
|
context: AppContext<TOptions>;
|
|
168
171
|
files: Array<ResolvedFile>;
|
|
169
|
-
use<
|
|
170
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>): this & TAppExtension;
|
|
171
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>, ...options: TOptions extends any[] ? NoInfer<TOptions> : [NoInfer<TOptions>]): Promise<this & TAppExtension>;
|
|
172
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>): Promise<this & TAppExtension>;
|
|
172
|
+
use<TPluginOptions = unknown, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TPluginOptions, TAppExtension> | Parser<TPluginOptions, TMeta>, ...options: TPluginOptions extends any[] ? NoInfer<TPluginOptions> : AllOptional<TPluginOptions> extends true ? [NoInfer<TPluginOptions>?] : [NoInfer<TPluginOptions>]): (this & TAppExtension) | Promise<this & TAppExtension>;
|
|
173
173
|
addFile(...files: Array<File>): Promise<void>;
|
|
174
174
|
}
|
|
175
175
|
//#endregion
|
|
176
176
|
export { UserParser as a, Parser as i, Component as n, Plugin as o, FileManager as r, UserPlugin as s, App as t };
|
|
177
|
-
//# sourceMappingURL=App-
|
|
177
|
+
//# sourceMappingURL=App-Bqmn4Mqu.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { i as File, o as Path, r as Extname, s as ResolvedFile } from "./KubbFile-D4gyyfL-.js";
|
|
2
2
|
|
|
3
3
|
//#region ../fabric-core/src/plugins/types.d.ts
|
|
4
|
-
type Plugin<TOptions =
|
|
4
|
+
type Plugin<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = {
|
|
5
5
|
name: string;
|
|
6
6
|
type: 'plugin';
|
|
7
|
-
install: Install<TOptions
|
|
7
|
+
install: Install<TOptions>;
|
|
8
8
|
/**
|
|
9
9
|
* Runtime app overrides or extensions.
|
|
10
10
|
* Merged into the app instance after install.
|
|
@@ -12,13 +12,13 @@ type Plugin<TOptions = any[], TAppExtension$1 extends Record<string, any> = {}>
|
|
|
12
12
|
*/
|
|
13
13
|
inject?: Inject<TOptions, TAppExtension$1>;
|
|
14
14
|
};
|
|
15
|
-
type UserPlugin<TOptions =
|
|
15
|
+
type UserPlugin<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = Omit<Plugin<TOptions, TAppExtension$1>, 'type'>;
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region ../fabric-core/src/parsers/types.d.ts
|
|
18
18
|
type PrintOptions = {
|
|
19
19
|
extname?: Extname;
|
|
20
20
|
};
|
|
21
|
-
type Parser<TOptions =
|
|
21
|
+
type Parser<TOptions = unknown, TMeta$1 extends object = any> = {
|
|
22
22
|
name: string;
|
|
23
23
|
type: 'parser';
|
|
24
24
|
/**
|
|
@@ -31,7 +31,7 @@ type Parser<TOptions = any[], TMeta$1 extends object = any> = {
|
|
|
31
31
|
*/
|
|
32
32
|
parse(file: ResolvedFile<TMeta$1>, options: PrintOptions): Promise<string>;
|
|
33
33
|
};
|
|
34
|
-
type UserParser<TOptions =
|
|
34
|
+
type UserParser<TOptions = unknown, TMeta$1 extends object = any> = Omit<Parser<TOptions, TMeta$1>, 'type'>;
|
|
35
35
|
//#endregion
|
|
36
36
|
//#region ../fabric-core/src/utils/AsyncEventEmitter.d.ts
|
|
37
37
|
declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
@@ -39,6 +39,7 @@ declare class AsyncEventEmitter<TEvents extends Record<string, any>> {
|
|
|
39
39
|
constructor(maxListener?: number);
|
|
40
40
|
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
41
41
|
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
42
|
+
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArgs: TEvents[TEventName]) => void): void;
|
|
42
43
|
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: (...eventArg: TEvents[TEventName]) => void): void;
|
|
43
44
|
removeAll(): void;
|
|
44
45
|
}
|
|
@@ -79,6 +80,7 @@ type Options = {
|
|
|
79
80
|
};
|
|
80
81
|
declare class FileManager {
|
|
81
82
|
#private;
|
|
83
|
+
events: AsyncEventEmitter<AppEvents>;
|
|
82
84
|
processor: FileProcessor;
|
|
83
85
|
constructor({
|
|
84
86
|
events
|
|
@@ -161,17 +163,15 @@ type AppContext<TOptions = unknown> = {
|
|
|
161
163
|
installedPlugins: Set<Plugin>;
|
|
162
164
|
installedParsers: Set<Parser>;
|
|
163
165
|
};
|
|
164
|
-
type
|
|
165
|
-
type
|
|
166
|
+
type AllOptional<T> = {} extends T ? true : false;
|
|
167
|
+
type Install<TOptions = unknown> = TOptions extends any[] ? (app: App, ...options: TOptions) => void | Promise<void> : AllOptional<TOptions> extends true ? (app: App, options: TOptions | undefined) => void | Promise<void> : (app: App, options: TOptions) => void | Promise<void>;
|
|
168
|
+
type Inject<TOptions = unknown, TAppExtension$1 extends Record<string, any> = {}> = TOptions extends any[] ? (app: App, ...options: TOptions) => Partial<TAppExtension$1> : AllOptional<TOptions> extends true ? (app: App, options: TOptions | undefined) => Partial<TAppExtension$1> : (app: App, options: TOptions) => Partial<TAppExtension$1>;
|
|
166
169
|
interface App<TOptions = unknown> extends Kubb.App {
|
|
167
170
|
context: AppContext<TOptions>;
|
|
168
171
|
files: Array<ResolvedFile>;
|
|
169
|
-
use<
|
|
170
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>): this & TAppExtension;
|
|
171
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>, ...options: TOptions extends any[] ? NoInfer<TOptions> : [NoInfer<TOptions>]): Promise<this & TAppExtension>;
|
|
172
|
-
use<TOptions extends any[] | object = any, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TOptions, TAppExtension> | Parser<TOptions, TMeta>): Promise<this & TAppExtension>;
|
|
172
|
+
use<TPluginOptions = unknown, TMeta extends object = object, TAppExtension extends Record<string, any> = {}>(pluginOrParser: Plugin<TPluginOptions, TAppExtension> | Parser<TPluginOptions, TMeta>, ...options: TPluginOptions extends any[] ? NoInfer<TPluginOptions> : AllOptional<TPluginOptions> extends true ? [NoInfer<TPluginOptions>?] : [NoInfer<TPluginOptions>]): (this & TAppExtension) | Promise<this & TAppExtension>;
|
|
173
173
|
addFile(...files: Array<File>): Promise<void>;
|
|
174
174
|
}
|
|
175
175
|
//#endregion
|
|
176
176
|
export { UserParser as a, Parser as i, Component as n, Plugin as o, FileManager as r, UserPlugin as s, App as t };
|
|
177
|
-
//# sourceMappingURL=App-
|
|
177
|
+
//# sourceMappingURL=App-DLp9W8mB.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as __commonJS, r as __toESM, t as require_react } from "./react-
|
|
2
|
-
import { t as require_jsx_runtime } from "./jsx-runtime-
|
|
1
|
+
import { n as __commonJS, r as __toESM, t as require_react } from "./react-BBkwFtZV.js";
|
|
2
|
+
import { t as require_jsx_runtime } from "./jsx-runtime-Dg-pJBHd.js";
|
|
3
3
|
import process$1 from "node:process";
|
|
4
4
|
import { onExit } from "signal-exit";
|
|
5
5
|
import { createExport, createImport, print } from "@kubb/fabric-core/parsers/typescript";
|
|
@@ -117,22 +117,22 @@ function _classPrivateFieldGet2(s, a) {
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
//#endregion
|
|
120
|
-
//#region ../../node_modules/react-reconciler/cjs/react-reconciler-constants.production.js
|
|
121
|
-
var require_react_reconciler_constants_production = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/cjs/react-reconciler-constants.production.js": ((exports) => {
|
|
120
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler-constants.production.js
|
|
121
|
+
var require_react_reconciler_constants_production = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler-constants.production.js": ((exports) => {
|
|
122
122
|
exports.ConcurrentRoot = 1;
|
|
123
123
|
exports.DefaultEventPriority = 32;
|
|
124
124
|
exports.NoEventPriority = 0;
|
|
125
125
|
}) });
|
|
126
126
|
|
|
127
127
|
//#endregion
|
|
128
|
-
//#region ../../node_modules/react-reconciler/cjs/react-reconciler-constants.development.js
|
|
129
|
-
var require_react_reconciler_constants_development = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/cjs/react-reconciler-constants.development.js": ((exports) => {
|
|
128
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js
|
|
129
|
+
var require_react_reconciler_constants_development = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js": ((exports) => {
|
|
130
130
|
"production" !== process.env.NODE_ENV && (exports.ConcurrentRoot = 1, exports.ContinuousEventPriority = 8, exports.DefaultEventPriority = 32, exports.DiscreteEventPriority = 2, exports.IdleEventPriority = 268435456, exports.LegacyRoot = 0, exports.NoEventPriority = 0);
|
|
131
131
|
}) });
|
|
132
132
|
|
|
133
133
|
//#endregion
|
|
134
|
-
//#region ../../node_modules/react-reconciler/constants.js
|
|
135
|
-
var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/constants.js": ((exports, module) => {
|
|
134
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/constants.js
|
|
135
|
+
var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/constants.js": ((exports, module) => {
|
|
136
136
|
if (process.env.NODE_ENV === "production") module.exports = require_react_reconciler_constants_production();
|
|
137
137
|
else module.exports = require_react_reconciler_constants_development();
|
|
138
138
|
}) });
|
|
@@ -194,8 +194,8 @@ const nodeNames = [
|
|
|
194
194
|
];
|
|
195
195
|
|
|
196
196
|
//#endregion
|
|
197
|
-
//#region ../../node_modules/scheduler/cjs/scheduler.production.js
|
|
198
|
-
var require_scheduler_production = /* @__PURE__ */ __commonJS({ "../../node_modules/scheduler/cjs/scheduler.production.js": ((exports) => {
|
|
197
|
+
//#region ../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js
|
|
198
|
+
var require_scheduler_production = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.production.js": ((exports) => {
|
|
199
199
|
function push(heap, node) {
|
|
200
200
|
var index = heap.length;
|
|
201
201
|
heap.push(node);
|
|
@@ -427,8 +427,8 @@ var require_scheduler_production = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
427
427
|
}) });
|
|
428
428
|
|
|
429
429
|
//#endregion
|
|
430
|
-
//#region ../../node_modules/scheduler/cjs/scheduler.development.js
|
|
431
|
-
var require_scheduler_development = /* @__PURE__ */ __commonJS({ "../../node_modules/scheduler/cjs/scheduler.development.js": ((exports) => {
|
|
430
|
+
//#region ../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.development.js
|
|
431
|
+
var require_scheduler_development = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/cjs/scheduler.development.js": ((exports) => {
|
|
432
432
|
"production" !== process.env.NODE_ENV && (function() {
|
|
433
433
|
function performWorkUntilDeadline$1() {
|
|
434
434
|
needsPaint$1 = !1;
|
|
@@ -662,15 +662,15 @@ var require_scheduler_development = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
662
662
|
}) });
|
|
663
663
|
|
|
664
664
|
//#endregion
|
|
665
|
-
//#region ../../node_modules/scheduler/index.js
|
|
666
|
-
var require_scheduler = /* @__PURE__ */ __commonJS({ "../../node_modules/scheduler/index.js": ((exports, module) => {
|
|
665
|
+
//#region ../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js
|
|
666
|
+
var require_scheduler = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/scheduler@0.26.0/node_modules/scheduler/index.js": ((exports, module) => {
|
|
667
667
|
if (process.env.NODE_ENV === "production") module.exports = require_scheduler_production();
|
|
668
668
|
else module.exports = require_scheduler_development();
|
|
669
669
|
}) });
|
|
670
670
|
|
|
671
671
|
//#endregion
|
|
672
|
-
//#region ../../node_modules/react-reconciler/cjs/react-reconciler.production.js
|
|
673
|
-
var require_react_reconciler_production = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/cjs/react-reconciler.production.js": ((exports, module) => {
|
|
672
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler.production.js
|
|
673
|
+
var require_react_reconciler_production = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler.production.js": ((exports, module) => {
|
|
674
674
|
module.exports = function($$$config) {
|
|
675
675
|
function createFiber(tag, pendingProps, key, mode) {
|
|
676
676
|
return new FiberNode(tag, pendingProps, key, mode);
|
|
@@ -6578,8 +6578,8 @@ var require_react_reconciler_production = /* @__PURE__ */ __commonJS({ "../../no
|
|
|
6578
6578
|
}) });
|
|
6579
6579
|
|
|
6580
6580
|
//#endregion
|
|
6581
|
-
//#region ../../node_modules/react-reconciler/cjs/react-reconciler.development.js
|
|
6582
|
-
var require_react_reconciler_development = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/cjs/react-reconciler.development.js": ((exports, module) => {
|
|
6581
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler.development.js
|
|
6582
|
+
var require_react_reconciler_development = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/cjs/react-reconciler.development.js": ((exports, module) => {
|
|
6583
6583
|
"production" !== process.env.NODE_ENV && (module.exports = function($$$config) {
|
|
6584
6584
|
function findHook(fiber, id) {
|
|
6585
6585
|
for (fiber = fiber.memoizedState; null !== fiber && 0 < id;) fiber = fiber.next, id--;
|
|
@@ -15082,8 +15082,8 @@ var require_react_reconciler_development = /* @__PURE__ */ __commonJS({ "../../n
|
|
|
15082
15082
|
}) });
|
|
15083
15083
|
|
|
15084
15084
|
//#endregion
|
|
15085
|
-
//#region ../../node_modules/react-reconciler/index.js
|
|
15086
|
-
var require_react_reconciler = /* @__PURE__ */ __commonJS({ "../../node_modules/react-reconciler/index.js": ((exports, module) => {
|
|
15085
|
+
//#region ../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/index.js
|
|
15086
|
+
var require_react_reconciler = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/react-reconciler@0.32.0_react@19.2.0/node_modules/react-reconciler/index.js": ((exports, module) => {
|
|
15087
15087
|
if (process.env.NODE_ENV === "production") module.exports = require_react_reconciler_production();
|
|
15088
15088
|
else module.exports = require_react_reconciler_development();
|
|
15089
15089
|
}) });
|
|
@@ -15479,4 +15479,4 @@ async function _getOutput(node) {
|
|
|
15479
15479
|
|
|
15480
15480
|
//#endregion
|
|
15481
15481
|
export { Root as a, _classPrivateFieldInitSpec as i, _classPrivateFieldGet2 as n, RootContext as o, _classPrivateFieldSet2 as r, Runtime as t };
|
|
15482
|
-
//# sourceMappingURL=Runtime-
|
|
15482
|
+
//# sourceMappingURL=Runtime-DWlDUeLZ.js.map
|