You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The internal representation of props has been changed to record in JSX v4. It causes the props names which are the same as the keyword are not mangled. Because the mangling is working for the object.
Not mangled prop names can be a problem in case of binding the js module that has props such as open or type.
There is a way to replace the prop name in the record with @as("..."). But, JSX v4 is dropping the attributes in the process of transformation.
varc0=JsxRuntime.jsx(SignIn_Buyer$C0,{_open: "x",// supposed to be open_type: "t"// // supposed to be type});varc1=JsxRuntime.jsx(default,{_open: "x",_type: "t"});
The text was updated successfully, but these errors were encountered:
The internal representation of props has been changed to record in JSX v4. It causes the props names which are the same as the keyword are not mangled. Because the mangling is working for the object.
Not mangled prop names can be a problem in case of binding the js module that has props such as
open
ortype
.There is a way to replace the prop name in the record with
@as("...")
. But, JSX v4 is dropping the attributes in the process of transformation.transformed to:
The text was updated successfully, but these errors were encountered: