igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.56 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 { WebBadgeDescription } from "./WebBadgeDescription";
/**
* @hidden
*/
var WebBadgeDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebBadgeDescriptionMetadata, _super);
function WebBadgeDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
WebBadgeDescriptionMetadata.b = function (a) {
if (WebBadgeDescriptionMetadata.a == null) {
WebBadgeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
WebBadgeDescriptionMetadata.c(WebBadgeDescriptionMetadata.a);
}
if (a.k(WebBadgeDescriptionMetadata.a)) {
return;
}
a.ac(WebBadgeDescriptionMetadata.a);
};
WebBadgeDescriptionMetadata.c = function (a) {
a.item("__qualifiedNameTS", "String:Badge");
a.item("__tagNameWC", "String:igc-badge");
a.item("__skipModuleRegisterWebComponents", "Boolean");
a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
a.item("Variant", "ExportedType:string:StyleVariant");
a.item("Variant@stringUnion", "WebComponents;React");
a.item("Variant@names", "Primary;Info;Success;Warning;Danger");
a.item("Outlined", "Boolean");
a.item("Shape", "ExportedType:string:BadgeShape");
a.item("Shape@stringUnion", "WebComponents;React");
a.item("Shape@names", "Rounded;Square");
};
WebBadgeDescriptionMetadata.d = function (a) {
WebBadgeDescriptionMetadata.b(a);
a.ae("WebBadge", function () { return new WebBadgeDescription(); });
a.ad("WebBadge", WebBadgeDescriptionMetadata.a);
};
WebBadgeDescriptionMetadata.$t = markType(WebBadgeDescriptionMetadata, 'WebBadgeDescriptionMetadata');
WebBadgeDescriptionMetadata.a = null;
return WebBadgeDescriptionMetadata;
}(Base));
export { WebBadgeDescriptionMetadata };