@vcmap/ui 6.0.0-rc.2 → 6.0.0-rc.5
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/build/build.js +40 -60
- package/build/buildHelpers.js +62 -19
- package/build/bundle.js +1 -1
- package/build/info/conf.json +1 -1
- package/build/info/publish.js +25 -31
- package/build/lintTypes.js +5 -0
- package/config/base.config.json +2 -1
- package/config/dev.config.json +7 -1
- package/config/projects.config.json +2 -1
- package/config/splashscreen.config.json +45 -0
- package/config/www.config.json +25 -22
- package/dist/.htaccess +7 -0
- package/dist/assets/@mdi/font/README.md +25 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.min-680621ca.css +3 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
- package/dist/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
- package/dist/assets/{cesium.0b750d.js → cesium-126f111a.js} +272 -385
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.cbf44a.js → core-1c8b8674.js} +2015 -2019
- package/dist/assets/core.js +1 -1
- package/dist/assets/{ol.86e93c.js → ol-27f9b3f3.js} +42521 -44394
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui-7214428e.css +1 -0
- package/dist/assets/{ui.7c276c.js → ui-7214428e.js} +13968 -13907
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue-c78a5f76.js +6083 -0
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify.4d18fe.css → vuetify-88a2fabe.css} +2 -2
- package/dist/assets/{vuetify.4d18fe.js → vuetify-88a2fabe.js} +7793 -7940
- package/dist/assets/vuetify.js +1 -1
- package/dist/index.html +11 -10
- package/index.d.ts +11 -11
- package/index.html +5 -5
- package/index.js +9 -7
- package/lib/olLib.js +84 -23
- package/package.json +19 -19
- package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +41 -1
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +71 -32
- package/plugins/@vcmap-show-case/form-inputs-example/src/exampleActions.js +7 -11
- package/plugins/@vcmap-show-case/form-inputs-example/src/index.js +2 -2
- package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +21 -8
- package/plugins/@vcmap-show-case/project-selector/src/ModulesListComponent.vue +18 -11
- package/plugins/@vcmap-show-case/search-example/src/index.js +1 -0
- package/plugins/@vcmap-show-case/search-example/src/searchImpl.js +35 -5
- package/plugins/@vcmap-show-case/style-input-example/src/StyleExample.vue +29 -90
- package/plugins/@vcmap-show-case/toolbox-example/src/index.js +2 -1
- package/plugins/package.json +3 -23
- package/public/assets/@mdi/font/README.md +25 -0
- package/public/assets/@mdi/font/css/materialdesignicons.min.css +2 -2
- package/public/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
- package/public/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
- package/src/actions/StyleSelector.vue +1 -1
- package/src/actions/actionHelper.js +33 -22
- package/src/actions/flightActions.js +5 -5
- package/src/actions/listActions.d.ts +4 -11
- package/src/actions/listActions.js +6 -22
- package/src/actions/stateRefAction.js +2 -2
- package/src/application/VcsApp.vue +147 -57
- package/src/application/VcsApp.vue.d.ts +298 -4
- package/src/application/VcsAttributions.vue +2 -13
- package/src/application/VcsAttributionsFooter.vue +10 -11
- package/src/application/VcsContainer.vue +26 -9
- package/src/application/VcsContainer.vue.d.ts +237 -0
- package/src/application/VcsMainMap.vue +7 -7
- package/src/application/VcsMainMap.vue.d.ts +2 -2
- package/src/application/VcsNavbar.vue +5 -1
- package/src/application/VcsPositionDisplay.vue +8 -23
- package/src/application/VcsPositionDisplay.vue.d.ts +0 -1
- package/src/application/VcsSettings.vue +10 -17
- package/src/application/VcsSplashScreen.vue +21 -40
- package/src/application/VcsSplashScreen.vue.d.ts +0 -2
- package/src/application/VcsTextPage.vue +12 -43
- package/src/application/VcsTextPage.vue.d.ts +4 -8
- package/src/application/VcsTextPageFooter.vue +23 -40
- package/src/components/buttons/VcsActionButtonList.vue +59 -3
- package/src/components/buttons/VcsActionButtonList.vue.d.ts +28 -0
- package/src/components/extent/VcsExtentEditor.vue +1 -1
- package/src/components/flight/VcsFlightAnchorsComponent.vue +63 -36
- package/src/components/flight/VcsFlightComponent.vue +16 -21
- package/src/components/flight/VcsFlightPlayer.vue +27 -5
- package/src/components/form-inputs-controls/VcsCheckbox.vue +9 -5
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue +15 -13
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +3 -4
- package/src/components/form-inputs-controls/VcsCoordinate.vue +17 -4
- package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +5 -2
- package/src/components/form-inputs-controls/VcsDatePicker.vue +34 -60
- package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +1 -63
- package/src/components/form-inputs-controls/VcsFileInput.vue +17 -18
- package/src/components/form-inputs-controls/VcsFileInput.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
- package/src/components/form-inputs-controls/VcsRadio.vue +17 -3
- package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsSelect.vue +40 -31
- package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +5 -2
- package/src/components/form-inputs-controls/VcsSlider.vue +13 -1
- package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsTextArea.vue +27 -26
- package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsTextField.vue +20 -4
- package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +9 -0
- package/src/components/form-inputs-controls/VcsWizardStep.vue +3 -6
- package/src/components/form-inputs-controls/vcsTextField.scss +9 -12
- package/src/components/form-output/VcsFormattedNumber.vue +21 -5
- package/src/components/form-output/VcsFormattedNumber.vue.d.ts +9 -0
- package/src/components/form-output/VcsMarkdown.vue +15 -12
- package/src/components/form-output/VcsMarkdown.vue.d.ts +1 -0
- package/src/components/form-output/markdownHelper.d.ts +30 -0
- package/src/components/form-output/markdownHelper.js +398 -0
- package/src/components/import/VcsFileDrop.vue +8 -5
- package/src/components/import/VcsImportComponent.vue +4 -3
- package/src/components/import/VcsImportComponent.vue.d.ts +1 -2
- package/src/components/lists/VcsActionList.vue +11 -7
- package/src/components/lists/VcsList.vue +30 -52
- package/src/components/lists/VcsList.vue.d.ts +14 -59
- package/src/components/lists/{VcsListItem.vue → VcsListItemComponent.vue} +68 -22
- package/src/components/lists/VcsListItemComponent.vue.d.ts +69 -0
- package/src/components/lists/VcsTreeview.vue +43 -16
- package/src/components/lists/VcsTreeview.vue.d.ts +14 -3
- package/src/components/lists/VcsTreeviewLeaf.vue +15 -6
- package/src/components/lists/VcsTreeviewSearchbar.vue +2 -2
- package/src/components/notification/VcsHelp.vue +1 -1
- package/src/components/notification/VcsHelp.vue.d.ts +3 -2
- package/src/components/section/VcsExpansionPanel.vue +101 -0
- package/src/components/section/VcsExpansionPanel.vue.d.ts +19 -0
- package/src/components/{form-inputs-controls → section}/VcsFormSection.vue +10 -4
- package/src/components/{form-inputs-controls → section}/VcsFormSection.vue.d.ts +1 -2
- package/src/components/style/MenuWrapper.vue +24 -26
- package/src/components/style/MenuWrapper.vue.d.ts +4 -4
- package/src/components/style/VcsFillMenu.vue +9 -16
- package/src/components/style/VcsFillMenu.vue.d.ts +0 -18
- package/src/components/style/VcsFillSelector.vue +13 -16
- package/src/components/style/VcsImageMenu.vue +8 -25
- package/src/components/style/VcsImageMenu.vue.d.ts +0 -27
- package/src/components/style/VcsImageSelector.vue +102 -167
- package/src/components/style/VcsImageSelector.vue.d.ts +15 -15
- package/src/components/style/VcsStrokeMenu.vue +8 -15
- package/src/components/style/VcsStrokeMenu.vue.d.ts +0 -18
- package/src/components/style/VcsStrokeSelector.vue +11 -18
- package/src/components/style/VcsTextMenu.vue +9 -12
- package/src/components/style/VcsTextMenu.vue.d.ts +0 -9
- package/src/components/style/VcsTextSelector.vue +79 -95
- package/src/components/style/VcsTextSelector.vue.d.ts +20 -22
- package/src/components/style/VcsVectorStyleComponent.vue +8 -19
- package/src/components/style/VcsVectorStyleComponent.vue.d.ts +1 -1
- package/src/components/style/composables.d.ts +0 -14
- package/src/components/style/composables.js +0 -49
- package/src/components/tables/VcsDataTable.vue +28 -22
- package/src/components/tables/VcsTable.vue +45 -62
- package/src/components/tables/VcsTable.vue.d.ts +30 -17
- package/src/components/tables/VcsTableCell.vue +72 -0
- package/src/components/tables/VcsTableCell.vue.d.ts +13 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue +43 -9
- package/src/components/vector-properties/VcsFeatureTransforms.vue +5 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +1 -1
- package/src/components/viewpoint/VcsViewpointComponent.vue +23 -10
- package/src/components/viewpoint/VcsViewpointEditor.vue +2 -1
- package/src/contentTree/LayerTree.vue +9 -27
- package/src/contentTree/LayerTree.vue.d.ts +1 -1
- package/src/contentTree/contentTreeCollection.d.ts +1 -0
- package/src/contentTree/contentTreeCollection.js +45 -11
- package/src/contentTree/contentTreeItem.d.ts +2 -2
- package/src/contentTree/contentTreeItem.js +7 -7
- package/src/featureInfo/BalloonComponent.vue +14 -15
- package/src/featureInfo/MarkdownBalloonComponent.vue +4 -2
- package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +2 -2
- package/src/featureInfo/abstractFeatureInfoView.d.ts +6 -0
- package/src/featureInfo/abstractFeatureInfoView.js +15 -7
- package/src/featureInfo/featureInfo.d.ts +5 -5
- package/src/featureInfo/featureInfo.js +59 -41
- package/src/featureInfo/iframeFeatureInfoView.d.ts +8 -2
- package/src/featureInfo/iframeFeatureInfoView.js +15 -5
- package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -5
- package/src/featureInfo/markdownFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownFeatureInfoView.js +9 -11
- package/src/featureInfo/tableFeatureInfoView.js +13 -4
- package/src/init.d.ts +5 -38
- package/src/init.js +19 -18
- package/src/legend/StyleLegendItem.vue +4 -9
- package/src/legend/VcsLegend.vue +28 -54
- package/src/manager/buttonManager.js +4 -4
- package/src/manager/collectionManager/CollectionComponent.vue +17 -42
- package/src/manager/collectionManager/CollectionComponent.vue.d.ts +4 -2
- package/src/manager/collectionManager/CollectionComponentContent.vue +7 -6
- package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +3 -1
- package/src/manager/collectionManager/CollectionComponentList.vue +11 -9
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +6 -4
- package/src/manager/collectionManager/CollectionComponentProvider.vue +1 -1
- package/src/manager/collectionManager/CollectionComponentStandalone.vue +3 -2
- package/src/manager/collectionManager/CollectionManager.vue +1 -1
- package/src/manager/collectionManager/collectionComponentClass.d.ts +1 -1
- package/src/manager/collectionManager/collectionComponentClass.js +7 -10
- package/src/manager/collectionManager/collectionManager.js +10 -10
- package/src/manager/collectionManager/editorCollectionComponentClass.js +6 -5
- package/src/manager/contextMenu/contextMenuManager.js +2 -2
- package/src/manager/navbarManager.js +2 -2
- package/src/manager/panel/PanelComponent.vue +2 -9
- package/src/manager/panel/PanelManagerComponent.vue +7 -3
- package/src/manager/panel/panelHelper.js +3 -3
- package/src/manager/panel/panelManager.d.ts +9 -1
- package/src/manager/panel/panelManager.js +18 -6
- package/src/manager/toolbox/GroupToolboxComponent.vue +8 -4
- package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +7 -4
- package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/ToolboxManager.vue +9 -6
- package/src/manager/toolbox/ToolboxManager.vue.d.ts +1 -0
- package/src/manager/toolbox/toolboxManager.js +10 -10
- package/src/manager/window/WindowComponent.vue +12 -8
- package/src/manager/window/WindowComponentHeader.vue +29 -8
- package/src/manager/window/WindowComponentHeader.vue.d.ts +2 -0
- package/src/manager/window/WindowManager.vue +2 -2
- package/src/manager/window/windowManager.d.ts +2 -2
- package/src/manager/window/windowManager.js +4 -4
- package/src/navigation/MapNavigation.vue +20 -0
- package/src/navigation/locatorHelper.js +1 -1
- package/src/navigation/overviewMap.js +1 -1
- package/src/notifier/NotifierComponent.vue +18 -15
- package/src/search/ResultItem.vue +18 -6
- package/src/search/ResultsComponent.vue +31 -20
- package/src/search/ResultsComponent.vue.d.ts +2 -1
- package/src/search/SearchComponent.vue +8 -14
- package/src/search/SearchComponent.vue.d.ts +1 -0
- package/src/search/search.js +2 -2
- package/src/siteConfig.js +9 -9
- package/src/state.js +4 -4
- package/src/styles/_typography.scss +0 -2
- package/src/styles/main.scss +0 -4
- package/src/uiConfig.d.ts +300 -5
- package/src/uiConfig.js +28 -16
- package/src/vcsUiApp.d.ts +21 -17
- package/src/vcsUiApp.js +11 -10
- package/src/vuePlugins/vuetify.d.ts +2 -0
- package/src/vuePlugins/vuetify.js +14 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
- package/dist/assets/@mdi/font/css/materialdesignicons.min.e3f476.css +0 -3
- package/dist/assets/index-8eGauqjA.js +0 -1
- package/dist/assets/ui.7c276c.css +0 -1
- package/dist/assets/vue.a3cd64.js +0 -6096
- package/public/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
- package/src/application/VcsCustomScreen.vue +0 -45
- package/src/application/VcsCustomScreen.vue.d.ts +0 -15
- package/src/application/markdownHelper.d.ts +0 -12
- package/src/application/markdownHelper.js +0 -70
- package/src/components/lists/VcsListItem.vue.d.ts +0 -21
- package/src/components/notification/VcsTooltip.vue +0 -156
- package/src/components/notification/VcsTooltip.vue.d.ts +0 -27
- package/src/featureInfo/MarkdownComponent.vue +0 -16
- package/src/featureInfo/MarkdownComponent.vue.d.ts +0 -7
- package/src/styles/_theming.scss +0 -73
- package/src/styles/settings.scss +0 -6
- package/src/styles/shades.scss +0 -4
- package/src/styles/variables.scss +0 -140
- package/src/styles/vcsFont.scss +0 -2
- package/src/styles/vcsGrid.scss +0 -3
- /package/dist/assets/{favicon-128.4c4ce5.png → favicon-128-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-180.5b99c0.png → favicon-180-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-192.0e205e.png → favicon-192-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-32.6b9add.png → favicon-32-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon.d5ec97.svg → favicon-4c4ce5df.svg} +0 -0
- /package/dist/assets/font/{TitilliumWeb-Regular.9ca076.woff2 → TitilliumWeb-Regular-9ca076be.woff2} +0 -0
- /package/dist/assets/style/{icon-marker.70960f.png → icon-marker-70960f05.png} +0 -0
- /package/dist/assets/style/{icon-marker-blue.534e37.png → icon-marker-blue-534e374b.png} +0 -0
- /package/dist/assets/style/{icon-marker-green.0b6a92.png → icon-marker-green-0b6a92bc.png} +0 -0
- /package/dist/assets/style/{icon-marker-o.036477.png → icon-marker-o-036477fa.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-blue.7b6d62.png → icon-marker-o-blue-7b6d6279.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-green.c863c0.png → icon-marker-o-green-c863c0fa.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-red.93ff58.png → icon-marker-o-red-93ff58df.png} +0 -0
- /package/dist/assets/style/{icon-marker-red.313d03.png → icon-marker-red-313d03e8.png} +0 -0
- /package/dist/assets/style/{icon-pin.b7ce77.png → icon-pin-b7ce771e.png} +0 -0
- /package/dist/assets/style/{icon-pin-blue.7be369.png → icon-pin-blue-7be369a3.png} +0 -0
- /package/dist/assets/style/{icon-pin-green.cbb935.png → icon-pin-green-cbb935fe.png} +0 -0
- /package/dist/assets/style/{icon-pin-red.3f25b2.png → icon-pin-red-3f25b245.png} +0 -0
- /package/public/assets/{favicon-128.png → favicon-128-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-180.png → favicon-180-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-192.png → favicon-192-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-32.png → favicon-32-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon.svg → favicon-4c4ce5df.svg} +0 -0
@@ -1,9 +1,6 @@
|
|
1
|
+
import { renderTemplate } from '../components/form-output/markdownHelper.js';
|
1
2
|
import AbstractFeatureInfoView from './abstractFeatureInfoView.js';
|
2
|
-
import
|
3
|
-
parseAndSanitizeMarkdown,
|
4
|
-
replaceAttributes,
|
5
|
-
} from '../application/markdownHelper.js';
|
6
|
-
import MarkdownComponent from './MarkdownComponent.vue';
|
3
|
+
import VcsMarkdown from '../components/form-output/VcsMarkdown.vue';
|
7
4
|
|
8
5
|
/**
|
9
6
|
* @typedef {import("./abstractFeatureInfoView.js").FeatureInfoViewOptions & { template: string | string[] }} MarkdownFeatureInfoViewOptions
|
@@ -31,7 +28,7 @@ class MarkdownFeatureInfoView extends AbstractFeatureInfoView {
|
|
31
28
|
* @param {MarkdownFeatureInfoViewOptions} options
|
32
29
|
*/
|
33
30
|
constructor(options) {
|
34
|
-
super(options,
|
31
|
+
super(options, VcsMarkdown);
|
35
32
|
|
36
33
|
/**
|
37
34
|
* @type {string | string[]}
|
@@ -47,11 +44,11 @@ class MarkdownFeatureInfoView extends AbstractFeatureInfoView {
|
|
47
44
|
* @returns {string}
|
48
45
|
*/
|
49
46
|
_renderTemplate(attributes) {
|
50
|
-
return
|
47
|
+
return renderTemplate(this.template, attributes);
|
51
48
|
}
|
52
49
|
|
53
50
|
/**
|
54
|
-
*
|
51
|
+
* Supports markdown templates (e.g. {{someProperty}}) and style expressions to derive a markdown rendering
|
55
52
|
* @param {import("./featureInfo.js").FeatureInfoEvent} featureInfo
|
56
53
|
* @param {import("@vcmap/core").Layer} layer
|
57
54
|
* @returns {MarkdownFeatureInfoViewProps}
|
@@ -60,9 +57,10 @@ class MarkdownFeatureInfoView extends AbstractFeatureInfoView {
|
|
60
57
|
const properties = super.getProperties(featureInfo, layer);
|
61
58
|
return {
|
62
59
|
...properties,
|
63
|
-
|
64
|
-
|
65
|
-
|
60
|
+
content: this._renderTemplate({
|
61
|
+
...properties,
|
62
|
+
...properties.attributes,
|
63
|
+
}),
|
66
64
|
};
|
67
65
|
}
|
68
66
|
|
@@ -79,6 +79,19 @@ class TableFeatureInfoView extends AbstractFeatureInfoView {
|
|
79
79
|
this.searchbarPlaceholder = options.searchbarPlaceholder;
|
80
80
|
}
|
81
81
|
|
82
|
+
/**
|
83
|
+
* @param {undefined|import("ol").Feature|import("@vcmap-cesium/engine").Cesium3DTileFeature|import("@vcmap-cesium/engine").Cesium3DTilePointFeature} feature
|
84
|
+
* @returns {Object}
|
85
|
+
* @private
|
86
|
+
*/
|
87
|
+
_getAttributesFromFeature(feature) {
|
88
|
+
const attributes = super._getAttributesFromFeature(feature);
|
89
|
+
return {
|
90
|
+
...attributes,
|
91
|
+
featureId: feature.getId(),
|
92
|
+
};
|
93
|
+
}
|
94
|
+
|
82
95
|
/**
|
83
96
|
* @param {import("./featureInfo.js").FeatureInfoEvent} featureInfo
|
84
97
|
* @param {import("@vcmap/core").Layer} layer
|
@@ -92,10 +105,6 @@ class TableFeatureInfoView extends AbstractFeatureInfoView {
|
|
92
105
|
itemsPerPageArray: this.itemsPerPageArray,
|
93
106
|
showSearchbar: this.showSearchbar,
|
94
107
|
searchbarPlaceholder: this.searchbarPlaceholder,
|
95
|
-
headers: [
|
96
|
-
{ text: 'components.vcsTable.key', value: 'key', width: '128px' },
|
97
|
-
{ text: 'components.vcsTable.value', value: 'value', width: '192px' },
|
98
|
-
],
|
99
108
|
};
|
100
109
|
}
|
101
110
|
|
package/src/init.d.ts
CHANGED
@@ -18,41 +18,8 @@ export function initAppFromModule(mountTarget: string, configUrl?: string | unde
|
|
18
18
|
* @returns {Promise<import("@src/vcsUiApp.js").default>}
|
19
19
|
*/
|
20
20
|
export function initAppFromAppConfig(mountTarget: string, appUrl: string): Promise<import("@src/vcsUiApp.js").default>;
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
}[] | undefined)[];
|
27
|
-
let maps: ({
|
28
|
-
type: StringConstructor;
|
29
|
-
name: StringConstructor;
|
30
|
-
}[] | undefined)[];
|
31
|
-
let styles: ({
|
32
|
-
type: StringConstructor;
|
33
|
-
name: StringConstructor;
|
34
|
-
}[] | undefined)[];
|
35
|
-
let viewpoints: ({
|
36
|
-
type: StringConstructor;
|
37
|
-
name: StringConstructor;
|
38
|
-
}[] | undefined)[];
|
39
|
-
let startingViewpointName: (StringConstructor | undefined)[];
|
40
|
-
let startingMapName: (StringConstructor | undefined)[];
|
41
|
-
let projection: (ObjectConstructor | undefined)[];
|
42
|
-
let categories: ({
|
43
|
-
name: StringConstructor;
|
44
|
-
items: ObjectConstructor[];
|
45
|
-
}[] | undefined)[];
|
46
|
-
let obliqueCollections: ({
|
47
|
-
type: StringConstructor;
|
48
|
-
name: StringConstructor;
|
49
|
-
}[] | undefined)[];
|
50
|
-
let plugins: (ObjectConstructor[] | undefined)[];
|
51
|
-
let contentTree: (ObjectConstructor[] | undefined)[];
|
52
|
-
let uiConfig: (ObjectConstructor[] | undefined)[];
|
53
|
-
let featureInfo: ({
|
54
|
-
type: StringConstructor;
|
55
|
-
name: StringConstructor;
|
56
|
-
}[] | undefined)[];
|
57
|
-
let i18n: (ObjectConstructor[] | undefined)[];
|
58
|
-
}
|
21
|
+
/**
|
22
|
+
* Base pattern to check VcsUiAppConfig
|
23
|
+
* @type {Record<string, import("@vcsuite/check").Pattern}
|
24
|
+
*/
|
25
|
+
export const VcsUiAppConfigPattern: Record<string, import("@vcsuite/check").Pattern>;
|
package/src/init.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createApp } from 'vue';
|
2
|
-
import { check,
|
2
|
+
import { check, is, maybe, oneOf, optional } from '@vcsuite/check';
|
3
3
|
import { VcsModule } from '@vcmap/core';
|
4
4
|
import VcsAppComponentWrapper from './application/VcsAppWrapper.vue';
|
5
5
|
import VcsUiApp from './vcsUiApp.js';
|
@@ -15,23 +15,24 @@ const VcsObjectPattern = {
|
|
15
15
|
|
16
16
|
/**
|
17
17
|
* Base pattern to check VcsUiAppConfig
|
18
|
+
* @type {Record<string, import("@vcsuite/check").Pattern}
|
18
19
|
*/
|
19
20
|
export const VcsUiAppConfigPattern = {
|
20
|
-
id:
|
21
|
-
layers: [
|
22
|
-
maps: [
|
23
|
-
styles: [
|
24
|
-
viewpoints: [
|
25
|
-
startingViewpointName:
|
26
|
-
startingMapName:
|
27
|
-
projection:
|
28
|
-
categories: [
|
29
|
-
obliqueCollections: [
|
30
|
-
plugins: [
|
31
|
-
contentTree: [
|
32
|
-
uiConfig: [
|
33
|
-
featureInfo: [
|
34
|
-
i18n: [
|
21
|
+
id: optional(String),
|
22
|
+
layers: optional([VcsObjectPattern]),
|
23
|
+
maps: optional([VcsObjectPattern]),
|
24
|
+
styles: optional([VcsObjectPattern]),
|
25
|
+
viewpoints: optional([VcsObjectPattern]),
|
26
|
+
startingViewpointName: optional(String),
|
27
|
+
startingMapName: optional(String),
|
28
|
+
projection: optional(Object),
|
29
|
+
categories: optional([{ name: String, items: [Object] }]),
|
30
|
+
obliqueCollections: optional([VcsObjectPattern]),
|
31
|
+
plugins: optional([Object]),
|
32
|
+
contentTree: optional([Object]),
|
33
|
+
uiConfig: optional([Object]),
|
34
|
+
featureInfo: optional([VcsObjectPattern]),
|
35
|
+
i18n: optional([Object]),
|
35
36
|
};
|
36
37
|
|
37
38
|
/**
|
@@ -62,7 +63,7 @@ export default async function initApp(mountTarget) {
|
|
62
63
|
*/
|
63
64
|
export async function initAppFromModule(mountTarget, configUrl) {
|
64
65
|
check(mountTarget, String);
|
65
|
-
|
66
|
+
check(configUrl, maybe(String));
|
66
67
|
|
67
68
|
const app = await initApp(mountTarget);
|
68
69
|
if (configUrl) {
|
@@ -90,7 +91,7 @@ export async function initAppFromAppConfig(mountTarget, appUrl) {
|
|
90
91
|
*/
|
91
92
|
const appConfig = await fetch(appUrl).then((response) => response.json());
|
92
93
|
|
93
|
-
check(appConfig.modules, [String, Object]);
|
94
|
+
check(appConfig.modules, [oneOf(String, Object)]);
|
94
95
|
|
95
96
|
const modules = await Promise.all(
|
96
97
|
appConfig.modules.map(async (c) => {
|
@@ -1,17 +1,13 @@
|
|
1
1
|
<template>
|
2
|
-
<v-list
|
3
|
-
<v-row>
|
2
|
+
<v-list>
|
3
|
+
<v-row no-gutters>
|
4
4
|
<v-col
|
5
5
|
v-for="(row, idx) in item.rows"
|
6
6
|
:key="idx"
|
7
7
|
:cols="cols"
|
8
8
|
:class="{ 'w-100': item.colNr === 1, 'w-50': item.colNr !== 1 }"
|
9
9
|
>
|
10
|
-
<v-list-item
|
11
|
-
density="compact"
|
12
|
-
class="pa-0"
|
13
|
-
:class="determineInnerPadding(idx)"
|
14
|
-
>
|
10
|
+
<v-list-item class="pa-0" :class="determineInnerPadding(idx)">
|
15
11
|
<template #prepend>
|
16
12
|
<v-img
|
17
13
|
v-if="
|
@@ -20,7 +16,6 @@
|
|
20
16
|
"
|
21
17
|
width="32"
|
22
18
|
height="24"
|
23
|
-
cover
|
24
19
|
:src="getImageSrcFromShape(row.image)"
|
25
20
|
/>
|
26
21
|
<svg
|
@@ -93,7 +88,7 @@
|
|
93
88
|
</template>
|
94
89
|
|
95
90
|
<v-list-item-title
|
96
|
-
class="
|
91
|
+
class="pa-2"
|
97
92
|
:title="$st(row.tooltip || row.title)"
|
98
93
|
>
|
99
94
|
{{ $st(row.title) }}
|
package/src/legend/VcsLegend.vue
CHANGED
@@ -6,51 +6,37 @@
|
|
6
6
|
v-if="entries.length > 0"
|
7
7
|
class="rounded-0"
|
8
8
|
>
|
9
|
-
<
|
9
|
+
<vcs-expansion-panel
|
10
10
|
v-for="(entry, i) in entries"
|
11
11
|
:key="i"
|
12
|
-
|
12
|
+
:heading="entry.title"
|
13
|
+
:header-actions="entry.actions"
|
13
14
|
@group:selected="entry.open = !entry.open"
|
14
15
|
>
|
15
|
-
<v-
|
16
|
-
<
|
17
|
-
<div
|
18
|
-
<
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
<VcsActionButtonList :actions="entry.actions" />
|
16
|
+
<v-list class="pl-6 pb-2">
|
17
|
+
<div v-for="(item, idx) in entry.legend" :key="idx">
|
18
|
+
<div v-if="item.type === LegendType.Image">
|
19
|
+
<img
|
20
|
+
:src="$st(item.src)"
|
21
|
+
:alt="item.src"
|
22
|
+
class="legend-image"
|
23
|
+
:title="item.tooltip"
|
24
|
+
/>
|
25
25
|
</div>
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
class="legend-image"
|
36
|
-
:title="item.tooltip"
|
37
|
-
/>
|
38
|
-
</div>
|
39
|
-
<div v-else-if="item.type === LegendType.Iframe">
|
40
|
-
<iframe
|
41
|
-
:id="`legendIframe${idx}`"
|
42
|
-
:src="$st(item.src)"
|
43
|
-
scrolling="no"
|
44
|
-
style="width: 100%; height: 100%"
|
45
|
-
frameBorder="0"
|
46
|
-
@load="setIframeHeight(`legendIframe${idx}`)"
|
47
|
-
/>
|
48
|
-
</div>
|
49
|
-
<style-legend-item v-else :item="item" />
|
26
|
+
<div v-else-if="item.type === LegendType.Iframe">
|
27
|
+
<iframe
|
28
|
+
:id="`legendIframe${idx}`"
|
29
|
+
:src="$st(item.src)"
|
30
|
+
scrolling="no"
|
31
|
+
style="width: 100%; height: 100%"
|
32
|
+
frameBorder="0"
|
33
|
+
@load="setIframeHeight(`legendIframe${idx}`)"
|
34
|
+
/>
|
50
35
|
</div>
|
51
|
-
|
52
|
-
|
53
|
-
|
36
|
+
<style-legend-item v-else :item="item" />
|
37
|
+
</div>
|
38
|
+
</v-list>
|
39
|
+
</vcs-expansion-panel>
|
54
40
|
</v-expansion-panels>
|
55
41
|
<v-sheet v-else class="ma-2">
|
56
42
|
{{ $t('legend.empty') }}
|
@@ -59,19 +45,11 @@
|
|
59
45
|
</template>
|
60
46
|
|
61
47
|
<script>
|
62
|
-
import {
|
63
|
-
VExpansionPanels,
|
64
|
-
VExpansionPanel,
|
65
|
-
VExpansionPanelText,
|
66
|
-
VExpansionPanelTitle,
|
67
|
-
VIcon,
|
68
|
-
VList,
|
69
|
-
VSheet,
|
70
|
-
} from 'vuetify/components';
|
48
|
+
import { VExpansionPanels, VList, VSheet } from 'vuetify/components';
|
71
49
|
import { computed } from 'vue';
|
72
50
|
import { LegendType } from './legendHelper.js';
|
73
51
|
import StyleLegendItem from './StyleLegendItem.vue';
|
74
|
-
import
|
52
|
+
import VcsExpansionPanel from '../components/section/VcsExpansionPanel.vue';
|
75
53
|
|
76
54
|
/**
|
77
55
|
* @description A component rendering configured legend information for active layers.
|
@@ -81,13 +59,9 @@
|
|
81
59
|
export default {
|
82
60
|
name: 'VcsLegend',
|
83
61
|
components: {
|
84
|
-
|
62
|
+
VcsExpansionPanel,
|
85
63
|
StyleLegendItem,
|
86
64
|
VExpansionPanels,
|
87
|
-
VExpansionPanel,
|
88
|
-
VExpansionPanelText,
|
89
|
-
VExpansionPanelTitle,
|
90
|
-
VIcon,
|
91
65
|
VList,
|
92
66
|
VSheet,
|
93
67
|
},
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { reactive } from 'vue';
|
2
2
|
import { VcsEvent } from '@vcmap/core';
|
3
3
|
import { v4 as uuidv4 } from 'uuid';
|
4
|
-
import { check,
|
4
|
+
import { check, maybe, oneOf } from '@vcsuite/check';
|
5
5
|
import { vcsAppSymbol } from '../pluginHelper.js';
|
6
6
|
import { ActionPattern } from '../components/lists/VcsActionList.vue';
|
7
7
|
import { getActionFromOptions } from '../actions/actionHelper.js';
|
@@ -101,10 +101,10 @@ class ButtonManager {
|
|
101
101
|
* @returns {ButtonComponent}
|
102
102
|
*/
|
103
103
|
add(buttonComponentOptions, owner) {
|
104
|
-
|
105
|
-
|
104
|
+
check(buttonComponentOptions.id, maybe(String));
|
105
|
+
check(buttonComponentOptions.weight, maybe(Number));
|
106
106
|
check(buttonComponentOptions.action, ActionPattern);
|
107
|
-
check(owner,
|
107
|
+
check(owner, oneOf(String, vcsAppSymbol));
|
108
108
|
|
109
109
|
if (buttonComponentOptions.id && this.has(buttonComponentOptions.id)) {
|
110
110
|
throw new Error(
|
@@ -1,39 +1,24 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
</div>
|
14
|
-
<VcsActionButtonList
|
15
|
-
v-if="actions?.length > 0"
|
16
|
-
:actions="actions"
|
17
|
-
:overflow-count="overflowCount"
|
18
|
-
/>
|
19
|
-
</div>
|
20
|
-
</v-expansion-panel-title>
|
21
|
-
<v-expansion-panel-text class="pb-1">
|
2
|
+
<vcs-expansion-panel
|
3
|
+
:heading="title"
|
4
|
+
:header-actions="actions"
|
5
|
+
:action-button-list-overflow-count="overflowCount"
|
6
|
+
>
|
7
|
+
<template #header-append>
|
8
|
+
<span v-if="selectable && selection.length > 0" class="ml-1">
|
9
|
+
{{ `(${selection.length})` }}
|
10
|
+
</span>
|
11
|
+
</template>
|
12
|
+
<template #default>
|
22
13
|
<CollectionComponentContent @openList="(id) => $emit('openList', id)" />
|
23
|
-
</
|
24
|
-
</
|
14
|
+
</template>
|
15
|
+
</vcs-expansion-panel>
|
25
16
|
</template>
|
26
17
|
|
27
18
|
<script>
|
28
19
|
import { computed, inject } from 'vue';
|
29
|
-
import
|
30
|
-
VIcon,
|
31
|
-
VExpansionPanel,
|
32
|
-
VExpansionPanelTitle,
|
33
|
-
VExpansionPanelText,
|
34
|
-
} from 'vuetify/components';
|
20
|
+
import VcsExpansionPanel from '../../components/section/VcsExpansionPanel.vue';
|
35
21
|
import { createSelectionActions } from '../../components/lists/VcsList.vue';
|
36
|
-
import VcsActionButtonList from '../../components/buttons/VcsActionButtonList.vue';
|
37
22
|
import CollectionComponentContent from './CollectionComponentContent.vue';
|
38
23
|
|
39
24
|
/**
|
@@ -51,12 +36,8 @@
|
|
51
36
|
export default {
|
52
37
|
name: 'CollectionComponent',
|
53
38
|
components: {
|
39
|
+
VcsExpansionPanel,
|
54
40
|
CollectionComponentContent,
|
55
|
-
VcsActionButtonList,
|
56
|
-
VExpansionPanel,
|
57
|
-
VExpansionPanelTitle,
|
58
|
-
VExpansionPanelText,
|
59
|
-
VIcon,
|
60
41
|
},
|
61
42
|
props: {
|
62
43
|
open: {
|
@@ -64,6 +45,7 @@
|
|
64
45
|
default: false,
|
65
46
|
},
|
66
47
|
},
|
48
|
+
emits: ['openList'],
|
67
49
|
setup(_props, { emit }) {
|
68
50
|
/**
|
69
51
|
* @type {CollectionComponentClass}
|
@@ -97,11 +79,4 @@
|
|
97
79
|
};
|
98
80
|
</script>
|
99
81
|
|
100
|
-
<style lang="scss" scoped>
|
101
|
-
.rotate {
|
102
|
-
transform: rotate(-90deg);
|
103
|
-
}
|
104
|
-
.v-icon {
|
105
|
-
font-size: 16px;
|
106
|
-
}
|
107
|
-
</style>
|
82
|
+
<style lang="scss" scoped></style>
|
@@ -9,12 +9,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
9
9
|
selectable: any;
|
10
10
|
overflowCount: any;
|
11
11
|
actions: import("vue").ComputedRef<any>;
|
12
|
-
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
12
|
+
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "openList"[], "openList", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
13
13
|
open: {
|
14
14
|
type: BooleanConstructor;
|
15
15
|
default: boolean;
|
16
16
|
};
|
17
|
-
}
|
17
|
+
}>> & {
|
18
|
+
onOpenList?: ((...args: any[]) => any) | undefined;
|
19
|
+
}, {
|
18
20
|
open: boolean;
|
19
21
|
}, {}>;
|
20
22
|
export default _default;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<template>
|
2
|
-
<v-container class="py-0 px-0">
|
2
|
+
<v-container class="py-0 px-0 collection-component-content">
|
3
3
|
<vcs-list
|
4
4
|
:items="items.slice(0, limit)"
|
5
5
|
:draggable="draggable"
|
@@ -36,13 +36,14 @@
|
|
36
36
|
* @vue-event {string} openList
|
37
37
|
*/
|
38
38
|
export default {
|
39
|
-
name: '
|
39
|
+
name: 'CollectionComponentContent',
|
40
40
|
components: {
|
41
41
|
VcsButton,
|
42
42
|
VcsList,
|
43
43
|
VSheet,
|
44
44
|
VContainer,
|
45
45
|
},
|
46
|
+
emits: ['openList'],
|
46
47
|
setup(_props, { emit }) {
|
47
48
|
/**
|
48
49
|
* @type {CollectionComponentClass}
|
@@ -89,12 +90,12 @@
|
|
89
90
|
<style lang="scss" scoped>
|
90
91
|
:deep(.v-list) {
|
91
92
|
.v-list-item {
|
92
|
-
padding:
|
93
|
+
padding-left: 24px;
|
94
|
+
padding-inline-start: 24px !important;
|
93
95
|
}
|
94
96
|
.v-list-item__selected {
|
95
|
-
|
96
|
-
|
97
|
-
padding-left: 24px !important;
|
97
|
+
padding-left: 20px !important;
|
98
|
+
padding-inline-start: 20px !important;
|
98
99
|
}
|
99
100
|
}
|
100
101
|
</style>
|
@@ -13,5 +13,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
13
13
|
targetIndex: any;
|
14
14
|
}): void;
|
15
15
|
openCollectionComponentList(): void;
|
16
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "openList"[], "openList", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
17
|
+
onOpenList?: ((...args: any[]) => any) | undefined;
|
18
|
+
}, {}, {}>;
|
17
19
|
export default _default;
|
@@ -1,11 +1,8 @@
|
|
1
1
|
<template>
|
2
|
-
<div>
|
3
|
-
<div
|
4
|
-
|
5
|
-
|
6
|
-
>
|
7
|
-
<div class="d-flex justify-space-between">
|
8
|
-
<div class="d-flex align-center gc-1 pl-2">
|
2
|
+
<div class="collection-component-list">
|
3
|
+
<div v-if="!hideHeader" class="pr-2 pl-4 py-1">
|
4
|
+
<div class="d-flex justify-space-between inner-header">
|
5
|
+
<div class="d-flex align-center gc-1">
|
9
6
|
<span>
|
10
7
|
{{ $st(title) }}
|
11
8
|
</span>
|
@@ -52,7 +49,7 @@
|
|
52
49
|
* New position is derived from a target item in the collection.
|
53
50
|
* This ensures correct movement, if rendered list is only a subset of the collection.
|
54
51
|
* @param {import("./collectionComponentClass.js").default<Object>} collectionComponent
|
55
|
-
* @param {import("../../components/lists/
|
52
|
+
* @param {import("../../components/lists/VcsListItemComponent.vue").VcsListItem} item
|
56
53
|
* @param {number} targetIndex
|
57
54
|
*/
|
58
55
|
export function moveItem(collectionComponent, item, targetIndex) {
|
@@ -93,6 +90,7 @@
|
|
93
90
|
VcsList,
|
94
91
|
VSheet,
|
95
92
|
},
|
93
|
+
emits: ['closeList'],
|
96
94
|
setup(_props, { emit }) {
|
97
95
|
/**
|
98
96
|
* @type {import("./collectionComponentClass.js").CollectionComponentClass}
|
@@ -136,4 +134,8 @@
|
|
136
134
|
};
|
137
135
|
</script>
|
138
136
|
|
139
|
-
<style lang="scss" scoped
|
137
|
+
<style lang="scss" scoped>
|
138
|
+
.inner-header {
|
139
|
+
height: calc(var(--v-vcs-item-height) - 8px);
|
140
|
+
}
|
141
|
+
</style>
|
@@ -3,10 +3,10 @@
|
|
3
3
|
* New position is derived from a target item in the collection.
|
4
4
|
* This ensures correct movement, if rendered list is only a subset of the collection.
|
5
5
|
* @param {import("./collectionComponentClass.js").default<Object>} collectionComponent
|
6
|
-
* @param {import("../../components/lists/
|
6
|
+
* @param {import("../../components/lists/VcsListItemComponent.vue").VcsListItem} item
|
7
7
|
* @param {number} targetIndex
|
8
8
|
*/
|
9
|
-
export function moveItem(collectionComponent: import("./collectionComponentClass.js").default<Object>, item: import("../../components/lists/
|
9
|
+
export function moveItem(collectionComponent: import("./collectionComponentClass.js").default<Object>, item: import("../../components/lists/VcsListItemComponent.vue").VcsListItem, targetIndex: number): void;
|
10
10
|
declare const _default: import("vue").DefineComponent<{
|
11
11
|
showLessButton: {
|
12
12
|
type: BooleanConstructor;
|
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
31
31
|
targetIndex: any;
|
32
32
|
}): void;
|
33
33
|
closeList(): void;
|
34
|
-
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
34
|
+
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "closeList"[], "closeList", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
35
35
|
showLessButton: {
|
36
36
|
type: BooleanConstructor;
|
37
37
|
default: boolean;
|
@@ -40,7 +40,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
40
40
|
type: BooleanConstructor;
|
41
41
|
default: boolean;
|
42
42
|
};
|
43
|
-
}
|
43
|
+
}>> & {
|
44
|
+
onCloseList?: ((...args: any[]) => any) | undefined;
|
45
|
+
}, {
|
44
46
|
hideHeader: boolean;
|
45
47
|
showLessButton: boolean;
|
46
48
|
}, {}>;
|
@@ -4,6 +4,7 @@
|
|
4
4
|
:header-actions="actions"
|
5
5
|
:action-button-list-overflow-count="overflowCount"
|
6
6
|
v-bind="{ ...$attrs }"
|
7
|
+
class="collection-component-standalone"
|
7
8
|
>
|
8
9
|
<collection-component-list
|
9
10
|
v-if="componentListView"
|
@@ -16,7 +17,7 @@
|
|
16
17
|
|
17
18
|
<script>
|
18
19
|
import { computed, getCurrentInstance, inject, ref } from 'vue';
|
19
|
-
import VcsFormSection from '../../components/
|
20
|
+
import VcsFormSection from '../../components/section/VcsFormSection.vue';
|
20
21
|
import { createSelectionActions } from '../../components/lists/VcsList.vue';
|
21
22
|
import CollectionComponentList from './CollectionComponentList.vue';
|
22
23
|
import CollectionComponentContent from './CollectionComponentContent.vue';
|
@@ -27,7 +28,7 @@
|
|
27
28
|
* The collectionComponent must be passed via {@link https://vuejs.org/api/composition-api-dependency-injection.html |provide }.
|
28
29
|
*/
|
29
30
|
export default {
|
30
|
-
name: '
|
31
|
+
name: 'CollectionComponentStandalone',
|
31
32
|
components: {
|
32
33
|
CollectionComponentList,
|
33
34
|
CollectionComponentContent,
|
@@ -38,7 +38,7 @@ export type CollectionComponentUiOptions = {
|
|
38
38
|
export type CollectionComponentClassOptions<T extends Object> = CollectionComponentUiOptions & {
|
39
39
|
collection: import("@vcmap/core").Collection<T>;
|
40
40
|
};
|
41
|
-
export type CollectionComponentListItem = import("../../components/lists/
|
41
|
+
export type CollectionComponentListItem = import("../../components/lists/VcsListItemComponent.vue").VcsListItem & {
|
42
42
|
actions: Array<import("../../actions/actionHelper.js").VcsAction & {
|
43
43
|
weight?: number;
|
44
44
|
}>;
|