igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 5.23 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var DashboardTileCustomizationDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DashboardTileCustomizationDescription, _super);
function DashboardTileCustomizationDescription() {
var _this = _super.call(this) || this;
_this.y = null;
_this.z = null;
_this.aa = null;
_this.k = false;
_this.m = false;
_this.l = false;
_this.n = false;
_this.s = 0;
_this.u = 0;
_this.t = 0;
return _this;
}
DashboardTileCustomizationDescription.prototype.get_type = function () {
return "DashboardTileCustomization";
};
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "matchType", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("MatchType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "propertyName", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("PropertyName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "propertyValueRef", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("PropertyValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "isCollectionInsertionAtEnd", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("IsCollectionInsertionAtEnd");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "isCollectionInsertionAtStart", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("IsCollectionInsertionAtStart");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "isCollectionInsertionAtIndex", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("IsCollectionInsertionAtIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "isCollectionRemovaltIndex", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("IsCollectionRemovaltIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "collectionIndex", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("CollectionIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "order", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Order");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DashboardTileCustomizationDescription.prototype, "matchParentIndex", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("MatchParentIndex");
},
enumerable: false,
configurable: true
});
DashboardTileCustomizationDescription.$t = markType(DashboardTileCustomizationDescription, 'DashboardTileCustomizationDescription', Description.$);
return DashboardTileCustomizationDescription;
}(Description));
export { DashboardTileCustomizationDescription };