File tree 9 files changed +12
-14
lines changed
9 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 1
- import { INavAttributes , INavLinkProps } from '../../coreui.types' ;
1
+ import { INavAttributes , INavLinkProps } from '../../coreui.types' ;
2
2
3
3
interface IBreadcrumbItem {
4
4
label : string ;
@@ -9,4 +9,4 @@ interface IBreadcrumbItem {
9
9
queryParams ?: { [ key : string ] : any } ;
10
10
}
11
11
12
- export { INavAttributes , INavLinkProps , IBreadcrumbItem } ;
12
+ export type { INavAttributes , INavLinkProps , IBreadcrumbItem } ;
Original file line number Diff line number Diff line change 1
- export { IBreadcrumbItem } from './breadcrumb-item/breadcrumb-item' ;
1
+ export type { IBreadcrumbItem } from './breadcrumb-item/breadcrumb-item' ;
2
2
export { BreadcrumbItemComponent } from './breadcrumb-item/breadcrumb-item.component' ;
3
3
export { BreadcrumbComponent } from './breadcrumb/breadcrumb.component' ;
4
4
export { BreadcrumbRouterComponent } from './breadcrumb-router/breadcrumb-router.component' ;
Original file line number Diff line number Diff line change 1
- export { IProgress , IProgressBar , IProgressBarStacked } from './progress.type' ;
1
+ export type { IProgress , IProgressBar , IProgressBarStacked } from './progress.type' ;
2
2
export { ProgressComponent } from './progress.component' ;
3
3
export { ProgressStackedComponent } from './progress-stacked.component' ;
4
4
export { ProgressBarComponent } from './progress-bar.component' ;
Original file line number Diff line number Diff line change 1
- export { IntersectionService , IIntersectionObserverInit } from './intersection.service' ;
2
- export { ListenersService , IListenersConfig } from './listeners.service' ;
1
+ export { IntersectionService , type IIntersectionObserverInit } from './intersection.service' ;
2
+ export { ListenersService , type IListenersConfig } from './listeners.service' ;
3
3
export { ClassToggleService } from './class-toggle.service' ;
4
4
export { LocalStorageService } from './local-storage.service' ;
5
5
export { InMemoryStorageService } from './in-memory-storage.service' ;
6
- export { ColorModeService , ColorMode } from './color-mode.service' ;
6
+ export { ColorModeService , type ColorMode } from './color-mode.service' ;
7
7
export { UIDService } from './uid.service' ;
8
8
export { RtlService } from './rtl.service' ;
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ export { SidebarTogglerDirective } from './sidebar-toggler/sidebar-toggler.direc
6
6
export { SidebarHeaderComponent } from './sidebar-header/sidebar-header.component' ;
7
7
export { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component' ;
8
8
9
- export { SidebarNavComponent , INavData , SidebarNavHelper } from './sidebar-nav' ;
9
+ export { SidebarNavComponent , type INavData , SidebarNavHelper } from './sidebar-nav' ;
10
10
11
11
export { SidebarModule } from './sidebar.module' ;
Original file line number Diff line number Diff line change @@ -11,6 +11,4 @@ export { SidebarNavIconPipe } from './sidebar-nav-icon.pipe';
11
11
export { SidebarNavBadgePipe } from './sidebar-nav-badge.pipe' ;
12
12
export { SidebarNavItemClassPipe } from './sidebar-nav-item-class.pipe' ;
13
13
export { SidebarNavLinkPipe } from './sidebar-nav-link.pipe' ;
14
- export { INavData } from './sidebar-nav' ;
15
-
16
-
14
+ export type { INavData } from './sidebar-nav' ;
Original file line number Diff line number Diff line change 1
1
export { ToastComponent } from './toast/toast.component' ;
2
2
export { ToastBodyComponent } from './toast-body/toast-body.component' ;
3
3
export { ToastHeaderComponent } from './toast-header/toast-header.component' ;
4
- export { ToasterComponent , TToasterPlacement , ToasterPlacement } from './toaster/toaster.component' ;
4
+ export { ToasterComponent , type TToasterPlacement , ToasterPlacement } from './toaster/toaster.component' ;
5
5
export { ToasterService } from './toaster/toaster.service' ;
6
6
export { ToasterHostDirective } from './toaster/toaster-host.directive' ;
7
7
export { ToastCloseDirective } from './toast-close.directive' ;
Original file line number Diff line number Diff line change 1
- export { IconSetService , IIconSet } from './icon-set.service' ;
1
+ export { IconSetService , type IIconSet } from './icon-set.service' ;
2
2
export { IconSetModule } from './icon-set.module' ;
Original file line number Diff line number Diff line change 4
4
export { IconDirective } from './lib/icon/icon.directive' ;
5
5
export { IconComponent } from './lib/icon/icon.component' ;
6
6
export { IconModule } from './lib/icon/icon.module' ;
7
- export { IconSetService , IIconSet } from './lib/icon-set/icon-set.service' ;
7
+ export { IconSetService , type IIconSet } from './lib/icon-set/icon-set.service' ;
8
8
export { IconSetModule } from './lib/icon-set/icon-set.module' ;
You can’t perform that action at this time.
0 commit comments