From f9cd2b66cb23749392468d96fa8510285b445c8b Mon Sep 17 00:00:00 2001 From: Simon Lamon <32477463+silamon@users.noreply.github.com> Date: Fri, 15 Aug 2025 12:29:34 +0200 Subject: [PATCH] Migrate ha-fade-in to webawesome (#26543) fade in --- src/components/ha-fade-in.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ha-fade-in.ts b/src/components/ha-fade-in.ts index feec6796b7..bd1ba67b22 100644 --- a/src/components/ha-fade-in.ts +++ b/src/components/ha-fade-in.ts @@ -1,8 +1,8 @@ -import SlAnimation from "@shoelace-style/shoelace/dist/components/animation/animation.component"; +import WaAnimation from "@awesome.me/webawesome/dist/components/animation/animation"; import { customElement, property } from "lit/decorators"; @customElement("ha-fade-in") -export class HaFadeIn extends SlAnimation { +export class HaFadeIn extends WaAnimation { @property() public name = "fadeIn"; @property() public fill: FillMode = "both";