@contentful/experiences-visual-editor-react 3.5.1-dev-20250903T0815-980153f.0 → 3.5.1-dev-20250903T1122-7dbe32b.0
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/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +3 -2
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/renderApp.js
CHANGED
|
@@ -50346,9 +50346,10 @@ const useComponentProps = ({ node, entityStore, areEntitiesFetched, resolveDesig
|
|
|
50346
50346
|
className: props.cfSsrClassName ?? cfCsrClassName,
|
|
50347
50347
|
};
|
|
50348
50348
|
return {
|
|
50349
|
-
...sharedProps,
|
|
50350
|
-
...editorProps,
|
|
50351
50349
|
...sanitizeNodeProps(props),
|
|
50350
|
+
// Add those at last to not let them get overwritten by custom properties
|
|
50351
|
+
...editorProps,
|
|
50352
|
+
...sharedProps,
|
|
50352
50353
|
};
|
|
50353
50354
|
}, [cfCsrClassName, editorProps, node, props]);
|
|
50354
50355
|
return { componentProps };
|