@hamak/ui-shell-impl 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 +1 @@
1
- {"version":3,"file":"DefaultThemeManager.d.ts","sourceRoot":"","sources":["../../src/core/DefaultThemeManager.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,KAAK,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAI5E,qBAAa,mBAAoB,YAAW,aAAa;IACvD,OAAO,CAAC,YAAY,CAAuB;IAC3C,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,SAAS,CAA8C;IAC/D,OAAO,CAAC,eAAe,CAAmB;IAC1C,OAAO,CAAC,aAAa,CAAiB;gBAGpC,MAAM,yBAAkC,EACxC,eAAe,EAAE,gBAAgB,EACjC,aAAa,EAAE,cAAc;IAU/B,QAAQ,IAAI,SAAS;IAIrB,gBAAgB,IAAI,OAAO,GAAG,MAAM;IAOpC,QAAQ,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI;IAS/B,WAAW,IAAI,IAAI;IAKnB,SAAS,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,GAAG,MAAM,IAAI;IAK3D,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,IAAI;IAKxD,OAAO,IAAI,IAAI;IAKf,OAAO,CAAC,wBAAwB;IAShC,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,eAAe;CAGxB"}
1
+ {"version":3,"file":"DefaultThemeManager.d.ts","sourceRoot":"","sources":["../../src/core/DefaultThemeManager.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,KAAK,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAI5E,qBAAa,mBAAoB,YAAW,aAAa;IACvD,OAAO,CAAC,YAAY,CAAuB;IAC3C,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,SAAS,CAA8C;IAC/D,OAAO,CAAC,eAAe,CAAmB;IAC1C,OAAO,CAAC,aAAa,CAAiB;gBAGpC,MAAM,EAAE,WAAW,YAAqB,EACxC,eAAe,EAAE,gBAAgB,EACjC,aAAa,EAAE,cAAc;IAU/B,QAAQ,IAAI,SAAS;IAIrB,gBAAgB,IAAI,OAAO,GAAG,MAAM;IAOpC,QAAQ,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI;IAS/B,WAAW,IAAI,IAAI;IAKnB,SAAS,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,GAAG,MAAM,IAAI;IAK3D,eAAe,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,IAAI;IAKxD,OAAO,IAAI,IAAI;IAKf,OAAO,CAAC,wBAAwB;IAShC,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,eAAe;CAGxB"}
@@ -1,39 +1,7 @@
1
1
  /**
2
- * UI Shell Implementation
3
- * Concrete implementations of UI Shell interfaces
2
+ * @hamak/ui-shell-impl
4
3
  *
5
- * This package provides default implementations that can be used directly
6
- * or extended for custom behavior.
4
+ * @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
7
5
  */
8
- export const version = '0.2.2';
9
- // Export core implementations
10
- export * from './core';
11
- // Export providers
12
- export * from './providers';
13
- // Export utilities
14
- export * from './utils';
15
- // Export plugin integration
16
- export * from './plugin';
17
- // Factory functions
18
- import { DefaultShell } from './core/DefaultShell';
19
- import { DefaultLayoutManager } from './core/DefaultLayoutManager';
20
- export function createShell(config) {
21
- return new DefaultShell(config);
22
- }
23
- export function createLayoutManager() {
24
- return new DefaultLayoutManager();
25
- }
26
- // Singleton pattern support
27
- let globalShell = null;
28
- export function getShell(config) {
29
- if (!globalShell) {
30
- globalShell = createShell(config);
31
- }
32
- return globalShell;
33
- }
34
- export function resetShell() {
35
- if (globalShell) {
36
- globalShell.destroy();
37
- globalShell = null;
38
- }
39
- }
6
+ console.warn('[@hamak/ui-shell-impl] This package is deprecated. Please migrate to @hamak/ui-shell');
7
+ export * from '@hamak/ui-shell';
package/dist/index.d.ts CHANGED
@@ -1,20 +1,7 @@
1
1
  /**
2
- * UI Shell Implementation
3
- * Concrete implementations of UI Shell interfaces
2
+ * @hamak/ui-shell-impl
4
3
  *
5
- * This package provides default implementations that can be used directly
6
- * or extended for custom behavior.
4
+ * @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
7
5
  */
8
- export declare const version = "0.2.2";
9
- export * from './core';
10
- export * from './providers';
11
- export * from './utils';
12
- export * from './plugin';
13
- import { DefaultShell } from './core/DefaultShell';
14
- import { DefaultLayoutManager } from './core/DefaultLayoutManager';
15
- import type { ShellConfig } from '@hamak/ui-shell-api';
16
- export declare function createShell(config?: ShellConfig): DefaultShell;
17
- export declare function createLayoutManager(): DefaultLayoutManager;
18
- export declare function getShell(config?: ShellConfig): DefaultShell;
19
- export declare function resetShell(): void;
6
+ export * from '@hamak/ui-shell';
20
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,QAAQ,CAAC;AAGvB,cAAc,aAAa,CAAC;AAG5B,cAAc,SAAS,CAAC;AAGxB,cAAc,UAAU,CAAC;AAGzB,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAgB,WAAW,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,YAAY,CAE9D;AAED,wBAAgB,mBAAmB,IAAI,oBAAoB,CAE1D;AAKD,wBAAgB,QAAQ,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,YAAY,CAK3D;AAED,wBAAgB,UAAU,IAAI,IAAI,CAKjC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,cAAc,iBAAiB,CAAC"}
package/dist/index.js CHANGED
@@ -1,39 +1,7 @@
1
1
  /**
2
- * UI Shell Implementation
3
- * Concrete implementations of UI Shell interfaces
2
+ * @hamak/ui-shell-impl
4
3
  *
5
- * This package provides default implementations that can be used directly
6
- * or extended for custom behavior.
4
+ * @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
7
5
  */
8
- export const version = '0.2.2';
9
- // Export core implementations
10
- export * from './core';
11
- // Export providers
12
- export * from './providers';
13
- // Export utilities
14
- export * from './utils';
15
- // Export plugin integration
16
- export * from './plugin';
17
- // Factory functions
18
- import { DefaultShell } from './core/DefaultShell';
19
- import { DefaultLayoutManager } from './core/DefaultLayoutManager';
20
- export function createShell(config) {
21
- return new DefaultShell(config);
22
- }
23
- export function createLayoutManager() {
24
- return new DefaultLayoutManager();
25
- }
26
- // Singleton pattern support
27
- let globalShell = null;
28
- export function getShell(config) {
29
- if (!globalShell) {
30
- globalShell = createShell(config);
31
- }
32
- return globalShell;
33
- }
34
- export function resetShell() {
35
- if (globalShell) {
36
- globalShell.destroy();
37
- globalShell = null;
38
- }
39
- }
6
+ console.warn('[@hamak/ui-shell-impl] This package is deprecated. Please migrate to @hamak/ui-shell');
7
+ export * from '@hamak/ui-shell';
package/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@hamak/ui-shell-impl",
3
- "version": "0.4.19",
4
- "private": false,
3
+ "version": "0.5.1",
4
+ "description": "[DEPRECATED] Use @hamak/ui-shell instead",
5
5
  "type": "module",
6
- "description": "UI Shell Implementation - Core UI shell functionality",
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,28 +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
- }
36
- },
30
+ "keywords": [
31
+ "ui-shell",
32
+ "implementation",
33
+ "deprecated"
34
+ ],
35
+ "author": "",
36
+ "license": "MIT",
37
37
  "dependencies": {
38
- "@hamak/ui-shell-api": "*",
39
- "@hamak/ui-shell-spi": "*",
40
- "@hamak/microkernel-api": "*",
41
- "@hamak/microkernel-spi": "*"
38
+ "@hamak/ui-shell": "*"
42
39
  },
40
+ "deprecated": "Use @hamak/ui-shell instead",
43
41
  "devDependencies": {
44
- "typescript": "~5.4.0"
42
+ "typescript": "^5.9.3"
45
43
  }
46
44
  }