Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix Flex and Grid export to work with Vite.js #2905

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dnb-eufemia/src/components/flex/Flex.tsx
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 }
5 changes: 5 additions & 0 deletions packages/dnb-eufemia/src/components/flex/export.ts
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'
8 changes: 3 additions & 5 deletions packages/dnb-eufemia/src/components/flex/index.ts
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 }
2 changes: 1 addition & 1 deletion packages/dnb-eufemia/src/components/grid/Grid.ts
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 }
2 changes: 2 additions & 0 deletions packages/dnb-eufemia/src/components/grid/export.ts
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'
5 changes: 3 additions & 2 deletions packages/dnb-eufemia/src/components/grid/index.ts
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 }
Loading