@vcmap/ui 5.0.1 → 5.1.0-rc.1

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 (444) hide show
  1. package/README.md +2 -2
  2. package/build/buildTypes.js +176 -0
  3. package/build/lintTypes.js +30 -0
  4. package/config/aerowest.config.json +4 -0
  5. package/config/base.config.json +24 -2
  6. package/config/dev.config.json +176 -5
  7. package/config/www.config.json +25 -1
  8. package/dist/assets/{cesium.888ef7.js → cesium.e9b3ca.js} +1859 -1828
  9. package/dist/assets/cesium.js +1 -1
  10. package/dist/assets/{core.860907.js → core.a9fe5a.js} +5865 -5041
  11. package/dist/assets/core.js +1 -1
  12. package/dist/assets/index-bb2549d6.js +1 -0
  13. package/dist/assets/{ol.5e8a90.js → ol.5f0496.js} +7257 -7252
  14. package/dist/assets/ol.js +1 -1
  15. package/dist/assets/{ui.7758a8.css → ui.3c73c2.css} +2 -2
  16. package/dist/assets/{ui.7758a8.js → ui.3c73c2.js} +14281 -9264
  17. package/dist/assets/ui.js +1 -1
  18. package/dist/assets/{vue.9771b3.js → vue.4fe14e.js} +1243 -1234
  19. package/dist/assets/vue.js +2 -2
  20. package/dist/assets/{vuetify.2818ff.css → vuetify.260d9a.css} +1 -1
  21. package/dist/assets/{vuetify.2818ff.js → vuetify.260d9a.js} +155 -154
  22. package/dist/assets/vuetify.js +2 -2
  23. package/dist/index.html +2 -2
  24. package/index.d.ts +256 -0
  25. package/index.html +1 -1
  26. package/index.js +48 -11
  27. package/package.json +22 -15
  28. package/plugins/@vcmap-show-case/buttons-example/src/ButtonsExample.vue +3 -0
  29. package/plugins/@vcmap-show-case/category-tester/src/CategoriesExample.vue +312 -43
  30. package/plugins/@vcmap-show-case/category-tester/src/CollectionComponentOptions.vue +48 -182
  31. package/plugins/@vcmap-show-case/category-tester/src/FoobarEditor.vue +118 -0
  32. package/plugins/@vcmap-show-case/category-tester/src/importExportHelper.js +29 -0
  33. package/plugins/@vcmap-show-case/category-tester/src/index.js +16 -0
  34. package/plugins/@vcmap-show-case/collection-manager-example/src/CollectionManagerExample.vue +2 -1
  35. package/plugins/@vcmap-show-case/collection-manager-example/src/index.js +8 -4
  36. package/plugins/@vcmap-show-case/extent-example/README.md +3 -0
  37. package/plugins/@vcmap-show-case/extent-example/package.json +5 -0
  38. package/plugins/@vcmap-show-case/extent-example/src/ExtentExample.vue +71 -0
  39. package/plugins/@vcmap-show-case/extent-example/src/index.js +68 -0
  40. package/plugins/@vcmap-show-case/flight-component-example/README.md +3 -0
  41. package/plugins/@vcmap-show-case/flight-component-example/package.json +5 -0
  42. package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +53 -0
  43. package/plugins/@vcmap-show-case/flight-component-example/src/index.js +42 -0
  44. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +78 -5
  45. package/plugins/@vcmap-show-case/hello-world/src/helloWorld.vue +2 -2
  46. package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +22 -10
  47. package/plugins/@vcmap-show-case/toolbox-example/README.md +9 -0
  48. package/plugins/@vcmap-show-case/toolbox-example/package.json +5 -0
  49. package/plugins/@vcmap-show-case/toolbox-example/src/TriStateExampleWindow.vue +21 -0
  50. package/plugins/@vcmap-show-case/toolbox-example/src/dummyToolboxActions.js +94 -0
  51. package/plugins/@vcmap-show-case/toolbox-example/src/index.js +260 -0
  52. package/plugins/@vcmap-show-case/vector-properties-example/src/VectorPropertiesExample.vue +12 -2
  53. package/plugins/@vcmap-show-case/viewpoint-component-example/README.md +3 -0
  54. package/plugins/@vcmap-show-case/viewpoint-component-example/package.json +5 -0
  55. package/plugins/@vcmap-show-case/viewpoint-component-example/src/ViewpointExample.vue +52 -0
  56. package/plugins/@vcmap-show-case/viewpoint-component-example/src/index.js +42 -0
  57. package/plugins/@vcmap-show-case/window-tester/src/WindowExample.vue +31 -1
  58. package/plugins/@vcmap-show-case/window-tester/src/WindowExampleToggleChild.vue +20 -16
  59. package/plugins/@vcmap-show-case/window-tester/src/index.js +2 -17
  60. package/plugins/package.json +3 -1
  61. package/src/actions/StyleSelector.vue +8 -7
  62. package/src/actions/StyleSelector.vue.d.ts +27 -0
  63. package/src/actions/actionHelper.d.ts +153 -0
  64. package/src/actions/actionHelper.js +48 -21
  65. package/src/actions/extentActions.d.ts +40 -0
  66. package/src/actions/extentActions.js +359 -0
  67. package/src/actions/flightActions.d.ts +59 -0
  68. package/src/actions/flightActions.js +232 -0
  69. package/src/actions/listActions.d.ts +63 -0
  70. package/src/actions/listActions.js +185 -0
  71. package/src/actions/stateRefAction.d.ts +19 -0
  72. package/src/actions/stateRefAction.js +1 -1
  73. package/src/application/VcsApp.vue +103 -28
  74. package/src/application/VcsApp.vue.d.ts +86 -0
  75. package/src/application/VcsAppWrapper.vue.d.ts +12 -0
  76. package/src/application/VcsAttributions.vue.d.ts +14 -0
  77. package/src/application/VcsAttributionsFooter.vue +1 -4
  78. package/src/application/VcsAttributionsFooter.vue.d.ts +26 -0
  79. package/src/application/VcsMap.vue.d.ts +12 -0
  80. package/src/application/VcsNavbar.vue.d.ts +45 -0
  81. package/src/application/VcsPositionDisplay.vue +208 -0
  82. package/src/application/VcsPositionDisplay.vue.d.ts +18 -0
  83. package/src/application/VcsSettings.vue.d.ts +5 -0
  84. package/src/application/VcsTextPage.vue +65 -0
  85. package/src/application/VcsTextPage.vue.d.ts +16 -0
  86. package/src/application/VcsTextPageFooter.vue +89 -0
  87. package/src/application/VcsTextPageFooter.vue.d.ts +22 -0
  88. package/src/application/attributionsHelper.d.ts +64 -0
  89. package/src/application/attributionsHelper.js +1 -1
  90. package/src/application/markdownHelper.d.ts +5 -0
  91. package/src/application/markdownHelper.js +11 -0
  92. package/src/application/positionDisplayInteraction.d.ts +42 -0
  93. package/src/application/positionDisplayInteraction.js +65 -0
  94. package/src/callback/activateLayersCallback.d.ts +29 -0
  95. package/src/callback/activateLayersCallback.js +2 -2
  96. package/src/callback/applyLayerStyleCallback.d.ts +36 -0
  97. package/src/callback/applyLayerStyleCallback.js +2 -2
  98. package/src/callback/deactivateLayersCallback.d.ts +29 -0
  99. package/src/callback/deactivateLayersCallback.js +2 -2
  100. package/src/callback/goToViewpointCallback.d.ts +29 -0
  101. package/src/callback/goToViewpointCallback.js +2 -2
  102. package/src/callback/vcsCallback.d.ts +44 -0
  103. package/src/callback/vcsCallback.js +4 -9
  104. package/src/components/ImageElementInjector.vue.d.ts +24 -0
  105. package/src/components/buttons/VcsActionButtonList.vue +24 -16
  106. package/src/components/buttons/VcsActionButtonList.vue.d.ts +68 -0
  107. package/src/components/buttons/VcsButton.vue +7 -0
  108. package/src/components/buttons/VcsButton.vue.d.ts +89 -0
  109. package/src/components/buttons/VcsFormButton.vue +9 -0
  110. package/src/components/buttons/VcsFormButton.vue.d.ts +91 -0
  111. package/src/components/buttons/VcsToolButton.vue +9 -0
  112. package/src/components/buttons/VcsToolButton.vue.d.ts +91 -0
  113. package/src/components/flight/VcsFlightAnchorsComponent.vue +329 -0
  114. package/src/components/flight/VcsFlightAnchorsComponent.vue.d.ts +45 -0
  115. package/src/components/flight/VcsFlightComponent.vue +284 -0
  116. package/src/components/flight/VcsFlightComponent.vue.d.ts +104 -0
  117. package/src/components/flight/VcsFlightEditor.vue +77 -0
  118. package/src/components/flight/VcsFlightEditor.vue.d.ts +34 -0
  119. package/src/components/flight/VcsFlightPlayer.vue +124 -0
  120. package/src/components/flight/VcsFlightPlayer.vue.d.ts +25 -0
  121. package/src/components/flight/composables.d.ts +11 -0
  122. package/src/components/flight/composables.js +39 -0
  123. package/src/components/form-inputs-controls/VcsCheckbox.vue.d.ts +18 -0
  124. package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +82 -0
  125. package/src/components/form-inputs-controls/VcsCoordinate.vue +152 -0
  126. package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +90 -0
  127. package/src/components/form-inputs-controls/VcsDatePicker.vue +2 -2
  128. package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +31 -0
  129. package/src/components/form-inputs-controls/VcsExtent.vue +122 -0
  130. package/src/components/form-inputs-controls/VcsExtent.vue.d.ts +36 -0
  131. package/src/components/form-inputs-controls/VcsFormSection.vue +6 -1
  132. package/src/components/form-inputs-controls/VcsFormSection.vue.d.ts +75 -0
  133. package/src/components/form-inputs-controls/VcsLabel.vue +18 -0
  134. package/src/components/form-inputs-controls/VcsLabel.vue.d.ts +41 -0
  135. package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +32 -0
  136. package/src/components/form-inputs-controls/VcsRadioGrid.vue.d.ts +35 -0
  137. package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +31 -0
  138. package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +2 -0
  139. package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +22 -0
  140. package/src/components/form-inputs-controls/VcsTextField.vue +57 -10
  141. package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +65 -0
  142. package/src/components/form-inputs-controls/VcsWizard.vue.d.ts +14 -0
  143. package/src/components/form-inputs-controls/VcsWizardStep.vue.d.ts +89 -0
  144. package/src/components/form-inputs-controls/composables.d.ts +7 -0
  145. package/src/components/form-inputs-controls/composables.js +1 -1
  146. package/src/components/form-output/VcsFormattedNumber.vue +13 -2
  147. package/src/components/form-output/VcsFormattedNumber.vue.d.ts +89 -0
  148. package/src/components/icons/+all.d.ts +9 -0
  149. package/src/components/icons/+all.js +16 -0
  150. package/src/components/icons/2DAreaIcon.vue.d.ts +2 -0
  151. package/src/components/icons/2DDistanceIcon.vue.d.ts +2 -0
  152. package/src/components/icons/2DHeightObliqueIcon.vue +20 -0
  153. package/src/components/icons/2DHeightObliqueIcon.vue.d.ts +2 -0
  154. package/src/components/icons/3DAreaIcon.vue.d.ts +2 -0
  155. package/src/components/icons/3DDistanceIcon.vue.d.ts +2 -0
  156. package/src/components/icons/3DHeightIcon.vue.d.ts +2 -0
  157. package/src/components/icons/AngleIcon.vue.d.ts +2 -0
  158. package/src/components/icons/AssociationsIcon.vue.d.ts +2 -0
  159. package/src/components/icons/AxisIcon.vue.d.ts +2 -0
  160. package/src/components/icons/BoundingBoxIcon.vue.d.ts +2 -0
  161. package/src/components/icons/CheckboxCheckedIcon.vue.d.ts +2 -0
  162. package/src/components/icons/CheckboxIcon.vue.d.ts +2 -0
  163. package/src/components/icons/CheckboxIndeterminateIcon.vue.d.ts +2 -0
  164. package/src/components/icons/CircleIcon.vue.d.ts +2 -0
  165. package/src/components/icons/ClippingHorizontalIcon.vue.d.ts +2 -0
  166. package/src/components/icons/ClippingIcon.vue.d.ts +2 -0
  167. package/src/components/icons/ClippingVerticalIcon.vue.d.ts +2 -0
  168. package/src/components/icons/ColorPickerIcon.vue.d.ts +2 -0
  169. package/src/components/icons/ColorSwatchIcon.vue.d.ts +2 -0
  170. package/src/components/icons/CommentIcon.vue.d.ts +2 -0
  171. package/src/components/icons/CompassIcon.vue.d.ts +2 -0
  172. package/src/components/icons/ComponentsIcon.vue.d.ts +2 -0
  173. package/src/components/icons/ComponentsPlusIcon.vue +17 -0
  174. package/src/components/icons/ComponentsPlusIcon.vue.d.ts +2 -0
  175. package/src/components/icons/ConeIcon.vue.d.ts +2 -0
  176. package/src/components/icons/DimensionsHouseIcon.vue.d.ts +2 -0
  177. package/src/components/icons/EditIcon.vue.d.ts +2 -0
  178. package/src/components/icons/EditVerticesIcon.vue.d.ts +2 -0
  179. package/src/components/icons/ElevationProfileIcon.vue.d.ts +2 -0
  180. package/src/components/icons/ExportAreaIcon.vue.d.ts +2 -0
  181. package/src/components/icons/ExportFlightIcon.vue.d.ts +2 -0
  182. package/src/components/icons/ExportIcon.vue.d.ts +2 -0
  183. package/src/components/icons/ExternalLinkIcon.vue.d.ts +2 -0
  184. package/src/components/icons/EyeIcon.vue.d.ts +2 -0
  185. package/src/components/icons/FastForwardIcon.vue.d.ts +2 -0
  186. package/src/components/icons/FilterIcon.vue.d.ts +2 -0
  187. package/src/components/icons/GlobalTerrainIcon.vue.d.ts +2 -0
  188. package/src/components/icons/GlobeNatureIcon.vue.d.ts +2 -0
  189. package/src/components/icons/GroundIcon.vue.d.ts +2 -0
  190. package/src/components/icons/HealthCareIndustriesIcon.vue.d.ts +2 -0
  191. package/src/components/icons/HelpIcon.vue.d.ts +2 -0
  192. package/src/components/icons/HideIcon.vue.d.ts +2 -0
  193. package/src/components/icons/HomePointIcon.vue.d.ts +2 -0
  194. package/src/components/icons/HospitalsIcon.vue.d.ts +2 -0
  195. package/src/components/icons/HouseIcon.vue.d.ts +2 -0
  196. package/src/components/icons/ImportIcon.vue.d.ts +2 -0
  197. package/src/components/icons/InfoIcon.vue.d.ts +2 -0
  198. package/src/components/icons/KebabIcon.vue.d.ts +2 -0
  199. package/src/components/icons/LabelIcon.vue.d.ts +2 -0
  200. package/src/components/icons/LayersIcon.vue.d.ts +2 -0
  201. package/src/components/icons/LegendIcon.vue.d.ts +2 -0
  202. package/src/components/icons/LineIcon.vue.d.ts +2 -0
  203. package/src/components/icons/LinkIcon.vue.d.ts +2 -0
  204. package/src/components/icons/LogoutIcon.vue.d.ts +2 -0
  205. package/src/components/icons/MapIcon.vue.d.ts +2 -0
  206. package/src/components/icons/MenuIcon.vue.d.ts +2 -0
  207. package/src/components/icons/MinusIcon.vue.d.ts +2 -0
  208. package/src/components/icons/MultiViewIcon.vue +16 -0
  209. package/src/components/icons/MultiViewIcon.vue.d.ts +2 -0
  210. package/src/components/icons/ObjectAttributeIcon.vue.d.ts +2 -0
  211. package/src/components/icons/ObjectSelectIcon.vue.d.ts +2 -0
  212. package/src/components/icons/ObliqueViewIcon.vue.d.ts +2 -0
  213. package/src/components/icons/PdfIcon.vue.d.ts +2 -0
  214. package/src/components/icons/PedestrianIcon.vue.d.ts +2 -0
  215. package/src/components/icons/PenIcon.vue.d.ts +2 -0
  216. package/src/components/icons/PlayCircleIcon.vue.d.ts +2 -0
  217. package/src/components/icons/PlusIcon.vue.d.ts +2 -0
  218. package/src/components/icons/PoiIcon.vue.d.ts +2 -0
  219. package/src/components/icons/PointIcon.vue.d.ts +2 -0
  220. package/src/components/icons/PointMeasurementIcon.vue +36 -0
  221. package/src/components/icons/PointMeasurementIcon.vue.d.ts +2 -0
  222. package/src/components/icons/PointSelectIcon.vue.d.ts +2 -0
  223. package/src/components/icons/PresentationModeIcon.vue.d.ts +2 -0
  224. package/src/components/icons/ProgressIcon.vue.d.ts +2 -0
  225. package/src/components/icons/QueryIcon.vue.d.ts +2 -0
  226. package/src/components/icons/RectangleIcon.vue.d.ts +2 -0
  227. package/src/components/icons/ReturnIcon.vue.d.ts +2 -0
  228. package/src/components/icons/RewindIcon.vue.d.ts +2 -0
  229. package/src/components/icons/RotateLeftIcon.vue.d.ts +2 -0
  230. package/src/components/icons/RotateRightIcon.vue.d.ts +2 -0
  231. package/src/components/icons/ScreenshotIcon.vue.d.ts +2 -0
  232. package/src/components/icons/SearchIcon.vue.d.ts +2 -0
  233. package/src/components/icons/ShadowIcon.vue.d.ts +2 -0
  234. package/src/components/icons/ShapesIcon.vue.d.ts +2 -0
  235. package/src/components/icons/ShareIcon.vue.d.ts +2 -0
  236. package/src/components/icons/SimpleCircleFilledIcon.vue.d.ts +2 -0
  237. package/src/components/icons/SimpleCircleHalfFilledIcon.vue.d.ts +2 -0
  238. package/src/components/icons/SimpleCircleOutlinedIcon.vue.d.ts +2 -0
  239. package/src/components/icons/SkipNextIcon.vue.d.ts +2 -0
  240. package/src/components/icons/SkipPreviousIcon.vue.d.ts +2 -0
  241. package/src/components/icons/SplitViewIcon.vue.d.ts +2 -0
  242. package/src/components/icons/TerrainBoxIcon.vue.d.ts +2 -0
  243. package/src/components/icons/TextStyleIcon.vue.d.ts +2 -0
  244. package/src/components/icons/ThreeDimensionsIcon.vue.d.ts +2 -0
  245. package/src/components/icons/ToolsIcon.vue.d.ts +2 -0
  246. package/src/components/icons/TouchIcon.vue.d.ts +2 -0
  247. package/src/components/icons/TrashCanIcon.vue.d.ts +2 -0
  248. package/src/components/icons/TriangleIcon.vue.d.ts +2 -0
  249. package/src/components/icons/TwoDimensionsIcon.vue.d.ts +2 -0
  250. package/src/components/icons/UploadIcon.vue.d.ts +2 -0
  251. package/src/components/icons/UserProfileIcon.vue.d.ts +2 -0
  252. package/src/components/icons/UserShareIcon.vue.d.ts +2 -0
  253. package/src/components/icons/VideoRecorderIcon.vue.d.ts +2 -0
  254. package/src/components/icons/ViewpointFlightIcon.vue.d.ts +2 -0
  255. package/src/components/icons/ViewpointIcon.vue.d.ts +2 -0
  256. package/src/components/icons/Viewshed360Icon.vue.d.ts +2 -0
  257. package/src/components/icons/ViewshedConeIcon.vue.d.ts +2 -0
  258. package/src/components/icons/ViewshedIcon.vue.d.ts +2 -0
  259. package/src/components/icons/WalkingIcon.vue.d.ts +2 -0
  260. package/src/components/icons/WallIcon.vue.d.ts +2 -0
  261. package/src/components/icons/WandIcon.vue.d.ts +2 -0
  262. package/src/components/import/FileDrop.vue +69 -0
  263. package/src/components/import/FileDrop.vue.d.ts +26 -0
  264. package/src/components/import/ImportComponent.vue +78 -0
  265. package/src/components/import/ImportComponent.vue.d.ts +34 -0
  266. package/src/components/lists/VcsActionList.vue +8 -15
  267. package/src/components/lists/VcsActionList.vue.d.ts +66 -0
  268. package/src/components/lists/VcsList.vue +207 -116
  269. package/src/components/lists/VcsList.vue.d.ts +227 -0
  270. package/src/components/lists/VcsTreeview.vue +3 -1
  271. package/src/components/lists/VcsTreeview.vue.d.ts +28 -0
  272. package/src/components/lists/VcsTreeviewLeaf.vue +1 -0
  273. package/src/components/lists/VcsTreeviewLeaf.vue.d.ts +19 -0
  274. package/src/components/lists/VcsTreeviewSearchbar.vue.d.ts +41 -0
  275. package/src/components/notification/VcsBadge.vue.d.ts +14 -0
  276. package/src/components/notification/VcsHelp.vue.d.ts +22 -0
  277. package/src/components/notification/VcsTooltip.vue.d.ts +27 -0
  278. package/src/components/notification/validation.d.ts +8 -0
  279. package/src/components/notification/validation.js +3 -2
  280. package/src/components/plugins/AbstractConfigEditor.vue +25 -4
  281. package/src/components/plugins/AbstractConfigEditor.vue.d.ts +55 -0
  282. package/src/components/style/MenuWrapper.vue.d.ts +55 -0
  283. package/src/components/style/VcsFeatureStyleComponent.vue +389 -0
  284. package/src/components/style/VcsFeatureStyleComponent.vue.d.ts +31 -0
  285. package/src/components/style/VcsFillMenu.vue.d.ts +34 -0
  286. package/src/components/style/VcsFillSelector.vue.d.ts +22 -0
  287. package/src/components/style/VcsImageMenu.vue.d.ts +43 -0
  288. package/src/components/style/VcsImageSelector.vue.d.ts +128 -0
  289. package/src/components/style/VcsStrokeMenu.vue.d.ts +34 -0
  290. package/src/components/style/VcsStrokeSelector.vue.d.ts +23 -0
  291. package/src/components/style/VcsTextMenu.vue.d.ts +52 -0
  292. package/src/components/style/VcsTextSelector.vue.d.ts +58 -0
  293. package/src/components/style/VcsVectorStyleComponent.vue.d.ts +76 -0
  294. package/src/components/style/composables.d.ts +43 -0
  295. package/src/components/style/composables.js +11 -8
  296. package/src/components/tables/VcsDataTable.vue +11 -3
  297. package/src/components/tables/VcsDataTable.vue.d.ts +142 -0
  298. package/src/components/tables/VcsTable.vue +71 -2
  299. package/src/components/tables/VcsTable.vue.d.ts +88 -0
  300. package/src/components/vector-properties/VcsFeatureEditingWindow.vue +392 -0
  301. package/src/components/vector-properties/VcsFeatureEditingWindow.vue.d.ts +87 -0
  302. package/src/components/vector-properties/VcsFeatureTransforms.vue +217 -0
  303. package/src/components/vector-properties/VcsFeatureTransforms.vue.d.ts +45 -0
  304. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +96 -52
  305. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +119 -0
  306. package/src/components/vector-properties/composables.d.ts +33 -0
  307. package/src/components/vector-properties/composables.js +21 -14
  308. package/src/components/viewpoint/VcsViewpointComponent.vue +514 -0
  309. package/src/components/viewpoint/VcsViewpointComponent.vue.d.ts +126 -0
  310. package/src/components/viewpoint/VcsViewpointEditor.vue +87 -0
  311. package/src/components/viewpoint/VcsViewpointEditor.vue.d.ts +25 -0
  312. package/src/contentTree/LayerTree.vue.d.ts +15 -0
  313. package/src/contentTree/contentTreeCollection.d.ts +113 -0
  314. package/src/contentTree/contentTreeCollection.js +10 -20
  315. package/src/contentTree/contentTreeItem.d.ts +334 -0
  316. package/src/contentTree/contentTreeItem.js +31 -17
  317. package/src/contentTree/flightContentTreeItem.d.ts +53 -0
  318. package/src/contentTree/flightContentTreeItem.js +201 -0
  319. package/src/contentTree/groupContentTreeItem.d.ts +14 -0
  320. package/src/contentTree/groupContentTreeItem.js +2 -2
  321. package/src/contentTree/layerContentTreeItem.d.ts +76 -0
  322. package/src/contentTree/layerContentTreeItem.js +7 -9
  323. package/src/contentTree/layerGroupContentTreeItem.d.ts +50 -0
  324. package/src/contentTree/layerGroupContentTreeItem.js +2 -3
  325. package/src/contentTree/nodeContentTreeItem.d.ts +10 -0
  326. package/src/contentTree/nodeContentTreeItem.js +2 -2
  327. package/src/contentTree/obliqueCollectionContentTreeItem.d.ts +46 -0
  328. package/src/contentTree/obliqueCollectionContentTreeItem.js +3 -5
  329. package/src/contentTree/subContentTreeItem.d.ts +15 -0
  330. package/src/contentTree/subContentTreeItem.js +3 -3
  331. package/src/contentTree/vcsObjectContentTreeItem.d.ts +56 -0
  332. package/src/contentTree/vcsObjectContentTreeItem.js +3 -4
  333. package/src/contentTree/viewpointContentTreeItem.d.ts +46 -0
  334. package/src/contentTree/viewpointContentTreeItem.js +3 -4
  335. package/src/downloadHelper.d.ts +27 -0
  336. package/src/featureInfo/AddressBalloonComponent.vue.d.ts +2 -0
  337. package/src/featureInfo/BalloonComponent.vue +16 -3
  338. package/src/featureInfo/BalloonComponent.vue.d.ts +61 -0
  339. package/src/featureInfo/abstractFeatureInfoView.d.ts +199 -0
  340. package/src/featureInfo/abstractFeatureInfoView.js +82 -18
  341. package/src/featureInfo/addressBalloonFeatureInfoView.d.ts +67 -0
  342. package/src/featureInfo/addressBalloonFeatureInfoView.js +9 -2
  343. package/src/featureInfo/balloonFeatureInfoView.d.ts +49 -0
  344. package/src/featureInfo/balloonFeatureInfoView.js +12 -11
  345. package/src/featureInfo/balloonHelper.d.ts +31 -0
  346. package/src/featureInfo/balloonHelper.js +6 -6
  347. package/src/featureInfo/featureInfo.d.ts +146 -0
  348. package/src/featureInfo/featureInfo.js +11 -16
  349. package/src/featureInfo/featureInfoInteraction.d.ts +21 -0
  350. package/src/featureInfo/featureInfoInteraction.js +2 -2
  351. package/src/featureInfo/iframeFeatureInfoView.d.ts +48 -0
  352. package/src/featureInfo/iframeFeatureInfoView.js +3 -5
  353. package/src/featureInfo/tableFeatureInfoView.d.ts +75 -0
  354. package/src/featureInfo/tableFeatureInfoView.js +19 -9
  355. package/src/i18n/de.d.ts +353 -0
  356. package/src/i18n/de.js +114 -2
  357. package/src/i18n/en.d.ts +352 -0
  358. package/src/i18n/en.js +113 -1
  359. package/src/i18n/i18nCollection.d.ts +82 -0
  360. package/src/i18n/i18nCollection.js +3 -3
  361. package/src/init.d.ts +58 -0
  362. package/src/init.js +3 -5
  363. package/src/legend/StyleLegendItem.vue.d.ts +25 -0
  364. package/src/legend/VcsLegend.vue.d.ts +20 -0
  365. package/src/legend/legendHelper.d.ts +172 -0
  366. package/src/legend/legendHelper.js +21 -21
  367. package/src/manager/buttonManager.d.ts +106 -0
  368. package/src/manager/buttonManager.js +8 -4
  369. package/src/manager/collectionManager/CollectionComponent.vue +38 -38
  370. package/src/manager/collectionManager/CollectionComponent.vue.d.ts +17 -0
  371. package/src/manager/collectionManager/CollectionComponentList.vue +78 -24
  372. package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +38 -0
  373. package/src/manager/collectionManager/CollectionComponentProvider.vue +3 -2
  374. package/src/manager/collectionManager/CollectionComponentProvider.vue.d.ts +12 -0
  375. package/src/manager/collectionManager/CollectionManager.vue +29 -4
  376. package/src/manager/collectionManager/CollectionManager.vue.d.ts +8 -0
  377. package/src/manager/collectionManager/categoryManager.d.ts +56 -0
  378. package/src/manager/collectionManager/categoryManager.js +21 -7
  379. package/src/manager/collectionManager/collectionComponentClass.d.ts +257 -0
  380. package/src/manager/collectionManager/{collectionComponent.js → collectionComponentClass.js} +210 -57
  381. package/src/manager/collectionManager/collectionManager.d.ts +200 -0
  382. package/src/manager/collectionManager/collectionManager.js +45 -39
  383. package/src/manager/collectionManager/editorCollectionComponentClass.d.ts +60 -0
  384. package/src/manager/collectionManager/editorCollectionComponentClass.js +295 -0
  385. package/src/manager/contextMenu/ContextMenuComponent.vue.d.ts +18 -0
  386. package/src/manager/contextMenu/contextMenuInteraction.d.ts +24 -0
  387. package/src/manager/contextMenu/contextMenuManager.d.ts +70 -0
  388. package/src/manager/contextMenu/contextMenuManager.js +5 -5
  389. package/src/manager/navbarManager.d.ts +60 -0
  390. package/src/manager/navbarManager.js +10 -6
  391. package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +17 -0
  392. package/src/manager/toolbox/SelectToolboxComponent.vue +1 -0
  393. package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +15 -0
  394. package/src/manager/toolbox/ToolboxManager.vue +33 -7
  395. package/src/manager/toolbox/ToolboxManager.vue.d.ts +21 -0
  396. package/src/manager/toolbox/toolboxManager.d.ts +177 -0
  397. package/src/manager/toolbox/toolboxManager.js +86 -31
  398. package/src/manager/window/WindowComponent.vue.d.ts +40 -0
  399. package/src/manager/window/WindowComponentHeader.vue +1 -1
  400. package/src/manager/window/WindowComponentHeader.vue.d.ts +36 -0
  401. package/src/manager/window/WindowManager.vue +1 -0
  402. package/src/manager/window/WindowManager.vue.d.ts +19 -0
  403. package/src/manager/window/windowHelper.d.ts +134 -0
  404. package/src/manager/window/windowHelper.js +20 -20
  405. package/src/manager/window/windowManager.d.ts +422 -0
  406. package/src/manager/window/windowManager.js +95 -40
  407. package/src/navigation/MapNavCompass.vue.d.ts +25 -0
  408. package/src/navigation/MapNavigation.vue +2 -2
  409. package/src/navigation/MapNavigation.vue.d.ts +46 -0
  410. package/src/navigation/ObliqueRotation.vue +8 -4
  411. package/src/navigation/ObliqueRotation.vue.d.ts +14 -0
  412. package/src/navigation/OrientationToolsButton.vue.d.ts +30 -0
  413. package/src/navigation/TiltSlider.vue.d.ts +19 -0
  414. package/src/navigation/VcsCompass.vue.d.ts +25 -0
  415. package/src/navigation/VcsZoomButton.vue +6 -3
  416. package/src/navigation/VcsZoomButton.vue.d.ts +2 -0
  417. package/src/navigation/overviewMap.d.ts +199 -0
  418. package/src/navigation/overviewMap.js +3 -7
  419. package/src/navigation/overviewMapClickedInteraction.d.ts +21 -0
  420. package/src/notifier/NotifierComponent.vue.d.ts +10 -0
  421. package/src/notifier/notifier.d.ts +53 -0
  422. package/src/notifier/notifier.js +0 -1
  423. package/src/pluginHelper.d.ts +67 -0
  424. package/src/pluginHelper.js +11 -9
  425. package/src/search/ResultItem.vue.d.ts +25 -0
  426. package/src/search/ResultsComponent.vue +1 -1
  427. package/src/search/ResultsComponent.vue.d.ts +24 -0
  428. package/src/search/SearchComponent.vue +1 -1
  429. package/src/search/SearchComponent.vue.d.ts +10 -0
  430. package/src/search/search.d.ts +129 -0
  431. package/src/search/search.js +8 -11
  432. package/src/setup.d.ts +1 -0
  433. package/src/state.d.ts +57 -0
  434. package/src/state.js +7 -5
  435. package/src/uiConfig.d.ts +99 -0
  436. package/src/uiConfig.js +17 -7
  437. package/src/vcsUiApp.d.ts +301 -0
  438. package/src/vcsUiApp.js +57 -53
  439. package/src/vuePlugins/i18n.d.ts +10 -0
  440. package/src/vuePlugins/i18n.js +3 -3
  441. package/src/vuePlugins/vuetify.d.ts +27 -0
  442. package/tsconfig.json +36 -0
  443. package/dist/assets/index-f265c560.js +0 -1
  444. package/plugins/@vcmap-show-case/window-tester/src/toolboxData.js +0 -288
