|
@@ -10,7 +10,7 @@ export function createCompStyle(
|
|
|
layout: Layout,
|
|
|
comp: DesignComp
|
|
|
) {
|
|
|
- const { designToNaturalSize, pxToDesignSize } = module.helper;
|
|
|
+ const { designToNaturalSize, pxToDesignSize , designSizeToPx} = module.helper;
|
|
|
const style: any = {};
|
|
|
const transform: any = {};
|
|
|
|
|
@@ -36,8 +36,12 @@ export function createCompStyle(
|
|
|
style["border-radius"] = layout.border.radius / 2 + "%";
|
|
|
style["overflow"] = "hidden";
|
|
|
}
|
|
|
+ if (layout.border.radius2 !== undefined) {
|
|
|
+ style["border-radius"] = designSizeToPx(Math.min(layout.size[0], layout.size[1])) * layout.border.radius2 / 100.0 + "px";
|
|
|
+ style["overflow"] = "hidden";
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (layout.radius !== undefined) {
|
|
|
style["border-radius"] = layout.radius / 2 + "%";
|
|
|
style["overflow"] = "hidden";
|