bt-core-app 1.4.201 → 1.4.203
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/bt-core-app.js +15 -15
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -29924,30 +29924,30 @@ function gy(e, t) {
|
|
|
29924
29924
|
};
|
|
29925
29925
|
}
|
|
29926
29926
|
function yD(e) {
|
|
29927
|
-
const t = Y([]);
|
|
29928
|
-
function
|
|
29929
|
-
t.value.every((
|
|
29927
|
+
const t = Y([]), n = Y(!1);
|
|
29928
|
+
function a() {
|
|
29929
|
+
t.value.every((l) => l.loaded) && e.onAllLoaded();
|
|
29930
29930
|
}
|
|
29931
|
-
function
|
|
29932
|
-
const
|
|
29933
|
-
nav:
|
|
29931
|
+
function r(l) {
|
|
29932
|
+
const i = {
|
|
29933
|
+
nav: l.nav ?? l.bladeName ?? "",
|
|
29934
29934
|
loaded: !1
|
|
29935
29935
|
};
|
|
29936
|
-
if (t.value.push(
|
|
29937
|
-
|
|
29938
|
-
|
|
29936
|
+
if (t.value.push(i), n.value = !0, l.onFinished == null)
|
|
29937
|
+
l.onFinished = () => {
|
|
29938
|
+
i.loaded = !0, a();
|
|
29939
29939
|
};
|
|
29940
29940
|
else {
|
|
29941
|
-
const
|
|
29942
|
-
|
|
29943
|
-
|
|
29941
|
+
const s = l.onFinished;
|
|
29942
|
+
l.onFinished = () => {
|
|
29943
|
+
i.loaded = !0, a(), s();
|
|
29944
29944
|
};
|
|
29945
29945
|
}
|
|
29946
|
-
return
|
|
29946
|
+
return l;
|
|
29947
29947
|
}
|
|
29948
29948
|
return {
|
|
29949
|
-
loading:
|
|
29950
|
-
registerList:
|
|
29949
|
+
loading: n,
|
|
29950
|
+
registerList: r
|
|
29951
29951
|
};
|
|
29952
29952
|
}
|
|
29953
29953
|
let Yr;
|
package/dist/index.d.ts
CHANGED
|
@@ -1429,7 +1429,7 @@ declare interface UseListOptions {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
|
|
1431
1431
|
export declare function useLists(options: UseListsOptions): {
|
|
1432
|
-
loading:
|
|
1432
|
+
loading: Ref<boolean>;
|
|
1433
1433
|
registerList: (listOptions: ListProps) => ListProps;
|
|
1434
1434
|
};
|
|
1435
1435
|
|
package/package.json
CHANGED