diff --git a/src/components/animations/OlAnimationFeature.vue b/src/components/animations/OlAnimationFeature.vue deleted file mode 100644 index b46757d3..00000000 --- a/src/components/animations/OlAnimationFeature.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - diff --git a/src/components/animations/index.ts b/src/components/animations/index.ts index b45aa4a2..e0111a81 100644 --- a/src/components/animations/index.ts +++ b/src/components/animations/index.ts @@ -1,7 +1,6 @@ import type { App } from "vue"; import OLAnimationDrop from "./OlAnimationDrop.vue"; import OlAnimationFade from "./OlAnimationFade.vue"; -import OlAnimationFeature from "./OlAnimationFeature.vue"; import OlAnimationPath from "./OlAnimationPath.vue"; import OlAnimationShake from "./OlAnimationShake.vue"; import OlAnimationSlide from "./OlAnimationSlide.vue"; @@ -11,7 +10,6 @@ import OlAnimationZoom from "./OlAnimationZoom.vue"; function install(app: App) { app.component("ol-animation-drop", OLAnimationDrop); app.component("ol-animation-fade", OlAnimationFade); - app.component("ol-animation-feature", OlAnimationFeature); app.component("ol-animation-path", OlAnimationPath); app.component("ol-animation-shake", OlAnimationShake); app.component("ol-animation-slide", OlAnimationSlide); @@ -25,7 +23,6 @@ export { install, OLAnimationDrop, OlAnimationFade, - OlAnimationFeature, OlAnimationPath, OlAnimationShake, OlAnimationSlide,