diff --git a/package-lock.json b/package-lock.json index d31d37e427..1920c4928e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@channel.io/design-system", - "version": "0.2.15", + "version": "0.2.16", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index edbbbfa639..f1c331df95 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@channel.io/design-system", - "version": "0.2.15", + "version": "0.2.16", "description": "Design System by Channel", "repository": { "type": "git", diff --git a/src/components/Overlay/index.ts b/src/components/Overlay/index.ts index 3f7c2828e9..90e8b6d4ad 100644 --- a/src/components/Overlay/index.ts +++ b/src/components/Overlay/index.ts @@ -1,13 +1,13 @@ /* Internal dependencies */ import Overlay from './Overlay' -import OverlayPosition from './OverlayPosition' +import type OverlayPosition from './OverlayPosition' import type OverlayProps from './Overlay.types' export type { OverlayProps, + OverlayPosition, } export { Overlay, - OverlayPosition, } diff --git a/src/index.ts b/src/index.ts index bb26321081..92f3d53b20 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,6 +16,7 @@ export * from './components/List/ListMenuTitle' export * from './components/List/ListMenuGroup' export * from './components/List/ListItem' export * from './components/Overlay' +export * from './components/Editor' /* Layout */ export * from './layout/GNB'