@xyd-js/theme-gusto 0.0.0-build-eeaeeda-20251001123000 → 0.0.0-build-7376fe0-20251003015041
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/CHANGELOG.md +6 -6
- package/dist/index.css +1 -1
- package/dist/index.js +26 -31
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -151,7 +151,7 @@ function requireReactJsxRuntime_development () {
|
|
|
151
151
|
case REACT_PORTAL_TYPE:
|
|
152
152
|
return "Portal";
|
|
153
153
|
case REACT_CONTEXT_TYPE:
|
|
154
|
-
return
|
|
154
|
+
return type.displayName || "Context";
|
|
155
155
|
case REACT_CONSUMER_TYPE:
|
|
156
156
|
return (type._context.displayName || "Context") + ".Consumer";
|
|
157
157
|
case REACT_FORWARD_REF_TYPE:
|
|
@@ -258,17 +258,8 @@ function requireReactJsxRuntime_development () {
|
|
|
258
258
|
componentName = this.props.ref;
|
|
259
259
|
return void 0 !== componentName ? componentName : null;
|
|
260
260
|
}
|
|
261
|
-
function ReactElement(
|
|
262
|
-
|
|
263
|
-
key,
|
|
264
|
-
self,
|
|
265
|
-
source,
|
|
266
|
-
owner,
|
|
267
|
-
props,
|
|
268
|
-
debugStack,
|
|
269
|
-
debugTask
|
|
270
|
-
) {
|
|
271
|
-
self = props.ref;
|
|
261
|
+
function ReactElement(type, key, props, owner, debugStack, debugTask) {
|
|
262
|
+
var refProp = props.ref;
|
|
272
263
|
type = {
|
|
273
264
|
$$typeof: REACT_ELEMENT_TYPE,
|
|
274
265
|
type: type,
|
|
@@ -276,7 +267,7 @@ function requireReactJsxRuntime_development () {
|
|
|
276
267
|
props: props,
|
|
277
268
|
_owner: owner
|
|
278
269
|
};
|
|
279
|
-
null !== (void 0 !==
|
|
270
|
+
null !== (void 0 !== refProp ? refProp : null)
|
|
280
271
|
? Object.defineProperty(type, "ref", {
|
|
281
272
|
enumerable: false,
|
|
282
273
|
get: elementRefGetterWithDeprecationWarning
|
|
@@ -315,8 +306,6 @@ function requireReactJsxRuntime_development () {
|
|
|
315
306
|
config,
|
|
316
307
|
maybeKey,
|
|
317
308
|
isStaticChildren,
|
|
318
|
-
source,
|
|
319
|
-
self,
|
|
320
309
|
debugStack,
|
|
321
310
|
debugTask
|
|
322
311
|
) {
|
|
@@ -377,28 +366,38 @@ function requireReactJsxRuntime_development () {
|
|
|
377
366
|
return ReactElement(
|
|
378
367
|
type,
|
|
379
368
|
children,
|
|
380
|
-
self,
|
|
381
|
-
source,
|
|
382
|
-
getOwner(),
|
|
383
369
|
maybeKey,
|
|
370
|
+
getOwner(),
|
|
384
371
|
debugStack,
|
|
385
372
|
debugTask
|
|
386
373
|
);
|
|
387
374
|
}
|
|
388
375
|
function validateChildKeys(node) {
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
376
|
+
isValidElement(node)
|
|
377
|
+
? node._store && (node._store.validated = 1)
|
|
378
|
+
: "object" === typeof node &&
|
|
379
|
+
null !== node &&
|
|
380
|
+
node.$$typeof === REACT_LAZY_TYPE &&
|
|
381
|
+
("fulfilled" === node._payload.status
|
|
382
|
+
? isValidElement(node._payload.value) &&
|
|
383
|
+
node._payload.value._store &&
|
|
384
|
+
(node._payload.value._store.validated = 1)
|
|
385
|
+
: node._store && (node._store.validated = 1));
|
|
386
|
+
}
|
|
387
|
+
function isValidElement(object) {
|
|
388
|
+
return (
|
|
389
|
+
"object" === typeof object &&
|
|
390
|
+
null !== object &&
|
|
391
|
+
object.$$typeof === REACT_ELEMENT_TYPE
|
|
392
|
+
);
|
|
394
393
|
}
|
|
395
394
|
var React = React__default,
|
|
396
395
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
397
396
|
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
|
398
397
|
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
|
399
398
|
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
|
400
|
-
REACT_PROFILER_TYPE = Symbol.for("react.profiler")
|
|
401
|
-
|
|
399
|
+
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
|
|
400
|
+
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
|
|
402
401
|
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
|
|
403
402
|
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
|
|
404
403
|
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
|
|
@@ -430,7 +429,7 @@ function requireReactJsxRuntime_development () {
|
|
|
430
429
|
var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
|
|
431
430
|
var didWarnAboutKeySpread = {};
|
|
432
431
|
reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
|
|
433
|
-
reactJsxRuntime_development.jsx = function (type, config, maybeKey
|
|
432
|
+
reactJsxRuntime_development.jsx = function (type, config, maybeKey) {
|
|
434
433
|
var trackActualOwner =
|
|
435
434
|
1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
436
435
|
return jsxDEVImpl(
|
|
@@ -438,15 +437,13 @@ function requireReactJsxRuntime_development () {
|
|
|
438
437
|
config,
|
|
439
438
|
maybeKey,
|
|
440
439
|
false,
|
|
441
|
-
source,
|
|
442
|
-
self,
|
|
443
440
|
trackActualOwner
|
|
444
441
|
? Error("react-stack-top-frame")
|
|
445
442
|
: unknownOwnerDebugStack,
|
|
446
443
|
trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
|
|
447
444
|
);
|
|
448
445
|
};
|
|
449
|
-
reactJsxRuntime_development.jsxs = function (type, config, maybeKey
|
|
446
|
+
reactJsxRuntime_development.jsxs = function (type, config, maybeKey) {
|
|
450
447
|
var trackActualOwner =
|
|
451
448
|
1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
452
449
|
return jsxDEVImpl(
|
|
@@ -454,8 +451,6 @@ function requireReactJsxRuntime_development () {
|
|
|
454
451
|
config,
|
|
455
452
|
maybeKey,
|
|
456
453
|
true,
|
|
457
|
-
source,
|
|
458
|
-
self,
|
|
459
454
|
trackActualOwner
|
|
460
455
|
? Error("react-stack-top-frame")
|
|
461
456
|
: unknownOwnerDebugStack,
|