@hamak/ui-shell-impl 0.5.0 → 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/core/DefaultThemeManager.d.ts.map +1 -1
- package/dist/es2015/index.js +4 -36
- package/dist/index.d.ts +3 -16
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -36
- package/package.json +22 -24
|
@@ -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,
|
|
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"}
|
package/dist/es2015/index.js
CHANGED
|
@@ -1,39 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Concrete implementations of UI Shell interfaces
|
|
2
|
+
* @hamak/ui-shell-impl
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* or extended for custom behavior.
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
|
|
7
5
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
*
|
|
3
|
-
* Concrete implementations of UI Shell interfaces
|
|
2
|
+
* @hamak/ui-shell-impl
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* or extended for custom behavior.
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
|
|
7
5
|
*/
|
|
8
|
-
export
|
|
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
|
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,iBAAiB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,39 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Concrete implementations of UI Shell interfaces
|
|
2
|
+
* @hamak/ui-shell-impl
|
|
4
3
|
*
|
|
5
|
-
* This package
|
|
6
|
-
* or extended for custom behavior.
|
|
4
|
+
* @deprecated This package is deprecated. Please migrate to @hamak/ui-shell
|
|
7
5
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
"
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "[DEPRECATED] Use @hamak/ui-shell 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,28 +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
|
-
"./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
|
|
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": "
|
|
42
|
+
"typescript": "^5.9.3"
|
|
45
43
|
}
|
|
46
44
|
}
|