Skip to content

Commit 8f1e175

Browse files
ErioldDaniel Montoya
andauthored
fix(): exports para nueva version de ts (#668)
Co-authored-by: Daniel Montoya <daniel.montoya@eclass.cl>
1 parent c914100 commit 8f1e175

Some content is hidden

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

81 files changed

+136
-135
lines changed

src/atoms/Icons/ArrowRight.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { uniqueId } from '@/services'
1+
import { uniqueId } from 'services'
22
import { Base, BaseProps } from './Base'
33

44
export function ArrowRight(props: BaseProps): JSX.Element {

src/atoms/Icons/Base.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Icon as IconChakra } from '@chakra-ui/react'
22

3-
import { vars } from '@theme'
3+
import { vars } from 'theme'
44

55
export interface BaseProps {
66
w?: string

src/atoms/Icons/Loader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { uniqueId } from '@/services'
1+
import { uniqueId } from 'services'
22

33
interface props {
44
fill?: string

src/atoms/Icons/TinyAlertError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { uniqueId } from '@/services'
1+
import { uniqueId } from 'services'
22
import { Base, BaseProps } from './Base'
33

44
export function TinyAlertError(props: BaseProps): JSX.Element {

src/atoms/Icons/TinyAlertSuccess.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { uniqueId } from '@/services'
1+
import { uniqueId } from 'services'
22
import { Base, BaseProps } from './Base'
33

44
export function TinyAlertSuccess(props: BaseProps): JSX.Element {

src/atoms/Label/Label.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Box } from '@chakra-ui/react'
22

3-
import { vars } from '@theme'
3+
import { vars } from 'theme'
44

55
export interface LabelProps {
66
children: React.ReactChild

src/atoms/Progress/Progress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CircularProgress } from '@chakra-ui/react'
22

3-
import { vars } from '@theme'
3+
import { vars } from 'theme'
44

55
interface ProgressProps {
66
value: number

src/atoms/TinyAlert/TinyAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Box } from '@chakra-ui/react'
2-
import { vars } from '@theme'
2+
import { vars } from 'theme'
33

44
import { TinyAlertInfo, TinyAlertError, TinyAlertWarning, TinyAlertSuccess } from '../Icons'
55

src/documentation/components/CloseIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Base, BaseProps } from '@/atoms/Icons/Base'
1+
import { Base, BaseProps } from 'atoms/Icons/Base'
22

33
export function CloseIcon(props: BaseProps): JSX.Element {
44
return (

src/documentation/components/Color/ColorsType.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BoxColor } from '@/documentation/components/Color/BoxColor'
2-
import { colors } from '@/theme/colors'
1+
import { BoxColor } from 'documentation/components/Color/BoxColor'
2+
import { colors } from 'theme/colors'
33
import { Box } from '@chakra-ui/react'
44

55
export const ColorsType = ({

0 commit comments

Comments
 (0)