@indigina/ui-kit 1.1.112 → 1.1.113

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.
@@ -42,7 +42,7 @@ export declare class KitButtonComponent {
42
42
  /**
43
43
  * An action which is emitted as soon as user clicked the button
44
44
  */
45
- clicked: EventEmitter<void>;
45
+ clicked: EventEmitter<MouseEvent>;
46
46
  readonly KitSvgIconType: typeof KitSvgIconType;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<KitButtonComponent, never>;
48
48
  static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
@@ -1,4 +1,4 @@
1
- import { InputSignal } from '@angular/core';
1
+ import { InputSignal, TemplateRef } from '@angular/core';
2
2
  import { KitShipmentCardActionItem, KitShipmentCardData } from './kit-shipment-card.model';
3
3
  import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
4
4
  import { KitButtonKind, KitButtonType } from '../kit-button/kit-button.const';
@@ -6,6 +6,7 @@ import * as i0 from "@angular/core";
6
6
  export declare class KitShipmentCard {
7
7
  readonly data: InputSignal<KitShipmentCardData>;
8
8
  readonly selected: InputSignal<boolean>;
9
+ readonly headLabel: InputSignal<TemplateRef<unknown> | undefined>;
9
10
  readonly kitSvgIcon: typeof KitSvgIcon;
10
11
  readonly kitButtonType: typeof KitButtonType;
11
12
  readonly kitButtonKind: typeof KitButtonKind;
@@ -14,8 +15,8 @@ export declare class KitShipmentCard {
14
15
  get shipmentModeIcon(): KitSvgIcon.AIR | KitSvgIcon.SHIP | KitSvgIcon.LOGISTICS;
15
16
  get timelineItems(): KitShipmentCardActionItem[];
16
17
  get containerItems(): KitShipmentCardActionItem[];
17
- showContainers(): void;
18
- showTimeline(): void;
18
+ showContainers(event: MouseEvent): void;
19
+ showTimeline(event: MouseEvent): void;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<KitShipmentCard, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<KitShipmentCard, "kit-shipment-card", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitShipmentCard, "kit-shipment-card", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "headLabel": { "alias": "headLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
22
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.112",
10
+ "version": "1.1.113",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^19.1.4",
13
13
  "@angular/core": "^19.1.4"
@@ -1,5 +1,5 @@
1
1
  $media-breakpoint-l0: 768px;
2
2
  $media-breakpoint-l1: 1080px;
3
- $media-breakpoint-l2: 1366px;
3
+ $media-breakpoint-l2: 1512px;
4
4
  $media-breakpoint-l3: 2000px;
5
5
  $media-breakpoint-l4: 2366px;