@luftborn/custom-elements 2.12.0 → 2.12.1
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/demo/index.min.js
CHANGED
|
@@ -2635,9 +2635,9 @@ var BankFieldElement = /** @class */ (function (_super) {
|
|
|
2635
2635
|
}
|
|
2636
2636
|
Object.defineProperty(BankFieldElement.prototype, "value", {
|
|
2637
2637
|
get: function () {
|
|
2638
|
-
var
|
|
2639
|
-
var
|
|
2640
|
-
return "" +
|
|
2638
|
+
var regNumber = this.regNumber.value || '';
|
|
2639
|
+
var account = this.account.value ? "," + this.account.value : '';
|
|
2640
|
+
return "" + regNumber + account;
|
|
2641
2641
|
},
|
|
2642
2642
|
set: function (value) {
|
|
2643
2643
|
var values = value.split(',');
|