UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

93 lines (92 loc) 5.49 kB
/* 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 { KeyEventArgsDescriptionMetadata } from "./KeyEventArgsDescriptionMetadata"; import { InputChangeEventArgsDescriptionMetadata } from "./InputChangeEventArgsDescriptionMetadata"; import { InputGroupItemDescriptionMetadata } from "./InputGroupItemDescriptionMetadata"; import { InputDescription } from "./InputDescription"; /** * @hidden */ var InputDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) { __extends(InputDescriptionMetadata, _super); function InputDescriptionMetadata() { return _super !== null && _super.apply(this, arguments) || this; } InputDescriptionMetadata.b = function (a) { if (InputDescriptionMetadata.a == null) { InputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0); InputDescriptionMetadata.c(InputDescriptionMetadata.a); } if (a.k(InputDescriptionMetadata.a)) { return; } a.ad(InputDescriptionMetadata.a); KeyEventArgsDescriptionMetadata.d(a); InputChangeEventArgsDescriptionMetadata.d(a); }; InputDescriptionMetadata.c = function (a) { InputGroupItemDescriptionMetadata.c(a); a.item("__qualifiedNameTS", "String:XInput"); a.item("BaseTheme", "ExportedType:string:BaseControlTheme"); a.item("BaseTheme@names", "Default;DenaliLight;MaterialLight;SlingshotLight;SlingshotDark;RevealLight;RevealDark"); a.item("Density", "ExportedType:string:ControlDisplayDensity"); a.item("Density@names", "Auto;Comfortable;Cosy;Compact;Minimal"); a.item("ActualDensity", "ExportedType:string:ControlDisplayDensity"); a.item("ActualDensity@names", "Auto;Comfortable;Cosy;Compact;Minimal"); a.item("Mask", "String"); a.item("PromptChar", "String"); a.item("IncludeLiterals", "Boolean"); a.item("ShowSpinner", "Boolean"); a.item("ActualTextColor", "Brush"); a.item("ActualHoverTextColor", "Brush"); a.item("TextColor", "Brush"); a.item("FontFamily", "(w:FontFamily/FontFamilyTransform,s:TextStyle/FontFamilyTransform,xam:FontFamily,wf:FontFamily,web:textStyle/FontFamilyTransform)String"); a.item("FontSize", "(w:FontSize,s:TextStyle/FontSizeTransform,xam:FontSize,wf:FontSize,web:textStyle/FontSizeTransform)Number:double"); a.item("FontStyle", "(w:FontStyle/FontStyleTransform,p:FontStyle/FontStyleTransform,wf:TextStyle/FontStyleTransform,s:TextStyle/FontStyleTransform,web:textStyle/FontStyleTransform)String"); a.item("FontWeight", "(w:FontWeight/FontWeightTransform,p:FontWeight/FontWeightTransform,s:TextStyle/FontWeightTransform,web:textStyle/FontWeightTransform)String"); a.item("InputType", "String"); a.item("Placeholder", "String"); a.item("HoverTextColor", "Brush"); a.item("Id", "String"); a.item("TabIndex", "Number:int"); a.item("For", "(w:ForAttribute,xam:ForAttribute,p:ForAttribute)String"); a.item("AriaLabel", "String"); a.item("IsHover", "Boolean"); a.item("Value", "String"); a.item("Disabled", "(w:IsDisabled,xam:IsDisabled,p:IsDisabled)Boolean"); a.item("Readonly", "(w:IsReadOnly,xam:IsReadOnly,p:IsReadOnly)Boolean"); a.item("TextAlignment", "ExportedType:string:HorizontalAlignment"); a.item("TextAlignment@names", "Left;Center;Right;Stretch"); a.item("SelectionStart", "Number:int"); a.item("SelectionEnd", "Number:int"); a.item("KeyDownRef", "EventRef:KeyEventHandler:keyDown"); a.item("KeyDownRef@args", "KeyEventArgs"); a.item("KeyUpRef", "EventRef:KeyEventHandler:keyUp"); a.item("KeyUpRef@args", "KeyEventArgs"); a.item("KeyPressRef", "EventRef:KeyEventHandler:keyPress"); a.item("KeyPressRef@args", "KeyEventArgs"); a.item("ChangeRef", "EventRef:InputChangeEventHandler:change"); a.item("ChangeRef@args", "InputChangeEventArgs"); a.item("ChangingRef", "EventRef:InputChangeEventHandler:changing"); a.item("ChangingRef@args", "InputChangeEventArgs"); a.item("CompositionEndRef", "EventRef:InputChangeEventHandler:compositionEnd"); a.item("CompositionEndRef@args", "InputChangeEventArgs"); }; InputDescriptionMetadata.d = function (a) { InputGroupItemDescriptionMetadata.d(a); InputDescriptionMetadata.b(a); a.af("Input", function () { return new InputDescription(); }); a.ae("Input", InputDescriptionMetadata.a); }; InputDescriptionMetadata.$t = markType(InputDescriptionMetadata, 'InputDescriptionMetadata'); InputDescriptionMetadata.a = null; return InputDescriptionMetadata; }(Base)); export { InputDescriptionMetadata };