UNPKG

igniteui-react-core

Version:
331 lines (330 loc) 8.45 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let DatePickerDescription = /*@__PURE__*/ (() => { class DatePickerDescription extends Description { get_type() { return "DatePicker"; } get type() { return this.get_type(); } constructor() { super(); this.ac = new Date(); this.ab = new Date(); this.av = null; this.az = null; this.aw = null; this.ah = 0; this.ax = null; this.ay = null; this.a1 = null; this.aa = new Date(); this.z = new Date(); this.ao = null; this.al = null; this.a4 = null; this.ai = 0; this.a5 = null; this.a6 = null; this.a3 = null; this.at = null; this.m = false; this.n = false; this.h = false; this.l = false; this.ap = null; this.aq = null; this.o = false; this.an = null; this.ar = null; this.i = false; this.j = false; this.k = false; this.p = false; this.a2 = null; this.as = null; this.a0 = null; this.au = null; this.am = null; this.a7 = null; } get value() { return this.ac; } set value(a) { this.ac = a; this.g("Value"); } get today() { return this.ab; } set today(a) { this.ab = a; this.g("Today"); } get label() { return this.av; } set label(a) { this.av = a; this.g("Label"); } get labelTextColor() { return this.az; } set labelTextColor(a) { this.az = a; this.g("LabelTextColor"); } get labelFontFamily() { return this.aw; } set labelFontFamily(a) { this.aw = a; this.g("LabelFontFamily"); } get labelFontSize() { return this.ah; } set labelFontSize(a) { this.ah = a; this.g("LabelFontSize"); } get labelFontStyle() { return this.ax; } set labelFontStyle(a) { this.ax = a; this.g("LabelFontStyle"); } get labelFontWeight() { return this.ay; } set labelFontWeight(a) { this.ay = a; this.g("LabelFontWeight"); } get placeholder() { return this.a1; } set placeholder(a) { this.a1 = a; this.g("Placeholder"); } get minDate() { return this.aa; } set minDate(a) { this.aa = a; this.g("MinDate"); } get maxDate() { return this.z; } set maxDate(a) { this.z = a; this.g("MaxDate"); } get density() { return this.ao; } set density(a) { this.ao = a; this.g("Density"); } get baseTheme() { return this.al; } set baseTheme(a) { this.al = a; this.g("BaseTheme"); } get textFontFamily() { return this.a4; } set textFontFamily(a) { this.a4 = a; this.g("TextFontFamily"); } get textFontSize() { return this.ai; } set textFontSize(a) { this.ai = a; this.g("TextFontSize"); } get textFontStyle() { return this.a5; } set textFontStyle(a) { this.a5 = a; this.g("TextFontStyle"); } get textFontWeight() { return this.a6; } set textFontWeight(a) { this.a6 = a; this.g("TextFontWeight"); } get textColor() { return this.a3; } set textColor(a) { this.a3 = a; this.g("TextColor"); } get iconColor() { return this.at; } set iconColor(a) { this.at = a; this.g("IconColor"); } get showClearButton() { return this.m; } set showClearButton(a) { this.m = a; this.g("ShowClearButton"); } get showTodayButton() { return this.n; } set showTodayButton(a) { this.n = a; this.g("ShowTodayButton"); } get allowTextInput() { return this.h; } set allowTextInput(a) { this.h = a; this.g("AllowTextInput"); } get openOnFocus() { return this.l; } set openOnFocus(a) { this.l = a; this.g("OpenOnFocus"); } get firstDayOfWeek() { return this.ap; } set firstDayOfWeek(a) { this.ap = a; this.g("FirstDayOfWeek"); } get firstWeekOfYear() { return this.aq; } set firstWeekOfYear(a) { this.aq = a; this.g("FirstWeekOfYear"); } get showWeekNumbers() { return this.o; } set showWeekNumbers(a) { this.o = a; this.g("ShowWeekNumbers"); } get dateFormat() { return this.an; } set dateFormat(a) { this.an = a; this.g("DateFormat"); } get formatString() { return this.ar; } set formatString(a) { this.ar = a; this.g("FormatString"); } get isDisabled() { return this.i; } set isDisabled(a) { this.i = a; this.g("IsDisabled"); } get isFixed() { return this.j; } set isFixed(a) { this.j = a; this.g("IsFixed"); } get openAsChild() { return this.k; } set openAsChild(a) { this.k = a; this.g("OpenAsChild"); } get useTopLayer() { return this.p; } set useTopLayer(a) { this.p = a; this.g("UseTopLayer"); } get selectedValueChangedRef() { return this.a2; } set selectedValueChangedRef(a) { this.a2 = a; this.g("SelectedValueChangedRef"); } get gotFocusRef() { return this.as; } set gotFocusRef(a) { this.as = a; this.g("GotFocusRef"); } get lostFocusRef() { return this.a0; } set lostFocusRef(a) { this.a0 = a; this.g("LostFocusRef"); } get keyDownRef() { return this.au; } set keyDownRef(a) { this.au = a; this.g("KeyDownRef"); } get changingRef() { return this.am; } set changingRef(a) { this.am = a; this.g("ChangingRef"); } get valueChangeRef() { return this.a7; } set valueChangeRef(a) { this.a7 = a; this.g("ValueChangeRef"); } } DatePickerDescription.$t = /*@__PURE__*/ markType(DatePickerDescription, 'DatePickerDescription', Description.$); return DatePickerDescription; })();