@syncfusion/ej2-filemanager 24.2.5 → 25.1.35
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 +4 -31
- package/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +165 -33
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +174 -36
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +16 -16
- package/src/file-manager/actions/toolbar.js +16 -5
- package/src/file-manager/base/file-manager-model.d.ts +12 -1
- package/src/file-manager/base/file-manager.d.ts +11 -0
- package/src/file-manager/base/file-manager.js +13 -5
- package/src/file-manager/base/interface.d.ts +18 -0
- package/src/file-manager/common/operations.js +70 -14
- package/src/file-manager/common/utility.d.ts +9 -0
- package/src/file-manager/common/utility.js +32 -0
- package/src/file-manager/index.d.ts +1 -0
- package/src/file-manager/index.js +1 -0
- package/src/file-manager/layout/details-view.js +23 -6
- package/src/file-manager/layout/large-icons-view.d.ts +1 -0
- package/src/file-manager/layout/large-icons-view.js +16 -2
- package/src/file-manager/layout/navigation-pane.js +0 -1
- package/src/file-manager/models/column-model.d.ts +11 -1
- package/src/file-manager/models/column.d.ts +10 -0
- package/src/file-manager/models/column.js +3 -0
- package/src/file-manager/models/details-view-settings.js +1 -3
- package/styles/bootstrap-dark.css +1 -2
- package/styles/bootstrap.css +1 -2
- package/styles/bootstrap4.css +1 -2
- package/styles/bootstrap5-dark.css +1 -2
- package/styles/bootstrap5.css +1 -2
- package/styles/fabric-dark.css +2 -3
- package/styles/fabric.css +2 -3
- package/styles/file-manager/_bds-definition.scss +234 -0
- package/styles/file-manager/_layout.scss +2 -3
- package/styles/file-manager/bootstrap-dark.css +1 -2
- package/styles/file-manager/bootstrap.css +1 -2
- package/styles/file-manager/bootstrap4.css +1 -2
- package/styles/file-manager/bootstrap5-dark.css +1 -2
- package/styles/file-manager/bootstrap5.css +1 -2
- package/styles/file-manager/fabric-dark.css +2 -3
- package/styles/file-manager/fabric.css +2 -3
- package/styles/file-manager/fluent-dark.css +1 -2
- package/styles/file-manager/fluent.css +1 -2
- package/styles/file-manager/highcontrast-light.css +1 -2
- package/styles/file-manager/highcontrast.css +1 -2
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/material-dark.css +1 -2
- package/styles/file-manager/material.css +1 -2
- package/styles/file-manager/material3-dark.css +1 -2
- package/styles/file-manager/material3.css +1 -2
- package/styles/file-manager/tailwind-dark.css +1 -2
- package/styles/file-manager/tailwind.css +1 -2
- package/styles/fluent-dark.css +1 -2
- package/styles/fluent.css +1 -2
- package/styles/highcontrast-light.css +1 -2
- package/styles/highcontrast.css +1 -2
- package/styles/material-dark.css +1 -2
- package/styles/material.css +1 -2
- package/styles/material3-dark.css +1 -2
- package/styles/material3.css +1 -2
- package/styles/tailwind-dark.css +1 -2
- package/styles/tailwind.css +1 -2
package/CHANGELOG.md
CHANGED
@@ -6,41 +6,14 @@
|
|
6
6
|
|
7
7
|
#### Bug Fixes
|
8
8
|
|
9
|
-
- `#
|
10
|
-
|
11
|
-
## 24.1.47 (2024-01-23)
|
12
|
-
|
13
|
-
### FileManager
|
14
|
-
|
15
|
-
#### Bug Fixes
|
16
|
-
|
17
|
-
- `#I543790` - The issue with the breadcrumb bar of the File Manager showing an incorrect name for the Azure File service provider has been resolved.
|
18
|
-
|
19
|
-
## 24.1.45 (2024-01-09)
|
20
|
-
|
21
|
-
### FileManager
|
22
|
-
|
23
|
-
#### Bug Fixes
|
24
|
-
|
25
|
-
- `#I536863` - The issue while creating a new folder within empty subfolder using the context menu from navigation pane selection is resolved.
|
26
|
-
|
27
|
-
## 24.1.44 (2024-01-03)
|
9
|
+
- `#FB50961` - The issues related to XSS attacks with file or folder names in the File Manager details view template is fixed.
|
28
10
|
|
29
11
|
### FileManager
|
30
12
|
|
31
|
-
####
|
32
|
-
|
33
|
-
- `#I536115` - The issue of adding an unnecessary `<ul>` element under the large icons view while using `enableVirtualization` property in the FileManager component has been resolved.
|
34
|
-
|
35
|
-
## 24.1.43 (2023-12-27)
|
36
|
-
|
37
|
-
### FileManager
|
38
|
-
|
39
|
-
#### Bug Fixes
|
40
|
-
|
41
|
-
- `#I527570` - The issue with auto scroll during drag and drop operation in the FileManager component has been resolved.
|
13
|
+
#### Features
|
42
14
|
|
43
|
-
-
|
15
|
+
- Provided support in FileManager component to perform download operations via Fetch API request. Now FileManager component, will allow users to perform download operations using either the default form submit method or the latest Fetch API request with a Boolean property `useFormPost` in the `BeforeDownloadEventargs`. The default value of `useFormPost` is set to `true`, directing the FileManager component to utilize the form submit method by default for download operations.
|
16
|
+
- `#I521053` - Custom sorting support is provided in the File Manager component. This feature will allow users to achieve windows natural sorting behaviour using `sortComparer` property. This is achieved by assigning the ‘sortComparer’ function exported from the utility file.
|
44
17
|
|
45
18
|
## 24.1.41 (2023-12-18)
|
46
19
|
|