Skip to content

Commit 90f082a

Browse files
committed
refactor(ol-animation-feature): remove unused exported component ol-animation-feature
BREAKING CHANGE: The component `ol-animation-feature` was simply exposing the map, vectorLayer and it's passed properties. There was no need to use this component at all and therefore it has been removed. However, when the component was used in the past, make sure to remove it from your template and move the `ref`'s for map and the layer to the correct components.
1 parent 158f00e commit 90f082a

File tree

2 files changed

+0
-34
lines changed

2 files changed

+0
-34
lines changed

src/components/animations/OlAnimationFeature.vue

-31
This file was deleted.

src/components/animations/index.ts

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { App } from "vue";
22
import OLAnimationDrop from "./OlAnimationDrop.vue";
33
import OlAnimationFade from "./OlAnimationFade.vue";
4-
import OlAnimationFeature from "./OlAnimationFeature.vue";
54
import OlAnimationPath from "./OlAnimationPath.vue";
65
import OlAnimationShake from "./OlAnimationShake.vue";
76
import OlAnimationSlide from "./OlAnimationSlide.vue";
@@ -11,7 +10,6 @@ import OlAnimationZoom from "./OlAnimationZoom.vue";
1110
function install(app: App) {
1211
app.component("ol-animation-drop", OLAnimationDrop);
1312
app.component("ol-animation-fade", OlAnimationFade);
14-
app.component("ol-animation-feature", OlAnimationFeature);
1513
app.component("ol-animation-path", OlAnimationPath);
1614
app.component("ol-animation-shake", OlAnimationShake);
1715
app.component("ol-animation-slide", OlAnimationSlide);
@@ -25,7 +23,6 @@ export {
2523
install,
2624
OLAnimationDrop,
2725
OlAnimationFade,
28-
OlAnimationFeature,
2926
OlAnimationPath,
3027
OlAnimationShake,
3128
OlAnimationSlide,

0 commit comments

Comments
 (0)