@biela.dev/core 1.7.7 → 1.7.8
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.cjs +6 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -21
- package/dist/index.js.map +1 -1
- package/dist/lite.cjs +6 -21
- package/dist/lite.cjs.map +1 -1
- package/dist/lite.js +6 -21
- package/dist/lite.js.map +1 -1
- package/package.json +1 -1
package/dist/lite.js
CHANGED
|
@@ -791,11 +791,10 @@ function DeviceFrame({
|
|
|
791
791
|
children: /* @__PURE__ */ jsx(DeviceErrorBoundary, { children })
|
|
792
792
|
}
|
|
793
793
|
),
|
|
794
|
-
DeviceSVGComponent && /* @__PURE__ */
|
|
795
|
-
|
|
794
|
+
DeviceSVGComponent && /* @__PURE__ */ jsx("div", { ref: frameOverlayRef, children: /* @__PURE__ */ jsx(
|
|
795
|
+
DeviceSVGComponent,
|
|
796
796
|
{
|
|
797
|
-
|
|
798
|
-
className: "bielaframe-svg-overlay",
|
|
797
|
+
colorScheme,
|
|
799
798
|
style: {
|
|
800
799
|
position: "absolute",
|
|
801
800
|
top: 0,
|
|
@@ -803,24 +802,10 @@ function DeviceFrame({
|
|
|
803
802
|
width: frameTotalW,
|
|
804
803
|
height: frameTotalH,
|
|
805
804
|
pointerEvents: "none",
|
|
806
|
-
zIndex: 10
|
|
807
|
-
|
|
808
|
-
},
|
|
809
|
-
children: [
|
|
810
|
-
/* @__PURE__ */ jsx("style", { dangerouslySetInnerHTML: { __html: `.bielaframe-svg-overlay svg { width: 100% !important; height: 100% !important; }` } }),
|
|
811
|
-
/* @__PURE__ */ jsx(
|
|
812
|
-
DeviceSVGComponent,
|
|
813
|
-
{
|
|
814
|
-
colorScheme,
|
|
815
|
-
style: {
|
|
816
|
-
width: "100%",
|
|
817
|
-
height: "100%"
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
)
|
|
821
|
-
]
|
|
805
|
+
zIndex: 10
|
|
806
|
+
}
|
|
822
807
|
}
|
|
823
|
-
),
|
|
808
|
+
) }),
|
|
824
809
|
showSafeAreaOverlay && /* @__PURE__ */ jsx(
|
|
825
810
|
"div",
|
|
826
811
|
{
|