ichec-angular-core 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +0,0 @@
1
- import { LeftNavService } from '../../services/left-nav.service';
2
- import * as i0 from "@angular/core";
3
- export declare class LeftNavComponent {
4
- private leftNavService;
5
- constructor(leftNavService: LeftNavService);
6
- getOptions(): import("ichec-angular-core").NavOption[];
7
- static ɵfac: i0.ɵɵFactoryDeclaration<LeftNavComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<LeftNavComponent, "app-left-nav", never, {}, {}, never, never, true, never>;
9
- }
@@ -1,16 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { UserService } from '../../services/user.service';
3
- import { LeftNavService } from '../../services/left-nav.service';
4
- import { IPortalMember } from '../../models/core';
5
- import * as i0 from "@angular/core";
6
- export declare class TopBarComponent implements OnInit {
7
- private userService;
8
- private leftNavService;
9
- user?: IPortalMember | null;
10
- title: string;
11
- constructor(userService: UserService, leftNavService: LeftNavService);
12
- ngOnInit(): void;
13
- onLogout(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<TopBarComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TopBarComponent, "app-top-bar", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
16
- }
package/public-api.d.ts DELETED
@@ -1,23 +0,0 @@
1
- import { Provider } from '@angular/core';
2
- export * from './lib/models/core';
3
- export * from './lib/models/left-nav-options';
4
- export * from './lib/services/rest.service';
5
- export * from './lib/services/user.service';
6
- export * from './lib/services/group.service';
7
- export * from './lib/services/organization.service';
8
- export * from './lib/services/left-nav.service';
9
- export * from './lib/views/top-bar/top-bar.component';
10
- export * from './lib/views/left-nav/left-nav.component';
11
- export * from './lib/views/landing/landing.component';
12
- export * from './lib/views/base/detail-view/detail-view.component';
13
- export * from './lib/views/base/edit-view/edit-view.component';
14
- export * from './lib/views/base/list-view/list-view.component';
15
- export * from './lib/views/api/user/detail/user-detail.component';
16
- export * from './lib/views/api/user/edit/user-edit.component';
17
- export * from './lib/views/api/user/list/user.component';
18
- export * from './lib/views/api/group/detail/group-detail.component';
19
- export * from './lib/views/api/group/list/group.component';
20
- export * from './lib/views/api/organization/list/organization.component';
21
- export * from './lib/views/api/organization/detail/organization-detail.component';
22
- export declare function provideUserService(endpoint_url: string): Provider;
23
- export declare function provideGroupService(endpoint_url: string): Provider;