@vcmap/ui 5.0.0-rc.8 → 5.0.0-rc.9

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 (178) hide show
  1. package/README.md +69 -22
  2. package/build/build.js +0 -3
  3. package/build/buildHelpers.js +0 -1
  4. package/build/commonViteConfig.js +1 -1
  5. package/config/dev.config.json +4 -4
  6. package/dist/assets/{cesium.6b5bb6.js → cesium.4e40f4.js} +0 -0
  7. package/dist/assets/cesium.js +1 -1
  8. package/dist/assets/core.edcf5e.js +4 -0
  9. package/dist/assets/core.js +1 -1
  10. package/dist/assets/{index.0be2842f.js → index.889d0f3a.js} +1 -1
  11. package/dist/assets/{ol.0561aa.js → ol.246fd4.js} +0 -0
  12. package/dist/assets/ol.js +1 -1
  13. package/dist/assets/ui.df4f6d.css +1 -0
  14. package/dist/assets/ui.df4f6d.js +43 -0
  15. package/dist/assets/ui.js +1 -1
  16. package/dist/assets/{vue-composition-api.f926fa.js → vue-composition-api.a520f3.js} +1 -1
  17. package/dist/assets/vue-composition-api.js +2 -2
  18. package/dist/assets/{vue.ddcb6b.js → vue.2cee44.js} +0 -0
  19. package/dist/assets/vue.js +1 -1
  20. package/dist/assets/{vuetify.d21163.css → vuetify.cc817b.css} +0 -0
  21. package/dist/assets/{vuetify.d21163.js → vuetify.cc817b.js} +1 -1
  22. package/dist/assets/vuetify.js +2 -2
  23. package/dist/index.html +1 -1
  24. package/index.js +39 -1
  25. package/package.json +2 -3
  26. package/plugins/@vcmap/pluginExample/index.js +5 -5
  27. package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +1 -1
  28. package/plugins/@vcmap/project-selector/ContextsListComponent.vue +1 -1
  29. package/plugins/@vcmap/project-selector/index.js +5 -5
  30. package/plugins/@vcmap/project-selector/package.json +1 -2
  31. package/plugins/@vcmap/theme-changer/index.js +6 -6
  32. package/plugins/buttonExamples/ButtonExamples.vue +1 -1
  33. package/plugins/buttonExamples/index.js +5 -4
  34. package/plugins/categoryTest/Categories.vue +1 -1
  35. package/plugins/categoryTest/Category.vue +1 -1
  36. package/plugins/categoryTest/index.js +5 -5
  37. package/plugins/example/index.js +33 -14
  38. package/plugins/test/allIconsComponent.vue +34 -0
  39. package/plugins/test/editor.vue +1 -1
  40. package/plugins/test/index.js +40 -17
  41. package/plugins/test/toolbox-data.js +106 -26
  42. package/plugins/test/windowManagerExample.vue +1 -2
  43. package/src/actions/actionHelper.js +2 -1
  44. package/src/actions/styleSelector.vue +1 -1
  45. package/src/application/Navbar.vue +18 -6
  46. package/src/application/VcsApp.vue +34 -28
  47. package/src/assets/logo-mobile.svg +9 -0
  48. package/src/assets/logo.svg +23 -23
  49. package/src/components/buttons/VcsActionButtonList.vue +99 -0
  50. package/src/components/buttons/VcsButton.vue +201 -0
  51. package/src/components/form-inputs-controls/VcsCheckbox.vue +73 -0
  52. package/src/components/form-inputs-controls/VcsColorPicker.vue +81 -0
  53. package/src/components/form-inputs-controls/VcsFormSection.vue +46 -0
  54. package/src/components/form-inputs-controls/VcsLabel.vue +38 -0
  55. package/src/components/form-inputs-controls/VcsSelect.vue +97 -0
  56. package/src/components/form-inputs-controls/VcsTextArea.vue +130 -0
  57. package/src/components/form-inputs-controls/VcsTextField.vue +129 -0
  58. package/src/components/form-output/VcsFormattedNumber.vue +103 -0
  59. package/src/components/lists/VcsActionList.vue +100 -0
  60. package/src/components/lists/VcsTreeview.vue +109 -0
  61. package/src/components/lists/VcsTreeviewLeaf.vue +105 -0
  62. package/src/components/lists/VcsTreeviewSearchbar.vue +156 -0
  63. package/src/components/notification/VcsBadge.vue +27 -0
  64. package/src/components/notification/VcsTooltip.vue +154 -0
  65. package/src/components/notification/validation.js +19 -0
  66. package/src/contentTree/LayerTree.vue +1 -1
  67. package/src/contentTree/contentTreeCollection.js +6 -2
  68. package/src/icons/+all.js +359 -0
  69. package/src/icons/2DAreaIcon.vue +21 -0
  70. package/src/icons/2DDistanceIcon.vue +18 -0
  71. package/src/icons/3DAreaIcon.vue +21 -0
  72. package/src/icons/3DDistanceIcon.vue +18 -0
  73. package/src/icons/3DHeightIcon.vue +18 -0
  74. package/src/icons/AngleIcon.vue +8 -0
  75. package/src/icons/AssociationsIcon.vue +34 -0
  76. package/src/icons/AxisIcon.vue +10 -0
  77. package/src/icons/BoundingBoxIcon.vue +15 -0
  78. package/src/icons/CheckboxCheckedIcon.vue +16 -0
  79. package/src/icons/CheckboxIcon.vue +23 -0
  80. package/src/icons/CheckboxIndeterminateIcon.vue +24 -0
  81. package/src/icons/CircleIcon.vue +10 -0
  82. package/src/icons/ColorSwatchIcon.vue +17 -0
  83. package/src/icons/CommentIcon.vue +19 -0
  84. package/src/icons/CompassIcon.vue +8 -0
  85. package/src/icons/ComponentsIcon.vue +7 -0
  86. package/src/icons/ConeIcon.vue +11 -0
  87. package/src/icons/DimensionsHouseIcon.vue +14 -0
  88. package/src/icons/ElevationProfileIcon.vue +111 -0
  89. package/src/icons/ExportAreaIcon.vue +7 -0
  90. package/src/icons/ExportFlightIcon.vue +7 -0
  91. package/src/icons/ExportIcon.vue +8 -0
  92. package/src/icons/ExternalLinkIcon.vue +10 -0
  93. package/src/icons/EyeIcon.vue +7 -0
  94. package/src/icons/FastForwardIcon.vue +7 -0
  95. package/src/icons/FilterIcon.vue +8 -0
  96. package/src/icons/GlobeNatureIcon.vue +14 -0
  97. package/src/icons/HealthCareIndustriesIcon.vue +118 -0
  98. package/src/icons/HelpIcon.vue +7 -0
  99. package/src/icons/HomePointIcon.vue +8 -0
  100. package/src/icons/HospitalsIcon.vue +237 -0
  101. package/src/icons/HouseIcon.vue +25 -0
  102. package/src/icons/ImportIcon.vue +8 -0
  103. package/src/icons/InfoIcon.vue +10 -0
  104. package/src/icons/KebabIcon.vue +36 -0
  105. package/src/icons/LabelIcon.vue +7 -0
  106. package/src/icons/LayersIcon.vue +26 -0
  107. package/src/icons/LegendIcon.vue +65 -0
  108. package/src/icons/LineIcon.vue +7 -0
  109. package/src/icons/LinkIcon.vue +7 -0
  110. package/src/icons/MapIcon.vue +8 -0
  111. package/src/icons/MenuIcon.vue +34 -0
  112. package/src/icons/MinusIcon.vue +8 -0
  113. package/src/icons/ObjectAttributeIcon.vue +18 -0
  114. package/src/icons/ObjectSelectIcon.vue +8 -0
  115. package/src/icons/ObliqueViewIcon.vue +13 -0
  116. package/src/icons/PdfIcon.vue +10 -0
  117. package/src/icons/PedestrianIcon.vue +8 -0
  118. package/src/icons/PenIcon.vue +14 -0
  119. package/src/icons/PlayCircleIcon.vue +10 -0
  120. package/src/icons/PlusIcon.vue +9 -0
  121. package/src/icons/PoiIcon.vue +7 -0
  122. package/src/icons/PointSelectIcon.vue +7 -0
  123. package/src/icons/PolygonIcon.vue +38 -0
  124. package/src/icons/PresentationModeIcon.vue +7 -0
  125. package/src/icons/ProgressIcon.vue +24 -0
  126. package/src/icons/QueryIcon.vue +15 -0
  127. package/src/icons/RectangleIcon.vue +9 -0
  128. package/src/icons/ReturnIcon.vue +7 -0
  129. package/src/icons/RewindIcon.vue +6 -0
  130. package/src/icons/SearchIcon.vue +8 -0
  131. package/src/icons/ShadowIcon.vue +9 -0
  132. package/src/icons/ShapesIcon.vue +28 -0
  133. package/src/icons/ShareIcon.vue +22 -0
  134. package/src/icons/SimpleCircleFilledIcon.vue +15 -0
  135. package/src/icons/SimpleCircleHalfFilledIcon.vue +12 -0
  136. package/src/icons/SimpleCircleOutlinedIcon.vue +15 -0
  137. package/src/icons/SkipNextIcon.vue +7 -0
  138. package/src/icons/SkipPreviousIcon.vue +9 -0
  139. package/src/icons/SplitViewIcon.vue +19 -0
  140. package/src/icons/TextStyleIcon.vue +14 -0
  141. package/src/icons/ThreeDimensionsIcon.vue +7 -0
  142. package/src/icons/ToolsIcon.vue +35 -0
  143. package/src/icons/TouchIcon.vue +8 -0
  144. package/src/icons/TrashCanIcon.vue +7 -0
  145. package/src/icons/TriangleIcon.vue +15 -0
  146. package/src/icons/TwoDimensionsIcon.vue +8 -0
  147. package/src/icons/UploadIcon.vue +14 -0
  148. package/src/icons/VideoRecorderIcon.vue +14 -0
  149. package/src/icons/WalkingIcon.vue +7 -0
  150. package/src/icons/WallIcon.vue +14 -0
  151. package/src/manager/buttonManager.js +5 -53
  152. package/src/manager/navbarManager.js +81 -0
  153. package/src/manager/toolbox/ToolboxGroupComponent.vue +128 -0
  154. package/src/manager/toolbox/ToolboxManager.vue +119 -76
  155. package/src/manager/toolbox/toolboxManager.js +204 -0
  156. package/src/manager/window/WindowComponentHeader.vue +1 -1
  157. package/src/manager/window/WindowManager.vue +18 -1
  158. package/src/manager/window/windowManager.js +3 -5
  159. package/src/navigation/mapNavigation.vue +9 -5
  160. package/src/navigation/orientationToolsButton.vue +1 -1
  161. package/src/navigation/tiltSlider.vue +1 -1
  162. package/src/styles/_theming.scss +10 -0
  163. package/src/styles/main.scss +3 -0
  164. package/src/styles/variables.scss +70 -0
  165. package/src/styles/vcsFont.scss +5 -0
  166. package/src/styles/vcsGrid.scss +4 -0
  167. package/src/vcsUiApp.js +4 -3
  168. package/src/vuePlugins/vuetify.js +1 -1
  169. package/dist/assets/core.98f9bb.js +0 -4
  170. package/dist/assets/ui.b7c1e3.css +0 -1
  171. package/dist/assets/ui.b7c1e3.js +0 -39
  172. package/dist/assets/uicomponents.682c5f.css +0 -1
  173. package/dist/assets/uicomponents.682c5f.js +0 -32
  174. package/dist/assets/uicomponents.js +0 -1
  175. package/lib/uicomponents.js +0 -1
  176. package/src/manager/toolbox/ToolboxMultiSelectButton.vue +0 -96
  177. package/src/manager/toolbox/ToolboxSingleSelectButton.vue +0 -98
  178. package/src/manager/toolbox/toolbox-manager.js +0 -203
