meemup-library 1.0.53 → 1.0.54
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,4 +1,5 @@
|
|
|
1
1
|
import EnumKitchenScreenSortOrders from "../enums/EnumKitchenScreenSortOrders";
|
|
2
|
+
import EnumOrderState from "../enums/EnumOrderState";
|
|
2
3
|
interface IKitchenScreenSetting {
|
|
3
4
|
row: number;
|
|
4
5
|
column: number;
|
|
@@ -22,6 +23,7 @@ interface IKitchenScreenSetting {
|
|
|
22
23
|
customerColor: string;
|
|
23
24
|
headerFontSize: number;
|
|
24
25
|
orderNumberColor: string;
|
|
26
|
+
showOrdersViaStatus: EnumOrderState[];
|
|
25
27
|
}
|
|
26
28
|
export default IKitchenScreenSetting;
|
|
27
29
|
export declare const initKitchenScreenSetting: IKitchenScreenSetting;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import EnumKitchenScreenSortOrders from "../enums/EnumKitchenScreenSortOrders";
|
|
2
|
+
import EnumOrderState from "../enums/EnumOrderState";
|
|
2
3
|
export const initKitchenScreenSetting = {
|
|
3
4
|
row: 1,
|
|
4
5
|
column: 4,
|
|
@@ -22,4 +23,5 @@ export const initKitchenScreenSetting = {
|
|
|
22
23
|
headerFontSize: 24,
|
|
23
24
|
orderNumberColor: "#000",
|
|
24
25
|
flashWhenExpire: true,
|
|
26
|
+
showOrdersViaStatus: [EnumOrderState.new, EnumOrderState.accepted, EnumOrderState.kitchen]
|
|
25
27
|
};
|