From 88bc1afb590e0fac211dc9655fa47d1fb5a24ea6 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 10 Aug 2025 18:16:44 -0300 Subject: [PATCH] refactor: update prefix --- .../src/lib/atoms/typography/typography.component.ts | 2 +- .../src/lib/molecules/money-text/money-text.component.html | 4 ++-- .../title-bar-category/title-bar-category.component.html | 4 ++-- projects/my-wallet-ds/src/stories/typography.stories.ts | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts b/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts index ff441a6..2af7e51 100644 --- a/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts +++ b/projects/my-wallet-ds/src/lib/atoms/typography/typography.component.ts @@ -3,7 +3,7 @@ import { TypographyVariants } from '../../types/TypographyVariants'; import { NgTemplateOutlet } from '@angular/common'; @Component({ - selector: 'my-wallet-typography', + selector: 'mw-typography', standalone: true, imports: [NgTemplateOutlet], templateUrl: './typography.component.html', diff --git a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html index 2e9d141..2e3b30b 100644 --- a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html +++ b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.html @@ -1,5 +1,5 @@ -{{amount()|currency:currencyCode():'symbol-narrow'}} +>{{amount()|currency:currencyCode():'symbol-narrow'}} diff --git a/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html b/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html index de39bf1..0e5f700 100644 --- a/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html +++ b/projects/my-wallet-ds/src/lib/molecules/title-bar-category/title-bar-category.component.html @@ -1,10 +1,10 @@ - {{category()}} + >{{category()}} \ No newline at end of file diff --git a/projects/my-wallet-ds/src/stories/typography.stories.ts b/projects/my-wallet-ds/src/stories/typography.stories.ts index 21cdf15..0a1b158 100644 --- a/projects/my-wallet-ds/src/stories/typography.stories.ts +++ b/projects/my-wallet-ds/src/stories/typography.stories.ts @@ -75,7 +75,7 @@ export default { const Template = (args: {variant: TypographyVariants, ellipsis: boolean, letterSpacing: string, lineHeight: null|string, size: string, color: string, maxWidth: null|string}) => ({ props: args, template: ` - Texto`, + >Texto`, }); export const Paragraph = Template.bind({});