@tak-ps/cloudtak 12.94.0 → 12.102.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.
Files changed (185) hide show
  1. package/dist/types/plugin.d.ts +156 -0
  2. package/dist/types/src/base/chatroom-chats.d.ts +19 -0
  3. package/dist/types/src/base/chatroom.d.ts +49 -0
  4. package/dist/types/src/base/config.d.ts +17 -0
  5. package/dist/types/src/base/contact.d.ts +14 -0
  6. package/dist/types/src/base/cot.d.ts +95 -0
  7. package/dist/types/src/base/database.d.ts +192 -0
  8. package/dist/types/src/base/events.d.ts +32 -0
  9. package/dist/types/src/base/filter.d.ts +41 -0
  10. package/dist/types/src/base/group.d.ts +27 -0
  11. package/dist/types/src/base/handler.d.ts +9 -0
  12. package/dist/types/src/base/icon.d.ts +4 -0
  13. package/dist/types/src/base/mission-template-logs.d.ts +9 -0
  14. package/dist/types/src/base/mission-template.d.ts +20 -0
  15. package/dist/types/src/base/notification.d.ts +37 -0
  16. package/dist/types/src/base/overlay.d.ts +94 -0
  17. package/dist/types/src/base/profile.d.ts +20 -0
  18. package/dist/types/src/base/server.d.ts +9 -0
  19. package/dist/types/src/base/subscription-changes.d.ts +18 -0
  20. package/dist/types/src/base/subscription-chat.d.ts +23 -0
  21. package/dist/types/src/base/subscription-contents.d.ts +27 -0
  22. package/dist/types/src/base/subscription-feature.d.ts +49 -0
  23. package/dist/types/src/base/subscription-log.d.ts +34 -0
  24. package/dist/types/src/base/subscription.d.ts +128 -0
  25. package/dist/types/src/base/utils/styles.d.ts +11 -0
  26. package/dist/types/src/base/validators.d.ts +9 -0
  27. package/dist/types/src/components/CloudTAK/ActiveMission.vue.d.ts +3 -0
  28. package/dist/types/src/components/CloudTAK/CoTView.vue.d.ts +3 -0
  29. package/dist/types/src/components/CloudTAK/DrawTools.vue.d.ts +3 -0
  30. package/dist/types/src/components/CloudTAK/GenericBottomPane.vue.d.ts +13 -0
  31. package/dist/types/src/components/CloudTAK/Inputs/BufferInput.vue.d.ts +10 -0
  32. package/dist/types/src/components/CloudTAK/Inputs/CoordInput.vue.d.ts +7 -0
  33. package/dist/types/src/components/CloudTAK/Inputs/GeoJSONInput.vue.d.ts +24 -0
  34. package/dist/types/src/components/CloudTAK/Inputs/RangeInput.vue.d.ts +7 -0
  35. package/dist/types/src/components/CloudTAK/Inputs/RangeRingsInput.vue.d.ts +7 -0
  36. package/dist/types/src/components/CloudTAK/MainMenu.vue.d.ts +9 -0
  37. package/dist/types/src/components/CloudTAK/MainMenuContents.vue.d.ts +16 -0
  38. package/dist/types/src/components/CloudTAK/Map.vue.d.ts +8 -0
  39. package/dist/types/src/components/CloudTAK/MapLoading.vue.d.ts +3 -0
  40. package/dist/types/src/components/CloudTAK/Menu/Basemaps/EditModal.vue.d.ts +13 -0
  41. package/dist/types/src/components/CloudTAK/Menu/Debugger.vue.d.ts +3 -0
  42. package/dist/types/src/components/CloudTAK/Menu/Iconset/EditModal.vue.d.ts +7 -0
  43. package/dist/types/src/components/CloudTAK/Menu/MenuBasemaps.vue.d.ts +3 -0
  44. package/dist/types/src/components/CloudTAK/Menu/MenuChannels.vue.d.ts +3 -0
  45. package/dist/types/src/components/CloudTAK/Menu/MenuChat.vue.d.ts +3 -0
  46. package/dist/types/src/components/CloudTAK/Menu/MenuChats.vue.d.ts +3 -0
  47. package/dist/types/src/components/CloudTAK/Menu/MenuConnections.vue.d.ts +3 -0
  48. package/dist/types/src/components/CloudTAK/Menu/MenuContacts.vue.d.ts +3 -0
  49. package/dist/types/src/components/CloudTAK/Menu/MenuFeatView.vue.d.ts +8 -0
  50. package/dist/types/src/components/CloudTAK/Menu/MenuFeatures.vue.d.ts +3 -0
  51. package/dist/types/src/components/CloudTAK/Menu/MenuFeaturesDeleted.vue.d.ts +3 -0
  52. package/dist/types/src/components/CloudTAK/Menu/MenuFiles.vue.d.ts +3 -0
  53. package/dist/types/src/components/CloudTAK/Menu/MenuHistory.vue.d.ts +3 -0
  54. package/dist/types/src/components/CloudTAK/Menu/MenuIcon.vue.d.ts +3 -0
  55. package/dist/types/src/components/CloudTAK/Menu/MenuIconset.vue.d.ts +3 -0
  56. package/dist/types/src/components/CloudTAK/Menu/MenuIconsets.vue.d.ts +3 -0
  57. package/dist/types/src/components/CloudTAK/Menu/MenuImport.vue.d.ts +3 -0
  58. package/dist/types/src/components/CloudTAK/Menu/MenuImports.vue.d.ts +3 -0
  59. package/dist/types/src/components/CloudTAK/Menu/MenuItemCard.vue.d.ts +103 -0
  60. package/dist/types/src/components/CloudTAK/Menu/MenuMission.vue.d.ts +3 -0
  61. package/dist/types/src/components/CloudTAK/Menu/MenuMissions.vue.d.ts +3 -0
  62. package/dist/types/src/components/CloudTAK/Menu/MenuOverlayExplorer.vue.d.ts +3 -0
  63. package/dist/types/src/components/CloudTAK/Menu/MenuOverlays.vue.d.ts +3 -0
  64. package/dist/types/src/components/CloudTAK/Menu/MenuPackage.vue.d.ts +3 -0
  65. package/dist/types/src/components/CloudTAK/Menu/MenuPackages.vue.d.ts +3 -0
  66. package/dist/types/src/components/CloudTAK/Menu/MenuRoutes.vue.d.ts +3 -0
  67. package/dist/types/src/components/CloudTAK/Menu/MenuRoutesNew.vue.d.ts +3 -0
  68. package/dist/types/src/components/CloudTAK/Menu/MenuSettings.vue.d.ts +3 -0
  69. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsCallsign.vue.d.ts +3 -0
  70. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsDisplay.vue.d.ts +3 -0
  71. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsTokens.vue.d.ts +3 -0
  72. package/dist/types/src/components/CloudTAK/Menu/MenuVideos.vue.d.ts +3 -0
  73. package/dist/types/src/components/CloudTAK/Menu/MenuVideosRemote.vue.d.ts +3 -0
  74. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionChanges.vue.d.ts +7 -0
  75. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionChats.vue.d.ts +7 -0
  76. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionContents.vue.d.ts +7 -0
  77. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionCreate.vue.d.ts +7 -0
  78. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionInfo.vue.d.ts +11 -0
  79. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerCreate.vue.d.ts +13 -0
  80. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerEdit.vue.d.ts +15 -0
  81. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerTree.vue.d.ts +15 -0
  82. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayers.vue.d.ts +10 -0
  83. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLog.vue.d.ts +9 -0
  84. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLogs.vue.d.ts +7 -0
  85. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionUsers.vue.d.ts +7 -0
  86. package/dist/types/src/components/CloudTAK/Menu/Mission/PendingInvites.vue.d.ts +11 -0
  87. package/dist/types/src/components/CloudTAK/Menu/Overlays/DeleteModal.vue.d.ts +39 -0
  88. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeCots.vue.d.ts +7 -0
  89. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeMission.vue.d.ts +7 -0
  90. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeVector.vue.d.ts +13 -0
  91. package/dist/types/src/components/CloudTAK/Menu/Settings/TokenModal.vue.d.ts +13 -0
  92. package/dist/types/src/components/CloudTAK/Menu/Videos/VideoLeaseModal.vue.d.ts +16 -0
  93. package/dist/types/src/components/CloudTAK/Menu/Videos/VideosRemoteFeed.vue.d.ts +13 -0
  94. package/dist/types/src/components/CloudTAK/Notifications.vue.d.ts +3 -0
  95. package/dist/types/src/components/CloudTAK/Query/Magnetic.vue.d.ts +7 -0
  96. package/dist/types/src/components/CloudTAK/Query/Reverse.vue.d.ts +8 -0
  97. package/dist/types/src/components/CloudTAK/Query/Sun.vue.d.ts +7 -0
  98. package/dist/types/src/components/CloudTAK/Query/Weather.vue.d.ts +7 -0
  99. package/dist/types/src/components/CloudTAK/QueryView.vue.d.ts +3 -0
  100. package/dist/types/src/components/CloudTAK/RadialMenu/RadialMenu.vue.d.ts +22 -0
  101. package/dist/types/src/components/CloudTAK/util/Breadcrumb.vue.d.ts +10 -0
  102. package/dist/types/src/components/CloudTAK/util/ChannelInfo.vue.d.ts +15 -0
  103. package/dist/types/src/components/CloudTAK/util/Contact.vue.d.ts +38 -0
  104. package/dist/types/src/components/CloudTAK/util/ContactPuck.vue.d.ts +7 -0
  105. package/dist/types/src/components/CloudTAK/util/Coordinate.vue.d.ts +67 -0
  106. package/dist/types/src/components/CloudTAK/util/CoordinateType.vue.d.ts +27 -0
  107. package/dist/types/src/components/CloudTAK/util/CopyButton.vue.d.ts +32 -0
  108. package/dist/types/src/components/CloudTAK/util/CopyField.vue.d.ts +122 -0
  109. package/dist/types/src/components/CloudTAK/util/DrawOverlay.vue.d.ts +3 -0
  110. package/dist/types/src/components/CloudTAK/util/EmptyInfo.vue.d.ts +24 -0
  111. package/dist/types/src/components/CloudTAK/util/FeatureIcon.vue.d.ts +23 -0
  112. package/dist/types/src/components/CloudTAK/util/FeatureRow.vue.d.ts +81 -0
  113. package/dist/types/src/components/CloudTAK/util/FloatingAttachment.vue.d.ts +17 -0
  114. package/dist/types/src/components/CloudTAK/util/FloatingGeneric.vue.d.ts +17 -0
  115. package/dist/types/src/components/CloudTAK/util/FloatingPane.vue.d.ts +31 -0
  116. package/dist/types/src/components/CloudTAK/util/FloatingVideo.vue.d.ts +27 -0
  117. package/dist/types/src/components/CloudTAK/util/GenericChat.vue.d.ts +34 -0
  118. package/dist/types/src/components/CloudTAK/util/GenericSelect.vue.d.ts +34 -0
  119. package/dist/types/src/components/CloudTAK/util/GroupSelect.vue.d.ts +14 -0
  120. package/dist/types/src/components/CloudTAK/util/Icons.vue.d.ts +24 -0
  121. package/dist/types/src/components/CloudTAK/util/JSONModal.vue.d.ts +27 -0
  122. package/dist/types/src/components/CloudTAK/util/Keywords.vue.d.ts +10 -0
  123. package/dist/types/src/components/CloudTAK/util/LineLength.vue.d.ts +24 -0
  124. package/dist/types/src/components/CloudTAK/util/MenuTemplate.vue.d.ts +89 -0
  125. package/dist/types/src/components/CloudTAK/util/MultipleSelect.vue.d.ts +7 -0
  126. package/dist/types/src/components/CloudTAK/util/NotificationIcon.vue.d.ts +10 -0
  127. package/dist/types/src/components/CloudTAK/util/NotificationToast.vue.d.ts +13 -0
  128. package/dist/types/src/components/CloudTAK/util/PolygonArea.vue.d.ts +24 -0
  129. package/dist/types/src/components/CloudTAK/util/PropertyAttachments.vue.d.ts +14 -0
  130. package/dist/types/src/components/CloudTAK/util/PropertyBattery.vue.d.ts +13 -0
  131. package/dist/types/src/components/CloudTAK/util/PropertyBearing.vue.d.ts +58 -0
  132. package/dist/types/src/components/CloudTAK/util/PropertyCreator.vue.d.ts +7 -0
  133. package/dist/types/src/components/CloudTAK/util/PropertyDistance.vue.d.ts +54 -0
  134. package/dist/types/src/components/CloudTAK/util/PropertyElevation.vue.d.ts +32 -0
  135. package/dist/types/src/components/CloudTAK/util/PropertyEmail.vue.d.ts +13 -0
  136. package/dist/types/src/components/CloudTAK/util/PropertyGeofence.vue.d.ts +10 -0
  137. package/dist/types/src/components/CloudTAK/util/PropertyLinks.vue.d.ts +14 -0
  138. package/dist/types/src/components/CloudTAK/util/PropertyMetadata.vue.d.ts +7 -0
  139. package/dist/types/src/components/CloudTAK/util/PropertyMilSym.vue.d.ts +25 -0
  140. package/dist/types/src/components/CloudTAK/util/PropertyPhone.vue.d.ts +13 -0
  141. package/dist/types/src/components/CloudTAK/util/PropertySensor.vue.d.ts +18 -0
  142. package/dist/types/src/components/CloudTAK/util/PropertySpeed.vue.d.ts +23 -0
  143. package/dist/types/src/components/CloudTAK/util/PropertyStyle.vue.d.ts +7 -0
  144. package/dist/types/src/components/CloudTAK/util/PropertyTimes.vue.d.ts +7 -0
  145. package/dist/types/src/components/CloudTAK/util/PropertyType.vue.d.ts +27 -0
  146. package/dist/types/src/components/CloudTAK/util/SearchBox.vue.d.ts +46 -0
  147. package/dist/types/src/components/CloudTAK/util/SelectFeats.vue.d.ts +7 -0
  148. package/dist/types/src/components/CloudTAK/util/SettingsCallsign.vue.d.ts +28 -0
  149. package/dist/types/src/components/CloudTAK/util/Share.vue.d.ts +14 -0
  150. package/dist/types/src/components/CloudTAK/util/ShareToMission.vue.d.ts +53 -0
  151. package/dist/types/src/components/CloudTAK/util/ShareToPackage.vue.d.ts +62 -0
  152. package/dist/types/src/components/CloudTAK/util/SlideDownHeader.vue.d.ts +41 -0
  153. package/dist/types/src/components/CloudTAK/util/StandardItem.vue.d.ts +18 -0
  154. package/dist/types/src/components/CloudTAK/util/Subscriptions.vue.d.ts +7 -0
  155. package/dist/types/src/components/CloudTAK/util/TagEntry.vue.d.ts +51 -0
  156. package/dist/types/src/components/CloudTAK/util/UserClientSelect.vue.d.ts +16 -0
  157. package/dist/types/src/components/CloudTAK/util/VideoLeaseSourceType.vue.d.ts +6 -0
  158. package/dist/types/src/components/CloudTAK/util/WarnChannels.vue.d.ts +7 -0
  159. package/dist/types/src/components/CloudTAK/util/WarnConfiguration.vue.d.ts +7 -0
  160. package/dist/types/src/components/Configure.vue.d.ts +3 -0
  161. package/dist/types/src/components/ETL/Connection/AgencyBadge.vue.d.ts +8 -0
  162. package/dist/types/src/components/ETL/Connection/CertificateP12.vue.d.ts +13 -0
  163. package/dist/types/src/components/ETL/Connection/StatusDot.vue.d.ts +13 -0
  164. package/dist/types/src/components/ETL/Styling/Layer.vue.d.ts +24 -0
  165. package/dist/types/src/components/Login.vue.d.ts +7 -0
  166. package/dist/types/src/components/util/GroupSelect.vue.d.ts +14 -0
  167. package/dist/types/src/components/util/IconSelect.vue.d.ts +29 -0
  168. package/dist/types/src/components/util/StatusDot.vue.d.ts +8 -0
  169. package/dist/types/src/components/util/Upload.vue.d.ts +46 -0
  170. package/dist/types/src/components/util/UploadLogo.vue.d.ts +14 -0
  171. package/dist/types/src/router.d.ts +3 -0
  172. package/dist/types/src/std.d.ts +19 -0
  173. package/dist/types/src/stores/float.d.ts +42 -0
  174. package/dist/types/src/stores/map.d.ts +124 -0
  175. package/dist/types/src/stores/modules/draw.d.ts +61 -0
  176. package/dist/types/src/stores/modules/icons.d.ts +38 -0
  177. package/dist/types/src/stores/modules/menu.d.ts +39 -0
  178. package/dist/types/src/timediff.d.ts +1 -0
  179. package/dist/types/src/types.d.ts +169 -0
  180. package/dist/types/src/workers/atlas-breadcrumb.d.ts +65 -0
  181. package/dist/types/src/workers/atlas-connection.d.ts +14 -0
  182. package/dist/types/src/workers/atlas-database.d.ts +137 -0
  183. package/dist/types/src/workers/atlas-profile.d.ts +44 -0
  184. package/dist/types/src/workers/atlas.d.ts +17 -0
  185. package/package.json +13 -7
