@tak-ps/cloudtak 12.131.0 → 12.133.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/base/subscription.d.ts +2 -0
- package/dist/types/src/components/CloudTAK/util/InlineExpiration.vue.d.ts +64 -0
- package/dist/types/src/components/CloudTAK/util/InlineGroupSelect.vue.d.ts +63 -0
- package/dist/types/src/components/CloudTAK/util/InlineKeywords.vue.d.ts +51 -0
- package/package.json +2 -2
- package/dist/types/src/components/CloudTAK/util/SingleContainer.vue.d.ts +0 -29
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value?: string | null;
|
|
3
|
+
modelValue: string;
|
|
4
|
+
editing: boolean;
|
|
5
|
+
editable?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
editTitle?: string;
|
|
8
|
+
containerClass?: string;
|
|
9
|
+
borderClass?: string;
|
|
10
|
+
labelClass?: string;
|
|
11
|
+
background?: string;
|
|
12
|
+
shadow?: boolean;
|
|
13
|
+
fillHeight?: boolean;
|
|
14
|
+
gap?: string;
|
|
15
|
+
saving?: boolean;
|
|
16
|
+
inputLabel?: string;
|
|
17
|
+
emptyLabel?: string;
|
|
18
|
+
emptyClass?: string;
|
|
19
|
+
displayClass?: string;
|
|
20
|
+
interactive?: boolean;
|
|
21
|
+
showClear?: boolean;
|
|
22
|
+
clearLabel?: string;
|
|
23
|
+
saveLabel?: string;
|
|
24
|
+
savingLabel?: string;
|
|
25
|
+
};
|
|
26
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (value: string) => any;
|
|
28
|
+
clear: () => any;
|
|
29
|
+
edit: () => any;
|
|
30
|
+
save: (value: string) => any;
|
|
31
|
+
cancel: () => any;
|
|
32
|
+
displayClick: () => any;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
35
|
+
onClear?: (() => any) | undefined;
|
|
36
|
+
onEdit?: (() => any) | undefined;
|
|
37
|
+
onSave?: ((value: string) => any) | undefined;
|
|
38
|
+
onCancel?: (() => any) | undefined;
|
|
39
|
+
onDisplayClick?: (() => any) | undefined;
|
|
40
|
+
}>, {
|
|
41
|
+
label: string;
|
|
42
|
+
value: string | null;
|
|
43
|
+
gap: string;
|
|
44
|
+
background: string;
|
|
45
|
+
shadow: boolean;
|
|
46
|
+
fillHeight: boolean;
|
|
47
|
+
interactive: boolean;
|
|
48
|
+
editable: boolean;
|
|
49
|
+
editTitle: string;
|
|
50
|
+
containerClass: string;
|
|
51
|
+
borderClass: string;
|
|
52
|
+
labelClass: string;
|
|
53
|
+
saving: boolean;
|
|
54
|
+
inputLabel: string;
|
|
55
|
+
emptyLabel: string;
|
|
56
|
+
emptyClass: string;
|
|
57
|
+
displayClass: string;
|
|
58
|
+
showClear: boolean;
|
|
59
|
+
clearLabel: string;
|
|
60
|
+
saveLabel: string;
|
|
61
|
+
savingLabel: string;
|
|
62
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
63
|
+
declare const _default: typeof __VLS_export;
|
|
64
|
+
export default _default;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value: string[];
|
|
3
|
+
modelValue: string[];
|
|
4
|
+
editing: boolean;
|
|
5
|
+
editable?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
editTitle?: string;
|
|
8
|
+
containerClass?: string;
|
|
9
|
+
borderClass?: string;
|
|
10
|
+
labelClass?: string;
|
|
11
|
+
background?: string;
|
|
12
|
+
shadow?: boolean;
|
|
13
|
+
fillHeight?: boolean;
|
|
14
|
+
gap?: string;
|
|
15
|
+
active?: boolean;
|
|
16
|
+
direction?: string;
|
|
17
|
+
limit?: number;
|
|
18
|
+
saving?: boolean;
|
|
19
|
+
saveLabel?: string;
|
|
20
|
+
savingLabel?: string;
|
|
21
|
+
emptyLabel?: string;
|
|
22
|
+
emptyClass?: string;
|
|
23
|
+
badgeClass?: string;
|
|
24
|
+
badgeBackgroundColor?: string;
|
|
25
|
+
badgeBorderColor?: string;
|
|
26
|
+
badgeTextColor?: string;
|
|
27
|
+
};
|
|
28
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
|
+
"update:modelValue": (value: string[]) => any;
|
|
30
|
+
edit: () => any;
|
|
31
|
+
save: (value: string[]) => any;
|
|
32
|
+
cancel: () => any;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
35
|
+
onEdit?: (() => any) | undefined;
|
|
36
|
+
onSave?: ((value: string[]) => any) | undefined;
|
|
37
|
+
onCancel?: (() => any) | undefined;
|
|
38
|
+
}>, {
|
|
39
|
+
label: string;
|
|
40
|
+
direction: string;
|
|
41
|
+
active: boolean;
|
|
42
|
+
gap: string;
|
|
43
|
+
background: string;
|
|
44
|
+
shadow: boolean;
|
|
45
|
+
fillHeight: boolean;
|
|
46
|
+
limit: number;
|
|
47
|
+
editable: boolean;
|
|
48
|
+
editTitle: string;
|
|
49
|
+
containerClass: string;
|
|
50
|
+
borderClass: string;
|
|
51
|
+
labelClass: string;
|
|
52
|
+
saving: boolean;
|
|
53
|
+
emptyLabel: string;
|
|
54
|
+
emptyClass: string;
|
|
55
|
+
saveLabel: string;
|
|
56
|
+
savingLabel: string;
|
|
57
|
+
badgeClass: string;
|
|
58
|
+
badgeBackgroundColor: string;
|
|
59
|
+
badgeBorderColor: string;
|
|
60
|
+
badgeTextColor: string;
|
|
61
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
62
|
+
declare const _default: typeof __VLS_export;
|
|
63
|
+
export default _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value: string[];
|
|
3
|
+
modelValue: string[];
|
|
4
|
+
editing: boolean;
|
|
5
|
+
editable?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
editTitle?: string;
|
|
8
|
+
containerClass?: string;
|
|
9
|
+
borderClass?: string;
|
|
10
|
+
labelClass?: string;
|
|
11
|
+
background?: string;
|
|
12
|
+
shadow?: boolean;
|
|
13
|
+
fillHeight?: boolean;
|
|
14
|
+
gap?: string;
|
|
15
|
+
saving?: boolean;
|
|
16
|
+
placeholder?: string;
|
|
17
|
+
inputPlaceholder?: string;
|
|
18
|
+
tone?: 'muted' | 'accent';
|
|
19
|
+
saveLabel?: string;
|
|
20
|
+
savingLabel?: string;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
"update:modelValue": (value: string[]) => any;
|
|
24
|
+
edit: () => any;
|
|
25
|
+
save: (value: string[]) => any;
|
|
26
|
+
cancel: () => any;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
29
|
+
onEdit?: (() => any) | undefined;
|
|
30
|
+
onSave?: ((value: string[]) => any) | undefined;
|
|
31
|
+
onCancel?: (() => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
label: string;
|
|
34
|
+
placeholder: string;
|
|
35
|
+
gap: string;
|
|
36
|
+
background: string;
|
|
37
|
+
shadow: boolean;
|
|
38
|
+
fillHeight: boolean;
|
|
39
|
+
tone: "muted" | "accent";
|
|
40
|
+
editable: boolean;
|
|
41
|
+
editTitle: string;
|
|
42
|
+
containerClass: string;
|
|
43
|
+
borderClass: string;
|
|
44
|
+
labelClass: string;
|
|
45
|
+
saving: boolean;
|
|
46
|
+
saveLabel: string;
|
|
47
|
+
savingLabel: string;
|
|
48
|
+
inputPlaceholder: string;
|
|
49
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
50
|
+
declare const _default: typeof __VLS_export;
|
|
51
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/cloudtak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.
|
|
4
|
+
"version": "12.133.0",
|
|
5
5
|
"types": "dist/types/plugin.d.ts",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/types"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@tabler/icons-vue": "^3.0.0",
|
|
37
37
|
"@tak-ps/node-cot": "^14.20.0",
|
|
38
38
|
"@tak-ps/node-p12": "^1.0.3",
|
|
39
|
-
"@tak-ps/vue-tabler": "^4.
|
|
39
|
+
"@tak-ps/vue-tabler": "^4.20.0",
|
|
40
40
|
"@turf/area": "^7.2.0",
|
|
41
41
|
"@turf/bbox": "^7.1.0",
|
|
42
42
|
"@turf/boolean-point-in-polygon": "^7.3.1",
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
label: string;
|
|
3
|
-
editable?: boolean;
|
|
4
|
-
editing?: boolean;
|
|
5
|
-
editAriaLabel?: string;
|
|
6
|
-
};
|
|
7
|
-
declare var __VLS_14: {}, __VLS_16: {};
|
|
8
|
-
type __VLS_Slots = {} & {
|
|
9
|
-
editor?: (props: typeof __VLS_14) => any;
|
|
10
|
-
} & {
|
|
11
|
-
default?: (props: typeof __VLS_16) => any;
|
|
12
|
-
};
|
|
13
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
edit: () => any;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
-
onEdit?: (() => any) | undefined;
|
|
17
|
-
}>, {
|
|
18
|
-
editing: boolean;
|
|
19
|
-
editable: boolean;
|
|
20
|
-
editAriaLabel: string;
|
|
21
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
|
-
declare const _default: typeof __VLS_export;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|