Skip to content

Commit

Permalink
refactor(vue): relocate vue-related libraries to nextgis_frontend_vue…
Browse files Browse the repository at this point in the history
…2 repo

All libraries associated with Vue have been removed and transferred to a dedicated repository: https://github.com/nextgis/nextgis_frontend_vue2.
Additionally, the npm package names of these libraries have been updated to reflect their new location and versioning.

BREAKING CHANGE: @nextgis/vue-ngw-leaflet -> @nextgis/vue2-ngw-leaflet
BREAKING CHANGE: @nextgis/vue-ngw-ol -> @nextgis/vue2-ngw-ol
BREAKING CHANGE: @nextgis/vue-ngw-mapbox -> @nextgis/vue2-ngw-maplibregl
BREAKING CHANGE: @nextgis/vue-ngw-map -> @nextgis/vue2-ngw-map
BREAKING CHANGE: @nextgis/vuetify-ngw-components -> @nextgis/vue2-ngw-vuetify
BREAKING CHANGE: @nextgis/vuex-ngw -> @nextgis/vue2-ngw-vuex
  • Loading branch information
rendrom committed Mar 1, 2024
1 parent 01105ed commit 5140df2
Show file tree
Hide file tree
Showing 55 changed files with 2 additions and 6,881 deletions.
10 changes: 1 addition & 9 deletions README.md
Expand Up @@ -11,6 +11,7 @@ A suite of frontend JavaScript libraries designed to accelerate the development
- [Live Examples & Documentation](https://code.nextgis.com)
- [API Documentation](https://code-api.nextgis.com)
- [GitHub Repository](https://github.com/nextgis/nextgis_frontend)
- [Vue2 GitHub Repository](https://github.com/nextgis/nextgis_frontend_vue2)
- [Related Article](https://nextgis.com/blog/nextgis-frontend)
- [Tutorial Repository](https://github.com/nextgis/ngf-tutorial)
- [NextGIS Official Website](https://nextgis.com)
Expand Down Expand Up @@ -85,15 +86,6 @@ Map-free tools for common purpose
- [cancelable-promise](https://github.com/nextgis/nextgis_frontend/tree/master/packages/cancelable-promise) – a promise you can stop;
- [dom](https://github.com/nextgis/nextgis_frontend/tree/master/packages/dom) – collection of libraries for working with the DOM;

### Vue

- [vue-ngw-leaflet](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vue-ngw-leaflet) – integrate NextGIS Web maps into vue.js with leaflet adapter;
- [vue-ngw-ol](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vue-ngw-ol) – integrate NextGIS Web maps into vue.js with openlayers adapter;
- [vue-ngw-mapbox](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vue-ngw-mapbox) – integrate NextGIS Web maps into vue.js with mapbox-gl js adapter;
- [vue-ngw-map](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vue-ngw-map) – abstract plugin to integrate NextGIS Web maps into vue.js;
- [vuetify-ngw-components](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vuetify-ngw-components) – vuetify components for NextGIS Web Frontend
- [vuex-ngw](https://github.com/nextgis/nextgis_frontend/tree/master/packages/vuex-ngw) – vuex store for NextGIS Web resources;

## Real-World Projects

Explore how NextGIS frontend libraries are utilized in actual projects:
Expand Down
2 changes: 1 addition & 1 deletion docs/typedoc.js
@@ -1,7 +1,7 @@
const findPackages = require('../scripts/findPackages');

const allowPackages = findPackages().filter((x) => {
return !x.name.includes('vue') && !x.name.includes('react') && !x.name.includes('cesium');
return !x.name.includes('react') && !x.name.includes('cesium');
});
const entryPoints = allowPackages.map((x) => x.path + '/src/index.ts');

Expand Down

0 comments on commit 5140df2

Please sign in to comment.