Skip to content

Commit 82b47a7

Browse files
CopilotHugos68
andauthored
Remove @/ path aliases from packages/* (#4136)
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: Hugos68 <[email protected]>
1 parent 540a76c commit 82b47a7

File tree

571 files changed

+1012
-1017
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

571 files changed

+1012
-1017
lines changed

packages/skeleton-react/src/components/accordion/anatomy/item-content.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ItemContext } from '../modules/item-context.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { mergeProps } from '@zag-js/react';
77
import { use } from 'react';

packages/skeleton-react/src/components/accordion/anatomy/item-indicator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ItemContext } from '../modules/item-context.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { mergeProps } from '@zag-js/react';
77
import { use } from 'react';

packages/skeleton-react/src/components/accordion/anatomy/item-trigger.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ItemContext } from '../modules/item-context.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { mergeProps } from '@zag-js/react';
77
import { use } from 'react';

packages/skeleton-react/src/components/accordion/anatomy/item.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ItemContext } from '../modules/item-context.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { splitItemProps } from '@zag-js/accordion';
77
import type { ItemProps } from '@zag-js/accordion';

packages/skeleton-react/src/components/accordion/anatomy/root-provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { useAccordion } from '../modules/provider.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { mergeProps } from '@zag-js/react';
77

packages/skeleton-react/src/components/accordion/anatomy/root.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useAccordion } from '../modules/provider.js';
22
import { RootContext } from '../modules/root-context.js';
3-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
4-
import type { PropsWithElement } from '@/internal/props-with-element.js';
3+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
4+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
55
import { classesAccordion } from '@skeletonlabs/skeleton-common';
66
import { splitProps } from '@zag-js/accordion';
77
import type { Props } from '@zag-js/accordion';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createContext } from '@/internal/create-context.js';
1+
import { createContext } from '../../../internal/create-context.js';
22
import type { ItemProps } from '@zag-js/accordion';
33

44
export const ItemContext = createContext<ItemProps>();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { useAccordion } from './provider.js';
2-
import { createContext } from '@/internal/create-context.js';
2+
import { createContext } from '../../../internal/create-context.js';
33

44
export const RootContext = createContext<ReturnType<typeof useAccordion>>();

packages/skeleton-react/src/components/app-bar/anatomy/headline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
2-
import type { PropsWithElement } from '@/internal/props-with-element.js';
1+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
2+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
33
import { classesAppBar } from '@skeletonlabs/skeleton-common';
44
import { mergeProps } from '@zag-js/react';
55

packages/skeleton-react/src/components/app-bar/anatomy/lead.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { HTMLAttributes } from '@/internal/html-attributes.js';
2-
import type { PropsWithElement } from '@/internal/props-with-element.js';
1+
import type { HTMLAttributes } from '../../../internal/html-attributes.js';
2+
import type { PropsWithElement } from '../../../internal/props-with-element.js';
33
import { classesAppBar } from '@skeletonlabs/skeleton-common';
44
import { mergeProps } from '@zag-js/react';
55

0 commit comments

Comments
 (0)