@colijnit/transaction 12.1.52 → 12.1.53
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/bundles/colijnit-transaction.umd.js +5 -10
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction/transaction.module.js +3 -6
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +2 -3
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +4 -6
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.js +4 -4
- package/fesm2015/colijnit-transaction.js +6 -11
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/quick-send-button/style/_layout.scss +7 -0
- package/lib/component/quick-send-button/style/_material-definition.scss +0 -0
- package/lib/component/quick-send-button/style/_theme.scss +6 -0
- package/lib/component/quick-send-button/style/material.scss +4 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -17786,10 +17786,9 @@
|
|
|
17786
17786
|
];
|
|
17787
17787
|
|
|
17788
17788
|
var TransactionConfirmationHistoryComponent = /** @class */ (function () {
|
|
17789
|
-
function TransactionConfirmationHistoryComponent(iconCacheService, transactionService
|
|
17789
|
+
function TransactionConfirmationHistoryComponent(iconCacheService, transactionService) {
|
|
17790
17790
|
this.iconCacheService = iconCacheService;
|
|
17791
17791
|
this.transactionService = transactionService;
|
|
17792
|
-
this._changeDetector = _changeDetector;
|
|
17793
17792
|
this.icons = Icon;
|
|
17794
17793
|
this.lineSelected = new i0.EventEmitter();
|
|
17795
17794
|
this.getPurchasePortalLine = new getPurchasePortalLine.GetPurchasePortalLine();
|
|
@@ -17858,8 +17857,7 @@
|
|
|
17858
17857
|
];
|
|
17859
17858
|
TransactionConfirmationHistoryComponent.ctorParameters = function () { return [
|
|
17860
17859
|
{ type: IconCacheService },
|
|
17861
|
-
{ type: TransactionService }
|
|
17862
|
-
{ type: i0.ChangeDetectorRef }
|
|
17860
|
+
{ type: TransactionService }
|
|
17863
17861
|
]; };
|
|
17864
17862
|
TransactionConfirmationHistoryComponent.propDecorators = {
|
|
17865
17863
|
transactionLines: [{ type: i0.Input }],
|
|
@@ -17933,7 +17931,6 @@
|
|
|
17933
17931
|
{ type: i0.Component, args: [{
|
|
17934
17932
|
selector: "co-transaction-confirmation-details",
|
|
17935
17933
|
template: "\n <div class=\"confirmation-details-wrapper\">\n <co-form>\n <div class=\"details-header\">\n <span class=\"header-left-text\" [textContent]=\"'ORDER_CONFIRMATIONS' | localize\"></span>\n <co-icon class=\"header-left-text\" [iconData]=\"iconCacheService.getIcon(icons.PlusRound)\"\n (click)=\"addButtonClicked()\"></co-icon>\n <div class=\"details-header-right\">\n <span class=\"header-right-text\" [textContent]=\"'REQUESTED_DELIVERY' | localize\"></span>\n <span class=\"header-right-text-colon\" [textContent]=\"': '\"></span>\n <span class=\"header-right-text\" [textContent]=\"transactionLines.deliveryDate | date:'dd-MM-YYYY'\"></span>\n </div>\n </div>\n <div *ngIf=\"showAddOrder\" class=\"columns-wrapper\">\n <div class=\"details-column\">\n <co-input-text class=\"details-input\"\n [(model)]=\"newDocBatchArray.docAmount\"\n [placeholder]=\"'AMOUNT' | localize\"\n required\n >\n </co-input-text>\n <co-input-date class=\"details-input\"\n [(model)]=\"newDocBatchArray.docDate\"\n >\n </co-input-date>\n <co-input-text class=\"details-input\"\n [(model)]=\"newDocBatchArray.confirmedPrice\"\n [placeholder]=\"'CONFIRMED_PRICE' | localize\"\n >\n </co-input-text>\n </div>\n\n <div class=\"divider-wrapper\">\n <div class=\"divider\"></div>\n </div>\n\n <div class=\"details-column\">\n <co-input-text class=\"details-input\"\n [(model)]=\"newDocBatchArray.reference\"\n [placeholder]=\"'REFERENCE' | localize\">\n </co-input-text>\n\n <co-input-text class=\"details-input\"\n [(model)]=\"newDocBatchArray.deliveryBatch\"\n [placeholder]=\"'DELIVERY_BATCH' | localize\">\n </co-input-text>\n </div>\n </div>\n </co-form>\n\n <div *ngIf=\"showAddOrder\" class=\"save-cancel-wrapper\">\n <co-default-ok-cancel-buttons (okClick)=\"handleOkClick()\"></co-default-ok-cancel-buttons>\n </div>\n </div>\n ",
|
|
17936
|
-
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
17937
17934
|
encapsulation: i0.ViewEncapsulation.None
|
|
17938
17935
|
},] }
|
|
17939
17936
|
];
|
|
@@ -18907,10 +18904,10 @@
|
|
|
18907
18904
|
imports: [
|
|
18908
18905
|
common.CommonModule,
|
|
18909
18906
|
TransactionButtonBarModule,
|
|
18910
|
-
sharedcomponents.SendMethodDialogModule,
|
|
18911
18907
|
corecomponents_v12.IconModule,
|
|
18912
18908
|
PipeModule,
|
|
18913
|
-
corecomponents_v12.InputCheckboxModule
|
|
18909
|
+
corecomponents_v12.InputCheckboxModule,
|
|
18910
|
+
sharedcomponents.SendMethodDialogModule
|
|
18914
18911
|
],
|
|
18915
18912
|
declarations: [
|
|
18916
18913
|
TransactionQuickAccessOrderDeliveryComponent
|
|
@@ -20051,9 +20048,7 @@
|
|
|
20051
20048
|
TransactionTileModule,
|
|
20052
20049
|
TransactionOverviewLineModule,
|
|
20053
20050
|
TransactionOrderDeliveryLineModule,
|
|
20054
|
-
TransactionReceiveGoodsLineModule
|
|
20055
|
-
corecomponents_v12.IconModule,
|
|
20056
|
-
sharedcomponents.SendMethodDialogModule
|
|
20051
|
+
TransactionReceiveGoodsLineModule
|
|
20057
20052
|
],
|
|
20058
20053
|
declarations: [
|
|
20059
20054
|
TransactionComponent
|