@ceed/cds 0.0.86 → 0.0.87
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/framer/index.js +4 -4
- package/package.json +1 -1
package/framer/index.js
CHANGED
|
@@ -44514,19 +44514,19 @@ var ResponsiveEmitter = (props) => {
|
|
|
44514
44514
|
const { children, onSmChange, onMdChange, onLgChange, onXlChange } = props;
|
|
44515
44515
|
const isSm = useResponsive(
|
|
44516
44516
|
"sm",
|
|
44517
|
-
document.querySelector("#canvas-container .groundNodeWrapper") || document.body
|
|
44517
|
+
document.querySelector("#canvas-container .groundNodeWrapper > div[id]") || document.body
|
|
44518
44518
|
);
|
|
44519
44519
|
const isMd = useResponsive(
|
|
44520
44520
|
"md",
|
|
44521
|
-
document.querySelector("#canvas-container .groundNodeWrapper") || document.body
|
|
44521
|
+
document.querySelector("#canvas-container .groundNodeWrapper > div[id]") || document.body
|
|
44522
44522
|
);
|
|
44523
44523
|
const isLg = useResponsive(
|
|
44524
44524
|
"lg",
|
|
44525
|
-
document.querySelector("#canvas-container .groundNodeWrapper") || document.body
|
|
44525
|
+
document.querySelector("#canvas-container .groundNodeWrapper > div[id]") || document.body
|
|
44526
44526
|
);
|
|
44527
44527
|
const isXl = useResponsive(
|
|
44528
44528
|
"xl",
|
|
44529
|
-
document.querySelector("#canvas-container .groundNodeWrapper") || document.body
|
|
44529
|
+
document.querySelector("#canvas-container .groundNodeWrapper > div[id]") || document.body
|
|
44530
44530
|
);
|
|
44531
44531
|
useEffect37(() => {
|
|
44532
44532
|
if (isXl && onXlChange) {
|