devextreme-angular
Version:
DevExtreme UI and Visualization Components for Angular
1 lines • 309 kB
Source Map (JSON)
{"version":3,"file":"devextreme-angular-ui-scheduler-nested.mjs","sources":["../../../dist/ui/scheduler/nested/ai-options.ts","../../../dist/ui/scheduler/nested/appointment-dragging.ts","../../../dist/ui/scheduler/nested/async-rule-dxi.ts","../../../dist/ui/scheduler/nested/button-item-dxi.ts","../../../dist/ui/scheduler/nested/button-options.ts","../../../dist/ui/scheduler/nested/col-count-by-screen.ts","../../../dist/ui/scheduler/nested/compare-rule-dxi.ts","../../../dist/ui/scheduler/nested/custom-rule-dxi.ts","../../../dist/ui/scheduler/nested/editing.ts","../../../dist/ui/scheduler/nested/email-rule-dxi.ts","../../../dist/ui/scheduler/nested/empty-item-dxi.ts","../../../dist/ui/scheduler/nested/form.ts","../../../dist/ui/scheduler/nested/group-item-dxi.ts","../../../dist/ui/scheduler/nested/item-dxi.ts","../../../dist/ui/scheduler/nested/label.ts","../../../dist/ui/scheduler/nested/numeric-rule-dxi.ts","../../../dist/ui/scheduler/nested/options-item-dxi.ts","../../../dist/ui/scheduler/nested/options.ts","../../../dist/ui/scheduler/nested/pattern-rule-dxi.ts","../../../dist/ui/scheduler/nested/range-rule-dxi.ts","../../../dist/ui/scheduler/nested/required-rule-dxi.ts","../../../dist/ui/scheduler/nested/resource-dxi.ts","../../../dist/ui/scheduler/nested/scrolling.ts","../../../dist/ui/scheduler/nested/simple-item-dxi.ts","../../../dist/ui/scheduler/nested/string-length-rule-dxi.ts","../../../dist/ui/scheduler/nested/tab-dxi.ts","../../../dist/ui/scheduler/nested/tab-panel-options-item-dxi.ts","../../../dist/ui/scheduler/nested/tab-panel-options.ts","../../../dist/ui/scheduler/nested/tabbed-item-dxi.ts","../../../dist/ui/scheduler/nested/toolbar-item-dxi.ts","../../../dist/ui/scheduler/nested/toolbar.ts","../../../dist/ui/scheduler/nested/validation-rule-dxi.ts","../../../dist/ui/scheduler/nested/view-dxi.ts","../../../dist/ui/scheduler/nested/index.ts","../../../dist/ui/scheduler/nested/devextreme-angular-ui-scheduler-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\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-scheduler-ai-options',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoSchedulerAIOptionsComponent extends NestedOption implements OnDestroy, OnInit {\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 instruction(): string | undefined {\n return this._getOption('instruction');\n }\n set instruction(value: string | undefined) {\n this._setOption('instruction', value);\n }\n\n\n protected get _optionPath() {\n return 'aiOptions';\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 DxoSchedulerAIOptionsComponent\n ],\n exports: [\n DxoSchedulerAIOptionsComponent\n ],\n})\nexport class DxoSchedulerAIOptionsModule { }\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 dxScheduler from 'devextreme/ui/scheduler';\nimport type dxSortable from 'devextreme/ui/sortable';\nimport type dxDraggable from 'devextreme/ui/draggable';\nimport type { event } from 'devextreme/events/events.types';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-scheduler-appointment-dragging',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoSchedulerAppointmentDraggingComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get autoScroll(): boolean {\n return this._getOption('autoScroll');\n }\n set autoScroll(value: boolean) {\n this._setOption('autoScroll', value);\n }\n\n @Input()\n get data(): any | undefined {\n return this._getOption('data');\n }\n set data(value: any | undefined) {\n this._setOption('data', value);\n }\n\n @Input()\n get group(): string | undefined {\n return this._getOption('group');\n }\n set group(value: string | undefined) {\n this._setOption('group', value);\n }\n\n @Input()\n get onAdd(): ((e: { component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any }) => void) {\n return this._getOption('onAdd');\n }\n set onAdd(value: ((e: { component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any }) => void)) {\n this._setOption('onAdd', value);\n }\n\n @Input()\n get onDragEnd(): ((e: { cancel: boolean, component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any, toItemData: any }) => void) {\n return this._getOption('onDragEnd');\n }\n set onDragEnd(value: ((e: { cancel: boolean, component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any, toItemData: any }) => void)) {\n this._setOption('onDragEnd', value);\n }\n\n @Input()\n get onDragMove(): ((e: { cancel: boolean, component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any }) => void) {\n return this._getOption('onDragMove');\n }\n set onDragMove(value: ((e: { cancel: boolean, component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable, toData: any }) => void)) {\n this._setOption('onDragMove', value);\n }\n\n @Input()\n get onDragStart(): ((e: { cancel: boolean, component: dxScheduler, event: event, fromData: any, itemData: any, itemElement: any }) => void) {\n return this._getOption('onDragStart');\n }\n set onDragStart(value: ((e: { cancel: boolean, component: dxScheduler, event: event, fromData: any, itemData: any, itemElement: any }) => void)) {\n this._setOption('onDragStart', value);\n }\n\n @Input()\n get onRemove(): ((e: { component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable }) => void) {\n return this._getOption('onRemove');\n }\n set onRemove(value: ((e: { component: dxScheduler, event: event, fromComponent: dxSortable | dxDraggable, fromData: any, itemData: any, itemElement: any, toComponent: dxSortable | dxDraggable }) => void)) {\n this._setOption('onRemove', value);\n }\n\n @Input()\n get scrollSensitivity(): number {\n return this._getOption('scrollSensitivity');\n }\n set scrollSensitivity(value: number) {\n this._setOption('scrollSensitivity', value);\n }\n\n @Input()\n get scrollSpeed(): number {\n return this._getOption('scrollSpeed');\n }\n set scrollSpeed(value: number) {\n this._setOption('scrollSpeed', value);\n }\n\n\n protected get _optionPath() {\n return 'appointmentDragging';\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 DxoSchedulerAppointmentDraggingComponent\n ],\n exports: [\n DxoSchedulerAppointmentDraggingComponent\n ],\n})\nexport class DxoSchedulerAppointmentDraggingModule { }\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 { ValidationRuleType } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_validationRules } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-async-rule',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_validationRules,\n useExisting: DxiSchedulerAsyncRuleComponent,\n }\n ]\n})\nexport class DxiSchedulerAsyncRuleComponent extends CollectionNestedOption {\n @Input()\n get ignoreEmptyValue(): boolean {\n return this._getOption('ignoreEmptyValue');\n }\n set ignoreEmptyValue(value: boolean) {\n this._setOption('ignoreEmptyValue', value);\n }\n\n @Input()\n get message(): string {\n return this._getOption('message');\n }\n set message(value: string) {\n this._setOption('message', value);\n }\n\n @Input()\n get reevaluate(): boolean {\n return this._getOption('reevaluate');\n }\n set reevaluate(value: boolean) {\n this._setOption('reevaluate', value);\n }\n\n @Input()\n get type(): ValidationRuleType {\n return this._getOption('type');\n }\n set type(value: ValidationRuleType) {\n this._setOption('type', value);\n }\n\n @Input()\n get validationCallback(): ((options: { column: Record<string, any>, data: Record<string, any>, formItem: Record<string, any>, rule: Record<string, any>, validator: Record<string, any>, value: any }) => any) {\n return this._getOption('validationCallback');\n }\n set validationCallback(value: ((options: { column: Record<string, any>, data: Record<string, any>, formItem: Record<string, any>, rule: Record<string, any>, validator: Record<string, any>, value: any }) => any)) {\n this._setOption('validationCallback', value);\n }\n\n\n protected get _optionPath() {\n return 'validationRules';\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 this.type = 'async';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerAsyncRuleComponent\n ],\n exports: [\n DxiSchedulerAsyncRuleComponent\n ],\n})\nexport class DxiSchedulerAsyncRuleModule { }\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 { dxButtonOptions } from 'devextreme/ui/button';\nimport type { HorizontalAlignment, VerticalAlignment } from 'devextreme/common';\nimport type { FormItemType, FormPredefinedButtonItem } from 'devextreme/ui/form';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_items } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-button-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_items,\n useExisting: DxiSchedulerButtonItemComponent,\n }\n ]\n})\nexport class DxiSchedulerButtonItemComponent extends CollectionNestedOption {\n @Input()\n get buttonOptions(): dxButtonOptions | undefined {\n return this._getOption('buttonOptions');\n }\n set buttonOptions(value: dxButtonOptions | undefined) {\n this._setOption('buttonOptions', value);\n }\n\n @Input()\n get colSpan(): number | undefined {\n return this._getOption('colSpan');\n }\n set colSpan(value: number | undefined) {\n this._setOption('colSpan', value);\n }\n\n @Input()\n get cssClass(): string | undefined {\n return this._getOption('cssClass');\n }\n set cssClass(value: string | undefined) {\n this._setOption('cssClass', value);\n }\n\n @Input()\n get horizontalAlignment(): HorizontalAlignment {\n return this._getOption('horizontalAlignment');\n }\n set horizontalAlignment(value: HorizontalAlignment) {\n this._setOption('horizontalAlignment', value);\n }\n\n @Input()\n get itemType(): FormItemType {\n return this._getOption('itemType');\n }\n set itemType(value: FormItemType) {\n this._setOption('itemType', value);\n }\n\n @Input()\n get name(): FormPredefinedButtonItem | string | undefined {\n return this._getOption('name');\n }\n set name(value: FormPredefinedButtonItem | string | undefined) {\n this._setOption('name', value);\n }\n\n @Input()\n get verticalAlignment(): VerticalAlignment {\n return this._getOption('verticalAlignment');\n }\n set verticalAlignment(value: VerticalAlignment) {\n this._setOption('verticalAlignment', 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 visibleIndex(): number | undefined {\n return this._getOption('visibleIndex');\n }\n set visibleIndex(value: number | undefined) {\n this._setOption('visibleIndex', value);\n }\n\n\n protected get _optionPath() {\n return 'items';\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 this.itemType = 'button';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerButtonItemComponent\n ],\n exports: [\n DxiSchedulerButtonItemComponent\n ],\n})\nexport class DxiSchedulerButtonItemModule { }\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 ElementRef,\n Renderer2,\n Inject,\n AfterViewInit,\n SkipSelf,\n Input\n} from '@angular/core';\n\nimport { DOCUMENT } from '@angular/common';\n\n\nimport type { ClickEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, OptionChangedEvent } from 'devextreme/ui/button';\nimport type { ButtonStyle, ButtonType } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n extractTemplate,\n DxTemplateDirective,\n IDxTemplateHost,\n DxTemplateHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-scheduler-button-options',\n template: '<ng-content></ng-content>',\n styles: [':host { display: block; }'],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost, DxTemplateHost]\n})\nexport class DxoSchedulerButtonOptionsComponent extends NestedOption implements AfterViewInit, OnDestroy, OnInit,\n IDxTemplateHost {\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 disabled(): boolean {\n return this._getOption('disabled');\n }\n set disabled(value: boolean) {\n this._setOption('disabled', 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 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 icon(): string {\n return this._getOption('icon');\n }\n set icon(value: string) {\n this._setOption('icon', value);\n }\n\n @Input()\n get onClick(): ((e: ClickEvent) => void) {\n return this._getOption('onClick');\n }\n set onClick(value: ((e: ClickEvent) => void)) {\n this._setOption('onClick', value);\n }\n\n @Input()\n get onContentReady(): ((e: ContentReadyEvent) => void) {\n return this._getOption('onContentReady');\n }\n set onContentReady(value: ((e: ContentReadyEvent) => void)) {\n this._setOption('onContentReady', 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 rtlEnabled(): boolean {\n return this._getOption('rtlEnabled');\n }\n set rtlEnabled(value: boolean) {\n this._setOption('rtlEnabled', value);\n }\n\n @Input()\n get stylingMode(): ButtonStyle {\n return this._getOption('stylingMode');\n }\n set stylingMode(value: ButtonStyle) {\n this._setOption('stylingMode', 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 template(): any {\n return this._getOption('template');\n }\n set template(value: any) {\n this._setOption('template', value);\n }\n\n @Input()\n get text(): string {\n return this._getOption('text');\n }\n set text(value: string) {\n this._setOption('text', value);\n }\n\n @Input()\n get type(): ButtonType | string {\n return this._getOption('type');\n }\n set type(value: ButtonType | string) {\n this._setOption('type', value);\n }\n\n @Input()\n get useSubmitBehavior(): boolean {\n return this._getOption('useSubmitBehavior');\n }\n set useSubmitBehavior(value: boolean) {\n this._setOption('useSubmitBehavior', value);\n }\n\n @Input()\n get validationGroup(): string | undefined {\n return this._getOption('validationGroup');\n }\n set validationGroup(value: string | undefined) {\n this._setOption('validationGroup', 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 | undefined {\n return this._getOption('width');\n }\n set width(value: number | string | undefined) {\n this._setOption('width', value);\n }\n\n\n protected get _optionPath() {\n return 'buttonOptions';\n }\n\n\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\n @Host() optionHost: NestedOptionHost,\n private renderer: Renderer2,\n @Inject(DOCUMENT) private document: any,\n @Host() templateHost: DxTemplateHost,\n private element: ElementRef) {\n super();\n parentOptionHost.setNestedOption(this);\n optionHost.setHost(this, this._fullOptionPath.bind(this));\n templateHost.setHost(this);\n }\n\n setTemplate(template: DxTemplateDirective) {\n this.template = template;\n }\n ngAfterViewInit() {\n extractTemplate(this, this.element, this.renderer, this.document);\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 DxoSchedulerButtonOptionsComponent\n ],\n exports: [\n DxoSchedulerButtonOptionsComponent\n ],\n})\nexport class DxoSchedulerButtonOptionsModule { }\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-scheduler-col-count-by-screen',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoSchedulerColCountByScreenComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get lg(): number | undefined {\n return this._getOption('lg');\n }\n set lg(value: number | undefined) {\n this._setOption('lg', value);\n }\n\n @Input()\n get md(): number | undefined {\n return this._getOption('md');\n }\n set md(value: number | undefined) {\n this._setOption('md', value);\n }\n\n @Input()\n get sm(): number | undefined {\n return this._getOption('sm');\n }\n set sm(value: number | undefined) {\n this._setOption('sm', value);\n }\n\n @Input()\n get xs(): number | undefined {\n return this._getOption('xs');\n }\n set xs(value: number | undefined) {\n this._setOption('xs', value);\n }\n\n\n protected get _optionPath() {\n return 'colCountByScreen';\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 DxoSchedulerColCountByScreenComponent\n ],\n exports: [\n DxoSchedulerColCountByScreenComponent\n ],\n})\nexport class DxoSchedulerColCountByScreenModule { }\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 { ComparisonOperator, ValidationRuleType } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_validationRules } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-compare-rule',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_validationRules,\n useExisting: DxiSchedulerCompareRuleComponent,\n }\n ]\n})\nexport class DxiSchedulerCompareRuleComponent extends CollectionNestedOption {\n @Input()\n get comparisonTarget(): Function {\n return this._getOption('comparisonTarget');\n }\n set comparisonTarget(value: Function) {\n this._setOption('comparisonTarget', value);\n }\n\n @Input()\n get comparisonType(): ComparisonOperator {\n return this._getOption('comparisonType');\n }\n set comparisonType(value: ComparisonOperator) {\n this._setOption('comparisonType', value);\n }\n\n @Input()\n get ignoreEmptyValue(): boolean {\n return this._getOption('ignoreEmptyValue');\n }\n set ignoreEmptyValue(value: boolean) {\n this._setOption('ignoreEmptyValue', value);\n }\n\n @Input()\n get message(): string {\n return this._getOption('message');\n }\n set message(value: string) {\n this._setOption('message', value);\n }\n\n @Input()\n get type(): ValidationRuleType {\n return this._getOption('type');\n }\n set type(value: ValidationRuleType) {\n this._setOption('type', value);\n }\n\n\n protected get _optionPath() {\n return 'validationRules';\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 this.type = 'compare';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerCompareRuleComponent\n ],\n exports: [\n DxiSchedulerCompareRuleComponent\n ],\n})\nexport class DxiSchedulerCompareRuleModule { }\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 { ValidationRuleType } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_validationRules } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-custom-rule',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_validationRules,\n useExisting: DxiSchedulerCustomRuleComponent,\n }\n ]\n})\nexport class DxiSchedulerCustomRuleComponent extends CollectionNestedOption {\n @Input()\n get ignoreEmptyValue(): boolean {\n return this._getOption('ignoreEmptyValue');\n }\n set ignoreEmptyValue(value: boolean) {\n this._setOption('ignoreEmptyValue', value);\n }\n\n @Input()\n get message(): string {\n return this._getOption('message');\n }\n set message(value: string) {\n this._setOption('message', value);\n }\n\n @Input()\n get reevaluate(): boolean {\n return this._getOption('reevaluate');\n }\n set reevaluate(value: boolean) {\n this._setOption('reevaluate', value);\n }\n\n @Input()\n get type(): ValidationRuleType {\n return this._getOption('type');\n }\n set type(value: ValidationRuleType) {\n this._setOption('type', value);\n }\n\n @Input()\n get validationCallback(): ((options: { column: Record<string, any>, data: Record<string, any>, formItem: Record<string, any>, rule: Record<string, any>, validator: Record<string, any>, value: any }) => boolean) {\n return this._getOption('validationCallback');\n }\n set validationCallback(value: ((options: { column: Record<string, any>, data: Record<string, any>, formItem: Record<string, any>, rule: Record<string, any>, validator: Record<string, any>, value: any }) => boolean)) {\n this._setOption('validationCallback', value);\n }\n\n\n protected get _optionPath() {\n return 'validationRules';\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 this.type = 'custom';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerCustomRuleComponent\n ],\n exports: [\n DxiSchedulerCustomRuleComponent\n ],\n})\nexport class DxiSchedulerCustomRuleModule { }\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 { AppointmentFormProperties } from 'devextreme/ui/scheduler';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-scheduler-editing',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoSchedulerEditingComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get allowAdding(): boolean {\n return this._getOption('allowAdding');\n }\n set allowAdding(value: boolean) {\n this._setOption('allowAdding', value);\n }\n\n @Input()\n get allowDeleting(): boolean {\n return this._getOption('allowDeleting');\n }\n set allowDeleting(value: boolean) {\n this._setOption('allowDeleting', value);\n }\n\n @Input()\n get allowDragging(): boolean {\n return this._getOption('allowDragging');\n }\n set allowDragging(value: boolean) {\n this._setOption('allowDragging', value);\n }\n\n @Input()\n get allowResizing(): boolean {\n return this._getOption('allowResizing');\n }\n set allowResizing(value: boolean) {\n this._setOption('allowResizing', value);\n }\n\n @Input()\n get allowTimeZoneEditing(): boolean {\n return this._getOption('allowTimeZoneEditing');\n }\n set allowTimeZoneEditing(value: boolean) {\n this._setOption('allowTimeZoneEditing', value);\n }\n\n @Input()\n get allowUpdating(): boolean {\n return this._getOption('allowUpdating');\n }\n set allowUpdating(value: boolean) {\n this._setOption('allowUpdating', value);\n }\n\n @Input()\n get form(): AppointmentFormProperties {\n return this._getOption('form');\n }\n set form(value: AppointmentFormProperties) {\n this._setOption('form', value);\n }\n\n @Input()\n get popup(): Record<string, any> {\n return this._getOption('popup');\n }\n set popup(value: Record<string, any>) {\n this._setOption('popup', value);\n }\n\n\n protected get _optionPath() {\n return 'editing';\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 DxoSchedulerEditingComponent\n ],\n exports: [\n DxoSchedulerEditingComponent\n ],\n})\nexport class DxoSchedulerEditingModule { }\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 { ValidationRuleType } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_validationRules } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-email-rule',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_validationRules,\n useExisting: DxiSchedulerEmailRuleComponent,\n }\n ]\n})\nexport class DxiSchedulerEmailRuleComponent extends CollectionNestedOption {\n @Input()\n get ignoreEmptyValue(): boolean {\n return this._getOption('ignoreEmptyValue');\n }\n set ignoreEmptyValue(value: boolean) {\n this._setOption('ignoreEmptyValue', value);\n }\n\n @Input()\n get message(): string {\n return this._getOption('message');\n }\n set message(value: string) {\n this._setOption('message', value);\n }\n\n @Input()\n get type(): ValidationRuleType {\n return this._getOption('type');\n }\n set type(value: ValidationRuleType) {\n this._setOption('type', value);\n }\n\n\n protected get _optionPath() {\n return 'validationRules';\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 this.type = 'email';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerEmailRuleComponent\n ],\n exports: [\n DxiSchedulerEmailRuleComponent\n ],\n})\nexport class DxiSchedulerEmailRuleModule { }\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 { FormItemType } from 'devextreme/ui/form';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_items } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-scheduler-empty-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_items,\n useExisting: DxiSchedulerEmptyItemComponent,\n }\n ]\n})\nexport class DxiSchedulerEmptyItemComponent extends CollectionNestedOption {\n @Input()\n get colSpan(): number | undefined {\n return this._getOption('colSpan');\n }\n set colSpan(value: number | undefined) {\n this._setOption('colSpan', value);\n }\n\n @Input()\n get cssClass(): string | undefined {\n return this._getOption('cssClass');\n }\n set cssClass(value: string | undefined) {\n this._setOption('cssClass', value);\n }\n\n @Input()\n get itemType(): FormItemType {\n return this._getOption('itemType');\n }\n set itemType(value: FormItemType) {\n this._setOption('itemType', 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 visible(): boolean {\n return this._getOption('visible');\n }\n set visible(value: boolean) {\n this._setOption('visible', value);\n }\n\n @Input()\n get visibleIndex(): number | undefined {\n return this._getOption('visibleIndex');\n }\n set visibleIndex(value: number | undefined) {\n this._setOption('visibleIndex', value);\n }\n\n\n protected get _optionPath() {\n return 'items';\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 this.itemType = 'empty';\n \n }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiSchedulerEmptyItemComponent\n ],\n exports: [\n DxiSchedulerEmptyItemComponent\n ],\n})\nexport class DxiSchedulerEmptyItemModule { }\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 { AIIntegration } from 'devextreme/common/ai-integration';\nimport type { Mode } from 'devextreme/common';\nimport type { dxFormSimpleItem, dxFormGroupItem, dxFormTabbedItem, dxFormEmptyItem, dxFormButtonItem, LabelLocation, FormLabelMode, ContentReadyEvent, DisposingEvent, EditorEnterKeyEvent, FieldDataChangedEvent, InitializedEvent, OptionChangedEvent, SmartPastedEvent, SmartPastingEvent } from 'devextreme/ui/form';\nimport type { AppointmentFormIconsShowMode } from 'devextreme/ui/scheduler';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n CollectionNestedOption,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_items,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxo-scheduler-form',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoSchedulerFormComponent extends NestedOption implements OnDestroy, OnInit {\n @ContentChildren(PROPERTY_TOKEN_items)\n set _itemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('items', 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 activeStateEnabled(): boolean {\n return this._getOption('activeStateEnabled');\n }\n set activeStateEnabled(value: boolean) {\n this._setOption('activeStateEnabled', value);\n }\n\n @Input()\n get aiIntegration(): AIIntegration | undefined {\n return this._getOption('aiIntegration');\n }\n set aiIntegration(value: AIIntegration | undefined) {\n this._setOption('aiIntegration', value);\n }\n\n @Input()\n get alignItemLabels(): boolean {\n return this._getOption('alignItemLabels');\n }\n set alignItemLabels(value: boolean) {\n this._setOption('alignItemLabels', value);\n }\n\n @Input()\n get alignItemLabelsInAllGroups(): boolean {\n return this._getOption('alignItemLabelsInAllGroups');\n }\n set alignItemLabelsInAllGroups(value: boolean) {\n this._setOption('alignItemLabelsInAllGroups', value);\n }\n\n @Input()\n get colCount(): Mode | number {\n return this._getOption('colCount');\n }\n set colCount(value: Mode | number) {\n this._setOption('colCount', value);\n }\n\n @Input()\n get colCountByScreen(): { lg?: number | undefined, md?: number | undefined, sm?: number | undefined, xs?: number | undefined } {\n return this._getOption('colCountByScreen');\n }\n set colCountByScreen(value: { lg?: number | undefined, md?: number | undefined, sm?: number | undefined, xs?: number | undefined }) {\n this._setOption('colCountByScreen', value);\n }\n\n @Input()\n get customizeItem(): ((item: dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem) => void) {\n return this._getOption('customizeItem');\n }\n set customizeItem(value: ((item: dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem) => void)) {\n this._setOption('customizeItem', 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 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 focusStateEnabled(): boolean {\n return this._getOption('focusStateEnabled');\n }\n set focusStateEnabled(value: boolean) {\n this._setOption('focusStateEnabled', value);\n }\n\n @Input()\n get formData(): any {\n return this._getOption('formData');\n }\n set formData(value: any) {\n this._setOption('formData', 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 iconsShowMode(): AppointmentFormIconsShowMode {\n return this._getOption('iconsShowMode');\n }\n set iconsShowMode(value: AppointmentFormIconsShowMode) {\n this._setOption('iconsShowMode', 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 items(): Array<dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem> {\n return this._getOption('items');\n }\n set items(value: Array<dxFormButtonItem | dxFormEmptyItem | dxFormGroupItem | dxFormSimpleItem | dxFormTabbedItem>) {\n this._setOption('items', value);\n }\n\n @Input()\n get labelLocation(): LabelLocation {\n return this._getOption('labelLocation');\n }\n set labelLocation(value: LabelLocation) {\n this._setOption('labelLocation', value);\n }\n\n @Input()\n get labelMode(): FormLabelMode {\n return this._getOption('labelMode');\n }\n set labelMode(value: FormLabelMode) {\n this._setOption('labelMode', value);\n }\n\n @Input()\n get minColWidth(): number {\n return this._getOption('minColWidth');\n }\n set minColWidth(value: number) {\n this._setOption('minColWidth', value);\n }\n\n @Input()\n get onContentReady(): ((e: ContentReadyEvent) => void) {\n return this._getOption('onContentReady');\n }\n set onContentReady(value: ((e: ContentReadyEvent) => void)) {\n this._setOption('onContentReady', 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 onEditorEnterKey(): ((e: EditorEnterKeyEvent) => void) {\n return this._getOption('onEditorEnterKey');\n }\n set o