@ncim/sdk 0.1.0
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/README.md +7 -0
- package/fesm2022/ncim-sdk-core.mjs +6 -0
- package/fesm2022/ncim-sdk-core.mjs.map +1 -0
- package/fesm2022/ncim-sdk-features.mjs +6 -0
- package/fesm2022/ncim-sdk-features.mjs.map +1 -0
- package/fesm2022/ncim-sdk-state.mjs +6 -0
- package/fesm2022/ncim-sdk-state.mjs.map +1 -0
- package/fesm2022/ncim-sdk-ui.mjs +6 -0
- package/fesm2022/ncim-sdk-ui.mjs.map +1 -0
- package/fesm2022/ncim-sdk.mjs +24 -0
- package/fesm2022/ncim-sdk.mjs.map +1 -0
- package/package.json +75 -0
- package/types/ncim-sdk-core.d.ts +1 -0
- package/types/ncim-sdk-features.d.ts +1 -0
- package/types/ncim-sdk-state.d.ts +1 -0
- package/types/ncim-sdk-ui.d.ts +1 -0
- package/types/ncim-sdk.d.ts +8 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ncim-sdk-core.mjs","sources":["../../../../libs/ncim-sdk/core/ncim-sdk-core.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ncim-sdk-features.mjs","sources":["../../../../libs/ncim-sdk/features/ncim-sdk-features.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ncim-sdk-state.mjs","sources":["../../../../libs/ncim-sdk/state/ncim-sdk-state.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ncim-sdk-ui.mjs","sources":["../../../../libs/ncim-sdk/ui/ncim-sdk-ui.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as core from '@libs/core';
|
|
2
|
+
export { core as NcimCore };
|
|
3
|
+
import * as uiComponents from '@libs/ui-components';
|
|
4
|
+
export { uiComponents as NcimUI };
|
|
5
|
+
import * as sharedState from '@libs/shared-state';
|
|
6
|
+
export { sharedState as NcimState };
|
|
7
|
+
import * as features from '@libs/features';
|
|
8
|
+
export { features as NcimFeatures };
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @ncim/sdk
|
|
12
|
+
*
|
|
13
|
+
* Wraps and re-exports all four internal ncim libraries as namespaced exports.
|
|
14
|
+
* Import from the namespace that corresponds to the lib you need:
|
|
15
|
+
*
|
|
16
|
+
* import { NcimCore, NcimUI, NcimState, NcimFeatures } from '@ncim/sdk';
|
|
17
|
+
* const { AuthService } = NcimCore;
|
|
18
|
+
* const { NcimButton } = NcimUI;
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
//# sourceMappingURL=ncim-sdk.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ncim-sdk.mjs","sources":["../../../../libs/ncim-sdk/src/index.ts","../../../../libs/ncim-sdk/src/ncim-sdk.ts"],"sourcesContent":["/**\n * @ncim/sdk\n *\n * Wraps and re-exports all four internal ncim libraries as namespaced exports.\n * Import from the namespace that corresponds to the lib you need:\n *\n * import { NcimCore, NcimUI, NcimState, NcimFeatures } from '@ncim/sdk';\n * const { AuthService } = NcimCore;\n * const { NcimButton } = NcimUI;\n */\nexport * as NcimCore from '@libs/core';\nexport * as NcimUI from '@libs/ui-components';\nexport * as NcimState from '@libs/shared-state';\nexport * as NcimFeatures from '@libs/features';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;AAAA;;;;;;;;;AASG;;ACTH;;AAEG"}
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ncim/sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "ncim Compliance Dashboard — publishable SDK wrapping core, ui-components, shared-state, and features libraries",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"ncim",
|
|
8
|
+
"compliance",
|
|
9
|
+
"dashboard",
|
|
10
|
+
"rtl",
|
|
11
|
+
"arabic"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"sideEffects": false,
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"@angular/common": "^21.1.0",
|
|
17
|
+
"@angular/compiler": "^21.1.0",
|
|
18
|
+
"@angular/core": "^21.1.0",
|
|
19
|
+
"@angular/forms": "^21.1.0",
|
|
20
|
+
"@angular/platform-browser": "^21.1.0",
|
|
21
|
+
"@angular/router": "^21.1.0",
|
|
22
|
+
"@ngrx/effects": "^21.0.0",
|
|
23
|
+
"@ngrx/entity": "^21.0.0",
|
|
24
|
+
"@ngrx/store": "^21.0.0",
|
|
25
|
+
"@ngx-translate/core": "^17.0.0",
|
|
26
|
+
"@primeuix/themes": "^2.0.0",
|
|
27
|
+
"echarts": "^6.0.0",
|
|
28
|
+
"leaflet": "^1.9.0",
|
|
29
|
+
"ngx-echarts": "^21.0.0",
|
|
30
|
+
"primeng": "^21.1.0",
|
|
31
|
+
"rxjs": "^7.8.0"
|
|
32
|
+
},
|
|
33
|
+
"peerDependenciesMeta": {
|
|
34
|
+
"echarts": {
|
|
35
|
+
"optional": true
|
|
36
|
+
},
|
|
37
|
+
"leaflet": {
|
|
38
|
+
"optional": true
|
|
39
|
+
},
|
|
40
|
+
"ngx-echarts": {
|
|
41
|
+
"optional": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"tslib": "^2.3.0"
|
|
46
|
+
},
|
|
47
|
+
"module": "fesm2022/ncim-sdk.mjs",
|
|
48
|
+
"typings": "types/ncim-sdk.d.ts",
|
|
49
|
+
"exports": {
|
|
50
|
+
"./package.json": {
|
|
51
|
+
"default": "./package.json"
|
|
52
|
+
},
|
|
53
|
+
".": {
|
|
54
|
+
"types": "./types/ncim-sdk.d.ts",
|
|
55
|
+
"default": "./fesm2022/ncim-sdk.mjs"
|
|
56
|
+
},
|
|
57
|
+
"./core": {
|
|
58
|
+
"types": "./types/ncim-sdk-core.d.ts",
|
|
59
|
+
"default": "./fesm2022/ncim-sdk-core.mjs"
|
|
60
|
+
},
|
|
61
|
+
"./features": {
|
|
62
|
+
"types": "./types/ncim-sdk-features.d.ts",
|
|
63
|
+
"default": "./fesm2022/ncim-sdk-features.mjs"
|
|
64
|
+
},
|
|
65
|
+
"./state": {
|
|
66
|
+
"types": "./types/ncim-sdk-state.d.ts",
|
|
67
|
+
"default": "./fesm2022/ncim-sdk-state.mjs"
|
|
68
|
+
},
|
|
69
|
+
"./ui": {
|
|
70
|
+
"types": "./types/ncim-sdk-ui.d.ts",
|
|
71
|
+
"default": "./fesm2022/ncim-sdk-ui.mjs"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"type": "module"
|
|
75
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@libs/core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@libs/features';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@libs/shared-state';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@libs/ui-components';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as core from '@libs/core';
|
|
2
|
+
export { core as NcimCore };
|
|
3
|
+
import * as uiComponents from '@libs/ui-components';
|
|
4
|
+
export { uiComponents as NcimUI };
|
|
5
|
+
import * as sharedState from '@libs/shared-state';
|
|
6
|
+
export { sharedState as NcimState };
|
|
7
|
+
import * as features from '@libs/features';
|
|
8
|
+
export { features as NcimFeatures };
|