x-essential-lib 0.5.16 → 0.5.17
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/index.js +2 -2
- package/dist/utils/core.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -178,7 +178,7 @@ const p = function() {
|
|
|
178
178
|
}(), rt = function() {
|
|
179
179
|
return window.permissionChecksum || (window.permissionChecksum = f("")), window.permissionChecksum;
|
|
180
180
|
}(), ct = function() {
|
|
181
|
-
return window.mainActive || (window.mainActive = f(1)), window.
|
|
181
|
+
return window.mainActive || (window.mainActive = f(1)), window.mainActive;
|
|
182
182
|
}();
|
|
183
183
|
async function ut(e) {
|
|
184
184
|
return new Promise((a) => {
|
|
@@ -772,7 +772,7 @@ export {
|
|
|
772
772
|
bt as default,
|
|
773
773
|
p as eventBus,
|
|
774
774
|
nt as locale,
|
|
775
|
-
ct as
|
|
775
|
+
ct as mainActive,
|
|
776
776
|
Y as matchRouteMeta,
|
|
777
777
|
it as messageError,
|
|
778
778
|
gt as messageInfo,
|
package/dist/utils/core.d.ts
CHANGED
|
@@ -6,4 +6,4 @@ export declare const dark: Ref<boolean | undefined>;
|
|
|
6
6
|
export declare const locale: Ref<string>;
|
|
7
7
|
export declare const permissionObjects: Ref<PermissionObjects>;
|
|
8
8
|
export declare const permissionChecksum: Ref<string>;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const mainActive: Ref<0 | 1 | 2 | 3 | 4>;
|