igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.41 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { InputGroupItemDescription } from "./InputGroupItemDescription";
import { markType } from "./type";
/**
* @hidden
*/
var SuffixDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SuffixDescription, _super);
function SuffixDescription() {
var _this = _super.call(this) || this;
_this.p = null;
_this.o = null;
_this.l = false;
_this.k = false;
return _this;
}
SuffixDescription.prototype.get_type = function () {
return "Suffix";
};
Object.defineProperty(SuffixDescription.prototype, "id", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SuffixDescription.prototype, "ariaLabel", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("AriaLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SuffixDescription.prototype, "isHover", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("IsHover");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SuffixDescription.prototype, "disabled", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("Disabled");
},
enumerable: false,
configurable: true
});
SuffixDescription.$t = markType(SuffixDescription, 'SuffixDescription', InputGroupItemDescription.$);
return SuffixDescription;
}(InputGroupItemDescription));
export { SuffixDescription };