Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a9148e9

Browse files
committedJan 21, 2020
fix: add SidebarNavHelper to public-api surface
1 parent 169664c commit a9148e9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎projects/coreui/angular/src/lib/sidebar/app-sidebar-nav.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export abstract class SidebarNavService {
1313
@Injectable()
1414
export class SidebarNavHelper {
1515

16-
itemType(item) {
16+
public itemType(item) {
1717
if (item.divider) {
1818
return 'divider';
1919
} else if (item.title) {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export { INavData } from './app-sidebar-nav';
22
export { AppSidebarComponent } from './app-sidebar.component';
3+
export { SidebarNavHelper } from './app-sidebar-nav.service';
34
export { AppSidebarModule } from './app-sidebar.module';

0 commit comments

Comments
 (0)
Please sign in to comment.