igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 2.32 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 { WebStepDescription } from "./WebStepDescription";
/**
* @hidden
*/
var WebStepDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebStepDescriptionMetadata, _super);
function WebStepDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
WebStepDescriptionMetadata.b = function (a) {
if (WebStepDescriptionMetadata.a == null) {
WebStepDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
WebStepDescriptionMetadata.c(WebStepDescriptionMetadata.a);
}
if (a.k(WebStepDescriptionMetadata.a)) {
return;
}
a.ac(WebStepDescriptionMetadata.a);
};
WebStepDescriptionMetadata.c = function (a) {
a.item("__qualifiedNameTS", "String:Step");
a.item("__tagNameWC", "String:igc-step");
a.item("__skipModuleRegisterWebComponents", "Boolean");
a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
a.item("Invalid", "Boolean");
a.item("Active", "Boolean");
a.item("Optional", "Boolean");
a.item("Disabled", "Boolean");
a.item("Complete", "Boolean");
};
WebStepDescriptionMetadata.d = function (a) {
WebStepDescriptionMetadata.b(a);
a.ae("WebStep", function () { return new WebStepDescription(); });
a.ad("WebStep", WebStepDescriptionMetadata.a);
};
WebStepDescriptionMetadata.$t = markType(WebStepDescriptionMetadata, 'WebStepDescriptionMetadata');
WebStepDescriptionMetadata.a = null;
return WebStepDescriptionMetadata;
}(Base));
export { WebStepDescriptionMetadata };