angular2-schema-form
Version:
Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)
36 lines (35 loc) • 1.36 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { AtomicProperty } from './atomicproperty';
var NumberProperty = (function (_super) {
__extends(NumberProperty, _super);
function NumberProperty() {
return _super !== null && _super.apply(this, arguments) || this;
}
NumberProperty.prototype.fallbackValue = function () {
return null;
};
NumberProperty.prototype.setValue = function (value, onlySelf) {
if (onlySelf === void 0) { onlySelf = false; }
if (typeof value === 'string') {
if (value.length) {
value = value.indexOf('.') > -1 ? parseFloat(value) : parseInt(value, 10);
}
else {
value = null;
}
}
this._value = value;
this.updateValueAndValidity(onlySelf, true);
};
return NumberProperty;
}(AtomicProperty));
export { NumberProperty };