igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
60 lines (59 loc) • 3.28 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 { DatePartDeltasDescriptionMetadata } from "./DatePartDeltasDescriptionMetadata";
import { WebComponentDateValueChangedEventArgsDescriptionMetadata } from "./WebComponentDateValueChangedEventArgsDescriptionMetadata";
import { WebMaskInputBaseDescriptionMetadata } from "./WebMaskInputBaseDescriptionMetadata";
import { WebDateTimeInputDescription } from "./WebDateTimeInputDescription";
/**
* @hidden
*/
var WebDateTimeInputDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebDateTimeInputDescriptionMetadata, _super);
function WebDateTimeInputDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
WebDateTimeInputDescriptionMetadata.b = function (a) {
if (WebDateTimeInputDescriptionMetadata.a == null) {
WebDateTimeInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
WebDateTimeInputDescriptionMetadata.c(WebDateTimeInputDescriptionMetadata.a);
}
if (a.k(WebDateTimeInputDescriptionMetadata.a)) {
return;
}
a.ac(WebDateTimeInputDescriptionMetadata.a);
DatePartDeltasDescriptionMetadata.d(a);
WebComponentDateValueChangedEventArgsDescriptionMetadata.d(a);
};
WebDateTimeInputDescriptionMetadata.c = function (a) {
WebMaskInputBaseDescriptionMetadata.c(a);
a.item("__qualifiedNameTS", "String:DateTimeInput");
a.item("__tagNameWC", "String:igc-date-time-input");
a.item("__skipModuleRegisterWebComponents", "Boolean");
a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
a.item("InputFormat", "String");
a.item("Value", "Date");
a.item("Min", "Date");
a.item("Max", "Date");
a.item("DisplayFormat", "String");
a.item("SpinDelta", "ExportedType:DatePartDeltas");
a.item("SpinLoop", "Boolean");
a.item("Locale", "String");
a.item("ChangeRef", "EventRef::change");
};
WebDateTimeInputDescriptionMetadata.d = function (a) {
WebDateTimeInputDescriptionMetadata.b(a);
a.ae("WebDateTimeInput", function () { return new WebDateTimeInputDescription(); });
a.ad("WebDateTimeInput", WebDateTimeInputDescriptionMetadata.a);
};
WebDateTimeInputDescriptionMetadata.$t = markType(WebDateTimeInputDescriptionMetadata, 'WebDateTimeInputDescriptionMetadata');
WebDateTimeInputDescriptionMetadata.a = null;
return WebDateTimeInputDescriptionMetadata;
}(Base));
export { WebDateTimeInputDescriptionMetadata };