@syncfusion/ej2-filemanager
Version:
Essential JS 2 FileManager Component
43 lines (38 loc) • 1.17 kB
text/typescript
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'
*/
('650px')
public maxWidth: string | number;
/**
* Specifies the minimum width of navigationpane.
*
* @default '240px'
*/
('240px')
public minWidth: string | number;
/**
* Enables or disables the navigation pane.
*
* @default true
*/
(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'
*/
('None')
public sortOrder: 'None' | 'Ascending' | 'Descending';
}