@jsenv/cli 0.2.34 → 0.2.36
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/package.json +1 -1
- package/template-node-package/package.json +4 -4
- package/template-web/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
- package/template-web/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
- package/template-web/package.json +6 -6
- package/template-web-components/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
- package/template-web-components/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
- package/template-web-components/package.json +6 -6
- package/template-web-preact/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
- package/template-web-preact/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
- package/template-web-preact/.jsenv/shape/index.html +1 -1
- package/template-web-preact/.jsenv/shape/vendors.js +1 -1
- package/template-web-preact/.jsenv/shape/vendors.nomodule.js +1 -1
- package/template-web-preact/dist/index.html +1 -1
- package/template-web-preact/dist/js/vendors.nomodule.js +1 -1
- package/template-web-preact/package.json +7 -7
- package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
- package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react/react/jsx-runtime.jsx +3 -3
- package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react/react.jsx +18 -18
- package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/react-dom/client.jsx +413 -413
- package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.js +22 -22
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.js__compile_info__.json +3 -3
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.map +1 -1
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.js +3 -3
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.js__compile_info__.json +3 -3
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.map +1 -1
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.js +461 -461
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.js__compile_info__.json +3 -3
- package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.map +1 -1
- package/template-web-react/.jsenv/craft/cjs_to_esm/__compile_context__.json +1 -1
- package/template-web-react/package.json +7 -7
|
@@ -237,7 +237,7 @@ function requireReact_production() {
|
|
|
237
237
|
}
|
|
238
238
|
var ReactNoopUpdateQueue = {
|
|
239
239
|
isMounted: function () {
|
|
240
|
-
return
|
|
240
|
+
return false;
|
|
241
241
|
},
|
|
242
242
|
enqueueForceUpdate: function () {},
|
|
243
243
|
enqueueReplaceState: function () {},
|
|
@@ -270,7 +270,7 @@ function requireReact_production() {
|
|
|
270
270
|
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
|
271
271
|
pureComponentPrototype.constructor = PureComponent;
|
|
272
272
|
assign(pureComponentPrototype, Component.prototype);
|
|
273
|
-
pureComponentPrototype.isPureReactComponent =
|
|
273
|
+
pureComponentPrototype.isPureReactComponent = true;
|
|
274
274
|
var isArrayImpl = Array.isArray,
|
|
275
275
|
ReactSharedInternals = {
|
|
276
276
|
H: null,
|
|
@@ -285,12 +285,12 @@ function requireReact_production() {
|
|
|
285
285
|
$$typeof: REACT_ELEMENT_TYPE,
|
|
286
286
|
type: type,
|
|
287
287
|
key: key,
|
|
288
|
-
ref:
|
|
288
|
+
ref: undefined !== self ? self : null,
|
|
289
289
|
props: props
|
|
290
290
|
};
|
|
291
291
|
}
|
|
292
292
|
function cloneAndReplaceKey(oldElement, newKey) {
|
|
293
|
-
return ReactElement(oldElement.type, newKey,
|
|
293
|
+
return ReactElement(oldElement.type, newKey, undefined, undefined, undefined, oldElement.props);
|
|
294
294
|
}
|
|
295
295
|
function isValidElement(object) {
|
|
296
296
|
return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
@@ -332,18 +332,18 @@ function requireReact_production() {
|
|
|
332
332
|
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
333
333
|
var type = typeof children;
|
|
334
334
|
if ("undefined" === type || "boolean" === type) children = null;
|
|
335
|
-
var invokeCallback =
|
|
336
|
-
if (null === children) invokeCallback =
|
|
335
|
+
var invokeCallback = false;
|
|
336
|
+
if (null === children) invokeCallback = true;else switch (type) {
|
|
337
337
|
case "bigint":
|
|
338
338
|
case "string":
|
|
339
339
|
case "number":
|
|
340
|
-
invokeCallback =
|
|
340
|
+
invokeCallback = true;
|
|
341
341
|
break;
|
|
342
342
|
case "object":
|
|
343
343
|
switch (children.$$typeof) {
|
|
344
344
|
case REACT_ELEMENT_TYPE:
|
|
345
345
|
case REACT_PORTAL_TYPE:
|
|
346
|
-
invokeCallback =
|
|
346
|
+
invokeCallback = true;
|
|
347
347
|
break;
|
|
348
348
|
case REACT_LAZY_TYPE:
|
|
349
349
|
return invokeCallback = children._init, mapIntoArray(invokeCallback(children._payload), array, escapedPrefix, nameSoFar, callback);
|
|
@@ -387,8 +387,8 @@ function requireReact_production() {
|
|
|
387
387
|
var reportGlobalError = "function" === typeof reportError ? reportError : function (error) {
|
|
388
388
|
if ("object" === typeof window && "function" === typeof window.ErrorEvent) {
|
|
389
389
|
var event = new window.ErrorEvent("error", {
|
|
390
|
-
bubbles:
|
|
391
|
-
cancelable:
|
|
390
|
+
bubbles: true,
|
|
391
|
+
cancelable: true,
|
|
392
392
|
message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error),
|
|
393
393
|
error: error
|
|
394
394
|
});
|
|
@@ -439,17 +439,17 @@ function requireReact_production() {
|
|
|
439
439
|
};
|
|
440
440
|
};
|
|
441
441
|
react_production.cloneElement = function (element, config, children) {
|
|
442
|
-
if (null === element ||
|
|
442
|
+
if (null === element || undefined === element) throw Error("The argument must be a React element, but you passed " + element + ".");
|
|
443
443
|
var props = assign({}, element.props),
|
|
444
444
|
key = element.key,
|
|
445
|
-
owner =
|
|
446
|
-
if (null != config) for (propName in
|
|
445
|
+
owner = undefined;
|
|
446
|
+
if (null != config) for (propName in undefined !== config.ref && (owner = undefined), undefined !== config.key && (key = "" + config.key), config) !hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && undefined === config.ref || (props[propName] = config[propName]);
|
|
447
447
|
var propName = arguments.length - 2;
|
|
448
448
|
if (1 === propName) props.children = children;else if (1 < propName) {
|
|
449
449
|
for (var childArray = Array(propName), i = 0; i < propName; i++) childArray[i] = arguments[i + 2];
|
|
450
450
|
props.children = childArray;
|
|
451
451
|
}
|
|
452
|
-
return ReactElement(element.type, key,
|
|
452
|
+
return ReactElement(element.type, key, undefined, undefined, owner, props);
|
|
453
453
|
};
|
|
454
454
|
react_production.createContext = function (defaultValue) {
|
|
455
455
|
defaultValue = {
|
|
@@ -471,14 +471,14 @@ function requireReact_production() {
|
|
|
471
471
|
var propName,
|
|
472
472
|
props = {},
|
|
473
473
|
key = null;
|
|
474
|
-
if (null != config) for (propName in
|
|
474
|
+
if (null != config) for (propName in undefined !== config.key && (key = "" + config.key), config) hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (props[propName] = config[propName]);
|
|
475
475
|
var childrenLength = arguments.length - 2;
|
|
476
476
|
if (1 === childrenLength) props.children = children;else if (1 < childrenLength) {
|
|
477
477
|
for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++) childArray[i] = arguments[i + 2];
|
|
478
478
|
props.children = childArray;
|
|
479
479
|
}
|
|
480
|
-
if (type && type.defaultProps) for (propName in childrenLength = type.defaultProps, childrenLength)
|
|
481
|
-
return ReactElement(type, key,
|
|
480
|
+
if (type && type.defaultProps) for (propName in childrenLength = type.defaultProps, childrenLength) undefined === props[propName] && (props[propName] = childrenLength[propName]);
|
|
481
|
+
return ReactElement(type, key, undefined, undefined, null, props);
|
|
482
482
|
};
|
|
483
483
|
react_production.createRef = function () {
|
|
484
484
|
return {
|
|
@@ -506,7 +506,7 @@ function requireReact_production() {
|
|
|
506
506
|
return {
|
|
507
507
|
$$typeof: REACT_MEMO_TYPE,
|
|
508
508
|
type: type,
|
|
509
|
-
compare:
|
|
509
|
+
compare: undefined === compare ? null : compare
|
|
510
510
|
};
|
|
511
511
|
};
|
|
512
512
|
react_production.startTransition = function (scope) {
|