@vcmap/ui 5.0.0-rc.22 → 5.0.0-rc.23

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 (91) hide show
  1. package/README.md +2 -2
  2. package/app.config.json +5 -0
  3. package/build/buildPreview.js +2 -2
  4. package/config/aerowest.config.json +2 -0
  5. package/config/base.config.json +1 -0
  6. package/config/codes.config.json +2 -0
  7. package/config/dev.config.json +6 -0
  8. package/config/graphFeatureInfo.config.json +3 -1
  9. package/config/projects.config.json +27 -0
  10. package/config/www.config.json +2 -0
  11. package/dist/assets/cesium.js +1 -1
  12. package/dist/assets/{core.a66593.js → core.9342a1.js} +7804 -5352
  13. package/dist/assets/core.js +1 -1
  14. package/dist/assets/index.fd041928.js +1 -0
  15. package/dist/assets/ol.js +1 -1
  16. package/dist/assets/ui.c27597.css +5 -0
  17. package/dist/assets/{ui.d760e4.js → ui.c27597.js} +5055 -4694
  18. package/dist/assets/ui.js +1 -1
  19. package/dist/assets/vue.js +2 -2
  20. package/dist/assets/{vuetify.427322.js → vuetify.2f1432.js} +1 -1
  21. package/dist/assets/vuetify.js +2 -2
  22. package/dist/index.html +1 -1
  23. package/index.js +5 -2
  24. package/package.json +3 -3
  25. package/plugins/@vcmap/project-selector/{ContextsListComponent.vue → ModulesListComponent.vue} +10 -10
  26. package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +15 -15
  27. package/plugins/@vcmap/project-selector/README.md +15 -21
  28. package/plugins/@vcmap/project-selector/config.json +3 -3
  29. package/plugins/@vcmap/project-selector/de.json +3 -0
  30. package/plugins/@vcmap/project-selector/en.json +3 -0
  31. package/plugins/@vcmap/project-selector/index.js +76 -101
  32. package/plugins/@vcmap/simple-graph/index.js +1 -1
  33. package/plugins/@vcmap-show-case/category-tester/Categories.vue +2 -2
  34. package/plugins/@vcmap-show-case/category-tester/Category.vue +1 -4
  35. package/plugins/@vcmap-show-case/config-editor/editor.vue +14 -14
  36. package/plugins/@vcmap-show-case/form-inputs-example/FormInputsExample.vue +18 -1
  37. package/plugins/@vcmap-show-case/form-inputs-example/index.js +1 -0
  38. package/plugins/@vcmap-show-case/table-example/DataTableExample.vue +202 -0
  39. package/plugins/@vcmap-show-case/table-example/README.md +3 -0
  40. package/plugins/@vcmap-show-case/table-example/index.js +47 -0
  41. package/plugins/@vcmap-show-case/table-example/package.json +5 -0
  42. package/src/actions/actionHelper.js +16 -27
  43. package/src/actions/styleSelector.vue +26 -19
  44. package/src/components/form-inputs-controls/VcsDatePicker.vue +111 -0
  45. package/src/components/form-inputs-controls/VcsTextField.vue +18 -7
  46. package/src/components/form-inputs-controls/VcsWizard.vue +3 -1
  47. package/src/components/icons/CheckboxCheckedIcon.vue +1 -1
  48. package/src/components/icons/LegendIcon.vue +10 -60
  49. package/src/components/lists/VcsList.vue +25 -6
  50. package/src/components/tables/VcsDataTable.vue +386 -0
  51. package/src/components/tables/VcsTable.vue +33 -278
  52. package/src/contentTree/contentTreeCollection.js +1 -1
  53. package/src/contentTree/layerContentTreeItem.js +3 -0
  54. package/src/downloadHelper.js +49 -0
  55. package/src/featureInfo/BalloonComponent.vue +9 -8
  56. package/src/featureInfo/abstractFeatureInfoView.js +1 -1
  57. package/src/featureInfo/featureInfo.js +3 -3
  58. package/src/i18n/de.js +8 -0
  59. package/src/i18n/en.js +8 -0
  60. package/src/i18n/i18nCollection.js +22 -22
  61. package/src/init.js +90 -7
  62. package/src/manager/categoryManager/CategoryComponent.vue +56 -47
  63. package/src/manager/categoryManager/CategoryManager.vue +23 -10
  64. package/src/manager/categoryManager/categoryManager.js +11 -11
  65. package/src/manager/navbarManager.js +18 -0
  66. package/src/manager/window/WindowComponent.vue +10 -15
  67. package/src/manager/window/WindowComponentHeader.vue +4 -2
  68. package/src/manager/window/WindowManager.vue +14 -15
  69. package/src/manager/window/windowHelper.js +1 -1
  70. package/src/manager/window/windowManager.js +18 -7
  71. package/src/navigation/mapNavCompass.vue +1 -1
  72. package/src/navigation/mapNavigation.vue +6 -6
  73. package/src/navigation/obliqueRotation.vue +36 -13
  74. package/src/navigation/orientationToolsButton.vue +0 -1
  75. package/src/navigation/overviewMap.js +5 -5
  76. package/src/navigation/vcsZoomButton.vue +37 -11
  77. package/src/pluginHelper.js +20 -0
  78. package/src/search/search.js +12 -3
  79. package/src/search/searchComponent.vue +15 -0
  80. package/src/state.js +6 -6
  81. package/src/uiConfig.js +3 -3
  82. package/src/vcsUiApp.js +44 -40
  83. package/src/vuePlugins/i18n.js +1 -0
  84. package/start.js +8 -2
  85. package/dist/assets/index.8b833ead.js +0 -1
  86. package/dist/assets/ui.d760e4.css +0 -5
  87. package/map.config.json +0 -44
  88. /package/dist/assets/{cesium.88cffd.js → cesium.166f91.js} +0 -0
  89. /package/dist/assets/{ol.d4539f.js → ol.d2cba3.js} +0 -0
  90. /package/dist/assets/{vue.db5102.js → vue.5d00e9.js} +0 -0
  91. /package/dist/assets/{vuetify.427322.css → vuetify.2f1432.css} +0 -0
