@ceed/cds 0.0.91 → 0.0.92
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 +5 -5
- package/package.json +1 -1
package/framer/index.js
CHANGED
|
@@ -44559,7 +44559,7 @@ var withResponsiveMargin = (Component) => {
|
|
|
44559
44559
|
]);
|
|
44560
44560
|
const style4 = {};
|
|
44561
44561
|
const handleXsChange = () => {
|
|
44562
|
-
if (responsiveMargin == null ? void 0 : responsiveMargin.xsMixed) {
|
|
44562
|
+
if (!(responsiveMargin == null ? void 0 : responsiveMargin.xsMixed)) {
|
|
44563
44563
|
style4["margin"] = responsiveMargin == null ? void 0 : responsiveMargin.xs;
|
|
44564
44564
|
} else {
|
|
44565
44565
|
style4["marginLeft"] = responsiveMargin == null ? void 0 : responsiveMargin.xsMarginLeft;
|
|
@@ -44569,7 +44569,7 @@ var withResponsiveMargin = (Component) => {
|
|
|
44569
44569
|
}
|
|
44570
44570
|
};
|
|
44571
44571
|
const handleSmChange = () => {
|
|
44572
|
-
if (responsiveMargin == null ? void 0 : responsiveMargin.smMixed) {
|
|
44572
|
+
if (!(responsiveMargin == null ? void 0 : responsiveMargin.smMixed)) {
|
|
44573
44573
|
style4["margin"] = responsiveMargin == null ? void 0 : responsiveMargin.sm;
|
|
44574
44574
|
} else {
|
|
44575
44575
|
style4["marginLeft"] = responsiveMargin == null ? void 0 : responsiveMargin.smMarginLeft;
|
|
@@ -44579,7 +44579,7 @@ var withResponsiveMargin = (Component) => {
|
|
|
44579
44579
|
}
|
|
44580
44580
|
};
|
|
44581
44581
|
const handleMdChange = () => {
|
|
44582
|
-
if (responsiveMargin == null ? void 0 : responsiveMargin.mdMixed) {
|
|
44582
|
+
if (!(responsiveMargin == null ? void 0 : responsiveMargin.mdMixed)) {
|
|
44583
44583
|
style4["margin"] = responsiveMargin == null ? void 0 : responsiveMargin.md;
|
|
44584
44584
|
} else {
|
|
44585
44585
|
style4["marginLeft"] = responsiveMargin == null ? void 0 : responsiveMargin.mdMarginLeft;
|
|
@@ -44589,7 +44589,7 @@ var withResponsiveMargin = (Component) => {
|
|
|
44589
44589
|
}
|
|
44590
44590
|
};
|
|
44591
44591
|
const handleLgChange = () => {
|
|
44592
|
-
if (responsiveMargin == null ? void 0 : responsiveMargin.lgMixed) {
|
|
44592
|
+
if (!(responsiveMargin == null ? void 0 : responsiveMargin.lgMixed)) {
|
|
44593
44593
|
style4["margin"] = responsiveMargin == null ? void 0 : responsiveMargin.lg;
|
|
44594
44594
|
} else {
|
|
44595
44595
|
style4["marginLeft"] = responsiveMargin == null ? void 0 : responsiveMargin.lgMarginLeft;
|
|
@@ -44599,7 +44599,7 @@ var withResponsiveMargin = (Component) => {
|
|
|
44599
44599
|
}
|
|
44600
44600
|
};
|
|
44601
44601
|
const handleXlChange = () => {
|
|
44602
|
-
if (responsiveMargin == null ? void 0 : responsiveMargin.xlMixed) {
|
|
44602
|
+
if (!(responsiveMargin == null ? void 0 : responsiveMargin.xlMixed)) {
|
|
44603
44603
|
style4["margin"] = responsiveMargin == null ? void 0 : responsiveMargin.xl;
|
|
44604
44604
|
} else {
|
|
44605
44605
|
style4["marginLeft"] = responsiveMargin == null ? void 0 : responsiveMargin.xlMarginLeft;
|