@tekus/kiosks-design-system 2.19.0 → 2.21.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.
- package/esm2022/lib/components/tk-kiosk-btn-count/tk-kiosk-btn-count.component.mjs +3 -3
- package/esm2022/lib/components/tk-kiosk-custome/tk-kiosk-custome.component.mjs +18 -10
- package/esm2022/lib/components/tk-kiosk-keyboard/tk-kiosk-keyboard.component.mjs +1 -3
- package/esm2022/lib/components/tk-kiosk-time-picker/tk-kiosk-time-picker.component.mjs +10 -10
- package/fesm2022/tekus-kiosks-design-system.mjs +26 -21
- package/fesm2022/tekus-kiosks-design-system.mjs.map +1 -1
- package/lib/components/tk-kiosk-custome/tk-kiosk-custome.component.d.ts +3 -6
- package/lib/components/tk-kiosk-time-picker/tk-kiosk-time-picker.component.d.ts +4 -4
- package/package.json +1 -1
|
@@ -3,18 +3,15 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class TkKioskCustomeComponent {
|
|
4
4
|
title: string;
|
|
5
5
|
image: string;
|
|
6
|
-
price:
|
|
6
|
+
price: number;
|
|
7
7
|
selected: boolean;
|
|
8
8
|
typeCounter: 'add' | 'minus' | 'counter' | 'idle';
|
|
9
|
-
isSelectable: boolean;
|
|
10
|
-
/** Set variable when typeCounter = 'counter' */
|
|
11
9
|
quantity: number;
|
|
12
|
-
/** Set variable when typeCounter = 'counter' */
|
|
13
10
|
totalMax: number;
|
|
14
|
-
/** Set variable when typeCounter = 'counter' */
|
|
15
11
|
totalMin: number;
|
|
12
|
+
isSelectable: boolean;
|
|
16
13
|
onChange: EventEmitter<number>;
|
|
17
14
|
onChangeCounter(value: number): void;
|
|
18
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TkKioskCustomeComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskCustomeComponent, "tk-kiosk-custome", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "price": { "alias": "price"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "typeCounter": { "alias": "typeCounter"; "required": false; }; "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskCustomeComponent, "tk-kiosk-custome", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "price": { "alias": "price"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "typeCounter": { "alias": "typeCounter"; "required": false; }; "quantity": { "alias": "quantity"; "required": false; }; "totalMax": { "alias": "totalMax"; "required": false; }; "totalMin": { "alias": "totalMin"; "required": false; }; "isSelectable": { "alias": "isSelectable"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
20
17
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { NzI18nService } from 'ng-zorro-antd/i18n';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TkKioskTimePickerComponent {
|
|
4
|
+
export declare class TkKioskTimePickerComponent implements OnInit {
|
|
5
5
|
private i18n;
|
|
6
6
|
time: Date | null;
|
|
7
7
|
handleTime: EventEmitter<Date>;
|
|
8
|
-
log(time: Date): void;
|
|
9
8
|
constructor(i18n: NzI18nService);
|
|
10
9
|
ngOnInit(): void;
|
|
10
|
+
log(time: Date): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TkKioskTimePickerComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskTimePickerComponent, "tk-kiosk-time-picker", never, {}, { "handleTime": "handleTime"; }, never, never, true, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TkKioskTimePickerComponent, "tk-kiosk-time-picker", never, { "time": { "alias": "time"; "required": false; }; }, { "handleTime": "handleTime"; }, never, never, true, never>;
|
|
13
13
|
}
|