cleek 2.3.5 → 2.3.6
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 +5 -0
- package/dist/cleek.umd.js +2 -2
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -16819,11 +16819,16 @@ function setRootColors(colors) {
|
|
|
16819
16819
|
}
|
|
16820
16820
|
function getCleekOptions(userOptions) {
|
|
16821
16821
|
console.log("userOptions", userOptions);
|
|
16822
|
+
console.log("defaultCleekOptions", defaultCleekOptions);
|
|
16822
16823
|
const options = defaultCleekOptions;
|
|
16823
16824
|
for (const category in defaultCleekOptions) {
|
|
16825
|
+
console.log("category", category);
|
|
16826
|
+
console.log("userOptions[category]", userOptions[category]);
|
|
16824
16827
|
if (userOptions[category]) {
|
|
16825
16828
|
for (const key in category) {
|
|
16829
|
+
console.log("key", key);
|
|
16826
16830
|
const value = userOptions[category][key];
|
|
16831
|
+
console.log("value", value);
|
|
16827
16832
|
if (value)
|
|
16828
16833
|
options[category][key] = value;
|
|
16829
16834
|
}
|