@tekus/kiosks-design-system 3.12.0 → 3.14.0

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,13 +1,18 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { TaxInfo } from '../../models';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class TkKioskCardResumeCheckoutComponent {
4
5
  subTotal: string;
5
6
  total: string;
6
7
  couponValue: string;
7
8
  disabledCoupon: boolean;
8
- handleCoupon: EventEmitter<any>;
9
- handleEditCoupon: EventEmitter<any>;
9
+ set taxes(value: TaxInfo[] | null | undefined);
10
+ get taxes(): TaxInfo[];
11
+ private taxesInfo;
12
+ handleCoupon: EventEmitter<void>;
13
+ handleEditCoupon: EventEmitter<void>;
14
+ get totalTaxesValue(): number;
10
15
  handleCouponEvent(): void;
11
16
  static ɵfac: i0.ɵɵFactoryDeclaration<TkKioskCardResumeCheckoutComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskCardResumeCheckoutComponent, "tk-kiosk-card-resume-checkout", never, { "subTotal": { "alias": "subTotal"; "required": false; }; "total": { "alias": "total"; "required": false; }; "couponValue": { "alias": "couponValue"; "required": false; }; "disabledCoupon": { "alias": "disabledCoupon"; "required": false; }; }, { "handleCoupon": "handleCoupon"; "handleEditCoupon": "handleEditCoupon"; }, never, never, true, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskCardResumeCheckoutComponent, "tk-kiosk-card-resume-checkout", never, { "subTotal": { "alias": "subTotal"; "required": false; }; "total": { "alias": "total"; "required": false; }; "couponValue": { "alias": "couponValue"; "required": false; }; "disabledCoupon": { "alias": "disabledCoupon"; "required": false; }; "taxes": { "alias": "taxes"; "required": false; }; }, { "handleCoupon": "handleCoupon"; "handleEditCoupon": "handleEditCoupon"; }, never, never, true, never>;
13
18
  }
@@ -6,7 +6,8 @@ export declare class TkKioskTypographyComponent implements OnInit {
6
6
  size: string;
7
7
  weight: string;
8
8
  lineBreak: boolean;
9
+ preLine: boolean;
9
10
  ngOnInit(): void;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<TkKioskTypographyComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskTypographyComponent, "tk-kiosk-typography", never, { "type": { "alias": "type"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; "lineBreak": { "alias": "lineBreak"; "required": false; }; }, {}, never, ["*"], true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskTypographyComponent, "tk-kiosk-typography", never, { "type": { "alias": "type"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; "lineBreak": { "alias": "lineBreak"; "required": false; }; "preLine": { "alias": "preLine"; "required": false; }; }, {}, never, ["*"], true, never>;
12
13
  }
@@ -6,3 +6,4 @@ export * from './validation-type.enum';
6
6
  export * from './icon-custom.model';
7
7
  export * from './footerActions.model';
8
8
  export * from './categoryProductAction';
9
+ export * from './tax-info.model';
@@ -0,0 +1,5 @@
1
+ export interface TaxInfo {
2
+ name: string;
3
+ percentage: number;
4
+ value: number;
5
+ }
@@ -2,7 +2,7 @@ import { PipeTransform } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class CustomCurrencyPipe implements PipeTransform {
4
4
  constructor();
5
- transform(price: any, decimal?: boolean): any;
5
+ transform(price: any, decimal?: boolean, showPositiveSign?: boolean): any;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomCurrencyPipe, never>;
7
7
  static ɵpipe: i0.ɵɵPipeDeclaration<CustomCurrencyPipe, "customCurrency", true>;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekus/kiosks-design-system",
3
- "version": "3.12.0",
3
+ "version": "3.14.0",
4
4
  "license": "UNLICENSED",
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^19.2.0",