cleek 2.4.6 → 2.4.7
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 +3 -0
- package/dist/cleek.umd.js +2 -2
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -18819,9 +18819,11 @@ var functions = {
|
|
|
18819
18819
|
},
|
|
18820
18820
|
getRoundedValue(propIsRounded, cleekOptions2) {
|
|
18821
18821
|
var _a;
|
|
18822
|
+
console.log("propIsRounded", propIsRounded);
|
|
18822
18823
|
if (typeof propIsRounded !== "undefined")
|
|
18823
18824
|
return propIsRounded;
|
|
18824
18825
|
if (typeof ((_a = cleekOptions2 == null ? void 0 : cleekOptions2.styles) == null ? void 0 : _a.rounded) !== "undefined") {
|
|
18826
|
+
console.log("cleekOptions.styles.rounded", cleekOptions2.styles.rounded);
|
|
18825
18827
|
return cleekOptions2.styles.rounded;
|
|
18826
18828
|
}
|
|
18827
18829
|
return false;
|
|
@@ -23657,6 +23659,7 @@ function getCleekOptions(userOptions) {
|
|
|
23657
23659
|
}
|
|
23658
23660
|
}
|
|
23659
23661
|
setRootColors(options.colors);
|
|
23662
|
+
console.log("finalOptions", options);
|
|
23660
23663
|
return options;
|
|
23661
23664
|
}
|
|
23662
23665
|
const install = function installCleek(app, options) {
|