UNPKG

devextreme-angular

Version:

DevExtreme UI and Visualization Components for Angular

1 lines • 78.2 kB
{"version":3,"file":"devextreme-angular-ui-file-manager-nested.mjs","sources":["../../../dist/ui/file-manager/nested/column-dxi.ts","../../../dist/ui/file-manager/nested/context-menu-item-dxi.ts","../../../dist/ui/file-manager/nested/context-menu.ts","../../../dist/ui/file-manager/nested/details.ts","../../../dist/ui/file-manager/nested/file-selection-item-dxi.ts","../../../dist/ui/file-manager/nested/item-dxi.ts","../../../dist/ui/file-manager/nested/item-view.ts","../../../dist/ui/file-manager/nested/notifications.ts","../../../dist/ui/file-manager/nested/permissions.ts","../../../dist/ui/file-manager/nested/toolbar-item-dxi.ts","../../../dist/ui/file-manager/nested/toolbar.ts","../../../dist/ui/file-manager/nested/upload.ts","../../../dist/ui/file-manager/nested/index.ts","../../../dist/ui/file-manager/nested/devextreme-angular-ui-file-manager-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 NgModule,\n Host,\n SkipSelf,\n Input\n} from '@angular/core';\n\n\n\n\nimport type { HorizontalAlignment, DataType, SortOrder } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_columns } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-file-manager-column',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_columns,\n useExisting: DxiFileManagerColumnComponent,\n }\n ]\n})\nexport class DxiFileManagerColumnComponent extends CollectionNestedOption {\n @Input()\n get alignment(): HorizontalAlignment | undefined {\n return this._getOption('alignment');\n }\n set alignment(value: HorizontalAlignment | undefined) {\n this._setOption('alignment', value);\n }\n\n @Input()\n get caption(): string | undefined {\n return this._getOption('caption');\n }\n set caption(value: string | undefined) {\n this._setOption('caption', 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 dataField(): string | undefined {\n return this._getOption('dataField');\n }\n set dataField(value: string | undefined) {\n this._setOption('dataField', value);\n }\n\n @Input()\n get dataType(): DataType | undefined {\n return this._getOption('dataType');\n }\n set dataType(value: DataType | undefined) {\n this._setOption('dataType', value);\n }\n\n @Input()\n get hidingPriority(): number | undefined {\n return this._getOption('hidingPriority');\n }\n set hidingPriority(value: number | undefined) {\n this._setOption('hidingPriority', value);\n }\n\n @Input()\n get sortIndex(): number | undefined {\n return this._getOption('sortIndex');\n }\n set sortIndex(value: number | undefined) {\n this._setOption('sortIndex', value);\n }\n\n @Input()\n get sortOrder(): SortOrder | undefined {\n return this._getOption('sortOrder');\n }\n set sortOrder(value: SortOrder | undefined) {\n this._setOption('sortOrder', 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 @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 'columns';\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 DxiFileManagerColumnComponent\n ],\n exports: [\n DxiFileManagerColumnComponent\n ],\n})\nexport class DxiFileManagerColumnModule { }\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 ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type { dxFileManagerContextMenuItem, FileManagerPredefinedContextMenuItem } from 'devextreme/ui/file_manager';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_items,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-file-manager-context-menu-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_items,\n useExisting: DxiFileManagerContextMenuItemComponent,\n }\n ]\n})\nexport class DxiFileManagerContextMenuItemComponent extends CollectionNestedOption {\n @ContentChildren(PROPERTY_TOKEN_items)\n set _itemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('items', value);\n }\n \n @Input()\n get beginGroup(): boolean {\n return this._getOption('beginGroup');\n }\n set beginGroup(value: boolean) {\n this._setOption('beginGroup', value);\n }\n\n @Input()\n get closeMenuOnClick(): boolean {\n return this._getOption('closeMenuOnClick');\n }\n set closeMenuOnClick(value: boolean) {\n this._setOption('closeMenuOnClick', 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 icon(): string {\n return this._getOption('icon');\n }\n set icon(value: string) {\n this._setOption('icon', value);\n }\n\n @Input()\n get items(): Array<dxFileManagerContextMenuItem> {\n return this._getOption('items');\n }\n set items(value: Array<dxFileManagerContextMenuItem>) {\n this._setOption('items', value);\n }\n\n @Input()\n get name(): FileManagerPredefinedContextMenuItem | string {\n return this._getOption('name');\n }\n set name(value: FileManagerPredefinedContextMenuItem | string) {\n this._setOption('name', value);\n }\n\n @Input()\n get selectable(): boolean {\n return this._getOption('selectable');\n }\n set selectable(value: boolean) {\n this._setOption('selectable', value);\n }\n\n @Input()\n get selected(): boolean {\n return this._getOption('selected');\n }\n set selected(value: boolean) {\n this._setOption('selected', 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 visible(): boolean | undefined {\n return this._getOption('visible');\n }\n set visible(value: boolean | undefined) {\n this._setOption('visible', 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 }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiFileManagerContextMenuItemComponent\n ],\n exports: [\n DxiFileManagerContextMenuItemComponent\n ],\n})\nexport class DxiFileManagerContextMenuItemModule { }\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 ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type { dxFileManagerContextMenuItem, FileManagerPredefinedContextMenuItem } from 'devextreme/ui/file_manager';\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-file-manager-context-menu',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerContextMenuComponent 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 items(): Array<dxFileManagerContextMenuItem | FileManagerPredefinedContextMenuItem> {\n return this._getOption('items');\n }\n set items(value: Array<dxFileManagerContextMenuItem | FileManagerPredefinedContextMenuItem>) {\n this._setOption('items', value);\n }\n\n\n protected get _optionPath() {\n return 'contextMenu';\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 DxoFileManagerContextMenuComponent\n ],\n exports: [\n DxoFileManagerContextMenuComponent\n ],\n})\nexport class DxoFileManagerContextMenuModule { }\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 ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type { dxFileManagerDetailsColumn } from 'devextreme/ui/file_manager';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n CollectionNestedOption,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_columns,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxo-file-manager-details',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerDetailsComponent extends NestedOption implements OnDestroy, OnInit {\n @ContentChildren(PROPERTY_TOKEN_columns)\n set _columnsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('columns', value);\n }\n \n @Input()\n get columns(): Array<dxFileManagerDetailsColumn | string> {\n return this._getOption('columns');\n }\n set columns(value: Array<dxFileManagerDetailsColumn | string>) {\n this._setOption('columns', value);\n }\n\n\n protected get _optionPath() {\n return 'details';\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 DxoFileManagerDetailsComponent\n ],\n exports: [\n DxoFileManagerDetailsComponent\n ],\n})\nexport class DxoFileManagerDetailsModule { }\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 { LocateInMenuMode, ShowTextMode } from 'devextreme/ui/toolbar';\nimport type { ToolbarItemLocation, ToolbarItemComponent } from 'devextreme/common';\nimport type { FileManagerPredefinedToolbarItem } from 'devextreme/ui/file_manager';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport { PROPERTY_TOKEN_fileSelectionItems } from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-file-manager-file-selection-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_fileSelectionItems,\n useExisting: DxiFileManagerFileSelectionItemComponent,\n }\n ]\n})\nexport class DxiFileManagerFileSelectionItemComponent extends CollectionNestedOption {\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 disabled(): boolean {\n return this._getOption('disabled');\n }\n set disabled(value: boolean) {\n this._setOption('disabled', 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 locateInMenu(): LocateInMenuMode {\n return this._getOption('locateInMenu');\n }\n set locateInMenu(value: LocateInMenuMode) {\n this._setOption('locateInMenu', value);\n }\n\n @Input()\n get location(): ToolbarItemLocation {\n return this._getOption('location');\n }\n set location(value: ToolbarItemLocation) {\n this._setOption('location', value);\n }\n\n @Input()\n get name(): FileManagerPredefinedToolbarItem | string {\n return this._getOption('name');\n }\n set name(value: FileManagerPredefinedToolbarItem | string) {\n this._setOption('name', value);\n }\n\n @Input()\n get options(): any {\n return this._getOption('options');\n }\n set options(value: any) {\n this._setOption('options', value);\n }\n\n @Input()\n get showText(): ShowTextMode {\n return this._getOption('showText');\n }\n set showText(value: ShowTextMode) {\n this._setOption('showText', 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 visible(): boolean | undefined {\n return this._getOption('visible');\n }\n set visible(value: boolean | undefined) {\n this._setOption('visible', value);\n }\n\n @Input()\n get widget(): ToolbarItemComponent {\n return this._getOption('widget');\n }\n set widget(value: ToolbarItemComponent) {\n this._setOption('widget', value);\n }\n\n\n protected get _optionPath() {\n return 'fileSelectionItems';\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 DxiFileManagerFileSelectionItemComponent\n ],\n exports: [\n DxiFileManagerFileSelectionItemComponent\n ],\n})\nexport class DxiFileManagerFileSelectionItemModule { }\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 ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type { dxFileManagerContextMenuItem, FileManagerPredefinedContextMenuItem, FileManagerPredefinedToolbarItem } from 'devextreme/ui/file_manager';\nimport type { LocateInMenuMode, ShowTextMode } from 'devextreme/ui/toolbar';\nimport type { ToolbarItemLocation, ToolbarItemComponent } from 'devextreme/common';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { CollectionNestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_items,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxi-file-manager-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_items,\n useExisting: DxiFileManagerItemComponent,\n }\n ]\n})\nexport class DxiFileManagerItemComponent extends CollectionNestedOption {\n @ContentChildren(PROPERTY_TOKEN_items)\n set _itemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('items', value);\n }\n \n @Input()\n get beginGroup(): boolean {\n return this._getOption('beginGroup');\n }\n set beginGroup(value: boolean) {\n this._setOption('beginGroup', value);\n }\n\n @Input()\n get closeMenuOnClick(): boolean {\n return this._getOption('closeMenuOnClick');\n }\n set closeMenuOnClick(value: boolean) {\n this._setOption('closeMenuOnClick', 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 icon(): string {\n return this._getOption('icon');\n }\n set icon(value: string) {\n this._setOption('icon', value);\n }\n\n @Input()\n get items(): Array<dxFileManagerContextMenuItem> {\n return this._getOption('items');\n }\n set items(value: Array<dxFileManagerContextMenuItem>) {\n this._setOption('items', value);\n }\n\n @Input()\n get name(): FileManagerPredefinedContextMenuItem | string | FileManagerPredefinedToolbarItem {\n return this._getOption('name');\n }\n set name(value: FileManagerPredefinedContextMenuItem | string | FileManagerPredefinedToolbarItem) {\n this._setOption('name', value);\n }\n\n @Input()\n get selectable(): boolean {\n return this._getOption('selectable');\n }\n set selectable(value: boolean) {\n this._setOption('selectable', value);\n }\n\n @Input()\n get selected(): boolean {\n return this._getOption('selected');\n }\n set selected(value: boolean) {\n this._setOption('selected', 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 visible(): boolean | undefined {\n return this._getOption('visible');\n }\n set visible(value: boolean | undefined) {\n this._setOption('visible', 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 locateInMenu(): LocateInMenuMode {\n return this._getOption('locateInMenu');\n }\n set locateInMenu(value: LocateInMenuMode) {\n this._setOption('locateInMenu', value);\n }\n\n @Input()\n get location(): ToolbarItemLocation {\n return this._getOption('location');\n }\n set location(value: ToolbarItemLocation) {\n this._setOption('location', value);\n }\n\n @Input()\n get options(): any {\n return this._getOption('options');\n }\n set options(value: any) {\n this._setOption('options', value);\n }\n\n @Input()\n get showText(): ShowTextMode {\n return this._getOption('showText');\n }\n set showText(value: ShowTextMode) {\n this._setOption('showText', value);\n }\n\n @Input()\n get widget(): ToolbarItemComponent {\n return this._getOption('widget');\n }\n set widget(value: ToolbarItemComponent) {\n this._setOption('widget', 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 }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiFileManagerItemComponent\n ],\n exports: [\n DxiFileManagerItemComponent\n ],\n})\nexport class DxiFileManagerItemModule { }\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 { dxFileManagerDetailsColumn, FileManagerItemViewMode } from 'devextreme/ui/file_manager';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\n\n@Component({\n selector: 'dxo-file-manager-item-view',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerItemViewComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get details(): { columns?: Array<dxFileManagerDetailsColumn | string> } {\n return this._getOption('details');\n }\n set details(value: { columns?: Array<dxFileManagerDetailsColumn | string> }) {\n this._setOption('details', value);\n }\n\n @Input()\n get mode(): FileManagerItemViewMode {\n return this._getOption('mode');\n }\n set mode(value: FileManagerItemViewMode) {\n this._setOption('mode', value);\n }\n\n @Input()\n get showFolders(): boolean {\n return this._getOption('showFolders');\n }\n set showFolders(value: boolean) {\n this._setOption('showFolders', value);\n }\n\n @Input()\n get showParentFolder(): boolean {\n return this._getOption('showParentFolder');\n }\n set showParentFolder(value: boolean) {\n this._setOption('showParentFolder', value);\n }\n\n\n protected get _optionPath() {\n return 'itemView';\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 DxoFileManagerItemViewComponent\n ],\n exports: [\n DxoFileManagerItemViewComponent\n ],\n})\nexport class DxoFileManagerItemViewModule { }\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-file-manager-notifications',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerNotificationsComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get showPanel(): boolean {\n return this._getOption('showPanel');\n }\n set showPanel(value: boolean) {\n this._setOption('showPanel', value);\n }\n\n @Input()\n get showPopup(): boolean {\n return this._getOption('showPopup');\n }\n set showPopup(value: boolean) {\n this._setOption('showPopup', value);\n }\n\n\n protected get _optionPath() {\n return 'notifications';\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 DxoFileManagerNotificationsComponent\n ],\n exports: [\n DxoFileManagerNotificationsComponent\n ],\n})\nexport class DxoFileManagerNotificationsModule { }\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-file-manager-permissions',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerPermissionsComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get copy(): boolean {\n return this._getOption('copy');\n }\n set copy(value: boolean) {\n this._setOption('copy', value);\n }\n\n @Input()\n get create(): boolean {\n return this._getOption('create');\n }\n set create(value: boolean) {\n this._setOption('create', value);\n }\n\n @Input()\n get delete(): boolean {\n return this._getOption('delete');\n }\n set delete(value: boolean) {\n this._setOption('delete', value);\n }\n\n @Input()\n get download(): boolean {\n return this._getOption('download');\n }\n set download(value: boolean) {\n this._setOption('download', value);\n }\n\n @Input()\n get move(): boolean {\n return this._getOption('move');\n }\n set move(value: boolean) {\n this._setOption('move', value);\n }\n\n @Input()\n get rename(): boolean {\n return this._getOption('rename');\n }\n set rename(value: boolean) {\n this._setOption('rename', value);\n }\n\n @Input()\n get upload(): boolean {\n return this._getOption('upload');\n }\n set upload(value: boolean) {\n this._setOption('upload', value);\n }\n\n\n protected get _optionPath() {\n return 'permissions';\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 DxoFileManagerPermissionsComponent\n ],\n exports: [\n DxoFileManagerPermissionsComponent\n ],\n})\nexport class DxoFileManagerPermissionsModule { }\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 { LocateInMenuMode, ShowTextMode } from 'devextreme/ui/toolbar';\nimport type { ToolbarItemLocation, ToolbarItemComponent } from 'devextreme/common';\nimport type { FileManagerPredefinedToolbarItem } from 'devextreme/ui/file_manager';\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-file-manager-toolbar-item',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [\n NestedOptionHost,\n {\n provide: PROPERTY_TOKEN_items,\n useExisting: DxiFileManagerToolbarItemComponent,\n }\n ]\n})\nexport class DxiFileManagerToolbarItemComponent extends CollectionNestedOption {\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 disabled(): boolean {\n return this._getOption('disabled');\n }\n set disabled(value: boolean) {\n this._setOption('disabled', 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 locateInMenu(): LocateInMenuMode {\n return this._getOption('locateInMenu');\n }\n set locateInMenu(value: LocateInMenuMode) {\n this._setOption('locateInMenu', value);\n }\n\n @Input()\n get location(): ToolbarItemLocation {\n return this._getOption('location');\n }\n set location(value: ToolbarItemLocation) {\n this._setOption('location', value);\n }\n\n @Input()\n get name(): FileManagerPredefinedToolbarItem | string {\n return this._getOption('name');\n }\n set name(value: FileManagerPredefinedToolbarItem | string) {\n this._setOption('name', value);\n }\n\n @Input()\n get options(): any {\n return this._getOption('options');\n }\n set options(value: any) {\n this._setOption('options', value);\n }\n\n @Input()\n get showText(): ShowTextMode {\n return this._getOption('showText');\n }\n set showText(value: ShowTextMode) {\n this._setOption('showText', 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 visible(): boolean | undefined {\n return this._getOption('visible');\n }\n set visible(value: boolean | undefined) {\n this._setOption('visible', value);\n }\n\n @Input()\n get widget(): ToolbarItemComponent {\n return this._getOption('widget');\n }\n set widget(value: ToolbarItemComponent) {\n this._setOption('widget', 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 }\n\n\n\n ngOnDestroy() {\n this._deleteRemovedOptions(this._fullOptionPath());\n }\n\n}\n\n@NgModule({\n imports: [\n DxiFileManagerToolbarItemComponent\n ],\n exports: [\n DxiFileManagerToolbarItemComponent\n ],\n})\nexport class DxiFileManagerToolbarItemModule { }\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 ContentChildren,\n QueryList\n} from '@angular/core';\n\n\n\n\nimport type { dxFileManagerToolbarItem, FileManagerPredefinedToolbarItem } from 'devextreme/ui/file_manager';\n\nimport {\n DxIntegrationModule,\n NestedOptionHost,\n CollectionNestedOption,\n} from 'devextreme-angular/core';\nimport { NestedOption } from 'devextreme-angular/core';\n\nimport {\n PROPERTY_TOKEN_fileSelectionItems,\n PROPERTY_TOKEN_items,\n} from 'devextreme-angular/core/tokens';\n\n@Component({\n selector: 'dxo-file-manager-toolbar',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerToolbarComponent extends NestedOption implements OnDestroy, OnInit {\n @ContentChildren(PROPERTY_TOKEN_fileSelectionItems)\n set _fileSelectionItemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('fileSelectionItems', value);\n }\n \n @ContentChildren(PROPERTY_TOKEN_items)\n set _itemsContentChildren(value: QueryList<CollectionNestedOption>) {\n this.setChildren('items', value);\n }\n \n @Input()\n get fileSelectionItems(): Array<dxFileManagerToolbarItem | FileManagerPredefinedToolbarItem> {\n return this._getOption('fileSelectionItems');\n }\n set fileSelectionItems(value: Array<dxFileManagerToolbarItem | FileManagerPredefinedToolbarItem>) {\n this._setOption('fileSelectionItems', value);\n }\n\n @Input()\n get items(): Array<dxFileManagerToolbarItem | FileManagerPredefinedToolbarItem> {\n return this._getOption('items');\n }\n set items(value: Array<dxFileManagerToolbarItem | FileManagerPredefinedToolbarItem>) {\n this._setOption('items', value);\n }\n\n\n protected get _optionPath() {\n return 'toolbar';\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 DxoFileManagerToolbarComponent\n ],\n exports: [\n DxoFileManagerToolbarComponent\n ],\n})\nexport class DxoFileManagerToolbarModule { }\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-file-manager-upload',\n template: '',\n styles: [''],\n imports: [ DxIntegrationModule ],\n providers: [NestedOptionHost]\n})\nexport class DxoFileManagerUploadComponent extends NestedOption implements OnDestroy, OnInit {\n @Input()\n get chunkSize(): number {\n return this._getOption('chunkSize');\n }\n set chunkSize(value: number) {\n this._setOption('chunkSize', value);\n }\n\n @Input()\n get maxFileSize(): number {\n return this._getOption('maxFileSize');\n }\n set maxFileSize(value: number) {\n this._setOption('maxFileSize', value);\n }\n\n\n protected get _optionPath() {\n return 'upload';\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 DxoFileManagerUploadComponent\n ],\n exports: [\n DxoFileManagerUploadComponent\n ],\n})\nexport class DxoFileManagerUploadModule { }\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\nexport * from './column-dxi';\nexport * from './context-menu-item-dxi';\nexport * from './context-menu';\nexport * from './details';\nexport * from './file-selection-item-dxi';\nexport * from './item-dxi';\nexport * from './item-view';\nexport * from './notifications';\nexport * from './permissions';\nexport * from './toolbar-item-dxi';\nexport * from './toolbar';\nexport * from './upload';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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