@vcmap/ui 6.0.0-rc.3 → 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 (161) hide show
  1. package/build/buildHelpers.js +60 -11
  2. package/build/bundle.js +1 -1
  3. package/build/info/publish.js +25 -31
  4. package/build/lintTypes.js +5 -0
  5. package/config/base.config.json +2 -1
  6. package/config/dev.config.json +7 -1
  7. package/config/www.config.json +25 -22
  8. package/dist/assets/@mdi/font/css/{materialdesignicons.min-7a4f6be0.css → materialdesignicons.min-680621ca.css} +1 -1
  9. package/dist/assets/{cesium-cb4dbfba.js → cesium-126f111a.js} +272 -385
  10. package/dist/assets/cesium.js +1 -1
  11. package/dist/assets/{core-72f21835.js → core-1c8b8674.js} +1417 -1453
  12. package/dist/assets/core.js +1 -1
  13. package/dist/assets/{ol-2d33bc8b.js → ol-27f9b3f3.js} +233 -329
  14. package/dist/assets/ol.js +1 -1
  15. package/dist/assets/ui-7214428e.css +1 -0
  16. package/dist/assets/{ui-2ab43a16.js → ui-7214428e.js} +9573 -9438
  17. package/dist/assets/ui.js +1 -1
  18. package/dist/assets/vue-c78a5f76.js +6083 -0
  19. package/dist/assets/vue.js +1 -1
  20. package/dist/assets/{vuetify-760ced3b.css → vuetify-88a2fabe.css} +2 -2
  21. package/dist/assets/{vuetify-760ced3b.js → vuetify-88a2fabe.js} +7672 -7877
  22. package/dist/assets/vuetify.js +1 -1
  23. package/index.d.ts +6 -8
  24. package/index.js +7 -5
  25. package/package.json +16 -16
  26. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +2 -3
  27. package/plugins/@vcmap-show-case/project-selector/src/ModulesListComponent.vue +18 -11
  28. package/plugins/@vcmap-show-case/search-example/src/index.js +1 -0
  29. package/plugins/@vcmap-show-case/search-example/src/searchImpl.js +35 -5
  30. package/plugins/@vcmap-show-case/toolbox-example/src/index.js +2 -1
  31. package/plugins/package.json +3 -23
  32. package/public/assets/@mdi/font/css/materialdesignicons.min.css +1 -1
  33. package/src/actions/StyleSelector.vue +1 -1
  34. package/src/actions/actionHelper.js +13 -2
  35. package/src/actions/listActions.d.ts +4 -4
  36. package/src/actions/listActions.js +2 -2
  37. package/src/application/VcsApp.vue +96 -31
  38. package/src/application/VcsApp.vue.d.ts +297 -4
  39. package/src/application/VcsContainer.vue +26 -9
  40. package/src/application/VcsContainer.vue.d.ts +237 -0
  41. package/src/application/VcsMainMap.vue +7 -7
  42. package/src/application/VcsMainMap.vue.d.ts +2 -2
  43. package/src/application/VcsNavbar.vue +5 -1
  44. package/src/application/VcsSplashScreen.vue +24 -26
  45. package/src/application/VcsTextPageFooter.vue +2 -1
  46. package/src/components/buttons/VcsActionButtonList.vue +59 -3
  47. package/src/components/buttons/VcsActionButtonList.vue.d.ts +28 -0
  48. package/src/components/form-inputs-controls/VcsChipArrayInput.vue +15 -13
  49. package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +3 -4
  50. package/src/components/form-inputs-controls/VcsCoordinate.vue +4 -3
  51. package/src/components/form-inputs-controls/VcsSelect.vue +1 -4
  52. package/src/components/form-inputs-controls/VcsSlider.vue +0 -1
  53. package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +2 -4
  54. package/src/components/form-inputs-controls/VcsTextArea.vue +1 -4
  55. package/src/components/form-inputs-controls/VcsTextField.vue +14 -0
  56. package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +9 -0
  57. package/src/components/form-inputs-controls/VcsWizardStep.vue +2 -5
  58. package/src/components/form-inputs-controls/vcsTextField.scss +1 -4
  59. package/src/components/form-output/VcsFormattedNumber.vue +6 -4
  60. package/src/components/form-output/VcsMarkdown.vue +15 -12
  61. package/src/components/form-output/VcsMarkdown.vue.d.ts +1 -0
  62. package/src/components/form-output/markdownHelper.d.ts +30 -0
  63. package/src/components/form-output/markdownHelper.js +398 -0
  64. package/src/components/import/VcsFileDrop.vue +8 -5
  65. package/src/components/import/VcsImportComponent.vue +4 -3
  66. package/src/components/import/VcsImportComponent.vue.d.ts +1 -2
  67. package/src/components/lists/VcsActionList.vue +4 -0
  68. package/src/components/lists/VcsList.vue +22 -37
  69. package/src/components/lists/VcsList.vue.d.ts +14 -55
  70. package/src/components/lists/{VcsListItem.vue → VcsListItemComponent.vue} +17 -1
  71. package/src/components/lists/VcsListItemComponent.vue.d.ts +69 -0
  72. package/src/components/lists/VcsTreeview.vue +43 -16
  73. package/src/components/lists/VcsTreeview.vue.d.ts +14 -3
  74. package/src/components/lists/VcsTreeviewLeaf.vue +15 -6
  75. package/src/components/lists/VcsTreeviewSearchbar.vue +2 -2
  76. package/src/components/notification/VcsHelp.vue +1 -1
  77. package/src/components/notification/VcsHelp.vue.d.ts +3 -2
  78. package/src/components/section/VcsExpansionPanel.vue +2 -2
  79. package/src/components/section/VcsFormSection.vue +10 -4
  80. package/src/components/section/VcsFormSection.vue.d.ts +1 -2
  81. package/src/components/style/VcsTextMenu.vue +1 -1
  82. package/src/components/style/VcsVectorStyleComponent.vue +1 -1
  83. package/src/components/tables/VcsDataTable.vue +28 -22
  84. package/src/components/tables/VcsTable.vue +45 -62
  85. package/src/components/tables/VcsTable.vue.d.ts +30 -17
  86. package/src/components/tables/VcsTableCell.vue +72 -0
  87. package/src/components/tables/VcsTableCell.vue.d.ts +13 -0
  88. package/src/components/vector-properties/VcsFeatureEditingWindow.vue +6 -5
  89. package/src/components/vector-properties/VcsFeatureTransforms.vue +5 -0
  90. package/src/components/viewpoint/VcsViewpointComponent.vue +2 -2
  91. package/src/components/viewpoint/VcsViewpointEditor.vue +2 -2
  92. package/src/contentTree/LayerTree.vue +9 -27
  93. package/src/contentTree/LayerTree.vue.d.ts +1 -1
  94. package/src/contentTree/contentTreeCollection.d.ts +1 -0
  95. package/src/contentTree/contentTreeCollection.js +45 -11
  96. package/src/featureInfo/BalloonComponent.vue +14 -15
  97. package/src/featureInfo/MarkdownBalloonComponent.vue +4 -2
  98. package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +2 -2
  99. package/src/featureInfo/abstractFeatureInfoView.d.ts +6 -0
  100. package/src/featureInfo/abstractFeatureInfoView.js +15 -7
  101. package/src/featureInfo/featureInfo.d.ts +5 -5
  102. package/src/featureInfo/featureInfo.js +51 -31
  103. package/src/featureInfo/iframeFeatureInfoView.d.ts +8 -2
  104. package/src/featureInfo/iframeFeatureInfoView.js +15 -5
  105. package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +1 -1
  106. package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -5
  107. package/src/featureInfo/markdownFeatureInfoView.d.ts +1 -1
  108. package/src/featureInfo/markdownFeatureInfoView.js +9 -11
  109. package/src/featureInfo/tableFeatureInfoView.js +13 -4
  110. package/src/manager/collectionManager/CollectionComponentList.vue +1 -1
  111. package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +2 -2
  112. package/src/manager/collectionManager/collectionComponentClass.d.ts +1 -1
  113. package/src/manager/collectionManager/collectionComponentClass.js +2 -2
  114. package/src/manager/collectionManager/editorCollectionComponentClass.js +2 -1
  115. package/src/manager/panel/PanelComponent.vue +2 -9
  116. package/src/manager/panel/PanelManagerComponent.vue +7 -3
  117. package/src/manager/panel/panelHelper.js +3 -3
  118. package/src/manager/panel/panelManager.d.ts +9 -1
  119. package/src/manager/panel/panelManager.js +15 -3
  120. package/src/manager/toolbox/GroupToolboxComponent.vue +8 -4
  121. package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
  122. package/src/manager/toolbox/SelectToolboxComponent.vue +7 -4
  123. package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
  124. package/src/manager/toolbox/ToolboxManager.vue +9 -6
  125. package/src/manager/toolbox/ToolboxManager.vue.d.ts +1 -0
  126. package/src/manager/window/WindowComponent.vue +12 -8
  127. package/src/manager/window/WindowComponentHeader.vue +29 -8
  128. package/src/manager/window/WindowComponentHeader.vue.d.ts +2 -0
  129. package/src/manager/window/WindowManager.vue +2 -2
  130. package/src/navigation/MapNavigation.vue +20 -0
  131. package/src/navigation/locatorHelper.js +1 -1
  132. package/src/navigation/overviewMap.js +1 -1
  133. package/src/notifier/NotifierComponent.vue +18 -15
  134. package/src/search/ResultItem.vue +18 -6
  135. package/src/search/ResultsComponent.vue +31 -20
  136. package/src/search/ResultsComponent.vue.d.ts +2 -1
  137. package/src/search/SearchComponent.vue +8 -14
  138. package/src/search/SearchComponent.vue.d.ts +1 -0
  139. package/src/siteConfig.js +8 -8
  140. package/src/styles/_typography.scss +0 -2
  141. package/src/styles/main.scss +0 -4
  142. package/src/uiConfig.d.ts +300 -5
  143. package/src/uiConfig.js +28 -16
  144. package/src/vcsUiApp.d.ts +7 -7
  145. package/src/vcsUiApp.js +10 -9
  146. package/src/vuePlugins/vuetify.js +3 -0
  147. package/dist/assets/ui-2ab43a16.css +0 -1
  148. package/dist/assets/vue-03b265aa.js +0 -6096
  149. package/src/application/markdownHelper.d.ts +0 -12
  150. package/src/application/markdownHelper.js +0 -70
  151. package/src/components/lists/VcsListItem.vue.d.ts +0 -27
  152. package/src/components/notification/VcsTooltip.vue +0 -156
  153. package/src/components/notification/VcsTooltip.vue.d.ts +0 -27
  154. package/src/featureInfo/MarkdownComponent.vue +0 -16
  155. package/src/featureInfo/MarkdownComponent.vue.d.ts +0 -7
  156. package/src/styles/_theming.scss +0 -73
  157. package/src/styles/settings.scss +0 -6
  158. package/src/styles/shades.scss +0 -4
  159. package/src/styles/variables.scss +0 -140
  160. package/src/styles/vcsFont.scss +0 -2
  161. package/src/styles/vcsGrid.scss +0 -3
