igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
46 lines (45 loc) • 2.48 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 { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { UserAnnotationInformationDescription } from "./UserAnnotationInformationDescription";
/**
* @hidden
*/
export let UserAnnotationInformationDescriptionMetadata = /*@__PURE__*/ (() => {
class UserAnnotationInformationDescriptionMetadata extends Base {
static b(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);
}
static c(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");
}
static d(a) {
UserAnnotationInformationDescriptionMetadata.b(a);
a.af("UserAnnotationInformation", () => new UserAnnotationInformationDescription());
a.ae("UserAnnotationInformation", UserAnnotationInformationDescriptionMetadata.a);
}
}
UserAnnotationInformationDescriptionMetadata.$t = markType(UserAnnotationInformationDescriptionMetadata, 'UserAnnotationInformationDescriptionMetadata');
UserAnnotationInformationDescriptionMetadata.a = null;
return UserAnnotationInformationDescriptionMetadata;
})();