package/README.md CHANGED
@@ -44,9 +44,6 @@ Provides an abstraction layer around 2D, 3D and oblique Maps. Provides the follo
44
44
  - styles
45
45
  - application and context/config handling
46
46
 
47
- ### [@vcsuite/ui-components](https://github.com/virtualcitySYSTEMS/suite-ui-components)
48
- Collection of reusable dumb ui components. For example textfield, checkbox, lists, icons. The components are build on top of [vuetify](https://github.com/vuetifyjs/vuetify)
49
-
50
47
  ### [@vcmap/ui](https://github.com/virtualcitySYSTEMS/map-ui)
51
48
  This Project, provides
52
49
  - a configurable and extendable ui
@@ -77,25 +74,6 @@ how safe it is to start developing with these components.
77
74
  - RC: Styles and API are most likely stable for the release / Featurecomplete.
78
75
  - STABLE: conforms to SemVer concept.
79
76
 
80
- ### @vcsuite/ui-components
81
- - VcsTextField BETA
82
- - VcsCheckbox BETA
83
- - VcsSelect BETA
84
- - VcsButton ALPHA
85
- - VcsFormattedNumber BETA
86
- - VcsLabel BETA
87
- - VcsTooltip ALPHA
88
- - VcsActionButtonList ALPHA
89
- - VcsActionList ALPHA
90
- - VcsFormSection ALPHA
91
- - VcsTreeView ALPHA
92
- - VcsTreeViewItem ALPHA
93
- - VcsList TODO
94
- - VcsListItem TODO
95
- - VcsBadge ALPHA
96
- - VcsColorPicker TODO
97
- - VcsDatePicker TODO
98
-
99
77
  ### @vcmap/core
100
78
  - Context Concept RC
101
79
  - Categories Concept BETA
@@ -116,6 +94,75 @@ how safe it is to start developing with these components.
116
94
  - PluginConcept RC
117
95
  - SEARCH API TODO
118
96
 
97
+ ##### components
98
+ - VcsTextField BETA
99
+ - VcsCheckbox BETA
100
+ - VcsSelect BETA
101
+ - VcsButton ALPHA
102
+ - VcsFormattedNumber BETA
103
+ - VcsLabel BETA
104
+ - VcsTooltip ALPHA
105
+ - VcsActionButtonList ALPHA
106
+ - VcsActionList ALPHA
107
+ - VcsFormSection ALPHA
108
+ - VcsTreeView ALPHA
109
+ - VcsTreeViewItem ALPHA
110
+ - VcsList TODO
111
+ - VcsListItem TODO
112
+ - VcsBadge ALPHA
113
+ - VcsColorPicker TODO
114
+ - VcsDatePicker TODO
115
+
116
+ # Roadmap / Future Development
117
+ - Phase 1 Currently worked on
118
+ - Phase 2 Beta Version stable feature complete Plugin API
119
+ - Phase 3 Integration in VC Publisher for next major release
120
+ - Phase 4 Feature Complete with v4.x with all Plugins...
121
+
122
+ ### Core
123
+ - Editor (WIP) Prio 1
124
+ - Clustering Prio 4
125
+ - Style Refactoring Prio 4
126
+
127
+ ### Ui
128
+ - Responsive View / mobile view (WIP) Prio 1
129
+ - Toolbar (WIP) Prio 1
130
+ - Search API + UI Prio 2
131
+ - Overlay API Support Prio 3
132
+ - i18n (WIP) Prio 1
133
+ - FeatureInfo Concept/API (Balloon) Prio 1
134
+ - Context API ? Prio 2
135
+ - Hierachy B3dm
136
+ - Legend Concept/API Prio 2
137
+ - Copyright/Attributions Concept / API Prio 2
138
+ - Ui Configuration (title/themes, usw, projectInfo/Impressum/usw. ) / API Prio 2
139
+ - Help Concept / Beispielhaft implementieren Prio 2
140
+ - Components Concept/Categories / API Prio 1
141
+
142
+ ### Plugins
143
+ - Drawing Prio 1
144
+ - Measurement Prio 1
145
+ - PDF Export (WIP) Prio 1
146
+ - Positiondisplay Prio 2
147
+ - Search Nominatim Prio 2
148
+ - SwipeTool Prio 2
149
+ - Publisher Integration Plugin 3
150
+ - Shadow Prio 4
151
+ - Export Prio 4
152
+ - HeightProfile Prio 4
153
+ - Planning Prio 4
154
+ - Query Prio 4
155
+ - TransparentTerrain Prio 4
156
+ - ViewShed Prio 4
157
+ - AttributeEditor Prio 4
158
+ - ClippingTool Prio 4
159
+ - Flight Prio 4
160
+ - MultiView Prio 4
161
+ - Locator ? Prio 4
162
+ - DisplayQuality Prio 4
163
+ - Walkmode Prio 4
164
+ - Search esri Prio 4
165
+ - Search WFS Prio 4
119
166
 
120
167
  # Getting started
121
168
  For a first start, clone the repo and call `npm i` `npm run start` This will start a development server. The
package/build/build.js CHANGED
@@ -69,9 +69,6 @@ function hashLibraries() {
69
69
  'vuetify/lib': {
70
70
  entry: path.join('lib', 'vuetify.js'),
71
71
  },
72
- '@vcsuite/ui-components': {
73
- entry: path.join('lib', 'uicomponents.js'),
74
- },
75
72
  };
76
73
 
77
74
  const libraryPaths = {};
@@ -144,7 +144,6 @@ export const libraries = {
144
144
  '@vcmap/core': 'core',
145
145
  '@vcmap/ui': 'ui',
146
146
  'vuetify/lib': 'vuetify',
147
- '@vcsuite/ui-components': 'uicomponents',
148
147
  };
149
148
 
150
149
  /**
@@ -30,7 +30,7 @@ const configMain = defineConfig({
30
30
  css: {
31
31
  preprocessorOptions: {
32
32
  sass: {
33
- additionalData: "\n@import './node_modules/@vcsuite/ui-components/src/styles/variables.scss'\n",
33
+ additionalData: "\n@import './src/styles/variables.scss'\n",
34
34
  },
35
35
  },
36
36
  },
@@ -14,6 +14,10 @@
14
14
  }
15
15
  ],
16
16
  "plugins": [
17
+ {
18
+ "name": "test",
19
+ "entry": "plugins/test/index.js"
20
+ },
17
21
  {
18
22
  "name": "example",
19
23
  "entry": "plugins/example/index.js"
@@ -32,10 +36,6 @@
32
36
  "name": "@vcmap/buttonExamples",
33
37
  "entry": "plugins/buttonExamples/index.js"
34
38
  },
35
- {
36
- "name": "test",
37
- "entry": "plugins/test/index.js"
38
- },
39
39
  {
40
40
  "name": "@vcmap/hello-world",
41
41
  "entry": "plugins/@vcmap/hello-world/index.js"
@@ -1 +1 @@
1
- export * from "./cesium.6b5bb6.js";
1
+ export * from "./cesium.4e40f4.js";