igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.79 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 { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { UserAnnotationInformationDescription } from "./UserAnnotationInformationDescription";
/**
* @hidden
*/
var UserAnnotationInformationDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(UserAnnotationInformationDescriptionMetadata, _super);
function UserAnnotationInformationDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
UserAnnotationInformationDescriptionMetadata.b = function (a) {
if (UserAnnotationInformationDescriptionMetadata.a == null) {
UserAnnotationInformationDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
UserAnnotationInformationDescriptionMetadata.c(UserAnnotationInformationDescriptionMetadata.a);
}
if (a.k(UserAnnotationInformationDescriptionMetadata.a)) {
return;
}
a.ad(UserAnnotationInformationDescriptionMetadata.a);
};
UserAnnotationInformationDescriptionMetadata.c = function (a) {
a.item("__marshalByValue", "Boolean");
a.item("AnnotationId", "String");
a.item("Label", "String");
a.item("BadgeColor", "Brush");
a.item("MainColor", "Brush");
a.item("AnnotationData", "String");
a.item("BadgeImageUri", "String");
a.item("DialogSuggestedXLocation", "Number:double");
a.item("DialogSuggestedYLocation", "Number:double");
};
UserAnnotationInformationDescriptionMetadata.d = function (a) {
UserAnnotationInformationDescriptionMetadata.b(a);
a.af("UserAnnotationInformation", function () { return new UserAnnotationInformationDescription(); });
a.ae("UserAnnotationInformation", UserAnnotationInformationDescriptionMetadata.a);
};
UserAnnotationInformationDescriptionMetadata.$t = markType(UserAnnotationInformationDescriptionMetadata, 'UserAnnotationInformationDescriptionMetadata');
UserAnnotationInformationDescriptionMetadata.a = null;
return UserAnnotationInformationDescriptionMetadata;
}(Base));
export { UserAnnotationInformationDescriptionMetadata };