UNPKG

devextreme-angular

Version:

Angular UI and visualization components based on DevExtreme widgets

1 lines • 667 kB
{"version":3,"file":"devextreme-angular-ui-card-view-nested.mjs","sources":["../../../dist/ui/card-view/nested/animation.ts","../../../dist/ui/card-view/nested/async-rule-dxi.ts","../../../dist/ui/card-view/nested/at.ts","../../../dist/ui/card-view/nested/boundary-offset.ts","../../../dist/ui/card-view/nested/button-item-dxi.ts","../../../dist/ui/card-view/nested/button-options.ts","../../../dist/ui/card-view/nested/card-cover.ts","../../../dist/ui/card-view/nested/card-header-item-dxi.ts","../../../dist/ui/card-view/nested/compare-rule-dxi.ts","../../../dist/ui/card-view/nested/custom-rule-dxi.ts","../../../dist/ui/card-view/nested/email-rule-dxi.ts","../../../dist/ui/card-view/nested/numeric-rule-dxi.ts","../../../dist/ui/card-view/nested/pattern-rule-dxi.ts","../../../dist/ui/card-view/nested/range-rule-dxi.ts","../../../dist/ui/card-view/nested/required-rule-dxi.ts","../../../dist/ui/card-view/nested/string-length-rule-dxi.ts","../../../dist/ui/card-view/nested/empty-item-dxi.ts","../../../dist/ui/card-view/nested/validation-rule-dxi.ts","../../../dist/ui/card-view/nested/simple-item-dxi.ts","../../../dist/ui/card-view/nested/tabbed-item-dxi.ts","../../../dist/ui/card-view/nested/group-item-dxi.ts","../../../dist/ui/card-view/nested/tab-dxi.ts","../../../dist/ui/card-view/nested/item-dxi.ts","../../../dist/ui/card-view/nested/card-header.ts","../../../dist/ui/card-view/nested/card-view-header-filter-search.ts","../../../dist/ui/card-view/nested/card-view-header-filter-texts.ts","../../../dist/ui/card-view/nested/card-view-header-filter.ts","../../../dist/ui/card-view/nested/card-view-selection.ts","../../../dist/ui/card-view/nested/change-dxi.ts","../../../dist/ui/card-view/nested/col-count-by-screen.ts","../../../dist/ui/card-view/nested/collision.ts","../../../dist/ui/card-view/nested/column-chooser-search.ts","../../../dist/ui/card-view/nested/column-chooser-selection.ts","../../../dist/ui/card-view/nested/column-chooser.ts","../../../dist/ui/card-view/nested/column-dxi.ts","../../../dist/ui/card-view/nested/column-header-filter-search.ts","../../../dist/ui/card-view/nested/column-header-filter.ts","../../../dist/ui/card-view/nested/custom-operation-dxi.ts","../../../dist/ui/card-view/nested/dragging.ts","../../../dist/ui/card-view/nested/editing-texts.ts","../../../dist/ui/card-view/nested/editing.ts","../../../dist/ui/card-view/nested/field-dxi.ts","../../../dist/ui/card-view/nested/filter-builder.ts","../../../dist/ui/card-view/nested/filter-operation-descriptions.ts","../../../dist/ui/card-view/nested/filter-panel-texts.ts","../../../dist/ui/card-view/nested/filter-panel.ts","../../../dist/ui/card-view/nested/form-item.ts","../../../dist/ui/card-view/nested/form.ts","../../../dist/ui/card-view/nested/format.ts","../../../dist/ui/card-view/nested/from.ts","../../../dist/ui/card-view/nested/group-operation-descriptions.ts","../../../dist/ui/card-view/nested/header-filter.ts","../../../dist/ui/card-view/nested/header-panel.ts","../../../dist/ui/card-view/nested/hide.ts","../../../dist/ui/card-view/nested/label.ts","../../../dist/ui/card-view/nested/load-panel.ts","../../../dist/ui/card-view/nested/lookup.ts","../../../dist/ui/card-view/nested/my.ts","../../../dist/ui/card-view/nested/offset.ts","../../../dist/ui/card-view/nested/pager.ts","../../../dist/ui/card-view/nested/paging.ts","../../../dist/ui/card-view/nested/position.ts","../../../dist/ui/card-view/nested/remote-operations.ts","../../../dist/ui/card-view/nested/scrolling.ts","../../../dist/ui/card-view/nested/search-panel.ts","../../../dist/ui/card-view/nested/search.ts","../../../dist/ui/card-view/nested/selection.ts","../../../dist/ui/card-view/nested/show.ts","../../../dist/ui/card-view/nested/sorting.ts","../../../dist/ui/card-view/nested/tab-panel-options-item-dxi.ts","../../../dist/ui/card-view/nested/tab-panel-options.ts","../../../dist/ui/card-view/nested/texts.ts","../../../dist/ui/card-view/nested/to.ts","../../../dist/ui/card-view/nested/toolbar-item-dxi.ts","../../../dist/ui/card-view/nested/toolbar.ts","../../../dist/ui/card-view/nested/index.ts","../../../dist/ui/card-view/nested/devextreme-angular-ui-card-view-nested.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 Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { AnimationConfig } from 'devextreme/common/core/animation';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-card-view-animation',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoCardViewAnimationComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get hide(): AnimationConfig {\r\n return this._getOption('hide');\r\n }\r\n set hide(value: AnimationConfig) {\r\n this._setOption('hide', value);\r\n }\r\n\r\n @Input()\r\n get show(): AnimationConfig {\r\n return this._getOption('show');\r\n }\r\n set show(value: AnimationConfig) {\r\n this._setOption('show', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'animation';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoCardViewAnimationComponent\r\n ],\r\n exports: [\r\n DxoCardViewAnimationComponent\r\n ],\r\n})\r\nexport class DxoCardViewAnimationModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-async-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewAsyncRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get reevaluate(): boolean {\r\n return this._getOption('reevaluate');\r\n }\r\n set reevaluate(value: boolean) {\r\n this._setOption('reevaluate', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n @Input()\r\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: string | number }) => any) {\r\n return this._getOption('validationCallback');\r\n }\r\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: string | number }) => any)) {\r\n this._setOption('validationCallback', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewAsyncRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewAsyncRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewAsyncRuleModule { }\r\n","/*!\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 Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { HorizontalAlignment, VerticalAlignment } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-card-view-at',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoCardViewAtComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get x(): HorizontalAlignment {\r\n return this._getOption('x');\r\n }\r\n set x(value: HorizontalAlignment) {\r\n this._setOption('x', value);\r\n }\r\n\r\n @Input()\r\n get y(): VerticalAlignment {\r\n return this._getOption('y');\r\n }\r\n set y(value: VerticalAlignment) {\r\n this._setOption('y', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'at';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoCardViewAtComponent\r\n ],\r\n exports: [\r\n DxoCardViewAtComponent\r\n ],\r\n})\r\nexport class DxoCardViewAtModule { }\r\n","/*!\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 Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-card-view-boundary-offset',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxoCardViewBoundaryOffsetComponent extends NestedOption implements OnDestroy, OnInit {\r\n @Input()\r\n get x(): number {\r\n return this._getOption('x');\r\n }\r\n set x(value: number) {\r\n this._setOption('x', value);\r\n }\r\n\r\n @Input()\r\n get y(): number {\r\n return this._getOption('y');\r\n }\r\n set y(value: number) {\r\n this._setOption('y', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'boundaryOffset';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoCardViewBoundaryOffsetComponent\r\n ],\r\n exports: [\r\n DxoCardViewBoundaryOffsetComponent\r\n ],\r\n})\r\nexport class DxoCardViewBoundaryOffsetModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { dxButtonOptions } from 'devextreme/ui/button';\r\nimport { HorizontalAlignment, VerticalAlignment } from 'devextreme/common';\r\nimport { FormItemType } from 'devextreme/ui/form';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-button-item',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewButtonItemComponent extends CollectionNestedOption {\r\n @Input()\r\n get buttonOptions(): dxButtonOptions | undefined {\r\n return this._getOption('buttonOptions');\r\n }\r\n set buttonOptions(value: dxButtonOptions | undefined) {\r\n this._setOption('buttonOptions', value);\r\n }\r\n\r\n @Input()\r\n get colSpan(): number | undefined {\r\n return this._getOption('colSpan');\r\n }\r\n set colSpan(value: number | undefined) {\r\n this._setOption('colSpan', value);\r\n }\r\n\r\n @Input()\r\n get cssClass(): string | undefined {\r\n return this._getOption('cssClass');\r\n }\r\n set cssClass(value: string | undefined) {\r\n this._setOption('cssClass', value);\r\n }\r\n\r\n @Input()\r\n get horizontalAlignment(): HorizontalAlignment {\r\n return this._getOption('horizontalAlignment');\r\n }\r\n set horizontalAlignment(value: HorizontalAlignment) {\r\n this._setOption('horizontalAlignment', value);\r\n }\r\n\r\n @Input()\r\n get itemType(): FormItemType {\r\n return this._getOption('itemType');\r\n }\r\n set itemType(value: FormItemType) {\r\n this._setOption('itemType', value);\r\n }\r\n\r\n @Input()\r\n get name(): string | undefined {\r\n return this._getOption('name');\r\n }\r\n set name(value: string | undefined) {\r\n this._setOption('name', value);\r\n }\r\n\r\n @Input()\r\n get verticalAlignment(): VerticalAlignment {\r\n return this._getOption('verticalAlignment');\r\n }\r\n set verticalAlignment(value: VerticalAlignment) {\r\n this._setOption('verticalAlignment', value);\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 @Input()\r\n get visibleIndex(): number | undefined {\r\n return this._getOption('visibleIndex');\r\n }\r\n set visibleIndex(value: number | undefined) {\r\n this._setOption('visibleIndex', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'items';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewButtonItemComponent\r\n ],\r\n exports: [\r\n DxiCardViewButtonItemComponent\r\n ],\r\n})\r\nexport class DxiCardViewButtonItemModule { }\r\n","/*!\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 Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n ElementRef,\r\n Renderer2,\r\n Inject,\r\n AfterViewInit,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\nimport { DOCUMENT } from '@angular/common';\r\n\r\n\r\nimport { ClickEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, OptionChangedEvent } from 'devextreme/ui/button';\r\nimport { ButtonStyle, ButtonType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n extractTemplate,\r\n DxTemplateDirective,\r\n IDxTemplateHost,\r\n DxTemplateHost\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-card-view-button-options',\r\n standalone: true,\r\n template: '<ng-content></ng-content>',\r\n styles: [':host { display: block; }'],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost, DxTemplateHost]\r\n})\r\nexport class DxoCardViewButtonOptionsComponent extends NestedOption implements AfterViewInit, OnDestroy, OnInit,\r\n IDxTemplateHost {\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 @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 @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 @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 @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 @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 @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 @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 @Input()\r\n get icon(): string {\r\n return this._getOption('icon');\r\n }\r\n set icon(value: string) {\r\n this._setOption('icon', value);\r\n }\r\n\r\n @Input()\r\n get onClick(): ((e: ClickEvent) => void) {\r\n return this._getOption('onClick');\r\n }\r\n set onClick(value: ((e: ClickEvent) => void)) {\r\n this._setOption('onClick', value);\r\n }\r\n\r\n @Input()\r\n get onContentReady(): ((e: ContentReadyEvent) => void) {\r\n return this._getOption('onContentReady');\r\n }\r\n set onContentReady(value: ((e: ContentReadyEvent) => void)) {\r\n this._setOption('onContentReady', value);\r\n }\r\n\r\n @Input()\r\n get onDisposing(): ((e: DisposingEvent) => void) {\r\n return this._getOption('onDisposing');\r\n }\r\n set onDisposing(value: ((e: DisposingEvent) => void)) {\r\n this._setOption('onDisposing', value);\r\n }\r\n\r\n @Input()\r\n get onInitialized(): ((e: InitializedEvent) => void) {\r\n return this._getOption('onInitialized');\r\n }\r\n set onInitialized(value: ((e: InitializedEvent) => void)) {\r\n this._setOption('onInitialized', value);\r\n }\r\n\r\n @Input()\r\n get onOptionChanged(): ((e: OptionChangedEvent) => void) {\r\n return this._getOption('onOptionChanged');\r\n }\r\n set onOptionChanged(value: ((e: OptionChangedEvent) => void)) {\r\n this._setOption('onOptionChanged', value);\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 @Input()\r\n get stylingMode(): ButtonStyle {\r\n return this._getOption('stylingMode');\r\n }\r\n set stylingMode(value: ButtonStyle) {\r\n this._setOption('stylingMode', value);\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 @Input()\r\n get template(): any {\r\n return this._getOption('template');\r\n }\r\n set template(value: any) {\r\n this._setOption('template', value);\r\n }\r\n\r\n @Input()\r\n get text(): string {\r\n return this._getOption('text');\r\n }\r\n set text(value: string) {\r\n this._setOption('text', value);\r\n }\r\n\r\n @Input()\r\n get type(): ButtonType | string {\r\n return this._getOption('type');\r\n }\r\n set type(value: ButtonType | string) {\r\n this._setOption('type', value);\r\n }\r\n\r\n @Input()\r\n get useSubmitBehavior(): boolean {\r\n return this._getOption('useSubmitBehavior');\r\n }\r\n set useSubmitBehavior(value: boolean) {\r\n this._setOption('useSubmitBehavior', value);\r\n }\r\n\r\n @Input()\r\n get validationGroup(): string | undefined {\r\n return this._getOption('validationGroup');\r\n }\r\n set validationGroup(value: string | undefined) {\r\n this._setOption('validationGroup', value);\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 @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 protected get _optionPath() {\r\n return 'buttonOptions';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost,\r\n private renderer: Renderer2,\r\n @Inject(DOCUMENT) private document: any,\r\n @Host() templateHost: DxTemplateHost,\r\n private element: ElementRef) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n templateHost.setHost(this);\r\n }\r\n\r\n setTemplate(template: DxTemplateDirective) {\r\n this.template = template;\r\n }\r\n ngAfterViewInit() {\r\n extractTemplate(this, this.element, this.renderer, this.document);\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoCardViewButtonOptionsComponent\r\n ],\r\n exports: [\r\n DxoCardViewButtonOptionsComponent\r\n ],\r\n})\r\nexport class DxoCardViewButtonOptionsModule { }\r\n","/*!\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 Component,\r\n OnInit,\r\n OnDestroy,\r\n NgModule,\r\n Host,\r\n ElementRef,\r\n Renderer2,\r\n Inject,\r\n AfterViewInit,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\nimport { DOCUMENT } from '@angular/common';\r\n\r\n\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n extractTemplate,\r\n DxTemplateDirective,\r\n IDxTemplateHost,\r\n DxTemplateHost\r\n} from 'devextreme-angular/core';\r\nimport { NestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxo-card-view-card-cover',\r\n standalone: true,\r\n template: '<ng-content></ng-content>',\r\n styles: [':host { display: block; }'],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost, DxTemplateHost]\r\n})\r\nexport class DxoCardViewCardCoverComponent extends NestedOption implements AfterViewInit, OnDestroy, OnInit,\r\n IDxTemplateHost {\r\n @Input()\r\n get altExpr(): ((data: any) => string) | string {\r\n return this._getOption('altExpr');\r\n }\r\n set altExpr(value: ((data: any) => string) | string) {\r\n this._setOption('altExpr', value);\r\n }\r\n\r\n @Input()\r\n get aspectRatio(): string {\r\n return this._getOption('aspectRatio');\r\n }\r\n set aspectRatio(value: string) {\r\n this._setOption('aspectRatio', value);\r\n }\r\n\r\n @Input()\r\n get imageExpr(): ((data: any) => string) | string {\r\n return this._getOption('imageExpr');\r\n }\r\n set imageExpr(value: ((data: any) => string) | string) {\r\n this._setOption('imageExpr', value);\r\n }\r\n\r\n @Input()\r\n get maxHeight(): number {\r\n return this._getOption('maxHeight');\r\n }\r\n set maxHeight(value: number) {\r\n this._setOption('maxHeight', value);\r\n }\r\n\r\n @Input()\r\n get template(): any {\r\n return this._getOption('template');\r\n }\r\n set template(value: any) {\r\n this._setOption('template', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'cardCover';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost,\r\n private renderer: Renderer2,\r\n @Inject(DOCUMENT) private document: any,\r\n @Host() templateHost: DxTemplateHost,\r\n private element: ElementRef) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n templateHost.setHost(this);\r\n }\r\n\r\n setTemplate(template: DxTemplateDirective) {\r\n this.template = template;\r\n }\r\n ngAfterViewInit() {\r\n extractTemplate(this, this.element, this.renderer, this.document);\r\n }\r\n\r\n\r\n ngOnInit() {\r\n this._addRecreatedComponent();\r\n }\r\n\r\n ngOnDestroy() {\r\n this._addRemovedOption(this._getOptionPath());\r\n }\r\n\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxoCardViewCardCoverComponent\r\n ],\r\n exports: [\r\n DxoCardViewCardCoverComponent\r\n ],\r\n})\r\nexport class DxoCardViewCardCoverModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n ElementRef,\r\n Renderer2,\r\n Inject,\r\n AfterViewInit,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\nimport { DOCUMENT } from '@angular/common';\r\n\r\n\r\nimport { LocateInMenuMode, ShowTextMode } from 'devextreme/ui/toolbar';\r\nimport { ToolbarItemLocation, ToolbarItemComponent } from 'devextreme/common';\r\nimport { CardHeaderPredefinedItem } from 'devextreme/ui/card_view';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n extractTemplate,\r\n DxTemplateDirective,\r\n IDxTemplateHost,\r\n DxTemplateHost\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-card-header-item',\r\n standalone: true,\r\n template: '<ng-content></ng-content>',\r\n styles: [':host { display: block; }'],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost, DxTemplateHost]\r\n})\r\nexport class DxiCardViewCardHeaderItemComponent extends CollectionNestedOption implements AfterViewInit,\r\n IDxTemplateHost {\r\n @Input()\r\n get cssClass(): string | undefined {\r\n return this._getOption('cssClass');\r\n }\r\n set cssClass(value: string | undefined) {\r\n this._setOption('cssClass', value);\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 @Input()\r\n get html(): string {\r\n return this._getOption('html');\r\n }\r\n set html(value: string) {\r\n this._setOption('html', value);\r\n }\r\n\r\n @Input()\r\n get locateInMenu(): LocateInMenuMode {\r\n return this._getOption('locateInMenu');\r\n }\r\n set locateInMenu(value: LocateInMenuMode) {\r\n this._setOption('locateInMenu', value);\r\n }\r\n\r\n @Input()\r\n get location(): ToolbarItemLocation {\r\n return this._getOption('location');\r\n }\r\n set location(value: ToolbarItemLocation) {\r\n this._setOption('location', value);\r\n }\r\n\r\n @Input()\r\n get menuItemTemplate(): any {\r\n return this._getOption('menuItemTemplate');\r\n }\r\n set menuItemTemplate(value: any) {\r\n this._setOption('menuItemTemplate', value);\r\n }\r\n\r\n @Input()\r\n get name(): CardHeaderPredefinedItem | string {\r\n return this._getOption('name');\r\n }\r\n set name(value: CardHeaderPredefinedItem | string) {\r\n this._setOption('name', value);\r\n }\r\n\r\n @Input()\r\n get options(): any {\r\n return this._getOption('options');\r\n }\r\n set options(value: any) {\r\n this._setOption('options', value);\r\n }\r\n\r\n @Input()\r\n get showText(): ShowTextMode {\r\n return this._getOption('showText');\r\n }\r\n set showText(value: ShowTextMode) {\r\n this._setOption('showText', value);\r\n }\r\n\r\n @Input()\r\n get template(): any {\r\n return this._getOption('template');\r\n }\r\n set template(value: any) {\r\n this._setOption('template', value);\r\n }\r\n\r\n @Input()\r\n get text(): string {\r\n return this._getOption('text');\r\n }\r\n set text(value: string) {\r\n this._setOption('text', value);\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 @Input()\r\n get widget(): ToolbarItemComponent {\r\n return this._getOption('widget');\r\n }\r\n set widget(value: ToolbarItemComponent) {\r\n this._setOption('widget', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'items';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost,\r\n private renderer: Renderer2,\r\n @Inject(DOCUMENT) private document: any,\r\n @Host() templateHost: DxTemplateHost,\r\n private element: ElementRef) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n templateHost.setHost(this);\r\n }\r\n\r\n setTemplate(template: DxTemplateDirective) {\r\n this.template = template;\r\n }\r\n ngAfterViewInit() {\r\n extractTemplate(this, this.element, this.renderer, this.document);\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewCardHeaderItemComponent\r\n ],\r\n exports: [\r\n DxiCardViewCardHeaderItemComponent\r\n ],\r\n})\r\nexport class DxiCardViewCardHeaderItemModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ComparisonOperator, ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-compare-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewCompareRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get comparisonTarget(): Function {\r\n return this._getOption('comparisonTarget');\r\n }\r\n set comparisonTarget(value: Function) {\r\n this._setOption('comparisonTarget', value);\r\n }\r\n\r\n @Input()\r\n get comparisonType(): ComparisonOperator {\r\n return this._getOption('comparisonType');\r\n }\r\n set comparisonType(value: ComparisonOperator) {\r\n this._setOption('comparisonType', value);\r\n }\r\n\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewCompareRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewCompareRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewCompareRuleModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-custom-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewCustomRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get reevaluate(): boolean {\r\n return this._getOption('reevaluate');\r\n }\r\n set reevaluate(value: boolean) {\r\n this._setOption('reevaluate', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n @Input()\r\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: string | number }) => boolean) {\r\n return this._getOption('validationCallback');\r\n }\r\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: string | number }) => boolean)) {\r\n this._setOption('validationCallback', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewCustomRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewCustomRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewCustomRuleModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-email-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewEmailRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewEmailRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewEmailRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewEmailRuleModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-numeric-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewNumericRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewNumericRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewNumericRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewNumericRuleModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from 'devextreme/common';\r\n\r\nimport {\r\n DxIntegrationModule,\r\n NestedOptionHost,\r\n} from 'devextreme-angular/core';\r\nimport { CollectionNestedOption } from 'devextreme-angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'dxi-card-view-pattern-rule',\r\n standalone: true,\r\n template: '',\r\n styles: [''],\r\n imports: [ DxIntegrationModule ],\r\n providers: [NestedOptionHost]\r\n})\r\nexport class DxiCardViewPatternRuleComponent extends CollectionNestedOption {\r\n @Input()\r\n get ignoreEmptyValue(): boolean {\r\n return this._getOption('ignoreEmptyValue');\r\n }\r\n set ignoreEmptyValue(value: boolean) {\r\n this._setOption('ignoreEmptyValue', value);\r\n }\r\n\r\n @Input()\r\n get message(): string {\r\n return this._getOption('message');\r\n }\r\n set message(value: string) {\r\n this._setOption('message', value);\r\n }\r\n\r\n @Input()\r\n get pattern(): RegExp | string {\r\n return this._getOption('pattern');\r\n }\r\n set pattern(value: RegExp | string) {\r\n this._setOption('pattern', value);\r\n }\r\n\r\n @Input()\r\n get type(): ValidationRuleType {\r\n return this._getOption('type');\r\n }\r\n set type(value: ValidationRuleType) {\r\n this._setOption('type', value);\r\n }\r\n\r\n\r\n protected get _optionPath() {\r\n return 'validationRules';\r\n }\r\n\r\n\r\n constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,\r\n @Host() optionHost: NestedOptionHost) {\r\n super();\r\n parentOptionHost.setNestedOption(this);\r\n optionHost.setHost(this, this._fullOptionPath.bind(this));\r\n }\r\n\r\n\r\n\r\n ngOnDestroy() {\r\n this._deleteRemovedOptions(this._fullOptionPath());\r\n }\r\n\r\n}\r\n\r\n@NgModule({\r\n imports: [\r\n DxiCardViewPatternRuleComponent\r\n ],\r\n exports: [\r\n DxiCardViewPatternRuleComponent\r\n ],\r\n})\r\nexport class DxiCardViewPatternRuleModule { }\r\n","/*!\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 Component,\r\n NgModule,\r\n Host,\r\n SkipSelf,\r\n Input\r\n} from '@angular/core';\r\n\r\n\r\n\r\n\r\nimport { ValidationRuleType } from