@@ -13,7 +13,7 @@ function loadCss(href) {
13
13
  elem.onerror = reject;
14
14
  document.head.appendChild(elem);
15
15
  });
16
- } await loadCss('./assets/vuetify.2818ff.css');import v from "./vue.9771b3.js";
16
+ } await loadCss('./assets/vuetify.260d9a.css');import v from "./vue.4fe14e.js";
17
17
  const Ne = v.extend().extend({
18
18
  name: "themeable",
19
19
  provide() {
@@ -115,7 +115,7 @@ const Gh = d($).extend({
115
115
  },
116
116
  beforeCreate() {
117
117
  if (!this.$vuetify || this.$vuetify === this.$root)
118
- throw new Error("Vuetify is not properly initialized, see https://vuetifyjs.com/getting-started/quick-start#bootstrapping-the-vuetify-object");
118
+ throw new Error("Vuetify is not properly initialized, see https://v2.vuetifyjs.com/getting-started/quick-start#bootstrapping-the-vuetify-object");
119
119
  },
120
120
  render(t) {
121
121
  const e = t("div", {
@@ -161,7 +161,7 @@ const Tt = v.extend({
161
161
  function ze(t, e = {}) {
162
162
  if (ze.installed)
163
163
  return;
164
- ze.installed = !0, v !== t && j(`Multiple instances of Vue detected
164
+ ze.installed = !0, v !== t && G(`Multiple instances of Vue detected
165
165
  See https://github.com/vuetifyjs/vuetify/issues/4068
166
166
 
167
167
  If you're seeing "$attrs is readonly", it's caused by this`);
@@ -760,7 +760,7 @@ const Br = {
760
760
  clear: "fas fa-times-circle",
761
761
  success: "fas fa-check-circle",
762
762
  info: "fas fa-info-circle",
763
- warning: "fas fa-exclamation",
763
+ warning: "fas fa-exclamation-circle",
764
764
  error: "fas fa-exclamation-triangle",
765
765
  prev: "fas fa-chevron-left",
766
766
  next: "fas fa-chevron-right",
@@ -856,7 +856,7 @@ const Ds = "$vuetify.", Vi = Symbol("Lang fallback");
856
856
  function Es(t, e, i = !1, s) {
857
857
  const n = e.replace(Ds, "");
858
858
  let r = g(t, n, Vi);
859
- return r === Vi && (i ? (j(`Translation key "${n}" not found in fallback`), r = e) : (D(`Translation key "${n}" not found, falling back to default`), r = Es(s, e, !0, s))), r;
859
+ return r === Vi && (i ? (G(`Translation key "${n}" not found in fallback`), r = e) : (D(`Translation key "${n}" not found, falling back to default`), r = Es(s, e, !0, s))), r;
860
860
  }
861
861
  class $e extends gt {
862
862
  constructor(e) {
@@ -1054,7 +1054,7 @@ function Ot(t) {
1054
1054
  let e = t.toString(16);
1055
1055
  return e.length < 6 && (e = "0".repeat(6 - e.length) + e), "#" + e;
1056
1056
  }
1057
- function Xr(t) {
1057
+ function Kr(t) {
1058
1058
  return Ot(We(t));
1059
1059
  }
1060
1060
  function xe(t) {
@@ -1107,7 +1107,7 @@ function si(t) {
1107
1107
  a: n
1108
1108
  };
1109
1109
  }
1110
- function Kr(t) {
1110
+ function Xr(t) {
1111
1111
  const {
1112
1112
  h: e,
1113
1113
  s: i,
@@ -1179,7 +1179,7 @@ function zs(t, e = !1, i = !0) {
1179
1179
  } = t, r = Object.keys(n), a = {};
1180
1180
  for (let o = 0; o < r.length; ++o) {
1181
1181
  const l = r[o], h = t[l];
1182
- h != null && (i ? e ? (l === "base" || l.startsWith("lighten") || l.startsWith("darken")) && (a[l] = Xr(h)) : typeof h == "object" ? a[l] = zs(h, !0, i) : a[l] = na(l, We(h)) : a[l] = {
1182
+ h != null && (i ? e ? (l === "base" || l.startsWith("lighten") || l.startsWith("darken")) && (a[l] = Kr(h)) : typeof h == "object" ? a[l] = zs(h, !0, i) : a[l] = na(l, We(h)) : a[l] = {
1183
1183
  base: Ot(We(h))
1184
1184
  });
1185
1185
  }
@@ -1409,7 +1409,7 @@ class Wt {
1409
1409
  }
1410
1410
  Wt.install = ze;
1411
1411
  Wt.installed = !1;
1412
- Wt.version = "2.6.12";
1412
+ Wt.version = "2.6.16";
1413
1413
  Wt.config = {
1414
1414
  silent: !1
1415
1415
  };
@@ -1431,7 +1431,7 @@ function D(t, e, i) {
1431
1431
  const s = Rs(t, e, i);
1432
1432
  s != null && console.warn(s);
1433
1433
  }
1434
- function j(t, e, i) {
1434
+ function G(t, e, i) {
1435
1435
  const s = Rs(t, e, i);
1436
1436
  s != null && console.error(s);
1437
1437
  }
@@ -1439,7 +1439,7 @@ function ri(t, e, i, s) {
1439
1439
  D(`[UPGRADE] '${t}' is deprecated, use '${e}' instead.`, i, s);
1440
1440
  }
1441
1441
  function z(t, e, i, s) {
1442
- j(`[BREAKING] '${t}' has been removed, use '${e}' instead. For more information, see the upgrade guide https://github.com/vuetifyjs/vuetify/releases/tag/v2.0.0#user-content-upgrade-guide`, i, s);
1442
+ G(`[BREAKING] '${t}' has been removed, use '${e}' instead. For more information, see the upgrade guide https://github.com/vuetifyjs/vuetify/releases/tag/v2.0.0#user-content-upgrade-guide`, i, s);
1443
1443
  }
1444
1444
  function _t(t, e, i) {
1445
1445
  D(`[REMOVED] '${t}' has been removed. You can safely omit it.`, e, i);
@@ -1490,7 +1490,7 @@ const x = v.extend({
1490
1490
  },
1491
1491
  methods: {
1492
1492
  setBackgroundColor(t, e = {}) {
1493
- return typeof e.style == "string" ? (j("style must be an object", this), e) : typeof e.class == "string" ? (j("class must be an object", this), e) : (Li(t) ? e.style = {
1493
+ return typeof e.style == "string" ? (G("style must be an object", this), e) : typeof e.class == "string" ? (G("class must be an object", this), e) : (Li(t) ? e.style = {
1494
1494
  ...e.style,
1495
1495
  "background-color": `${t}`,
1496
1496
  "border-color": `${t}`
@@ -1501,9 +1501,9 @@ const x = v.extend({
1501
1501
  },
1502
1502
  setTextColor(t, e = {}) {
1503
1503
  if (typeof e.style == "string")
1504
- return j("style must be an object", this), e;
1504
+ return G("style must be an object", this), e;
1505
1505
  if (typeof e.class == "string")
1506
- return j("class must be an object", this), e;
1506
+ return G("class must be an object", this), e;
1507
1507
  if (Li(t))
1508
1508
  e.style = {
1509
1509
  ...e.style,
@@ -1688,7 +1688,7 @@ function Fi(t) {
1688
1688
  }
1689
1689
  return e;
1690
1690
  }
1691
- function U() {
1691
+ function Y() {
1692
1692
  const t = {};
1693
1693
  let e = arguments.length, i;
1694
1694
  for (; e--; )
@@ -1910,7 +1910,7 @@ Original error: ${e.message}` : ""), this);
1910
1910
  }
1911
1911
  },
1912
1912
  render(t) {
1913
- const e = Le.options.render.call(this, t), i = U(e.data, {
1913
+ const e = Le.options.render.call(this, t), i = Y(e.data, {
1914
1914
  staticClass: "v-image",
1915
1915
  attrs: {
1916
1916
  "aria-label": this.alt,
@@ -2086,7 +2086,7 @@ function Bt(t = []) {
2086
2086
  props: t.length ? $r(zi, t) : zi
2087
2087
  });
2088
2088
  }
2089
- const Xs = Bt();
2089
+ const Ks = Bt();
2090
2090
  function Yt(t, e = []) {
2091
2091
  return d(Bt(["absolute", "fixed"])).extend({
2092
2092
  name: "applicationable",
@@ -2150,7 +2150,7 @@ function ce(t) {
2150
2150
  function fa() {
2151
2151
  return !0;
2152
2152
  }
2153
- function Ks(t, e, i) {
2153
+ function Xs(t, e, i) {
2154
2154
  if (!t || qs(t, i) === !1)
2155
2155
  return !1;
2156
2156
  const s = ce(e);
@@ -2164,7 +2164,7 @@ function qs(t, e) {
2164
2164
  }
2165
2165
  function ma(t, e, i) {
2166
2166
  const s = typeof i.value == "function" ? i.value : i.value.handler;
2167
- e._clickOutside.lastMousedownWasOutside && Ks(t, e, i) && setTimeout(() => {
2167
+ e._clickOutside.lastMousedownWasOutside && Xs(t, e, i) && setTimeout(() => {
2168
2168
  qs(t, i) && s && s(t);
2169
2169
  }, 0);
2170
2170
  }
@@ -2180,7 +2180,7 @@ const ga = {
2180
2180
  // clicks on body
2181
2181
  inserted(t, e, i) {
2182
2182
  const s = (r) => ma(r, t, e), n = (r) => {
2183
- t._clickOutside.lastMousedownWasOutside = Ks(r, t, e);
2183
+ t._clickOutside.lastMousedownWasOutside = Xs(r, t, e);
2184
2184
  };
2185
2185
  Ri(t, (r) => {
2186
2186
  r.addEventListener("click", s, !0), r.addEventListener("mousedown", n, !0);
@@ -2317,7 +2317,8 @@ const Sa = (t, e, i = {}) => {
2317
2317
  const s = performance.now() - Number(i.dataset.activated), n = Math.max(250 - s, 0);
2318
2318
  setTimeout(() => {
2319
2319
  i.classList.remove("v-ripple__animation--in"), i.classList.add("v-ripple__animation--out"), setTimeout(() => {
2320
- t.getElementsByClassName("v-ripple__animation").length === 1 && t.dataset.previousPosition && (t.style.position = t.dataset.previousPosition, delete t.dataset.previousPosition), i.parentNode && t.removeChild(i.parentNode);
2320
+ var r;
2321
+ t.getElementsByClassName("v-ripple__animation").length === 1 && t.dataset.previousPosition && (t.style.position = t.dataset.previousPosition, delete t.dataset.previousPosition), ((r = i.parentNode) === null || r === void 0 ? void 0 : r.parentNode) === t && t.removeChild(i.parentNode);
2321
2322
  }, 300);
2322
2323
  }, n);
2323
2324
  }
@@ -2571,7 +2572,7 @@ function Gt(t = "value", e = "input") {
2571
2572
  }
2572
2573
  });
2573
2574
  }
2574
- const La = Gt(), Z = La, Oa = d(et, de, jt, Z, Yt("top", ["clippedLeft", "clippedRight", "computedHeight", "invertedScroll", "isExtended", "isProminent", "value"])), Xh = Oa.extend({
2575
+ const La = Gt(), Z = La, Oa = d(et, de, jt, Z, Yt("top", ["clippedLeft", "clippedRight", "computedHeight", "invertedScroll", "isExtended", "isProminent", "value"])), Kh = Oa.extend({
2575
2576
  name: "v-app-bar",
2576
2577
  directives: {
2577
2578
  Scroll: Us
@@ -3207,12 +3208,12 @@ const N = v.extend({
3207
3208
  }), Fa = d(
3208
3209
  _,
3209
3210
  N,
3210
- Xs,
3211
+ Ks,
3211
3212
  we,
3212
3213
  tt("btnToggle"),
3213
3214
  Gt("inputValue")
3214
3215
  /* @vue/component */
3215
- ), Y = Fa.extend().extend({
3216
+ ), j = Fa.extend().extend({
3216
3217
  name: "v-btn",
3217
3218
  props: {
3218
3219
  activeClass: {
@@ -3335,7 +3336,7 @@ const N = v.extend({
3335
3336
  } = this.generateRouteLink(), n = this.hasBg ? this.setBackgroundColor : this.setTextColor;
3336
3337
  return i === "button" && (s.attrs.type = this.type, s.attrs.disabled = this.disabled), s.attrs.value = ["string", "number"].includes(typeof this.value) ? this.value : JSON.stringify(this.value), t(i, this.disabled ? s : n(this.color, s), e);
3337
3338
  }
3338
- }), Kh = v.extend({
3339
+ }), Xh = v.extend({
3339
3340
  name: "v-app-bar-nav-icon",
3340
3341
  functional: !0,
3341
3342
  render(t, {
@@ -3352,7 +3353,7 @@ const N = v.extend({
3352
3353
  },
3353
3354
  on: i
3354
3355
  }), a = e().default;
3355
- return t(Y, r, a || [t(w, "$menu")]);
3356
+ return t(j, r, a || [t(w, "$menu")]);
3356
3357
  }
3357
3358
  }), Na = st("VAppBar", "v-app-bar-title", "v-app-bar"), qh = Na.extend().extend({
3358
3359
  name: "v-app-bar-title",
@@ -3464,7 +3465,7 @@ const li = v.extend({
3464
3465
  if (!this.dismissible)
3465
3466
  return null;
3466
3467
  const t = this.iconColor;
3467
- return this.$createElement(Y, {
3468
+ return this.$createElement(j, {
3468
3469
  staticClass: "v-alert__dismissible",
3469
3470
  props: {
3470
3471
  color: t,
@@ -3638,7 +3639,7 @@ function O(t, e = "top center 0", i) {
3638
3639
  }
3639
3640
  })), n.props.hideOnLeave && (a.on.leave = Oe(a.on.leave, (o) => {
3640
3641
  o.style.setProperty("display", "none", "important");
3641
- })), s(r, U(n.data, a), n.children);
3642
+ })), s(r, Y(n.data, a), n.children);
3642
3643
  }
3643
3644
  };
3644
3645
  }
@@ -3653,7 +3654,7 @@ function ln(t, e, i = "in-out") {
3653
3654
  }
3654
3655
  },
3655
3656
  render(s, n) {
3656
- return s("transition", U(n.data, {
3657
+ return s("transition", Y(n.data, {
3657
3658
  props: {
3658
3659
  name: t
3659
3660
  },
@@ -3878,7 +3879,7 @@ const cn = $.extend({
3878
3879
  }), i);
3879
3880
  }
3880
3881
  }
3881
- }), Ua = d(Ut, Z), Xt = Ua.extend({
3882
+ }), Ua = d(Ut, Z), Kt = Ua.extend({
3882
3883
  name: "activatable",
3883
3884
  props: {
3884
3885
  activator: {
@@ -3908,7 +3909,7 @@ const cn = $.extend({
3908
3909
  },
3909
3910
  mounted() {
3910
3911
  const t = Ts(this, "activator", !0);
3911
- t && ["v-slot", "normal"].includes(t) && j(`The activator slot must be bound, try '<template v-slot:activator="{ on }"><v-btn v-on="on">'`, this), this.addActivatorEvents();
3912
+ t && ["v-slot", "normal"].includes(t) && G(`The activator slot must be bound, try '<template v-slot:activator="{ on }"><v-btn v-on="on">'`, this), this.addActivatorEvents();
3912
3913
  },
3913
3914
  beforeDestroy() {
3914
3915
  this.removeActivatorEvents();
@@ -4001,7 +4002,7 @@ function un(t) {
4001
4002
  }
4002
4003
  return e;
4003
4004
  }
4004
- const Kt = d().extend({
4005
+ const Xt = d().extend({
4005
4006
  name: "dependent",
4006
4007
  data() {
4007
4008
  return {
@@ -4087,7 +4088,7 @@ const Kt = d().extend({
4087
4088
  }
4088
4089
  }
4089
4090
  });
4090
- function Xa(t) {
4091
+ function Ka(t) {
4091
4092
  const e = typeof t;
4092
4093
  return e === "boolean" || e === "string" ? !0 : t.nodeType === Node.ELEMENT_NODE;
4093
4094
  }
@@ -4101,7 +4102,7 @@ const pn = d(Te).extend({
4101
4102
  props: {
4102
4103
  attach: {
4103
4104
  default: !1,
4104
- validator: Xa
4105
+ validator: Ka
4105
4106
  },
4106
4107
  contentClass: {
4107
4108
  type: String,
@@ -4176,7 +4177,7 @@ const pn = d(Te).extend({
4176
4177
  t.appendChild(this.$refs.content), this.hasDetached = !0;
4177
4178
  }
4178
4179
  }
4179
- }), Ka = d(dn, Bt(["top", "right", "bottom", "left", "absolute"]), Xt, pn), ui = Ka.extend().extend({
4180
+ }), Xa = d(dn, Bt(["top", "right", "bottom", "left", "absolute"]), Kt, pn), ui = Xa.extend().extend({
4180
4181
  name: "menuable",
4181
4182
  props: {
4182
4183
  allowOverflow: Boolean,
@@ -4357,7 +4358,7 @@ const pn = d(Te).extend({
4357
4358
  deactivate() {
4358
4359
  },
4359
4360
  genActivatorListeners() {
4360
- const t = Xt.options.methods.genActivatorListeners.call(this), e = t.click;
4361
+ const t = Kt.options.methods.genActivatorListeners.call(this), e = t.click;
4361
4362
  return e && (t.click = (i) => {
4362
4363
  this.openOnClick && e && e(i), this.absoluteX = i.clientX, this.absoluteY = i.clientY;
4363
4364
  }), t;
@@ -4458,7 +4459,7 @@ const pn = d(Te).extend({
4458
4459
  });
4459
4460
  }
4460
4461
  }
4461
- }), qa = d(Kt, Ut, di, ai, $, ui), fn = qa.extend({
4462
+ }), qa = d(Xt, Ut, di, ai, $, ui), fn = qa.extend({
4462
4463
  name: "v-menu",
4463
4464
  directives: {
4464
4465
  ClickOutside: Dt,
@@ -4627,7 +4628,7 @@ const pn = d(Te).extend({
4627
4628
  return this.isActive && !this._isDestroyed && this.closeOnClick && !this.$refs.content.contains(e);
4628
4629
  },
4629
4630
  genActivatorAttributes() {
4630
- const t = Xt.options.methods.genActivatorAttributes.call(this);
4631
+ const t = Kt.options.methods.genActivatorAttributes.call(this);
4631
4632
  return this.activeTile && this.activeTile.id ? {
4632
4633
  ...t,
4633
4634
  "aria-activedescendant": this.activeTile.id
@@ -4823,7 +4824,7 @@ const pi = v.extend({
4823
4824
  }));
4824
4825
  n.push(a);
4825
4826
  }
4826
- return t("div", U(i, {
4827
+ return t("div", Y(i, {
4827
4828
  class: {
4828
4829
  "v-simple-checkbox": !0,
4829
4830
  "v-simple-checkbox--disabled": e.disabled
@@ -5460,7 +5461,7 @@ const ne = d(x, vt, ai).extend({
5460
5461
  const e = ne.options.render.call(this, t);
5461
5462
  return e.data = e.data || {}, e.data.staticClass += " v-list-item__avatar", e;
5462
5463
  }
5463
- }), mc = F("v-list-item__action-text", "span"), ro = F("v-list-item__content", "div"), ao = F("v-list-item__title", "div"), gc = F("v-list-item__subtitle", "div"), Xi = d(x, $).extend({
5464
+ }), mc = F("v-list-item__action-text", "span"), ro = F("v-list-item__content", "div"), ao = F("v-list-item__title", "div"), gc = F("v-list-item__subtitle", "div"), Ki = d(x, $).extend({
5464
5465
  name: "v-select-list",
5465
5466
  // https://github.com/vuejs/vue/issues/6872
5466
5467
  directives: {
@@ -5678,8 +5679,9 @@ const mi = d($).extend({
5678
5679
  const {
5679
5680
  children: i,
5680
5681
  listeners: s,
5681
- props: n
5682
- } = e, r = {
5682
+ props: n,
5683
+ data: r
5684
+ } = e, a = Y({
5683
5685
  staticClass: "v-label",
5684
5686
  class: {
5685
5687
  "v-label--active": n.value,
@@ -5697,8 +5699,8 @@ const mi = d($).extend({
5697
5699
  position: n.absolute ? "absolute" : "relative"
5698
5700
  },
5699
5701
  ref: "label"
5700
- };
5701
- return t("label", x.options.methods.setTextColor(n.focused && n.color, r), i);
5702
+ }, r);
5703
+ return t("label", x.options.methods.setTextColor(n.focused && n.color, a), i);
5702
5704
  }
5703
5705
  });
5704
5706
  const oo = d(x, $).extend({
@@ -5899,7 +5901,7 @@ const oo = d(x, $).extend({
5899
5901
  e = e || this.internalValue, t && (this.hasInput = this.hasFocused = !0);
5900
5902
  for (let s = 0; s < this.rules.length; s++) {
5901
5903
  const n = this.rules[s], r = typeof n == "function" ? n(e) : n;
5902
- r === !1 || typeof r == "string" ? i.push(r || "") : typeof r != "boolean" && j(`Rules should return a string or boolean, received '${typeof r}' instead`, this);
5904
+ r === !1 || typeof r == "string" ? i.push(r || "") : typeof r != "boolean" && G(`Rules should return a string or boolean, received '${typeof r}' instead`, this);
5903
5905
  }
5904
5906
  return this.errorBucket = i, this.valid = i.length === 0, this.valid;
5905
5907
  }
@@ -6014,7 +6016,7 @@ const oo = d(x, $).extend({
6014
6016
  return [this.genLabel(), this.$slots.default];
6015
6017
  },
6016
6018
  genIcon(t, e, i = {}) {
6017
- const s = this[`${t}Icon`], n = `click:${te(t)}`, r = !!(this.listeners$[n] || e), a = U({
6019
+ const s = this[`${t}Icon`], n = `click:${te(t)}`, r = !!(this.listeners$[n] || e), a = Y({
6018
6020
  attrs: {
6019
6021
  "aria-label": r ? te(t).split("-")[0] + " icon" : void 0,
6020
6022
  color: this.validationState,
@@ -6748,7 +6750,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
6748
6750
  disableKeys: !0,
6749
6751
  openOnClick: !1,
6750
6752
  maxHeight: 304
6751
- }, go = d(L, fi, Kt, mo), B = go.extend().extend({
6753
+ }, go = d(L, fi, Xt, mo), B = go.extend().extend({
6752
6754
  name: "v-select",
6753
6755
  directives: {
6754
6756
  ClickOutside: Dt
@@ -6893,7 +6895,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
6893
6895
  };
6894
6896
  },
6895
6897
  staticList() {
6896
- return (this.$slots["no-data"] || this.$slots["prepend-item"] || this.$slots["append-item"]) && j("assert: staticList should not be called if slots are used"), this.$createElement(Xi, this.listData);
6898
+ return (this.$slots["no-data"] || this.$slots["prepend-item"] || this.$slots["append-item"]) && G("assert: staticList should not be called if slots are used"), this.$createElement(Ki, this.listData);
6897
6899
  },
6898
6900
  virtualizedItems() {
6899
6901
  return this.$_menuProps.auto ? this.computedItems : this.computedItems.slice(0, this.lastItem);
@@ -6915,6 +6917,8 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
6915
6917
  this.initialValue = t, this.setSelectedItems(), this.multiple && this.$nextTick(() => {
6916
6918
  var e;
6917
6919
  (e = this.$refs.menu) === null || e === void 0 || e.updateDimensions();
6920
+ }), this.hideSelected && this.$nextTick(() => {
6921
+ this.onScroll();
6918
6922
  });
6919
6923
  },
6920
6924
  isMenuActive(t) {
@@ -7010,7 +7014,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7010
7014
  },
7011
7015
  genIcon(t, e, i) {
7012
7016
  const s = I.options.methods.genIcon.call(this, t, e, i);
7013
- return t === "append" && (s.children[0].data = U(s.children[0].data, {
7017
+ return t === "append" && (s.children[0].data = Y(s.children[0].data, {
7014
7018
  attrs: {
7015
7019
  tabindex: s.children[0].componentOptions.listeners && "-1",
7016
7020
  "aria-hidden": "true",
@@ -7020,7 +7024,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7020
7024
  },
7021
7025
  genInput() {
7022
7026
  const t = L.options.methods.genInput.call(this);
7023
- return delete t.data.attrs.name, t.data = U(t.data, {
7027
+ return delete t.data.attrs.name, t.data = Y(t.data, {
7024
7028
  domProps: {
7025
7029
  value: null
7026
7030
  },
@@ -7065,16 +7069,16 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7065
7069
  const t = ["prepend-item", "no-data", "append-item"].filter((e) => this.$slots[e]).map((e) => this.$createElement("template", {
7066
7070
  slot: e
7067
7071
  }, this.$slots[e]));
7068
- return this.$createElement(Xi, {
7072
+ return this.$createElement(Ki, {
7069
7073
  ...this.listData
7070
7074
  }, t);
7071
7075
  },
7072
7076
  genMenu() {
7073
7077
  const t = this.$_menuProps;
7074
- return t.activator = this.$refs["input-slot"], // TODO: make this a computed property or helper or something
7078
+ return t.activator = this.$refs["input-slot"], "attach" in t || (// TODO: make this a computed property or helper or something
7075
7079
  this.attach === "" || // If used as a boolean prop (<v-menu attach>)
7076
7080
  this.attach === !0 || // If bound to a boolean (<v-menu :attach="true">)
7077
- this.attach === "attach" ? t.attach = this.$el : t.attach = this.attach, this.$createElement(fn, {
7081
+ this.attach === "attach" ? t.attach = this.$el : t.attach = this.attach), this.$createElement(fn, {
7078
7082
  attrs: {
7079
7083
  role: void 0
7080
7084
  },
@@ -7138,7 +7142,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7138
7142
  t.preventDefault(), this.isMenuActive && (t.stopPropagation(), this.isMenuActive = !1);
7139
7143
  },
7140
7144
  onKeyPress(t) {
7141
- if (this.multiple || !this.isInteractive || this.disableLookup)
7145
+ if (this.multiple || !this.isInteractive || this.disableLookup || t.key.length > 1 || t.ctrlKey || t.metaKey || t.altKey)
7142
7146
  return;
7143
7147
  const e = 1e3, i = performance.now();
7144
7148
  i - this.keyboardLookupLastTime > e && (this.keyboardLookupPrefix = ""), this.keyboardLookupPrefix += t.key.toLowerCase(), this.keyboardLookupLastTime = i;
@@ -7259,7 +7263,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7259
7263
  return e && (e === t || e.contains(t));
7260
7264
  }
7261
7265
  }
7262
- }), Ki = {
7266
+ }), Xi = {
7263
7267
  ...Ge,
7264
7268
  offsetY: !0,
7265
7269
  offsetOverflow: !0,
@@ -7267,10 +7271,6 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7267
7271
  }, it = B.extend({
7268
7272
  name: "v-autocomplete",
7269
7273
  props: {
7270
- allowOverflow: {
7271
- type: Boolean,
7272
- default: !0
7273
- },
7274
7274
  autoSelectFirst: {
7275
7275
  type: Boolean,
7276
7276
  default: !1
@@ -7282,7 +7282,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7282
7282
  hideNoData: Boolean,
7283
7283
  menuProps: {
7284
7284
  type: B.options.props.menuProps.type,
7285
- default: () => Ki
7285
+ default: () => Xi
7286
7286
  },
7287
7287
  noFilter: Boolean,
7288
7288
  searchInput: {
@@ -7343,7 +7343,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7343
7343
  $_menuProps() {
7344
7344
  const t = B.options.computed.$_menuProps.call(this);
7345
7345
  return t.contentClass = `v-autocomplete__content ${t.contentClass || ""}`.trim(), {
7346
- ...Ki,
7346
+ ...Xi,
7347
7347
  ...t
7348
7348
  };
7349
7349
  },
@@ -7425,7 +7425,7 @@ const uo = d(x, Bt(["absolute", "fixed", "top", "bottom"]), qt, $), vn = uo.exte
7425
7425
  },
7426
7426
  genInput() {
7427
7427
  const t = L.options.methods.genInput.call(this);
7428
- return t.data = U(t.data, {
7428
+ return t.data = Y(t.data, {
7429
7429
  attrs: {
7430
7430
  "aria-activedescendant": g(this.$refs.menu, "activeTile.id"),
7431
7431
  autocomplete: g(t.data, "attrs.autocomplete", "off")
@@ -8023,7 +8023,7 @@ const vo = d(x, $, Z).extend({
8023
8023
  let n, r;
8024
8024
  i === "y" ? (n = t.scrollTop === 0, r = t.scrollTop + t.clientHeight === t.scrollHeight) : (n = t.scrollLeft === 0, r = t.scrollLeft + t.clientWidth === t.scrollWidth);
8025
8025
  const a = s < 0, o = s > 0;
8026
- return !n && a || !r && o ? !0 : n || r ? this.shouldScroll(t.parentNode, e) : !1;
8026
+ return !n && a || !r && o ? !0 : (n || r) && t.parentNode ? this.shouldScroll(t.parentNode, e) : !1;
8027
8027
  },
8028
8028
  isInside(t, e) {
8029
8029
  return t === e ? !0 : t === null || t === document.body ? !1 : this.isInside(t.parentNode, e);
@@ -8052,7 +8052,7 @@ const vo = d(x, $, Z).extend({
8052
8052
  document.documentElement.classList.remove("overflow-y-hidden"), window.removeEventListener("wheel", this.scrollListener), window.removeEventListener("keydown", this.scrollListener);
8053
8053
  }
8054
8054
  }
8055
- }), yo = d(Kt, pn, gi, di, dn, Xt), qi = yo.extend({
8055
+ }), yo = d(Xt, pn, gi, di, dn, Kt), qi = yo.extend({
8056
8056
  name: "v-dialog",
8057
8057
  directives: {
8058
8058
  ClickOutside: Dt
@@ -8478,19 +8478,19 @@ function vi(t) {
8478
8478
  }
8479
8479
  const bn = /^(\d{4})-(\d{1,2})(-(\d{1,2}))?([^\d]+(\d{1,2}))?(:(\d{1,2}))?(:(\d{1,2}))?$/, $n = /(\d\d?)(:(\d\d?)|)(:(\d\d?)|)/, wo = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], ko = [0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Io = 28, To = 31, yi = 12, xn = 1, _e = 1, at = 7, Zi = 60, _o = 59, Ao = 24 * 60, Bo = 23, Do = 1e4, Eo = 100, Mo = 100, Vo = 1e4;
8480
8480
  function Lo(t, e, i) {
8481
- const s = G(t);
8481
+ const s = U(t);
8482
8482
  return In(s, e[0], kn), J(s), i && lt(s, i, s.hasTime), s;
8483
8483
  }
8484
8484
  function Oo(t, e, i) {
8485
- const s = G(t);
8485
+ const s = U(t);
8486
8486
  return In(s, e[e.length - 1]), J(s), i && lt(s, i, s.hasTime), s;
8487
8487
  }
8488
8488
  function Sn(t) {
8489
- const e = G(t);
8489
+ const e = U(t);
8490
8490
  return e.day = _e, Ae(e), J(e), e;
8491
8491
  }
8492
8492
  function Cn(t) {
8493
- const e = G(t);
8493
+ const e = U(t);
8494
8494
  return e.day = Be(e.year, e.month), Ae(e), J(e), e;
8495
8495
  }
8496
8496
  function Po(t) {
@@ -8508,7 +8508,7 @@ function Ji(t) {
8508
8508
  function Ht(t) {
8509
8509
  return typeof t == "number" && isFinite(t) || typeof t == "string" && !!bn.exec(t) || t instanceof Date;
8510
8510
  }
8511
- function K(t, e = !1, i) {
8511
+ function X(t, e = !1, i) {
8512
8512
  if (typeof t == "number" && isFinite(t) && (t = new Date(t)), t instanceof Date) {
8513
8513
  const r = bi(t);
8514
8514
  return i && lt(r, i, r.hasTime), r;
@@ -8561,15 +8561,15 @@ function bi(t) {
8561
8561
  function V(t) {
8562
8562
  return t.year * Do + t.month * Eo + t.day;
8563
8563
  }
8564
- function Xe(t) {
8564
+ function Ke(t) {
8565
8565
  return t.hour * Mo + t.minute;
8566
8566
  }
8567
8567
  function It(t) {
8568
- return V(t) * Vo + Xe(t);
8568
+ return V(t) * Vo + Ke(t);
8569
8569
  }
8570
8570
  function lt(t, e, i = !1) {
8571
8571
  let s = V(e), n = V(t), r = s === n;
8572
- return t.hasTime && i && r && (s = Xe(e), n = Xe(t), r = s === n), t.past = n < s, t.present = r, t.future = n > s, t;
8572
+ return t.hasTime && i && r && (s = Ke(e), n = Ke(t), r = s === n), t.past = n < s, t.present = r, t.future = n > s, t;
8573
8573
  }
8574
8574
  function Qi(t) {
8575
8575
  return t instanceof Date || typeof t == "number" && isFinite(t);
@@ -8596,7 +8596,7 @@ function Ho(t) {
8596
8596
  function Be(t, e) {
8597
8597
  return vi(t) ? ko[e] : wo[e];
8598
8598
  }
8599
- function G(t) {
8599
+ function U(t) {
8600
8600
  const {
8601
8601
  date: e,
8602
8602
  time: i,
@@ -8683,7 +8683,7 @@ function re(t) {
8683
8683
  }
8684
8684
  function pe(t, e, i, s, n = 42, r = 0) {
8685
8685
  const a = V(e), o = [];
8686
- let l = G(t), h = 0, c = h === a;
8686
+ let l = U(t), h = 0, c = h === a;
8687
8687
  if (a < V(t))
8688
8688
  throw new Error("End date is earlier than start date.");
8689
8689
  for (; (!c || o.length < r) && o.length < n; ) {
@@ -8691,7 +8691,7 @@ function pe(t, e, i, s, n = 42, r = 0) {
8691
8691
  l = ft(l);
8692
8692
  continue;
8693
8693
  }
8694
- const u = G(l);
8694
+ const u = U(l);
8695
8695
  J(u), lt(u, i), o.push(u), l = ut(l, ft, s[l.weekday]);
8696
8696
  }
8697
8697
  if (!o.length)
@@ -8701,7 +8701,7 @@ function pe(t, e, i, s, n = 42, r = 0) {
8701
8701
  function Ro(t, e, i, s, n) {
8702
8702
  const r = [];
8703
8703
  for (let a = 0; a < s; a++) {
8704
- const o = e + a * i, l = G(t);
8704
+ const o = e + a * i, l = U(t);
8705
8705
  r.push(wn(l, o, n));
8706
8706
  }
8707
8707
  return r;
@@ -8726,13 +8726,13 @@ const Wo = v.extend({
8726
8726
  },
8727
8727
  data: () => ({
8728
8728
  times: {
8729
- now: K("0000-00-00 00:00", !0),
8730
- today: K("0000-00-00", !0)
8729
+ now: X("0000-00-00 00:00", !0),
8730
+ today: X("0000-00-00", !0)
8731
8731
  }
8732
8732
  }),
8733
8733
  computed: {
8734
8734
  parsedNow() {
8735
- return this.now ? K(this.now, !0) : null;
8735
+ return this.now ? X(this.now, !0) : null;
8736
8736
  }
8737
8737
  },
8738
8738
  watch: {
@@ -8833,7 +8833,7 @@ function Dn(t) {
8833
8833
  };
8834
8834
  return e;
8835
8835
  }
8836
- const Jt = 100, Go = 5, Uo = 1.7, Xo = (t, e, i) => {
8836
+ const Jt = 100, Go = 5, Uo = 1.7, Ko = (t, e, i) => {
8837
8837
  const s = Dn(e);
8838
8838
  return (n, r, a, o) => {
8839
8839
  if (!a)
@@ -8854,12 +8854,12 @@ const Jt = 100, Go = 5, Uo = 1.7, Xo = (t, e, i) => {
8854
8854
  }
8855
8855
  f.push(y);
8856
8856
  }
8857
- Ko(f, i);
8857
+ Xo(f, i);
8858
8858
  }
8859
8859
  return h.sort((u, f) => u.left - f.left || u.event.startTimestampIdentifier - f.event.startTimestampIdentifier), h;
8860
8860
  };
8861
8861
  };
8862
- function Ko(t, e) {
8862
+ function Xo(t, e) {
8863
8863
  for (const i of t) {
8864
8864
  const {
8865
8865
  visual: s,
@@ -8961,9 +8961,9 @@ const ss = 100, sl = (t, e, i) => {
8961
8961
  }), l;
8962
8962
  };
8963
8963
  }, Mn = {
8964
- stack: Xo,
8964
+ stack: Ko,
8965
8965
  column: sl
8966
- }, X = {
8966
+ }, K = {
8967
8967
  base: {
8968
8968
  start: {
8969
8969
  type: [String, Number, Date],
@@ -9210,7 +9210,7 @@ const xi = d(
9210
9210
  directives: {
9211
9211
  Resize: ct
9212
9212
  },
9213
- props: X.base,
9213
+ props: K.base,
9214
9214
  computed: {
9215
9215
  parsedWeekdays() {
9216
9216
  return Array.isArray(this.weekdays) ? this.weekdays : (this.weekdays || "").split(",").map((t) => parseInt(t, 10));
@@ -9223,10 +9223,10 @@ const xi = d(
9223
9223
  return t.reverse(), t;
9224
9224
  },
9225
9225
  parsedStart() {
9226
- return K(this.start, !0);
9226
+ return X(this.start, !0);
9227
9227
  },
9228
9228
  parsedEnd() {
9229
- const t = this.parsedStart, e = this.end && K(this.end) || t;
9229
+ const t = this.parsedStart, e = this.end && X(this.end) || t;
9230
9230
  return It(e) < It(t) ? t : e;
9231
9231
  },
9232
9232
  days() {
@@ -9275,7 +9275,7 @@ const xi = d(
9275
9275
  }
9276
9276
  });
9277
9277
  function rl(t, e, i, s, n = !1, r = !1) {
9278
- const a = t[i], o = t[s], l = K(a, !0), h = o ? K(o, !0) : l, c = Qi(a) ? ts(l, n) : l, u = Qi(o) ? ts(h, n) : h, f = V(c), S = It(c), y = V(u), E = c.hasTime ? 0 : 2359, A = It(u) + E, yt = !c.hasTime;
9278
+ const a = t[i], o = t[s], l = X(a, !0), h = o ? X(o, !0) : l, c = Qi(a) ? ts(l, n) : l, u = Qi(o) ? ts(h, n) : h, f = V(c), S = It(c), y = V(u), E = c.hasTime ? 0 : 2359, A = It(u) + E, yt = !c.hasTime;
9279
9279
  return {
9280
9280
  input: t,
9281
9281
  start: c,
@@ -9289,14 +9289,14 @@ function rl(t, e, i, s, n = !1, r = !1) {
9289
9289
  category: r
9290
9290
  };
9291
9291
  }
9292
- function Ke(t, e) {
9292
+ function Xe(t, e) {
9293
9293
  return e >= t.startIdentifier && e <= t.endIdentifier;
9294
9294
  }
9295
9295
  function al(t, e) {
9296
9296
  return t.end.time === "00:00" && t.end.date === e.date && t.start.date !== e.date;
9297
9297
  }
9298
9298
  function ns(t, e, i, s) {
9299
- return i === t.startIdentifier || s === e.weekday && Ke(t, i);
9299
+ return i === t.startIdentifier || s === e.weekday && Xe(t, i);
9300
9300
  }
9301
9301
  function ol(t, e, i) {
9302
9302
  return e <= t.endIdentifier && i >= t.startIdentifier;
@@ -9307,9 +9307,9 @@ const ll = 100, hl = 95, cl = 1440, ul = xi.extend({
9307
9307
  ripple: R
9308
9308
  },
9309
9309
  props: {
9310
- ...X.events,
9311
- ...X.calendar,
9312
- ...X.category
9310
+ ...K.events,
9311
+ ...K.calendar,
9312
+ ...K.category
9313
9313
  },
9314
9314
  computed: {
9315
9315
  noEvents() {
@@ -9558,11 +9558,11 @@ const ll = 100, hl = 95, cl = 1440, ul = xi.extend({
9558
9558
  },
9559
9559
  getEventsForDayAll(t) {
9560
9560
  const e = V(t), i = this.eventWeekdays[0];
9561
- return this.parsedEvents.filter((s) => s.allDay && (this.categoryMode ? Ke(s, e) : ns(s, t, e, i)) && this.isEventForCategory(s, t.category));
9561
+ return this.parsedEvents.filter((s) => s.allDay && (this.categoryMode ? Xe(s, e) : ns(s, t, e, i)) && this.isEventForCategory(s, t.category));
9562
9562
  },
9563
9563
  getEventsForDayTimed(t) {
9564
9564
  const e = V(t);
9565
- return this.parsedEvents.filter((i) => !i.allDay && Ke(i, e) && this.isEventForCategory(i, t.category));
9565
+ return this.parsedEvents.filter((i) => !i.allDay && Xe(i, e) && this.isEventForCategory(i, t.category));
9566
9566
  },
9567
9567
  getScopedSlots() {
9568
9568
  if (this.noEvents)
@@ -9616,7 +9616,7 @@ const ll = 100, hl = 95, cl = 1440, ul = xi.extend({
9616
9616
  });
9617
9617
  const Vn = xi.extend({
9618
9618
  name: "v-calendar-weekly",
9619
- props: X.weeks,
9619
+ props: K.weeks,
9620
9620
  computed: {
9621
9621
  staticClass() {
9622
9622
  return "v-calendar-weekly";
@@ -9729,7 +9729,7 @@ const Vn = xi.extend({
9729
9729
  },
9730
9730
  genDayLabelButton(t) {
9731
9731
  const e = t.present ? this.color : "transparent", i = t.day === 1 && this.showMonthOnFirst;
9732
- return this.$createElement(Y, {
9732
+ return this.$createElement(j, {
9733
9733
  props: {
9734
9734
  color: e,
9735
9735
  fab: !0,
@@ -9778,16 +9778,16 @@ const Vn = xi.extend({
9778
9778
  return "v-calendar-monthly v-calendar-weekly";
9779
9779
  },
9780
9780
  parsedStart() {
9781
- return Sn(K(this.start, !0));
9781
+ return Sn(X(this.start, !0));
9782
9782
  },
9783
9783
  parsedEnd() {
9784
- return Cn(K(this.end, !0));
9784
+ return Cn(X(this.end, !0));
9785
9785
  }
9786
9786
  }
9787
9787
  });
9788
9788
  const pl = xi.extend({
9789
9789
  name: "calendar-with-intervals",
9790
- props: X.intervals,
9790
+ props: K.intervals,
9791
9791
  computed: {
9792
9792
  parsedFirstInterval() {
9793
9793
  return parseInt(this.firstInterval);
@@ -9844,11 +9844,11 @@ const pl = xi.extend({
9844
9844
  intervalStyleDefault(t) {
9845
9845
  },
9846
9846
  getTimestampAtEvent(t, e) {
9847
- const i = G(e), s = t.currentTarget.getBoundingClientRect(), n = this.firstMinute, r = t, a = t, o = r.changedTouches || r.touches, h = ((o && o[0] ? o[0].clientY : a.clientY) - s.top) / this.parsedIntervalHeight, c = Math.floor(h * this.parsedIntervalMinutes), u = n + c;
9847
+ const i = U(e), s = t.currentTarget.getBoundingClientRect(), n = this.firstMinute, r = t, a = t, o = r.changedTouches || r.touches, h = ((o && o[0] ? o[0].clientY : a.clientY) - s.top) / this.parsedIntervalHeight, c = Math.floor(h * this.parsedIntervalMinutes), u = n + c;
9848
9848
  return wn(i, u, this.times.now);
9849
9849
  },
9850
9850
  getSlotScope(t) {
9851
- const e = G(t);
9851
+ const e = U(t);
9852
9852
  return e.timeToY = this.timeToY, e.timeDelta = this.timeDelta, e.minutesToPixels = this.minutesToPixels, e.week = this.days, e;
9853
9853
  },
9854
9854
  scrollToTime(t) {
@@ -9951,7 +9951,7 @@ const pl = xi.extend({
9951
9951
  },
9952
9952
  genHeadDayButton(t) {
9953
9953
  const e = t.present ? this.color : "transparent";
9954
- return this.$createElement(Y, {
9954
+ return this.$createElement(j, {
9955
9955
  props: {
9956
9956
  color: e,
9957
9957
  fab: !0,
@@ -10093,7 +10093,7 @@ function Ln(t, e) {
10093
10093
  }
10094
10094
  const ml = Mt.extend({
10095
10095
  name: "v-calendar-category",
10096
- props: X.category,
10096
+ props: K.category,
10097
10097
  computed: {
10098
10098
  classes() {
10099
10099
  return {
@@ -10186,10 +10186,10 @@ const ml = Mt.extend({
10186
10186
  }), Cc = ul.extend({
10187
10187
  name: "v-calendar",
10188
10188
  props: {
10189
- ...X.calendar,
10190
- ...X.weeks,
10191
- ...X.intervals,
10192
- ...X.category
10189
+ ...K.calendar,
10190
+ ...K.weeks,
10191
+ ...K.intervals,
10192
+ ...K.category
10193
10193
  },
10194
10194
  data: () => ({
10195
10195
  lastStart: null,
@@ -10197,7 +10197,7 @@ const ml = Mt.extend({
10197
10197
  }),
10198
10198
  computed: {
10199
10199
  parsedValue() {
10200
- return Ht(this.value) ? K(this.value, !0) : this.parsedStart || this.times.today;
10200
+ return Ht(this.value) ? X(this.value, !0) : this.parsedStart || this.times.today;
10201
10201
  },
10202
10202
  parsedCategoryDays() {
10203
10203
  return parseInt(this.categoryDays) || 1;
@@ -10216,7 +10216,7 @@ const ml = Mt.extend({
10216
10216
  e = Mt, i = 1, s = [r.weekday];
10217
10217
  break;
10218
10218
  case "4day":
10219
- e = Mt, a = ut(G(a), ft, 3), J(a), i = 4, s = [r.weekday, (r.weekday + 1) % 7, (r.weekday + 2) % 7, (r.weekday + 3) % 7];
10219
+ e = Mt, a = ut(U(a), ft, 3), J(a), i = 4, s = [r.weekday, (r.weekday + 1) % 7, (r.weekday + 2) % 7, (r.weekday + 3) % 7];
10220
10220
  break;
10221
10221
  case "custom-weekly":
10222
10222
  e = Vn, r = this.parsedStart || t, a = this.parsedEnd;
@@ -10226,7 +10226,7 @@ const ml = Mt.extend({
10226
10226
  break;
10227
10227
  case "category":
10228
10228
  const o = this.parsedCategoryDays;
10229
- e = ml, a = ut(G(a), ft, o), J(a), i = o, s = [];
10229
+ e = ml, a = ut(U(a), ft, o), J(a), i = o, s = [];
10230
10230
  for (let l = 0; l < o; l++)
10231
10231
  s.push((r.weekday + l) % 7);
10232
10232
  n = this.getCategoryList(n);
@@ -10296,7 +10296,7 @@ const ml = Mt.extend({
10296
10296
  }));
10297
10297
  },
10298
10298
  move(t = 1) {
10299
- const e = G(this.parsedValue), i = t > 0, s = i ? ft : kn, n = i ? To : _e;
10299
+ const e = U(this.parsedValue), i = t > 0, s = i ? ft : kn, n = i ? To : _e;
10300
10300
  let r = i ? t : -t;
10301
10301
  for (; --r >= 0; )
10302
10302
  switch (this.type) {
@@ -10341,7 +10341,7 @@ const ml = Mt.extend({
10341
10341
  return e && e.scrollToTime ? e.scrollToTime(t) : !1;
10342
10342
  },
10343
10343
  parseTimestamp(t, e) {
10344
- return K(t, e, this.times.now);
10344
+ return X(t, e, this.times.now);
10345
10345
  },
10346
10346
  timestampToDate(t) {
10347
10347
  return re(t);
@@ -10581,7 +10581,7 @@ const xt = P.extend({
10581
10581
  }, l = (r = (n = (s = this.$scopedSlots)[t]) === null || n === void 0 ? void 0 : n.call(s, {
10582
10582
  on: a,
10583
10583
  attrs: o
10584
- })) !== null && r !== void 0 ? r : [this.$createElement(Y, {
10584
+ })) !== null && r !== void 0 ? r : [this.$createElement(j, {
10585
10585
  props: {
10586
10586
  icon: !0
10587
10587
  },
@@ -10760,7 +10760,7 @@ const xt = P.extend({
10760
10760
  genItems() {
10761
10761
  const t = this.items.length, e = [];
10762
10762
  for (let i = 0; i < t; i++) {
10763
- const s = this.$createElement(Y, {
10763
+ const s = this.$createElement(j, {
10764
10764
  staticClass: "v-carousel__controls__item",
10765
10765
  attrs: {
10766
10766
  "aria-label": this.$vuetify.lang.t("$vuetify.carousel.ariaLabel.delimiter", i + 1, t)
@@ -11901,7 +11901,7 @@ function fe(t) {
11901
11901
  };
11902
11902
  }
11903
11903
  function On(t) {
11904
- const e = Kr(t), i = Hs(e), s = xe(e);
11904
+ const e = Xr(t), i = Hs(e), s = xe(e);
11905
11905
  return {
11906
11906
  alpha: e.a,
11907
11907
  hex: i.substr(0, 7),
@@ -12323,7 +12323,7 @@ const Je = {
12323
12323
  });
12324
12324
  },
12325
12325
  genSwitch() {
12326
- return this.$createElement(Y, {
12326
+ return this.$createElement(j, {
12327
12327
  props: {
12328
12328
  small: !0,
12329
12329
  icon: !0,
@@ -12646,7 +12646,7 @@ function jl(t) {
12646
12646
  return i.base ? [i.base, i.darken4, i.darken3, i.darken2, i.darken1, i.lighten1, i.lighten2, i.lighten3, i.lighten4, i.lighten5] : [i.black, i.white, i.transparent];
12647
12647
  });
12648
12648
  }
12649
- const Gl = Ci("#FFFFFF").rgba, Ul = Ci("#000000").rgba, Xl = d($).extend({
12649
+ const Gl = Ci("#FFFFFF").rgba, Ul = Ci("#000000").rgba, Kl = d($).extend({
12650
12650
  name: "v-color-picker-swatches",
12651
12651
  props: {
12652
12652
  swatches: {
@@ -12807,7 +12807,7 @@ const Gl = Ci("#FFFFFF").rgba, Ul = Ci("#000000").rgba, Xl = d($).extend({
12807
12807
  });
12808
12808
  },
12809
12809
  genSwatches() {
12810
- return this.$createElement(Xl, {
12810
+ return this.$createElement(Kl, {
12811
12811
  props: {
12812
12812
  dark: this.dark,
12813
12813
  light: this.light,
@@ -13440,7 +13440,7 @@ const Hn = v.extend({
13440
13440
  }, t);
13441
13441
  },
13442
13442
  genIcon(t, e, i, s) {
13443
- return this.$createElement(Y, {
13443
+ return this.$createElement(j, {
13444
13444
  props: {
13445
13445
  disabled: e || this.disablePagination,
13446
13446
  icon: !0,
@@ -13572,10 +13572,10 @@ const Hn = v.extend({
13572
13572
  },
13573
13573
  methods: {
13574
13574
  onKeyDown(t) {
13575
- t.keyCode === m.shift && (this.shiftKeyDown = !0);
13575
+ this.shiftKeyDown = t.keyCode === m.shift || t.shiftKey;
13576
13576
  },
13577
13577
  onKeyUp(t) {
13578
- t.keyCode === m.shift && (this.shiftKeyDown = !1);
13578
+ (t.keyCode === m.shift || !t.shiftKey) && (this.shiftKeyDown = !1);
13579
13579
  },
13580
13580
  toggleSelectAll(t) {
13581
13581
  const e = Object.assign({}, this.selection);
@@ -13793,7 +13793,7 @@ const wi = d().extend({
13793
13793
  }, [this.sortIcon]);
13794
13794
  }
13795
13795
  }
13796
- }), Kl = d(wi).extend({
13796
+ }), Xl = d(wi).extend({
13797
13797
  name: "v-data-table-header-mobile",
13798
13798
  props: {
13799
13799
  sortByText: {
@@ -13954,9 +13954,9 @@ const Ql = v.extend({
13954
13954
  }) {
13955
13955
  Zl(i);
13956
13956
  const n = Jl(s(), t);
13957
- return i = U(i, {
13957
+ return i = Y(i, {
13958
13958
  props: e
13959
- }), e.mobile ? t(Kl, i, n) : t(ql, i, n);
13959
+ }), e.mobile ? t(Xl, i, n) : t(ql, i, n);
13960
13960
  }
13961
13961
  });
13962
13962
  function th(t) {
@@ -14345,7 +14345,7 @@ const Pc = d(ls, wt).extend({
14345
14345
  remove: a
14346
14346
  })]));
14347
14347
  else {
14348
- const o = this.$createElement(Y, {
14348
+ const o = this.$createElement(j, {
14349
14349
  staticClass: "ma-0",
14350
14350
  props: {
14351
14351
  icon: !0,
@@ -14354,7 +14354,7 @@ const Pc = d(ls, wt).extend({
14354
14354
  on: {
14355
14355
  click: r
14356
14356
  }
14357
- }, [this.$createElement(w, [s ? "$minus" : "$plus"])]), l = this.$createElement(Y, {
14357
+ }, [this.$createElement(w, [s ? "$minus" : "$plus"])]), l = this.$createElement(j, {
14358
14358
  staticClass: "ma-0",
14359
14359
  props: {
14360
14360
  icon: !0,
@@ -14483,7 +14483,7 @@ const Pc = d(ls, wt).extend({
14483
14483
  on: {
14484
14484
  // TODO: for click, the first argument should be the event, and the second argument should be data,
14485
14485
  // but this is a breaking change so it's for v3
14486
- click: () => this.$emit("click:row", t, n),
14486
+ click: (r) => this.$emit("click:row", t, n, r),
14487
14487
  contextmenu: (r) => this.$emit("contextmenu:row", r, n),
14488
14488
  dblclick: (r) => this.$emit("dblclick:row", r, n)
14489
14489
  }
@@ -14533,7 +14533,8 @@ const Pc = d(ls, wt).extend({
14533
14533
  return this.$createElement(Fn, {
14534
14534
  props: e,
14535
14535
  class: {
14536
- "v-data-table--mobile": this.isMobile
14536
+ "v-data-table--mobile": this.isMobile,
14537
+ "v-data-table--selectable": this.showSelect
14537
14538
  }
14538
14539
  }, [this.proxySlot("top", b(this, "top", {
14539
14540
  ...t,
@@ -14612,7 +14613,7 @@ const Hc = d(di, $).extend({
14612
14613
  t && t.focus();
14613
14614
  },
14614
14615
  genButton(t, e) {
14615
- return this.$createElement(Y, {
14616
+ return this.$createElement(j, {
14616
14617
  props: {
14617
14618
  text: !0,
14618
14619
  color: "primary",
@@ -14969,7 +14970,7 @@ const zn = (t, e) => {
14969
14970
  methods: {
14970
14971
  genBtn(t) {
14971
14972
  const e = t > 0 ? this.nextAriaLabel : this.prevAriaLabel, i = e ? this.$vuetify.lang.t(e) : void 0, s = this.disabled || t < 0 && this.min && this.calculateChange(t) < this.min || t > 0 && this.max && this.calculateChange(t) > this.max;
14972
- return this.$createElement(Y, {
14973
+ return this.$createElement(j, {
14973
14974
  attrs: {
14974
14975
  "aria-label": i
14975
14976
  },
@@ -16210,7 +16211,7 @@ const Gc = L.extend({
16210
16211
  watch: {
16211
16212
  readonly: {
16212
16213
  handler(t) {
16213
- t === !0 && j("readonly is not supported on <v-file-input>", this);
16214
+ t === !0 && G("readonly is not supported on <v-file-input>", this);
16214
16215
  },
16215
16216
  immediate: !0
16216
16217
  },
@@ -16365,7 +16366,7 @@ const Uc = d(_, Yt("footer", ["height", "inset"]), jt).extend({
16365
16366
  });
16366
16367
  return t(this.tag, e, this.$slots.default);
16367
16368
  }
16368
- }), Xc = d(
16369
+ }), Kc = d(
16369
16370
  Tt,
16370
16371
  ke("form")
16371
16372
  /* @vue/component */
@@ -16490,7 +16491,7 @@ function Ii(t) {
16490
16491
  }
16491
16492
  });
16492
16493
  }
16493
- const Kc = Ii("container").extend({
16494
+ const Xc = Ii("container").extend({
16494
16495
  name: "v-container",
16495
16496
  functional: !0,
16496
16497
  props: {
@@ -16518,7 +16519,7 @@ const Kc = Ii("container").extend({
16518
16519
  return !1;
16519
16520
  const o = r[a];
16520
16521
  return a.startsWith("data-") ? (i.attrs[a] = o, !1) : o || typeof o == "string";
16521
- })), e.id && (i.domProps = i.domProps || {}, i.domProps.id = e.id), t(e.tag, U(i, {
16522
+ })), e.id && (i.domProps = i.domProps || {}, i.domProps.id = e.id), t(e.tag, Y(i, {
16522
16523
  staticClass: "container",
16523
16524
  class: Array({
16524
16525
  "container--fluid": e.fluid
@@ -16606,7 +16607,7 @@ const ds = /* @__PURE__ */ new Map(), qc = v.extend({
16606
16607
  [`align-self-${e.alignSelf}`]: e.alignSelf
16607
16608
  }), ds.set(r, a);
16608
16609
  }
16609
- return t(e.tag, U(i, {
16610
+ return t(e.tag, Y(i, {
16610
16611
  class: a
16611
16612
  }), s);
16612
16613
  }
@@ -16614,10 +16615,10 @@ const ds = /* @__PURE__ */ new Map(), qc = v.extend({
16614
16615
  function Ai(t, e) {
16615
16616
  return mh.reduce((i, s) => (i[t + ye(s)] = e(), i), {});
16616
16617
  }
16617
- const Xn = (t) => [..._i, "baseline", "stretch"].includes(t), Kn = Ai("align", () => ({
16618
+ const Kn = (t) => [..._i, "baseline", "stretch"].includes(t), Xn = Ai("align", () => ({
16618
16619
  type: String,
16619
16620
  default: null,
16620
- validator: Xn
16621
+ validator: Kn
16621
16622
  })), qn = (t) => [..._i, "space-between", "space-around"].includes(t), Zn = Ai("justify", () => ({
16622
16623
  type: String,
16623
16624
  default: null,
@@ -16627,7 +16628,7 @@ const Xn = (t) => [..._i, "baseline", "stretch"].includes(t), Kn = Ai("align", (
16627
16628
  default: null,
16628
16629
  validator: Jn
16629
16630
  })), ps = {
16630
- align: Object.keys(Kn),
16631
+ align: Object.keys(Xn),
16631
16632
  justify: Object.keys(Zn),
16632
16633
  alignContent: Object.keys(Qn)
16633
16634
  }, gh = {
@@ -16658,9 +16659,9 @@ const fs = /* @__PURE__ */ new Map(), Zc = v.extend({
16658
16659
  align: {
16659
16660
  type: String,
16660
16661
  default: null,
16661
- validator: Xn
16662
+ validator: Kn
16662
16663
  },
16663
- ...Kn,
16664
+ ...Xn,
16664
16665
  justify: {
16665
16666
  type: String,
16666
16667
  default: null,
@@ -16699,7 +16700,7 @@ const fs = /* @__PURE__ */ new Map(), Zc = v.extend({
16699
16700
  [`align-content-${e.alignContent}`]: e.alignContent
16700
16701
  }), fs.set(n, r);
16701
16702
  }
16702
- return t(e.tag, U(i, {
16703
+ return t(e.tag, Y(i, {
16703
16704
  staticClass: "row",
16704
16705
  class: r
16705
16706
  }), s);
@@ -16830,7 +16831,7 @@ const fs = /* @__PURE__ */ new Map(), Zc = v.extend({
16830
16831
  }, [this.genContent()]);
16831
16832
  }
16832
16833
  });
16833
- const yh = d(Yt("left", ["isActive", "isMobile", "miniVariant", "expandOnHover", "permanent", "right", "temporary", "width"]), x, Kt, kt, gi, jt, $), nu = yh.extend({
16834
+ const yh = d(Yt("left", ["isActive", "isMobile", "miniVariant", "expandOnHover", "permanent", "right", "temporary", "width"]), x, Xt, kt, gi, jt, $), nu = yh.extend({
16834
16835
  name: "v-navigation-drawer",
16835
16836
  directives: {
16836
16837
  ClickOutside: Dt,
@@ -17370,7 +17371,7 @@ const au = it.extend({
17370
17371
  },
17371
17372
  genSegmentedBtn(t) {
17372
17373
  const e = this.getValue(t), i = this.computedItems.find((s) => this.getValue(s) === e) || t;
17373
- return !i.text || !i.callback ? (D('When using "segmented" prop without a selection slot, items must contain both a text and callback property', this), null) : this.$createElement(Y, {
17374
+ return !i.text || !i.callback ? (D('When using "segmented" prop without a selection slot, items must contain both a text and callback property', this), null) : this.$createElement(j, {
17374
17375
  props: {
17375
17376
  text: !0
17376
17377
  },
@@ -18807,7 +18808,7 @@ const gu = d(x).extend({
18807
18808
  return this.type === "trend" ? this.genTrend() : this.genBars();
18808
18809
  }
18809
18810
  });
18810
- const vu = d(Xs, Z, li).extend({
18811
+ const vu = d(Ks, Z, li).extend({
18811
18812
  name: "v-speed-dial",
18812
18813
  directives: {
18813
18814
  ClickOutside: Dt
@@ -20328,7 +20329,7 @@ const Ph = d(
20328
20329
  return this.genPicker("v-picker--time");
20329
20330
  }
20330
20331
  }), Eu = F("v-toolbar__title"), Mu = F("v-toolbar__items");
20331
- const Vu = d(x, Ut, Kt, ui).extend({
20332
+ const Vu = d(x, Ut, Xt, ui).extend({
20332
20333
  name: "v-tooltip",
20333
20334
  props: {
20334
20335
  closeDelay: {
@@ -20409,7 +20410,7 @@ const Vu = d(x, Ut, Kt, ui).extend({
20409
20410
  });
20410
20411
  },
20411
20412
  mounted() {
20412
- Ts(this, "activator", !0) === "v-slot" && j(`v-tooltip's activator slot must be bound, try '<template #activator="data"><v-btn v-on="data.on>'`, this);
20413
+ Ts(this, "activator", !0) === "v-slot" && G(`v-tooltip's activator slot must be bound, try '<template #activator="data"><v-btn v-on="data.on>'`, this);
20413
20414
  },
20414
20415
  methods: {
20415
20416
  activate() {
@@ -20419,7 +20420,7 @@ const Vu = d(x, Ut, Kt, ui).extend({
20419
20420
  this.runDelay("close");
20420
20421
  },
20421
20422
  genActivatorListeners() {
20422
- const t = Xt.options.methods.genActivatorListeners.call(this);
20423
+ const t = Kt.options.methods.genActivatorListeners.call(this);
20423
20424
  return this.openOnFocus && (t.focus = (e) => {
20424
20425
  this.getActivator(e), this.runDelay("open");
20425
20426
  }, t.blur = (e) => {
@@ -21095,8 +21096,8 @@ export {
21095
21096
  Va as Touch,
21096
21097
  Zh as VAlert,
21097
21098
  Gh as VApp,
21098
- Xh as VAppBar,
21099
- Kh as VAppBarNavIcon,
21099
+ Kh as VAppBar,
21100
+ Xh as VAppBarNavIcon,
21100
21101
  qh as VAppBarTitle,
21101
21102
  it as VAutocomplete,
21102
21103
  ne as VAvatar,
@@ -21107,7 +21108,7 @@ export {
21107
21108
  xc as VBreadcrumbs,
21108
21109
  $o as VBreadcrumbsDivider,
21109
21110
  bo as VBreadcrumbsItem,
21110
- Y as VBtn,
21111
+ j as VBtn,
21111
21112
  Sc as VBtnToggle,
21112
21113
  Cc as VCalendar,
21113
21114
  ml as VCalendarCategory,
@@ -21129,9 +21130,9 @@ export {
21129
21130
  qc as VCol,
21130
21131
  Vc as VColorPicker,
21131
21132
  Sl as VColorPickerCanvas,
21132
- Xl as VColorPickerSwatches,
21133
+ Kl as VColorPickerSwatches,
21133
21134
  Oc as VCombobox,
21134
- Kc as VContainer,
21135
+ Xc as VContainer,
21135
21136
  Lc as VContent,
21136
21137
  co as VCounter,
21137
21138
  Qe as VData,
@@ -21162,7 +21163,7 @@ export {
21162
21163
  Gc as VFileInput,
21163
21164
  tu as VFlex,
21164
21165
  Uc as VFooter,
21165
- Xc as VForm,
21166
+ Kc as VForm,
21166
21167
  eu as VHover,
21167
21168
  w as VIcon,
21168
21169
  oi as VImg,