@colijnit/transaction 253.1.11 → 253.1.12

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.
@@ -33,8 +33,8 @@
33
33
  function Version() {
34
34
  this.name = "@colijnit/transaction";
35
35
  this.description = "Colijn IT transaction package";
36
- this.symVer = "253.1.11";
37
- this.publishDate = "13-8-2024 17:30:09";
36
+ this.symVer = "253.1.12";
37
+ this.publishDate = "23-8-2024 10:55:47";
38
38
  }
39
39
  return Version;
40
40
  }());
@@ -36680,7 +36680,7 @@
36680
36680
  TransactionHeaderDepositAmountComponent.decorators = [
36681
36681
  { type: i0.Component, args: [{
36682
36682
  selector: "co-transaction-header-deposit-amount",
36683
- template: "\n <span *ngIf=\"!editMode || headerReadonly\" [textContent]=\"(transactionInfo.depositAmount | coCurrency) || '...'\" [tooltip]=\"tooltipMessage\"></span>\n <co-input-text #input *ngIf=\"editMode\"\n [type]=\"'number'\"\n [placeholder]=\"showLabel ? ('DOWNPAYMENT' | localize) : ''\"\n [showSaveCancel]=\"!headerReadonly\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [model]=\"transactionInfo.depositAmount\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
36683
+ template: "\n <span *ngIf=\"(!editMode || headerReadonly) && !defaultEditMode\" [textContent]=\"(transactionInfo.depositAmount | coCurrency) || '...'\" [tooltip]=\"tooltipMessage\"></span>\n <co-input-text #input *ngIf=\"editMode || defaultEditMode\"\n [type]=\"'number'\"\n [placeholder]=\"showLabel ? ('DOWNPAYMENT' | localize) : ''\"\n [showSaveCancel]=\"!headerReadonly\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [model]=\"transactionInfo.depositAmount\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
36684
36684
  providers: [{
36685
36685
  provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
36686
36686
  useExisting: i0.forwardRef(function () { return TransactionHeaderDepositAmountComponent; })