@symbo.ls/scratch 2.11.236 → 2.11.237
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/cjs/index.js +2 -0
- package/dist/cjs/set.js +2 -0
- package/package.json +2 -2
- package/src/set.js +1 -0
package/dist/cjs/index.js
CHANGED
|
@@ -3387,6 +3387,8 @@ var set = (recivedConfig, options = SET_OPTIONS) => {
|
|
|
3387
3387
|
CONFIG2.useDocumentTheme = useDocumentTheme;
|
|
3388
3388
|
if (globalTheme !== void 0)
|
|
3389
3389
|
CONFIG2.globalTheme = globalTheme;
|
|
3390
|
+
if (useDefaultConfig !== void 0)
|
|
3391
|
+
CONFIG2.useDefaultConfig = useDefaultConfig;
|
|
3390
3392
|
if (CONFIG2.verbose)
|
|
3391
3393
|
console.log(CONFIG2);
|
|
3392
3394
|
if (!CONFIG2.__svg_cache)
|
package/dist/cjs/set.js
CHANGED
|
@@ -2796,6 +2796,8 @@ var set = (recivedConfig, options = SET_OPTIONS) => {
|
|
|
2796
2796
|
CONFIG2.useDocumentTheme = useDocumentTheme;
|
|
2797
2797
|
if (globalTheme !== void 0)
|
|
2798
2798
|
CONFIG2.globalTheme = globalTheme;
|
|
2799
|
+
if (useDefaultConfig !== void 0)
|
|
2800
|
+
CONFIG2.useDefaultConfig = useDefaultConfig;
|
|
2799
2801
|
if (CONFIG2.verbose)
|
|
2800
2802
|
console.log(CONFIG2);
|
|
2801
2803
|
if (!CONFIG2.__svg_cache)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@symbo.ls/scratch",
|
|
3
3
|
"description": "Φ / CSS framework and methodology.",
|
|
4
4
|
"author": "symbo.ls",
|
|
5
|
-
"version": "2.11.
|
|
5
|
+
"version": "2.11.237",
|
|
6
6
|
"files": [
|
|
7
7
|
"src",
|
|
8
8
|
"dist"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"@symbo.ls/utils": "latest",
|
|
30
30
|
"color-contrast-checker": "^1.5.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "e2d0c518a5b969d0c0924afd284b2f7f63b6a214"
|
|
33
33
|
}
|
package/src/set.js
CHANGED
|
@@ -106,6 +106,7 @@ export const set = (recivedConfig, options = SET_OPTIONS) => {
|
|
|
106
106
|
if (useIconSprite !== undefined) CONFIG.useIconSprite = useIconSprite
|
|
107
107
|
if (useDocumentTheme !== undefined) CONFIG.useDocumentTheme = useDocumentTheme
|
|
108
108
|
if (globalTheme !== undefined) CONFIG.globalTheme = globalTheme
|
|
109
|
+
if (useDefaultConfig !== undefined) CONFIG.useDefaultConfig = useDefaultConfig
|
|
109
110
|
if (CONFIG.verbose) console.log(CONFIG)
|
|
110
111
|
|
|
111
112
|
if (!CONFIG.__svg_cache) CONFIG.__svg_cache = {}
|