@@ -1,4 +1,3 @@
1
- /* eslint import/no-extraneous-dependencies: ["error", { "devDependencies": false }] */
2
1
  // eslint-disable-next-line import/no-extraneous-dependencies
3
2
  import { build } from 'vite'; // vite is also a plugin-cli dep
4
3
  import fs from 'fs';
@@ -279,7 +278,12 @@ const toCopy = [
279
278
  'README.md',
280
279
  ];
281
280
 
282
- async function buildInlinePlugin(plugin, baseConfig, minify) {
281
+ async function buildInlinePlugin(
282
+ plugin,
283
+ baseConfig,
284
+ minify,
285
+ isDependend = false,
286
+ ) {
283
287
  // the relative path between plugins and libraries, is not known beforehand, so we calculate the distance.
284
288
  // posixRelativePath is the relative path between the index.js of the plugin and the specific library.
285
289
  const relativePluginPaths = {};
@@ -292,7 +296,15 @@ async function buildInlinePlugin(plugin, baseConfig, minify) {
292
296
  .join(path.posix.sep);
293
297
  });
294
298
 
295
- const pluginDir = getProjectPath('plugins', plugin);
299
+ const pluginDir = isDependend
300
+ ? getProjectPath('plugins', 'node_modules', plugin)
301
+ : getProjectPath('plugins', plugin);
302
+
303
+ const isTs = fs.existsSync(path.join(pluginDir, 'src', 'index.ts'));
304
+ const entry = isTs
305
+ ? path.join(pluginDir, 'src', 'index.ts')
306
+ : path.join(pluginDir, 'src', 'index.js');
307
+
296
308
  const pluginConfig = {
297
309
  ...baseConfig,
298
310
  esbuild: {
@@ -303,13 +315,14 @@ async function buildInlinePlugin(plugin, baseConfig, minify) {
303
315
  emptyOutDir: false,
304
316
  outDir: `dist/plugins/${plugin}/`,
305
317
  lib: {
306
- entry: path.join(pluginDir, 'src', 'index.js'),
318
+ entry,
307
319
  formats: ['es'],
308
320
  fileName: 'index',
309
321
  },
310
322
  rollupOptions: {
311
323
  external: Object.keys(libraries),
312
324
  output: {
325
+ manualChunks: () => 'index.js',
313
326
  paths: relativePluginPaths,
314
327
  },
315
328
  },
@@ -321,11 +334,11 @@ async function buildInlinePlugin(plugin, baseConfig, minify) {
321
334
  }
322
335
  await buildLibrary(pluginConfig, `plugins/${plugin}`, 'index', '', true);
323
336
  await Promise.all(
324
- toCopy.map(async (entry) => {
325
- if (fs.existsSync(path.join(pluginDir, entry))) {
337
+ toCopy.map(async (fileEntry) => {
338
+ if (fs.existsSync(path.join(pluginDir, fileEntry))) {
326
339
  await fs.promises.cp(
327
- path.join(pluginDir, entry),
328
- path.join(distPath, entry),
340
+ path.join(pluginDir, fileEntry),
341
+ path.join(distPath, fileEntry),
329
342
  { recursive: true, force: true },
330
343
  );
331
344
  }
@@ -333,6 +346,10 @@ async function buildInlinePlugin(plugin, baseConfig, minify) {
333
346
  );
334
347
  }
335
348
 
349
+ /**
350
+ * Dependent Plugins which are installed from npm are already build and we just copy the relevant files
351
+ * @param {string} pluginName
352
+ */
336
353
  async function buildDependentPlugin(pluginName) {
337
354
  const pluginsDirectory = getPluginDirectory();
338
355
  let scope = '';
@@ -365,6 +382,19 @@ async function buildDependentPlugin(pluginName) {
365
382
  );
366
383
  }
367
384
 
385
+ function filterDependentPlugins(dependentPlugins, pluginIsBuild = true) {
386
+ const pluginsDir = getPluginDirectory();
387
+ return dependentPlugins.filter((pluginName) => {
388
+ const pluginExists = fs.existsSync(
389
+ path.join(pluginsDir, 'node_modules', ...pluginName.split('/'), 'dist'),
390
+ );
391
+ if (pluginIsBuild) {
392
+ return pluginExists;
393
+ }
394
+ return !pluginExists;
395
+ });
396
+ }
397
+
368
398
  /**
369
399
  * Will build a preview of all the current plugins & inline plugins
370
400
  * @param {import("vite").InlineConfig} [baseConfig={}] - the base config to use. build & esbuild will be completely overwritten
@@ -374,14 +404,25 @@ async function buildDependentPlugin(pluginName) {
374
404
  export async function buildPluginsForPreview(baseConfig = {}, minify = true) {
375
405
  const inlinePlugins = await getInlinePlugins();
376
406
  const dependentPlugins = await getPluginNames();
407
+ // only take already build plugins into account.
408
+ // Plugins loaded from a git repository do not have a dist folder.
409
+ // These plugins need to be build, same as the inline plugins
410
+ const buildDependentPlugins = filterDependentPlugins(dependentPlugins, true);
411
+ const notBuildDependentPlugins = filterDependentPlugins(
412
+ dependentPlugins,
413
+ false,
414
+ );
377
415
 
378
416
  const promises = inlinePlugins.map((plugin) =>
379
417
  buildInlinePlugin(plugin, baseConfig, minify),
380
418
  );
381
419
 
382
420
  promises.push(
383
- ...dependentPlugins.map(async (pluginName) =>
384
- buildDependentPlugin(pluginName, baseConfig, minify),
421
+ ...buildDependentPlugins.map(async (pluginName) =>
422
+ buildDependentPlugin(pluginName),
423
+ ),
424
+ ...notBuildDependentPlugins.map(async (pluginName) =>
425
+ buildInlinePlugin(pluginName, baseConfig, minify, true),
385
426
  ),
386
427
  );
387
428
  await Promise.all(promises);
@@ -390,14 +431,22 @@ export async function buildPluginsForPreview(baseConfig = {}, minify = true) {
390
431
  export async function buildPluginsForBundle(baseConfig = {}) {
391
432
  const inlinePlugins = await getInlinePlugins();
392
433
  const dependentPlugins = await getPluginNames(false);
434
+ const buildDependentPlugins = filterDependentPlugins(dependentPlugins, true);
435
+ const notBuildDependentPlugins = filterDependentPlugins(
436
+ dependentPlugins,
437
+ false,
438
+ );
393
439
  const promises = inlinePlugins
394
440
  .filter((plugin) => plugin.startsWith('@vcmap/'))
395
441
  .map((plugin) => buildInlinePlugin(plugin, baseConfig, true));
396
442
 
397
443
  promises.push(
398
- ...dependentPlugins.map(async (pluginName) =>
444
+ ...buildDependentPlugins.map(async (pluginName) =>
399
445
  buildDependentPlugin(pluginName),
400
446
  ),
447
+ ...notBuildDependentPlugins.map(async (pluginName) =>
448
+ buildInlinePlugin(pluginName, baseConfig, true, true),
449
+ ),
401
450
  );
402
451
  await Promise.all(promises);
403
452
  }
package/build/bundle.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import vcsOl from '@vcmap/rollup-plugin-vcs-ol';
2
2
  import { join as joinPath } from 'path';
3
- import tar from 'tar';
3
+ import * as tar from 'tar';
4
4
  import { cp, rm } from 'fs/promises';
5
5
  import { createGzip } from 'zlib';
6
6
  import { pipeline } from 'stream';
@@ -20,37 +20,31 @@ exports.publish = function publish(data) {
20
20
 
21
21
  // get all doclets that have exports
22
22
  const classes = {};
23
- const docs = data(
24
- [
25
- { define: { isObject: true } },
26
- function someKindOfExportsTransformer() {
27
- if (this?.meta?.code?.name) {
28
- if (this.meta.code.name === 'module.exports') {
29
- this.exports = 'default';
30
- } else if (String(this.meta.code.name).startsWith('exports.')) {
31
- this.exports = this.meta.code.name.replace(/exports./, '');
32
- }
33
- }
34
- if (this.kind === 'class') {
35
- if (
36
- !('extends' in this) ||
37
- typeof this.api === 'boolean' ||
38
- this.exports
39
- ) {
40
- classes[this.longname] = this;
41
- return true;
42
- }
43
- }
44
- return (
45
- typeof this.api === 'boolean' ||
46
- this.exports ||
47
- (this.meta && /[\\/]externs$/.test(this.meta.path))
48
- );
49
- },
50
- ],
51
- { kind: { '!is': 'file' } },
52
- { kind: { '!is': 'event' } },
53
- ).get();
23
+ const docs = data(function someKindOfExportsTransformer() {
24
+ if (this?.meta?.code?.name) {
25
+ if (this.meta.code.name === 'module.exports') {
26
+ this.exports = 'default';
27
+ } else if (String(this.meta.code.name).startsWith('exports.')) {
28
+ this.exports = this.meta.code.name.replace(/exports./, '');
29
+ }
30
+ }
31
+ if (this.kind === 'class') {
32
+ if (
33
+ !('extends' in this) ||
34
+ typeof this.api === 'boolean' ||
35
+ this.exports
36
+ ) {
37
+ classes[this.longname] = this;
38
+ return true;
39
+ }
40
+ }
41
+ return (
42
+ !['file', 'event', 'module'].includes(this.kind) &&
43
+ (typeof this.api === 'boolean' ||
44
+ this.exports ||
45
+ (this.meta && /[\\/]externs$/.test(this.meta.path)))
46
+ );
47
+ }).get();
54
48
 
55
49
  // get symbols data, filter out those that are members of private classes
56
50
  const symbols = [];
@@ -15,6 +15,11 @@ async function lintTypes() {
15
15
  // eslint-disable-next-line no-continue
16
16
  continue;
17
17
  }
18
+ if (path.endsWith('uiConfig.d.ts')) {
19
+ // we do not check the vcsUiApp.d.ts, because import("vue").DeepReadonly creates an any type
20
+ // eslint-disable-next-line no-continue
21
+ continue;
22
+ }
18
23
  // eslint-disable-next-line no-loop-func
19
24
  content.split(EOL).forEach((line, index) => {
20
25
  const matches = line.match(anyRegex);
@@ -571,7 +571,8 @@
571
571
  "name": "tableAllWithTemplateHeader",
572
572
  "keyMapping": {
573
573
  "roofType": "codeLists.keys.roofType",
574
- "function": "codeLists.keys.function"
574
+ "function": "codeLists.keys.function",
575
+ "featureId": "Feature ID"
575
576
  },
576
577
  "valueMapping": {
577
578
  "roofType": "codeLists.values.roofType.${value}",
@@ -512,7 +512,8 @@
512
512
  "name": "flight",
513
513
  "flightName": "FlightExampleBerlin",
514
514
  "type": "FlightContentTreeItem",
515
- "title": "this flight has a very long name. You can find the rest in the tooltip"
515
+ "title": "this flight has a very long name. You can find the rest in the tooltip",
516
+ "icon": "mdi-airplane"
516
517
  },
517
518
  {
518
519
  "name": "flight2",
@@ -549,6 +550,7 @@
549
550
  "name": "building.myTest",
550
551
  "type": "ContentTreeItem",
551
552
  "title": "test SwitchMapCallback Test",
553
+ "icon": "mdi-toggle-switch",
552
554
  "onClick": [
553
555
  {
554
556
  "type": "ActivateLayersCallback",
@@ -656,6 +658,10 @@
656
658
  "name": "@vcmap-show-case/hello-world",
657
659
  "entry": "plugins/@vcmap-show-case/hello-world/index.js",
658
660
  "showComponent": false
661
+ },
662
+ {
663
+ "name": "@vcmap-show-case/search-example",
664
+ "entry": "plugins/@vcmap-show-case/search-example/index.js"
659
665
  }
660
666
  ],
661
667
  "plugins2": [
@@ -1827,6 +1827,30 @@
1827
1827
  "layerName": "festgesetzte Überschwemmungsgebiete"
1828
1828
  }
1829
1829
  ],
1830
+ "plugins": [
1831
+ {
1832
+ "name": "@vcmap/print",
1833
+ "entry": "plugins/@vcmap/print/index.js",
1834
+ "contactDetails": {
1835
+ "department": "Entwicklung",
1836
+ "name": "Virtual City Systems",
1837
+ "streetAddress": "Tauentzienstr. 7 b/c",
1838
+ "zipAndCity": "10789 Berlin",
1839
+ "country": "Germany",
1840
+ "mail": "info@vc.systems",
1841
+ "phone": "+49 (0) 30 . 8904 . 871 . 0",
1842
+ "fax": "+49 (0) 30 . 8904 . 871 . 0"
1843
+ }
1844
+ },
1845
+ {
1846
+ "name": "@vcmap/multi-view",
1847
+ "entry": "plugins/@vcmap/multi-view/index.js"
1848
+ },
1849
+ {
1850
+ "name": "@vcmap/transparent-terrain",
1851
+ "entry": "plugins/@vcmap/transparent-terrain/index.js"
1852
+ }
1853
+ ],
1830
1854
  "plugins2": [
1831
1855
  {
1832
1856
  "name": "@vcmap/link-button",
@@ -1854,20 +1878,6 @@
1854
1878
  "name": "@vcmap/create-link",
1855
1879
  "entry": "plugins/@vcmap/create-link/index.js"
1856
1880
  },
1857
- {
1858
- "name": "@vcmap/print",
1859
- "entry": "plugins/@vcmap/print/index.js",
1860
- "contactDetails": {
1861
- "department": "Entwicklung",
1862
- "name": "Virtual City Systems",
1863
- "streetAddress": "Tauentzienstr. 7 b/c",
1864
- "zipAndCity": "10789 Berlin",
1865
- "country": "Germany",
1866
- "mail": "info@vc.systems",
1867
- "phone": "+49 (0) 30 . 8904 . 871 . 0",
1868
- "fax": "+49 (0) 30 . 8904 . 871 . 0"
1869
- }
1870
- },
1871
1881
  {
1872
1882
  "name": "@vcmap/swipe-tool",
1873
1883
  "entry": "plugins/@vcmap/swipe-tool/index.js"
@@ -1884,10 +1894,6 @@
1884
1894
  "name": "@vcmap/search-nominatim",
1885
1895
  "entry": "plugins/@vcmap/search-nominatim/index.js"
1886
1896
  },
1887
- {
1888
- "name": "@vcmap/multi-view",
1889
- "entry": "plugins/@vcmap/multi-view/index.js"
1890
- },
1891
1897
  {
1892
1898
  "name": "@vcmap/cesium-filters",
1893
1899
  "entry": "plugins/@vcmap/cesium-filters/index.js"
@@ -1936,10 +1942,7 @@
1936
1942
  "projectId": "rBW58EJz5RwCz75Q3",
1937
1943
  "mapId": "csunCGqmQE8Py4KCe"
1938
1944
  },
1939
- {
1940
- "name": "@vcmap/transparent-terrain",
1941
- "entry": "plugins/@vcmap/transparent-terrain/index.js"
1942
- },
1945
+
1943
1946
  {
1944
1947
  "name": "@vcmap/search-coordinate",
1945
1948
  "entry": "plugins/@vcmap/search-coordinate/index.js"