@hamak/ui-shell-api 0.1.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @amk/ui-shell-api
1
+ # @hamak/ui-shell-api
2
2
 
3
3
  Public API contracts and type definitions for the UI Shell framework.
4
4
 
@@ -9,16 +9,16 @@ This package contains only interfaces and type definitions. It has zero dependen
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- npm install @amk/ui-shell-api
12
+ npm install @hamak/ui-shell-api
13
13
  # or
14
- bun add @amk/ui-shell-api
14
+ bun add @hamak/ui-shell-api
15
15
  ```
16
16
 
17
17
  ## Usage
18
18
 
19
19
  ```typescript
20
- import type { IShell, IThemeManager, ThemeMode } from '@amk/ui-shell-api';
21
- import { SHELL_TOKEN, CommonFeatures } from '@amk/ui-shell-api';
20
+ import type { IShell, IThemeManager, ThemeMode } from '@hamak/ui-shell-api';
21
+ import { SHELL_TOKEN, CommonFeatures } from '@hamak/ui-shell-api';
22
22
 
23
23
  // Use types for type safety
24
24
  function configureShell(shell: IShell) {
package/dist/index.d.ts CHANGED
@@ -3,9 +3,9 @@
3
3
  * Public API surface for the UI Shell framework
4
4
  *
5
5
  * This package contains only type definitions and interfaces.
6
- * Import implementations from @amk/ui-shell-impl
6
+ * Import implementations from @hamak/ui-shell-impl
7
7
  */
8
- export declare const version = "0.1.0";
8
+ export declare const version = "0.2.1";
9
9
  export * from './types';
10
10
  export * from './api';
11
11
  export * from './tokens';
package/dist/index.js CHANGED
@@ -3,9 +3,9 @@
3
3
  * Public API surface for the UI Shell framework
4
4
  *
5
5
  * This package contains only type definitions and interfaces.
6
- * Import implementations from @amk/ui-shell-impl
6
+ * Import implementations from @hamak/ui-shell-impl
7
7
  */
8
- export const version = '0.1.0';
8
+ export const version = '0.2.1';
9
9
  // Export all types
10
10
  export * from './types';
11
11
  // Export all API interfaces
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hamak/ui-shell-api",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "UI Shell API - Core UI shell interfaces",
package/src/index.ts CHANGED
@@ -3,10 +3,10 @@
3
3
  * Public API surface for the UI Shell framework
4
4
  *
5
5
  * This package contains only type definitions and interfaces.
6
- * Import implementations from @amk/ui-shell-impl
6
+ * Import implementations from @hamak/ui-shell-impl
7
7
  */
8
8
 
9
- export const version = '0.1.0';
9
+ export const version = '0.2.1';
10
10
 
11
11
  // Export all types
12
12
  export * from './types';