@syncfusion/ej2-filemanager 20.1.47 → 20.1.52-10459

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.
Files changed (203) hide show
  1. package/.eslintrc.json +20 -3
  2. package/README.md +54 -43
  3. package/dist/ej2-filemanager.min.js +1 -0
  4. package/dist/ej2-filemanager.umd.min.js +1 -10
  5. package/dist/ej2-filemanager.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-filemanager.es2015.js +2353 -659
  7. package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
  8. package/dist/es6/ej2-filemanager.es5.js +2422 -709
  9. package/dist/es6/ej2-filemanager.es5.js.map +1 -1
  10. package/dist/global/ej2-filemanager.min.js +1 -10
  11. package/dist/global/ej2-filemanager.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/helpers/e2e/filemanagerHelper.js +183 -166
  14. package/package.json +71 -71
  15. package/src/file-manager/actions/breadcrumb-bar.js +1 -5
  16. package/src/file-manager/actions/index.d.ts +1 -0
  17. package/src/file-manager/actions/index.js +1 -0
  18. package/src/file-manager/actions/toolbar.d.ts +1 -0
  19. package/src/file-manager/actions/toolbar.js +129 -17
  20. package/src/file-manager/actions/virtualization.d.ts +93 -0
  21. package/src/file-manager/actions/virtualization.js +279 -0
  22. package/src/file-manager/base/file-manager-model.d.ts +154 -28
  23. package/src/file-manager/base/file-manager.d.ts +176 -27
  24. package/src/file-manager/base/file-manager.js +244 -28
  25. package/src/file-manager/base/interface.d.ts +329 -3
  26. package/src/file-manager/base/interface.js +0 -1
  27. package/src/file-manager/common/operations.d.ts +7 -0
  28. package/src/file-manager/common/operations.js +830 -185
  29. package/src/file-manager/common/utility.d.ts +46 -3
  30. package/src/file-manager/common/utility.js +249 -73
  31. package/src/file-manager/index.d.ts +1 -0
  32. package/src/file-manager/index.js +1 -0
  33. package/src/file-manager/layout/details-view.d.ts +10 -0
  34. package/src/file-manager/layout/details-view.js +203 -94
  35. package/src/file-manager/layout/large-icons-view.d.ts +4 -2
  36. package/src/file-manager/layout/large-icons-view.js +122 -73
  37. package/src/file-manager/layout/navigation-pane.d.ts +2 -0
  38. package/src/file-manager/layout/navigation-pane.js +97 -73
  39. package/src/file-manager/models/column-model.d.ts +23 -5
  40. package/src/file-manager/models/column.d.ts +21 -2
  41. package/src/file-manager/models/column.js +6 -0
  42. package/src/file-manager/models/default-locale.js +0 -1
  43. package/src/file-manager/models/details-view-settings-model.d.ts +1 -1
  44. package/src/file-manager/models/details-view-settings.js +8 -3
  45. package/src/file-manager/models/search-settings.d.ts +5 -0
  46. package/src/file-manager/models/toolbar-settings-model.d.ts +177 -2
  47. package/src/file-manager/models/toolbar-settings.d.ts +157 -2
  48. package/src/file-manager/models/toolbar-settings.js +64 -2
  49. package/src/file-manager/models/upload-settings-model.d.ts +13 -0
  50. package/src/file-manager/models/upload-settings.d.ts +12 -0
  51. package/src/file-manager/models/upload-settings.js +3 -0
  52. package/src/file-manager/pop-up/context-menu.d.ts +2 -1
  53. package/src/file-manager/pop-up/context-menu.js +111 -36
  54. package/src/file-manager/pop-up/dialog.d.ts +1 -2
  55. package/src/file-manager/pop-up/dialog.js +19 -40
  56. package/src/global.js +1 -1
  57. package/styles/bootstrap-dark-lite.css +1058 -0
  58. package/styles/bootstrap-dark-lite.scss +16 -0
  59. package/styles/bootstrap-dark.css +371 -665
  60. package/styles/bootstrap-dark.scss +17 -1
  61. package/styles/bootstrap-lite.css +1040 -0
  62. package/styles/bootstrap-lite.scss +16 -0
  63. package/styles/bootstrap.css +353 -644
  64. package/styles/bootstrap.scss +17 -1
  65. package/styles/bootstrap4-lite.css +1068 -0
  66. package/styles/bootstrap4-lite.scss +16 -0
  67. package/styles/bootstrap4.css +381 -680
  68. package/styles/bootstrap4.scss +17 -1
  69. package/styles/bootstrap5-dark-lite.css +1078 -0
  70. package/styles/bootstrap5-dark-lite.scss +16 -0
  71. package/styles/bootstrap5-dark.css +376 -694
  72. package/styles/bootstrap5-dark.scss +17 -1
  73. package/styles/bootstrap5-lite.css +1078 -0
  74. package/styles/bootstrap5-lite.scss +16 -0
  75. package/styles/bootstrap5.3-lite.css +1035 -0
  76. package/styles/bootstrap5.3-lite.scss +16 -0
  77. package/styles/bootstrap5.3.css +1603 -0
  78. package/styles/bootstrap5.3.scss +17 -0
  79. package/styles/bootstrap5.css +376 -694
  80. package/styles/bootstrap5.scss +17 -1
  81. package/styles/fabric-dark-lite.css +1039 -0
  82. package/styles/fabric-dark-lite.scss +16 -0
  83. package/styles/fabric-dark.css +358 -642
  84. package/styles/fabric-dark.scss +17 -1
  85. package/styles/fabric-lite.css +1039 -0
  86. package/styles/fabric-lite.scss +16 -0
  87. package/styles/fabric.css +357 -641
  88. package/styles/fabric.scss +17 -1
  89. package/styles/file-manager/_all.scss +1 -1
  90. package/styles/file-manager/_bds-definition.scss +236 -0
  91. package/styles/file-manager/_bigger.scss +758 -0
  92. package/styles/file-manager/_bootstrap-dark-definition.scss +6 -2
  93. package/styles/file-manager/_bootstrap-definition.scss +6 -2
  94. package/styles/file-manager/_bootstrap4-definition.scss +6 -2
  95. package/styles/file-manager/_bootstrap5-definition.scss +20 -15
  96. package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
  97. package/styles/file-manager/_fabric-dark-definition.scss +6 -2
  98. package/styles/file-manager/_fabric-definition.scss +6 -2
  99. package/styles/file-manager/_fluent-definition.scss +20 -16
  100. package/styles/file-manager/_fluent2-definition.scss +255 -0
  101. package/styles/file-manager/_fusionnew-definition.scss +241 -0
  102. package/styles/file-manager/_highcontrast-definition.scss +6 -2
  103. package/styles/file-manager/_highcontrast-light-definition.scss +6 -2
  104. package/styles/file-manager/_layout.scss +367 -921
  105. package/styles/file-manager/_material-dark-definition.scss +7 -2
  106. package/styles/file-manager/_material-definition.scss +7 -2
  107. package/styles/file-manager/_material3-dark-definition.scss +1 -0
  108. package/styles/file-manager/_material3-definition.scss +235 -0
  109. package/styles/file-manager/_tailwind-definition.scss +20 -16
  110. package/styles/file-manager/_theme.scss +126 -102
  111. package/styles/file-manager/bootstrap-dark.css +371 -665
  112. package/styles/file-manager/bootstrap-dark.scss +2 -1
  113. package/styles/file-manager/bootstrap.css +353 -644
  114. package/styles/file-manager/bootstrap.scss +2 -1
  115. package/styles/file-manager/bootstrap4.css +381 -680
  116. package/styles/file-manager/bootstrap4.scss +2 -1
  117. package/styles/file-manager/bootstrap5-dark.css +376 -694
  118. package/styles/file-manager/bootstrap5-dark.scss +2 -1
  119. package/styles/file-manager/bootstrap5.3.css +1603 -0
  120. package/styles/file-manager/bootstrap5.3.scss +17 -0
  121. package/styles/file-manager/bootstrap5.css +376 -694
  122. package/styles/file-manager/bootstrap5.scss +2 -1
  123. package/styles/file-manager/fabric-dark.css +358 -642
  124. package/styles/file-manager/fabric-dark.scss +2 -1
  125. package/styles/file-manager/fabric.css +357 -641
  126. package/styles/file-manager/fabric.scss +2 -1
  127. package/styles/file-manager/fluent-dark.css +359 -641
  128. package/styles/file-manager/fluent-dark.scss +2 -1
  129. package/styles/file-manager/fluent.css +358 -641
  130. package/styles/file-manager/fluent.scss +2 -1
  131. package/styles/file-manager/fluent2.css +1886 -0
  132. package/styles/file-manager/fluent2.scss +17 -0
  133. package/styles/file-manager/highcontrast-light.css +354 -644
  134. package/styles/file-manager/highcontrast-light.scss +2 -1
  135. package/styles/file-manager/highcontrast.css +377 -647
  136. package/styles/file-manager/highcontrast.scss +2 -1
  137. package/styles/file-manager/icons/_bds.scss +235 -0
  138. package/styles/file-manager/icons/_bootstrap.scss +0 -1
  139. package/styles/file-manager/icons/_bootstrap4.scss +0 -1
  140. package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
  141. package/styles/file-manager/icons/_fabric-dark.scss +0 -1
  142. package/styles/file-manager/icons/_fabric.scss +0 -1
  143. package/styles/file-manager/icons/_fluent2.scss +235 -0
  144. package/styles/file-manager/icons/_fusionnew.scss +235 -0
  145. package/styles/file-manager/icons/_material3-dark.scss +1 -0
  146. package/styles/file-manager/icons/_material3.scss +235 -0
  147. package/styles/file-manager/material-dark.css +392 -671
  148. package/styles/file-manager/material-dark.scss +2 -1
  149. package/styles/file-manager/material.css +391 -654
  150. package/styles/file-manager/material.scss +2 -1
  151. package/styles/file-manager/material3-dark.css +1633 -0
  152. package/styles/file-manager/material3-dark.scss +18 -0
  153. package/styles/file-manager/material3.css +1635 -0
  154. package/styles/file-manager/material3.scss +18 -0
  155. package/styles/file-manager/tailwind-dark.css +347 -664
  156. package/styles/file-manager/tailwind-dark.scss +2 -1
  157. package/styles/file-manager/tailwind.css +347 -664
  158. package/styles/file-manager/tailwind.scss +2 -1
  159. package/styles/fluent-dark-lite.css +1037 -0
  160. package/styles/fluent-dark-lite.scss +16 -0
  161. package/styles/fluent-dark.css +359 -641
  162. package/styles/fluent-dark.scss +17 -1
  163. package/styles/fluent-lite.css +1036 -0
  164. package/styles/fluent-lite.scss +16 -0
  165. package/styles/fluent.css +358 -641
  166. package/styles/fluent.scss +17 -1
  167. package/styles/fluent2-lite.css +1272 -0
  168. package/styles/fluent2-lite.scss +16 -0
  169. package/styles/fluent2.css +1886 -0
  170. package/styles/fluent2.scss +17 -0
  171. package/styles/highcontrast-light-lite.css +1039 -0
  172. package/styles/highcontrast-light-lite.scss +16 -0
  173. package/styles/highcontrast-light.css +354 -644
  174. package/styles/highcontrast-light.scss +17 -1
  175. package/styles/highcontrast-lite.css +1059 -0
  176. package/styles/highcontrast-lite.scss +16 -0
  177. package/styles/highcontrast.css +377 -647
  178. package/styles/highcontrast.scss +17 -1
  179. package/styles/material-dark-lite.css +1092 -0
  180. package/styles/material-dark-lite.scss +16 -0
  181. package/styles/material-dark.css +392 -671
  182. package/styles/material-dark.scss +17 -1
  183. package/styles/material-lite.css +1097 -0
  184. package/styles/material-lite.scss +16 -0
  185. package/styles/material.css +391 -654
  186. package/styles/material.scss +17 -1
  187. package/styles/material3-dark-lite.css +1090 -0
  188. package/styles/material3-dark-lite.scss +16 -0
  189. package/styles/material3-dark.css +1633 -0
  190. package/styles/material3-dark.scss +19 -0
  191. package/styles/material3-lite.css +1092 -0
  192. package/styles/material3-lite.scss +16 -0
  193. package/styles/material3.css +1635 -0
  194. package/styles/material3.scss +19 -0
  195. package/styles/tailwind-dark-lite.css +1060 -0
  196. package/styles/tailwind-dark-lite.scss +16 -0
  197. package/styles/tailwind-dark.css +347 -664
  198. package/styles/tailwind-dark.scss +17 -1
  199. package/styles/tailwind-lite.css +1060 -0
  200. package/styles/tailwind-lite.scss +16 -0
  201. package/styles/tailwind.css +347 -664
  202. package/styles/tailwind.scss +17 -1
  203. package/CHANGELOG.md +0 -404
