UNPKG

devextreme-angular

Version:

Angular UI and visualization components based on DevExtreme widgets

1 lines • 87.7 kB
{"version":3,"file":"devextreme-angular-ui-date-range-box.mjs","sources":["../../../dist/ui/date-range-box/index.ts","../../../dist/ui/date-range-box/devextreme-angular-ui-date-range-box.ts"],"sourcesContent":["/*!\n * devextreme-angular\n * Version: 25.1.4\n * Build date: Tue Aug 05 2025\n *\n * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED\n *\n * This software may be modified and distributed under the terms\n * of the MIT license. See the LICENSE file in the root of the project for details.\n *\n * https://github.com/DevExpress/devextreme-angular\n */\n\n/* tslint:disable:max-line-length */\r\n\r\n\r\nimport {\r\n TransferState,\r\n Component,\r\n NgModule,\r\n ElementRef,\r\n NgZone,\r\n PLATFORM_ID,\r\n Inject,\r\n\r\n Input,\r\n Output,\r\n OnDestroy,\r\n EventEmitter,\r\n forwardRef,\r\n HostListener,\r\n OnChanges,\r\n DoCheck,\r\n SimpleChanges,\r\n ContentChildren,\r\n QueryList\r\n} from '@angular/core';\r\n\r\n\r\nimport { ApplyValueMode, TextEditorButton, LabelMode, EditorStyle, ValidationMessageMode, Mode, Position, ValidationStatus } from 'devextreme/common';\r\nimport { DropDownPredefinedButton } from 'devextreme/ui/drop_down_editor/ui.drop_down_editor';\r\nimport { dxCalendarOptions } from 'devextreme/ui/calendar';\r\nimport { Format } from 'devextreme/common/core/localization';\r\nimport { dxPopupOptions } from 'devextreme/ui/popup';\r\nimport { ChangeEvent, ClosedEvent, ContentReadyEvent, CopyEvent, CutEvent, DisposingEvent, EnterKeyEvent, FocusInEvent, FocusOutEvent, InitializedEvent, InputEvent, KeyDownEvent, KeyUpEvent, OpenedEvent, OptionChangedEvent, PasteEvent, ValueChangedEvent } from 'devextreme/ui/date_range_box';\r\n\r\nimport DxDateRangeBox from 'devextreme/ui/date_range_box';\r\n\r\nimport {\r\n ControlValueAccessor,\r\n NG_VALUE_ACCESSOR\r\n} from '@angular/forms';\r\n\r\nimport {\r\n DxComponent,\r\n DxTemplateHost,\r\n DxIntegrationModule,\r\n DxTemplateModule,\r\n NestedOptionHost,\r\n IterableDifferHelper,\r\n WatcherHelper\r\n} from 'devextreme-angular/core';\r\n\r\nimport { DxiButtonModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoOptionsModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoCalendarOptionsModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoDisplayFormatModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoDropDownOptionsModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoAnimationModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoHideModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoFromModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoPositionModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoAtModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoBoundaryOffsetModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoCollisionModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoMyModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoOffsetModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoToModule } from 'devextreme-angular/ui/nested';\r\nimport { DxoShowModule } from 'devextreme-angular/ui/nested';\r\n\r\nimport { DxoDateRangeBoxAnimationModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxAtModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxBoundaryOffsetModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxiDateRangeBoxButtonModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxCalendarOptionsModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxCollisionModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxDisplayFormatModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxDropDownOptionsModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxFromModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxHideModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxMyModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxOffsetModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxOptionsModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxPositionModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxShowModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxoDateRangeBoxToModule } from 'devextreme-angular/ui/date-range-box/nested';\r\nimport { DxiDateRangeBoxToolbarItemModule } from 'devextreme-angular/ui/date-range-box/nested';\r\n\r\nimport { DxiButtonComponent } from 'devextreme-angular/ui/nested';\r\n\r\nimport { DxiDateRangeBoxButtonComponent } from 'devextreme-angular/ui/date-range-box/nested';\r\n\r\n\r\n\r\nconst CUSTOM_VALUE_ACCESSOR_PROVIDER = {\r\n provide: NG_VALUE_ACCESSOR,\r\n useExisting: forwardRef(() => DxDateRangeBoxComponent),\r\n multi: true\r\n};\r\n/**\r\n * DateRangeBox is a UI component that allows a user to select a date range (pick or enter start and end dates).\r\n\r\n */\r\n@Component({\r\n selector: 'dx-date-range-box',\r\n standalone: true,\r\n template: '',\r\n host: { ngSkipHydration: 'true' },\r\n imports: [ DxIntegrationModule ],\r\n providers: [\r\n DxTemplateHost,\r\n WatcherHelper,\r\n CUSTOM_VALUE_ACCESSOR_PROVIDER,\r\n NestedOptionHost,\r\n IterableDifferHelper\r\n ]\r\n})\r\nexport class DxDateRangeBoxComponent extends DxComponent implements OnDestroy, ControlValueAccessor, OnChanges, DoCheck {\r\n instance: DxDateRangeBox = null;\r\n\r\n /**\r\n * Specifies whether or not the UI component allows an end user to enter a custom value.\r\n \r\n */\r\n @Input()\r\n get acceptCustomValue(): boolean {\r\n return this._getOption('acceptCustomValue');\r\n }\r\n set acceptCustomValue(value: boolean) {\r\n this._setOption('acceptCustomValue', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the shortcut key that sets focus on the UI component.\r\n \r\n */\r\n @Input()\r\n get accessKey(): string | undefined {\r\n return this._getOption('accessKey');\r\n }\r\n set accessKey(value: string | undefined) {\r\n this._setOption('accessKey', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component changes its visual state as a result of user interaction.\r\n \r\n */\r\n @Input()\r\n get activeStateEnabled(): boolean {\r\n return this._getOption('activeStateEnabled');\r\n }\r\n set activeStateEnabled(value: boolean) {\r\n this._setOption('activeStateEnabled', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the Apply button&apos;s text.\r\n \r\n */\r\n @Input()\r\n get applyButtonText(): string {\r\n return this._getOption('applyButtonText');\r\n }\r\n set applyButtonText(value: string) {\r\n this._setOption('applyButtonText', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the way an end user applies the selected value.\r\n \r\n */\r\n @Input()\r\n get applyValueMode(): ApplyValueMode {\r\n return this._getOption('applyValueMode');\r\n }\r\n set applyValueMode(value: ApplyValueMode) {\r\n this._setOption('applyValueMode', value);\r\n }\r\n\r\n\r\n /**\r\n * Allows you to add custom buttons to the input text field.\r\n \r\n */\r\n @Input()\r\n get buttons(): Array<DropDownPredefinedButton | TextEditorButton> {\r\n return this._getOption('buttons');\r\n }\r\n set buttons(value: Array<DropDownPredefinedButton | TextEditorButton>) {\r\n this._setOption('buttons', value);\r\n }\r\n\r\n\r\n /**\r\n * Configures the calendar&apos;s value picker.\r\n \r\n */\r\n @Input()\r\n get calendarOptions(): dxCalendarOptions {\r\n return this._getOption('calendarOptions');\r\n }\r\n set calendarOptions(value: dxCalendarOptions) {\r\n this._setOption('calendarOptions', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the Cancel button&apos;s text.\r\n \r\n */\r\n @Input()\r\n get cancelButtonText(): string {\r\n return this._getOption('cancelButtonText');\r\n }\r\n set cancelButtonText(value: string) {\r\n this._setOption('cancelButtonText', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the date value serialization format.\r\n \r\n */\r\n @Input()\r\n get dateSerializationFormat(): string | undefined {\r\n return this._getOption('dateSerializationFormat');\r\n }\r\n set dateSerializationFormat(value: string | undefined) {\r\n this._setOption('dateSerializationFormat', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether to render the drop-down field&apos;s content when it is displayed. If false, the content is rendered immediately.\r\n \r\n */\r\n @Input()\r\n get deferRendering(): boolean {\r\n return this._getOption('deferRendering');\r\n }\r\n set deferRendering(value: boolean) {\r\n this._setOption('deferRendering', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component responds to user interaction.\r\n \r\n */\r\n @Input()\r\n get disabled(): boolean {\r\n return this._getOption('disabled');\r\n }\r\n set disabled(value: boolean) {\r\n this._setOption('disabled', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component disables date selection before the start date and after the end date.\r\n \r\n */\r\n @Input()\r\n get disableOutOfRangeSelection(): boolean {\r\n return this._getOption('disableOutOfRangeSelection');\r\n }\r\n set disableOutOfRangeSelection(value: boolean) {\r\n this._setOption('disableOutOfRangeSelection', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the date&apos;s display format.\r\n \r\n */\r\n @Input()\r\n get displayFormat(): Format {\r\n return this._getOption('displayFormat');\r\n }\r\n set displayFormat(value: Format) {\r\n this._setOption('displayFormat', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a custom template for the drop-down button.\r\n \r\n */\r\n @Input()\r\n get dropDownButtonTemplate(): any {\r\n return this._getOption('dropDownButtonTemplate');\r\n }\r\n set dropDownButtonTemplate(value: any) {\r\n this._setOption('dropDownButtonTemplate', value);\r\n }\r\n\r\n\r\n /**\r\n * Configures the drop-down that holds the content.\r\n \r\n */\r\n @Input()\r\n get dropDownOptions(): dxPopupOptions<any> {\r\n return this._getOption('dropDownOptions');\r\n }\r\n set dropDownOptions(value: dxPopupOptions<any>) {\r\n this._setOption('dropDownOptions', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the global attributes to be attached to the UI component&apos;s container element.\r\n \r\n */\r\n @Input()\r\n get elementAttr(): Record<string, any> {\r\n return this._getOption('elementAttr');\r\n }\r\n set elementAttr(value: Record<string, any>) {\r\n this._setOption('elementAttr', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the range&apos;s end date.\r\n \r\n */\r\n @Input()\r\n get endDate(): Date | null | number | string {\r\n return this._getOption('endDate');\r\n }\r\n set endDate(value: Date | null | number | string) {\r\n this._setOption('endDate', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the attributes passed to the end date input field.\r\n \r\n */\r\n @Input()\r\n get endDateInputAttr(): any {\r\n return this._getOption('endDateInputAttr');\r\n }\r\n set endDateInputAttr(value: any) {\r\n this._setOption('endDateInputAttr', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the label of the end date input field.\r\n \r\n */\r\n @Input()\r\n get endDateLabel(): string {\r\n return this._getOption('endDateLabel');\r\n }\r\n set endDateLabel(value: string) {\r\n this._setOption('endDateLabel', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the name attribute of the end date input field.\r\n \r\n */\r\n @Input()\r\n get endDateName(): string {\r\n return this._getOption('endDateName');\r\n }\r\n set endDateName(value: string) {\r\n this._setOption('endDateName', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the message displayed if the specified end date is later than the max value or earlier than the min value.\r\n \r\n */\r\n @Input()\r\n get endDateOutOfRangeMessage(): string {\r\n return this._getOption('endDateOutOfRangeMessage');\r\n }\r\n set endDateOutOfRangeMessage(value: string) {\r\n this._setOption('endDateOutOfRangeMessage', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a placeholder for the end date input field.\r\n \r\n */\r\n @Input()\r\n get endDatePlaceholder(): string {\r\n return this._getOption('endDatePlaceholder');\r\n }\r\n set endDatePlaceholder(value: string) {\r\n this._setOption('endDatePlaceholder', value);\r\n }\r\n\r\n\r\n /**\r\n * Returns the text displayed by the end date input field.\r\n \r\n */\r\n @Input()\r\n get endDateText(): string {\r\n return this._getOption('endDateText');\r\n }\r\n set endDateText(value: string) {\r\n this._setOption('endDateText', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component can be focused using keyboard navigation.\r\n \r\n */\r\n @Input()\r\n get focusStateEnabled(): boolean {\r\n return this._getOption('focusStateEnabled');\r\n }\r\n set focusStateEnabled(value: boolean) {\r\n this._setOption('focusStateEnabled', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the UI component&apos;s height.\r\n \r\n */\r\n @Input()\r\n get height(): number | string | undefined {\r\n return this._getOption('height');\r\n }\r\n set height(value: number | string | undefined) {\r\n this._setOption('height', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies text for a hint that appears when a user pauses on the UI component.\r\n \r\n */\r\n @Input()\r\n get hint(): string | undefined {\r\n return this._getOption('hint');\r\n }\r\n set hint(value: string | undefined) {\r\n this._setOption('hint', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component changes its state when a user pauses on it.\r\n \r\n */\r\n @Input()\r\n get hoverStateEnabled(): boolean {\r\n return this._getOption('hoverStateEnabled');\r\n }\r\n set hoverStateEnabled(value: boolean) {\r\n this._setOption('hoverStateEnabled', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a message for invalid end date input.\r\n \r\n */\r\n @Input()\r\n get invalidEndDateMessage(): string {\r\n return this._getOption('invalidEndDateMessage');\r\n }\r\n set invalidEndDateMessage(value: string) {\r\n this._setOption('invalidEndDateMessage', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a message for invalid start date input.\r\n \r\n */\r\n @Input()\r\n get invalidStartDateMessage(): string {\r\n return this._getOption('invalidStartDateMessage');\r\n }\r\n set invalidStartDateMessage(value: string) {\r\n this._setOption('invalidStartDateMessage', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the component&apos;s current value differs from the initial value.\r\n \r\n */\r\n @Input()\r\n get isDirty(): boolean {\r\n return this._getOption('isDirty');\r\n }\r\n set isDirty(value: boolean) {\r\n this._setOption('isDirty', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies or indicates whether the editor&apos;s value is valid.\r\n \r\n */\r\n @Input()\r\n get isValid(): boolean {\r\n return this._getOption('isValid');\r\n }\r\n set isValid(value: boolean) {\r\n this._setOption('isValid', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the label&apos;s display mode.\r\n \r\n */\r\n @Input()\r\n get labelMode(): LabelMode {\r\n return this._getOption('labelMode');\r\n }\r\n set labelMode(value: LabelMode) {\r\n this._setOption('labelMode', value);\r\n }\r\n\r\n\r\n /**\r\n * The latest date that can be selected in the UI component.\r\n \r\n */\r\n @Input()\r\n get max(): Date | null | number | string | undefined {\r\n return this._getOption('max');\r\n }\r\n set max(value: Date | null | number | string | undefined) {\r\n this._setOption('max', value);\r\n }\r\n\r\n\r\n /**\r\n * The earliest date that can be selected in the UI component.\r\n \r\n */\r\n @Input()\r\n get min(): Date | null | number | string | undefined {\r\n return this._getOption('min');\r\n }\r\n set min(value: Date | null | number | string | undefined) {\r\n this._setOption('min', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component displays a single-month calendar or a multi-month calendar.\r\n \r\n */\r\n @Input()\r\n get multiView(): boolean {\r\n return this._getOption('multiView');\r\n }\r\n set multiView(value: boolean) {\r\n this._setOption('multiView', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether or not the drop-down editor is displayed.\r\n \r\n */\r\n @Input()\r\n get opened(): boolean {\r\n return this._getOption('opened');\r\n }\r\n set opened(value: boolean) {\r\n this._setOption('opened', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether a user can open the popup calendar by clicking an input field.\r\n \r\n */\r\n @Input()\r\n get openOnFieldClick(): boolean {\r\n return this._getOption('openOnFieldClick');\r\n }\r\n set openOnFieldClick(value: boolean) {\r\n this._setOption('openOnFieldClick', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the editor is read-only.\r\n \r\n */\r\n @Input()\r\n get readOnly(): boolean {\r\n return this._getOption('readOnly');\r\n }\r\n set readOnly(value: boolean) {\r\n this._setOption('readOnly', value);\r\n }\r\n\r\n\r\n /**\r\n * Switches the UI component to a right-to-left representation.\r\n \r\n */\r\n @Input()\r\n get rtlEnabled(): boolean {\r\n return this._getOption('rtlEnabled');\r\n }\r\n set rtlEnabled(value: boolean) {\r\n this._setOption('rtlEnabled', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether to display the Clear button in the UI component.\r\n \r\n */\r\n @Input()\r\n get showClearButton(): boolean {\r\n return this._getOption('showClearButton');\r\n }\r\n set showClearButton(value: boolean) {\r\n this._setOption('showClearButton', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the drop-down button is visible.\r\n \r\n */\r\n @Input()\r\n get showDropDownButton(): boolean {\r\n return this._getOption('showDropDownButton');\r\n }\r\n set showDropDownButton(value: boolean) {\r\n this._setOption('showDropDownButton', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether or not the UI component checks the inner text for spelling mistakes.\r\n \r\n */\r\n @Input()\r\n get spellcheck(): boolean {\r\n return this._getOption('spellcheck');\r\n }\r\n set spellcheck(value: boolean) {\r\n this._setOption('spellcheck', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the start date of date range.\r\n \r\n */\r\n @Input()\r\n get startDate(): Date | null | number | string {\r\n return this._getOption('startDate');\r\n }\r\n set startDate(value: Date | null | number | string) {\r\n this._setOption('startDate', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the attributes passed to the start date input field.\r\n \r\n */\r\n @Input()\r\n get startDateInputAttr(): any {\r\n return this._getOption('startDateInputAttr');\r\n }\r\n set startDateInputAttr(value: any) {\r\n this._setOption('startDateInputAttr', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a label of the start date input field.\r\n \r\n */\r\n @Input()\r\n get startDateLabel(): string {\r\n return this._getOption('startDateLabel');\r\n }\r\n set startDateLabel(value: string) {\r\n this._setOption('startDateLabel', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the name attribute of the start date input field.\r\n \r\n */\r\n @Input()\r\n get startDateName(): string {\r\n return this._getOption('startDateName');\r\n }\r\n set startDateName(value: string) {\r\n this._setOption('startDateName', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the message displayed if the specified start date is later than the max value or earlier than the min value.\r\n \r\n */\r\n @Input()\r\n get startDateOutOfRangeMessage(): string {\r\n return this._getOption('startDateOutOfRangeMessage');\r\n }\r\n set startDateOutOfRangeMessage(value: string) {\r\n this._setOption('startDateOutOfRangeMessage', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies a placeholder for the start date input field.\r\n \r\n */\r\n @Input()\r\n get startDatePlaceholder(): string {\r\n return this._getOption('startDatePlaceholder');\r\n }\r\n set startDatePlaceholder(value: string) {\r\n this._setOption('startDatePlaceholder', value);\r\n }\r\n\r\n\r\n /**\r\n * Returns the text displayed by the start date input field.\r\n \r\n */\r\n @Input()\r\n get startDateText(): string {\r\n return this._getOption('startDateText');\r\n }\r\n set startDateText(value: string) {\r\n this._setOption('startDateText', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies how the UI component&apos;s text field is styled.\r\n \r\n */\r\n @Input()\r\n get stylingMode(): EditorStyle {\r\n return this._getOption('stylingMode');\r\n }\r\n set stylingMode(value: EditorStyle) {\r\n this._setOption('stylingMode', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the number of the element when the Tab key is used for navigating.\r\n \r\n */\r\n @Input()\r\n get tabIndex(): number {\r\n return this._getOption('tabIndex');\r\n }\r\n set tabIndex(value: number) {\r\n this._setOption('tabIndex', value);\r\n }\r\n\r\n\r\n /**\r\n * Specified the Today button&apos;s text.\r\n \r\n */\r\n @Input()\r\n get todayButtonText(): string {\r\n return this._getOption('todayButtonText');\r\n }\r\n set todayButtonText(value: string) {\r\n this._setOption('todayButtonText', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether to use an input mask based on the displayFormat property.\r\n \r\n */\r\n @Input()\r\n get useMaskBehavior(): boolean {\r\n return this._getOption('useMaskBehavior');\r\n }\r\n set useMaskBehavior(value: boolean) {\r\n this._setOption('useMaskBehavior', value);\r\n }\r\n\r\n\r\n /**\r\n * Information on the broken validation rule. Contains the first item from the validationErrors array.\r\n \r\n */\r\n @Input()\r\n get validationError(): any {\r\n return this._getOption('validationError');\r\n }\r\n set validationError(value: any) {\r\n this._setOption('validationError', value);\r\n }\r\n\r\n\r\n /**\r\n * An array of validation errors.\r\n \r\n */\r\n @Input()\r\n get validationErrors(): Array<any> {\r\n return this._getOption('validationErrors');\r\n }\r\n set validationErrors(value: Array<any>) {\r\n this._setOption('validationErrors', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies how the message about the validation rules that are not satisfied by this editor&apos;s value is displayed.\r\n \r\n */\r\n @Input()\r\n get validationMessageMode(): ValidationMessageMode {\r\n return this._getOption('validationMessageMode');\r\n }\r\n set validationMessageMode(value: ValidationMessageMode) {\r\n this._setOption('validationMessageMode', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the position of a validation message relative to the component. The validation message describes the validation rules that this component&apos;s value does not satisfy.\r\n \r\n */\r\n @Input()\r\n get validationMessagePosition(): Mode | Position {\r\n return this._getOption('validationMessagePosition');\r\n }\r\n set validationMessagePosition(value: Mode | Position) {\r\n this._setOption('validationMessagePosition', value);\r\n }\r\n\r\n\r\n /**\r\n * Indicates or specifies the current validation status.\r\n \r\n */\r\n @Input()\r\n get validationStatus(): ValidationStatus {\r\n return this._getOption('validationStatus');\r\n }\r\n set validationStatus(value: ValidationStatus) {\r\n this._setOption('validationStatus', value);\r\n }\r\n\r\n\r\n /**\r\n * An array that specifies the selected range (start and end dates).\r\n \r\n */\r\n @Input()\r\n get value(): Array<Date | null | number | string> {\r\n return this._getOption('value');\r\n }\r\n set value(value: Array<Date | null | number | string>) {\r\n this._setOption('value', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the DOM events after which the UI component&apos;s value should be updated.\r\n \r\n */\r\n @Input()\r\n get valueChangeEvent(): string {\r\n return this._getOption('valueChangeEvent');\r\n }\r\n set valueChangeEvent(value: string) {\r\n this._setOption('valueChangeEvent', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies whether the UI component is visible.\r\n \r\n */\r\n @Input()\r\n get visible(): boolean {\r\n return this._getOption('visible');\r\n }\r\n set visible(value: boolean) {\r\n this._setOption('visible', value);\r\n }\r\n\r\n\r\n /**\r\n * Specifies the UI component&apos;s width.\r\n \r\n */\r\n @Input()\r\n get width(): number | string | undefined {\r\n return this._getOption('width');\r\n }\r\n set width(value: number | string | undefined) {\r\n this._setOption('width', value);\r\n }\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component loses focus after the text field&apos;s content was changed using the keyboard.\r\n \r\n \r\n */\r\n @Output() onChange: EventEmitter<ChangeEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed once the drop-down editor is closed.\r\n \r\n \r\n */\r\n @Output() onClosed: EventEmitter<ClosedEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component is rendered and each time the component is repainted.\r\n \r\n \r\n */\r\n @Output() onContentReady: EventEmitter<ContentReadyEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component&apos;s input has been copied.\r\n \r\n \r\n */\r\n @Output() onCopy: EventEmitter<CopyEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component&apos;s input has been cut.\r\n \r\n \r\n */\r\n @Output() onCut: EventEmitter<CutEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed before the UI component is disposed of.\r\n \r\n \r\n */\r\n @Output() onDisposing: EventEmitter<DisposingEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the Enter key has been pressed while the UI component is focused.\r\n \r\n \r\n */\r\n @Output() onEnterKey: EventEmitter<EnterKeyEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component gets focus.\r\n \r\n \r\n */\r\n @Output() onFocusIn: EventEmitter<FocusInEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component loses focus.\r\n \r\n \r\n */\r\n @Output() onFocusOut: EventEmitter<FocusOutEvent>;\r\n\r\n /**\r\n \r\n * A function used in JavaScript frameworks to save the UI component instance.\r\n \r\n \r\n */\r\n @Output() onInitialized: EventEmitter<InitializedEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed each time the UI component&apos;s input is changed while the UI component is focused.\r\n \r\n \r\n */\r\n @Output() onInput: EventEmitter<InputEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when a user is pressing a key on the keyboard.\r\n \r\n \r\n */\r\n @Output() onKeyDown: EventEmitter<KeyDownEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when a user releases a key on the keyboard.\r\n \r\n \r\n */\r\n @Output() onKeyUp: EventEmitter<KeyUpEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed once the drop-down editor is opened.\r\n \r\n \r\n */\r\n @Output() onOpened: EventEmitter<OpenedEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed after a UI component property is changed.\r\n \r\n \r\n */\r\n @Output() onOptionChanged: EventEmitter<OptionChangedEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed when the UI component&apos;s input has been pasted.\r\n \r\n \r\n */\r\n @Output() onPaste: EventEmitter<PasteEvent>;\r\n\r\n /**\r\n \r\n * A function that is executed after the UI component&apos;s value is changed.\r\n \r\n \r\n */\r\n @Output() onValueChanged: EventEmitter<ValueChangedEvent>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() acceptCustomValueChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() accessKeyChange: EventEmitter<string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() activeStateEnabledChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() applyButtonTextChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() applyValueModeChange: EventEmitter<ApplyValueMode>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() buttonsChange: EventEmitter<Array<DropDownPredefinedButton | TextEditorButton>>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() calendarOptionsChange: EventEmitter<dxCalendarOptions>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() cancelButtonTextChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() dateSerializationFormatChange: EventEmitter<string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() deferRenderingChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() disabledChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() disableOutOfRangeSelectionChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() displayFormatChange: EventEmitter<Format>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() dropDownButtonTemplateChange: EventEmitter<any>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() dropDownOptionsChange: EventEmitter<dxPopupOptions<any>>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() elementAttrChange: EventEmitter<Record<string, any>>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateChange: EventEmitter<Date | null | number | string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateInputAttrChange: EventEmitter<any>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateLabelChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateNameChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateOutOfRangeMessageChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDatePlaceholderChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() endDateTextChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() focusStateEnabledChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() heightChange: EventEmitter<number | string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() hintChange: EventEmitter<string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() hoverStateEnabledChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() invalidEndDateMessageChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() invalidStartDateMessageChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() isDirtyChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() isValidChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() labelModeChange: EventEmitter<LabelMode>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() maxChange: EventEmitter<Date | null | number | string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() minChange: EventEmitter<Date | null | number | string | undefined>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() multiViewChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() openedChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() openOnFieldClickChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() readOnlyChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() rtlEnabledChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() showClearButtonChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() showDropDownButtonChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() spellcheckChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateChange: EventEmitter<Date | null | number | string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateInputAttrChange: EventEmitter<any>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateLabelChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateNameChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateOutOfRangeMessageChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDatePlaceholderChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() startDateTextChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() stylingModeChange: EventEmitter<EditorStyle>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() tabIndexChange: EventEmitter<number>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() todayButtonTextChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() useMaskBehaviorChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() validationErrorChange: EventEmitter<any>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() validationErrorsChange: EventEmitter<Array<any>>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() validationMessageModeChange: EventEmitter<ValidationMessageMode>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() validationMessagePositionChange: EventEmitter<Mode | Position>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() validationStatusChange: EventEmitter<ValidationStatus>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() valueChange: EventEmitter<Array<Date | null | number | string>>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() valueChangeEventChange: EventEmitter<string>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() visibleChange: EventEmitter<boolean>;\r\n\r\n /**\r\n \r\n * This member supports the internal infrastructure and is not intended to be used directly from your code.\r\n \r\n */\r\n @Output() widthChange: EventEmitter<number | string | undefined>;\r\n\r\n /**\r\n \r\n * \r\n \r\n \r\n */\r\n @Output() onBlur: EventEmitter<any>;\r\n\r\n\r\n @HostListener('valueChange', ['$event']) change(_) { }\r\n @HostListener('onBlur', ['$event']) touched = (_) => {};\r\n\r\n\r\n @ContentChildren(DxiDateRangeBoxButtonComponent)\r\n get buttonsChildren(): QueryList<DxiDateRangeBoxButtonComponent> {\r\n return this._getOption('buttons');\r\n }\r\n set buttonsChildren(value) {\r\n this._setChildren('buttons', value, 'DxiDateRangeBoxButtonComponent');\r\n }\r\n\r\n\r\n @ContentChildren(DxiButtonComponent)\r\n get buttonsLegacyChildren(): QueryList<DxiButtonComponent> {\r\n return this._getOption('buttons');\r\n }\r\n set buttonsLegacyChildren(value) {\r\n this._setChildren('buttons', value, 'DxiButtonComponent');\r\n }\r\n\r\n\r\n\r\n\r\n constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost,\r\n private _watcherHelper: WatcherHelper,\r\n private _idh: IterableDifferHelper,\r\n optionHost: NestedOptionHost,\r\n transferState: TransferState,\r\n @Inject(PLATFORM_ID) platformId: any) {\r\n\r\n super(elementRef, ngZone, templateHost, _watcherHelper, transferState, platformId);\r\n\r\n this._createEventEmitters([\r\n { subscribe: 'change', emit: 'onChange' },\r\n { subscribe: 'closed', emit: 'onClosed' },\r\n { subscribe: 'contentReady', emit: 'onContentReady' },\r\n { subscribe: 'copy', emit: 'onCopy' },\r\n { subscribe: 'cut', emit: 'onCut' },\r\n { subscribe: 'disposing', emit: 'onDisposing' },\r\n { subscribe: 'enterKey', emit: 'onEnterKey' },\r\n { subscribe: 'focusIn', emit: 'onFocusIn' },\r\n { subscribe: 'focusOut', emit: 'onFocusOut' },\r\n { subscribe: 'initialized', emit: 'onInitialized' },\r\n { subscribe: 'input', emit: 'onInput' },\r\n { subscribe: 'keyDown', emit: 'onKeyDown' },\r\n { subscribe: 'keyUp', emit: 'onKeyUp' },\r\n { subscribe: 'opened', emit: 'onOpened' },\r\n { subscribe: 'optionChanged', emit: 'onOptionChanged' },\r\n { subscribe: 'paste', emit: 'onPaste' },\r\n { subscribe: 'valueChanged', emit: 'onValueChanged' },\r\n { emit: 'acceptCustomValueChange' },\r\n { emit: 'accessKeyChange' },\r\n { emit: 'activeStateEnabledChange' },\r\n { emit: 'applyButtonTextChange' },\r\n { emit: 'applyValueModeChange' },\r\n { emit: 'buttonsChange' },\r\n { emit: 'calendarOptionsChange' },\r\n { emit: 'cancelButtonTextChange' },\r\n { emit: 'dateSerializationFormatChange' },\r\n { emit: 'deferRenderingChange' },\r\n { emit: 'disabledChange' },\r\n { emit: 'disableOutOfRangeSelectionChange' },\r\n { emit: 'displayFormatChange' },\r\n { emit: 'dropDownButtonTemplateChange' },\r\n { emit: 'dropDownOptionsChange' },\r\n { emit: 'elementAttrChange' },\r\n { emit: 'endDateChange' },\r\n { emit: 'endDateInputAttrChange' },\r\n { emit: 'endDateLabelChange' },\r\n { emit: 'endDateNameChange' },\r\n { emit: 'endDateOutOfRangeMessageChange' },\r\n { emit: 'endDatePlaceholderChange' },\r\n { emit: 'endDateTextChange' },\r\n { emit: 'focusStateEnabledChange' },\r\n { emit: 'heightChange' },\r\n { emit: 'hintChange' },\r\n { emit: 'hoverStateEnabledChange' },\r\n { emit: 'invalidEndDateMessageChange' },\r\n { emit: 'invalidStartDateMessageChange' },\r\n { emit: 'isDirtyChange' },\r\n { emit: 'isValidChange' },\r\n { emit: 'labelModeChange' },\r\n { emit: 'maxChange' },\r\n { emit: 'minChange' },\r\n { emit: 'multiViewChange' },\r\n { emit: 'openedChange' },\r\n { emit: 'openOnFieldClickChange' },\r\n { emit: 'readOnlyChange' },\r\n { emit: 'rtlEnabledChange' },\r\n { emit: 'showClearButtonChange' },\r\n { emit: 'showDropDownButtonChange' },\r\n { emit: 'spellcheckChange' },\r\n { emit: 'startDateChange' },\r\n { emit: 'startDateInputAttrChange' },\r\n { emit: 'startDateLabelChange' },\r\n { emit: 'startDateNameChange' },\r\n { emit: 'startDateOutOfRangeMessageChange' },\r\n { emit: 'startDatePlaceholderChange' },\r\n { emit: 'startDateTextChange' },\r\n { emit: 'stylingModeChange' },\r\n { emit: 'tabIndexChange' },\r\n { emit: 'todayButtonTextChange' },\r\n { emit: 'useMaskBehaviorChange' },\r\n { emit: 'validationErrorChange' },\r\n { emit: 'validationErrorsChange' },\r\n { emit: 'validationMessageModeChange' },\r\n { emit: 'validationMessagePositionChange' },\r\n { emit: 'validationStatusChange' },\r\n { emit: 'valueChange' },\r\n { emit: 'valueChangeEventChange' },\r\n { emit: 'visibleChange' },\r\n { emit: 'widthChange' },\r\n { emit: 'onBlur' }\r\n ]);\