@alchemy.run/sigil 0.0.0-alpha.10 → 0.0.0-alpha.11

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.
@@ -0,0 +1,2 @@
1
+ import { Fragment, JSX, jsxDEV } from "react/jsx-dev-runtime";
2
+ export { Fragment, type JSX, jsxDEV };
@@ -0,0 +1,227 @@
1
+ import { n as __commonJSMin, t as require_react } from "./react-CTZ_8dwh.js";
2
+ //#region node_modules/.pnpm/react@19.3.0/node_modules/react/cjs/react-jsx-dev-runtime.production.js
3
+ /**
4
+ * @license React
5
+ * react-jsx-dev-runtime.production.js
6
+ *
7
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
8
+ *
9
+ * This source code is licensed under the MIT license found in the
10
+ * LICENSE file in the root directory of this source tree.
11
+ */
12
+ var require_react_jsx_dev_runtime_production = /* @__PURE__ */ __commonJSMin(((exports) => {
13
+ exports.Fragment = Symbol.for("react.fragment");
14
+ exports.jsxDEV = void 0;
15
+ }));
16
+ //#endregion
17
+ //#region node_modules/.pnpm/react@19.3.0/node_modules/react/cjs/react-jsx-dev-runtime.development.js
18
+ /**
19
+ * @license React
20
+ * react-jsx-dev-runtime.development.js
21
+ *
22
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
23
+ *
24
+ * This source code is licensed under the MIT license found in the
25
+ * LICENSE file in the root directory of this source tree.
26
+ */
27
+ var require_react_jsx_dev_runtime_development = /* @__PURE__ */ __commonJSMin(((exports) => {
28
+ "production" !== process.env.NODE_ENV && (function() {
29
+ function getComponentNameFromType(type) {
30
+ if (null == type) return null;
31
+ if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
32
+ if ("string" === typeof type) return type;
33
+ switch (type) {
34
+ case REACT_FRAGMENT_TYPE: return "Fragment";
35
+ case REACT_PROFILER_TYPE: return "Profiler";
36
+ case REACT_STRICT_MODE_TYPE: return "StrictMode";
37
+ case REACT_SUSPENSE_TYPE: return "Suspense";
38
+ case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList";
39
+ case REACT_ACTIVITY_TYPE: return "Activity";
40
+ case REACT_VIEW_TRANSITION_TYPE: return "ViewTransition";
41
+ }
42
+ if ("object" === typeof type) switch ("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof) {
43
+ case REACT_PORTAL_TYPE: return "Portal";
44
+ case REACT_CONTEXT_TYPE: return type.displayName || "Context";
45
+ case REACT_CONSUMER_TYPE: return (type._context.displayName || "Context") + ".Consumer";
46
+ case REACT_FORWARD_REF_TYPE:
47
+ var innerType = type.render;
48
+ type = type.displayName;
49
+ type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
50
+ return type;
51
+ case REACT_MEMO_TYPE: return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
52
+ case REACT_LAZY_TYPE:
53
+ innerType = type._payload;
54
+ type = type._init;
55
+ try {
56
+ return getComponentNameFromType(type(innerType));
57
+ } catch (x) {}
58
+ }
59
+ return null;
60
+ }
61
+ function testStringCoercion(value) {
62
+ return "" + value;
63
+ }
64
+ function checkKeyStringCoercion(value) {
65
+ try {
66
+ testStringCoercion(value);
67
+ var JSCompiler_inline_result = !1;
68
+ } catch (e) {
69
+ JSCompiler_inline_result = !0;
70
+ }
71
+ if (JSCompiler_inline_result) {
72
+ JSCompiler_inline_result = console;
73
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
74
+ var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
75
+ JSCompiler_temp_const.call(JSCompiler_inline_result, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", JSCompiler_inline_result$jscomp$0);
76
+ return testStringCoercion(value);
77
+ }
78
+ }
79
+ function getTaskName(type) {
80
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
81
+ if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return "<...>";
82
+ try {
83
+ var name = getComponentNameFromType(type);
84
+ return name ? "<" + name + ">" : "<...>";
85
+ } catch (x) {
86
+ return "<...>";
87
+ }
88
+ }
89
+ function getOwner() {
90
+ var dispatcher = ReactSharedInternals.A;
91
+ return null === dispatcher ? null : dispatcher.getOwner();
92
+ }
93
+ function UnknownOwner() {
94
+ return Error("react-stack-top-frame");
95
+ }
96
+ function hasValidKey(config) {
97
+ if (hasOwnProperty.call(config, "key")) {
98
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
99
+ if (getter && getter.isReactWarning) return !1;
100
+ }
101
+ return void 0 !== config.key;
102
+ }
103
+ function defineKeyPropWarningGetter(props, displayName) {
104
+ function warnAboutAccessingKey() {
105
+ specialPropKeyWarningShown || (specialPropKeyWarningShown = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", displayName));
106
+ }
107
+ warnAboutAccessingKey.isReactWarning = !0;
108
+ Object.defineProperty(props, "key", {
109
+ get: warnAboutAccessingKey,
110
+ configurable: !0
111
+ });
112
+ }
113
+ function elementRefGetterWithDeprecationWarning() {
114
+ var componentName = getComponentNameFromType(this.type);
115
+ didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."));
116
+ componentName = this.props.ref;
117
+ return void 0 !== componentName ? componentName : null;
118
+ }
119
+ function ReactElement(type, key, props, owner, debugStack, debugTask) {
120
+ var refProp = props.ref;
121
+ type = {
122
+ $$typeof: REACT_ELEMENT_TYPE,
123
+ type,
124
+ key,
125
+ props,
126
+ _owner: owner
127
+ };
128
+ null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
129
+ enumerable: !1,
130
+ get: elementRefGetterWithDeprecationWarning
131
+ }) : Object.defineProperty(type, "ref", {
132
+ enumerable: !1,
133
+ value: null
134
+ });
135
+ type._store = {};
136
+ Object.defineProperty(type._store, "validated", {
137
+ configurable: !1,
138
+ enumerable: !1,
139
+ writable: !0,
140
+ value: 0
141
+ });
142
+ Object.defineProperty(type, "_debugInfo", {
143
+ configurable: !1,
144
+ enumerable: !1,
145
+ writable: !0,
146
+ value: null
147
+ });
148
+ Object.defineProperty(type, "_debugStack", {
149
+ configurable: !1,
150
+ enumerable: !1,
151
+ writable: !0,
152
+ value: debugStack
153
+ });
154
+ Object.defineProperty(type, "_debugTask", {
155
+ configurable: !1,
156
+ enumerable: !1,
157
+ writable: !0,
158
+ value: debugTask
159
+ });
160
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
161
+ return type;
162
+ }
163
+ function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) {
164
+ var children = config.children;
165
+ if (void 0 !== children) if (isStaticChildren) if (isArrayImpl(children)) {
166
+ for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++) validateChildKeys(children[isStaticChildren]);
167
+ Object.freeze && Object.freeze(children);
168
+ } else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
169
+ else validateChildKeys(children);
170
+ if (hasOwnProperty.call(config, "key")) {
171
+ children = getComponentNameFromType(type);
172
+ var keys = Object.keys(config).filter(function(k) {
173
+ return "key" !== k;
174
+ });
175
+ isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
176
+ didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error("A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />", isStaticChildren, children, keys, children), didWarnAboutKeySpread[children + isStaticChildren] = !0);
177
+ }
178
+ children = null;
179
+ void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
180
+ hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
181
+ if ("key" in config) {
182
+ maybeKey = {};
183
+ for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]);
184
+ } else maybeKey = config;
185
+ children && defineKeyPropWarningGetter(maybeKey, "function" === typeof type ? type.displayName || type.name || "Unknown" : type);
186
+ return ReactElement(type, children, maybeKey, getOwner(), debugStack, debugTask);
187
+ }
188
+ function validateChildKeys(node) {
189
+ isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1));
190
+ }
191
+ function isValidElement(object) {
192
+ return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
193
+ }
194
+ var React = require_react(), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
195
+ return null;
196
+ };
197
+ React = { react_stack_bottom_frame: function(callStackForError) {
198
+ return callStackForError();
199
+ } };
200
+ var specialPropKeyWarningShown;
201
+ var didWarnAboutElementRef = {};
202
+ var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(React, UnknownOwner)();
203
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
204
+ var didWarnAboutKeySpread = {};
205
+ exports.Fragment = REACT_FRAGMENT_TYPE;
206
+ exports.jsxDEV = function(type, config, maybeKey, isStaticChildren) {
207
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
208
+ if (trackActualOwner) {
209
+ var previousStackTraceLimit = Error.stackTraceLimit;
210
+ Error.stackTraceLimit = 10;
211
+ var debugStackDEV = Error("react-stack-top-frame");
212
+ Error.stackTraceLimit = previousStackTraceLimit;
213
+ } else debugStackDEV = unknownOwnerDebugStack;
214
+ return jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStackDEV, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask);
215
+ };
216
+ })();
217
+ }));
218
+ //#endregion
219
+ //#region src/jsx-dev-runtime.ts
220
+ var import_jsx_dev_runtime = (/* @__PURE__ */ __commonJSMin(((exports, module) => {
221
+ if (process.env.NODE_ENV === "production") module.exports = require_react_jsx_dev_runtime_production();
222
+ else module.exports = require_react_jsx_dev_runtime_development();
223
+ })))();
224
+ //#endregion
225
+ var Fragment = import_jsx_dev_runtime.Fragment;
226
+ var jsxDEV = import_jsx_dev_runtime.jsxDEV;
227
+ export { Fragment, jsxDEV };
@@ -0,0 +1,255 @@
1
+ import { n as __commonJSMin, t as require_react } from "./react-CTZ_8dwh.js";
2
+ //#region node_modules/.pnpm/react@19.3.0/node_modules/react/cjs/react-jsx-runtime.production.js
3
+ /**
4
+ * @license React
5
+ * react-jsx-runtime.production.js
6
+ *
7
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
8
+ *
9
+ * This source code is licensed under the MIT license found in the
10
+ * LICENSE file in the root directory of this source tree.
11
+ */
12
+ var require_react_jsx_runtime_production = /* @__PURE__ */ __commonJSMin(((exports) => {
13
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
14
+ var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
15
+ function jsxProd(type, config, maybeKey) {
16
+ var key = null;
17
+ void 0 !== maybeKey && (key = "" + maybeKey);
18
+ void 0 !== config.key && (key = "" + config.key);
19
+ if ("key" in config) {
20
+ maybeKey = {};
21
+ for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]);
22
+ } else maybeKey = config;
23
+ config = maybeKey.ref;
24
+ return {
25
+ $$typeof: REACT_ELEMENT_TYPE,
26
+ type,
27
+ key,
28
+ ref: void 0 !== config ? config : null,
29
+ props: maybeKey
30
+ };
31
+ }
32
+ exports.Fragment = REACT_FRAGMENT_TYPE;
33
+ exports.jsx = jsxProd;
34
+ exports.jsxs = jsxProd;
35
+ }));
36
+ //#endregion
37
+ //#region node_modules/.pnpm/react@19.3.0/node_modules/react/cjs/react-jsx-runtime.development.js
38
+ /**
39
+ * @license React
40
+ * react-jsx-runtime.development.js
41
+ *
42
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
43
+ *
44
+ * This source code is licensed under the MIT license found in the
45
+ * LICENSE file in the root directory of this source tree.
46
+ */
47
+ var require_react_jsx_runtime_development = /* @__PURE__ */ __commonJSMin(((exports) => {
48
+ "production" !== process.env.NODE_ENV && (function() {
49
+ function getComponentNameFromType(type) {
50
+ if (null == type) return null;
51
+ if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
52
+ if ("string" === typeof type) return type;
53
+ switch (type) {
54
+ case REACT_FRAGMENT_TYPE: return "Fragment";
55
+ case REACT_PROFILER_TYPE: return "Profiler";
56
+ case REACT_STRICT_MODE_TYPE: return "StrictMode";
57
+ case REACT_SUSPENSE_TYPE: return "Suspense";
58
+ case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList";
59
+ case REACT_ACTIVITY_TYPE: return "Activity";
60
+ case REACT_VIEW_TRANSITION_TYPE: return "ViewTransition";
61
+ }
62
+ if ("object" === typeof type) switch ("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof) {
63
+ case REACT_PORTAL_TYPE: return "Portal";
64
+ case REACT_CONTEXT_TYPE: return type.displayName || "Context";
65
+ case REACT_CONSUMER_TYPE: return (type._context.displayName || "Context") + ".Consumer";
66
+ case REACT_FORWARD_REF_TYPE:
67
+ var innerType = type.render;
68
+ type = type.displayName;
69
+ type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
70
+ return type;
71
+ case REACT_MEMO_TYPE: return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
72
+ case REACT_LAZY_TYPE:
73
+ innerType = type._payload;
74
+ type = type._init;
75
+ try {
76
+ return getComponentNameFromType(type(innerType));
77
+ } catch (x) {}
78
+ }
79
+ return null;
80
+ }
81
+ function testStringCoercion(value) {
82
+ return "" + value;
83
+ }
84
+ function checkKeyStringCoercion(value) {
85
+ try {
86
+ testStringCoercion(value);
87
+ var JSCompiler_inline_result = !1;
88
+ } catch (e) {
89
+ JSCompiler_inline_result = !0;
90
+ }
91
+ if (JSCompiler_inline_result) {
92
+ JSCompiler_inline_result = console;
93
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
94
+ var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
95
+ JSCompiler_temp_const.call(JSCompiler_inline_result, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", JSCompiler_inline_result$jscomp$0);
96
+ return testStringCoercion(value);
97
+ }
98
+ }
99
+ function getTaskName(type) {
100
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
101
+ if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return "<...>";
102
+ try {
103
+ var name = getComponentNameFromType(type);
104
+ return name ? "<" + name + ">" : "<...>";
105
+ } catch (x) {
106
+ return "<...>";
107
+ }
108
+ }
109
+ function getOwner() {
110
+ var dispatcher = ReactSharedInternals.A;
111
+ return null === dispatcher ? null : dispatcher.getOwner();
112
+ }
113
+ function UnknownOwner() {
114
+ return Error("react-stack-top-frame");
115
+ }
116
+ function hasValidKey(config) {
117
+ if (hasOwnProperty.call(config, "key")) {
118
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
119
+ if (getter && getter.isReactWarning) return !1;
120
+ }
121
+ return void 0 !== config.key;
122
+ }
123
+ function defineKeyPropWarningGetter(props, displayName) {
124
+ function warnAboutAccessingKey() {
125
+ specialPropKeyWarningShown || (specialPropKeyWarningShown = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", displayName));
126
+ }
127
+ warnAboutAccessingKey.isReactWarning = !0;
128
+ Object.defineProperty(props, "key", {
129
+ get: warnAboutAccessingKey,
130
+ configurable: !0
131
+ });
132
+ }
133
+ function elementRefGetterWithDeprecationWarning() {
134
+ var componentName = getComponentNameFromType(this.type);
135
+ didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."));
136
+ componentName = this.props.ref;
137
+ return void 0 !== componentName ? componentName : null;
138
+ }
139
+ function ReactElement(type, key, props, owner, debugStack, debugTask) {
140
+ var refProp = props.ref;
141
+ type = {
142
+ $$typeof: REACT_ELEMENT_TYPE,
143
+ type,
144
+ key,
145
+ props,
146
+ _owner: owner
147
+ };
148
+ null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
149
+ enumerable: !1,
150
+ get: elementRefGetterWithDeprecationWarning
151
+ }) : Object.defineProperty(type, "ref", {
152
+ enumerable: !1,
153
+ value: null
154
+ });
155
+ type._store = {};
156
+ Object.defineProperty(type._store, "validated", {
157
+ configurable: !1,
158
+ enumerable: !1,
159
+ writable: !0,
160
+ value: 0
161
+ });
162
+ Object.defineProperty(type, "_debugInfo", {
163
+ configurable: !1,
164
+ enumerable: !1,
165
+ writable: !0,
166
+ value: null
167
+ });
168
+ Object.defineProperty(type, "_debugStack", {
169
+ configurable: !1,
170
+ enumerable: !1,
171
+ writable: !0,
172
+ value: debugStack
173
+ });
174
+ Object.defineProperty(type, "_debugTask", {
175
+ configurable: !1,
176
+ enumerable: !1,
177
+ writable: !0,
178
+ value: debugTask
179
+ });
180
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
181
+ return type;
182
+ }
183
+ function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) {
184
+ var children = config.children;
185
+ if (void 0 !== children) if (isStaticChildren) if (isArrayImpl(children)) {
186
+ for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++) validateChildKeys(children[isStaticChildren]);
187
+ Object.freeze && Object.freeze(children);
188
+ } else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
189
+ else validateChildKeys(children);
190
+ if (hasOwnProperty.call(config, "key")) {
191
+ children = getComponentNameFromType(type);
192
+ var keys = Object.keys(config).filter(function(k) {
193
+ return "key" !== k;
194
+ });
195
+ isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
196
+ didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error("A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />", isStaticChildren, children, keys, children), didWarnAboutKeySpread[children + isStaticChildren] = !0);
197
+ }
198
+ children = null;
199
+ void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
200
+ hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
201
+ if ("key" in config) {
202
+ maybeKey = {};
203
+ for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]);
204
+ } else maybeKey = config;
205
+ children && defineKeyPropWarningGetter(maybeKey, "function" === typeof type ? type.displayName || type.name || "Unknown" : type);
206
+ return ReactElement(type, children, maybeKey, getOwner(), debugStack, debugTask);
207
+ }
208
+ function validateChildKeys(node) {
209
+ isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1));
210
+ }
211
+ function isValidElement(object) {
212
+ return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
213
+ }
214
+ var React = require_react(), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
215
+ return null;
216
+ };
217
+ React = { react_stack_bottom_frame: function(callStackForError) {
218
+ return callStackForError();
219
+ } };
220
+ var specialPropKeyWarningShown;
221
+ var didWarnAboutElementRef = {};
222
+ var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(React, UnknownOwner)();
223
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
224
+ var didWarnAboutKeySpread = {};
225
+ exports.Fragment = REACT_FRAGMENT_TYPE;
226
+ exports.jsx = function(type, config, maybeKey) {
227
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
228
+ if (trackActualOwner) {
229
+ var previousStackTraceLimit = Error.stackTraceLimit;
230
+ Error.stackTraceLimit = 10;
231
+ var debugStackDEV = Error("react-stack-top-frame");
232
+ Error.stackTraceLimit = previousStackTraceLimit;
233
+ } else debugStackDEV = unknownOwnerDebugStack;
234
+ return jsxDEVImpl(type, config, maybeKey, !1, debugStackDEV, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask);
235
+ };
236
+ exports.jsxs = function(type, config, maybeKey) {
237
+ var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
238
+ if (trackActualOwner) {
239
+ var previousStackTraceLimit = Error.stackTraceLimit;
240
+ Error.stackTraceLimit = 10;
241
+ var debugStackDEV = Error("react-stack-top-frame");
242
+ Error.stackTraceLimit = previousStackTraceLimit;
243
+ } else debugStackDEV = unknownOwnerDebugStack;
244
+ return jsxDEVImpl(type, config, maybeKey, !0, debugStackDEV, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask);
245
+ };
246
+ })();
247
+ }));
248
+ //#endregion
249
+ //#region node_modules/.pnpm/react@19.3.0/node_modules/react/jsx-runtime.js
250
+ var require_jsx_runtime = /* @__PURE__ */ __commonJSMin(((exports, module) => {
251
+ if (process.env.NODE_ENV === "production") module.exports = require_react_jsx_runtime_production();
252
+ else module.exports = require_react_jsx_runtime_development();
253
+ }));
254
+ //#endregion
255
+ export { require_jsx_runtime as t };
@@ -0,0 +1,2 @@
1
+ import { Fragment, JSX, jsx, jsxs } from "react/jsx-runtime";
2
+ export { Fragment, type JSX, jsx, jsxs };
@@ -0,0 +1,8 @@
1
+ import { t as require_jsx_runtime } from "./jsx-runtime-XtwIVFsg.js";
2
+ //#region src/jsx-runtime.ts
3
+ var import_jsx_runtime = require_jsx_runtime();
4
+ //#endregion
5
+ var Fragment = import_jsx_runtime.Fragment;
6
+ var jsx = import_jsx_runtime.jsx;
7
+ var jsxs = import_jsx_runtime.jsxs;
8
+ export { Fragment, jsx, jsxs };