From acc19898e0bcf61480a14e26265e4623772c56d8 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Fri, 22 Aug 2025 22:44:35 -0300 Subject: [PATCH] refactor: move atoms stories to atoms folder --- .../my-wallet-ds/src/stories/{ => atoms}/checkbox.stories.ts | 2 +- projects/my-wallet-ds/src/stories/{ => atoms}/svg.stories.ts | 4 ++-- .../src/stories/{ => atoms}/typography.stories.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename projects/my-wallet-ds/src/stories/{ => atoms}/checkbox.stories.ts (88%) rename projects/my-wallet-ds/src/stories/{ => atoms}/svg.stories.ts (93%) rename projects/my-wallet-ds/src/stories/{ => atoms}/typography.stories.ts (95%) diff --git a/projects/my-wallet-ds/src/stories/checkbox.stories.ts b/projects/my-wallet-ds/src/stories/atoms/checkbox.stories.ts similarity index 88% rename from projects/my-wallet-ds/src/stories/checkbox.stories.ts rename to projects/my-wallet-ds/src/stories/atoms/checkbox.stories.ts index c543026..e40be17 100644 --- a/projects/my-wallet-ds/src/stories/checkbox.stories.ts +++ b/projects/my-wallet-ds/src/stories/atoms/checkbox.stories.ts @@ -1,6 +1,6 @@ import type { Meta, StoryObj } from '@storybook/angular'; -import { CheckboxComponent } from '../lib/atoms/checkbox/checkbox.component'; +import { CheckboxComponent } from './../../lib/atoms/checkbox/checkbox.component'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories const meta: Meta = { diff --git a/projects/my-wallet-ds/src/stories/svg.stories.ts b/projects/my-wallet-ds/src/stories/atoms/svg.stories.ts similarity index 93% rename from projects/my-wallet-ds/src/stories/svg.stories.ts rename to projects/my-wallet-ds/src/stories/atoms/svg.stories.ts index e843f7f..2cd9c8d 100644 --- a/projects/my-wallet-ds/src/stories/svg.stories.ts +++ b/projects/my-wallet-ds/src/stories/atoms/svg.stories.ts @@ -1,6 +1,6 @@ import type { Meta } from '@storybook/angular'; -import { SvgComponent } from '../lib/atoms/svg/svg.component'; -import { svgList } from './svg-list'; +import { SvgComponent } from './../../lib/atoms/svg/svg.component'; +import { svgList } from './../svg-list'; const meta: Meta = { title: 'Atoms/Svg', diff --git a/projects/my-wallet-ds/src/stories/typography.stories.ts b/projects/my-wallet-ds/src/stories/atoms/typography.stories.ts similarity index 95% rename from projects/my-wallet-ds/src/stories/typography.stories.ts rename to projects/my-wallet-ds/src/stories/atoms/typography.stories.ts index 0a1b158..4a8865b 100644 --- a/projects/my-wallet-ds/src/stories/typography.stories.ts +++ b/projects/my-wallet-ds/src/stories/atoms/typography.stories.ts @@ -1,6 +1,6 @@ import type { Meta } from '@storybook/angular'; -import { TypographyComponent } from '../lib/atoms/typography/typography.component'; -import { TypographyVariants } from '../lib/types/TypographyVariants'; +import { TypographyComponent } from '../../lib/atoms/typography/typography.component'; +import { TypographyVariants } from '../../lib/types/TypographyVariants'; export default { title: 'Atoms/Typography',