@@ -1 +1,17 @@
1
- @import 'file-manager/tailwind.scss';
1
+ @import 'ej2-base/styles/definition/tailwind.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/tailwind-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/tailwind-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/tailwind-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/tailwind-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/tailwind-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/tailwind-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/tailwind-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/tailwind-definition.scss';
13
+ @import 'ej2-grids/styles/grid/tailwind-definition.scss';
14
+ @import 'file-manager/tailwind-definition.scss';
15
+ @import 'file-manager/icons/tailwind.scss';
16
+ @import 'file-manager/all.scss';
17
+ @import 'file-manager/bigger.scss';
package/CHANGELOG.md DELETED
@@ -1,404 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ## 19.2.56 (2021-08-17)
6
-
7
- ### File Manager
8
-
9
- #### Bug Fixes
10
-
11
- - `#I337431` - The issue with "`filterFiles` method in file manager component" has been resolved.
12
-
13
- ## 19.2.48 (2021-07-20)
14
-
15
- ### File Manager
16
-
17
- #### Bug Fixes
18
-
19
- - `#F166908` - The issue with "When pressing Ctrl+A key, the scroll bar is moved to last item in File Manager detail view" has been resolved.
20
-
21
- ## 19.2.44 (2021-06-30)
22
-
23
- ### File Manager
24
-
25
- #### Bug Fixes
26
-
27
- - `#F160683` - The issue with "Error dialog shown while quickly clicking on the folders when enabling drag and drop support" has been resolved.
28
-
29
- ## 19.1.66 (2021-06-01)
30
-
31
- ### File Manager
32
-
33
- #### Bug Fixes
34
-
35
- - `#F165213` - The issue with "The Details view path column is not removed when refreshing the File Manager files" has been resolved.
36
- - `#F160683` - The issue with "Error dialog shown while quickly clicking on the folders when enabling drag and drop support" has been resolved.
37
-
38
- ## 19.1.63 (2021-05-13)
39
-
40
- ### File Manager
41
-
42
- #### Bug Fixes
43
-
44
- - `#I323484` - Now, the warning dialog will be displayed while dropping the searched file into the same source location in the File Manager component.
45
-
46
- ## 19.1.58 (2021-04-27)
47
-
48
- ### File Manager
49
-
50
- #### Bug Fixes
51
-
52
- - `#I321258`, `#I320950` - The issue with "Error as occurred while sorting the path column at second time in File Manager component" has been fixed.
53
- - `#I318476`, `#I320950` - Resolved the script error that occurred while dragging and dropping an item without selecting it in details view of the File Manager component.
54
-
55
- ## 18.4.41 (2021-02-02)
56
-
57
- ### File Manager
58
-
59
- #### Bug Fixes
60
-
61
- - `#305138` - The issue with "Incorrect message is displayed in delete dialog for File Manager Component" has been resolved.
62
-
63
- ## 18.3.42 (2020-10-20)
64
-
65
- ### File Manager
66
-
67
- #### Bug Fixes
68
-
69
- - `#288436` - The issue with "The error dialog appears when copy and paste the folder with the same name" has been resolved.
70
-
71
- ## 18.2.57 (2020-09-08)
72
-
73
- ### File Manager
74
-
75
- #### Bug Fixes
76
-
77
- - `#288598` - Now, the file details will be sent correctly to the server side while using the rootAliasName property.
78
-
79
- ## 18.2.56 (2020-09-01)
80
-
81
- ### File Manager
82
-
83
- #### Bug Fixes
84
-
85
- - Resolved the incorrect delete confirmation dialog content for file in details view of the File Manager component.
86
-
87
- ## 18.2.48 (2020-08-04)
88
-
89
- ### File Manager
90
-
91
- #### Bug Fixes
92
-
93
- - The issue with “The Toolbar is not updated while adding the sortOrder property value as none” is fixed now.
94
-
95
- ## 18.2.47 (2020-07-28)
96
-
97
- ### File Manager
98
-
99
- #### Bug Fixes
100
-
101
- - Resolved the issue with the incorrect delete confirmation dialog heading and content of the File Manager component.
102
-
103
- ## 18.2.44 (2020-07-07)
104
-
105
- ### File Manager
106
-
107
- #### New Features
108
-
109
- - Added the upload customization support for ASP.NET Core AmazonS3 File Provider.
110
- - Added the upload customization support for Google Drive File Provider.
111
- - Added the upload customization support for FTP File Provider.
112
- - Added the upload customization support for Firebase Realtime Database File Provider.
113
- - `#151112`, `#152443` - Added the access control support for SQL Server File Provider.
114
- - `#260977`, `#263918` - Added the file provider support in ASP.NET MVC for Amazon S3(Simple Storage Service) bucket storage service.
115
- - `#275878` - Provided an option to prevent default sorting of the files and folders in the File Manager component.
116
- - Provided the support to display the File Manager's dialog at the user specified target.
117
-
118
- ## 18.1.56 (2020-06-09)
119
-
120
- ### File Manager
121
-
122
- #### Bug Fixes
123
-
124
- - The issue with "File name is not displayed in the access control error message" has been fixed.
125
-
126
- ## 18.1.55 (2020-06-02)
127
-
128
- ### File Manager
129
-
130
- #### Bug Fixes
131
-
132
- - The issue with "The toolbar is not updated when selecting the root folder in the File Manager component" has been resolved.
133
-
134
- ## 18.1.53 (2020-05-19)
135
-
136
- ### File Manager
137
-
138
- #### Bug Fixes
139
-
140
- - Resolved the script error thrown from the File Manager component when resizing the window.
141
-
142
- ## 18.1.46 (2020-04-28)
143
-
144
- ### File Manager
145
-
146
- #### Bug Fixes
147
-
148
- - The issue with `Unable to localize the error message in the access control actions` has been fixed.
149
- - `#269976` - Now, The File Manager UI will be refreshed properly when resizing the browser window.
150
-
151
- ## 18.1.36-beta (2020-03-19)
152
-
153
- ### File Manager
154
-
155
- #### Bug Fixes
156
-
157
- - `#266091` - Now, the date modified column in the details view is globalized based on the locale value.
158
- - `#266713` - The script error thrown while performing the GetImage operation in NodeJS File System Provider has been fixed.
159
-
160
- #### New Features
161
-
162
- - Added the File Provider support for IBM Cloud Object Storage.
163
- - `#262023` - Added the upload customization support for ASP.NET Core Azure File Provider.
164
- - `#151515` - Added the upload customization support for SQL Server File Provider.
165
-
166
- ## 17.4.51 (2020-02-25)
167
-
168
- ### File Manager
169
-
170
- #### New Features
171
-
172
- - `#263021` - Support has been provided to auto close the upload dialog after uploading all the selected files.
173
-
174
- ## 17.4.50 (2020-02-18)
175
-
176
- ### File Manager
177
-
178
- #### Bug Fixes
179
-
180
- - `#262675` - Provided the support to prevent the XSS attacks using the `enableHtmlSanitizer` property.
181
- - The issue with the given `name` column's width that is not applied in details view has been resolved.
182
-
183
- ## 17.4.44 (2021-01-21)
184
-
185
- ### File Manager
186
-
187
- #### Bug Fixes
188
-
189
- - Resolved the script error when navigate any folder after changing the toolbar settings dynamically in the file manager component.
190
-
191
- ## 17.4.43 (2020-01-14)
192
-
193
- ### File Manager
194
-
195
- #### Bug Fixes
196
-
197
- - `#149499` - The issue with date modified in ASP.NET Core Azure File System Provider has been fixed.
198
- - `#256589` - The issue with `Directory traversal vulnerability` in NodeJS File System Provider has been fixed.
199
-
200
- ## 17.4.41 (2020-01-07)
201
-
202
- ### File Manager
203
-
204
- #### Bug Fixes
205
-
206
- - `#258121` - Resolved the CSS warnings in Firefox 71.0 version.
207
-
208
- ## 17.4.39 (2019-12-17)
209
-
210
- ### File Manager
211
-
212
- #### Bug Fixes
213
-
214
- - `#149500` - The issue with `incorrect popup name in popupBeforeOpen event` has been fixed.
215
-
216
- #### New Features
217
-
218
- - The new events `beforeDownload` and `beforeImageLoad` have been provided to customize the `download` and `getImage` file operations.
219
- - The new ' rootAliasName ' property has been provided to display the custom root folder name.
220
- - Added the filesystem provider support for File Transfer Protocol.
221
-
222
- ## 17.3.28 (2019-11-19)
223
-
224
- ### File Manager
225
-
226
- #### Bug Fixes
227
-
228
- - `#252873` - The issue with `file search on pressing the enter key` has been fixed.
229
-
230
- ## 17.3.27 (2019-11-12)
231
-
232
- ### File Manager
233
-
234
- #### Bug Fixes
235
-
236
- - `#148827` - New event `fileSelection` have been included to restrict the file selection in file manager.
237
-
238
- ## 17.3.26 (2019-11-05)
239
-
240
- ### File Manager
241
-
242
- #### Bug Fixes
243
-
244
- - The issue `file manager throws script error when navigate to the different folder after sorting the path column in details view` has been fixed.
245
-
246
- #### New Features
247
-
248
- - Support has been provided to include a custom message in `AccessRule` class using the message property.
249
-
250
- #### Breaking Changes
251
-
252
- - Now, in access control, the `FolderRule` and `FileRule` classes are combined into a single `AccessRule` class, where you can specify both folder and file rules by using the `IsFile` property.
253
- - Now, the `Edit` and `EditContents` in access control are renamed as `Write` and `WriteContents`.
254
-
255
- ## 17.3.17 (2019-10-15)
256
-
257
- ### File Manager
258
-
259
- #### Breaking Changes
260
-
261
- - Now, the rename dialog shows or hides the file name extension based on the `showFileExtension` property value in the file manager.
262
-
263
- ## 17.3.14 (2019-10-03)
264
-
265
- ### File Manager
266
-
267
- #### Bug Fixes
268
-
269
- - The issue with `the fileOpen event that was not triggered for folder navigation through navigation pane` has been fixed.
270
-
271
- ## 17.3.9-beta (2019-09-20)
272
-
273
- ### File Manager
274
-
275
- #### Bug Fixes
276
-
277
- - The issue `file manager’s details view contains the unnecessary scrollbar and eclipsis in Chrome browser (version 76.0.3809.132)` has been fixed.
278
-
279
- #### Breaking Changes
280
-
281
- - Support has been provided in asp core platform for customizing the columns of file manager's details view. We have also limited the `columns` attributes of the `detailsViewSettings` property instead of accessing the all attributes from the `Grid` sub component.
282
-
283
- ## 17.2.49 (2019-09-04)
284
-
285
- ### File Manager
286
-
287
- #### Bug Fixes
288
-
289
- - The issue `the file manager throws script error when performing sorting in details view when the SortBy button is not present in toolbar` has been fixed.
290
- - The issue `the file manager throws script error when return null response from server for search operation` has been fixed.
291
-
292
- #### New Features
293
-
294
- - New events have been provided to customize the dialog in file manager.
295
- - New methods have been provided to select all files and clear the selection in current path of the file manager.
296
- - New methods have been provided to customize the context menu items in file manager.
297
-
298
- ## 17.2.47 (2019-08-27)
299
-
300
- ### File Manager
301
-
302
- #### New Features
303
-
304
- - Methods have been provided to perform file operations such as create, upload, download, delete, rename, and open in file manager.
305
-
306
- ## 17.2.41 (2019-08-14)
307
-
308
- ### File Manager
309
-
310
- #### Bug Fixes
311
-
312
- - The issue with the `file manager that throws script error while accessing the shared folder in physical file provider` has been fixed.
313
-
314
- #### New Features
315
-
316
- - A method has been provided to customize the filtering support in file manager.
317
-
318
- ## 17.2.40 (2019-08-06)
319
-
320
- ### File Manager
321
-
322
- #### New Features
323
-
324
- - The `ID` based support has been provided to the `selectedItems` property to manage the files with duplicate names.
325
-
326
- ## 17.2.36 (2019-07-24)
327
-
328
- ### File Manager
329
-
330
- #### Bug Fixes
331
-
332
- - Issue with `when the component is rendering and you are trying to resize the window the component throws script error` is fixed.
333
-
334
- ## 17.2.35 (2019-07-17)
335
-
336
- ### File Manager
337
-
338
- #### Bug Fixes
339
-
340
- - Issue with `empty folder icon alignment when persistence enabled` is fixed.
341
-
342
- ## 17.2.34 (2019-07-11)
343
-
344
- ### File Manager
345
-
346
- #### New Features
347
-
348
- - Provided the `id` based support for `path` property to manage the files in an efficient way on going with file system providers.
349
-
350
- ## 17.2.28-beta (2019-06-27)
351
-
352
- ### File Manager
353
-
354
- #### New Features
355
-
356
- - Added file system provider support for SQL server database, Microsoft Azure cloud storage, NodeJS framework, and Google Drive cloud storage.
357
- - Provided access control support for physical file system provider.
358
- - Provided cut, copy, and paste file operations support.
359
- - Provided drag and drop support.
360
- - Provided rename and replace support for uploading files.
361
- - Provided options to upload specific types of files based on extensions.
362
-
363
- ## 17.1.48 (2019-05-21)
364
-
365
- ### File Manager
366
-
367
- #### New Features
368
-
369
- - `#144270` - Added support to use the JWT tokens with `beforeSend` event’s Ajax settings.
370
-
371
- ## 17.1.42 (2019-04-23)
372
-
373
- ### File Manager
374
-
375
- #### New Features
376
-
377
- - Added filesystem provider support for ASP.NET MVC 4 and 5 frameworks.
378
-
379
- ## 17.1.40 (2019-04-09)
380
-
381
- ### File Manager
382
-
383
- #### Breaking Changes
384
-
385
- - The `beforeFileLoad` event’s `module` argument values have been changed as follows:
386
-
387
- |Argument Name|Old Value|New Value|
388
- |----|----|----|
389
- |module|navigationpane|NavigationPane|
390
- |module|Grid|DetailsView|
391
- |module|LargeIcon|LargeIconView|
392
-
393
- ## 17.1.32-beta (2019-03-13)
394
-
395
- ### File Manager
396
-
397
- The `File Manager` is a graphical user interface component used to manage the file system. It enables the user to perform common file operations such as accessing, editing, uploading, downloading, and sorting files and folders. This component also allows easy navigation for browsing or selecting a file or folder from the file system.
398
-
399
- - **Different Views** - Provides detailed and large icon views.
400
- - **Context menu support** - Provides detailed and large icon views.
401
- - **Custom toolbar support** - Customize the toolbar to provide only necessary features.
402
- - **Multiple file selection** - Select multiple files simultaneously.
403
- - **Accessibility** - Features built-in accessibility support that makes all features accessible through keyboard interaction, screen readers, or other assistive technology devices.
404
- - **Localization** - Translate file names to any supported language.