@ship-ui/core 0.16.10 → 0.16.12

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ship-ui/core",
3
3
  "license": "MIT",
4
- "version": "0.16.10",
4
+ "version": "0.16.12",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20",
7
7
  "@angular/core": ">=20"
@@ -59,7 +59,7 @@
59
59
  "assets": [
60
60
  "./assets/**/*"
61
61
  ],
62
- "types": "./index.d.ts",
62
+ "types": "./types/ship-ui-core.d.ts",
63
63
  "default": "./fesm2022/ship-ui-core.mjs"
64
64
  },
65
65
  "./package.json": {
@@ -68,5 +68,5 @@
68
68
  },
69
69
  "sideEffects": false,
70
70
  "module": "fesm2022/ship-ui-core.mjs",
71
- "typings": "index.d.ts"
71
+ "typings": "types/ship-ui-core.d.ts"
72
72
  }
@@ -198,7 +198,7 @@ declare class ShipBlueprint implements AfterViewInit, OnDestroy {
198
198
  ngOnDestroy(): void;
199
199
  onMouseUp(event: MouseEvent): void;
200
200
  onClick(event: MouseEvent): void;
201
- onEscape(event: KeyboardEvent): void;
201
+ onEscape(): void;
202
202
  onMouseMove(event: MouseEvent): void;
203
203
  onTouchMove(event: TouchEvent): void;
204
204
  onDocumentTouchEnd(event: TouchEvent): void;
@@ -829,7 +829,7 @@ type MaskingFunction = (cleanValue: string) => string | null;
829
829
  declare class ShipInputMask {
830
830
  #private;
831
831
  shInputMask: _angular_core.InputSignal<string | MaskingFunction>;
832
- onInput(event: InputEvent): void;
832
+ onInput(event: Event): void;
833
833
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShipInputMask, never>;
834
834
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShipInputMask, "[shInputMask]", never, { "shInputMask": { "alias": "shInputMask"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
835
835
  }