@@ -0,0 +1,24 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ iconset: {
3
+ type: StringConstructor;
4
+ default: undefined;
5
+ };
6
+ labels: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ iconset: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ labels: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ iconset: string;
21
+ labels: boolean;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
@@ -0,0 +1,27 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ title: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ object: {
7
+ type: ObjectConstructor;
8
+ required: true;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ close: (...args: any[]) => void;
12
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
13
+ title: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ object: {
18
+ type: ObjectConstructor;
19
+ required: true;
20
+ };
21
+ }>> & Readonly<{
22
+ onClose?: ((...args: any[]) => any) | undefined;
23
+ }>, {
24
+ title: string;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
26
+ declare const _default: typeof __VLS_export;
27
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ keywords?: string[];
3
+ placeholder?: string;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
6
+ placeholder: string;
7
+ keywords: string[];
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,24 @@
1
+ import COT from '../../../base/cot.ts';
2
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ cot: {
4
+ type: typeof COT;
5
+ required: true;
6
+ };
7
+ unit: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
+ cot: {
13
+ type: typeof COT;
14
+ required: true;
15
+ };
16
+ unit: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }>> & Readonly<{}>, {
21
+ unit: string;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
@@ -0,0 +1,89 @@
1
+ declare var __VLS_27: {}, __VLS_39: {};
2
+ type __VLS_Slots = {} & {
3
+ buttons?: (props: typeof __VLS_27) => any;
4
+ } & {
5
+ default?: (props: typeof __VLS_39) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ name: {
9
+ type: StringConstructor;
10
+ required: true;
11
+ };
12
+ zindex: {
13
+ type: NumberConstructor;
14
+ default: number;
15
+ };
16
+ border: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ back: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ loading: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ none: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ standalone: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ scroll: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
41
+ name: {
42
+ type: StringConstructor;
43
+ required: true;
44
+ };
45
+ zindex: {
46
+ type: NumberConstructor;
47
+ default: number;
48
+ };
49
+ border: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ back: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ loading: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ none: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ standalone: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ scroll: {
70
+ type: BooleanConstructor;
71
+ default: boolean;
72
+ };
73
+ }>> & Readonly<{}>, {
74
+ loading: boolean;
75
+ zindex: number;
76
+ border: boolean;
77
+ back: boolean;
78
+ none: boolean;
79
+ standalone: boolean;
80
+ scroll: boolean;
81
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
82
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
83
+ declare const _default: typeof __VLS_export;
84
+ export default _default;
85
+ type __VLS_WithSlots<T, S> = T & {
86
+ new (): {
87
+ $slots: S;
88
+ };
89
+ };
@@ -0,0 +1,7 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
+ selected: (...args: any[]) => void;
3
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
4
+ onSelected?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { NotificationType } from '../../../base/notification.ts';
2
+ type __VLS_Props = {
3
+ type: NotificationType;
4
+ size?: number;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ size: number;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ id: string;
3
+ timeout?: number;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
6
+ close: () => any;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onClose?: (() => any) | undefined;
9
+ }>, {
10
+ timeout: number;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,24 @@
1
+ import COT from '../../../base/cot.ts';
2
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ cot: {
4
+ type: typeof COT;
5
+ required: true;
6
+ };
7
+ unit: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
+ cot: {
13
+ type: typeof COT;
14
+ required: true;
15
+ };
16
+ unit: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }>> & Readonly<{}>, {
21
+ unit: string;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const _default: typeof __VLS_export;
24
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import Subscription from '../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ modelValue: string[];
4
+ subscription?: Subscription | null;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ "update:modelValue": (value: string[]) => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
10
+ }>, {
11
+ subscription: Subscription | null;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ battery: {
3
+ type: NumberConstructor;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ battery: {
8
+ type: NumberConstructor;
9
+ required: true;
10
+ };
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,58 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ modelValue: {
7
+ type: NumberConstructor;
8
+ required: true;
9
+ description: string;
10
+ };
11
+ unit: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ description: string;
15
+ };
16
+ hover: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ edit: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
+ "update:modelValue": (...args: any[]) => void;
26
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
+ label: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ modelValue: {
32
+ type: NumberConstructor;
33
+ required: true;
34
+ description: string;
35
+ };
36
+ unit: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ description: string;
40
+ };
41
+ hover: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ edit: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ }>> & Readonly<{
50
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
51
+ }>, {
52
+ label: string;
53
+ hover: boolean;
54
+ edit: boolean;
55
+ unit: string;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
57
+ declare const _default: typeof __VLS_export;
58
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { FeaturePropertyCreator } from '../../../types.ts';
2
+ type __VLS_Props = {
3
+ creator: FeaturePropertyCreator;
4
+ };
5
+ declare const __VLS_export: 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>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,54 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ modelValue: {
7
+ type: NumberConstructor;
8
+ required: true;
9
+ };
10
+ unit: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ hover: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ edit: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ "update:modelValue": (...args: any[]) => void;
24
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
+ label: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ modelValue: {
30
+ type: NumberConstructor;
31
+ required: true;
32
+ };
33
+ unit: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ hover: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ edit: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ }>> & Readonly<{
46
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
47
+ }>, {
48
+ label: string;
49
+ hover: boolean;
50
+ edit: boolean;
51
+ unit: string;
52
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
53
+ declare const _default: typeof __VLS_export;
54
+ export default _default;
@@ -0,0 +1,32 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ elevation: {
7
+ type: NumberConstructor;
8
+ required: true;
9
+ };
10
+ unit: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ label: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ elevation: {
20
+ type: NumberConstructor;
21
+ required: true;
22
+ };
23
+ unit: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ }>> & Readonly<{}>, {
28
+ label: string;
29
+ unit: string;
30
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
31
+ declare const _default: typeof __VLS_export;
32
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ email: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ email: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ geofence: {
3
+ elevationMonitored?: boolean;
4
+ tracking?: boolean;
5
+ trigger?: string;
6
+ };
7
+ };
8
+ declare const __VLS_export: 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>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ links: Array<{
3
+ remarks?: string;
4
+ url?: string;
5
+ relation?: string;
6
+ type?: string;
7
+ uid?: string;
8
+ callsign?: string;
9
+ production_time?: string;
10
+ }>;
11
+ };
12
+ declare const __VLS_export: 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>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type COT from '../../../base/cot';
2
+ type __VLS_Props = {
3
+ cot: COT;
4
+ };
5
+ declare const __VLS_export: 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>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,25 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ modelValue: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ description: string;
10
+ };
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
+ label: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ modelValue: {
17
+ type: StringConstructor;
18
+ required: true;
19
+ description: string;
20
+ };
21
+ }>> & Readonly<{}>, {
22
+ label: string;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
24
+ declare const _default: typeof __VLS_export;
25
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ phone: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ phone: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,18 @@
1
+ interface Sensor {
2
+ type?: string;
3
+ model?: string;
4
+ range?: number;
5
+ azimuth?: number;
6
+ fov?: number;
7
+ [key: string]: unknown;
8
+ }
9
+ interface Props {
10
+ modelValue: Sensor;
11
+ }
12
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:modelValue": (value: Sensor) => any;
14
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: Sensor) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
@@ -0,0 +1,23 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ speed: {
3
+ type: NumberConstructor;
4
+ required: true;
5
+ };
6
+ unit: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ speed: {
12
+ type: NumberConstructor;
13
+ required: true;
14
+ };
15
+ unit: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ unit: string;
21
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
22
+ declare const _default: typeof __VLS_export;
23
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type COT from '../../../base/cot';
2
+ type __VLS_Props = {
3
+ cot: COT;
4
+ };
5
+ declare const __VLS_export: 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>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type COT from '../../../base/cot';
2
+ type __VLS_Props = {
3
+ cot: COT;
4
+ };
5
+ declare const __VLS_export: 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>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,27 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ modelValue: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ edit: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "update:modelValue": (...args: any[]) => void;
12
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
13
+ modelValue: {
14
+ type: StringConstructor;
15
+ required: true;
16
+ };
17
+ edit: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ }>> & Readonly<{
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }>, {
24
+ edit: boolean;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
26
+ declare const _default: typeof __VLS_export;
27
+ export default _default;
@@ -0,0 +1,46 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ autofocus: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ placeholder: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ locationPicker: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ select: (...args: any[]) => void;
20
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ label: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ autofocus: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ placeholder: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ locationPicker: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ }>> & Readonly<{
38
+ onSelect?: ((...args: any[]) => any) | undefined;
39
+ }>, {
40
+ label: string;
41
+ autofocus: boolean;
42
+ placeholder: string;
43
+ locationPicker: boolean;
44
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import COT from '../../../base/cot.ts';
2
+ type __VLS_Props = {
3
+ selected: Map<string, COT>;
4
+ };
5
+ declare const __VLS_export: 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>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;