@limetech/limepkg-cpq-order 2.11.0-dev.9 → 2.11.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/dist/classes/item.d.ts +1 -0
- package/dist/components/cpq-tab/cpq-tab.d.ts +1 -0
- package/dist/components/edit-item-dialog/edit-item-dialog.d.ts +1 -0
- package/dist/components/item-form/item-form.d.ts +0 -3
- package/dist/components/item-table/item-table.d.ts +1 -0
- package/dist/components/loader/coc-loader.d.ts +0 -2
- package/dist/components/order-view/order-view.d.ts +1 -0
- package/package.json +1 -1
package/dist/classes/item.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export declare class EditItemDialog implements LimeWebComponent {
|
|
|
31
31
|
get translate(): Translator;
|
|
32
32
|
componentWillLoad(): Promise<void>;
|
|
33
33
|
componentWillRender(): void;
|
|
34
|
+
private handleKeyDown;
|
|
34
35
|
render(): any;
|
|
35
36
|
private renderDialogTitle;
|
|
36
37
|
private handleArticleChange;
|
|
@@ -29,9 +29,6 @@ export declare class ItemForm implements LimeWebComponent {
|
|
|
29
29
|
private itemCopy;
|
|
30
30
|
validate: EventEmitter;
|
|
31
31
|
change: EventEmitter<Item>;
|
|
32
|
-
private percentageDiscountIsUsed;
|
|
33
|
-
private amountPerUnitDiscountIsUsed;
|
|
34
|
-
private totalAmountDiscountIsUsed;
|
|
35
32
|
private schema;
|
|
36
33
|
private discountClass;
|
|
37
34
|
private shouldShowArticleInfo;
|
|
@@ -8,7 +8,6 @@ export declare class Loader implements LimePluginLoader {
|
|
|
8
8
|
get dialogService(): DialogRenderer;
|
|
9
9
|
get eventDispatcher(): EventDispatcher;
|
|
10
10
|
get commandBus(): CommandBus;
|
|
11
|
-
private get webComponentRegistry();
|
|
12
11
|
componentWillLoad(): void;
|
|
13
12
|
componentWillUpdate(): void;
|
|
14
13
|
disconnectedCallback(): void;
|
|
@@ -17,5 +16,4 @@ export declare class Loader implements LimePluginLoader {
|
|
|
17
16
|
private openNewOrderDialog;
|
|
18
17
|
private onDestroyDialog;
|
|
19
18
|
private isEmpty;
|
|
20
|
-
private registerWebComponents;
|
|
21
19
|
}
|