Skip to content

Commit 7b6ae92

Browse files
ErioldDaniel Montoya
andauthored
fix(): correccion de exports para ui kit (#702)
Co-authored-by: Daniel Montoya <daniel.montoya@eclass.cl>
1 parent 47f5a29 commit 7b6ae92

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

src/index.ts

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
export * from './atoms'
2-
export * from './molecules'
3-
export * from './organisms'
4-
export * from './theme'
1+
// src/index.ts
2+
// Átomos
3+
export { Label } from './atoms/Label/Label'
4+
export { Progress } from './atoms/Progress/Progress'
5+
export { Ripples } from './atoms/Ripples/Ripples'
6+
export { TinyAlert } from './atoms/TinyAlert/TinyAlert'
7+
export * as Icons from './atoms/Icons'
8+
9+
// Moléculas
10+
export { Btn } from './molecules/Buttons/Btn'
11+
export { BtnPrimary } from './molecules/Buttons/BtnPrimary'
12+
export { BtnSecondary } from './molecules/Buttons/BtnSecondary'
13+
export { BtnTertiary } from './molecules/Buttons/BtnTertiary'
14+
export { BtnLink } from './molecules/Buttons/BtnLink'
15+
export { NewTooltip } from './molecules/Tooltip/NewTooltip'
16+
export { UserWay } from './molecules/UserWay/UserWay'
17+
export { UserWayCookie } from './molecules/UserWay/UserWayCookie'
18+
19+
// Organismos
20+
export { CourseList, CourseStatus, dataFake, maxWidthCoursesList } from './organisms/CourseList'
21+
export { Alert, FlashNotification, useFlashNotification } from './organisms/Alerts'
22+
export { ModalAlert } from './organisms/ModalAlert'
23+
export { Eventos } from './organisms/Events'
24+
export { Resources } from './organisms/Resources'
25+
export { CalendarDropdown, EventsList } from './organisms/Calendar'
26+
27+
// Tema
28+
export { theme, vars } from './theme'

src/organisms/Events/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './Eventos'
1+
export { Eventos } from './Eventos'

src/organisms/ModalAlert/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './ModalAlert'
1+
export { ModalAlert } from './ModalAlert'

0 commit comments

Comments
 (0)