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