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