@limetech/limepkg-cpq-order 2.9.1 → 2.10.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.
|
@@ -11,13 +11,13 @@ export declare class ItemTable implements LimeWebComponent {
|
|
|
11
11
|
*/
|
|
12
12
|
context: LimeWebComponentContext;
|
|
13
13
|
items: Item[];
|
|
14
|
+
discount: Number;
|
|
14
15
|
activeRow: Item;
|
|
15
16
|
tableIsReadonly: boolean;
|
|
16
17
|
itemMapping: IconfigItemMapping;
|
|
17
18
|
private limetypes;
|
|
18
|
-
private columns;
|
|
19
19
|
get translate(): Translator;
|
|
20
|
-
componentWillLoad(): Promise<void>;
|
|
21
20
|
render(): any;
|
|
21
|
+
private defineColumns;
|
|
22
22
|
private filterItems;
|
|
23
23
|
}
|
|
@@ -182,6 +182,7 @@ export namespace Components {
|
|
|
182
182
|
* @inherit
|
|
183
183
|
*/
|
|
184
184
|
"context": LimeWebComponentContext;
|
|
185
|
+
"discount": Number;
|
|
185
186
|
"itemMapping": IconfigItemMapping;
|
|
186
187
|
"items": Item[];
|
|
187
188
|
/**
|
|
@@ -646,6 +647,7 @@ declare namespace LocalJSX {
|
|
|
646
647
|
* @inherit
|
|
647
648
|
*/
|
|
648
649
|
"context"?: LimeWebComponentContext;
|
|
650
|
+
"discount"?: Number;
|
|
649
651
|
"itemMapping"?: IconfigItemMapping;
|
|
650
652
|
"items"?: Item[];
|
|
651
653
|
/**
|