igniteui-react-inputs
Version:
Ignite UI React input components.
65 lines (64 loc) • 2.45 kB
JavaScript
import { MultiSliderResolvingToolTipValueEventArgs as MultiSliderResolvingToolTipValueEventArgs_internal } from "./MultiSliderResolvingToolTipValueEventArgs";
var IgrMultiSliderResolvingToolTipValueEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrMultiSliderResolvingToolTipValueEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrMultiSliderResolvingToolTipValueEventArgs.prototype.createImplementation = function () {
return new MultiSliderResolvingToolTipValueEventArgs_internal();
};
Object.defineProperty(IgrMultiSliderResolvingToolTipValueEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrMultiSliderResolvingToolTipValueEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrMultiSliderResolvingToolTipValueEventArgs.prototype.onImplementationCreated = function () {
};
IgrMultiSliderResolvingToolTipValueEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrMultiSliderResolvingToolTipValueEventArgs.prototype, "position", {
get: function () {
return this.i.position;
},
set: function (v) {
this.i.position = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrMultiSliderResolvingToolTipValueEventArgs.prototype, "value", {
get: function () {
return this.i.value;
},
set: function (v) {
this.i.value = v;
},
enumerable: false,
configurable: true
});
return IgrMultiSliderResolvingToolTipValueEventArgs;
}());
export { IgrMultiSliderResolvingToolTipValueEventArgs };