Skip to content

Commit

Permalink
fix: fix Flex and Grid export to work with Vite.js (#2905)
Browse files Browse the repository at this point in the history
  • Loading branch information
tujoworker authored Nov 16, 2023
1 parent a61140b commit ef83713
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
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 }

0 comments on commit ef83713

Please sign in to comment.