@vitus-labs/rocketstories 0.57.0-alpha.8 → 0.61.0
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/lib/analysis/vitus-labs-rocketstories.js.html +1 -1
- package/lib/analysis/vitus-labs-rocketstories.module.js.html +1 -1
- package/lib/vitus-labs-rocketstories.js +0 -6
- package/lib/vitus-labs-rocketstories.js.map +1 -1
- package/lib/vitus-labs-rocketstories.module.js +0 -6
- package/lib/vitus-labs-rocketstories.module.js.map +1 -1
- package/package.json +6 -6
|
@@ -360,12 +360,6 @@ const getTheme$1 = ({ rocketstate, themes, baseTheme }) => {
|
|
|
360
360
|
};
|
|
361
361
|
const getThemeByMode = (object, mode) => Object.keys(object).reduce((acc, key) => {
|
|
362
362
|
const value = object[key];
|
|
363
|
-
console.log('value', value);
|
|
364
|
-
console.log('mode', mode);
|
|
365
|
-
console.log(isModeCallback(value));
|
|
366
|
-
if (isModeCallback(value)) {
|
|
367
|
-
value(mode);
|
|
368
|
-
}
|
|
369
363
|
if (typeof value === 'object' && value !== null) {
|
|
370
364
|
acc[key] = getThemeByMode(value, mode);
|
|
371
365
|
}
|