bt-core-app 2.0.0 → 2.0.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/bt-core-app.js +1551 -1518
- package/dist/index.d.ts +5 -0
- package/package.json +1 -4
package/dist/index.d.ts
CHANGED
|
@@ -2497,6 +2497,11 @@ export declare function useLocalDb(): LocalForage_2;
|
|
|
2497
2497
|
|
|
2498
2498
|
export declare function useMenu(): BTMenu;
|
|
2499
2499
|
|
|
2500
|
+
export declare function useMyGeoLocation(): {
|
|
2501
|
+
canGetGeoLocation: ComputedRef<boolean>;
|
|
2502
|
+
getGeoLocation: () => Promise<GeoCoordinate | undefined>;
|
|
2503
|
+
};
|
|
2504
|
+
|
|
2500
2505
|
export declare function useNavBack(): {
|
|
2501
2506
|
canNavBack: ComputedRef<boolean>;
|
|
2502
2507
|
navBack: (refresh?: boolean) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bt-core-app",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Core app tools for some basic features like navigation, authentication, server apis, and cosmetics",
|
|
5
5
|
"homepage": "https://github.com/BlitzItTech/bt-core",
|
|
6
6
|
"bugs": {
|
|
@@ -37,12 +37,9 @@
|
|
|
37
37
|
"@datasert/cronjs-matcher": "^1.4.0",
|
|
38
38
|
"@mdi/js": "^7.4.47",
|
|
39
39
|
"@vuepic/vue-datepicker": "^11.0.2",
|
|
40
|
-
"chart.js": "^4.4.6",
|
|
41
|
-
"defu": "^6.1.4",
|
|
42
40
|
"localforage": "^1.10.0",
|
|
43
41
|
"luxon": "^3.7.1",
|
|
44
42
|
"thenby": "^1.3.4",
|
|
45
|
-
"vue-chartjs": "^5.3.2",
|
|
46
43
|
"vue-draggable-resizable": "^3.0.0",
|
|
47
44
|
"vue-picture-cropper": "^0.7.0",
|
|
48
45
|
"vue-signature-pad": "^3.0.2",
|