@tak-ps/cloudtak 13.79.2 → 13.80.0
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/types/src/components/CloudTAK/util/InlineExpiration.vue.d.ts +1 -1
- package/dist/types/src/components/CloudTAK/util/InlineGroupSelect.vue.d.ts +1 -1
- package/dist/types/src/components/CloudTAK/util/InlineKeywords.vue.d.ts +1 -1
- package/dist/types/src/components/CloudTAK/util/PathBreadcrumb.vue.d.ts +2 -2
- package/dist/types/src/components/CloudTAK/util/WarnConfiguration.vue.d.ts +19 -5
- package/dist/types/src/stores/device/geolocation.d.ts +3 -0
- package/dist/types/src/stores/device.d.ts +3 -0
- package/package.json +1 -1
- package/dist/types/src/components/CloudTAK/util/SettingsCallsign.vue.d.ts +0 -28
|
@@ -46,11 +46,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
46
46
|
fillHeight: boolean;
|
|
47
47
|
editable: boolean;
|
|
48
48
|
interactive: boolean;
|
|
49
|
+
saving: boolean;
|
|
49
50
|
editTitle: string;
|
|
50
51
|
containerClass: string;
|
|
51
52
|
borderClass: string;
|
|
52
53
|
labelClass: string;
|
|
53
|
-
saving: boolean;
|
|
54
54
|
inputLabel: string;
|
|
55
55
|
emptyLabel: string;
|
|
56
56
|
emptyClass: string;
|
|
@@ -45,11 +45,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
45
45
|
fillHeight: boolean;
|
|
46
46
|
limit: number;
|
|
47
47
|
editable: boolean;
|
|
48
|
+
saving: boolean;
|
|
48
49
|
editTitle: string;
|
|
49
50
|
containerClass: string;
|
|
50
51
|
borderClass: string;
|
|
51
52
|
labelClass: string;
|
|
52
|
-
saving: boolean;
|
|
53
53
|
emptyLabel: string;
|
|
54
54
|
emptyClass: string;
|
|
55
55
|
saveLabel: string;
|
|
@@ -37,12 +37,12 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
37
37
|
shadow: boolean;
|
|
38
38
|
fillHeight: boolean;
|
|
39
39
|
editable: boolean;
|
|
40
|
+
saving: boolean;
|
|
40
41
|
tone: "muted" | "accent";
|
|
41
42
|
editTitle: string;
|
|
42
43
|
containerClass: string;
|
|
43
44
|
borderClass: string;
|
|
44
45
|
labelClass: string;
|
|
45
|
-
saving: boolean;
|
|
46
46
|
saveLabel: string;
|
|
47
47
|
savingLabel: string;
|
|
48
48
|
inputPlaceholder: string;
|
|
@@ -11,11 +11,11 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
navigate: (depth: number) => any;
|
|
13
13
|
"segment-drop": (depth: number) => any;
|
|
14
|
-
"update:collection": (value: string
|
|
14
|
+
"update:collection": (value: string) => any;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
16
|
onNavigate?: ((depth: number) => any) | undefined;
|
|
17
17
|
"onSegment-drop"?: ((depth: number) => any) | undefined;
|
|
18
|
-
"onUpdate:collection"?: ((value: string
|
|
18
|
+
"onUpdate:collection"?: ((value: string) => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
20
|
segments: string[];
|
|
21
21
|
droppable: boolean;
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
5
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
export type WarnConfigurationPage = 'details' | 'permissions';
|
|
6
3
|
declare const _default: typeof __VLS_export;
|
|
7
4
|
export default _default;
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
+
page: {
|
|
7
|
+
type: PropType<WarnConfigurationPage>;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
close: (...args: any[]) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
page: {
|
|
14
|
+
type: PropType<WarnConfigurationPage>;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{
|
|
18
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
page: WarnConfigurationPage;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -21,6 +21,7 @@ export declare class GeolocationPermission {
|
|
|
21
21
|
private nativeDelivery?;
|
|
22
22
|
private restartTimer;
|
|
23
23
|
private restartAttempts;
|
|
24
|
+
private starting;
|
|
24
25
|
private static readonly RESTART_BASE_MS;
|
|
25
26
|
private static readonly RESTART_MAX_MS;
|
|
26
27
|
private static readonly SEED_TIMEOUT_MS;
|
|
@@ -29,8 +30,10 @@ export declare class GeolocationPermission {
|
|
|
29
30
|
refreshStatus(): Promise<void>;
|
|
30
31
|
private refreshBackgroundStatus;
|
|
31
32
|
request(onGranted?: () => void): Promise<void>;
|
|
33
|
+
canStartWatch(): boolean;
|
|
32
34
|
initializeSubscription(onGranted?: () => void): Promise<void>;
|
|
33
35
|
startWatch(onLocation: (position: Position) => void, native?: NativeDeliveryOptions): Promise<void>;
|
|
36
|
+
private doStartWatch;
|
|
34
37
|
private seedImmediateFix;
|
|
35
38
|
private scheduleRestart;
|
|
36
39
|
stopWatch(): Promise<void>;
|
|
@@ -43,6 +43,9 @@ export declare const useDeviceStore: import("pinia").SetupStoreDefinition<"devic
|
|
|
43
43
|
wakeLock: import("vue").Raw<WakeLockPermission>;
|
|
44
44
|
fileSystem: import("vue").Raw<FileSystemPermission>;
|
|
45
45
|
setPermissionStatus: (type: BrowserPermissionType, state: BrowserPermissionState) => void;
|
|
46
|
+
requiredPermissions: BrowserPermissionType[];
|
|
47
|
+
isPermissionSatisfied: (type: BrowserPermissionType) => boolean;
|
|
48
|
+
hasRequiredPermissions: () => boolean;
|
|
46
49
|
refreshPermissionStatuses: () => Promise<void>;
|
|
47
50
|
initializePermissionSubscriptions: (onLocationGranted?: () => void) => Promise<void>;
|
|
48
51
|
hasOrientationSupport: () => boolean;
|
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
mode: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
forceCallsign: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
update: (...args: any[]) => void;
|
|
12
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
-
mode: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
default: string;
|
|
16
|
-
};
|
|
17
|
-
forceCallsign: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
};
|
|
21
|
-
}>> & Readonly<{
|
|
22
|
-
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
23
|
-
}>, {
|
|
24
|
-
mode: string;
|
|
25
|
-
forceCallsign: boolean;
|
|
26
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
declare const _default: typeof __VLS_export;
|
|
28
|
-
export default _default;
|