igniteui-react-core
Version:
Ignite UI React Core.
60 lines (59 loc) • 3.03 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 { WebComponentValueChangedEventArgsDescriptionMetadata } from "./WebComponentValueChangedEventArgsDescriptionMetadata";
import { WebInputBaseDescriptionMetadata } from "./WebInputBaseDescriptionMetadata";
import { WebInputDescription } from "./WebInputDescription";
/**
* @hidden
*/
export let WebInputDescriptionMetadata = /*@__PURE__*/ (() => {
class WebInputDescriptionMetadata extends Base {
static b(a) {
if (WebInputDescriptionMetadata.a == null) {
WebInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
WebInputDescriptionMetadata.c(WebInputDescriptionMetadata.a);
}
if (a.k(WebInputDescriptionMetadata.a)) {
return;
}
a.ac(WebInputDescriptionMetadata.a);
WebComponentValueChangedEventArgsDescriptionMetadata.d(a);
}
static c(a) {
WebInputBaseDescriptionMetadata.c(a);
a.item("__qualifiedNameTS", "String:Input");
a.item("__tagNameWC", "String:igc-input");
a.item("__skipModuleRegisterWebComponents", "Boolean");
a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
a.item("Value", "String");
a.item("DisplayType", "(wc:Type)ExportedType:string:InputType");
a.item("DisplayType@stringUnion", "WebComponents;React");
a.item("DisplayType@names", "Text;Email;Number;Password;Search;Tel;Url");
a.item("InputMode", "String");
a.item("Pattern", "String");
a.item("MinLength", "Number:double");
a.item("MaxLength", "Number:double");
a.item("Min", "Number:double");
a.item("Max", "Number:double");
a.item("Step", "Number:double");
a.item("Autofocus", "Boolean");
a.item("Autocomplete", "String");
a.item("ValidateOnly", "Boolean");
a.item("ChangeRef", "EventRef::change");
}
static d(a) {
WebInputDescriptionMetadata.b(a);
a.ae("WebInput", () => new WebInputDescription());
a.ad("WebInput", WebInputDescriptionMetadata.a);
}
}
WebInputDescriptionMetadata.$t = /*@__PURE__*/ markType(WebInputDescriptionMetadata, 'WebInputDescriptionMetadata');
WebInputDescriptionMetadata.a = null;
return WebInputDescriptionMetadata;
})();