@base-web-kits/base-tools-web 1.0.2-alpha.1 → 1.0.2-alpha.2
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/base-tools-web.umd.global.js +2 -2
- package/dist/base-tools-web.umd.global.js.map +1 -1
- package/dist/config/index.d.ts +1 -1
- package/dist/config/index.d.ts.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/web/config/index.ts +1 -1
|
@@ -753,7 +753,7 @@ var baseToolsWeb = (() => {
|
|
|
753
753
|
removeCookie: () => removeCookie,
|
|
754
754
|
removeLocalStorage: () => removeLocalStorage,
|
|
755
755
|
request: () => request,
|
|
756
|
-
|
|
756
|
+
setBaseToolsConfig: () => setBaseToolsConfig,
|
|
757
757
|
setCookie: () => setCookie,
|
|
758
758
|
setLocalStorage: () => setLocalStorage,
|
|
759
759
|
unlockBodyScroll: () => unlockBodyScroll,
|
|
@@ -964,7 +964,7 @@ var baseToolsWeb = (() => {
|
|
|
964
964
|
function getAppConfig() {
|
|
965
965
|
return appConfig;
|
|
966
966
|
}
|
|
967
|
-
function
|
|
967
|
+
function setBaseToolsConfig(newConfig) {
|
|
968
968
|
Object.assign(appConfig, newConfig);
|
|
969
969
|
}
|
|
970
970
|
|