UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

1,203 lines (1,202 loc) 34.5 kB
import * as jqxcore from '../../jqwidgets/jqxcore'; import * as globalize from '../../jqwidgets/globalization/globalize'; import * as jqxbuttons from '../../jqwidgets/jqxbuttons'; import * as jqxtooltip from '../../jqwidgets/jqxtooltip'; import * as jqxdatetimeinput from '../../jqwidgets/jqxdatetimeinput'; import * as jqxcalendar from '../../jqwidgets/jqxcalendar'; /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ import * as tslib_1 from "tslib"; /// <reference path="../../jqwidgets.d.ts" /> /// <reference path="../../jqwidgets.d.ts" /> import { Component, Input, Output, EventEmitter, ElementRef, forwardRef, ChangeDetectionStrategy } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; /** @type {?} */ var noop = function () { }; var ɵ0 = noop; /** @type {?} */ var CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR = { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(function () { return jqxCalendarComponent; }), multi: true }; var jqxCalendarComponent = /** @class */ (function () { function jqxCalendarComponent(containerElement) { this.autoCreate = true; this.properties = ['backText', 'columnHeaderHeight', 'clearString', 'culture', 'dayNameFormat', 'disabled', 'enableWeekend', 'enableViews', 'enableOtherMonthDays', 'enableFastNavigation', 'enableHover', 'enableAutoNavigation', 'enableTooltips', 'forwardText', 'firstDayOfWeek', 'height', 'min', 'max', 'navigationDelay', 'rowHeaderWidth', 'readOnly', 'restrictedDates', 'rtl', 'stepMonths', 'showWeekNumbers', 'showDayNames', 'showOtherMonthDays', 'showFooter', 'selectionMode', 'specialDates', 'theme', 'titleHeight', 'titleFormat', 'todayString', 'value', 'width']; this.onTouchedCallback = noop; this.onChangeCallback = noop; // jqxCalendarComponent events this.onBackButtonClick = new EventEmitter(); this.onChange = new EventEmitter(); this.onNextButtonClick = new EventEmitter(); this.onViewChange = new EventEmitter(); this.elementRef = containerElement; } /** * @return {?} */ jqxCalendarComponent.prototype.ngOnInit = /** * @return {?} */ function () { if (this.autoCreate) { this.createComponent(); } }; ; /** * @param {?} changes * @return {?} */ jqxCalendarComponent.prototype.ngOnChanges = /** * @param {?} changes * @return {?} */ function (changes) { if (this.host) { for (var i = 0; i < this.properties.length; i++) { /** @type {?} */ var attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); /** @type {?} */ var areEqual = false; if (this[attrName] !== undefined) { if (typeof this[attrName] === 'object') { if (this[attrName] instanceof Array) { areEqual = this.arraysEqual(this[attrName], this.host.jqxCalendar(this.properties[i])); } if (areEqual) { return false; } this.host.jqxCalendar(this.properties[i], this[attrName]); continue; } if (this[attrName] !== this.host.jqxCalendar(this.properties[i])) { this.host.jqxCalendar(this.properties[i], this[attrName]); } } } } }; /** * @param {?} attrValue * @param {?} hostValue * @return {?} */ jqxCalendarComponent.prototype.arraysEqual = /** * @param {?} attrValue * @param {?} hostValue * @return {?} */ function (attrValue, hostValue) { if ((attrValue && !hostValue) || (!attrValue && hostValue)) { return false; } if (attrValue.length != hostValue.length) { return false; } for (var i = 0; i < attrValue.length; i++) { if (attrValue[i] !== hostValue[i]) { return false; } } return true; }; /** * @return {?} */ jqxCalendarComponent.prototype.manageAttributes = /** * @return {?} */ function () { /** @type {?} */ var options = {}; for (var i = 0; i < this.properties.length; i++) { /** @type {?} */ var attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); if (this[attrName] !== undefined) { options[this.properties[i]] = this[attrName]; } } return options; }; /** * @param {?} parentEl * @param {?} childEl * @return {?} */ jqxCalendarComponent.prototype.moveClasses = /** * @param {?} parentEl * @param {?} childEl * @return {?} */ function (parentEl, childEl) { var _a; /** @type {?} */ var classes = parentEl.classList; if (classes.length > 0) { (_a = childEl.classList).add.apply(_a, tslib_1.__spread(classes)); } parentEl.className = ''; }; /** * @param {?} parentEl * @param {?} childEl * @return {?} */ jqxCalendarComponent.prototype.moveStyles = /** * @param {?} parentEl * @param {?} childEl * @return {?} */ function (parentEl, childEl) { /** @type {?} */ var style = parentEl.style.cssText; childEl.style.cssText = style; parentEl.style.cssText = ''; }; /** * @param {?=} options * @return {?} */ jqxCalendarComponent.prototype.createComponent = /** * @param {?=} options * @return {?} */ function (options) { if (this.host) { return; } if (options) { JQXLite.extend(options, this.manageAttributes()); } else { options = this.manageAttributes(); } this.host = JQXLite(this.elementRef.nativeElement.firstChild); this.moveClasses(this.elementRef.nativeElement, this.host[0]); this.moveStyles(this.elementRef.nativeElement, this.host[0]); this.__wireEvents__(); this.widgetObject = jqwidgets.createInstance(this.host, 'jqxCalendar', options); }; /** * @param {?=} options * @return {?} */ jqxCalendarComponent.prototype.createWidget = /** * @param {?=} options * @return {?} */ function (options) { this.createComponent(options); }; /** * @return {?} */ jqxCalendarComponent.prototype.__updateRect__ = /** * @return {?} */ function () { if (this.host) this.host.css({ width: this.attrWidth, height: this.attrHeight }); }; /** * @param {?} value * @return {?} */ jqxCalendarComponent.prototype.writeValue = /** * @param {?} value * @return {?} */ function (value) { if (this.widgetObject) { this.onChangeCallback(this.host.val()); } }; /** * @param {?} fn * @return {?} */ jqxCalendarComponent.prototype.registerOnChange = /** * @param {?} fn * @return {?} */ function (fn) { this.onChangeCallback = fn; }; /** * @param {?} fn * @return {?} */ jqxCalendarComponent.prototype.registerOnTouched = /** * @param {?} fn * @return {?} */ function (fn) { this.onTouchedCallback = fn; }; /** * @param {?} options * @return {?} */ jqxCalendarComponent.prototype.setOptions = /** * @param {?} options * @return {?} */ function (options) { this.host.jqxCalendar('setOptions', options); }; // jqxCalendarComponent properties // jqxCalendarComponent properties /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.backText = // jqxCalendarComponent properties /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('backText', arg); } else { return this.host.jqxCalendar('backText'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.columnHeaderHeight = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('columnHeaderHeight', arg); } else { return this.host.jqxCalendar('columnHeaderHeight'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.clearString = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('clearString', arg); } else { return this.host.jqxCalendar('clearString'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.culture = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('culture', arg); } else { return this.host.jqxCalendar('culture'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.dayNameFormat = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('dayNameFormat', arg); } else { return this.host.jqxCalendar('dayNameFormat'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.disabled = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('disabled', arg); } else { return this.host.jqxCalendar('disabled'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableWeekend = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableWeekend', arg); } else { return this.host.jqxCalendar('enableWeekend'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableViews = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableViews', arg); } else { return this.host.jqxCalendar('enableViews'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableOtherMonthDays = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableOtherMonthDays', arg); } else { return this.host.jqxCalendar('enableOtherMonthDays'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableFastNavigation = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableFastNavigation', arg); } else { return this.host.jqxCalendar('enableFastNavigation'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableHover = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableHover', arg); } else { return this.host.jqxCalendar('enableHover'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableAutoNavigation = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableAutoNavigation', arg); } else { return this.host.jqxCalendar('enableAutoNavigation'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.enableTooltips = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('enableTooltips', arg); } else { return this.host.jqxCalendar('enableTooltips'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.forwardText = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('forwardText', arg); } else { return this.host.jqxCalendar('forwardText'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.firstDayOfWeek = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('firstDayOfWeek', arg); } else { return this.host.jqxCalendar('firstDayOfWeek'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.height = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('height', arg); } else { return this.host.jqxCalendar('height'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.min = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('min', arg); } else { return this.host.jqxCalendar('min'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.max = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('max', arg); } else { return this.host.jqxCalendar('max'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.navigationDelay = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('navigationDelay', arg); } else { return this.host.jqxCalendar('navigationDelay'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.rowHeaderWidth = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('rowHeaderWidth', arg); } else { return this.host.jqxCalendar('rowHeaderWidth'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.readOnly = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('readOnly', arg); } else { return this.host.jqxCalendar('readOnly'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.restrictedDates = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('restrictedDates', arg); } else { return this.host.jqxCalendar('restrictedDates'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.rtl = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('rtl', arg); } else { return this.host.jqxCalendar('rtl'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.stepMonths = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('stepMonths', arg); } else { return this.host.jqxCalendar('stepMonths'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.showWeekNumbers = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('showWeekNumbers', arg); } else { return this.host.jqxCalendar('showWeekNumbers'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.showDayNames = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('showDayNames', arg); } else { return this.host.jqxCalendar('showDayNames'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.showOtherMonthDays = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('showOtherMonthDays', arg); } else { return this.host.jqxCalendar('showOtherMonthDays'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.showFooter = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('showFooter', arg); } else { return this.host.jqxCalendar('showFooter'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.selectionMode = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('selectionMode', arg); } else { return this.host.jqxCalendar('selectionMode'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.specialDates = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('specialDates', arg); } else { return this.host.jqxCalendar('specialDates'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.theme = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('theme', arg); } else { return this.host.jqxCalendar('theme'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.titleHeight = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('titleHeight', arg); } else { return this.host.jqxCalendar('titleHeight'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.titleFormat = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('titleFormat', arg); } else { return this.host.jqxCalendar('titleFormat'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.todayString = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('todayString', arg); } else { return this.host.jqxCalendar('todayString'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.value = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('value', arg); } else { return this.host.jqxCalendar('value'); } }; /** * @param {?=} arg * @return {?} */ jqxCalendarComponent.prototype.width = /** * @param {?=} arg * @return {?} */ function (arg) { if (arg !== undefined) { this.host.jqxCalendar('width', arg); } else { return this.host.jqxCalendar('width'); } }; // jqxCalendarComponent functions // jqxCalendarComponent functions /** * @return {?} */ jqxCalendarComponent.prototype.clear = // jqxCalendarComponent functions /** * @return {?} */ function () { this.host.jqxCalendar('clear'); }; /** * @return {?} */ jqxCalendarComponent.prototype.destroy = /** * @return {?} */ function () { this.host.jqxCalendar('destroy'); }; /** * @return {?} */ jqxCalendarComponent.prototype.focus = /** * @return {?} */ function () { this.host.jqxCalendar('focus'); }; /** * @param {?} date * @param {?} specialDateClass * @param {?} text * @return {?} */ jqxCalendarComponent.prototype.addSpecialDate = /** * @param {?} date * @param {?} specialDateClass * @param {?} text * @return {?} */ function (date, specialDateClass, text) { this.host.jqxCalendar('addSpecialDate', date, specialDateClass, text); }; /** * @return {?} */ jqxCalendarComponent.prototype.getMinDate = /** * @return {?} */ function () { return this.host.jqxCalendar('getMinDate'); }; /** * @return {?} */ jqxCalendarComponent.prototype.getMaxDate = /** * @return {?} */ function () { return this.host.jqxCalendar('getMaxDate'); }; /** * @return {?} */ jqxCalendarComponent.prototype.getDate = /** * @return {?} */ function () { return this.host.jqxCalendar('getDate'); }; /** * @return {?} */ jqxCalendarComponent.prototype.getRange = /** * @return {?} */ function () { return this.host.jqxCalendar('getRange'); }; /** * @param {?} months * @return {?} */ jqxCalendarComponent.prototype.navigateForward = /** * @param {?} months * @return {?} */ function (months) { this.host.jqxCalendar('navigateForward', months); }; /** * @param {?} months * @return {?} */ jqxCalendarComponent.prototype.navigateBackward = /** * @param {?} months * @return {?} */ function (months) { this.host.jqxCalendar('navigateBackward', months); }; /** * @return {?} */ jqxCalendarComponent.prototype.render = /** * @return {?} */ function () { this.host.jqxCalendar('render'); }; /** * @return {?} */ jqxCalendarComponent.prototype.refresh = /** * @return {?} */ function () { this.host.jqxCalendar('refresh'); }; /** * @param {?} date * @return {?} */ jqxCalendarComponent.prototype.setMinDate = /** * @param {?} date * @return {?} */ function (date) { this.host.jqxCalendar('setMinDate', date); }; /** * @param {?} date * @return {?} */ jqxCalendarComponent.prototype.setMaxDate = /** * @param {?} date * @return {?} */ function (date) { this.host.jqxCalendar('setMaxDate', date); }; /** * @param {?} date * @return {?} */ jqxCalendarComponent.prototype.setDate = /** * @param {?} date * @return {?} */ function (date) { this.host.jqxCalendar('setDate', date); }; /** * @param {?} date * @param {?} date2 * @return {?} */ jqxCalendarComponent.prototype.setRange = /** * @param {?} date * @param {?} date2 * @return {?} */ function (date, date2) { this.host.jqxCalendar('setRange', date, date2); }; /** * @return {?} */ jqxCalendarComponent.prototype.today = /** * @return {?} */ function () { this.host.jqxCalendar('today'); }; /** * @param {?=} value * @param {?=} value2 * @return {?} */ jqxCalendarComponent.prototype.val = /** * @param {?=} value * @param {?=} value2 * @return {?} */ function (value, value2) { if (value !== undefined) { return this.host.jqxCalendar('val', value, value2); } else { return this.host.jqxCalendar('val'); } }; ; /** * @return {?} */ jqxCalendarComponent.prototype.__wireEvents__ = /** * @return {?} */ function () { var _this = this; this.host.on('backButtonClick', function (eventData) { _this.onBackButtonClick.emit(eventData); }); this.host.on('change', function (eventData) { _this.onChange.emit(eventData); _this.onChangeCallback(_this.host.val()); }); this.host.on('nextButtonClick', function (eventData) { _this.onNextButtonClick.emit(eventData); }); this.host.on('viewChange', function (eventData) { _this.onViewChange.emit(eventData); }); }; jqxCalendarComponent.decorators = [ { type: Component, args: [{ selector: 'jqxCalendar', template: '<div><ng-content></ng-content></div>', providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], changeDetection: ChangeDetectionStrategy.OnPush }] } ]; /** @nocollapse */ jqxCalendarComponent.ctorParameters = function () { return [ { type: ElementRef } ]; }; jqxCalendarComponent.propDecorators = { attrBackText: [{ type: Input, args: ['backText',] }], attrColumnHeaderHeight: [{ type: Input, args: ['columnHeaderHeight',] }], attrClearString: [{ type: Input, args: ['clearString',] }], attrCulture: [{ type: Input, args: ['culture',] }], attrDayNameFormat: [{ type: Input, args: ['dayNameFormat',] }], attrDisabled: [{ type: Input, args: ['disabled',] }], attrEnableWeekend: [{ type: Input, args: ['enableWeekend',] }], attrEnableViews: [{ type: Input, args: ['enableViews',] }], attrEnableOtherMonthDays: [{ type: Input, args: ['enableOtherMonthDays',] }], attrEnableFastNavigation: [{ type: Input, args: ['enableFastNavigation',] }], attrEnableHover: [{ type: Input, args: ['enableHover',] }], attrEnableAutoNavigation: [{ type: Input, args: ['enableAutoNavigation',] }], attrEnableTooltips: [{ type: Input, args: ['enableTooltips',] }], attrForwardText: [{ type: Input, args: ['forwardText',] }], attrFirstDayOfWeek: [{ type: Input, args: ['firstDayOfWeek',] }], attrMin: [{ type: Input, args: ['min',] }], attrMax: [{ type: Input, args: ['max',] }], attrNavigationDelay: [{ type: Input, args: ['navigationDelay',] }], attrRowHeaderWidth: [{ type: Input, args: ['rowHeaderWidth',] }], attrReadOnly: [{ type: Input, args: ['readOnly',] }], attrRestrictedDates: [{ type: Input, args: ['restrictedDates',] }], attrRtl: [{ type: Input, args: ['rtl',] }], attrStepMonths: [{ type: Input, args: ['stepMonths',] }], attrShowWeekNumbers: [{ type: Input, args: ['showWeekNumbers',] }], attrShowDayNames: [{ type: Input, args: ['showDayNames',] }], attrShowOtherMonthDays: [{ type: Input, args: ['showOtherMonthDays',] }], attrShowFooter: [{ type: Input, args: ['showFooter',] }], attrSelectionMode: [{ type: Input, args: ['selectionMode',] }], attrSpecialDates: [{ type: Input, args: ['specialDates',] }], attrTheme: [{ type: Input, args: ['theme',] }], attrTitleHeight: [{ type: Input, args: ['titleHeight',] }], attrTitleFormat: [{ type: Input, args: ['titleFormat',] }], attrTodayString: [{ type: Input, args: ['todayString',] }], attrValue: [{ type: Input, args: ['value',] }], attrWidth: [{ type: Input, args: ['width',] }], attrHeight: [{ type: Input, args: ['height',] }], autoCreate: [{ type: Input, args: ['auto-create',] }], onBackButtonClick: [{ type: Output }], onChange: [{ type: Output }], onNextButtonClick: [{ type: Output }], onViewChange: [{ type: Output }] }; return jqxCalendarComponent; }()); //jqxCalendarComponent export { jqxCalendarComponent }; if (false) { /** @type {?} */ jqxCalendarComponent.prototype.attrBackText; /** @type {?} */ jqxCalendarComponent.prototype.attrColumnHeaderHeight; /** @type {?} */ jqxCalendarComponent.prototype.attrClearString; /** @type {?} */ jqxCalendarComponent.prototype.attrCulture; /** @type {?} */ jqxCalendarComponent.prototype.attrDayNameFormat; /** @type {?} */ jqxCalendarComponent.prototype.attrDisabled; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableWeekend; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableViews; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableOtherMonthDays; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableFastNavigation; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableHover; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableAutoNavigation; /** @type {?} */ jqxCalendarComponent.prototype.attrEnableTooltips; /** @type {?} */ jqxCalendarComponent.prototype.attrForwardText; /** @type {?} */ jqxCalendarComponent.prototype.attrFirstDayOfWeek; /** @type {?} */ jqxCalendarComponent.prototype.attrMin; /** @type {?} */ jqxCalendarComponent.prototype.attrMax; /** @type {?} */ jqxCalendarComponent.prototype.attrNavigationDelay; /** @type {?} */ jqxCalendarComponent.prototype.attrRowHeaderWidth; /** @type {?} */ jqxCalendarComponent.prototype.attrReadOnly; /** @type {?} */ jqxCalendarComponent.prototype.attrRestrictedDates; /** @type {?} */ jqxCalendarComponent.prototype.attrRtl; /** @type {?} */ jqxCalendarComponent.prototype.attrStepMonths; /** @type {?} */ jqxCalendarComponent.prototype.attrShowWeekNumbers; /** @type {?} */ jqxCalendarComponent.prototype.attrShowDayNames; /** @type {?} */ jqxCalendarComponent.prototype.attrShowOtherMonthDays; /** @type {?} */ jqxCalendarComponent.prototype.attrShowFooter; /** @type {?} */ jqxCalendarComponent.prototype.attrSelectionMode; /** @type {?} */ jqxCalendarComponent.prototype.attrSpecialDates; /** @type {?} */ jqxCalendarComponent.prototype.attrTheme; /** @type {?} */ jqxCalendarComponent.prototype.attrTitleHeight; /** @type {?} */ jqxCalendarComponent.prototype.attrTitleFormat; /** @type {?} */ jqxCalendarComponent.prototype.attrTodayString; /** @type {?} */ jqxCalendarComponent.prototype.attrValue; /** @type {?} */ jqxCalendarComponent.prototype.attrWidth; /** @type {?} */ jqxCalendarComponent.prototype.attrHeight; /** @type {?} */ jqxCalendarComponent.prototype.autoCreate; /** @type {?} */ jqxCalendarComponent.prototype.properties; /** @type {?} */ jqxCalendarComponent.prototype.host; /** @type {?} */ jqxCalendarComponent.prototype.elementRef; /** @type {?} */ jqxCalendarComponent.prototype.widgetObject; /** * @type {?} * @private */ jqxCalendarComponent.prototype.onTouchedCallback; /** * @type {?} * @private */ jqxCalendarComponent.prototype.onChangeCallback; /** @type {?} */ jqxCalendarComponent.prototype.onBackButtonClick; /** @type {?} */ jqxCalendarComponent.prototype.onChange; /** @type {?} */ jqxCalendarComponent.prototype.onNextButtonClick; /** @type {?} */ jqxCalendarComponent.prototype.onViewChange; /* Skipping unhandled member: ;*/ /* Skipping unhandled member: ;*/ } export { ɵ0 };