-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix Flex and Grid export to work with Vite.js (#2905)
- Loading branch information
1 parent
a61140b
commit ef83713
Showing
6 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// For TypeScript compatibility we import and export it this way | ||
import * as _default from './' | ||
import * as _default from './export' | ||
export { _default as default } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export { default as Container } from './Container' | ||
export { default as Item } from './Item' | ||
export { default as Stack } from './Stack' | ||
export { default as Horizontal } from './Horizontal' | ||
export { default as Vertical } from './Vertical' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
export { default as Container } from './Container' | ||
export { default as Item } from './Item' | ||
export { default as Stack } from './Stack' | ||
export { default as Horizontal } from './Horizontal' | ||
export { default as Vertical } from './Vertical' | ||
// For TypeScript compatibility we import and export it this way | ||
import * as _default from './export' | ||
export { _default as default } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// For TypeScript compatibility we import and export it this way | ||
import * as _default from './' | ||
import * as _default from './export' | ||
export { _default as default } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as Container } from './Container' | ||
export { default as Item } from './Item' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as Container } from './Container' | ||
export { default as Item } from './Item' | ||
// For TypeScript compatibility we import and export it this way | ||
import * as _default from './export' | ||
export { _default as default } |