@1agh/maude 0.18.0 → 0.18.2

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,553 @@
1
+ var __create = Object.create;
2
+ var __getProtoOf = Object.getPrototypeOf;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ function __accessProp(key) {
7
+ return this[key];
8
+ }
9
+ var __toESMCache_node;
10
+ var __toESMCache_esm;
11
+ var __toESM = (mod, isNodeMode, target) => {
12
+ var canCache = mod != null && typeof mod === "object";
13
+ if (canCache) {
14
+ var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
15
+ var cached = cache.get(mod);
16
+ if (cached)
17
+ return cached;
18
+ }
19
+ target = mod != null ? __create(__getProtoOf(mod)) : {};
20
+ const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
21
+ for (let key of __getOwnPropNames(mod))
22
+ if (!__hasOwnProp.call(to, key))
23
+ __defProp(to, key, {
24
+ get: __accessProp.bind(mod, key),
25
+ enumerable: true
26
+ });
27
+ if (canCache)
28
+ cache.set(mod, to);
29
+ return to;
30
+ };
31
+ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
32
+ var __returnValue = (v) => v;
33
+ function __exportSetter(name, newValue) {
34
+ this[name] = __returnValue.bind(null, newValue);
35
+ }
36
+ var __export = (target, all) => {
37
+ for (var name in all)
38
+ __defProp(target, name, {
39
+ get: all[name],
40
+ enumerable: true,
41
+ configurable: true,
42
+ set: __exportSetter.bind(all, name)
43
+ });
44
+ };
45
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
46
+
47
+ // ../../../node_modules/.pnpm/react@19.2.6/node_modules/react/cjs/react.production.js
48
+ var exports_react_production = {};
49
+ __export(exports_react_production, {
50
+ version: () => $version,
51
+ useTransition: () => $useTransition,
52
+ useSyncExternalStore: () => $useSyncExternalStore,
53
+ useState: () => $useState,
54
+ useRef: () => $useRef,
55
+ useReducer: () => $useReducer,
56
+ useOptimistic: () => $useOptimistic,
57
+ useMemo: () => $useMemo,
58
+ useLayoutEffect: () => $useLayoutEffect,
59
+ useInsertionEffect: () => $useInsertionEffect,
60
+ useImperativeHandle: () => $useImperativeHandle,
61
+ useId: () => $useId,
62
+ useEffectEvent: () => $useEffectEvent,
63
+ useEffect: () => $useEffect,
64
+ useDeferredValue: () => $useDeferredValue,
65
+ useDebugValue: () => $useDebugValue,
66
+ useContext: () => $useContext,
67
+ useCallback: () => $useCallback,
68
+ useActionState: () => $useActionState,
69
+ use: () => $use,
70
+ unstable_useCacheRefresh: () => $unstable_useCacheRefresh,
71
+ startTransition: () => $startTransition,
72
+ memo: () => $memo,
73
+ lazy: () => $lazy,
74
+ isValidElement: () => $isValidElement,
75
+ forwardRef: () => $forwardRef,
76
+ createRef: () => $createRef,
77
+ createElement: () => $createElement,
78
+ createContext: () => $createContext,
79
+ cloneElement: () => $cloneElement,
80
+ cacheSignal: () => $cacheSignal,
81
+ cache: () => $cache,
82
+ __COMPILER_RUNTIME: () => $__COMPILER_RUNTIME,
83
+ __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE: () => $__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
84
+ Suspense: () => $Suspense,
85
+ StrictMode: () => $StrictMode,
86
+ PureComponent: () => $PureComponent,
87
+ Profiler: () => $Profiler,
88
+ Fragment: () => $Fragment,
89
+ Component: () => $Component,
90
+ Children: () => $Children,
91
+ Activity: () => $Activity
92
+ });
93
+ function getIteratorFn(maybeIterable) {
94
+ if (maybeIterable === null || typeof maybeIterable !== "object")
95
+ return null;
96
+ maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"];
97
+ return typeof maybeIterable === "function" ? maybeIterable : null;
98
+ }
99
+ function Component(props, context, updater) {
100
+ this.props = props;
101
+ this.context = context;
102
+ this.refs = emptyObject;
103
+ this.updater = updater || ReactNoopUpdateQueue;
104
+ }
105
+ function ComponentDummy() {}
106
+ function PureComponent(props, context, updater) {
107
+ this.props = props;
108
+ this.context = context;
109
+ this.refs = emptyObject;
110
+ this.updater = updater || ReactNoopUpdateQueue;
111
+ }
112
+ function noop() {}
113
+ function ReactElement(type, key, props) {
114
+ var refProp = props.ref;
115
+ return {
116
+ $$typeof: REACT_ELEMENT_TYPE,
117
+ type,
118
+ key,
119
+ ref: refProp !== undefined ? refProp : null,
120
+ props
121
+ };
122
+ }
123
+ function cloneAndReplaceKey(oldElement, newKey) {
124
+ return ReactElement(oldElement.type, newKey, oldElement.props);
125
+ }
126
+ function isValidElement(object) {
127
+ return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
128
+ }
129
+ function escape(key) {
130
+ var escaperLookup = { "=": "=0", ":": "=2" };
131
+ return "$" + key.replace(/[=:]/g, function(match) {
132
+ return escaperLookup[match];
133
+ });
134
+ }
135
+ function getElementKey(element, index) {
136
+ return typeof element === "object" && element !== null && element.key != null ? escape("" + element.key) : index.toString(36);
137
+ }
138
+ function resolveThenable(thenable) {
139
+ switch (thenable.status) {
140
+ case "fulfilled":
141
+ return thenable.value;
142
+ case "rejected":
143
+ throw thenable.reason;
144
+ default:
145
+ switch (typeof thenable.status === "string" ? thenable.then(noop, noop) : (thenable.status = "pending", thenable.then(function(fulfilledValue) {
146
+ thenable.status === "pending" && (thenable.status = "fulfilled", thenable.value = fulfilledValue);
147
+ }, function(error) {
148
+ thenable.status === "pending" && (thenable.status = "rejected", thenable.reason = error);
149
+ })), thenable.status) {
150
+ case "fulfilled":
151
+ return thenable.value;
152
+ case "rejected":
153
+ throw thenable.reason;
154
+ }
155
+ }
156
+ throw thenable;
157
+ }
158
+ function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
159
+ var type = typeof children;
160
+ if (type === "undefined" || type === "boolean")
161
+ children = null;
162
+ var invokeCallback = false;
163
+ if (children === null)
164
+ invokeCallback = true;
165
+ else
166
+ switch (type) {
167
+ case "bigint":
168
+ case "string":
169
+ case "number":
170
+ invokeCallback = true;
171
+ break;
172
+ case "object":
173
+ switch (children.$$typeof) {
174
+ case REACT_ELEMENT_TYPE:
175
+ case REACT_PORTAL_TYPE:
176
+ invokeCallback = true;
177
+ break;
178
+ case REACT_LAZY_TYPE:
179
+ return invokeCallback = children._init, mapIntoArray(invokeCallback(children._payload), array, escapedPrefix, nameSoFar, callback);
180
+ }
181
+ }
182
+ if (invokeCallback)
183
+ return callback = callback(children), invokeCallback = nameSoFar === "" ? "." + getElementKey(children, 0) : nameSoFar, isArrayImpl(callback) ? (escapedPrefix = "", invokeCallback != null && (escapedPrefix = invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) {
184
+ return c;
185
+ })) : callback != null && (isValidElement(callback) && (callback = cloneAndReplaceKey(callback, escapedPrefix + (callback.key == null || children && children.key === callback.key ? "" : ("" + callback.key).replace(userProvidedKeyEscapeRegex, "$&/") + "/") + invokeCallback)), array.push(callback)), 1;
186
+ invokeCallback = 0;
187
+ var nextNamePrefix = nameSoFar === "" ? "." : nameSoFar + ":";
188
+ if (isArrayImpl(children))
189
+ for (var i = 0;i < children.length; i++)
190
+ nameSoFar = children[i], type = nextNamePrefix + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback);
191
+ else if (i = getIteratorFn(children), typeof i === "function")
192
+ for (children = i.call(children), i = 0;!(nameSoFar = children.next()).done; )
193
+ nameSoFar = nameSoFar.value, type = nextNamePrefix + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback);
194
+ else if (type === "object") {
195
+ if (typeof children.then === "function")
196
+ return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback);
197
+ array = String(children);
198
+ throw Error("Objects are not valid as a React child (found: " + (array === "[object Object]" ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead.");
199
+ }
200
+ return invokeCallback;
201
+ }
202
+ function mapChildren(children, func, context) {
203
+ if (children == null)
204
+ return children;
205
+ var result = [], count = 0;
206
+ mapIntoArray(children, result, "", "", function(child) {
207
+ return func.call(context, child, count++);
208
+ });
209
+ return result;
210
+ }
211
+ function lazyInitializer(payload) {
212
+ if (payload._status === -1) {
213
+ var ctor = payload._result;
214
+ ctor = ctor();
215
+ ctor.then(function(moduleObject) {
216
+ if (payload._status === 0 || payload._status === -1)
217
+ payload._status = 1, payload._result = moduleObject;
218
+ }, function(error) {
219
+ if (payload._status === 0 || payload._status === -1)
220
+ payload._status = 2, payload._result = error;
221
+ });
222
+ payload._status === -1 && (payload._status = 0, payload._result = ctor);
223
+ }
224
+ if (payload._status === 1)
225
+ return payload._result.default;
226
+ throw payload._result;
227
+ }
228
+ var REACT_ELEMENT_TYPE, REACT_PORTAL_TYPE, REACT_FRAGMENT_TYPE, REACT_STRICT_MODE_TYPE, REACT_PROFILER_TYPE, REACT_CONSUMER_TYPE, REACT_CONTEXT_TYPE, REACT_FORWARD_REF_TYPE, REACT_SUSPENSE_TYPE, REACT_MEMO_TYPE, REACT_LAZY_TYPE, REACT_ACTIVITY_TYPE, MAYBE_ITERATOR_SYMBOL, ReactNoopUpdateQueue, assign, emptyObject, pureComponentPrototype, isArrayImpl, ReactSharedInternals, hasOwnProperty, userProvidedKeyEscapeRegex, reportGlobalError, Children, $Activity, $Children, $Component, $Fragment, $Profiler, $PureComponent, $StrictMode, $Suspense, $__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, $__COMPILER_RUNTIME, $cache = function(fn) {
229
+ return function() {
230
+ return fn.apply(null, arguments);
231
+ };
232
+ }, $cacheSignal = function() {
233
+ return null;
234
+ }, $cloneElement = function(element, config, children) {
235
+ if (element === null || element === undefined)
236
+ throw Error("The argument must be a React element, but you passed " + element + ".");
237
+ var props = assign({}, element.props), key = element.key;
238
+ if (config != null)
239
+ for (propName in config.key !== undefined && (key = "" + config.key), config)
240
+ !hasOwnProperty.call(config, propName) || propName === "key" || propName === "__self" || propName === "__source" || propName === "ref" && config.ref === undefined || (props[propName] = config[propName]);
241
+ var propName = arguments.length - 2;
242
+ if (propName === 1)
243
+ props.children = children;
244
+ else if (1 < propName) {
245
+ for (var childArray = Array(propName), i = 0;i < propName; i++)
246
+ childArray[i] = arguments[i + 2];
247
+ props.children = childArray;
248
+ }
249
+ return ReactElement(element.type, key, props);
250
+ }, $createContext = function(defaultValue) {
251
+ defaultValue = {
252
+ $$typeof: REACT_CONTEXT_TYPE,
253
+ _currentValue: defaultValue,
254
+ _currentValue2: defaultValue,
255
+ _threadCount: 0,
256
+ Provider: null,
257
+ Consumer: null
258
+ };
259
+ defaultValue.Provider = defaultValue;
260
+ defaultValue.Consumer = {
261
+ $$typeof: REACT_CONSUMER_TYPE,
262
+ _context: defaultValue
263
+ };
264
+ return defaultValue;
265
+ }, $createElement = function(type, config, children) {
266
+ var propName, props = {}, key = null;
267
+ if (config != null)
268
+ for (propName in config.key !== undefined && (key = "" + config.key), config)
269
+ hasOwnProperty.call(config, propName) && propName !== "key" && propName !== "__self" && propName !== "__source" && (props[propName] = config[propName]);
270
+ var childrenLength = arguments.length - 2;
271
+ if (childrenLength === 1)
272
+ props.children = children;
273
+ else if (1 < childrenLength) {
274
+ for (var childArray = Array(childrenLength), i = 0;i < childrenLength; i++)
275
+ childArray[i] = arguments[i + 2];
276
+ props.children = childArray;
277
+ }
278
+ if (type && type.defaultProps)
279
+ for (propName in childrenLength = type.defaultProps, childrenLength)
280
+ props[propName] === undefined && (props[propName] = childrenLength[propName]);
281
+ return ReactElement(type, key, props);
282
+ }, $createRef = function() {
283
+ return { current: null };
284
+ }, $forwardRef = function(render) {
285
+ return { $$typeof: REACT_FORWARD_REF_TYPE, render };
286
+ }, $isValidElement, $lazy = function(ctor) {
287
+ return {
288
+ $$typeof: REACT_LAZY_TYPE,
289
+ _payload: { _status: -1, _result: ctor },
290
+ _init: lazyInitializer
291
+ };
292
+ }, $memo = function(type, compare) {
293
+ return {
294
+ $$typeof: REACT_MEMO_TYPE,
295
+ type,
296
+ compare: compare === undefined ? null : compare
297
+ };
298
+ }, $startTransition = function(scope) {
299
+ var prevTransition = ReactSharedInternals.T, currentTransition = {};
300
+ ReactSharedInternals.T = currentTransition;
301
+ try {
302
+ var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S;
303
+ onStartTransitionFinish !== null && onStartTransitionFinish(currentTransition, returnValue);
304
+ typeof returnValue === "object" && returnValue !== null && typeof returnValue.then === "function" && returnValue.then(noop, reportGlobalError);
305
+ } catch (error) {
306
+ reportGlobalError(error);
307
+ } finally {
308
+ prevTransition !== null && currentTransition.types !== null && (prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition;
309
+ }
310
+ }, $unstable_useCacheRefresh = function() {
311
+ return ReactSharedInternals.H.useCacheRefresh();
312
+ }, $use = function(usable) {
313
+ return ReactSharedInternals.H.use(usable);
314
+ }, $useActionState = function(action, initialState, permalink) {
315
+ return ReactSharedInternals.H.useActionState(action, initialState, permalink);
316
+ }, $useCallback = function(callback, deps) {
317
+ return ReactSharedInternals.H.useCallback(callback, deps);
318
+ }, $useContext = function(Context) {
319
+ return ReactSharedInternals.H.useContext(Context);
320
+ }, $useDebugValue = function() {}, $useDeferredValue = function(value, initialValue) {
321
+ return ReactSharedInternals.H.useDeferredValue(value, initialValue);
322
+ }, $useEffect = function(create, deps) {
323
+ return ReactSharedInternals.H.useEffect(create, deps);
324
+ }, $useEffectEvent = function(callback) {
325
+ return ReactSharedInternals.H.useEffectEvent(callback);
326
+ }, $useId = function() {
327
+ return ReactSharedInternals.H.useId();
328
+ }, $useImperativeHandle = function(ref, create, deps) {
329
+ return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
330
+ }, $useInsertionEffect = function(create, deps) {
331
+ return ReactSharedInternals.H.useInsertionEffect(create, deps);
332
+ }, $useLayoutEffect = function(create, deps) {
333
+ return ReactSharedInternals.H.useLayoutEffect(create, deps);
334
+ }, $useMemo = function(create, deps) {
335
+ return ReactSharedInternals.H.useMemo(create, deps);
336
+ }, $useOptimistic = function(passthrough, reducer) {
337
+ return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
338
+ }, $useReducer = function(reducer, initialArg, init) {
339
+ return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
340
+ }, $useRef = function(initialValue) {
341
+ return ReactSharedInternals.H.useRef(initialValue);
342
+ }, $useState = function(initialState) {
343
+ return ReactSharedInternals.H.useState(initialState);
344
+ }, $useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) {
345
+ return ReactSharedInternals.H.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
346
+ }, $useTransition = function() {
347
+ return ReactSharedInternals.H.useTransition();
348
+ }, $version = "19.2.6";
349
+ var init_react_production = __esm(() => {
350
+ REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
351
+ REACT_PORTAL_TYPE = Symbol.for("react.portal");
352
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
353
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
354
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler");
355
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer");
356
+ REACT_CONTEXT_TYPE = Symbol.for("react.context");
357
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
358
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
359
+ REACT_MEMO_TYPE = Symbol.for("react.memo");
360
+ REACT_LAZY_TYPE = Symbol.for("react.lazy");
361
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity");
362
+ MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
363
+ ReactNoopUpdateQueue = {
364
+ isMounted: function() {
365
+ return false;
366
+ },
367
+ enqueueForceUpdate: function() {},
368
+ enqueueReplaceState: function() {},
369
+ enqueueSetState: function() {}
370
+ };
371
+ assign = Object.assign;
372
+ emptyObject = {};
373
+ Component.prototype.isReactComponent = {};
374
+ Component.prototype.setState = function(partialState, callback) {
375
+ if (typeof partialState !== "object" && typeof partialState !== "function" && partialState != null)
376
+ throw Error("takes an object of state variables to update or a function which returns an object of state variables.");
377
+ this.updater.enqueueSetState(this, partialState, callback, "setState");
378
+ };
379
+ Component.prototype.forceUpdate = function(callback) {
380
+ this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
381
+ };
382
+ ComponentDummy.prototype = Component.prototype;
383
+ pureComponentPrototype = PureComponent.prototype = new ComponentDummy;
384
+ pureComponentPrototype.constructor = PureComponent;
385
+ assign(pureComponentPrototype, Component.prototype);
386
+ pureComponentPrototype.isPureReactComponent = true;
387
+ isArrayImpl = Array.isArray;
388
+ ReactSharedInternals = { H: null, A: null, T: null, S: null };
389
+ hasOwnProperty = Object.prototype.hasOwnProperty;
390
+ userProvidedKeyEscapeRegex = /\/+/g;
391
+ reportGlobalError = typeof reportError === "function" ? reportError : function(error) {
392
+ if (typeof window === "object" && typeof window.ErrorEvent === "function") {
393
+ var event = new window.ErrorEvent("error", {
394
+ bubbles: true,
395
+ cancelable: true,
396
+ message: typeof error === "object" && error !== null && typeof error.message === "string" ? String(error.message) : String(error),
397
+ error
398
+ });
399
+ if (!window.dispatchEvent(event))
400
+ return;
401
+ } else if (typeof process === "object" && typeof process.emit === "function") {
402
+ process.emit("uncaughtException", error);
403
+ return;
404
+ }
405
+ console.error(error);
406
+ };
407
+ Children = {
408
+ map: mapChildren,
409
+ forEach: function(children, forEachFunc, forEachContext) {
410
+ mapChildren(children, function() {
411
+ forEachFunc.apply(this, arguments);
412
+ }, forEachContext);
413
+ },
414
+ count: function(children) {
415
+ var n = 0;
416
+ mapChildren(children, function() {
417
+ n++;
418
+ });
419
+ return n;
420
+ },
421
+ toArray: function(children) {
422
+ return mapChildren(children, function(child) {
423
+ return child;
424
+ }) || [];
425
+ },
426
+ only: function(children) {
427
+ if (!isValidElement(children))
428
+ throw Error("React.Children.only expected to receive a single React element child.");
429
+ return children;
430
+ }
431
+ };
432
+ $Activity = REACT_ACTIVITY_TYPE;
433
+ $Children = Children;
434
+ $Component = Component;
435
+ $Fragment = REACT_FRAGMENT_TYPE;
436
+ $Profiler = REACT_PROFILER_TYPE;
437
+ $PureComponent = PureComponent;
438
+ $StrictMode = REACT_STRICT_MODE_TYPE;
439
+ $Suspense = REACT_SUSPENSE_TYPE;
440
+ $__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals;
441
+ $__COMPILER_RUNTIME = {
442
+ __proto__: null,
443
+ c: function(size) {
444
+ return ReactSharedInternals.H.useMemoCache(size);
445
+ }
446
+ };
447
+ $isValidElement = isValidElement;
448
+ });
449
+
450
+ // ../../../node_modules/.pnpm/react@19.2.6/node_modules/react/index.js
451
+ var require_react = __commonJS((exports, module) => {
452
+ init_react_production();
453
+ if (true) {
454
+ module.exports = exports_react_production;
455
+ }
456
+ });
457
+
458
+ // synth:/home/runner/work/maude/maude/plugins/design/dev-server/.runtime-bundle-react-entry.tsx
459
+ var __mod__ = __toESM(require_react(), 1);
460
+ var {
461
+ Activity,
462
+ Children: Children2,
463
+ Component: Component2,
464
+ Fragment,
465
+ Profiler,
466
+ PureComponent: PureComponent2,
467
+ StrictMode,
468
+ Suspense,
469
+ __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
470
+ __COMPILER_RUNTIME,
471
+ act,
472
+ cache,
473
+ cacheSignal,
474
+ captureOwnerStack,
475
+ cloneElement,
476
+ createContext,
477
+ createElement,
478
+ createRef,
479
+ forwardRef,
480
+ isValidElement: isValidElement2,
481
+ lazy,
482
+ memo,
483
+ startTransition,
484
+ unstable_useCacheRefresh,
485
+ use,
486
+ useActionState,
487
+ useCallback,
488
+ useContext,
489
+ useDebugValue,
490
+ useDeferredValue,
491
+ useEffect,
492
+ useEffectEvent,
493
+ useId,
494
+ useImperativeHandle,
495
+ useInsertionEffect,
496
+ useLayoutEffect,
497
+ useMemo,
498
+ useOptimistic,
499
+ useReducer,
500
+ useRef,
501
+ useState,
502
+ useSyncExternalStore,
503
+ useTransition,
504
+ version
505
+ } = __mod__;
506
+ var __runtime_bundle_react_entry_default = __mod__;
507
+ export {
508
+ version,
509
+ useTransition,
510
+ useSyncExternalStore,
511
+ useState,
512
+ useRef,
513
+ useReducer,
514
+ useOptimistic,
515
+ useMemo,
516
+ useLayoutEffect,
517
+ useInsertionEffect,
518
+ useImperativeHandle,
519
+ useId,
520
+ useEffectEvent,
521
+ useEffect,
522
+ useDeferredValue,
523
+ useDebugValue,
524
+ useContext,
525
+ useCallback,
526
+ useActionState,
527
+ use,
528
+ unstable_useCacheRefresh,
529
+ startTransition,
530
+ memo,
531
+ lazy,
532
+ isValidElement2 as isValidElement,
533
+ forwardRef,
534
+ __runtime_bundle_react_entry_default as default,
535
+ createRef,
536
+ createElement,
537
+ createContext,
538
+ cloneElement,
539
+ captureOwnerStack,
540
+ cacheSignal,
541
+ cache,
542
+ act,
543
+ __COMPILER_RUNTIME,
544
+ __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
545
+ Suspense,
546
+ StrictMode,
547
+ PureComponent2 as PureComponent,
548
+ Profiler,
549
+ Fragment,
550
+ Component2 as Component,
551
+ Children2 as Children,
552
+ Activity
553
+ };
@@ -0,0 +1,78 @@
1
+ var __create = Object.create;
2
+ var __getProtoOf = Object.getPrototypeOf;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ function __accessProp(key) {
7
+ return this[key];
8
+ }
9
+ var __toESMCache_node;
10
+ var __toESMCache_esm;
11
+ var __toESM = (mod, isNodeMode, target) => {
12
+ var canCache = mod != null && typeof mod === "object";
13
+ if (canCache) {
14
+ var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
15
+ var cached = cache.get(mod);
16
+ if (cached)
17
+ return cached;
18
+ }
19
+ target = mod != null ? __create(__getProtoOf(mod)) : {};
20
+ const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
21
+ for (let key of __getOwnPropNames(mod))
22
+ if (!__hasOwnProp.call(to, key))
23
+ __defProp(to, key, {
24
+ get: __accessProp.bind(mod, key),
25
+ enumerable: true
26
+ });
27
+ if (canCache)
28
+ cache.set(mod, to);
29
+ return to;
30
+ };
31
+ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
32
+ var __returnValue = (v) => v;
33
+ function __exportSetter(name, newValue) {
34
+ this[name] = __returnValue.bind(null, newValue);
35
+ }
36
+ var __export = (target, all) => {
37
+ for (var name in all)
38
+ __defProp(target, name, {
39
+ get: all[name],
40
+ enumerable: true,
41
+ configurable: true,
42
+ set: __exportSetter.bind(all, name)
43
+ });
44
+ };
45
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
46
+
47
+ // ../../../node_modules/.pnpm/react@19.2.6/node_modules/react/cjs/react-jsx-dev-runtime.production.js
48
+ var exports_react_jsx_dev_runtime_production = {};
49
+ __export(exports_react_jsx_dev_runtime_production, {
50
+ jsxDEV: () => $jsxDEV,
51
+ Fragment: () => $Fragment
52
+ });
53
+ var REACT_FRAGMENT_TYPE, $Fragment, $jsxDEV = undefined;
54
+ var init_react_jsx_dev_runtime_production = __esm(() => {
55
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
56
+ $Fragment = REACT_FRAGMENT_TYPE;
57
+ });
58
+
59
+ // ../../../node_modules/.pnpm/react@19.2.6/node_modules/react/jsx-dev-runtime.js
60
+ var require_jsx_dev_runtime = __commonJS((exports, module) => {
61
+ init_react_jsx_dev_runtime_production();
62
+ if (true) {
63
+ module.exports = exports_react_jsx_dev_runtime_production;
64
+ }
65
+ });
66
+
67
+ // synth:/home/runner/work/maude/maude/plugins/design/dev-server/.runtime-bundle-react_jsx-dev-runtime-entry.tsx
68
+ var __mod__ = __toESM(require_jsx_dev_runtime(), 1);
69
+ var {
70
+ Fragment,
71
+ jsxDEV
72
+ } = __mod__;
73
+ var __runtime_bundle_react_jsx_dev_runtime_entry_default = __mod__;
74
+ export {
75
+ jsxDEV,
76
+ __runtime_bundle_react_jsx_dev_runtime_entry_default as default,
77
+ Fragment
78
+ };