Commit 4c53ecde authored by Veit Bjarsch's avatar Veit Bjarsch
Browse files

fix: implemented review ideas

parent 48a45f46
Loading
Loading
Loading
Loading
+17 −19
Original line number Diff line number Diff line
@@ -5,13 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]

### Added

- Injection keys and exported values from function folder are now accessible through the lib.

### Fixed

- Playground now works again after upgrade to TypeScript.

### Changed

- **Breaking:** `src/` folder is no longer included in the build. Please use the new exported keys if you wanna access the injection keys or any function.

## [0.9.0] - 2023-03-12

@@ -25,7 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Converted codebase to TypeScript, finally closing
  [#1 Typescript support](https://github.com/vue-leaflet/vue-leaflet/issues/1).


## [0.8.4] - 2023-02-20

### Fixed
@@ -36,7 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
  [1bb4a71](https://github.com/vue-leaflet/vue-leaflet/commit/1bb4a71fa1201f6cf392e85a707a52bd8e916b9a#diff-c062e5b98deef6d3ca2604206fe64f4ac3a74887e252285b8559ee1e08e1b932R132-R135),
  resolving [#260 Geoman integration with Vue3 Leaflet](https://github.com/vue-leaflet/vue-leaflet/issues/260).


## [0.8.3] - 2023-02-12

### Fixed
@@ -57,7 +61,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Ability to style GeoJSON layers through `:options-style` prop.


## [0.8.2] - 2023-02-05

### Fixed
@@ -76,14 +79,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `LTileLayer` now accepts an array of strings for its `subdomains` property, as well as a single string.
- `LWmsTileLayer` now uses the correct Leaflet option name `uppercase` instead of the previous `upperCase`.


## [0.8.1] - 2023-01-29

### Fixed

- Resolved [#265 TypeError: this.getPane() is undefined](https://github.com/vue-leaflet/vue-leaflet/issues/265).


## [0.8.0] - 2023-01-26

### Added
@@ -101,7 +102,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Breaking:** `LWmsTileLayer` no longer has its own `baseUrl` property in addition to the `url` property it inherits
  from `LTileLayer`.


## [0.7.0] - 2022-12-08

### Breaking changes
@@ -121,21 +121,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Code formatting in some playground examples.
- Moved `@types/leaflet` to `devDependencies`.


## Earlier versions

The following releases were created before the addition of this changelog:

* [0.6.1], 2021-06-17
* [0.6.0], 2021-03-01
* [0.5.0], 2020-11-29
* [0.4.2], 2020-11-16
* [0.4.1], 2020-11-16
* [0.4.0], 2020-11-13
* [0.3.0], 2020-10-31
* [0.2.0], 2020-10-30
* [0.1.2], 2020-10-09

- [0.6.1], 2021-06-17
- [0.6.0], 2021-03-01
- [0.5.0], 2020-11-29
- [0.4.2], 2020-11-16
- [0.4.1], 2020-11-16
- [0.4.0], 2020-11-13
- [0.3.0], 2020-10-31
- [0.2.0], 2020-10-30
- [0.1.2], 2020-10-09

[unreleased]: https://github.com/vue-leaflet/vue-leaflet/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/vue-leaflet/vue-leaflet/compare/v0.8.4...v0.9.0
+1 −2
Original line number Diff line number Diff line
@@ -9,8 +9,7 @@
  "unpkg": "dist/vue-leaflet.umd.js",
  "module": "dist/vue-leaflet.es.js",
  "files": [
    "dist/",
    "src/"
    "dist/"
  ],
  "types": "./dist/src/lib.d.ts",
  "repository": {
+26 −26
Original line number Diff line number Diff line
export * as circle from "./circle";
export * as circleMarker from "./circleMarker";
export * as component from "./component";
export * as control from "./control";
export * as controlAttribution from "./controlAttribution";
export * as controlLayers from "./controlLayers";
export * as controlScale from "./controlScale";
export * as controlZoom from "./controlZoom";
export * as controlGroup from "./featureGroup";
export * as geoJSON from "./geoJSON";
export * as gridLayer from "./gridLayer";
export * as icon from "./icon";
export * as imageOverlay from "./imageOverlay";
export * as interactiveLayer from "./interactiveLayer";
export * as layer from "./layer";
export * as layerGroup from "./layerGroup";
export * as marker from "./marker";
export * as path from "./path";
export * as polygon from "./polygon";
export * as polyline from "./polyline";
export * as popper from "./popper";
export * as popup from "./popup";
export * as rectangle from "./rectangle";
export * as tileLayer from "./tileLayer";
export * as tooltip from "./tooltip";
export * as wmsTileLayer from "./wmsTileLayer";
export * as Circle from "./circle";
export * as CircleMarker from "./circleMarker";
export * as Component from "./component";
export * as Control from "./control";
export * as ControlAttribution from "./controlAttribution";
export * as ControlLayers from "./controlLayers";
export * as ControlScale from "./controlScale";
export * as ControlZoom from "./controlZoom";
export * as FeatureGroup from "./featureGroup";
export * as GeoJSON from "./geoJSON";
export * as GridLayer from "./gridLayer";
export * as Icon from "./icon";
export * as ImageOverlay from "./imageOverlay";
export * as InteractiveLayer from "./interactiveLayer";
export * as Layer from "./layer";
export * as LayerGroup from "./layerGroup";
export * as Marker from "./marker";
export * as Path from "./path";
export * as Polygon from "./polygon";
export * as Polyline from "./polyline";
export * as Popper from "./popper";
export * as Popup from "./popup";
export * as Rectangle from "./rectangle";
export * as TileLayer from "./tileLayer";
export * as Tooltip from "./tooltip";
export * as WmsTileLayer from "./wmsTileLayer";
+2 −2
Original line number Diff line number Diff line
export * from "./components";
export * as injectionKeys from "./types/injectionKeys"
export * as functions from "./functions"
export * as InjectionKeys from "./types/injectionKeys";
export * as Functions from "./functions";