igniteui-react-core
Version:
Ignite UI React Core.
45 lines (44 loc) • 2.01 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 { RingSeriesBaseDescriptionMetadata } from "./RingSeriesBaseDescriptionMetadata";
import { RingDescription } from "./RingDescription";
/**
* @hidden
*/
export let RingDescriptionMetadata = /*@__PURE__*/ (() => {
class RingDescriptionMetadata extends Base {
static b(a) {
if (RingDescriptionMetadata.a == null) {
RingDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
RingDescriptionMetadata.c(RingDescriptionMetadata.a);
}
if (a.k(RingDescriptionMetadata.a)) {
return;
}
a.ac(RingDescriptionMetadata.a);
RingSeriesBaseDescriptionMetadata.d(a);
}
static c(a) {
a.item("Index", "Number:int");
a.item("InnerExtend", "Number:double");
a.item("ControlSize", "Size");
a.item("Center", "Point");
a.item("RingSeries", "ExportedType:RingSeriesBase");
a.item("RingBreadth", "Number:double");
}
static d(a) {
RingDescriptionMetadata.b(a);
a.ae("Ring", () => new RingDescription());
a.ad("Ring", RingDescriptionMetadata.a);
}
}
RingDescriptionMetadata.$t = /*@__PURE__*/ markType(RingDescriptionMetadata, 'RingDescriptionMetadata');
RingDescriptionMetadata.a = null;
return RingDescriptionMetadata;
})();