@indigina/ui-kit 1.1.449 → 1.1.450

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
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.449",
10
+ "version": "1.1.450",
11
11
  "peerDependencies": {
12
12
  "@angular/common": ">=21.0.0 <22.0.0",
13
13
  "@angular/core": ">=21.0.0 <22.0.0",
@@ -5235,15 +5235,17 @@ declare class KitGridActionComponent {
5235
5235
  readonly icon: InputSignal<KitSvgIcon>;
5236
5236
  readonly iconType: InputSignal<KitSvgIconType>;
5237
5237
  readonly disabled: InputSignal<boolean>;
5238
+ readonly tooltip: InputSignal<string | undefined>;
5238
5239
  readonly clicked: OutputEmitterRef<void>;
5239
- onClick(): void;
5240
+ readonly kitTooltipPosition: typeof KitTooltipPosition;
5240
5241
  static ɵfac: i0.ɵɵFactoryDeclaration<KitGridActionComponent, never>;
5241
- static ɵcmp: i0.ɵɵComponentDeclaration<KitGridActionComponent, "kit-grid-action", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "iconType": { "alias": "iconType"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
5242
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitGridActionComponent, "kit-grid-action", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "iconType": { "alias": "iconType"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
5242
5243
  }
5243
5244
 
5244
5245
  interface KitGridActionModel<T> {
5245
5246
  icon: KitSvgIcon;
5246
5247
  onClick(data: T): void;
5248
+ tooltip?: string;
5247
5249
  iconType?: KitSvgIconType;
5248
5250
  disabled?(data: T): boolean;
5249
5251
  }