diff --git a/src/components/index.ts b/src/components/index.ts index 30378539..a4fdbb6c 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -2,13 +2,13 @@ require('../styles/main.scss'); export { Utils } from './utils'; export { Layout } from './layout/layout'; -export { Page, PageContext, PageContextProps } from './page/page'; +export { Page, PageContext, type PageContextProps } from './page/page'; export { MockupList } from './mockup-list/mockup-list'; export { DropDown } from './dropdown/dropdown'; -export { DropDownMenu, DropDownMenuProps, MenuItem } from './dropdown-menu'; +export { DropDownMenu, type DropDownMenuProps, type MenuItem } from './dropdown-menu'; export { Checkbox } from './checkbox'; -export { TopBarProps, Toolbar, TopBarFilter } from './top-bar/top-bar'; -export { Tab, Tabs } from './tabs/tabs'; +export { type TopBarProps, type Toolbar, type TopBarFilter } from './top-bar/top-bar'; +export { type Tab, Tabs } from './tabs/tabs'; export { Duration } from './duration'; export { SlidingPanel } from './sliding-panel/sliding-panel'; export { LogsViewer } from './logs-viewer/logs-viewer'; @@ -16,7 +16,7 @@ export * from './notifications/notifications'; export * from './notifications/notification-manager'; export * from './popup/popup'; export * from './popup/popup-manager'; -export { Select, SelectOption, SelectProps } from './select/select'; +export { Select, type SelectOption, type SelectProps } from './select/select'; export { HelpIcon } from './help-icon/help-icon'; export { Tooltip } from './tooltip/tooltip'; export * from './ticker';