@hamak/ui-shell-impl 0.2.0 → 0.2.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.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* This package provides default implementations that can be used directly
|
|
6
6
|
* or extended for custom behavior.
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.1
|
|
8
|
+
export declare const version = "0.2.1";
|
|
9
9
|
export * from './core';
|
|
10
10
|
export * from './providers';
|
|
11
11
|
export * from './utils';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* This package provides default implementations that can be used directly
|
|
6
6
|
* or extended for custom behavior.
|
|
7
7
|
*/
|
|
8
|
-
export const version = '0.1
|
|
8
|
+
export const version = '0.2.1';
|
|
9
9
|
// Export core implementations
|
|
10
10
|
export * from './core';
|
|
11
11
|
// Export providers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hamak/ui-shell-impl",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "UI Shell Implementation - Core UI shell functionality",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@hamak/ui-shell-api": "0.1
|
|
30
|
-
"@hamak/ui-shell-spi": "0.1
|
|
31
|
-
"@hamak/microkernel-api": "0.1
|
|
32
|
-
"@hamak/microkernel-spi": "0.1
|
|
29
|
+
"@hamak/ui-shell-api": "0.2.1",
|
|
30
|
+
"@hamak/ui-shell-spi": "0.2.1",
|
|
31
|
+
"@hamak/microkernel-api": "0.2.1",
|
|
32
|
+
"@hamak/microkernel-spi": "0.2.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "~5.4.0"
|