UNPKG

@syncfusion/ej2-filemanager

Version:
43 lines (38 loc) 1.17 kB
import { Property, ChildProperty } from '@syncfusion/ej2-base'; /** * Specifies the navigationpane settings of the File Manager. */ export class NavigationPaneSettings extends ChildProperty<NavigationPaneSettings> { /** * Specifies the maximum width of navigationpane. * * @default '650px' */ @Property('650px') public maxWidth: string | number; /** * Specifies the minimum width of navigationpane. * * @default '240px' */ @Property('240px') public minWidth: string | number; /** * Enables or disables the navigation pane. * * @default true */ @Property(true) public visible: boolean; /** * Specifies a value that indicates how to sort the folders in the navigation pane of the file manager component. * * If the sortOrder is Ascending, the folders are sorted in ascending order. * If the sortOrder is Descending, the folders are sorted in descending order. * If the sortOrder is None, the folders are not sorted. * * @default 'None' */ @Property('None') public sortOrder: 'None' | 'Ascending' | 'Descending'; }