package/README.md CHANGED
@@ -42,7 +42,7 @@ Provides an abstraction layer around 2D, 3D and oblique Maps. Provides the follo
42
42
  - layers
43
43
  - interactions
44
44
  - styles
45
- - application and context/config handling
45
+ - application and module/config handling
46
46
 
47
47
  ### [@vcmap/ui](https://github.com/virtualcitySYSTEMS/map-ui)
48
48
  This Project, provides
@@ -75,7 +75,7 @@ how safe it is to start developing with these components.
75
75
  - STABLE: conforms to SemVer concept.
76
76
 
77
77
  ### @vcmap/core
78
- - Context Concept RC
78
+ - Module Concept RC
79
79
  - Categories Concept BETA
80
80
  - Layers/Maps RC
81
81
  - Styles: BETA
@@ -0,0 +1,5 @@
1
+ {
2
+ "modules": [
3
+ "config/projects.config.json"
4
+ ]
5
+ }
@@ -10,8 +10,8 @@ await Promise.all([
10
10
  plugins: [vcsOl()],
11
11
  }, true),
12
12
  fs.promises.cp(
13
- getProjectPath('map.config.json'),
14
- path.join(process.cwd(), 'dist', 'map.config.json'),
13
+ getProjectPath('app.config.json'),
14
+ path.join(process.cwd(), 'dist', 'app.config.json'),
15
15
  ),
16
16
  fs.promises.cp(
17
17
  getProjectPath('config'),
@@ -1,4 +1,6 @@
1
1
  {
2
+ "name": "VC Map HOSTING",
3
+ "description": "AEROWEST DEMO (Standard Hosting Layout)",
2
4
  "mapcontainer": "vcs_map_container",
3
5
  "startingViewpointName": "Start",
4
6
  "startingMapName": "Cesium Map",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "name": "VcsBaseConfig",
2
3
  "mapcontainer": "vcs_map_container",
3
4
  "startingViewpointName": "berlin",
4
5
  "startingMapName": "cesium",
@@ -1,4 +1,6 @@
1
1
  {
2
+ "name": "development",
3
+ "description": "module containing code lists for key and attribute mapping",
2
4
  "i18n": [
3
5
  {
4
6
  "de": {
@@ -1,4 +1,6 @@
1
1
  {
2
+ "name": "development",
3
+ "description": "module containing examples, showcases and other stuff",
2
4
  "startingViewpointName": "potsdamer_platz",
3
5
  "i18n": [
4
6
  {
@@ -417,6 +419,10 @@
417
419
  "name": "textfields-example",
418
420
  "entry": "plugins/@vcmap-show-case/textfields-example/index.js"
419
421
  },
422
+ {
423
+ "name": "table-example",
424
+ "entry": "plugins/@vcmap-show-case/table-example/index.js"
425
+ },
420
426
  {
421
427
  "name": "wizard-example",
422
428
  "entry": "plugins/@vcmap-show-case/wizard-example/index.js"
@@ -1,4 +1,6 @@
1
1
  {
2
+ "name": "graphFeatureInfo",
3
+ "description": "module adding a graph Feature Info view",
2
4
  "featureInfo": [
3
5
  {
4
6
  "type": "SimpleGraphView",
@@ -94,7 +96,7 @@
94
96
  "plugins": [
95
97
  {
96
98
  "name": "simple-graph",
97
- "entry": "plugins/simple-graph/index.js"
99
+ "entry": "plugins/@vcmap/simple-graph/index.js"
98
100
  }
99
101
  ]
100
102
  }
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "projectsDemo",
3
+ "plugins": [
4
+ {
5
+ "name": "@vcmap/project-selector",
6
+ "entry": "plugins/@vcmap/project-selector/index.js",
7
+ "selected": "",
8
+ "selectedModules": ["config/dev.config.json", "config/codes.config.json"],
9
+ "open": true,
10
+ "projects": [
11
+ {
12
+ "name": "VC Map HOSTING",
13
+ "description": "AEROWEST DEMO (Standard Hosting Layout)",
14
+ "modules": ["config/aerowest.config.json"]
15
+ },
16
+ {
17
+ "name": "VC Map Demo",
18
+ "description": "VC Map Demo www.virtualcitymap.de",
19
+ "modules": ["config/www.config.json"]
20
+ }
21
+ ],
22
+ "modules": [
23
+ "config/dev.config.json", "config/codes.config.json", "config/graphFeatureInfo.config.json"
24
+ ]
25
+ }
26
+ ]
27
+ }
@@ -1,4 +1,6 @@
1
1
  {
2
+ "name": "VC Map Demo",
3
+ "description": "VC Map Demo www.virtualcitymap.de",
2
4
  "startingViewpointName": "startview",
3
5
  "startingMapName": "cesium",
4
6
  "projection": {
@@ -1 +1 @@
1
- export * from "./cesium.88cffd.js";
1
+ export * from "./cesium.166f91.js";