UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.49 kB
/* 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.n = null; _this.m = null; _this.j = false; _this.i = false; return _this; } SuffixDescription.prototype.get_type = function () { return "Suffix"; }; Object.defineProperty(SuffixDescription.prototype, "id", { get: function () { return this.n; }, set: function (a) { this.n = a; this.e("Id"); }, enumerable: false, configurable: true }); Object.defineProperty(SuffixDescription.prototype, "ariaLabel", { get: function () { return this.m; }, set: function (a) { this.m = a; this.e("AriaLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(SuffixDescription.prototype, "isHover", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("IsHover"); }, enumerable: false, configurable: true }); Object.defineProperty(SuffixDescription.prototype, "disabled", { get: function () { return this.i; }, set: function (a) { this.i = a; this.e("Disabled"); }, enumerable: false, configurable: true }); SuffixDescription.$t = markType(SuffixDescription, 'SuffixDescription', InputGroupItemDescription.$); return SuffixDescription; }(InputGroupItemDescription)); export { SuffixDescription };