@syncfusion/ej2-filemanager 20.1.52-10460 → 20.1.52-10461
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +412 -410
- package/README.md +69 -69
- package/dist/ej2-filemanager.min.js +1 -0
- package/dist/ej2-filemanager.umd.min.js +1 -10
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +57 -54
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +174 -171
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +1 -10
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/file-manager/actions/breadcrumb-bar.ts +427 -0
- package/dist/ts/file-manager/actions/toolbar.ts +498 -0
- package/dist/ts/file-manager/base/classes.ts +225 -0
- package/dist/ts/file-manager/base/constant.ts +137 -0
- package/dist/ts/file-manager/base/file-manager.ts +1659 -0
- package/dist/ts/file-manager/base/interface.ts +652 -0
- package/dist/ts/file-manager/common/operations.ts +614 -0
- package/dist/ts/file-manager/common/utility.ts +1503 -0
- package/dist/ts/file-manager/layout/details-view.ts +1837 -0
- package/dist/ts/file-manager/layout/large-icons-view.ts +1587 -0
- package/dist/ts/file-manager/layout/navigation-pane.ts +879 -0
- package/dist/ts/file-manager/models/ajax-settings.ts +39 -0
- package/dist/ts/file-manager/models/column.ts +197 -0
- package/dist/ts/file-manager/models/contextMenu-settings.ts +44 -0
- package/dist/ts/file-manager/models/default-locale.ts +102 -0
- package/dist/ts/file-manager/models/details-view-settings.ts +48 -0
- package/dist/ts/file-manager/models/navigation-pane-settings.ts +42 -0
- package/dist/ts/file-manager/models/search-settings.ts +48 -0
- package/dist/ts/file-manager/models/toolbar-settings.ts +25 -0
- package/dist/ts/file-manager/models/upload-settings.ts +51 -0
- package/dist/ts/file-manager/pop-up/context-menu.ts +614 -0
- package/dist/ts/file-manager/pop-up/dialog.ts +996 -0
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/license +9 -9
- package/package.json +72 -72
- package/src/file-manager/base/file-manager-model.d.ts +329 -329
- package/src/file-manager/base/file-manager.js +19 -19
- package/src/file-manager/models/ajax-settings-model.d.ts +21 -21
- package/src/file-manager/models/ajax-settings.js +19 -19
- package/src/file-manager/models/column-model.d.ts +98 -98
- package/src/file-manager/models/column.js +19 -19
- package/src/file-manager/models/contextMenu-settings-model.d.ts +21 -21
- package/src/file-manager/models/contextMenu-settings.js +19 -19
- package/src/file-manager/models/details-view-settings-model.d.ts +19 -19
- package/src/file-manager/models/details-view-settings.js +19 -19
- package/src/file-manager/models/navigation-pane-settings-model.d.ts +25 -25
- package/src/file-manager/models/navigation-pane-settings.js +19 -19
- package/src/file-manager/models/search-settings-model.d.ts +26 -26
- package/src/file-manager/models/search-settings.js +19 -19
- package/src/file-manager/models/toolbar-settings-model.d.ts +11 -11
- package/src/file-manager/models/toolbar-settings.js +19 -19
- package/src/file-manager/models/upload-settings-model.d.ts +31 -31
- package/src/file-manager/models/upload-settings.js +19 -19
- package/src/file-manager/pop-up/context-menu.js +3 -0
- package/styles/compatibility/bootstrap.css +1 -0
- package/styles/compatibility/bootstrap.scss +12 -0
- package/styles/compatibility/bootstrap4.css +1 -0
- package/styles/compatibility/bootstrap4.scss +12 -0
- package/styles/compatibility/fabric.css +1 -0
- package/styles/compatibility/fabric.scss +12 -0
- package/styles/compatibility/highcontrast.css +1 -0
- package/styles/compatibility/highcontrast.scss +12 -0
- package/styles/compatibility/material.css +1 -0
- package/styles/compatibility/material.scss +12 -0
- package/styles/file-manager/_all.scss +2 -2
- package/styles/file-manager/_bds-definition.scss +236 -0
- package/styles/file-manager/_bigger.scss +759 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +244 -240
- package/styles/file-manager/_bootstrap-definition.scss +245 -241
- package/styles/file-manager/_bootstrap4-definition.scss +246 -242
- package/styles/file-manager/_bootstrap5-definition.scss +242 -237
- package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
- package/styles/file-manager/_fabric-dark-definition.scss +242 -238
- package/styles/file-manager/_fabric-definition.scss +244 -240
- package/styles/file-manager/_fluent-definition.scss +249 -246
- package/styles/file-manager/_fluent2-definition.scss +255 -0
- package/styles/file-manager/_fusionnew-definition.scss +241 -0
- package/styles/file-manager/_highcontrast-definition.scss +244 -240
- package/styles/file-manager/_highcontrast-light-definition.scss +244 -240
- package/styles/file-manager/_layout.scss +1252 -1815
- package/styles/file-manager/_material-dark-definition.scss +245 -240
- package/styles/file-manager/_material-definition.scss +245 -240
- package/styles/file-manager/_material3-definition.scss +235 -0
- package/styles/file-manager/_tailwind-definition.scss +236 -232
- package/styles/file-manager/_theme.scss +418 -397
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/icons/_bootstrap-dark.scss +235 -235
- package/styles/file-manager/icons/_bootstrap.scss +235 -236
- package/styles/file-manager/icons/_bootstrap4.scss +235 -236
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_bootstrap5.scss +235 -235
- package/styles/file-manager/icons/_fabric-dark.scss +229 -230
- package/styles/file-manager/icons/_fabric.scss +229 -230
- package/styles/file-manager/icons/_fluent.scss +235 -235
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_highcontrast-light.scss +235 -235
- package/styles/file-manager/icons/_highcontrast.scss +229 -229
- package/styles/file-manager/icons/_material-dark.scss +235 -235
- package/styles/file-manager/icons/_material.scss +235 -235
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/icons/_tailwind.scss +235 -235
- package/.eslintrc.json +0 -244
- package/styles/bootstrap-dark.css +0 -1920
- package/styles/bootstrap-dark.scss +0 -1
- package/styles/bootstrap.css +0 -1899
- package/styles/bootstrap.scss +0 -1
- package/styles/bootstrap4.css +0 -1935
- package/styles/bootstrap4.scss +0 -1
- package/styles/bootstrap5-dark.css +0 -1982
- package/styles/bootstrap5-dark.scss +0 -1
- package/styles/bootstrap5.css +0 -1982
- package/styles/bootstrap5.scss +0 -1
- package/styles/fabric-dark.css +0 -1891
- package/styles/fabric-dark.scss +0 -1
- package/styles/fabric.css +0 -1891
- package/styles/fabric.scss +0 -1
- package/styles/file-manager/_bootstrap5-dark-definition.scss +0 -1
- package/styles/file-manager/_fluent-dark-definition.scss +0 -1
- package/styles/file-manager/_tailwind-dark-definition.scss +0 -1
- package/styles/file-manager/bootstrap-dark.css +0 -1920
- package/styles/file-manager/bootstrap-dark.scss +0 -16
- package/styles/file-manager/bootstrap.css +0 -1899
- package/styles/file-manager/bootstrap.scss +0 -16
- package/styles/file-manager/bootstrap4.css +0 -1935
- package/styles/file-manager/bootstrap4.scss +0 -16
- package/styles/file-manager/bootstrap5-dark.css +0 -1982
- package/styles/file-manager/bootstrap5-dark.scss +0 -16
- package/styles/file-manager/bootstrap5.css +0 -1982
- package/styles/file-manager/bootstrap5.scss +0 -16
- package/styles/file-manager/fabric-dark.css +0 -1891
- package/styles/file-manager/fabric-dark.scss +0 -16
- package/styles/file-manager/fabric.css +0 -1891
- package/styles/file-manager/fabric.scss +0 -16
- package/styles/file-manager/fluent-dark.css +0 -1901
- package/styles/file-manager/fluent-dark.scss +0 -16
- package/styles/file-manager/fluent.css +0 -1900
- package/styles/file-manager/fluent.scss +0 -16
- package/styles/file-manager/highcontrast-light.css +0 -1897
- package/styles/file-manager/highcontrast-light.scss +0 -16
- package/styles/file-manager/highcontrast.css +0 -1897
- package/styles/file-manager/highcontrast.scss +0 -16
- package/styles/file-manager/icons/_bootstrap5-dark.scss +0 -1
- package/styles/file-manager/icons/_fluent-dark.scss +0 -1
- package/styles/file-manager/icons/_tailwind-dark.scss +0 -1
- package/styles/file-manager/material-dark.css +0 -1945
- package/styles/file-manager/material-dark.scss +0 -16
- package/styles/file-manager/material.css +0 -1932
- package/styles/file-manager/material.scss +0 -16
- package/styles/file-manager/tailwind-dark.css +0 -1969
- package/styles/file-manager/tailwind-dark.scss +0 -16
- package/styles/file-manager/tailwind.css +0 -1969
- package/styles/file-manager/tailwind.scss +0 -16
- package/styles/fluent-dark.css +0 -1901
- package/styles/fluent-dark.scss +0 -1
- package/styles/fluent.css +0 -1900
- package/styles/fluent.scss +0 -1
- package/styles/highcontrast-light.css +0 -1897
- package/styles/highcontrast-light.scss +0 -1
- package/styles/highcontrast.css +0 -1897
- package/styles/highcontrast.scss +0 -1
- package/styles/material-dark.css +0 -1945
- package/styles/material-dark.scss +0 -1
- package/styles/material.css +0 -1932
- package/styles/material.scss +0 -1
- package/styles/tailwind-dark.css +0 -1969
- package/styles/tailwind-dark.scss +0 -1
- package/styles/tailwind.css +0 -1969
- package/styles/tailwind.scss +0 -1
- package/tslint.json +0 -111
@@ -1,22 +1,22 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
extendStatics(d, b);
|
10
|
-
function __() { this.constructor = d; }
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
-
};
|
13
|
-
})();
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
+
};
|
20
20
|
import { Component, isNullOrUndefined, L10n, closest } from '@syncfusion/ej2-base';
|
21
21
|
import { Property, NotifyPropertyChanges, Complex, select } from '@syncfusion/ej2-base';
|
22
22
|
import { createElement, addClass, removeClass, setStyleAttribute as setAttr, getUniqueID } from '@syncfusion/ej2-base';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
1
|
+
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
2
2
|
|
3
3
|
/**
|
4
4
|
* Interface for a class AjaxSettings
|
@@ -6,31 +6,31 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
6
6
|
export interface AjaxSettingsModel {
|
7
7
|
|
8
8
|
/**
|
9
|
-
* Specifies URL to download the files from server.
|
10
|
-
*
|
11
|
-
* @default null
|
12
|
-
*/
|
13
|
-
downloadUrl?: string;
|
9
|
+
* Specifies URL to download the files from server.
|
10
|
+
*
|
11
|
+
* @default null
|
12
|
+
*/
|
13
|
+
downloadUrl?: string;
|
14
14
|
|
15
15
|
/**
|
16
|
-
* Specifies URL to get the images from server.
|
17
|
-
*
|
18
|
-
* @default null
|
19
|
-
*/
|
20
|
-
getImageUrl?: string;
|
16
|
+
* Specifies URL to get the images from server.
|
17
|
+
*
|
18
|
+
* @default null
|
19
|
+
*/
|
20
|
+
getImageUrl?: string;
|
21
21
|
|
22
22
|
/**
|
23
|
-
* Specifies URL to upload the files to server.
|
24
|
-
*
|
25
|
-
* @default null
|
26
|
-
*/
|
27
|
-
uploadUrl?: string;
|
23
|
+
* Specifies URL to upload the files to server.
|
24
|
+
*
|
25
|
+
* @default null
|
26
|
+
*/
|
27
|
+
uploadUrl?: string;
|
28
28
|
|
29
29
|
/**
|
30
|
-
* Specifies URL to read the files from server.
|
31
|
-
*
|
32
|
-
* @default null
|
33
|
-
*/
|
34
|
-
url?: string;
|
30
|
+
* Specifies URL to read the files from server.
|
31
|
+
*
|
32
|
+
* @default null
|
33
|
+
*/
|
34
|
+
url?: string;
|
35
35
|
|
36
36
|
}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
extendStatics(d, b);
|
10
|
-
function __() { this.constructor = d; }
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
-
};
|
13
|
-
})();
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
+
};
|
20
20
|
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
21
21
|
/**
|
22
22
|
* Specifies the Ajax settings of the File Manager.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Property, ChildProperty, NumberFormatOptions, DateFormatOptions } from '@syncfusion/ej2-base';
|
1
|
+
import { Property, ChildProperty, NumberFormatOptions, DateFormatOptions } from '@syncfusion/ej2-base';
|
2
2
|
import {TextAlign} from "./column";
|
3
3
|
|
4
4
|
/**
|
@@ -7,131 +7,131 @@ import {TextAlign} from "./column";
|
|
7
7
|
export interface ColumnModel {
|
8
8
|
|
9
9
|
/**
|
10
|
-
* Defines the field name of column which is mapped with mapping name of DataSource.
|
11
|
-
* The bounded columns can be sort, filter and group etc.,
|
12
|
-
* The `field` name must be a valid JavaScript identifier,
|
13
|
-
* the first character must be an alphabet and should not contain spaces and special characters.
|
14
|
-
*
|
15
|
-
* @default ''
|
16
|
-
*/
|
17
|
-
field?: string;
|
10
|
+
* Defines the field name of column which is mapped with mapping name of DataSource.
|
11
|
+
* The bounded columns can be sort, filter and group etc.,
|
12
|
+
* The `field` name must be a valid JavaScript identifier,
|
13
|
+
* the first character must be an alphabet and should not contain spaces and special characters.
|
14
|
+
*
|
15
|
+
* @default ''
|
16
|
+
*/
|
17
|
+
field?: string;
|
18
18
|
|
19
19
|
/**
|
20
|
-
* Defines the header text of column which is used to display in column header.
|
21
|
-
* If `headerText` is not defined, then field name value will be assigned to header text.
|
22
|
-
*
|
23
|
-
* @default ''
|
24
|
-
*/
|
25
|
-
headerText?: string;
|
20
|
+
* Defines the header text of column which is used to display in column header.
|
21
|
+
* If `headerText` is not defined, then field name value will be assigned to header text.
|
22
|
+
*
|
23
|
+
* @default ''
|
24
|
+
*/
|
25
|
+
headerText?: string;
|
26
26
|
|
27
27
|
/**
|
28
|
-
* Defines the width of the column in pixels or percentage.
|
29
|
-
*
|
30
|
-
* @default ''
|
31
|
-
*/
|
32
|
-
width?: string | number;
|
28
|
+
* Defines the width of the column in pixels or percentage.
|
29
|
+
*
|
30
|
+
* @default ''
|
31
|
+
*/
|
32
|
+
width?: string | number;
|
33
33
|
|
34
34
|
/**
|
35
|
-
* Defines the minimum width of the column in pixels or percentage.
|
36
|
-
*
|
37
|
-
* @default ''
|
38
|
-
*/
|
39
|
-
minWidth?: string | number;
|
35
|
+
* Defines the minimum width of the column in pixels or percentage.
|
36
|
+
*
|
37
|
+
* @default ''
|
38
|
+
*/
|
39
|
+
minWidth?: string | number;
|
40
40
|
|
41
41
|
/**
|
42
|
-
* Defines the maximum width of the column in pixel or percentage, which will restrict resizing beyond this pixel or percentage.
|
43
|
-
*
|
44
|
-
* @default ''
|
45
|
-
*/
|
46
|
-
maxWidth?: string | number;
|
42
|
+
* Defines the maximum width of the column in pixel or percentage, which will restrict resizing beyond this pixel or percentage.
|
43
|
+
*
|
44
|
+
* @default ''
|
45
|
+
*/
|
46
|
+
maxWidth?: string | number;
|
47
47
|
|
48
48
|
/**
|
49
|
-
* Defines the alignment of the column in both header and content cells.
|
50
|
-
*
|
51
|
-
* @default Left
|
52
|
-
*/
|
53
|
-
textAlign?: TextAlign;
|
49
|
+
* Defines the alignment of the column in both header and content cells.
|
50
|
+
*
|
51
|
+
* @default Left
|
52
|
+
*/
|
53
|
+
textAlign?: TextAlign;
|
54
54
|
|
55
55
|
/**
|
56
|
-
* Define the alignment of column header which is used to align the text of column header.
|
57
|
-
*
|
58
|
-
* @default null
|
59
|
-
*/
|
60
|
-
headerTextAlign?: TextAlign;
|
56
|
+
* Define the alignment of column header which is used to align the text of column header.
|
57
|
+
*
|
58
|
+
* @default null
|
59
|
+
*/
|
60
|
+
headerTextAlign?: TextAlign;
|
61
61
|
|
62
62
|
/**
|
63
|
-
* Defines the data type of the column.
|
64
|
-
*
|
65
|
-
* @default null
|
66
|
-
*/
|
67
|
-
type?: string;
|
63
|
+
* Defines the data type of the column.
|
64
|
+
*
|
65
|
+
* @default null
|
66
|
+
*/
|
67
|
+
type?: string;
|
68
68
|
|
69
69
|
/**
|
70
|
-
* It is used to change display value with the given format and does not affect the original data.
|
71
|
-
* Gets the format from the user which can be standard or custom
|
72
|
-
* [`number`](../../common/internationalization/#manipulating-numbers)
|
73
|
-
* and [`date`](../../common/internationalization/#manipulating-datetime) formats.
|
74
|
-
*
|
75
|
-
* @default null
|
76
|
-
* @aspType string
|
77
|
-
*/
|
78
|
-
format?: string | NumberFormatOptions | DateFormatOptions;
|
70
|
+
* It is used to change display value with the given format and does not affect the original data.
|
71
|
+
* Gets the format from the user which can be standard or custom
|
72
|
+
* [`number`](../../common/internationalization/#manipulating-numbers)
|
73
|
+
* and [`date`](../../common/internationalization/#manipulating-datetime) formats.
|
74
|
+
*
|
75
|
+
* @default null
|
76
|
+
* @aspType string
|
77
|
+
*/
|
78
|
+
format?: string | NumberFormatOptions | DateFormatOptions;
|
79
79
|
|
80
80
|
/**
|
81
|
-
* Defines the column template that renders customized element in each cell of the column.
|
82
|
-
* It accepts either [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) or HTML element ID.
|
83
|
-
*
|
84
|
-
* @default null
|
85
|
-
*/
|
86
|
-
template?: string;
|
81
|
+
* Defines the column template that renders customized element in each cell of the column.
|
82
|
+
* It accepts either [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) or HTML element ID.
|
83
|
+
*
|
84
|
+
* @default null
|
85
|
+
*/
|
86
|
+
template?: string;
|
87
87
|
|
88
88
|
/**
|
89
|
-
* Defines the column template as string or HTML element ID which is used to add customized element in the column header.
|
90
|
-
*
|
91
|
-
* @default null
|
92
|
-
*/
|
93
|
-
headerTemplate?: string;
|
89
|
+
* Defines the column template as string or HTML element ID which is used to add customized element in the column header.
|
90
|
+
*
|
91
|
+
* @default null
|
92
|
+
*/
|
93
|
+
headerTemplate?: string;
|
94
94
|
|
95
95
|
/**
|
96
|
-
* If `allowSorting` set to false, then it disables sorting option of a particular column.
|
97
|
-
* By default all columns are sortable.
|
98
|
-
*
|
99
|
-
* @default true
|
100
|
-
*/
|
101
|
-
allowSorting?: boolean;
|
96
|
+
* If `allowSorting` set to false, then it disables sorting option of a particular column.
|
97
|
+
* By default all columns are sortable.
|
98
|
+
*
|
99
|
+
* @default true
|
100
|
+
*/
|
101
|
+
allowSorting?: boolean;
|
102
102
|
|
103
103
|
/**
|
104
|
-
* If `allowResizing` set to false, it disables resize option of a particular column.
|
105
|
-
*
|
106
|
-
* @default true
|
107
|
-
*/
|
108
|
-
allowResizing?: boolean;
|
104
|
+
* If `allowResizing` set to false, it disables resize option of a particular column.
|
105
|
+
*
|
106
|
+
* @default true
|
107
|
+
*/
|
108
|
+
allowResizing?: boolean;
|
109
109
|
|
110
|
-
/**
|
111
|
-
* The CSS styles and attributes of the content cells of a particular column can be customized.
|
112
|
-
*
|
113
|
-
* @default null
|
114
|
-
*/
|
115
|
-
/* eslint-disable */
|
116
|
-
customAttributes?: { [x: string]: Object };
|
110
|
+
/**
|
111
|
+
* The CSS styles and attributes of the content cells of a particular column can be customized.
|
112
|
+
*
|
113
|
+
* @default null
|
114
|
+
*/
|
115
|
+
/* eslint-disable */
|
116
|
+
customAttributes?: { [x: string]: Object };
|
117
117
|
|
118
118
|
/**
|
119
|
-
* Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
|
120
|
-
* `hideAtMedia` accepts only valid Media Queries.
|
121
|
-
*
|
122
|
-
* @default ''
|
123
|
-
*/
|
124
|
-
hideAtMedia?: string;
|
119
|
+
* Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
|
120
|
+
* `hideAtMedia` accepts only valid Media Queries.
|
121
|
+
*
|
122
|
+
* @default ''
|
123
|
+
*/
|
124
|
+
hideAtMedia?: string;
|
125
125
|
|
126
126
|
/**
|
127
|
-
* It is used to change display value with the given format and does not affect the original data.
|
128
|
-
* Gets the format from the user which can be standard or custom
|
129
|
-
* [`number`](../../common/internationalization/#manipulating-numbers)
|
130
|
-
* and [`date`](../../common/internationalization/#manipulating-datetime) formats.
|
131
|
-
*
|
132
|
-
* @default null
|
133
|
-
*/
|
134
|
-
/* eslint-disable */
|
135
|
-
customFormat?: { [x: string]: Object };
|
127
|
+
* It is used to change display value with the given format and does not affect the original data.
|
128
|
+
* Gets the format from the user which can be standard or custom
|
129
|
+
* [`number`](../../common/internationalization/#manipulating-numbers)
|
130
|
+
* and [`date`](../../common/internationalization/#manipulating-datetime) formats.
|
131
|
+
*
|
132
|
+
* @default null
|
133
|
+
*/
|
134
|
+
/* eslint-disable */
|
135
|
+
customFormat?: { [x: string]: Object };
|
136
136
|
|
137
137
|
}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
extendStatics(d, b);
|
10
|
-
function __() { this.constructor = d; }
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
-
};
|
13
|
-
})();
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
+
};
|
20
20
|
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
21
21
|
/**
|
22
22
|
* Interface for a class Column
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
1
|
+
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
2
2
|
|
3
3
|
/**
|
4
4
|
* Interface for a class ContextMenuSettings
|
@@ -6,31 +6,31 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
6
6
|
export interface ContextMenuSettingsModel {
|
7
7
|
|
8
8
|
/**
|
9
|
-
* Specifies the array of string or object that is used to configure file items.
|
10
|
-
*
|
11
|
-
* @default fileItems
|
12
|
-
*/
|
13
|
-
file?: string[];
|
9
|
+
* Specifies the array of string or object that is used to configure file items.
|
10
|
+
*
|
11
|
+
* @default fileItems
|
12
|
+
*/
|
13
|
+
file?: string[];
|
14
14
|
|
15
15
|
/**
|
16
|
-
* An array of string or object that is used to configure folder items.
|
17
|
-
*
|
18
|
-
* @default folderItems
|
19
|
-
*/
|
20
|
-
folder?: string[];
|
16
|
+
* An array of string or object that is used to configure folder items.
|
17
|
+
*
|
18
|
+
* @default folderItems
|
19
|
+
*/
|
20
|
+
folder?: string[];
|
21
21
|
|
22
22
|
/**
|
23
|
-
* An array of string or object that is used to configure layout items.
|
24
|
-
*
|
25
|
-
* @default layoutItems
|
26
|
-
*/
|
27
|
-
layout?: string[];
|
23
|
+
* An array of string or object that is used to configure layout items.
|
24
|
+
*
|
25
|
+
* @default layoutItems
|
26
|
+
*/
|
27
|
+
layout?: string[];
|
28
28
|
|
29
29
|
/**
|
30
|
-
* Enables or disables the ContextMenu.
|
31
|
-
*
|
32
|
-
* @default true
|
33
|
-
*/
|
34
|
-
visible?: boolean;
|
30
|
+
* Enables or disables the ContextMenu.
|
31
|
+
*
|
32
|
+
* @default true
|
33
|
+
*/
|
34
|
+
visible?: boolean;
|
35
35
|
|
36
36
|
}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
extendStatics(d, b);
|
10
|
-
function __() { this.constructor = d; }
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
-
};
|
13
|
-
})();
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
+
};
|
20
20
|
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
21
21
|
export var fileItems = ['Open', '|', 'Cut', 'Copy', '|', 'Delete', 'Download', 'Rename', '|', 'Details'];
|
22
22
|
export var folderItems = ['Open', '|', 'Cut', 'Copy', 'Paste', '|', 'Delete', 'Rename', 'Download', '|', 'Details'];
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
1
|
+
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
2
2
|
|
3
3
|
/**
|
4
4
|
* Interface for a class DetailsViewSettings
|
@@ -6,25 +6,25 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';import { ColumnMo
|
|
6
6
|
export interface DetailsViewSettingsModel {
|
7
7
|
|
8
8
|
/**
|
9
|
-
* If `columnResizing` is set to true, Grid columns can be resized.
|
10
|
-
*
|
11
|
-
* @default true
|
12
|
-
*/
|
13
|
-
columnResizing?: boolean;
|
9
|
+
* If `columnResizing` is set to true, Grid columns can be resized.
|
10
|
+
*
|
11
|
+
* @default true
|
12
|
+
*/
|
13
|
+
columnResizing?: boolean;
|
14
14
|
|
15
15
|
/**
|
16
|
-
* Specifies the customizable details view.
|
17
|
-
*
|
18
|
-
* @default {
|
19
|
-
* columns: [{
|
20
|
-
* field: 'name', headerText: 'Name', minWidth: 120, customAttributes: { class: 'e-fe-grid-name' },
|
21
|
-
* template: '\<span class="e-fe-text">${name}\</span>'},{field: 'size', headerText: 'Size',
|
22
|
-
* minWidth: 50, width: '110', template: '\<span class="e-fe-size">${size}\</span>'},
|
23
|
-
* { field: '_fm_modified', headerText: 'DateModified',
|
24
|
-
* minWidth: 50, width: '190'}
|
25
|
-
* ]
|
26
|
-
* }
|
27
|
-
*/
|
28
|
-
columns?: ColumnModel[];
|
16
|
+
* Specifies the customizable details view.
|
17
|
+
*
|
18
|
+
* @default {
|
19
|
+
* columns: [{
|
20
|
+
* field: 'name', headerText: 'Name', minWidth: 120, customAttributes: { class: 'e-fe-grid-name' },
|
21
|
+
* template: '\<span class="e-fe-text">${name}\</span>'},{field: 'size', headerText: 'Size',
|
22
|
+
* minWidth: 50, width: '110', template: '\<span class="e-fe-size">${size}\</span>'},
|
23
|
+
* { field: '_fm_modified', headerText: 'DateModified',
|
24
|
+
* minWidth: 50, width: '190'}
|
25
|
+
* ]
|
26
|
+
* }
|
27
|
+
*/
|
28
|
+
columns?: ColumnModel[];
|
29
29
|
|
30
30
|
}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
2
|
-
var extendStatics = function (d, b) {
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
-
return extendStatics(d, b);
|
7
|
-
};
|
8
|
-
return function (d, b) {
|
9
|
-
extendStatics(d, b);
|
10
|
-
function __() { this.constructor = d; }
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
-
};
|
13
|
-
})();
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
-
};
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
19
|
+
};
|
20
20
|
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
21
21
|
/**
|
22
22
|
* Specifies the columns in the details view of the file manager.
|