cleek 2.4.10 → 2.4.11
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/cleek.es.js +4 -2
- package/dist/cleek.umd.js +9 -9
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -18808,16 +18808,18 @@ var functions = {
|
|
|
18808
18808
|
return classList2;
|
|
18809
18809
|
},
|
|
18810
18810
|
geRealBorderColor(props, cleekOptions2) {
|
|
18811
|
+
var _a;
|
|
18811
18812
|
if (props.borderColor)
|
|
18812
18813
|
return props.borderColor;
|
|
18813
|
-
if (cleekOptions2.styles.borderColor)
|
|
18814
|
+
if ((_a = cleekOptions2 == null ? void 0 : cleekOptions2.styles) == null ? void 0 : _a.borderColor)
|
|
18814
18815
|
return cleekOptions2.styles.borderColor;
|
|
18815
18816
|
return "";
|
|
18816
18817
|
},
|
|
18817
18818
|
geRealLayout(props, cleekOptions2) {
|
|
18819
|
+
var _a;
|
|
18818
18820
|
if (props.layout)
|
|
18819
18821
|
return props.layout;
|
|
18820
|
-
if (cleekOptions2.styles.layout)
|
|
18822
|
+
if ((_a = cleekOptions2 == null ? void 0 : cleekOptions2.styles) == null ? void 0 : _a.layout)
|
|
18821
18823
|
return cleekOptions2.styles.layout;
|
|
18822
18824
|
return "";
|
|
18823
18825
|
},
|