@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.
Files changed (278) hide show
  1. package/build/build.js +40 -60
  2. package/build/buildHelpers.js +62 -19
  3. package/build/bundle.js +1 -1
  4. package/build/info/conf.json +1 -1
  5. package/build/info/publish.js +25 -31
  6. package/build/lintTypes.js +5 -0
  7. package/config/base.config.json +2 -1
  8. package/config/dev.config.json +7 -1
  9. package/config/projects.config.json +2 -1
  10. package/config/splashscreen.config.json +45 -0
  11. package/config/www.config.json +25 -22
  12. package/dist/.htaccess +7 -0
  13. package/dist/assets/@mdi/font/README.md +25 -0
  14. package/dist/assets/@mdi/font/css/materialdesignicons.min-680621ca.css +3 -0
  15. package/dist/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  16. package/dist/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  17. package/dist/assets/{cesium.0b750d.js → cesium-126f111a.js} +272 -385
  18. package/dist/assets/cesium.js +1 -1
  19. package/dist/assets/{core.cbf44a.js → core-1c8b8674.js} +2015 -2019
  20. package/dist/assets/core.js +1 -1
  21. package/dist/assets/{ol.86e93c.js → ol-27f9b3f3.js} +42521 -44394
  22. package/dist/assets/ol.js +1 -1
  23. package/dist/assets/ui-7214428e.css +1 -0
  24. package/dist/assets/{ui.7c276c.js → ui-7214428e.js} +13968 -13907
  25. package/dist/assets/ui.js +1 -1
  26. package/dist/assets/vue-c78a5f76.js +6083 -0
  27. package/dist/assets/vue.js +1 -1
  28. package/dist/assets/{vuetify.4d18fe.css → vuetify-88a2fabe.css} +2 -2
  29. package/dist/assets/{vuetify.4d18fe.js → vuetify-88a2fabe.js} +7793 -7940
  30. package/dist/assets/vuetify.js +1 -1
  31. package/dist/index.html +11 -10
  32. package/index.d.ts +11 -11
  33. package/index.html +5 -5
  34. package/index.js +9 -7
  35. package/lib/olLib.js +84 -23
  36. package/package.json +19 -19
  37. package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +41 -1
  38. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +71 -32
  39. package/plugins/@vcmap-show-case/form-inputs-example/src/exampleActions.js +7 -11
  40. package/plugins/@vcmap-show-case/form-inputs-example/src/index.js +2 -2
  41. package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +21 -8
  42. package/plugins/@vcmap-show-case/project-selector/src/ModulesListComponent.vue +18 -11
  43. package/plugins/@vcmap-show-case/search-example/src/index.js +1 -0
  44. package/plugins/@vcmap-show-case/search-example/src/searchImpl.js +35 -5
  45. package/plugins/@vcmap-show-case/style-input-example/src/StyleExample.vue +29 -90
  46. package/plugins/@vcmap-show-case/toolbox-example/src/index.js +2 -1
  47. package/plugins/package.json +3 -23
  48. package/public/assets/@mdi/font/README.md +25 -0
  49. package/public/assets/@mdi/font/css/materialdesignicons.min.css +2 -2
  50. package/public/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  51. package/public/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  52. package/src/actions/StyleSelector.vue +1 -1
  53. package/src/actions/actionHelper.js +33 -22
  54. package/src/actions/flightActions.js +5 -5
  55. package/src/actions/listActions.d.ts +4 -11
  56. package/src/actions/listActions.js +6 -22
  57. package/src/actions/stateRefAction.js +2 -2
  58. package/src/application/VcsApp.vue +147 -57
  59. package/src/application/VcsApp.vue.d.ts +298 -4
  60. package/src/application/VcsAttributions.vue +2 -13
  61. package/src/application/VcsAttributionsFooter.vue +10 -11
  62. package/src/application/VcsContainer.vue +26 -9
  63. package/src/application/VcsContainer.vue.d.ts +237 -0
  64. package/src/application/VcsMainMap.vue +7 -7
  65. package/src/application/VcsMainMap.vue.d.ts +2 -2
  66. package/src/application/VcsNavbar.vue +5 -1
  67. package/src/application/VcsPositionDisplay.vue +8 -23
  68. package/src/application/VcsPositionDisplay.vue.d.ts +0 -1
  69. package/src/application/VcsSettings.vue +10 -17
  70. package/src/application/VcsSplashScreen.vue +21 -40
  71. package/src/application/VcsSplashScreen.vue.d.ts +0 -2
  72. package/src/application/VcsTextPage.vue +12 -43
  73. package/src/application/VcsTextPage.vue.d.ts +4 -8
  74. package/src/application/VcsTextPageFooter.vue +23 -40
  75. package/src/components/buttons/VcsActionButtonList.vue +59 -3
  76. package/src/components/buttons/VcsActionButtonList.vue.d.ts +28 -0
  77. package/src/components/extent/VcsExtentEditor.vue +1 -1
  78. package/src/components/flight/VcsFlightAnchorsComponent.vue +63 -36
  79. package/src/components/flight/VcsFlightComponent.vue +16 -21
  80. package/src/components/flight/VcsFlightPlayer.vue +27 -5
  81. package/src/components/form-inputs-controls/VcsCheckbox.vue +9 -5
  82. package/src/components/form-inputs-controls/VcsChipArrayInput.vue +15 -13
  83. package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +3 -4
  84. package/src/components/form-inputs-controls/VcsCoordinate.vue +17 -4
  85. package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +5 -2
  86. package/src/components/form-inputs-controls/VcsDatePicker.vue +34 -60
  87. package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +1 -63
  88. package/src/components/form-inputs-controls/VcsFileInput.vue +17 -18
  89. package/src/components/form-inputs-controls/VcsFileInput.vue.d.ts +1 -0
  90. package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
  91. package/src/components/form-inputs-controls/VcsRadio.vue +17 -3
  92. package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
  93. package/src/components/form-inputs-controls/VcsSelect.vue +40 -31
  94. package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +5 -2
  95. package/src/components/form-inputs-controls/VcsSlider.vue +13 -1
  96. package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +1 -0
  97. package/src/components/form-inputs-controls/VcsTextArea.vue +27 -26
  98. package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +1 -0
  99. package/src/components/form-inputs-controls/VcsTextField.vue +20 -4
  100. package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +9 -0
  101. package/src/components/form-inputs-controls/VcsWizardStep.vue +3 -6
  102. package/src/components/form-inputs-controls/vcsTextField.scss +9 -12
  103. package/src/components/form-output/VcsFormattedNumber.vue +21 -5
  104. package/src/components/form-output/VcsFormattedNumber.vue.d.ts +9 -0
  105. package/src/components/form-output/VcsMarkdown.vue +15 -12
  106. package/src/components/form-output/VcsMarkdown.vue.d.ts +1 -0
  107. package/src/components/form-output/markdownHelper.d.ts +30 -0
  108. package/src/components/form-output/markdownHelper.js +398 -0
  109. package/src/components/import/VcsFileDrop.vue +8 -5
  110. package/src/components/import/VcsImportComponent.vue +4 -3
  111. package/src/components/import/VcsImportComponent.vue.d.ts +1 -2
  112. package/src/components/lists/VcsActionList.vue +11 -7
  113. package/src/components/lists/VcsList.vue +30 -52
  114. package/src/components/lists/VcsList.vue.d.ts +14 -59
  115. package/src/components/lists/{VcsListItem.vue → VcsListItemComponent.vue} +68 -22
  116. package/src/components/lists/VcsListItemComponent.vue.d.ts +69 -0
  117. package/src/components/lists/VcsTreeview.vue +43 -16
  118. package/src/components/lists/VcsTreeview.vue.d.ts +14 -3
  119. package/src/components/lists/VcsTreeviewLeaf.vue +15 -6
  120. package/src/components/lists/VcsTreeviewSearchbar.vue +2 -2
  121. package/src/components/notification/VcsHelp.vue +1 -1
  122. package/src/components/notification/VcsHelp.vue.d.ts +3 -2
  123. package/src/components/section/VcsExpansionPanel.vue +101 -0
  124. package/src/components/section/VcsExpansionPanel.vue.d.ts +19 -0
  125. package/src/components/{form-inputs-controls → section}/VcsFormSection.vue +10 -4
  126. package/src/components/{form-inputs-controls → section}/VcsFormSection.vue.d.ts +1 -2
  127. package/src/components/style/MenuWrapper.vue +24 -26
  128. package/src/components/style/MenuWrapper.vue.d.ts +4 -4
  129. package/src/components/style/VcsFillMenu.vue +9 -16
  130. package/src/components/style/VcsFillMenu.vue.d.ts +0 -18
  131. package/src/components/style/VcsFillSelector.vue +13 -16
  132. package/src/components/style/VcsImageMenu.vue +8 -25
  133. package/src/components/style/VcsImageMenu.vue.d.ts +0 -27
  134. package/src/components/style/VcsImageSelector.vue +102 -167
  135. package/src/components/style/VcsImageSelector.vue.d.ts +15 -15
  136. package/src/components/style/VcsStrokeMenu.vue +8 -15
  137. package/src/components/style/VcsStrokeMenu.vue.d.ts +0 -18
  138. package/src/components/style/VcsStrokeSelector.vue +11 -18
  139. package/src/components/style/VcsTextMenu.vue +9 -12
  140. package/src/components/style/VcsTextMenu.vue.d.ts +0 -9
  141. package/src/components/style/VcsTextSelector.vue +79 -95
  142. package/src/components/style/VcsTextSelector.vue.d.ts +20 -22
  143. package/src/components/style/VcsVectorStyleComponent.vue +8 -19
  144. package/src/components/style/VcsVectorStyleComponent.vue.d.ts +1 -1
  145. package/src/components/style/composables.d.ts +0 -14
  146. package/src/components/style/composables.js +0 -49
  147. package/src/components/tables/VcsDataTable.vue +28 -22
  148. package/src/components/tables/VcsTable.vue +45 -62
  149. package/src/components/tables/VcsTable.vue.d.ts +30 -17
  150. package/src/components/tables/VcsTableCell.vue +72 -0
  151. package/src/components/tables/VcsTableCell.vue.d.ts +13 -0
  152. package/src/components/vector-properties/VcsFeatureEditingWindow.vue +43 -9
  153. package/src/components/vector-properties/VcsFeatureTransforms.vue +5 -0
  154. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +1 -1
  155. package/src/components/viewpoint/VcsViewpointComponent.vue +23 -10
  156. package/src/components/viewpoint/VcsViewpointEditor.vue +2 -1
  157. package/src/contentTree/LayerTree.vue +9 -27
  158. package/src/contentTree/LayerTree.vue.d.ts +1 -1
  159. package/src/contentTree/contentTreeCollection.d.ts +1 -0
  160. package/src/contentTree/contentTreeCollection.js +45 -11
  161. package/src/contentTree/contentTreeItem.d.ts +2 -2
  162. package/src/contentTree/contentTreeItem.js +7 -7
  163. package/src/featureInfo/BalloonComponent.vue +14 -15
  164. package/src/featureInfo/MarkdownBalloonComponent.vue +4 -2
  165. package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +2 -2
  166. package/src/featureInfo/abstractFeatureInfoView.d.ts +6 -0
  167. package/src/featureInfo/abstractFeatureInfoView.js +15 -7
  168. package/src/featureInfo/featureInfo.d.ts +5 -5
  169. package/src/featureInfo/featureInfo.js +59 -41
  170. package/src/featureInfo/iframeFeatureInfoView.d.ts +8 -2
  171. package/src/featureInfo/iframeFeatureInfoView.js +15 -5
  172. package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +1 -1
  173. package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -5
  174. package/src/featureInfo/markdownFeatureInfoView.d.ts +1 -1
  175. package/src/featureInfo/markdownFeatureInfoView.js +9 -11
  176. package/src/featureInfo/tableFeatureInfoView.js +13 -4
  177. package/src/init.d.ts +5 -38
  178. package/src/init.js +19 -18
  179. package/src/legend/StyleLegendItem.vue +4 -9
  180. package/src/legend/VcsLegend.vue +28 -54
  181. package/src/manager/buttonManager.js +4 -4
  182. package/src/manager/collectionManager/CollectionComponent.vue +17 -42
  183. package/src/manager/collectionManager/CollectionComponent.vue.d.ts +4 -2
  184. package/src/manager/collectionManager/CollectionComponentContent.vue +7 -6
  185. package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +3 -1
  186. package/src/manager/collectionManager/CollectionComponentList.vue +11 -9
  187. package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +6 -4
  188. package/src/manager/collectionManager/CollectionComponentProvider.vue +1 -1
  189. package/src/manager/collectionManager/CollectionComponentStandalone.vue +3 -2
  190. package/src/manager/collectionManager/CollectionManager.vue +1 -1
  191. package/src/manager/collectionManager/collectionComponentClass.d.ts +1 -1
  192. package/src/manager/collectionManager/collectionComponentClass.js +7 -10
  193. package/src/manager/collectionManager/collectionManager.js +10 -10
  194. package/src/manager/collectionManager/editorCollectionComponentClass.js +6 -5
  195. package/src/manager/contextMenu/contextMenuManager.js +2 -2
  196. package/src/manager/navbarManager.js +2 -2
  197. package/src/manager/panel/PanelComponent.vue +2 -9
  198. package/src/manager/panel/PanelManagerComponent.vue +7 -3
  199. package/src/manager/panel/panelHelper.js +3 -3
  200. package/src/manager/panel/panelManager.d.ts +9 -1
  201. package/src/manager/panel/panelManager.js +18 -6
  202. package/src/manager/toolbox/GroupToolboxComponent.vue +8 -4
  203. package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
  204. package/src/manager/toolbox/SelectToolboxComponent.vue +7 -4
  205. package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
  206. package/src/manager/toolbox/ToolboxManager.vue +9 -6
  207. package/src/manager/toolbox/ToolboxManager.vue.d.ts +1 -0
  208. package/src/manager/toolbox/toolboxManager.js +10 -10
  209. package/src/manager/window/WindowComponent.vue +12 -8
  210. package/src/manager/window/WindowComponentHeader.vue +29 -8
  211. package/src/manager/window/WindowComponentHeader.vue.d.ts +2 -0
  212. package/src/manager/window/WindowManager.vue +2 -2
  213. package/src/manager/window/windowManager.d.ts +2 -2
  214. package/src/manager/window/windowManager.js +4 -4
  215. package/src/navigation/MapNavigation.vue +20 -0
  216. package/src/navigation/locatorHelper.js +1 -1
  217. package/src/navigation/overviewMap.js +1 -1
  218. package/src/notifier/NotifierComponent.vue +18 -15
  219. package/src/search/ResultItem.vue +18 -6
  220. package/src/search/ResultsComponent.vue +31 -20
  221. package/src/search/ResultsComponent.vue.d.ts +2 -1
  222. package/src/search/SearchComponent.vue +8 -14
  223. package/src/search/SearchComponent.vue.d.ts +1 -0
  224. package/src/search/search.js +2 -2
  225. package/src/siteConfig.js +9 -9
  226. package/src/state.js +4 -4
  227. package/src/styles/_typography.scss +0 -2
  228. package/src/styles/main.scss +0 -4
  229. package/src/uiConfig.d.ts +300 -5
  230. package/src/uiConfig.js +28 -16
  231. package/src/vcsUiApp.d.ts +21 -17
  232. package/src/vcsUiApp.js +11 -10
  233. package/src/vuePlugins/vuetify.d.ts +2 -0
  234. package/src/vuePlugins/vuetify.js +14 -0
  235. package/dist/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  236. package/dist/assets/@mdi/font/css/materialdesignicons.min.e3f476.css +0 -3
  237. package/dist/assets/index-8eGauqjA.js +0 -1
  238. package/dist/assets/ui.7c276c.css +0 -1
  239. package/dist/assets/vue.a3cd64.js +0 -6096
  240. package/public/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  241. package/src/application/VcsCustomScreen.vue +0 -45
  242. package/src/application/VcsCustomScreen.vue.d.ts +0 -15
  243. package/src/application/markdownHelper.d.ts +0 -12
  244. package/src/application/markdownHelper.js +0 -70
  245. package/src/components/lists/VcsListItem.vue.d.ts +0 -21
  246. package/src/components/notification/VcsTooltip.vue +0 -156
  247. package/src/components/notification/VcsTooltip.vue.d.ts +0 -27
  248. package/src/featureInfo/MarkdownComponent.vue +0 -16
  249. package/src/featureInfo/MarkdownComponent.vue.d.ts +0 -7
  250. package/src/styles/_theming.scss +0 -73
  251. package/src/styles/settings.scss +0 -6
  252. package/src/styles/shades.scss +0 -4
  253. package/src/styles/variables.scss +0 -140
  254. package/src/styles/vcsFont.scss +0 -2
  255. package/src/styles/vcsGrid.scss +0 -3
  256. /package/dist/assets/{favicon-128.4c4ce5.png → favicon-128-4c4ce5df.png} +0 -0
  257. /package/dist/assets/{favicon-180.5b99c0.png → favicon-180-4c4ce5df.png} +0 -0
  258. /package/dist/assets/{favicon-192.0e205e.png → favicon-192-4c4ce5df.png} +0 -0
  259. /package/dist/assets/{favicon-32.6b9add.png → favicon-32-4c4ce5df.png} +0 -0
  260. /package/dist/assets/{favicon.d5ec97.svg → favicon-4c4ce5df.svg} +0 -0
  261. /package/dist/assets/font/{TitilliumWeb-Regular.9ca076.woff2 → TitilliumWeb-Regular-9ca076be.woff2} +0 -0
  262. /package/dist/assets/style/{icon-marker.70960f.png → icon-marker-70960f05.png} +0 -0
  263. /package/dist/assets/style/{icon-marker-blue.534e37.png → icon-marker-blue-534e374b.png} +0 -0
  264. /package/dist/assets/style/{icon-marker-green.0b6a92.png → icon-marker-green-0b6a92bc.png} +0 -0
  265. /package/dist/assets/style/{icon-marker-o.036477.png → icon-marker-o-036477fa.png} +0 -0
  266. /package/dist/assets/style/{icon-marker-o-blue.7b6d62.png → icon-marker-o-blue-7b6d6279.png} +0 -0
  267. /package/dist/assets/style/{icon-marker-o-green.c863c0.png → icon-marker-o-green-c863c0fa.png} +0 -0
  268. /package/dist/assets/style/{icon-marker-o-red.93ff58.png → icon-marker-o-red-93ff58df.png} +0 -0
  269. /package/dist/assets/style/{icon-marker-red.313d03.png → icon-marker-red-313d03e8.png} +0 -0
  270. /package/dist/assets/style/{icon-pin.b7ce77.png → icon-pin-b7ce771e.png} +0 -0
  271. /package/dist/assets/style/{icon-pin-blue.7be369.png → icon-pin-blue-7be369a3.png} +0 -0
  272. /package/dist/assets/style/{icon-pin-green.cbb935.png → icon-pin-green-cbb935fe.png} +0 -0
  273. /package/dist/assets/style/{icon-pin-red.3f25b2.png → icon-pin-red-3f25b245.png} +0 -0
  274. /package/public/assets/{favicon-128.png → favicon-128-4c4ce5df.png} +0 -0
  275. /package/public/assets/{favicon-180.png → favicon-180-4c4ce5df.png} +0 -0
  276. /package/public/assets/{favicon-192.png → favicon-192-4c4ce5df.png} +0 -0
  277. /package/public/assets/{favicon-32.png → favicon-32-4c4ce5df.png} +0 -0
  278. /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, MarkdownComponent);
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 replaceAttributes(this.template, attributes);
47
+ return renderTemplate(this.template, attributes);
51
48
  }
