devextreme-angular
Version:
DevExtreme UI and Visualization Components for Angular
1 lines • 140 kB
Source Map (JSON)
{"version":3,"file":"devextreme-angular-ui-date-box-nested.mjs","sources":["../../../dist/ui/date-box/nested/animation.ts","../../../dist/ui/date-box/nested/at.ts","../../../dist/ui/date-box/nested/boundary-offset.ts","../../../dist/ui/date-box/nested/button-dxi.ts","../../../dist/ui/date-box/nested/calendar-options.ts","../../../dist/ui/date-box/nested/collision.ts","../../../dist/ui/date-box/nested/display-format.ts","../../../dist/ui/date-box/nested/drop-down-options.ts","../../../dist/ui/date-box/nested/from.ts","../../../dist/ui/date-box/nested/hide.ts","../../../dist/ui/date-box/nested/my.ts","../../../dist/ui/date-box/nested/offset.ts","../../../dist/ui/date-box/nested/options.ts","../../../dist/ui/date-box/nested/position.ts","../../../dist/ui/date-box/nested/show.ts","../../../dist/ui/date-box/nested/to.ts","../../../dist/ui/date-box/nested/toolbar-item-dxi.ts","../../../dist/ui/date-box/nested/index.ts","../../../dist/ui/date-box/nested/devextreme-angular-ui-date-box-nested.ts"],"sourcesContent":["/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { AnimationConfig } from 'devextreme/common/core/animation';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-animation',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxAnimationComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get hide(): AnimationConfig {\n return this._getOption('hide');\n }\n set hide(value: AnimationConfig) {\n this._setOption('hide', value);\n }\n\n @Input()\n get show(): AnimationConfig {\n return this._getOption('show');\n }\n set show(value: AnimationConfig) {\n this._setOption('show', value);\n }\n\n\n protected get _optionPath() {\n return 'animation';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxAnimationComponent\n ],\n exports: [\n DxoDateBoxAnimationComponent\n ],\n})\nexport class DxoDateBoxAnimationModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { HorizontalAlignment, VerticalAlignment } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-at',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxAtComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get x(): HorizontalAlignment {\n return this._getOption('x');\n }\n set x(value: HorizontalAlignment) {\n this._setOption('x', value);\n }\n\n @Input()\n get y(): VerticalAlignment {\n return this._getOption('y');\n }\n set y(value: VerticalAlignment) {\n this._setOption('y', value);\n }\n\n\n protected get _optionPath() {\n return 'at';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxAtComponent\n ],\n exports: [\n DxoDateBoxAtComponent\n ],\n})\nexport class DxoDateBoxAtModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-boundary-offset',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxBoundaryOffsetComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get x(): number {\n return this._getOption('x');\n }\n set x(value: number) {\n this._setOption('x', value);\n }\n\n @Input()\n get y(): number {\n return this._getOption('y');\n }\n set y(value: number) {\n this._setOption('y', value);\n }\n\n\n protected get _optionPath() {\n return 'boundaryOffset';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxBoundaryOffsetComponent\n ],\n exports: [\n DxoDateBoxBoundaryOffsetComponent\n ],\n})\nexport class DxoDateBoxBoundaryOffsetModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { TextEditorButtonLocation } from 'devextreme/common';\nimport type { dxButtonOptions } from 'devextreme/ui/button';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_buttons } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-date-box-button',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_buttons,\n useExisting: DxiDateBoxButtonComponent,\n }\n ]\n})\nexport class DxiDateBoxButtonComponent extends CollectionNestedOption {\n @Input()\n get location(): TextEditorButtonLocation {\n return this._getOption('location');\n }\n set location(value: TextEditorButtonLocation) {\n this._setOption('location', value);\n }\n\n @Input()\n get name(): string | undefined {\n return this._getOption('name');\n }\n set name(value: string | undefined) {\n this._setOption('name', value);\n }\n\n @Input()\n get options(): dxButtonOptions | undefined {\n return this._getOption('options');\n }\n set options(value: dxButtonOptions | undefined) {\n this._setOption('options', value);\n }\n\n\n protected get _optionPath() {\n return 'buttons';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiDateBoxButtonComponent\n ],\n exports: [\n DxiDateBoxButtonComponent\n ],\n})\nexport class DxiDateBoxButtonModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input,\n Output,\n EventEmitter\n} from '@angular/core';\n\n\n\n\nimport type { DisabledDate, CalendarZoomLevel, DisposingEvent, InitializedEvent, OptionChangedEvent, ValueChangedEvent, CalendarSelectionMode, WeekNumberRule } from 'devextreme/ui/calendar';\nimport type { DayOfWeek, ValidationMessageMode, Position, ValidationStatus } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-calendar-options',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxCalendarOptionsComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get accessKey(): string | undefined {\n return this._getOption('accessKey');\n }\n set accessKey(value: string | undefined) {\n this._setOption('accessKey', value);\n }\n\n @Input()\n get activeStateEnabled(): boolean {\n return this._getOption('activeStateEnabled');\n }\n set activeStateEnabled(value: boolean) {\n this._setOption('activeStateEnabled', value);\n }\n\n @Input()\n get cellTemplate(): any {\n return this._getOption('cellTemplate');\n }\n set cellTemplate(value: any) {\n this._setOption('cellTemplate', value);\n }\n\n @Input()\n get dateSerializationFormat(): string | undefined {\n return this._getOption('dateSerializationFormat');\n }\n set dateSerializationFormat(value: string | undefined) {\n this._setOption('dateSerializationFormat', value);\n }\n\n @Input()\n get disabled(): boolean {\n return this._getOption('disabled');\n }\n set disabled(value: boolean) {\n this._setOption('disabled', value);\n }\n\n @Input()\n get disabledDates(): Array<Date> | ((data: DisabledDate) => boolean) {\n return this._getOption('disabledDates');\n }\n set disabledDates(value: Array<Date> | ((data: DisabledDate) => boolean)) {\n this._setOption('disabledDates', value);\n }\n\n @Input()\n get elementAttr(): Record<string, any> {\n return this._getOption('elementAttr');\n }\n set elementAttr(value: Record<string, any>) {\n this._setOption('elementAttr', value);\n }\n\n @Input()\n get firstDayOfWeek(): DayOfWeek | undefined {\n return this._getOption('firstDayOfWeek');\n }\n set firstDayOfWeek(value: DayOfWeek | undefined) {\n this._setOption('firstDayOfWeek', value);\n }\n\n @Input()\n get focusStateEnabled(): boolean {\n return this._getOption('focusStateEnabled');\n }\n set focusStateEnabled(value: boolean) {\n this._setOption('focusStateEnabled', value);\n }\n\n @Input()\n get height(): number | string | undefined {\n return this._getOption('height');\n }\n set height(value: number | string | undefined) {\n this._setOption('height', value);\n }\n\n @Input()\n get hint(): string | undefined {\n return this._getOption('hint');\n }\n set hint(value: string | undefined) {\n this._setOption('hint', value);\n }\n\n @Input()\n get hoverStateEnabled(): boolean {\n return this._getOption('hoverStateEnabled');\n }\n set hoverStateEnabled(value: boolean) {\n this._setOption('hoverStateEnabled', value);\n }\n\n @Input()\n get isDirty(): boolean {\n return this._getOption('isDirty');\n }\n set isDirty(value: boolean) {\n this._setOption('isDirty', value);\n }\n\n @Input()\n get isValid(): boolean {\n return this._getOption('isValid');\n }\n set isValid(value: boolean) {\n this._setOption('isValid', value);\n }\n\n @Input()\n get max(): Date | null | number | string {\n return this._getOption('max');\n }\n set max(value: Date | null | number | string) {\n this._setOption('max', value);\n }\n\n @Input()\n get maxZoomLevel(): CalendarZoomLevel {\n return this._getOption('maxZoomLevel');\n }\n set maxZoomLevel(value: CalendarZoomLevel) {\n this._setOption('maxZoomLevel', value);\n }\n\n @Input()\n get min(): Date | null | number | string {\n return this._getOption('min');\n }\n set min(value: Date | null | number | string) {\n this._setOption('min', value);\n }\n\n @Input()\n get minZoomLevel(): CalendarZoomLevel {\n return this._getOption('minZoomLevel');\n }\n set minZoomLevel(value: CalendarZoomLevel) {\n this._setOption('minZoomLevel', value);\n }\n\n @Input()\n get name(): string {\n return this._getOption('name');\n }\n set name(value: string) {\n this._setOption('name', value);\n }\n\n @Input()\n get onDisposing(): ((e: DisposingEvent) => void) {\n return this._getOption('onDisposing');\n }\n set onDisposing(value: ((e: DisposingEvent) => void)) {\n this._setOption('onDisposing', value);\n }\n\n @Input()\n get onInitialized(): ((e: InitializedEvent) => void) {\n return this._getOption('onInitialized');\n }\n set onInitialized(value: ((e: InitializedEvent) => void)) {\n this._setOption('onInitialized', value);\n }\n\n @Input()\n get onOptionChanged(): ((e: OptionChangedEvent) => void) {\n return this._getOption('onOptionChanged');\n }\n set onOptionChanged(value: ((e: OptionChangedEvent) => void)) {\n this._setOption('onOptionChanged', value);\n }\n\n @Input()\n get onValueChanged(): ((e: ValueChangedEvent) => void) {\n return this._getOption('onValueChanged');\n }\n set onValueChanged(value: ((e: ValueChangedEvent) => void)) {\n this._setOption('onValueChanged', value);\n }\n\n @Input()\n get readOnly(): boolean {\n return this._getOption('readOnly');\n }\n set readOnly(value: boolean) {\n this._setOption('readOnly', value);\n }\n\n @Input()\n get rtlEnabled(): boolean {\n return this._getOption('rtlEnabled');\n }\n set rtlEnabled(value: boolean) {\n this._setOption('rtlEnabled', value);\n }\n\n @Input()\n get selectionMode(): CalendarSelectionMode {\n return this._getOption('selectionMode');\n }\n set selectionMode(value: CalendarSelectionMode) {\n this._setOption('selectionMode', value);\n }\n\n @Input()\n get selectWeekOnClick(): boolean {\n return this._getOption('selectWeekOnClick');\n }\n set selectWeekOnClick(value: boolean) {\n this._setOption('selectWeekOnClick', value);\n }\n\n @Input()\n get showTodayButton(): boolean {\n return this._getOption('showTodayButton');\n }\n set showTodayButton(value: boolean) {\n this._setOption('showTodayButton', value);\n }\n\n @Input()\n get showWeekNumbers(): boolean {\n return this._getOption('showWeekNumbers');\n }\n set showWeekNumbers(value: boolean) {\n this._setOption('showWeekNumbers', value);\n }\n\n @Input()\n get tabIndex(): number {\n return this._getOption('tabIndex');\n }\n set tabIndex(value: number) {\n this._setOption('tabIndex', value);\n }\n\n @Input()\n get todayButtonText(): string {\n return this._getOption('todayButtonText');\n }\n set todayButtonText(value: string) {\n this._setOption('todayButtonText', value);\n }\n\n @Input()\n get validationError(): any {\n return this._getOption('validationError');\n }\n set validationError(value: any) {\n this._setOption('validationError', value);\n }\n\n @Input()\n get validationErrors(): Array<any> {\n return this._getOption('validationErrors');\n }\n set validationErrors(value: Array<any>) {\n this._setOption('validationErrors', value);\n }\n\n @Input()\n get validationMessageMode(): ValidationMessageMode {\n return this._getOption('validationMessageMode');\n }\n set validationMessageMode(value: ValidationMessageMode) {\n this._setOption('validationMessageMode', value);\n }\n\n @Input()\n get validationMessagePosition(): Position {\n return this._getOption('validationMessagePosition');\n }\n set validationMessagePosition(value: Position) {\n this._setOption('validationMessagePosition', value);\n }\n\n @Input()\n get validationStatus(): ValidationStatus {\n return this._getOption('validationStatus');\n }\n set validationStatus(value: ValidationStatus) {\n this._setOption('validationStatus', value);\n }\n\n @Input()\n get value(): Array<Date | null | number | string> | Date | null | number | string {\n return this._getOption('value');\n }\n set value(value: Array<Date | null | number | string> | Date | null | number | string) {\n this._setOption('value', value);\n }\n\n @Input()\n get visible(): boolean {\n return this._getOption('visible');\n }\n set visible(value: boolean) {\n this._setOption('visible', value);\n }\n\n @Input()\n get weekNumberRule(): WeekNumberRule {\n return this._getOption('weekNumberRule');\n }\n set weekNumberRule(value: WeekNumberRule) {\n this._setOption('weekNumberRule', value);\n }\n\n @Input()\n get width(): number | string | undefined {\n return this._getOption('width');\n }\n set width(value: number | string | undefined) {\n this._setOption('width', value);\n }\n\n @Input()\n get zoomLevel(): CalendarZoomLevel {\n return this._getOption('zoomLevel');\n }\n set zoomLevel(value: CalendarZoomLevel) {\n this._setOption('zoomLevel', value);\n }\n\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() valueChange: EventEmitter<Array<Date | null | number | string> | Date | null | number | string>;\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() zoomLevelChange: EventEmitter<CalendarZoomLevel>;\n protected get _optionPath() {\n return 'calendarOptions';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n this._createEventEmitters([\n { emit: 'valueChange' },\n { emit: 'zoomLevelChange' }\n ]);\n\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxCalendarOptionsComponent\n ],\n exports: [\n DxoDateBoxCalendarOptionsComponent\n ],\n})\nexport class DxoDateBoxCalendarOptionsModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { CollisionResolution } from 'devextreme/common/core/animation';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-collision',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxCollisionComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get x(): CollisionResolution {\n return this._getOption('x');\n }\n set x(value: CollisionResolution) {\n this._setOption('x', value);\n }\n\n @Input()\n get y(): CollisionResolution {\n return this._getOption('y');\n }\n set y(value: CollisionResolution) {\n this._setOption('y', value);\n }\n\n\n protected get _optionPath() {\n return 'collision';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxCollisionComponent\n ],\n exports: [\n DxoDateBoxCollisionComponent\n ],\n})\nexport class DxoDateBoxCollisionModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { Format } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-display-format',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxDisplayFormatComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get currency(): string {\n return this._getOption('currency');\n }\n set currency(value: string) {\n this._setOption('currency', value);\n }\n\n @Input()\n get formatter(): ((value: number | Date) => string) {\n return this._getOption('formatter');\n }\n set formatter(value: ((value: number | Date) => string)) {\n this._setOption('formatter', value);\n }\n\n @Input()\n get parser(): ((value: string) => number | Date) {\n return this._getOption('parser');\n }\n set parser(value: ((value: string) => number | Date)) {\n this._setOption('parser', value);\n }\n\n @Input()\n get precision(): number {\n return this._getOption('precision');\n }\n set precision(value: number) {\n this._setOption('precision', value);\n }\n\n @Input()\n get type(): Format | string {\n return this._getOption('type');\n }\n set type(value: Format | string) {\n this._setOption('type', value);\n }\n\n @Input()\n get useCurrencyAccountingStyle(): boolean {\n return this._getOption('useCurrencyAccountingStyle');\n }\n set useCurrencyAccountingStyle(value: boolean) {\n this._setOption('useCurrencyAccountingStyle', value);\n }\n\n\n protected get _optionPath() {\n return 'displayFormat';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxDisplayFormatComponent\n ],\n exports: [\n DxoDateBoxDisplayFormatComponent\n ],\n})\nexport class DxoDateBoxDisplayFormatModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input,\n Output,\n EventEmitter,\n ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type dxOverlay from 'devextreme/ui/overlay';\nimport type DOMComponent from 'devextreme/core/dom_component';\nimport type { AnimationConfig, PositionConfig } from 'devextreme/common/core/animation';\nimport type { event } from 'devextreme/events/events.types';\nimport type { EventInfo } from 'devextreme/common/core/events';\nimport type { Component as CoreComponent } from 'devextreme/core/component';\nimport type { PositionAlignment } from 'devextreme/common';\nimport type { default as dxPopup, dxPopupToolbarItem } from 'devextreme/ui/popup';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n CollectionNestedOption,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_toolbarItems,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxo-date-box-drop-down-options',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxDropDownOptionsComponent extends NestedOption implements OnDestroy, OnInit {\n @ContentChildren(PROPERTY_TOKEN_toolbarItems)\n set _toolbarItemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('toolbarItems', value);\n }\n \n @Input()\n get accessKey(): string | undefined {\n return this._getOption('accessKey');\n }\n set accessKey(value: string | undefined) {\n this._setOption('accessKey', value);\n }\n\n @Input()\n get animation(): { hide?: AnimationConfig, show?: AnimationConfig } {\n return this._getOption('animation');\n }\n set animation(value: { hide?: AnimationConfig, show?: AnimationConfig }) {\n this._setOption('animation', value);\n }\n\n @Input()\n get container(): any | string | undefined {\n return this._getOption('container');\n }\n set container(value: any | string | undefined) {\n this._setOption('container', value);\n }\n\n @Input()\n get contentTemplate(): any {\n return this._getOption('contentTemplate');\n }\n set contentTemplate(value: any) {\n this._setOption('contentTemplate', value);\n }\n\n @Input()\n get deferRendering(): boolean {\n return this._getOption('deferRendering');\n }\n set deferRendering(value: boolean) {\n this._setOption('deferRendering', value);\n }\n\n @Input()\n get disabled(): boolean {\n return this._getOption('disabled');\n }\n set disabled(value: boolean) {\n this._setOption('disabled', value);\n }\n\n @Input()\n get dragAndResizeArea(): any | string | undefined {\n return this._getOption('dragAndResizeArea');\n }\n set dragAndResizeArea(value: any | string | undefined) {\n this._setOption('dragAndResizeArea', value);\n }\n\n @Input()\n get dragEnabled(): boolean {\n return this._getOption('dragEnabled');\n }\n set dragEnabled(value: boolean) {\n this._setOption('dragEnabled', value);\n }\n\n @Input()\n get dragOutsideBoundary(): boolean {\n return this._getOption('dragOutsideBoundary');\n }\n set dragOutsideBoundary(value: boolean) {\n this._setOption('dragOutsideBoundary', value);\n }\n\n @Input()\n get enableBodyScroll(): boolean {\n return this._getOption('enableBodyScroll');\n }\n set enableBodyScroll(value: boolean) {\n this._setOption('enableBodyScroll', value);\n }\n\n @Input()\n get focusStateEnabled(): boolean {\n return this._getOption('focusStateEnabled');\n }\n set focusStateEnabled(value: boolean) {\n this._setOption('focusStateEnabled', value);\n }\n\n @Input()\n get fullScreen(): boolean {\n return this._getOption('fullScreen');\n }\n set fullScreen(value: boolean) {\n this._setOption('fullScreen', value);\n }\n\n @Input()\n get height(): number | string {\n return this._getOption('height');\n }\n set height(value: number | string) {\n this._setOption('height', value);\n }\n\n @Input()\n get hideOnOutsideClick(): boolean | ((event: event) => boolean) {\n return this._getOption('hideOnOutsideClick');\n }\n set hideOnOutsideClick(value: boolean | ((event: event) => boolean)) {\n this._setOption('hideOnOutsideClick', value);\n }\n\n @Input()\n get hideOnParentScroll(): boolean {\n return this._getOption('hideOnParentScroll');\n }\n set hideOnParentScroll(value: boolean) {\n this._setOption('hideOnParentScroll', value);\n }\n\n @Input()\n get hint(): string | undefined {\n return this._getOption('hint');\n }\n set hint(value: string | undefined) {\n this._setOption('hint', value);\n }\n\n @Input()\n get hoverStateEnabled(): boolean {\n return this._getOption('hoverStateEnabled');\n }\n set hoverStateEnabled(value: boolean) {\n this._setOption('hoverStateEnabled', value);\n }\n\n @Input()\n get maxHeight(): number | string {\n return this._getOption('maxHeight');\n }\n set maxHeight(value: number | string) {\n this._setOption('maxHeight', value);\n }\n\n @Input()\n get maxWidth(): number | string {\n return this._getOption('maxWidth');\n }\n set maxWidth(value: number | string) {\n this._setOption('maxWidth', value);\n }\n\n @Input()\n get minHeight(): number | string {\n return this._getOption('minHeight');\n }\n set minHeight(value: number | string) {\n this._setOption('minHeight', value);\n }\n\n @Input()\n get minWidth(): number | string {\n return this._getOption('minWidth');\n }\n set minWidth(value: number | string) {\n this._setOption('minWidth', value);\n }\n\n @Input()\n get onContentReady(): ((e: EventInfo<any>) => void) {\n return this._getOption('onContentReady');\n }\n set onContentReady(value: ((e: EventInfo<any>) => void)) {\n this._setOption('onContentReady', value);\n }\n\n @Input()\n get onDisposing(): ((e: EventInfo<any>) => void) {\n return this._getOption('onDisposing');\n }\n set onDisposing(value: ((e: EventInfo<any>) => void)) {\n this._setOption('onDisposing', value);\n }\n\n @Input()\n get onHidden(): ((e: EventInfo<any>) => void) {\n return this._getOption('onHidden');\n }\n set onHidden(value: ((e: EventInfo<any>) => void)) {\n this._setOption('onHidden', value);\n }\n\n @Input()\n get onHiding(): ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void) {\n return this._getOption('onHiding');\n }\n set onHiding(value: ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void)) {\n this._setOption('onHiding', value);\n }\n\n @Input()\n get onInitialized(): ((e: { component: CoreComponent<any>, element: any }) => void) {\n return this._getOption('onInitialized');\n }\n set onInitialized(value: ((e: { component: CoreComponent<any>, element: any }) => void)) {\n this._setOption('onInitialized', value);\n }\n\n @Input()\n get onOptionChanged(): ((e: { component: DOMComponent, element: any, fullName: string, model: any, name: string, previousValue: any, value: any }) => void) {\n return this._getOption('onOptionChanged');\n }\n set onOptionChanged(value: ((e: { component: DOMComponent, element: any, fullName: string, model: any, name: string, previousValue: any, value: any }) => void)) {\n this._setOption('onOptionChanged', value);\n }\n\n @Input()\n get onResize(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {\n return this._getOption('onResize');\n }\n set onResize(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {\n this._setOption('onResize', value);\n }\n\n @Input()\n get onResizeEnd(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {\n return this._getOption('onResizeEnd');\n }\n set onResizeEnd(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {\n this._setOption('onResizeEnd', value);\n }\n\n @Input()\n get onResizeStart(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {\n return this._getOption('onResizeStart');\n }\n set onResizeStart(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {\n this._setOption('onResizeStart', value);\n }\n\n @Input()\n get onShowing(): ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void) {\n return this._getOption('onShowing');\n }\n set onShowing(value: ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void)) {\n this._setOption('onShowing', value);\n }\n\n @Input()\n get onShown(): ((e: EventInfo<any>) => void) {\n return this._getOption('onShown');\n }\n set onShown(value: ((e: EventInfo<any>) => void)) {\n this._setOption('onShown', value);\n }\n\n @Input()\n get onTitleRendered(): ((e: { component: dxPopup, element: any, model: any, titleElement: any }) => void) {\n return this._getOption('onTitleRendered');\n }\n set onTitleRendered(value: ((e: { component: dxPopup, element: any, model: any, titleElement: any }) => void)) {\n this._setOption('onTitleRendered', value);\n }\n\n @Input()\n get position(): Function | PositionAlignment | PositionConfig {\n return this._getOption('position');\n }\n set position(value: Function | PositionAlignment | PositionConfig) {\n this._setOption('position', value);\n }\n\n @Input()\n get resizeEnabled(): boolean {\n return this._getOption('resizeEnabled');\n }\n set resizeEnabled(value: boolean) {\n this._setOption('resizeEnabled', value);\n }\n\n @Input()\n get restorePosition(): boolean {\n return this._getOption('restorePosition');\n }\n set restorePosition(value: boolean) {\n this._setOption('restorePosition', value);\n }\n\n @Input()\n get rtlEnabled(): boolean {\n return this._getOption('rtlEnabled');\n }\n set rtlEnabled(value: boolean) {\n this._setOption('rtlEnabled', value);\n }\n\n @Input()\n get shading(): boolean {\n return this._getOption('shading');\n }\n set shading(value: boolean) {\n this._setOption('shading', value);\n }\n\n @Input()\n get shadingColor(): string {\n return this._getOption('shadingColor');\n }\n set shadingColor(value: string) {\n this._setOption('shadingColor', value);\n }\n\n @Input()\n get showCloseButton(): boolean {\n return this._getOption('showCloseButton');\n }\n set showCloseButton(value: boolean) {\n this._setOption('showCloseButton', value);\n }\n\n @Input()\n get showTitle(): boolean {\n return this._getOption('showTitle');\n }\n set showTitle(value: boolean) {\n this._setOption('showTitle', value);\n }\n\n @Input()\n get tabFocusLoopEnabled(): boolean {\n return this._getOption('tabFocusLoopEnabled');\n }\n set tabFocusLoopEnabled(value: boolean) {\n this._setOption('tabFocusLoopEnabled', value);\n }\n\n @Input()\n get tabIndex(): number {\n return this._getOption('tabIndex');\n }\n set tabIndex(value: number) {\n this._setOption('tabIndex', value);\n }\n\n @Input()\n get title(): string {\n return this._getOption('title');\n }\n set title(value: string) {\n this._setOption('title', value);\n }\n\n @Input()\n get titleTemplate(): any {\n return this._getOption('titleTemplate');\n }\n set titleTemplate(value: any) {\n this._setOption('titleTemplate', value);\n }\n\n @Input()\n get toolbarItems(): Array<dxPopupToolbarItem> {\n return this._getOption('toolbarItems');\n }\n set toolbarItems(value: Array<dxPopupToolbarItem>) {\n this._setOption('toolbarItems', value);\n }\n\n @Input()\n get visible(): boolean {\n return this._getOption('visible');\n }\n set visible(value: boolean) {\n this._setOption('visible', value);\n }\n\n @Input()\n get width(): number | string {\n return this._getOption('width');\n }\n set width(value: number | string) {\n this._setOption('width', value);\n }\n\n @Input()\n get wrapperAttr(): any {\n return this._getOption('wrapperAttr');\n }\n set wrapperAttr(value: any) {\n this._setOption('wrapperAttr', value);\n }\n\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() heightChange: EventEmitter<number | string>;\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() positionChange: EventEmitter<Function | PositionAlignment | PositionConfig>;\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() visibleChange: EventEmitter<boolean>;\n\n /**\n \n * This member supports the internal infrastructure and is not intended to be used directly from your code.\n \n */\n @Output() widthChange: EventEmitter<number | string>;\n protected get _optionPath() {\n return 'dropDownOptions';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n this._createEventEmitters([\n { emit: 'heightChange' },\n { emit: 'positionChange' },\n { emit: 'visibleChange' },\n { emit: 'widthChange' }\n ]);\n\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxDropDownOptionsComponent\n ],\n exports: [\n DxoDateBoxDropDownOptionsComponent\n ],\n})\nexport class DxoDateBoxDropDownOptionsModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { PositionConfig } from 'devextreme/common/core/animation';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-from',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxFromComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get left(): number {\n return this._getOption('left');\n }\n set left(value: number) {\n this._setOption('left', value);\n }\n\n @Input()\n get opacity(): number {\n return this._getOption('opacity');\n }\n set opacity(value: number) {\n this._setOption('opacity', value);\n }\n\n @Input()\n get position(): PositionConfig {\n return this._getOption('position');\n }\n set position(value: PositionConfig) {\n this._setOption('position', value);\n }\n\n @Input()\n get scale(): number {\n return this._getOption('scale');\n }\n set scale(value: number) {\n this._setOption('scale', value);\n }\n\n @Input()\n get top(): number {\n return this._getOption('top');\n }\n set top(value: number) {\n this._setOption('top', value);\n }\n\n\n protected get _optionPath() {\n return 'from';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxFromComponent\n ],\n exports: [\n DxoDateBoxFromComponent\n ],\n})\nexport class DxoDateBoxFromModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { AnimationConfig, AnimationState, AnimationType } from 'devextreme/common/core/animation';\nimport type { Direction } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-hide',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxHideComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get complete(): (($element: any, config: AnimationConfig) => void) {\n return this._getOption('complete');\n }\n set complete(value: (($element: any, config: AnimationConfig) => void)) {\n this._setOption('complete', value);\n }\n\n @Input()\n get delay(): number {\n return this._getOption('delay');\n }\n set delay(value: number) {\n this._setOption('delay', value);\n }\n\n @Input()\n get direction(): Direction | undefined {\n return this._getOption('direction');\n }\n set direction(value: Direction | undefined) {\n this._setOption('direction', value);\n }\n\n @Input()\n get duration(): number {\n return this._getOption('duration');\n }\n set duration(value: number) {\n this._setOption('duration', value);\n }\n\n @Input()\n get easing(): string {\n return this._getOption('easing');\n }\n set easing(value: string) {\n this._setOption('easing', value);\n }\n\n @Input()\n get from(): AnimationState {\n return this._getOption('from');\n }\n set from(value: AnimationState) {\n this._setOption('from', value);\n }\n\n @Input()\n get staggerDelay(): number | undefined {\n return this._getOption('staggerDelay');\n }\n set staggerDelay(value: number | undefined) {\n this._setOption('staggerDelay', value);\n }\n\n @Input()\n get start(): (($element: any, config: AnimationConfig) => void) {\n return this._getOption('start');\n }\n set start(value: (($element: any, config: AnimationConfig) => void)) {\n this._setOption('start', value);\n }\n\n @Input()\n get to(): AnimationState {\n return this._getOption('to');\n }\n set to(value: AnimationState) {\n this._setOption('to', value);\n }\n\n @Input()\n get type(): AnimationType {\n return this._getOption('type');\n }\n set type(value: AnimationType) {\n this._setOption('type', value);\n }\n\n\n protected get _optionPath() {\n return 'hide';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n }\n\n\n ngOnInit() {\n this._addRecreatedComponent();\n }\n\n ngOnDestroy() {\n this._addRemovedOption(this._getOptionPath());\n }\n\n\n}\n\n@NgModule({\n imports: [\n DxoDateBoxHideComponent\n ],\n exports: [\n DxoDateBoxHideComponent\n ],\n})\nexport class DxoDateBoxHideModule { }\n","/*!\n * devextreme-angular\n * Version: 26.1.3\n * Build date: Wed Jun 10 2026\n *\n * Copyright (c) 2012 - 2026 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\n */\n\n/* tslint:disable:max-line-length */\n\n\nimport {\n Component,\n OnInit,\n OnDestroy,\n NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { HorizontalAlignment, VerticalAlignment } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-date-box-my',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoDateBoxMyComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get x(): HorizontalAlignment {\n return this._getOption('x');\n }\n set x(value: HorizontalAlignment) {\n this._setOption('x', value);\n }\n\n @Input()\n get y(): VerticalAlignment {\n return this._getOption('y');\n }\n set y(value: VerticalAlignment) {\n this._setOption('y', value);\n }\n\n\n protected get _optionPath() {\n return