@indigina/ui-kit 1.1.190 → 1.1.191

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,10 +1,10 @@
1
- import { EventEmitter, Signal } from '@angular/core';
1
+ import { EventEmitter, OnDestroy, OnInit, Signal } from '@angular/core';
2
2
  import { KitTabComponent } from './kit-tab/kit-tab.component';
3
3
  import { KitTabsSize, KitTabsType } from './kit-tabs.const';
4
4
  import { KitTabsSelectEvent } from './kit-tabs.model';
5
5
  import { SelectEvent } from '@progress/kendo-angular-layout';
6
6
  import * as i0 from "@angular/core";
7
- export declare class KitTabsComponent {
7
+ export declare class KitTabsComponent implements OnInit, OnDestroy {
8
8
  /**
9
9
  * Defines the type of tabs
10
10
  */
@@ -22,6 +22,9 @@ export declare class KitTabsComponent {
22
22
  * Defines the reference to the tabs content
23
23
  */
24
24
  readonly tabs: Signal<readonly KitTabComponent[]>;
25
+ ngOnInit(): void;
26
+ ngOnDestroy(): void;
27
+ interceptInputKeys: (event: KeyboardEvent) => void;
25
28
  onTabSelect(event: SelectEvent): void;
26
29
  static ɵfac: i0.ɵɵFactoryDeclaration<KitTabsComponent, never>;
27
30
  static ɵcmp: i0.ɵɵComponentDeclaration<KitTabsComponent, "kit-tabs", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; }, { "tabSelected": "tabSelected"; }, ["tabs"], never, false, never>;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.190",
10
+ "version": "1.1.191",
11
11
  "peerDependencies": {
12
12
  "@angular/common": ">=19.1.4 <20.0.0",
13
13
  "@angular/core": ">=19.1.4 <20.0.0"