@vcmap/ui 5.0.2 → 5.1.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/build/buildTypes.js +176 -0
- package/build/lintTypes.js +30 -0
- package/config/aerowest.config.json +4 -0
- package/config/base.config.json +22 -0
- package/config/dev.config.json +176 -5
- package/config/www.config.json +32 -0
- package/dist/assets/{cesium.a3a1dc.js → cesium.b97c3b.js} +1859 -1828
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.bb64ed.js → core.5b03e5.js} +5859 -5041
- package/dist/assets/core.js +1 -1
- package/dist/assets/index-92075a75.js +1 -0
- package/dist/assets/{ol.833fa9.js → ol.0cd250.js} +7257 -7252
- package/dist/assets/ol.js +1 -1
- package/dist/assets/{ui.aeb2ec.css → ui.67779e.css} +2 -2
- package/dist/assets/{ui.aeb2ec.js → ui.67779e.js} +14199 -9198
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue.8e1850.js → vue.62ecd5.js} +1243 -1234
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.3ed426.css → vuetify.3b3e23.css} +1 -1
- package/dist/assets/{vuetify.3ed426.js → vuetify.3b3e23.js} +155 -154
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.d.ts +256 -0
- package/index.js +48 -11
- package/package.json +21 -14
- package/plugins/@vcmap-show-case/buttons-example/src/ButtonsExample.vue +3 -0
- package/plugins/@vcmap-show-case/category-tester/src/CategoriesExample.vue +312 -43
- package/plugins/@vcmap-show-case/category-tester/src/CollectionComponentOptions.vue +48 -182
- package/plugins/@vcmap-show-case/category-tester/src/FoobarEditor.vue +118 -0
- package/plugins/@vcmap-show-case/category-tester/src/importExportHelper.js +29 -0
- package/plugins/@vcmap-show-case/category-tester/src/index.js +16 -0
- package/plugins/@vcmap-show-case/collection-manager-example/src/CollectionManagerExample.vue +2 -1
- package/plugins/@vcmap-show-case/collection-manager-example/src/index.js +8 -4
- package/plugins/@vcmap-show-case/extent-example/README.md +3 -0
- package/plugins/@vcmap-show-case/extent-example/package.json +5 -0
- package/plugins/@vcmap-show-case/extent-example/src/ExtentExample.vue +71 -0
- package/plugins/@vcmap-show-case/extent-example/src/index.js +68 -0
- package/plugins/@vcmap-show-case/flight-component-example/README.md +3 -0
- package/plugins/@vcmap-show-case/flight-component-example/package.json +5 -0
- package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +53 -0
- package/plugins/@vcmap-show-case/flight-component-example/src/index.js +42 -0
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +78 -5
- package/plugins/@vcmap-show-case/hello-world/src/helloWorld.vue +2 -2
- package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +22 -10
- package/plugins/@vcmap-show-case/toolbox-example/README.md +9 -0
- package/plugins/@vcmap-show-case/toolbox-example/package.json +5 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/TriStateExampleWindow.vue +21 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/dummyToolboxActions.js +94 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/index.js +260 -0
- package/plugins/@vcmap-show-case/vector-properties-example/src/VectorPropertiesExample.vue +12 -2
- package/plugins/@vcmap-show-case/viewpoint-component-example/README.md +3 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/package.json +5 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/src/ViewpointExample.vue +52 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/src/index.js +42 -0
- package/plugins/@vcmap-show-case/window-tester/src/WindowExample.vue +31 -1
- package/plugins/@vcmap-show-case/window-tester/src/WindowExampleToggleChild.vue +20 -16
- package/plugins/@vcmap-show-case/window-tester/src/index.js +2 -17
- package/plugins/package.json +6 -2
- package/src/actions/StyleSelector.vue +8 -7
- package/src/actions/StyleSelector.vue.d.ts +27 -0
- package/src/actions/actionHelper.d.ts +153 -0
- package/src/actions/actionHelper.js +36 -19
- package/src/actions/extentActions.d.ts +40 -0
- package/src/actions/extentActions.js +359 -0
- package/src/actions/flightActions.d.ts +59 -0
- package/src/actions/flightActions.js +232 -0
- package/src/actions/listActions.d.ts +63 -0
- package/src/actions/listActions.js +185 -0
- package/src/actions/stateRefAction.d.ts +19 -0
- package/src/actions/stateRefAction.js +1 -1
- package/src/application/VcsApp.vue +103 -28
- package/src/application/VcsApp.vue.d.ts +86 -0
- package/src/application/VcsAppWrapper.vue.d.ts +12 -0
- package/src/application/VcsAttributions.vue.d.ts +14 -0
- package/src/application/VcsAttributionsFooter.vue +1 -4
- package/src/application/VcsAttributionsFooter.vue.d.ts +26 -0
- package/src/application/VcsMap.vue.d.ts +12 -0
- package/src/application/VcsNavbar.vue.d.ts +45 -0
- package/src/application/VcsPositionDisplay.vue +208 -0
- package/src/application/VcsPositionDisplay.vue.d.ts +18 -0
- package/src/application/VcsSettings.vue.d.ts +5 -0
- package/src/application/VcsTextPage.vue +65 -0
- package/src/application/VcsTextPage.vue.d.ts +16 -0
- package/src/application/VcsTextPageFooter.vue +89 -0
- package/src/application/VcsTextPageFooter.vue.d.ts +22 -0
- package/src/application/attributionsHelper.d.ts +64 -0
- package/src/application/attributionsHelper.js +1 -1
- package/src/application/markdownHelper.d.ts +5 -0
- package/src/application/markdownHelper.js +11 -0
- package/src/application/positionDisplayInteraction.d.ts +42 -0
- package/src/application/positionDisplayInteraction.js +65 -0
- package/src/callback/activateLayersCallback.d.ts +29 -0
- package/src/callback/activateLayersCallback.js +2 -2
- package/src/callback/applyLayerStyleCallback.d.ts +36 -0
- package/src/callback/applyLayerStyleCallback.js +2 -2
- package/src/callback/deactivateLayersCallback.d.ts +29 -0
- package/src/callback/deactivateLayersCallback.js +2 -2
- package/src/callback/goToViewpointCallback.d.ts +29 -0
- package/src/callback/goToViewpointCallback.js +2 -2
- package/src/callback/vcsCallback.d.ts +44 -0
- package/src/callback/vcsCallback.js +4 -9
- package/src/components/ImageElementInjector.vue.d.ts +24 -0
- package/src/components/buttons/VcsActionButtonList.vue +24 -16
- package/src/components/buttons/VcsActionButtonList.vue.d.ts +68 -0
- package/src/components/buttons/VcsButton.vue +7 -0
- package/src/components/buttons/VcsButton.vue.d.ts +89 -0
- package/src/components/buttons/VcsFormButton.vue +9 -0
- package/src/components/buttons/VcsFormButton.vue.d.ts +91 -0
- package/src/components/buttons/VcsToolButton.vue +9 -0
- package/src/components/buttons/VcsToolButton.vue.d.ts +91 -0
- package/src/components/flight/VcsFlightAnchorsComponent.vue +329 -0
- package/src/components/flight/VcsFlightAnchorsComponent.vue.d.ts +45 -0
- package/src/components/flight/VcsFlightComponent.vue +284 -0
- package/src/components/flight/VcsFlightComponent.vue.d.ts +104 -0
- package/src/components/flight/VcsFlightEditor.vue +77 -0
- package/src/components/flight/VcsFlightEditor.vue.d.ts +34 -0
- package/src/components/flight/VcsFlightPlayer.vue +124 -0
- package/src/components/flight/VcsFlightPlayer.vue.d.ts +25 -0
- package/src/components/flight/composables.d.ts +11 -0
- package/src/components/flight/composables.js +39 -0
- package/src/components/form-inputs-controls/VcsCheckbox.vue.d.ts +18 -0
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +82 -0
- package/src/components/form-inputs-controls/VcsCoordinate.vue +152 -0
- package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +90 -0
- package/src/components/form-inputs-controls/VcsDatePicker.vue +2 -2
- package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +31 -0
- package/src/components/form-inputs-controls/VcsExtent.vue +122 -0
- package/src/components/form-inputs-controls/VcsExtent.vue.d.ts +36 -0
- package/src/components/form-inputs-controls/VcsFormSection.vue +6 -1
- package/src/components/form-inputs-controls/VcsFormSection.vue.d.ts +75 -0
- package/src/components/form-inputs-controls/VcsLabel.vue +18 -0
- package/src/components/form-inputs-controls/VcsLabel.vue.d.ts +41 -0
- package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +32 -0
- package/src/components/form-inputs-controls/VcsRadioGrid.vue.d.ts +35 -0
- package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +31 -0
- package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +2 -0
- package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +22 -0
- package/src/components/form-inputs-controls/VcsTextField.vue +57 -10
- package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +65 -0
- package/src/components/form-inputs-controls/VcsWizard.vue.d.ts +14 -0
- package/src/components/form-inputs-controls/VcsWizardStep.vue.d.ts +89 -0
- package/src/components/form-inputs-controls/composables.d.ts +7 -0
- package/src/components/form-inputs-controls/composables.js +1 -1
- package/src/components/form-output/VcsFormattedNumber.vue +13 -2
- package/src/components/form-output/VcsFormattedNumber.vue.d.ts +89 -0
- package/src/components/icons/+all.d.ts +9 -0
- package/src/components/icons/+all.js +16 -0
- package/src/components/icons/2DAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/2DDistanceIcon.vue.d.ts +2 -0
- package/src/components/icons/2DHeightObliqueIcon.vue +20 -0
- package/src/components/icons/2DHeightObliqueIcon.vue.d.ts +2 -0
- package/src/components/icons/3DAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/3DDistanceIcon.vue.d.ts +2 -0
- package/src/components/icons/3DHeightIcon.vue.d.ts +2 -0
- package/src/components/icons/AngleIcon.vue.d.ts +2 -0
- package/src/components/icons/AssociationsIcon.vue.d.ts +2 -0
- package/src/components/icons/AxisIcon.vue.d.ts +2 -0
- package/src/components/icons/BoundingBoxIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxCheckedIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxIndeterminateIcon.vue.d.ts +2 -0
- package/src/components/icons/CircleIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingHorizontalIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingVerticalIcon.vue.d.ts +2 -0
- package/src/components/icons/ColorPickerIcon.vue.d.ts +2 -0
- package/src/components/icons/ColorSwatchIcon.vue.d.ts +2 -0
- package/src/components/icons/CommentIcon.vue.d.ts +2 -0
- package/src/components/icons/CompassIcon.vue.d.ts +2 -0
- package/src/components/icons/ComponentsIcon.vue.d.ts +2 -0
- package/src/components/icons/ComponentsPlusIcon.vue +17 -0
- package/src/components/icons/ComponentsPlusIcon.vue.d.ts +2 -0
- package/src/components/icons/ConeIcon.vue.d.ts +2 -0
- package/src/components/icons/DimensionsHouseIcon.vue.d.ts +2 -0
- package/src/components/icons/EditIcon.vue.d.ts +2 -0
- package/src/components/icons/EditVerticesIcon.vue.d.ts +2 -0
- package/src/components/icons/ElevationProfileIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportFlightIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportIcon.vue.d.ts +2 -0
- package/src/components/icons/ExternalLinkIcon.vue.d.ts +2 -0
- package/src/components/icons/EyeIcon.vue.d.ts +2 -0
- package/src/components/icons/FastForwardIcon.vue.d.ts +2 -0
- package/src/components/icons/FilterIcon.vue.d.ts +2 -0
- package/src/components/icons/GlobalTerrainIcon.vue.d.ts +2 -0
- package/src/components/icons/GlobeNatureIcon.vue.d.ts +2 -0
- package/src/components/icons/GroundIcon.vue.d.ts +2 -0
- package/src/components/icons/HealthCareIndustriesIcon.vue.d.ts +2 -0
- package/src/components/icons/HelpIcon.vue.d.ts +2 -0
- package/src/components/icons/HideIcon.vue.d.ts +2 -0
- package/src/components/icons/HomePointIcon.vue.d.ts +2 -0
- package/src/components/icons/HospitalsIcon.vue.d.ts +2 -0
- package/src/components/icons/HouseIcon.vue.d.ts +2 -0
- package/src/components/icons/ImportIcon.vue.d.ts +2 -0
- package/src/components/icons/InfoIcon.vue.d.ts +2 -0
- package/src/components/icons/KebabIcon.vue.d.ts +2 -0
- package/src/components/icons/LabelIcon.vue.d.ts +2 -0
- package/src/components/icons/LayersIcon.vue.d.ts +2 -0
- package/src/components/icons/LegendIcon.vue.d.ts +2 -0
- package/src/components/icons/LineIcon.vue.d.ts +2 -0
- package/src/components/icons/LinkIcon.vue.d.ts +2 -0
- package/src/components/icons/LogoutIcon.vue.d.ts +2 -0
- package/src/components/icons/MapIcon.vue.d.ts +2 -0
- package/src/components/icons/MenuIcon.vue.d.ts +2 -0
- package/src/components/icons/MinusIcon.vue.d.ts +2 -0
- package/src/components/icons/MultiViewIcon.vue +16 -0
- package/src/components/icons/MultiViewIcon.vue.d.ts +2 -0
- package/src/components/icons/ObjectAttributeIcon.vue.d.ts +2 -0
- package/src/components/icons/ObjectSelectIcon.vue.d.ts +2 -0
- package/src/components/icons/ObliqueViewIcon.vue.d.ts +2 -0
- package/src/components/icons/PdfIcon.vue.d.ts +2 -0
- package/src/components/icons/PedestrianIcon.vue.d.ts +2 -0
- package/src/components/icons/PenIcon.vue.d.ts +2 -0
- package/src/components/icons/PlayCircleIcon.vue.d.ts +2 -0
- package/src/components/icons/PlusIcon.vue.d.ts +2 -0
- package/src/components/icons/PoiIcon.vue.d.ts +2 -0
- package/src/components/icons/PointIcon.vue.d.ts +2 -0
- package/src/components/icons/PointMeasurementIcon.vue +36 -0
- package/src/components/icons/PointMeasurementIcon.vue.d.ts +2 -0
- package/src/components/icons/PointSelectIcon.vue.d.ts +2 -0
- package/src/components/icons/PresentationModeIcon.vue.d.ts +2 -0
- package/src/components/icons/ProgressIcon.vue.d.ts +2 -0
- package/src/components/icons/QueryIcon.vue.d.ts +2 -0
- package/src/components/icons/RectangleIcon.vue.d.ts +2 -0
- package/src/components/icons/ReturnIcon.vue.d.ts +2 -0
- package/src/components/icons/RewindIcon.vue.d.ts +2 -0
- package/src/components/icons/RotateLeftIcon.vue.d.ts +2 -0
- package/src/components/icons/RotateRightIcon.vue.d.ts +2 -0
- package/src/components/icons/ScreenshotIcon.vue.d.ts +2 -0
- package/src/components/icons/SearchIcon.vue.d.ts +2 -0
- package/src/components/icons/ShadowIcon.vue.d.ts +2 -0
- package/src/components/icons/ShapesIcon.vue.d.ts +2 -0
- package/src/components/icons/ShareIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleFilledIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleHalfFilledIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleOutlinedIcon.vue.d.ts +2 -0
- package/src/components/icons/SkipNextIcon.vue.d.ts +2 -0
- package/src/components/icons/SkipPreviousIcon.vue.d.ts +2 -0
- package/src/components/icons/SplitViewIcon.vue.d.ts +2 -0
- package/src/components/icons/TerrainBoxIcon.vue.d.ts +2 -0
- package/src/components/icons/TextStyleIcon.vue.d.ts +2 -0
- package/src/components/icons/ThreeDimensionsIcon.vue.d.ts +2 -0
- package/src/components/icons/ToolsIcon.vue.d.ts +2 -0
- package/src/components/icons/TouchIcon.vue.d.ts +2 -0
- package/src/components/icons/TrashCanIcon.vue.d.ts +2 -0
- package/src/components/icons/TriangleIcon.vue.d.ts +2 -0
- package/src/components/icons/TwoDimensionsIcon.vue.d.ts +2 -0
- package/src/components/icons/UploadIcon.vue.d.ts +2 -0
- package/src/components/icons/UserProfileIcon.vue.d.ts +2 -0
- package/src/components/icons/UserShareIcon.vue.d.ts +2 -0
- package/src/components/icons/VideoRecorderIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewpointFlightIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewpointIcon.vue.d.ts +2 -0
- package/src/components/icons/Viewshed360Icon.vue.d.ts +2 -0
- package/src/components/icons/ViewshedConeIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewshedIcon.vue.d.ts +2 -0
- package/src/components/icons/WalkingIcon.vue.d.ts +2 -0
- package/src/components/icons/WallIcon.vue.d.ts +2 -0
- package/src/components/icons/WandIcon.vue.d.ts +2 -0
- package/src/components/import/FileDrop.vue +69 -0
- package/src/components/import/FileDrop.vue.d.ts +26 -0
- package/src/components/import/ImportComponent.vue +78 -0
- package/src/components/import/ImportComponent.vue.d.ts +34 -0
- package/src/components/lists/VcsActionList.vue +8 -15
- package/src/components/lists/VcsActionList.vue.d.ts +66 -0
- package/src/components/lists/VcsList.vue +207 -116
- package/src/components/lists/VcsList.vue.d.ts +227 -0
- package/src/components/lists/VcsTreeview.vue +3 -1
- package/src/components/lists/VcsTreeview.vue.d.ts +28 -0
- package/src/components/lists/VcsTreeviewLeaf.vue +1 -0
- package/src/components/lists/VcsTreeviewLeaf.vue.d.ts +19 -0
- package/src/components/lists/VcsTreeviewSearchbar.vue.d.ts +41 -0
- package/src/components/notification/VcsBadge.vue.d.ts +14 -0
- package/src/components/notification/VcsHelp.vue.d.ts +22 -0
- package/src/components/notification/VcsTooltip.vue.d.ts +27 -0
- package/src/components/notification/validation.d.ts +8 -0
- package/src/components/notification/validation.js +3 -2
- package/src/components/plugins/AbstractConfigEditor.vue +25 -4
- package/src/components/plugins/AbstractConfigEditor.vue.d.ts +55 -0
- package/src/components/style/MenuWrapper.vue.d.ts +55 -0
- package/src/components/style/VcsFeatureStyleComponent.vue +389 -0
- package/src/components/style/VcsFeatureStyleComponent.vue.d.ts +31 -0
- package/src/components/style/VcsFillMenu.vue.d.ts +34 -0
- package/src/components/style/VcsFillSelector.vue.d.ts +22 -0
- package/src/components/style/VcsImageMenu.vue.d.ts +43 -0
- package/src/components/style/VcsImageSelector.vue.d.ts +128 -0
- package/src/components/style/VcsStrokeMenu.vue.d.ts +34 -0
- package/src/components/style/VcsStrokeSelector.vue.d.ts +23 -0
- package/src/components/style/VcsTextMenu.vue.d.ts +52 -0
- package/src/components/style/VcsTextSelector.vue.d.ts +58 -0
- package/src/components/style/VcsVectorStyleComponent.vue.d.ts +76 -0
- package/src/components/style/composables.d.ts +43 -0
- package/src/components/style/composables.js +11 -8
- package/src/components/tables/VcsDataTable.vue +11 -3
- package/src/components/tables/VcsDataTable.vue.d.ts +142 -0
- package/src/components/tables/VcsTable.vue +71 -2
- package/src/components/tables/VcsTable.vue.d.ts +88 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue +392 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue.d.ts +87 -0
- package/src/components/vector-properties/VcsFeatureTransforms.vue +217 -0
- package/src/components/vector-properties/VcsFeatureTransforms.vue.d.ts +45 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +96 -52
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +119 -0
- package/src/components/vector-properties/composables.d.ts +33 -0
- package/src/components/vector-properties/composables.js +21 -14
- package/src/components/viewpoint/VcsViewpointComponent.vue +514 -0
- package/src/components/viewpoint/VcsViewpointComponent.vue.d.ts +126 -0
- package/src/components/viewpoint/VcsViewpointEditor.vue +87 -0
- package/src/components/viewpoint/VcsViewpointEditor.vue.d.ts +25 -0
- package/src/contentTree/LayerTree.vue.d.ts +15 -0
- package/src/contentTree/contentTreeCollection.d.ts +113 -0
- package/src/contentTree/contentTreeCollection.js +10 -20
- package/src/contentTree/contentTreeItem.d.ts +334 -0
- package/src/contentTree/contentTreeItem.js +31 -17
- package/src/contentTree/flightContentTreeItem.d.ts +53 -0
- package/src/contentTree/flightContentTreeItem.js +201 -0
- package/src/contentTree/groupContentTreeItem.d.ts +14 -0
- package/src/contentTree/groupContentTreeItem.js +2 -2
- package/src/contentTree/layerContentTreeItem.d.ts +76 -0
- package/src/contentTree/layerContentTreeItem.js +7 -9
- package/src/contentTree/layerGroupContentTreeItem.d.ts +50 -0
- package/src/contentTree/layerGroupContentTreeItem.js +2 -3
- package/src/contentTree/nodeContentTreeItem.d.ts +10 -0
- package/src/contentTree/nodeContentTreeItem.js +2 -2
- package/src/contentTree/obliqueCollectionContentTreeItem.d.ts +46 -0
- package/src/contentTree/obliqueCollectionContentTreeItem.js +3 -5
- package/src/contentTree/subContentTreeItem.d.ts +15 -0
- package/src/contentTree/subContentTreeItem.js +3 -3
- package/src/contentTree/vcsObjectContentTreeItem.d.ts +56 -0
- package/src/contentTree/vcsObjectContentTreeItem.js +3 -4
- package/src/contentTree/viewpointContentTreeItem.d.ts +46 -0
- package/src/contentTree/viewpointContentTreeItem.js +3 -4
- package/src/downloadHelper.d.ts +27 -0
- package/src/featureInfo/AddressBalloonComponent.vue.d.ts +2 -0
- package/src/featureInfo/BalloonComponent.vue +16 -3
- package/src/featureInfo/BalloonComponent.vue.d.ts +61 -0
- package/src/featureInfo/abstractFeatureInfoView.d.ts +199 -0
- package/src/featureInfo/abstractFeatureInfoView.js +82 -18
- package/src/featureInfo/addressBalloonFeatureInfoView.d.ts +67 -0
- package/src/featureInfo/addressBalloonFeatureInfoView.js +9 -2
- package/src/featureInfo/balloonFeatureInfoView.d.ts +49 -0
- package/src/featureInfo/balloonFeatureInfoView.js +12 -11
- package/src/featureInfo/balloonHelper.d.ts +31 -0
- package/src/featureInfo/balloonHelper.js +6 -6
- package/src/featureInfo/featureInfo.d.ts +146 -0
- package/src/featureInfo/featureInfo.js +11 -16
- package/src/featureInfo/featureInfoInteraction.d.ts +21 -0
- package/src/featureInfo/featureInfoInteraction.js +2 -2
- package/src/featureInfo/iframeFeatureInfoView.d.ts +48 -0
- package/src/featureInfo/iframeFeatureInfoView.js +3 -5
- package/src/featureInfo/tableFeatureInfoView.d.ts +75 -0
- package/src/featureInfo/tableFeatureInfoView.js +19 -9
- package/src/i18n/de.d.ts +353 -0
- package/src/i18n/de.js +114 -2
- package/src/i18n/en.d.ts +352 -0
- package/src/i18n/en.js +113 -1
- package/src/i18n/i18nCollection.d.ts +82 -0
- package/src/i18n/i18nCollection.js +3 -3
- package/src/init.d.ts +58 -0
- package/src/init.js +3 -5
- package/src/legend/StyleLegendItem.vue.d.ts +25 -0
- package/src/legend/VcsLegend.vue.d.ts +20 -0
- package/src/legend/legendHelper.d.ts +172 -0
- package/src/legend/legendHelper.js +21 -21
- package/src/manager/buttonManager.d.ts +106 -0
- package/src/manager/buttonManager.js +8 -4
- package/src/manager/collectionManager/CollectionComponent.vue +38 -42
- package/src/manager/collectionManager/CollectionComponent.vue.d.ts +17 -0
- package/src/manager/collectionManager/CollectionComponentList.vue +53 -18
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +38 -0
- package/src/manager/collectionManager/CollectionComponentProvider.vue +3 -2
- package/src/manager/collectionManager/CollectionComponentProvider.vue.d.ts +12 -0
- package/src/manager/collectionManager/CollectionManager.vue +29 -4
- package/src/manager/collectionManager/CollectionManager.vue.d.ts +8 -0
- package/src/manager/collectionManager/categoryManager.d.ts +56 -0
- package/src/manager/collectionManager/categoryManager.js +21 -7
- package/src/manager/collectionManager/collectionComponentClass.d.ts +257 -0
- package/src/manager/collectionManager/{collectionComponent.js → collectionComponentClass.js} +210 -57
- package/src/manager/collectionManager/collectionManager.d.ts +200 -0
- package/src/manager/collectionManager/collectionManager.js +45 -39
- package/src/manager/collectionManager/editorCollectionComponentClass.d.ts +60 -0
- package/src/manager/collectionManager/editorCollectionComponentClass.js +295 -0
- package/src/manager/contextMenu/ContextMenuComponent.vue.d.ts +18 -0
- package/src/manager/contextMenu/contextMenuInteraction.d.ts +24 -0
- package/src/manager/contextMenu/contextMenuManager.d.ts +70 -0
- package/src/manager/contextMenu/contextMenuManager.js +5 -5
- package/src/manager/navbarManager.d.ts +60 -0
- package/src/manager/navbarManager.js +10 -6
- package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +17 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +1 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +15 -0
- package/src/manager/toolbox/ToolboxManager.vue +33 -7
- package/src/manager/toolbox/ToolboxManager.vue.d.ts +21 -0
- package/src/manager/toolbox/toolboxManager.d.ts +177 -0
- package/src/manager/toolbox/toolboxManager.js +86 -31
- package/src/manager/window/WindowComponent.vue.d.ts +40 -0
- package/src/manager/window/WindowComponentHeader.vue +1 -1
- package/src/manager/window/WindowComponentHeader.vue.d.ts +36 -0
- package/src/manager/window/WindowManager.vue +1 -0
- package/src/manager/window/WindowManager.vue.d.ts +19 -0
- package/src/manager/window/windowHelper.d.ts +134 -0
- package/src/manager/window/windowHelper.js +20 -20
- package/src/manager/window/windowManager.d.ts +422 -0
- package/src/manager/window/windowManager.js +95 -40
- package/src/navigation/MapNavCompass.vue.d.ts +25 -0
- package/src/navigation/MapNavigation.vue +2 -2
- package/src/navigation/MapNavigation.vue.d.ts +46 -0
- package/src/navigation/ObliqueRotation.vue +8 -4
- package/src/navigation/ObliqueRotation.vue.d.ts +14 -0
- package/src/navigation/OrientationToolsButton.vue.d.ts +30 -0
- package/src/navigation/TiltSlider.vue.d.ts +19 -0
- package/src/navigation/VcsCompass.vue.d.ts +25 -0
- package/src/navigation/VcsZoomButton.vue +6 -3
- package/src/navigation/VcsZoomButton.vue.d.ts +2 -0
- package/src/navigation/overviewMap.d.ts +199 -0
- package/src/navigation/overviewMap.js +3 -7
- package/src/navigation/overviewMapClickedInteraction.d.ts +21 -0
- package/src/notifier/NotifierComponent.vue.d.ts +10 -0
- package/src/notifier/notifier.d.ts +53 -0
- package/src/notifier/notifier.js +0 -1
- package/src/pluginHelper.d.ts +67 -0
- package/src/pluginHelper.js +11 -9
- package/src/search/ResultItem.vue.d.ts +25 -0
- package/src/search/ResultsComponent.vue +1 -1
- package/src/search/ResultsComponent.vue.d.ts +24 -0
- package/src/search/SearchComponent.vue +1 -1
- package/src/search/SearchComponent.vue.d.ts +10 -0
- package/src/search/search.d.ts +129 -0
- package/src/search/search.js +8 -11
- package/src/setup.d.ts +1 -0
- package/src/state.d.ts +57 -0
- package/src/state.js +7 -5
- package/src/uiConfig.d.ts +99 -0
- package/src/uiConfig.js +17 -7
- package/src/vcsUiApp.d.ts +301 -0
- package/src/vcsUiApp.js +58 -54
- package/src/vuePlugins/i18n.d.ts +10 -0
- package/src/vuePlugins/i18n.js +3 -3
- package/src/vuePlugins/vuetify.d.ts +27 -0
- package/tsconfig.json +36 -0
- package/dist/assets/index-661636d9.js +0 -1
- package/plugins/@vcmap-show-case/window-tester/src/toolboxData.js +0 -288
package/dist/assets/vuetify.js
CHANGED
package/dist/index.html
CHANGED
package/index.d.ts
ADDED
@@ -0,0 +1,256 @@
|
|
1
|
+
export { default as StyleSelector } from "./src/actions/StyleSelector.vue";
|
2
|
+
export type * from "./src/actions/StyleSelector.vue.d.ts";
|
3
|
+
export { parseAndSanitizeMarkdown } from "./src/application/markdownHelper.js";
|
4
|
+
export type * from "./src/application/markdownHelper.d.ts";
|
5
|
+
export { default as ActivateLayersCallback } from "./src/callback/activateLayersCallback.js";
|
6
|
+
export type * from "./src/callback/activateLayersCallback.d.ts";
|
7
|
+
export { default as DeactivateLayersCallback } from "./src/callback/deactivateLayersCallback.js";
|
8
|
+
export type * from "./src/callback/deactivateLayersCallback.d.ts";
|
9
|
+
export { default as GoToViewpointCallback } from "./src/callback/goToViewpointCallback.js";
|
10
|
+
export type * from "./src/callback/goToViewpointCallback.d.ts";
|
11
|
+
export { default as ApplyLayerStyleCallback } from "./src/callback/applyLayerStyleCallback.js";
|
12
|
+
export type * from "./src/callback/applyLayerStyleCallback.d.ts";
|
13
|
+
export { default as VcsNavbar } from "./src/application/VcsNavbar.vue";
|
14
|
+
export type * from "./src/application/VcsNavbar.vue.d.ts";
|
15
|
+
export { default as VcsAppWrapper } from "./src/application/VcsAppWrapper.vue";
|
16
|
+
export type * from "./src/application/VcsAppWrapper.vue.d.ts";
|
17
|
+
export { default as VcsMap } from "./src/application/VcsMap.vue";
|
18
|
+
export type * from "./src/application/VcsMap.vue.d.ts";
|
19
|
+
export { default as ContentTreeItem } from "./src/contentTree/contentTreeItem.js";
|
20
|
+
export type * from "./src/contentTree/contentTreeItem.d.ts";
|
21
|
+
export { default as GroupContentTreeItem } from "./src/contentTree/groupContentTreeItem.js";
|
22
|
+
export type * from "./src/contentTree/groupContentTreeItem.d.ts";
|
23
|
+
export { default as LayerGroupContentTreeItem } from "./src/contentTree/layerGroupContentTreeItem.js";
|
24
|
+
export type * from "./src/contentTree/layerGroupContentTreeItem.d.ts";
|
25
|
+
export { default as FlightContentTreeItem } from "./src/contentTree/flightContentTreeItem.js";
|
26
|
+
export type * from "./src/contentTree/flightContentTreeItem.d.ts";
|
27
|
+
export { default as LayerTree } from "./src/contentTree/LayerTree.vue";
|
28
|
+
export type * from "./src/contentTree/LayerTree.vue.d.ts";
|
29
|
+
export { default as NodeContentTreeItem } from "./src/contentTree/nodeContentTreeItem.js";
|
30
|
+
export type * from "./src/contentTree/nodeContentTreeItem.d.ts";
|
31
|
+
export { default as ObliqueCollectionContentTreeItem } from "./src/contentTree/obliqueCollectionContentTreeItem.js";
|
32
|
+
export type * from "./src/contentTree/obliqueCollectionContentTreeItem.d.ts";
|
33
|
+
export { default as SubContentTreeItem } from "./src/contentTree/subContentTreeItem.js";
|
34
|
+
export type * from "./src/contentTree/subContentTreeItem.d.ts";
|
35
|
+
export { default as VcsObjectContentTreeItem } from "./src/contentTree/vcsObjectContentTreeItem.js";
|
36
|
+
export type * from "./src/contentTree/vcsObjectContentTreeItem.d.ts";
|
37
|
+
export { default as ViewpointContentTreeItem } from "./src/contentTree/viewpointContentTreeItem.js";
|
38
|
+
export type * from "./src/contentTree/viewpointContentTreeItem.d.ts";
|
39
|
+
export { default as WindowComponent } from "./src/manager/window/WindowComponent.vue";
|
40
|
+
export type * from "./src/manager/window/WindowComponent.vue.d.ts";
|
41
|
+
export { default as WindowComponentHeader } from "./src/manager/window/WindowComponentHeader.vue";
|
42
|
+
export type * from "./src/manager/window/WindowComponentHeader.vue.d.ts";
|
43
|
+
export { default as VcsWindowManager } from "./src/manager/window/WindowManager.vue";
|
44
|
+
export type * from "./src/manager/window/WindowManager.vue.d.ts";
|
45
|
+
export { default as ButtonManager } from "./src/manager/buttonManager.js";
|
46
|
+
export type * from "./src/manager/buttonManager.d.ts";
|
47
|
+
export { default as CategoryManager } from "./src/manager/collectionManager/categoryManager.js";
|
48
|
+
export type * from "./src/manager/collectionManager/categoryManager.d.ts";
|
49
|
+
export { default as CollectionManager } from "./src/manager/collectionManager/collectionManager.js";
|
50
|
+
export type * from "./src/manager/collectionManager/collectionManager.d.ts";
|
51
|
+
export { default as CollectionManagerComponent } from "./src/manager/collectionManager/CollectionManager.vue";
|
52
|
+
export type * from "./src/manager/collectionManager/CollectionManager.vue.d.ts";
|
53
|
+
export { default as CollectionComponentProvider } from "./src/manager/collectionManager/CollectionComponentProvider.vue";
|
54
|
+
export type * from "./src/manager/collectionManager/CollectionComponentProvider.vue.d.ts";
|
55
|
+
export { default as CollectionComponentClass } from "./src/manager/collectionManager/collectionComponentClass.js";
|
56
|
+
export type * from "./src/manager/collectionManager/collectionComponentClass.d.ts";
|
57
|
+
export { default as CollectionComponent } from "./src/manager/collectionManager/CollectionComponent.vue";
|
58
|
+
export type * from "./src/manager/collectionManager/CollectionComponent.vue.d.ts";
|
59
|
+
export { default as CollectionComponentList } from "./src/manager/collectionManager/CollectionComponentList.vue";
|
60
|
+
export type * from "./src/manager/collectionManager/CollectionComponentList.vue.d.ts";
|
61
|
+
export { default as ContextMenuManager } from "./src/manager/contextMenu/contextMenuManager.js";
|
62
|
+
export type * from "./src/manager/contextMenu/contextMenuManager.d.ts";
|
63
|
+
export { default as ContextMenuComponent } from "./src/manager/contextMenu/ContextMenuComponent.vue";
|
64
|
+
export type * from "./src/manager/contextMenu/ContextMenuComponent.vue.d.ts";
|
65
|
+
export { default as ContextMenuInteraction } from "./src/manager/contextMenu/contextMenuInteraction.js";
|
66
|
+
export type * from "./src/manager/contextMenu/contextMenuInteraction.d.ts";
|
67
|
+
export { default as AddressBalloonFeatureInfoView } from "./src/featureInfo/addressBalloonFeatureInfoView.js";
|
68
|
+
export type * from "./src/featureInfo/addressBalloonFeatureInfoView.d.ts";
|
69
|
+
export { default as BalloonComponent } from "./src/featureInfo/BalloonComponent.vue";
|
70
|
+
export type * from "./src/featureInfo/BalloonComponent.vue.d.ts";
|
71
|
+
export { default as AddressBalloonComponent } from "./src/featureInfo/AddressBalloonComponent.vue";
|
72
|
+
export type * from "./src/featureInfo/AddressBalloonComponent.vue.d.ts";
|
73
|
+
export { default as IframeFeatureInfoView } from "./src/featureInfo/iframeFeatureInfoView.js";
|
74
|
+
export type * from "./src/featureInfo/iframeFeatureInfoView.d.ts";
|
75
|
+
export { default as TableFeatureInfoView } from "./src/featureInfo/tableFeatureInfoView.js";
|
76
|
+
export type * from "./src/featureInfo/tableFeatureInfoView.d.ts";
|
77
|
+
export { default as MapNavCompass } from "./src/navigation/MapNavCompass.vue";
|
78
|
+
export type * from "./src/navigation/MapNavCompass.vue.d.ts";
|
79
|
+
export { default as MapNavigation } from "./src/navigation/MapNavigation.vue";
|
80
|
+
export type * from "./src/navigation/MapNavigation.vue.d.ts";
|
81
|
+
export { default as ObliqueRotation } from "./src/navigation/ObliqueRotation.vue";
|
82
|
+
export type * from "./src/navigation/ObliqueRotation.vue.d.ts";
|
83
|
+
export { default as OrientationToolsButton } from "./src/navigation/OrientationToolsButton.vue";
|
84
|
+
export type * from "./src/navigation/OrientationToolsButton.vue.d.ts";
|
85
|
+
export { default as OverviewMapClickedInteraction } from "./src/navigation/overviewMapClickedInteraction.js";
|
86
|
+
export type * from "./src/navigation/overviewMapClickedInteraction.d.ts";
|
87
|
+
export { default as TiltSlider } from "./src/navigation/TiltSlider.vue";
|
88
|
+
export type * from "./src/navigation/TiltSlider.vue.d.ts";
|
89
|
+
export { default as VcsCompass } from "./src/navigation/VcsCompass.vue";
|
90
|
+
export type * from "./src/navigation/VcsCompass.vue.d.ts";
|
91
|
+
export { default as VcsZoomButton } from "./src/navigation/VcsZoomButton.vue";
|
92
|
+
export type * from "./src/navigation/VcsZoomButton.vue.d.ts";
|
93
|
+
export { i18nPluginSymbol } from "./src/i18n/i18nCollection.js";
|
94
|
+
export type * from "./src/i18n/i18nCollection.d.ts";
|
95
|
+
export { default as VcsUiApp } from "./src/vcsUiApp.js";
|
96
|
+
export type * from "./src/vcsUiApp.d.ts";
|
97
|
+
export { default as Icons } from "./src/components/icons/+all.js";
|
98
|
+
export type * from "./src/components/icons/+all.d.ts";
|
99
|
+
export { default as VcsButton } from "./src/components/buttons/VcsButton.vue";
|
100
|
+
export type * from "./src/components/buttons/VcsButton.vue.d.ts";
|
101
|
+
export { default as VcsToolButton } from "./src/components/buttons/VcsToolButton.vue";
|
102
|
+
export type * from "./src/components/buttons/VcsToolButton.vue.d.ts";
|
103
|
+
export { default as VcsFormButton } from "./src/components/buttons/VcsFormButton.vue";
|
104
|
+
export type * from "./src/components/buttons/VcsFormButton.vue.d.ts";
|
105
|
+
export { default as VcsActionButtonList } from "./src/components/buttons/VcsActionButtonList.vue";
|
106
|
+
export type * from "./src/components/buttons/VcsActionButtonList.vue.d.ts";
|
107
|
+
export { default as VcsTooltip } from "./src/components/notification/VcsTooltip.vue";
|
108
|
+
export type * from "./src/components/notification/VcsTooltip.vue.d.ts";
|
109
|
+
export { default as VcsHelp } from "./src/components/notification/VcsHelp.vue";
|
110
|
+
export type * from "./src/components/notification/VcsHelp.vue.d.ts";
|
111
|
+
export { default as VcsTable } from "./src/components/tables/VcsTable.vue";
|
112
|
+
export type * from "./src/components/tables/VcsTable.vue.d.ts";
|
113
|
+
export { default as VcsDataTable } from "./src/components/tables/VcsDataTable.vue";
|
114
|
+
export type * from "./src/components/tables/VcsDataTable.vue.d.ts";
|
115
|
+
export { default as VcsLabel } from "./src/components/form-inputs-controls/VcsLabel.vue";
|
116
|
+
export type * from "./src/components/form-inputs-controls/VcsLabel.vue.d.ts";
|
117
|
+
export { default as VcsCheckbox } from "./src/components/form-inputs-controls/VcsCheckbox.vue";
|
118
|
+
export type * from "./src/components/form-inputs-controls/VcsCheckbox.vue.d.ts";
|
119
|
+
export { default as VcsRadio } from "./src/components/form-inputs-controls/VcsRadio.vue";
|
120
|
+
export type * from "./src/components/form-inputs-controls/VcsRadio.vue.d.ts";
|
121
|
+
export { default as VcsRadioGrid } from "./src/components/form-inputs-controls/VcsRadioGrid.vue";
|
122
|
+
export type * from "./src/components/form-inputs-controls/VcsRadioGrid.vue.d.ts";
|
123
|
+
export { default as VcsFormSection } from "./src/components/form-inputs-controls/VcsFormSection.vue";
|
124
|
+
export type * from "./src/components/form-inputs-controls/VcsFormSection.vue.d.ts";
|
125
|
+
export { default as VcsSelect } from "./src/components/form-inputs-controls/VcsSelect.vue";
|
126
|
+
export type * from "./src/components/form-inputs-controls/VcsSelect.vue.d.ts";
|
127
|
+
export { default as VcsSlider } from "./src/components/form-inputs-controls/VcsSlider.vue";
|
128
|
+
export type * from "./src/components/form-inputs-controls/VcsSlider.vue.d.ts";
|
129
|
+
export { default as VcsTextField } from "./src/components/form-inputs-controls/VcsTextField.vue";
|
130
|
+
export type * from "./src/components/form-inputs-controls/VcsTextField.vue.d.ts";
|
131
|
+
export { default as VcsChipArrayInput } from "./src/components/form-inputs-controls/VcsChipArrayInput.vue";
|
132
|
+
export type * from "./src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts";
|
133
|
+
export { default as VcsCoordinate } from "./src/components/form-inputs-controls/VcsCoordinate.vue";
|
134
|
+
export type * from "./src/components/form-inputs-controls/VcsCoordinate.vue.d.ts";
|
135
|
+
export { default as VcsTextArea } from "./src/components/form-inputs-controls/VcsTextArea.vue";
|
136
|
+
export type * from "./src/components/form-inputs-controls/VcsTextArea.vue.d.ts";
|
137
|
+
export { default as VcsWizard } from "./src/components/form-inputs-controls/VcsWizard.vue";
|
138
|
+
export type * from "./src/components/form-inputs-controls/VcsWizard.vue.d.ts";
|
139
|
+
export { default as VcsWizardStep } from "./src/components/form-inputs-controls/VcsWizardStep.vue";
|
140
|
+
export type * from "./src/components/form-inputs-controls/VcsWizardStep.vue.d.ts";
|
141
|
+
export { default as VcsDatePicker } from "./src/components/form-inputs-controls/VcsDatePicker.vue";
|
142
|
+
export type * from "./src/components/form-inputs-controls/VcsDatePicker.vue.d.ts";
|
143
|
+
export { default as VcsFormattedNumber } from "./src/components/form-output/VcsFormattedNumber.vue";
|
144
|
+
export type * from "./src/components/form-output/VcsFormattedNumber.vue.d.ts";
|
145
|
+
export { default as VcsTextPage } from "./src/application/VcsTextPage.vue";
|
146
|
+
export type * from "./src/application/VcsTextPage.vue.d.ts";
|
147
|
+
export { default as VcsList } from "./src/components/lists/VcsList.vue";
|
148
|
+
export type * from "./src/components/lists/VcsList.vue.d.ts";
|
149
|
+
export { default as VcsTreeview } from "./src/components/lists/VcsTreeview.vue";
|
150
|
+
export type * from "./src/components/lists/VcsTreeview.vue.d.ts";
|
151
|
+
export { default as VcsTreeviewLeaf } from "./src/components/lists/VcsTreeviewLeaf.vue";
|
152
|
+
export type * from "./src/components/lists/VcsTreeviewLeaf.vue.d.ts";
|
153
|
+
export { default as VcsTreeviewSearchbar } from "./src/components/lists/VcsTreeviewSearchbar.vue";
|
154
|
+
export type * from "./src/components/lists/VcsTreeviewSearchbar.vue.d.ts";
|
155
|
+
export { default as VcsBadge } from "./src/components/notification/VcsBadge.vue";
|
156
|
+
export type * from "./src/components/notification/VcsBadge.vue.d.ts";
|
157
|
+
export { default as VcsFillSelector } from "./src/components/style/VcsFillSelector.vue";
|
158
|
+
export type * from "./src/components/style/VcsFillSelector.vue.d.ts";
|
159
|
+
export { default as VcsFillMenu } from "./src/components/style/VcsFillMenu.vue";
|
160
|
+
export type * from "./src/components/style/VcsFillMenu.vue.d.ts";
|
161
|
+
export { default as VcsStrokeSelector } from "./src/components/style/VcsStrokeSelector.vue";
|
162
|
+
export type * from "./src/components/style/VcsStrokeSelector.vue.d.ts";
|
163
|
+
export { default as VcsStrokeMenu } from "./src/components/style/VcsStrokeMenu.vue";
|
164
|
+
export type * from "./src/components/style/VcsStrokeMenu.vue.d.ts";
|
165
|
+
export { default as VcsImageSelector } from "./src/components/style/VcsImageSelector.vue";
|
166
|
+
export type * from "./src/components/style/VcsImageSelector.vue.d.ts";
|
167
|
+
export { default as VcsImageMenu } from "./src/components/style/VcsImageMenu.vue";
|
168
|
+
export type * from "./src/components/style/VcsImageMenu.vue.d.ts";
|
169
|
+
export { default as VcsTextSelector } from "./src/components/style/VcsTextSelector.vue";
|
170
|
+
export type * from "./src/components/style/VcsTextSelector.vue.d.ts";
|
171
|
+
export { default as VcsTextMenu } from "./src/components/style/VcsTextMenu.vue";
|
172
|
+
export type * from "./src/components/style/VcsTextMenu.vue.d.ts";
|
173
|
+
export { default as VcsExtent } from "./src/components/form-inputs-controls/VcsExtent.vue";
|
174
|
+
export type * from "./src/components/form-inputs-controls/VcsExtent.vue.d.ts";
|
175
|
+
export { default as VcsViewpointComponent } from "./src/components/viewpoint/VcsViewpointComponent.vue";
|
176
|
+
export type * from "./src/components/viewpoint/VcsViewpointComponent.vue.d.ts";
|
177
|
+
export { default as VcsViewpointEditor } from "./src/components/viewpoint/VcsViewpointEditor.vue";
|
178
|
+
export type * from "./src/components/viewpoint/VcsViewpointEditor.vue.d.ts";
|
179
|
+
export { default as VcsFlightComponent } from "./src/components/flight/VcsFlightComponent.vue";
|
180
|
+
export type * from "./src/components/flight/VcsFlightComponent.vue.d.ts";
|
181
|
+
export { default as VcsFlightAnchorsComponent } from "./src/components/flight/VcsFlightAnchorsComponent.vue";
|
182
|
+
export type * from "./src/components/flight/VcsFlightAnchorsComponent.vue.d.ts";
|
183
|
+
export { default as VcsFlightPlayer } from "./src/components/flight/VcsFlightPlayer.vue";
|
184
|
+
export type * from "./src/components/flight/VcsFlightPlayer.vue.d.ts";
|
185
|
+
export { default as VcsFlightEditor } from "./src/components/flight/VcsFlightEditor.vue";
|
186
|
+
export type * from "./src/components/flight/VcsFlightEditor.vue.d.ts";
|
187
|
+
export { default as VcsFeatureTransforms } from "./src/components/vector-properties/VcsFeatureTransforms.vue";
|
188
|
+
export type * from "./src/components/vector-properties/VcsFeatureTransforms.vue.d.ts";
|
189
|
+
export { default as VcsFeatureStyleComponent } from "./src/components/style/VcsFeatureStyleComponent.vue";
|
190
|
+
export type * from "./src/components/style/VcsFeatureStyleComponent.vue.d.ts";
|
191
|
+
export { default as AbstractConfigEditor } from "./src/components/plugins/AbstractConfigEditor.vue";
|
192
|
+
export type * from "./src/components/plugins/AbstractConfigEditor.vue.d.ts";
|
193
|
+
export { default as FileDrop } from "./src/components/import/FileDrop.vue";
|
194
|
+
export type * from "./src/components/import/FileDrop.vue.d.ts";
|
195
|
+
export { default as ImportComponent } from "./src/components/import/ImportComponent.vue";
|
196
|
+
export type * from "./src/components/import/ImportComponent.vue.d.ts";
|
197
|
+
export { createMapButtonAction, createToggleAction, createOverviewMapAction, createModalAction, createLinkAction, createGoToViewpointAction, createZoomToFeatureAction } from "./src/actions/actionHelper.js";
|
198
|
+
export type * from "./src/actions/actionHelper.d.ts";
|
199
|
+
export { createStateRefAction, StateActionState } from "./src/actions/stateRefAction.js";
|
200
|
+
export type * from "./src/actions/stateRefAction.d.ts";
|
201
|
+
export { createLayerToggleAction, createZoomToExtentAction, createExtentFeatureAction, setupExtentComponentActions } from "./src/actions/extentActions.js";
|
202
|
+
export type * from "./src/actions/extentActions.d.ts";
|
203
|
+
export { createListItemRenameAction, createListItemDeleteAction, createListItemBulkAction, createListExportAction, createListImportAction } from "./src/actions/listActions.js";
|
204
|
+
export type * from "./src/actions/listActions.d.ts";
|
205
|
+
export { default as VcsCallback, executeCallbacks } from "./src/callback/vcsCallback.js";
|
206
|
+
export type * from "./src/callback/vcsCallback.d.ts";
|
207
|
+
export { default as VcsApp, setupMapNavbar, setupPluginMountedListeners, setupCategoryManagerWindow } from "./src/application/VcsApp.vue";
|
208
|
+
export type * from "./src/application/VcsApp.vue.d.ts";
|
209
|
+
export { default as ContentTreeCollection, createContentTreeCollection } from "./src/contentTree/contentTreeCollection.js";
|
210
|
+
export type * from "./src/contentTree/contentTreeCollection.d.ts";
|
211
|
+
export { default as LayerContentTreeItem, setViewpointAction, getStateFromLayer } from "./src/contentTree/layerContentTreeItem.js";
|
212
|
+
export type * from "./src/contentTree/layerContentTreeItem.d.ts";
|
213
|
+
export { default as WindowManager, WindowSlot, WindowPositions, posToPixel, windowPositionFromOptions } from "./src/manager/window/windowManager.js";
|
214
|
+
export type * from "./src/manager/window/windowManager.d.ts";
|
215
|
+
export { WindowAlignment, getFittedWindowPositionOptions, getFittedWindowPositionOptionsFromMapEvent, getTargetSize, getWindowPositionOptions, getWindowPositionOptionsFromMapEvent, posToNumber, posToPercent, optionsFromWindowPosition, updateWindowPosition, clipToTargetSize, moveWindow, applyParentPosition, getPositionAppliedOnTarget } from "./src/manager/window/windowHelper.js";
|
216
|
+
export type * from "./src/manager/window/windowHelper.d.ts";
|
217
|
+
export { default as NavbarManager, ButtonLocation, getActionsByLocation } from "./src/manager/navbarManager.js";
|
218
|
+
export type * from "./src/manager/navbarManager.d.ts";
|
219
|
+
export { default as ToolboxManager, ToolboxType, defaultToolboxName } from "./src/manager/toolbox/toolboxManager.js";
|
220
|
+
export type * from "./src/manager/toolbox/toolboxManager.d.ts";
|
221
|
+
export { makeEditorCollectionComponentClass, isEditorCollectionComponentClass } from "./src/manager/collectionManager/editorCollectionComponentClass.js";
|
222
|
+
export type * from "./src/manager/collectionManager/editorCollectionComponentClass.d.ts";
|
223
|
+
export { applyKeyMapping, applyValueMapping, default as AbstractFeatureInfoView } from "./src/featureInfo/abstractFeatureInfoView.js";
|
224
|
+
export type * from "./src/featureInfo/abstractFeatureInfoView.d.ts";
|
225
|
+
export { extractNestedKey, default as BalloonFeatureInfoView } from "./src/featureInfo/balloonFeatureInfoView.js";
|
226
|
+
export type * from "./src/featureInfo/balloonFeatureInfoView.d.ts";
|
227
|
+
export { getBalloonPosition, setBalloonPosition, setupBalloonPositionListener } from "./src/featureInfo/balloonHelper.js";
|
228
|
+
export type * from "./src/featureInfo/balloonHelper.d.ts";
|
229
|
+
export { getHighlightStyle, featureInfoViewSymbol } from "./src/featureInfo/featureInfo.js";
|
230
|
+
export type * from "./src/featureInfo/featureInfo.d.ts";
|
231
|
+
export { getWindowComponentOptions, default as OverviewMap } from "./src/navigation/overviewMap.js";
|
232
|
+
export type * from "./src/navigation/overviewMap.d.ts";
|
233
|
+
export { createVueI18n, setupI18n } from "./src/vuePlugins/i18n.js";
|
234
|
+
export type * from "./src/vuePlugins/i18n.d.ts";
|
235
|
+
export { createVuetify, vuetify, getColorByKey, getDefaultPrimaryColor } from "./src/vuePlugins/vuetify.js";
|
236
|
+
export type * from "./src/vuePlugins/vuetify.d.ts";
|
237
|
+
export { downloadURI, downloadBlob, downloadText, downloadCanvas } from "./src/downloadHelper.js";
|
238
|
+
export type * from "./src/downloadHelper.d.ts";
|
239
|
+
export { default as initApp, VcsUiAppConfigPattern, initAppFromModule, initAppFromAppConfig } from "./src/init.js";
|
240
|
+
export type * from "./src/init.d.ts";
|
241
|
+
export { vcsAppSymbol, pluginFactorySymbol, pluginBaseUrlSymbol, pluginModuleUrlSymbol, getPluginAssetUrl, isValidPackageName, loadPlugin, serializePlugin, deserializePlugin } from "./src/pluginHelper.js";
|
242
|
+
export type * from "./src/pluginHelper.d.ts";
|
243
|
+
export { getStateFromURL, createEmptyState, setStateToUrl } from "./src/state.js";
|
244
|
+
export type * from "./src/state.d.ts";
|
245
|
+
export { default as Notifier, NotificationType } from "./src/notifier/notifier.js";
|
246
|
+
export type * from "./src/notifier/notifier.d.ts";
|
247
|
+
export { default as VcsActionList, validateAction, validateActions } from "./src/components/lists/VcsActionList.vue";
|
248
|
+
export type * from "./src/components/lists/VcsActionList.vue.d.ts";
|
249
|
+
export { default as VcsVectorStyleComponent, VectorStyleMenus } from "./src/components/style/VcsVectorStyleComponent.vue";
|
250
|
+
export type * from "./src/components/style/VcsVectorStyleComponent.vue.d.ts";
|
251
|
+
export { default as VcsVectorPropertiesComponent, vectorProperties } from "./src/components/vector-properties/VcsVectorPropertiesComponent.vue";
|
252
|
+
export type * from "./src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts";
|
253
|
+
export { getProvidedFlightInstance, setupFlightAnchorEditingListener } from "./src/components/flight/composables.js";
|
254
|
+
export type * from "./src/components/flight/composables.d.ts";
|
255
|
+
export { default as VcsFeatureEditingWindow, EditorTransformationIcons, getAllowedEditorTransformationModes } from "./src/components/vector-properties/VcsFeatureEditingWindow.vue";
|
256
|
+
export type * from "./src/components/vector-properties/VcsFeatureEditingWindow.vue.d.ts";
|
package/index.js
CHANGED
@@ -11,10 +11,24 @@ export {
|
|
11
11
|
createGoToViewpointAction,
|
12
12
|
createZoomToFeatureAction,
|
13
13
|
} from './src/actions/actionHelper.js';
|
14
|
+
export { parseAndSanitizeMarkdown } from './src/application/markdownHelper.js';
|
14
15
|
export {
|
15
16
|
createStateRefAction,
|
16
17
|
StateActionState,
|
17
18
|
} from './src/actions/stateRefAction.js';
|
19
|
+
export {
|
20
|
+
createLayerToggleAction,
|
21
|
+
createZoomToExtentAction,
|
22
|
+
createExtentFeatureAction,
|
23
|
+
setupExtentComponentActions,
|
24
|
+
} from './src/actions/extentActions.js';
|
25
|
+
export {
|
26
|
+
createListItemRenameAction,
|
27
|
+
createListItemDeleteAction,
|
28
|
+
createListItemBulkAction,
|
29
|
+
createListExportAction,
|
30
|
+
createListImportAction,
|
31
|
+
} from './src/actions/listActions.js';
|
18
32
|
|
19
33
|
export {
|
20
34
|
default as VcsCallback,
|
@@ -47,6 +61,7 @@ export {
|
|
47
61
|
getStateFromLayer,
|
48
62
|
} from './src/contentTree/layerContentTreeItem.js';
|
49
63
|
export { default as LayerGroupContentTreeItem } from './src/contentTree/layerGroupContentTreeItem.js';
|
64
|
+
export { default as FlightContentTreeItem } from './src/contentTree/flightContentTreeItem.js';
|
50
65
|
export { default as LayerTree } from './src/contentTree/LayerTree.vue';
|
51
66
|
export { default as NodeContentTreeItem } from './src/contentTree/nodeContentTreeItem.js';
|
52
67
|
export { default as ObliqueCollectionContentTreeItem } from './src/contentTree/obliqueCollectionContentTreeItem.js';
|
@@ -90,11 +105,17 @@ export {
|
|
90
105
|
export {
|
91
106
|
default as ToolboxManager,
|
92
107
|
ToolboxType,
|
108
|
+
defaultToolboxName,
|
93
109
|
} from './src/manager/toolbox/toolboxManager.js';
|
94
110
|
export { default as CategoryManager } from './src/manager/collectionManager/categoryManager.js';
|
95
111
|
export { default as CollectionManager } from './src/manager/collectionManager/collectionManager.js';
|
96
112
|
export { default as CollectionManagerComponent } from './src/manager/collectionManager/CollectionManager.vue';
|
97
113
|
export { default as CollectionComponentProvider } from './src/manager/collectionManager/CollectionComponentProvider.vue';
|
114
|
+
export { default as CollectionComponentClass } from './src/manager/collectionManager/collectionComponentClass.js';
|
115
|
+
export {
|
116
|
+
makeEditorCollectionComponentClass,
|
117
|
+
isEditorCollectionComponentClass,
|
118
|
+
} from './src/manager/collectionManager/editorCollectionComponentClass.js';
|
98
119
|
export { default as CollectionComponent } from './src/manager/collectionManager/CollectionComponent.vue';
|
99
120
|
export { default as CollectionComponentList } from './src/manager/collectionManager/CollectionComponentList.vue';
|
100
121
|
export { default as ContextMenuManager } from './src/manager/contextMenu/contextMenuManager.js';
|
@@ -206,30 +227,26 @@ export { default as VcsSelect } from './src/components/form-inputs-controls/VcsS
|
|
206
227
|
export { default as VcsSlider } from './src/components/form-inputs-controls/VcsSlider.vue';
|
207
228
|
export { default as VcsTextField } from './src/components/form-inputs-controls/VcsTextField.vue';
|
208
229
|
export { default as VcsChipArrayInput } from './src/components/form-inputs-controls/VcsChipArrayInput.vue';
|
230
|
+
export { default as VcsCoordinate } from './src/components/form-inputs-controls/VcsCoordinate.vue';
|
209
231
|
export { default as VcsTextArea } from './src/components/form-inputs-controls/VcsTextArea.vue';
|
210
232
|
export { default as VcsWizard } from './src/components/form-inputs-controls/VcsWizard.vue';
|
211
233
|
export { default as VcsWizardStep } from './src/components/form-inputs-controls/VcsWizardStep.vue';
|
212
234
|
export { default as VcsDatePicker } from './src/components/form-inputs-controls/VcsDatePicker.vue';
|
213
235
|
|
214
236
|
export { default as VcsFormattedNumber } from './src/components/form-output/VcsFormattedNumber.vue';
|
237
|
+
export { default as VcsTextPage } from './src/application/VcsTextPage.vue';
|
215
238
|
|
216
239
|
export {
|
217
240
|
default as VcsActionList,
|
218
241
|
validateAction,
|
219
242
|
validateActions,
|
220
243
|
} from './src/components/lists/VcsActionList.vue';
|
221
|
-
|
244
|
+
|
222
245
|
export { default as VcsList } from './src/components/lists/VcsList.vue';
|
223
246
|
export { default as VcsTreeview } from './src/components/lists/VcsTreeview.vue';
|
224
247
|
export { default as VcsTreeviewLeaf } from './src/components/lists/VcsTreeviewLeaf.vue';
|
225
248
|
export { default as VcsTreeviewSearchbar } from './src/components/lists/VcsTreeviewSearchbar.vue';
|
226
249
|
|
227
|
-
// export { default as VcsMediaControls } from './src/components/media-controls/VcsMediaControls.vue';
|
228
|
-
|
229
|
-
// export { default as VcsContextMenu } from './src/components/menus/VcsContextMenu.vue';
|
230
|
-
// export { default as VcsMenu } from './src/components/menus/VcsMenu.vue';
|
231
|
-
// export { default as VcsOverflowMenu } from './src/components/menus/VcsOverflowMenu.vue';
|
232
|
-
|
233
250
|
export { default as VcsBadge } from './src/components/notification/VcsBadge.vue';
|
234
251
|
export { default as VcsDefaultLogo } from './src/logo.svg';
|
235
252
|
export { default as VcsDefaultMobileLogo } from './src/logo-mobile.svg';
|
@@ -242,14 +259,34 @@ export { default as VcsImageSelector } from './src/components/style/VcsImageSele
|
|
242
259
|
export { default as VcsImageMenu } from './src/components/style/VcsImageMenu.vue';
|
243
260
|
export { default as VcsTextSelector } from './src/components/style/VcsTextSelector.vue';
|
244
261
|
export { default as VcsTextMenu } from './src/components/style/VcsTextMenu.vue';
|
262
|
+
export { default as VcsExtent } from './src/components/form-inputs-controls/VcsExtent.vue';
|
245
263
|
export {
|
246
264
|
default as VcsVectorStyleComponent,
|
247
265
|
VectorStyleMenus,
|
248
266
|
} from './src/components/style/VcsVectorStyleComponent.vue';
|
249
267
|
|
250
|
-
export {
|
251
|
-
|
252
|
-
|
253
|
-
|
268
|
+
export {
|
269
|
+
default as VcsVectorPropertiesComponent,
|
270
|
+
vectorProperties,
|
271
|
+
} from './src/components/vector-properties/VcsVectorPropertiesComponent.vue';
|
272
|
+
export { default as VcsViewpointComponent } from './src/components/viewpoint/VcsViewpointComponent.vue';
|
273
|
+
export { default as VcsViewpointEditor } from './src/components/viewpoint/VcsViewpointEditor.vue';
|
274
|
+
export { default as VcsFlightComponent } from './src/components/flight/VcsFlightComponent.vue';
|
275
|
+
export { default as VcsFlightAnchorsComponent } from './src/components/flight/VcsFlightAnchorsComponent.vue';
|
276
|
+
export { default as VcsFlightPlayer } from './src/components/flight/VcsFlightPlayer.vue';
|
277
|
+
export { default as VcsFlightEditor } from './src/components/flight/VcsFlightEditor.vue';
|
278
|
+
export {
|
279
|
+
getProvidedFlightInstance,
|
280
|
+
setupFlightAnchorEditingListener,
|
281
|
+
} from './src/components/flight/composables.js';
|
282
|
+
export {
|
283
|
+
default as VcsFeatureEditingWindow,
|
284
|
+
EditorTransformationIcons,
|
285
|
+
getAllowedEditorTransformationModes,
|
286
|
+
} from './src/components/vector-properties/VcsFeatureEditingWindow.vue';
|
287
|
+
export { default as VcsFeatureTransforms } from './src/components/vector-properties/VcsFeatureTransforms.vue';
|
288
|
+
export { default as VcsFeatureStyleComponent } from './src/components/style/VcsFeatureStyleComponent.vue';
|
254
289
|
|
255
290
|
export { default as AbstractConfigEditor } from './src/components/plugins/AbstractConfigEditor.vue';
|
291
|
+
export { default as FileDrop } from './src/components/import/FileDrop.vue';
|
292
|
+
export { default as ImportComponent } from './src/components/import/ImportComponent.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vcmap/ui",
|
3
|
-
"version": "5.0.2",
|
3
|
+
"version": "5.1.0-rc.2",
|
4
4
|
"author": "Virtual City Systems",
|
5
5
|
"license": "MIT",
|
6
6
|
"scripts": {
|
@@ -11,12 +11,14 @@
|
|
11
11
|
"build-preview": "node build/buildPreview.js",
|
12
12
|
"preview": "vite preview",
|
13
13
|
"build": "node build/build.js",
|
14
|
+
"build-types": "node build/buildTypes.js",
|
14
15
|
"bundle": "node build/bundle.js",
|
15
16
|
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts",
|
16
17
|
"lint:prettier": "prettier --check .",
|
17
|
-
"lint": "
|
18
|
+
"lint:types": "node build/lintTypes.js",
|
19
|
+
"lint": "npm run lint:js && npm run lint:prettier && npm run lint:types",
|
18
20
|
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
|
19
|
-
"prepack": "node build/build.js",
|
21
|
+
"prepack": "node build/build.js && node build/buildTypes.js",
|
20
22
|
"install-plugins": "cd plugins && npm i --omit peer --no-package-lock --force --include optional"
|
21
23
|
},
|
22
24
|
"repository": {
|
@@ -25,8 +27,10 @@
|
|
25
27
|
},
|
26
28
|
"files": [
|
27
29
|
"index.js",
|
30
|
+
"index.d.ts",
|
28
31
|
"index.html",
|
29
32
|
"app.config.json",
|
33
|
+
"tsconfig.json",
|
30
34
|
"dist/",
|
31
35
|
"src/",
|
32
36
|
"plugins/",
|
@@ -40,37 +44,40 @@
|
|
40
44
|
"@vcsuite/check": "^1.1.2",
|
41
45
|
"@vcsuite/logger": "^1.0.1",
|
42
46
|
"@vcsuite/parsers": "^1.0.3",
|
47
|
+
"dompurify": "^3.0.6",
|
48
|
+
"fast-deep-equal": "^3.1.3",
|
49
|
+
"marked": "^11.1.0",
|
43
50
|
"semver": "^7.5.4",
|
44
51
|
"uuid": "^9.0.0",
|
45
52
|
"vue-i18n": "^8.24.1"
|
46
53
|
},
|
47
54
|
"peerDependencies": {
|
48
55
|
"@vcmap-cesium/engine": "^4.0.3",
|
49
|
-
"@vcmap/core": "^5.0.2",
|
56
|
+
"@vcmap/core": "^5.1.0-rc.2",
|
50
57
|
"ol": "^7.5.2",
|
51
58
|
"vue": "~2.7.3",
|
52
59
|
"vuetify": "~2.6.7"
|
53
60
|
},
|
54
61
|
"devDependencies": {
|
55
62
|
"@vcmap/rollup-plugin-vcs-ol": "^1.0.2",
|
56
|
-
"@vcsuite/eslint-config": "^3.0.
|
63
|
+
"@vcsuite/eslint-config": "^3.0.5",
|
57
64
|
"@vitejs/plugin-vue2": "^2.2.0",
|
58
|
-
"@vitest/coverage-
|
65
|
+
"@vitest/coverage-v8": "^0.34.6",
|
59
66
|
"@vue/test-utils": "^1.3.5",
|
60
|
-
"eslint": "^8.9.0",
|
61
67
|
"eslint-import-resolver-alias": "^1.1.2",
|
62
|
-
"jest-canvas-mock": "^2.
|
68
|
+
"jest-canvas-mock": "^2.5.2",
|
63
69
|
"jsdoc": "^3.6.7",
|
64
70
|
"jsdoc-plugin-intersection": "^1.0.4",
|
65
71
|
"jsdoc-plugin-typescript": "^2.0.6",
|
66
|
-
"jsdom": "^
|
72
|
+
"jsdom": "^22.1.0",
|
67
73
|
"resize-observer-polyfill": "1.5.1",
|
68
74
|
"rollup-plugin-strip-pragma": "^1.0.0",
|
69
75
|
"sass": "1.32.13",
|
70
76
|
"tar": "^6.1.14",
|
71
|
-
"typescript": "^
|
77
|
+
"typescript": "^5.2.2",
|
72
78
|
"vite": "^4.4.9",
|
73
|
-
"vitest": "^0.
|
79
|
+
"vitest": "^0.34.6",
|
80
|
+
"vue-tsc": "^1.8.20"
|
74
81
|
},
|
75
82
|
"stylelint": {
|
76
83
|
"extends": "stylelint-config-standard",
|
@@ -90,9 +97,6 @@
|
|
90
97
|
"extends": [
|
91
98
|
"@vcsuite/eslint-config/vue"
|
92
99
|
],
|
93
|
-
"plugins": [
|
94
|
-
"jsdoc"
|
95
|
-
],
|
96
100
|
"settings": {
|
97
101
|
"import/resolver": {
|
98
102
|
"alias": {
|
@@ -110,6 +114,7 @@
|
|
110
114
|
}
|
111
115
|
},
|
112
116
|
"eslintIgnore": [
|
117
|
+
"*.d.ts",
|
113
118
|
"dist",
|
114
119
|
"exampleData",
|
115
120
|
"lib",
|
@@ -135,6 +140,8 @@
|
|
135
140
|
"npm": ">=9.0.0"
|
136
141
|
},
|
137
142
|
"type": "module",
|
143
|
+
"types": "index.d.ts",
|
144
|
+
"main": "index.js",
|
138
145
|
"exports": {
|
139
146
|
".": "./index.js",
|
140
147
|
"./config/*.json": "./config/*.json",
|
@@ -93,6 +93,7 @@
|
|
93
93
|
<v-card-title>OVERFLOW</v-card-title>
|
94
94
|
<v-card-actions>
|
95
95
|
<VcsActionButtonList
|
96
|
+
:disabled="disabled"
|
96
97
|
:actions="[
|
97
98
|
{
|
98
99
|
name: 'Action 1',
|
@@ -145,6 +146,7 @@
|
|
145
146
|
<v-card-title>OVERFLOW</v-card-title>
|
146
147
|
<v-card-actions>
|
147
148
|
<VcsActionButtonList
|
149
|
+
:disabled="disabled"
|
148
150
|
:actions="[
|
149
151
|
{
|
150
152
|
name: 'Tool 1',
|
@@ -196,6 +198,7 @@
|
|
196
198
|
<v-card-title>OVERFLOW</v-card-title>
|
197
199
|
<v-card-actions>
|
198
200
|
<VcsActionButtonList
|
201
|
+
:disabled="disabled"
|
199
202
|
:actions="[
|
200
203
|
{
|
201
204
|
name: 'Action 1',
|