@vcmap/module-selector 2.0.3 → 2.0.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.
- package/CHANGELOG.md +9 -0
- package/README.md +2 -1
- package/dist/index.js +1534 -1084
- package/package.json +3 -3
- package/src/ModuleSelector.vue +122 -16
- package/src/config/CloudModuleSelector.vue +128 -76
- package/src/config/ModuleEditor.vue +17 -1
- package/src/config/ModuleSelectorConfigEditor.vue +241 -156
- package/src/defaultOptions.ts +1 -0
- package/src/index.ts +20 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# v2.0.4
|
|
2
|
+
|
|
3
|
+
- Add Tooltip to each card for Modules and Groups
|
|
4
|
+
- Update ConfigEditor workflow
|
|
5
|
+
- Update Group Design
|
|
6
|
+
- Update Editor Design
|
|
7
|
+
- Pin Button to the bottom of the Module Selector
|
|
8
|
+
- added a new default for maxHeight
|
|
9
|
+
|
|
1
10
|
# v2.0.3
|
|
2
11
|
|
|
3
12
|
- Reorder ConfigEditor options
|
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# module-selector
|
|
2
2
|
|
|
3
3
|
> Part of the [VC Map Project](https://github.com/virtualcitySYSTEMS/map-ui)
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
The Module Selector Plugin allows to browse and switch between different Modules. The Modules can be grouped and are displayed via a Title and a defineable Icon.
|