design-zystem 1.0.218 → 1.0.219
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 +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3797,9 +3797,9 @@ var Tabs = (_a) => {
|
|
|
3797
3797
|
var import_styled_components37 = __toESM(require("styled-components"));
|
|
3798
3798
|
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
3799
3799
|
var StyledImage = import_styled_components37.default.img`
|
|
3800
|
-
object-fit: ${(props) => props
|
|
3801
|
-
align-self: ${(props) => props
|
|
3802
|
-
border-radius: ${(props) => props
|
|
3800
|
+
object-fit: ${(props) => props.$objectFit || "cover"};
|
|
3801
|
+
align-self: ${(props) => props.$alignSelf || "center"};
|
|
3802
|
+
border-radius: ${(props) => props.$borderRadius || "5px"};
|
|
3803
3803
|
width: ${(props) => props.width || "100%"};
|
|
3804
3804
|
height: ${(props) => props.height || "auto"};
|
|
3805
3805
|
display: block;
|
|
@@ -3831,9 +3831,9 @@ var Image2 = (_a) => {
|
|
|
3831
3831
|
alt,
|
|
3832
3832
|
width,
|
|
3833
3833
|
height,
|
|
3834
|
-
borderRadius,
|
|
3835
|
-
objectFit,
|
|
3836
|
-
alignSelf,
|
|
3834
|
+
$borderRadius: borderRadius,
|
|
3835
|
+
$objectFit: objectFit,
|
|
3836
|
+
$alignSelf: alignSelf,
|
|
3837
3837
|
style: style2
|
|
3838
3838
|
}, rest)
|
|
3839
3839
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -3720,9 +3720,9 @@ var Tabs = (_a) => {
|
|
|
3720
3720
|
import styled37 from "styled-components";
|
|
3721
3721
|
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
3722
3722
|
var StyledImage = styled37.img`
|
|
3723
|
-
object-fit: ${(props) => props
|
|
3724
|
-
align-self: ${(props) => props
|
|
3725
|
-
border-radius: ${(props) => props
|
|
3723
|
+
object-fit: ${(props) => props.$objectFit || "cover"};
|
|
3724
|
+
align-self: ${(props) => props.$alignSelf || "center"};
|
|
3725
|
+
border-radius: ${(props) => props.$borderRadius || "5px"};
|
|
3726
3726
|
width: ${(props) => props.width || "100%"};
|
|
3727
3727
|
height: ${(props) => props.height || "auto"};
|
|
3728
3728
|
display: block;
|
|
@@ -3754,9 +3754,9 @@ var Image2 = (_a) => {
|
|
|
3754
3754
|
alt,
|
|
3755
3755
|
width,
|
|
3756
3756
|
height,
|
|
3757
|
-
borderRadius,
|
|
3758
|
-
objectFit,
|
|
3759
|
-
alignSelf,
|
|
3757
|
+
$borderRadius: borderRadius,
|
|
3758
|
+
$objectFit: objectFit,
|
|
3759
|
+
$alignSelf: alignSelf,
|
|
3760
3760
|
style: style2
|
|
3761
3761
|
}, rest)
|
|
3762
3762
|
);
|