ichec-angular-core 0.0.1
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.
- package/LICENSE +661 -0
- package/README.md +3 -0
- package/fesm2022/ichec-angular-core.mjs +704 -0
- package/fesm2022/ichec-angular-core.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/models/core.d.ts +50 -0
- package/lib/models/left-nav-options.d.ts +8 -0
- package/lib/services/group.service.d.ts +14 -0
- package/lib/services/left-nav.service.d.ts +20 -0
- package/lib/services/organization.service.d.ts +9 -0
- package/lib/services/rest.service.d.ts +29 -0
- package/lib/services/user.service.d.ts +17 -0
- package/lib/views/api/group/detail/group-detail.component.d.ts +12 -0
- package/lib/views/api/group/list/group.component.d.ts +14 -0
- package/lib/views/api/organization/detail/organization-detail.component.d.ts +12 -0
- package/lib/views/api/organization/list/organization.component.d.ts +13 -0
- package/lib/views/api/user/detail/user-detail.component.d.ts +11 -0
- package/lib/views/api/user/edit/user-edit.component.d.ts +12 -0
- package/lib/views/api/user/list/user.component.d.ts +12 -0
- package/lib/views/base/detail-view/detail-view.component.d.ts +23 -0
- package/lib/views/base/edit-view/edit-view.component.d.ts +30 -0
- package/lib/views/base/list-view/list-view.component.d.ts +24 -0
- package/lib/views/landing/landing.component.d.ts +19 -0
- package/lib/views/landing/login-user.d.ts +4 -0
- package/lib/views/left-nav/left-nav.component.d.ts +9 -0
- package/lib/views/top-bar/top-bar.component.d.ts +16 -0
- package/package.json +23 -0
- package/public-api.d.ts +23 -0
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ichec-angular-core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^19.2.0",
|
|
6
|
+
"@angular/core": "^19.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"module": "fesm2022/ichec-angular-core.mjs",
|
|
13
|
+
"typings": "index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": {
|
|
16
|
+
"default": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"default": "./fesm2022/ichec-angular-core.mjs"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
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;
|