tuain-ng-forms-lib 12.0.30 → 12.0.31
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/tuain-ng-forms-lib.umd.js +1 -3
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/classes/forms/field.js +1 -3
- package/esm2015/lib/classes/forms/form.js +2 -2
- package/fesm2015/tuain-ng-forms-lib.js +1 -3
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/package.json +1 -1
|
@@ -1931,8 +1931,6 @@
|
|
|
1931
1931
|
? this._fieldValue.replace(',', '') : this._fieldValue;
|
|
1932
1932
|
break;
|
|
1933
1933
|
default:
|
|
1934
|
-
console.log('Valor del campo...');
|
|
1935
|
-
console.log(this._fieldValue);
|
|
1936
1934
|
return this._fieldValue;
|
|
1937
1935
|
break;
|
|
1938
1936
|
}
|
|
@@ -2585,7 +2583,7 @@
|
|
|
2585
2583
|
FormStructureAndData.prototype.getField = function (code) { var _a; return (code && ((_a = this._fields) === null || _a === void 0 ? void 0 : _a[code])) ? this._fields[code] : null; };
|
|
2586
2584
|
FormStructureAndData.prototype.enableField = function (code) { var _a; (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.enable(); };
|
|
2587
2585
|
FormStructureAndData.prototype.disableField = function (code) { var _a; (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.disable(); };
|
|
2588
|
-
FormStructureAndData.prototype.getFieldValue = function (code) { var _a; (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.getValue(); };
|
|
2586
|
+
FormStructureAndData.prototype.getFieldValue = function (code) { var _a; return (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.getValue(); };
|
|
2589
2587
|
FormStructureAndData.prototype.getFieldOptions = function (code) { var _a; (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.getFieldOptions(); };
|
|
2590
2588
|
FormStructureAndData.prototype.setFieldValue = function (code, value) { var _a; (_a = this.getField(code)) === null || _a === void 0 ? void 0 : _a.setValue(value); };
|
|
2591
2589
|
FormStructureAndData.prototype.setFieldError = function (code, message, type) {
|