@tak-ps/cloudtak 12.125.0 → 12.126.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/Menu/Basemaps/TypeSelectorBase.vue.d.ts +2 -2
- package/dist/types/src/components/CloudTAK/util/StandardItemBasemap.vue.d.ts +2 -2
- package/dist/types/src/components/CloudTAK/util/TagEntry.vue.d.ts +2 -2
- package/dist/types/src/stores/map.d.ts +4 -0
- package/package.json +1 -1
|
@@ -12,9 +12,9 @@ type __VLS_ModelProps = {
|
|
|
12
12
|
'editing': EditingBasemap;
|
|
13
13
|
};
|
|
14
14
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
15
|
-
declare var
|
|
15
|
+
declare var __VLS_77: {};
|
|
16
16
|
type __VLS_Slots = {} & {
|
|
17
|
-
advanced?: (props: typeof
|
|
17
|
+
advanced?: (props: typeof __VLS_77) => any;
|
|
18
18
|
};
|
|
19
19
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
20
|
"change-type": () => any;
|
|
@@ -2,9 +2,9 @@ import type { Basemap } from '../../../types.ts';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
basemap: Basemap;
|
|
4
4
|
};
|
|
5
|
-
declare var
|
|
5
|
+
declare var __VLS_42: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
|
-
actions?: (props: typeof
|
|
7
|
+
actions?: (props: typeof __VLS_42) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -11,12 +11,12 @@ interface Props {
|
|
|
11
11
|
allowDuplicates?: boolean;
|
|
12
12
|
addTagOnBlur?: boolean;
|
|
13
13
|
}
|
|
14
|
-
declare var
|
|
14
|
+
declare var __VLS_7: {
|
|
15
15
|
name: string;
|
|
16
16
|
index: number;
|
|
17
17
|
};
|
|
18
18
|
type __VLS_Slots = {} & {
|
|
19
|
-
item?: (props: typeof
|
|
19
|
+
item?: (props: typeof __VLS_7) => any;
|
|
20
20
|
};
|
|
21
21
|
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
22
|
"update:modelValue": (value: string[]) => any;
|
|
@@ -37,6 +37,10 @@ export declare const useMapStore: import("pinia").StoreDefinition<"cloudtak", {
|
|
|
37
37
|
zoom: string;
|
|
38
38
|
location: LocationState;
|
|
39
39
|
locationAccuracy: number | undefined;
|
|
40
|
+
gpsCoordinates: {
|
|
41
|
+
lat: number;
|
|
42
|
+
lng: number;
|
|
43
|
+
} | null;
|
|
40
44
|
distanceUnit: string;
|
|
41
45
|
coordFormat: string;
|
|
42
46
|
defaultPointType: string;
|