react-markup 0.0.0-experimental-09111202-20241011 → 0.0.0-experimental-6cf85185-20241014
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.
|
@@ -2242,7 +2242,14 @@
|
|
|
2242
2242
|
switch (value.$$typeof) {
|
|
2243
2243
|
case REACT_ELEMENT_TYPE:
|
|
2244
2244
|
null != value._owner && outlineComponentInfo(request, value._owner);
|
|
2245
|
+
"object" === typeof value.type &&
|
|
2246
|
+
null !== value.type &&
|
|
2247
|
+
doNotLimit.add(value.type);
|
|
2248
|
+
"object" === typeof value.key &&
|
|
2249
|
+
null !== value.key &&
|
|
2250
|
+
doNotLimit.add(value.key);
|
|
2245
2251
|
doNotLimit.add(value.props);
|
|
2252
|
+
null !== value._owner && doNotLimit.add(value._owner);
|
|
2246
2253
|
counter = null;
|
|
2247
2254
|
if (null != value._debugStack)
|
|
2248
2255
|
for (
|
|
@@ -3989,7 +3996,7 @@
|
|
|
3989
3996
|
return (
|
|
3990
3997
|
Object.defineProperty(parentObject, key, {
|
|
3991
3998
|
get: function () {
|
|
3992
|
-
|
|
3999
|
+
return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.";
|
|
3993
4000
|
},
|
|
3994
4001
|
enumerable: !0,
|
|
3995
4002
|
configurable: !1
|
|
@@ -13135,5 +13142,5 @@
|
|
|
13135
13142
|
});
|
|
13136
13143
|
});
|
|
13137
13144
|
};
|
|
13138
|
-
exports.version = "19.0.0-experimental-
|
|
13145
|
+
exports.version = "19.0.0-experimental-6cf85185-20241014";
|
|
13139
13146
|
})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-markup",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-6cf85185-20241014",
|
|
4
4
|
"description": "React package generating embedded markup such as e-mails with support for Server Components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"react": "0.0.0-experimental-
|
|
20
|
+
"react": "0.0.0-experimental-6cf85185-20241014"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|