52
49
 
53
50
  /**
54
- * Variables wrapped in `${}` within `src` are replaced by their values, e.g. `${featureId}` or `${attributes.gml:name}`
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
- html: parseAndSanitizeMarkdown(
64
- this._renderTemplate({ ...properties, ...properties.attributes }),
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
- export namespace VcsUiAppConfigPattern {
22
- let id: (StringConstructor | undefined)[];
23
- let layers: ({
24
- type: StringConstructor;
25
- name: StringConstructor;
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, checkMaybe, is } from '@vcsuite/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: [undefined, String],
21
- layers: [undefined, [VcsObjectPattern]],
22
- maps: [undefined, [VcsObjectPattern]],
23
- styles: [undefined, [VcsObjectPattern]],
24
- viewpoints: [undefined, [VcsObjectPattern]],
25
- startingViewpointName: [undefined, String],
26
- startingMapName: [undefined, String],
27
- projection: [undefined, Object],
28
- categories: [undefined, [{ name: String, items: [Object] }]],
29
- obliqueCollections: [undefined, [VcsObjectPattern]],
30
- plugins: [undefined, [Object]],
31
- contentTree: [undefined, [Object]],
32
- uiConfig: [undefined, [Object]],
33
- featureInfo: [undefined, [VcsObjectPattern]],
34
- i18n: [undefined, [Object]],
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
- checkMaybe(configUrl, String);
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 density="compact">
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="pt-2"
91
+ class="pa-2"
97
92
  :title="$st(row.tooltip || row.title)"
98
93
  >
99
94
  {{ $st(row.title) }}
@@ -6,51 +6,37 @@
6
6
  v-if="entries.length > 0"
7
7
  class="rounded-0"
8
8
  >
9
- <v-expansion-panel
9
+ <vcs-expansion-panel
10
10
  v-for="(entry, i) in entries"
11
11
  :key="i"
12
- class="px-2"
12
+ :heading="entry.title"
13
+ :header-actions="entry.actions"
13
14
  @group:selected="entry.open = !entry.open"
14
15
  >
15
- <v-expansion-panel-title hide-actions>
16
- <template #default="{ open }">
17
- <div class="d-flex justify-space-between">
18
- <div class="d-flex align-center">
19
- <v-icon class="mr-1" :class="{ rotate: !open }">
20
- mdi-chevron-down
21
- </v-icon>
22
- {{ $st(entry.title) }}
23
- </div>
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
- </template>
27
- </v-expansion-panel-title>
28
- <v-expansion-panel-text class="pl-6 pb-2">
29
- <v-list density="compact">
30
- <div v-for="(item, idx) in entry.legend" :key="idx">
31
- <div v-if="item.type === LegendType.Image">
32
- <img
33
- :src="$st(item.src)"
34
- :alt="item.src"
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
- </v-list>
52
- </v-expansion-panel-text>
53
- </v-expansion-panel>
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 VcsActionButtonList from '../components/buttons/VcsActionButtonList.vue';
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
- VcsActionButtonList,
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, checkMaybe } from '@vcsuite/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
- checkMaybe(buttonComponentOptions.id, String);
105
- checkMaybe(buttonComponentOptions.weight, Number);
104
+ check(buttonComponentOptions.id, maybe(String));
105
+ check(buttonComponentOptions.weight, maybe(Number));
106
106
  check(buttonComponentOptions.action, ActionPattern);
107
- check(owner, [String, vcsAppSymbol]);
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
- <v-expansion-panel>
3
- <v-expansion-panel-title hide-actions class="px-2">
4
- <div class="d-flex justify-space-between">
5
- <div class="d-flex align-center gc-1">
6
- <v-icon :class="{ rotate: !open }"> mdi-chevron-down </v-icon>
7
- <span>
8
- {{ $st(title) }}
9
- </span>
10
- <span v-if="selectable && selection.length > 0">
11
- {{ `(${selection.length})` }}
12
- </span>
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
- </v-expansion-panel-text>
24
- </v-expansion-panel>
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, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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: 'CollectionComponent',
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: 4px 8px 4px 28px;
93
+ padding-left: 24px;
94
+ padding-inline-start: 24px !important;
93
95
  }
94
96
  .v-list-item__selected {
95
- border-left: solid 4px;
96
- border-left-color: var(--v-primary-base);
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, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
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
- v-if="!hideHeader"
5
- class="v-expansion-panel-header px-2 v-expansion-panel-header--active"
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/VcsList.vue").VcsListItem} item
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></style>
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/VcsList.vue").VcsListItem} item
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/VcsList.vue").VcsListItem, targetIndex: number): void;
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, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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
  }, {}>;
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="w-100">
2
+ <div class="w-100 collection-component-provider">
3
3
  <slot>
4
4
  <collection-component />
5
5
  </slot>
@@ -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/form-inputs-controls/VcsFormSection.vue';
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: 'CollectionComponent',
31
+ name: 'CollectionComponentStandalone',
31
32
  components: {
32
33
  CollectionComponentList,
33
34
  CollectionComponentContent,
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <v-container class="pa-0">
2
+ <v-container class="pa-0 collection-manager">
3
3
  <v-expansion-panels
4
4
  variant="accordion"
5
5
  multiple
@@ -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/VcsList.vue").VcsListItem & {
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
  }>;