@syncfusion/ej2-angular-filemanager 20.2.38-ngcc → 20.2.39

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