@hamak/ui-shell-api 0.4.19 → 0.5.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.
@@ -1,14 +1,7 @@
1
1
  /**
2
- * UI Shell API
3
- * Public API surface for the UI Shell framework
2
+ * @hamak/ui-shell-api
4
3
  *
5
- * This package contains only type definitions and interfaces.
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 const version = '0.2.2';
9
- // Export all types
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
- * UI Shell API
3
- * Public API surface for the UI Shell framework
2
+ * @hamak/ui-shell-api
4
3
  *
5
- * This package contains only type definitions and interfaces.
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 declare const version = "0.2.2";
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
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,OAAO,UAAU,CAAC;AAG/B,cAAc,SAAS,CAAC;AAGxB,cAAc,OAAO,CAAC;AAGtB,cAAc,UAAU,CAAC"}
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
- * UI Shell API
3
- * Public API surface for the UI Shell framework
2
+ * @hamak/ui-shell-api
4
3
  *
5
- * This package contains only type definitions and interfaces.
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 const version = '0.2.2';
9
- // Export all types
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.19",
4
- "private": false,
3
+ "version": "0.5.1",
4
+ "description": "[DEPRECATED] Use @hamak/ui-shell/api instead",
5
5
  "type": "module",
6
- "description": "UI Shell API - Core UI shell interfaces",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "sideEffects": false,
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.json && tsc -p tsconfig.es2015.json",
27
+ "build": "tsc -p tsconfig.lib.json",
23
28
  "clean": "rm -rf dist"
24
29
  },
25
- "exports": {
26
- ".": {
27
- "types": "./dist/index.d.ts",
28
- "import": "./dist/index.js",
29
- "default": "./dist/index.js",
30
- "legacy": "./dist/es2015/index.js"
31
- },
32
- "./es2015": {
33
- "import": "./dist/es2015/index.js",
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": "~5.4.0"
42
+ "typescript": "^5.9.3"
39
43
  }
40
44
  }