@hamak/ui-shell-api 0.4.19 → 0.6.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/dist/es2015/index.js +4 -11
- package/dist/index.d.ts +3 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -11
- package/package.json +23 -19
package/dist/es2015/index.js
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Public API surface for the UI Shell framework
|
|
2
|
+
* @hamak/ui-shell-api
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* Import implementations from @hamak/ui-shell-impl
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell/api
|
|
7
5
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export * from './types';
|
|
11
|
-
// Export all API interfaces
|
|
12
|
-
export * from './api';
|
|
13
|
-
// Export service tokens
|
|
14
|
-
export * from './tokens';
|
|
6
|
+
console.warn('[@hamak/ui-shell-api] This package is deprecated. Please migrate to @hamak/ui-shell/api');
|
|
7
|
+
export * from '@hamak/ui-shell/api';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Public API surface for the UI Shell framework
|
|
2
|
+
* @hamak/ui-shell-api
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* Import implementations from @hamak/ui-shell-impl
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell/api
|
|
7
5
|
*/
|
|
8
|
-
export
|
|
9
|
-
export * from './types';
|
|
10
|
-
export * from './api';
|
|
11
|
-
export * from './tokens';
|
|
6
|
+
export * from '@hamak/ui-shell/api';
|
|
12
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,cAAc,qBAAqB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Public API surface for the UI Shell framework
|
|
2
|
+
* @hamak/ui-shell-api
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* Import implementations from @hamak/ui-shell-impl
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell/api
|
|
7
5
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
export * from './types';
|
|
11
|
-
// Export all API interfaces
|
|
12
|
-
export * from './api';
|
|
13
|
-
// Export service tokens
|
|
14
|
-
export * from './tokens';
|
|
6
|
+
console.warn('[@hamak/ui-shell-api] This package is deprecated. Please migrate to @hamak/ui-shell/api');
|
|
7
|
+
export * from '@hamak/ui-shell/api';
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/ui-shell-api",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "[DEPRECATED] Use @hamak/ui-shell/api instead",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
10
15
|
"files": [
|
|
11
16
|
"dist"
|
|
12
17
|
],
|
|
@@ -19,22 +24,21 @@
|
|
|
19
24
|
"access": "public"
|
|
20
25
|
},
|
|
21
26
|
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.
|
|
27
|
+
"build": "tsc -p tsconfig.lib.json",
|
|
23
28
|
"clean": "rm -rf dist"
|
|
24
29
|
},
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"default": "./dist/es2015/index.js"
|
|
35
|
-
}
|
|
30
|
+
"keywords": [
|
|
31
|
+
"ui-shell",
|
|
32
|
+
"api",
|
|
33
|
+
"deprecated"
|
|
34
|
+
],
|
|
35
|
+
"author": "",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@hamak/ui-shell": "*"
|
|
36
39
|
},
|
|
40
|
+
"deprecated": "Use @hamak/ui-shell/api instead",
|
|
37
41
|
"devDependencies": {
|
|
38
|
-
"typescript": "
|
|
42
|
+
"typescript": "^5.9.3"
|
|
39
43
|
}
|
|
40
44
|
}
|