@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.
- package/README.md +69 -22
- package/build/build.js +0 -3
- package/build/buildHelpers.js +0 -1
- package/build/commonViteConfig.js +1 -1
- package/config/dev.config.json +4 -4
- package/dist/assets/{cesium.6b5bb6.js → cesium.4e40f4.js} +0 -0
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/core.edcf5e.js +4 -0
- package/dist/assets/core.js +1 -1
- package/dist/assets/{index.0be2842f.js → index.889d0f3a.js} +1 -1
- package/dist/assets/{ol.0561aa.js → ol.246fd4.js} +0 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.df4f6d.css +1 -0
- package/dist/assets/ui.df4f6d.js +43 -0
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue-composition-api.f926fa.js → vue-composition-api.a520f3.js} +1 -1
- package/dist/assets/vue-composition-api.js +2 -2
- package/dist/assets/{vue.ddcb6b.js → vue.2cee44.js} +0 -0
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify.d21163.css → vuetify.cc817b.css} +0 -0
- package/dist/assets/{vuetify.d21163.js → vuetify.cc817b.js} +1 -1
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.js +39 -1
- package/package.json +2 -3
- package/plugins/@vcmap/pluginExample/index.js +5 -5
- package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +1 -1
- package/plugins/@vcmap/project-selector/ContextsListComponent.vue +1 -1
- package/plugins/@vcmap/project-selector/index.js +5 -5
- package/plugins/@vcmap/project-selector/package.json +1 -2
- package/plugins/@vcmap/theme-changer/index.js +6 -6
- package/plugins/buttonExamples/ButtonExamples.vue +1 -1
- package/plugins/buttonExamples/index.js +5 -4
- package/plugins/categoryTest/Categories.vue +1 -1
- package/plugins/categoryTest/Category.vue +1 -1
- package/plugins/categoryTest/index.js +5 -5
- package/plugins/example/index.js +33 -14
- package/plugins/test/allIconsComponent.vue +34 -0
- package/plugins/test/editor.vue +1 -1
- package/plugins/test/index.js +40 -17
- package/plugins/test/toolbox-data.js +106 -26
- package/plugins/test/windowManagerExample.vue +1 -2
- package/src/actions/actionHelper.js +2 -1
- package/src/actions/styleSelector.vue +1 -1
- package/src/application/Navbar.vue +18 -6
- package/src/application/VcsApp.vue +34 -28
- package/src/assets/logo-mobile.svg +9 -0
- package/src/assets/logo.svg +23 -23
- package/src/components/buttons/VcsActionButtonList.vue +99 -0
- package/src/components/buttons/VcsButton.vue +201 -0
- package/src/components/form-inputs-controls/VcsCheckbox.vue +73 -0
- package/src/components/form-inputs-controls/VcsColorPicker.vue +81 -0
- package/src/components/form-inputs-controls/VcsFormSection.vue +46 -0
- package/src/components/form-inputs-controls/VcsLabel.vue +38 -0
- package/src/components/form-inputs-controls/VcsSelect.vue +97 -0
- package/src/components/form-inputs-controls/VcsTextArea.vue +130 -0
- package/src/components/form-inputs-controls/VcsTextField.vue +129 -0
- package/src/components/form-output/VcsFormattedNumber.vue +103 -0
- package/src/components/lists/VcsActionList.vue +100 -0
- package/src/components/lists/VcsTreeview.vue +109 -0
- package/src/components/lists/VcsTreeviewLeaf.vue +105 -0
- package/src/components/lists/VcsTreeviewSearchbar.vue +156 -0
- package/src/components/notification/VcsBadge.vue +27 -0
- package/src/components/notification/VcsTooltip.vue +154 -0
- package/src/components/notification/validation.js +19 -0
- package/src/contentTree/LayerTree.vue +1 -1
- package/src/contentTree/contentTreeCollection.js +6 -2
- package/src/icons/+all.js +359 -0
- package/src/icons/2DAreaIcon.vue +21 -0
- package/src/icons/2DDistanceIcon.vue +18 -0
- package/src/icons/3DAreaIcon.vue +21 -0
- package/src/icons/3DDistanceIcon.vue +18 -0
- package/src/icons/3DHeightIcon.vue +18 -0
- package/src/icons/AngleIcon.vue +8 -0
- package/src/icons/AssociationsIcon.vue +34 -0
- package/src/icons/AxisIcon.vue +10 -0
- package/src/icons/BoundingBoxIcon.vue +15 -0
- package/src/icons/CheckboxCheckedIcon.vue +16 -0
- package/src/icons/CheckboxIcon.vue +23 -0
- package/src/icons/CheckboxIndeterminateIcon.vue +24 -0
- package/src/icons/CircleIcon.vue +10 -0
- package/src/icons/ColorSwatchIcon.vue +17 -0
- package/src/icons/CommentIcon.vue +19 -0
- package/src/icons/CompassIcon.vue +8 -0
- package/src/icons/ComponentsIcon.vue +7 -0
- package/src/icons/ConeIcon.vue +11 -0
- package/src/icons/DimensionsHouseIcon.vue +14 -0
- package/src/icons/ElevationProfileIcon.vue +111 -0
- package/src/icons/ExportAreaIcon.vue +7 -0
- package/src/icons/ExportFlightIcon.vue +7 -0
- package/src/icons/ExportIcon.vue +8 -0
- package/src/icons/ExternalLinkIcon.vue +10 -0
- package/src/icons/EyeIcon.vue +7 -0
- package/src/icons/FastForwardIcon.vue +7 -0
- package/src/icons/FilterIcon.vue +8 -0
- package/src/icons/GlobeNatureIcon.vue +14 -0
- package/src/icons/HealthCareIndustriesIcon.vue +118 -0
- package/src/icons/HelpIcon.vue +7 -0
- package/src/icons/HomePointIcon.vue +8 -0
- package/src/icons/HospitalsIcon.vue +237 -0
- package/src/icons/HouseIcon.vue +25 -0
- package/src/icons/ImportIcon.vue +8 -0
- package/src/icons/InfoIcon.vue +10 -0
- package/src/icons/KebabIcon.vue +36 -0
- package/src/icons/LabelIcon.vue +7 -0
- package/src/icons/LayersIcon.vue +26 -0
- package/src/icons/LegendIcon.vue +65 -0
- package/src/icons/LineIcon.vue +7 -0
- package/src/icons/LinkIcon.vue +7 -0
- package/src/icons/MapIcon.vue +8 -0
- package/src/icons/MenuIcon.vue +34 -0
- package/src/icons/MinusIcon.vue +8 -0
- package/src/icons/ObjectAttributeIcon.vue +18 -0
- package/src/icons/ObjectSelectIcon.vue +8 -0
- package/src/icons/ObliqueViewIcon.vue +13 -0
- package/src/icons/PdfIcon.vue +10 -0
- package/src/icons/PedestrianIcon.vue +8 -0
- package/src/icons/PenIcon.vue +14 -0
- package/src/icons/PlayCircleIcon.vue +10 -0
- package/src/icons/PlusIcon.vue +9 -0
- package/src/icons/PoiIcon.vue +7 -0
- package/src/icons/PointSelectIcon.vue +7 -0
- package/src/icons/PolygonIcon.vue +38 -0
- package/src/icons/PresentationModeIcon.vue +7 -0
- package/src/icons/ProgressIcon.vue +24 -0
- package/src/icons/QueryIcon.vue +15 -0
- package/src/icons/RectangleIcon.vue +9 -0
- package/src/icons/ReturnIcon.vue +7 -0
- package/src/icons/RewindIcon.vue +6 -0
- package/src/icons/SearchIcon.vue +8 -0
- package/src/icons/ShadowIcon.vue +9 -0
- package/src/icons/ShapesIcon.vue +28 -0
- package/src/icons/ShareIcon.vue +22 -0
- package/src/icons/SimpleCircleFilledIcon.vue +15 -0
- package/src/icons/SimpleCircleHalfFilledIcon.vue +12 -0
- package/src/icons/SimpleCircleOutlinedIcon.vue +15 -0
- package/src/icons/SkipNextIcon.vue +7 -0
- package/src/icons/SkipPreviousIcon.vue +9 -0
- package/src/icons/SplitViewIcon.vue +19 -0
- package/src/icons/TextStyleIcon.vue +14 -0
- package/src/icons/ThreeDimensionsIcon.vue +7 -0
- package/src/icons/ToolsIcon.vue +35 -0
- package/src/icons/TouchIcon.vue +8 -0
- package/src/icons/TrashCanIcon.vue +7 -0
- package/src/icons/TriangleIcon.vue +15 -0
- package/src/icons/TwoDimensionsIcon.vue +8 -0
- package/src/icons/UploadIcon.vue +14 -0
- package/src/icons/VideoRecorderIcon.vue +14 -0
- package/src/icons/WalkingIcon.vue +7 -0
- package/src/icons/WallIcon.vue +14 -0
- package/src/manager/buttonManager.js +5 -53
- package/src/manager/navbarManager.js +81 -0
- package/src/manager/toolbox/ToolboxGroupComponent.vue +128 -0
- package/src/manager/toolbox/ToolboxManager.vue +119 -76
- package/src/manager/toolbox/toolboxManager.js +204 -0
- package/src/manager/window/WindowComponentHeader.vue +1 -1
- package/src/manager/window/WindowManager.vue +18 -1
- package/src/manager/window/windowManager.js +3 -5
- package/src/navigation/mapNavigation.vue +9 -5
- package/src/navigation/orientationToolsButton.vue +1 -1
- package/src/navigation/tiltSlider.vue +1 -1
- package/src/styles/_theming.scss +10 -0
- package/src/styles/main.scss +3 -0
- package/src/styles/variables.scss +70 -0
- package/src/styles/vcsFont.scss +5 -0
- package/src/styles/vcsGrid.scss +4 -0
- package/src/vcsUiApp.js +4 -3
- package/src/vuePlugins/vuetify.js +1 -1
- package/dist/assets/core.98f9bb.js +0 -4
- package/dist/assets/ui.b7c1e3.css +0 -1
- package/dist/assets/ui.b7c1e3.js +0 -39
- package/dist/assets/uicomponents.682c5f.css +0 -1
- package/dist/assets/uicomponents.682c5f.js +0 -32
- package/dist/assets/uicomponents.js +0 -1
- package/lib/uicomponents.js +0 -1
- package/src/manager/toolbox/ToolboxMultiSelectButton.vue +0 -96
- package/src/manager/toolbox/ToolboxSingleSelectButton.vue +0 -98
- 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
package/build/buildHelpers.js
CHANGED
@@ -30,7 +30,7 @@ const configMain = defineConfig({
|
|
30
30
|
css: {
|
31
31
|
preprocessorOptions: {
|
32
32
|
sass: {
|
33
|
-
additionalData: "\n@import './
|
33
|
+
additionalData: "\n@import './src/styles/variables.scss'\n",
|
34
34
|
},
|
35
35
|
},
|
36
36
|
},
|
package/config/dev.config.json
CHANGED
@@ -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"
|
File without changes
|
package/dist/assets/cesium.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./cesium.
|
1
|
+
export * from "./cesium.4e40f4.js";
|