@contentful/experiences-visual-editor-react 1.40.3-dev-20250611T0948-7389339.0 → 1.41.0-dev-20250611T1249-85aabd5.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 +1 -2
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +1 -2
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1575,7 +1575,6 @@ const buildStyleTag = ({ styles, nodeId }) => {
|
|
|
1575
1575
|
*/
|
|
1576
1576
|
const buildCfStyles = (values) => {
|
|
1577
1577
|
const cssProperties = {
|
|
1578
|
-
boxSizing: 'border-box',
|
|
1579
1578
|
margin: values.cfMargin,
|
|
1580
1579
|
padding: values.cfPadding,
|
|
1581
1580
|
backgroundColor: values.cfBackgroundColor,
|
|
@@ -3901,7 +3900,7 @@ var VisualEditorMode;
|
|
|
3901
3900
|
VisualEditorMode["InjectScript"] = "injectScript";
|
|
3902
3901
|
})(VisualEditorMode || (VisualEditorMode = {}));
|
|
3903
3902
|
|
|
3904
|
-
var css_248z$2$1 = ".contentful-container {\n position: relative;\n display: flex;\n
|
|
3903
|
+
var css_248z$2$1 = ".contentful-container {\n position: relative;\n display: flex;\n pointer-events: all;\n}\n\n.contentful-container::-webkit-scrollbar {\n display: none; /* Safari and Chrome */\n}\n\n.cf-single-column-wrapper {\n position: relative;\n}\n\n.cf-container-wrapper {\n position: relative;\n width: 100%;\n}\n\n.contentful-container:after {\n content: '';\n display: block;\n position: absolute;\n pointer-events: none;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n overflow-x: clip;\n font-family: var(--exp-builder-font-stack-primary);\n font-size: 12px;\n color: var(--exp-builder-gray400);\n z-index: 1;\n}\n\n.contentful-section-label:after {\n content: 'Section';\n}\n\n.contentful-container-label:after {\n content: 'Container';\n}\n\n/* used by ContentfulSectionAsHyperlink.tsx */\n\n.contentful-container-link,\n.contentful-container-link:active,\n.contentful-container-link:visited,\n.contentful-container-link:hover,\n.contentful-container-link:read-write,\n.contentful-container-link:focus-visible {\n color: inherit;\n text-decoration: unset;\n outline: unset;\n}\n";
|
|
3905
3904
|
styleInject(css_248z$2$1);
|
|
3906
3905
|
|
|
3907
3906
|
const Flex = forwardRef(({ id, children, onMouseEnter, onMouseUp, onMouseLeave, onMouseDown, onClick, flex, flexBasis, flexShrink, flexDirection, gap, justifyContent, justifyItems, justifySelf, alignItems, alignSelf, alignContent, order, flexWrap, flexGrow, className, cssStyles, ...props }, ref) => {
|