@syncfusion/ej2-filemanager 19.3.55 → 19.4.47

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 (58) hide show
  1. package/CHANGELOG.md +20 -3
  2. package/README.md +1 -1
  3. package/dist/ej2-filemanager.umd.min.js +2 -2
  4. package/dist/ej2-filemanager.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-filemanager.es2015.js +80 -18
  6. package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
  7. package/dist/es6/ej2-filemanager.es5.js +80 -18
  8. package/dist/es6/ej2-filemanager.es5.js.map +1 -1
  9. package/dist/global/ej2-filemanager.min.js +2 -2
  10. package/dist/global/ej2-filemanager.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +15 -15
  13. package/src/file-manager/actions/breadcrumb-bar.js +1 -1
  14. package/src/file-manager/base/file-manager-model.d.ts +1 -1
  15. package/src/file-manager/base/file-manager.d.ts +1 -0
  16. package/src/file-manager/base/file-manager.js +6 -1
  17. package/src/file-manager/base/interface.d.ts +2 -0
  18. package/src/file-manager/common/utility.js +9 -2
  19. package/src/file-manager/layout/large-icons-view.d.ts +1 -1
  20. package/src/file-manager/layout/navigation-pane.d.ts +5 -0
  21. package/src/file-manager/layout/navigation-pane.js +47 -5
  22. package/src/file-manager/models/search-settings-model.d.ts +8 -0
  23. package/src/file-manager/models/search-settings.d.ts +7 -0
  24. package/src/file-manager/models/search-settings.js +3 -0
  25. package/src/file-manager/pop-up/context-menu.d.ts +1 -0
  26. package/src/file-manager/pop-up/context-menu.js +14 -9
  27. package/styles/bootstrap-dark.css +2 -2
  28. package/styles/bootstrap.css +1 -1
  29. package/styles/bootstrap4.css +2 -2
  30. package/styles/bootstrap5-dark.css +8 -3
  31. package/styles/bootstrap5.css +8 -3
  32. package/styles/fabric-dark.css +3 -3
  33. package/styles/fabric.css +4 -4
  34. package/styles/file-manager/_bootstrap-dark-definition.scss +1 -1
  35. package/styles/file-manager/_bootstrap-definition.scss +1 -1
  36. package/styles/file-manager/_bootstrap4-definition.scss +1 -1
  37. package/styles/file-manager/_fabric-dark-definition.scss +2 -2
  38. package/styles/file-manager/_fabric-definition.scss +3 -3
  39. package/styles/file-manager/_fluent-definition.scss +245 -0
  40. package/styles/file-manager/_layout.scss +29 -5
  41. package/styles/file-manager/_material-definition.scss +1 -1
  42. package/styles/file-manager/_tailwind-definition.scss +2 -2
  43. package/styles/file-manager/bootstrap-dark.css +2 -2
  44. package/styles/file-manager/bootstrap.css +1 -1
  45. package/styles/file-manager/bootstrap4.css +2 -2
  46. package/styles/file-manager/bootstrap5-dark.css +8 -3
  47. package/styles/file-manager/bootstrap5.css +8 -3
  48. package/styles/file-manager/fabric-dark.css +3 -3
  49. package/styles/file-manager/fabric.css +4 -4
  50. package/styles/file-manager/icons/_fluent.scss +235 -0
  51. package/styles/file-manager/material-dark.css +6 -0
  52. package/styles/file-manager/material.css +7 -1
  53. package/styles/file-manager/tailwind-dark.css +4 -4
  54. package/styles/file-manager/tailwind.css +4 -4
  55. package/styles/material-dark.css +6 -0
  56. package/styles/material.css +7 -1
  57. package/styles/tailwind-dark.css +4 -4
  58. package/styles/tailwind.css +4 -4
package/CHANGELOG.md CHANGED
@@ -6,15 +6,32 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#I341862` - The issue with "`filterFiles` method throws script error in File Manager" has been resolved.
9
+ - `#I357910` - The issue with "cancel option of file open event is not available for navigation pane in File manager" has been resolved.
10
10
 
11
- ## 19.3.44 (2021-10-05)
11
+ ## 19.4.43 (2022-01-18)
12
12
 
13
13
  ### File Manager
14
14
 
15
15
  #### Bug Fixes
16
16
 
17
- - `#I340018` - The issue with "Script gets executed when new folder is created with HTML tags while using `enableHtmlSanitizer` property of File Manager component" has been resolved.
17
+ - `#I357910` - The issue with "cancel option of file open event is not working for navigation pane in File manager" has been resolved.
18
+ - `#I344572` - The issue with "The AJAX call was sent to the server when performing sorting operation in File Manager" has been resolved.
19
+
20
+ ## 19.4.42 (2022-01-11)
21
+
22
+ ### File Manager
23
+
24
+ #### Bug Fixes
25
+
26
+ - `#F170665` - The issue with "Image preview is not loaded while naming files with arithmetic operator symbols in File Manager" has been resolved.
27
+
28
+ ## 19.4.38 (2021-12-17)
29
+
30
+ ### File Manager
31
+
32
+ #### New Features
33
+
34
+ - Provided support to customize the default search placeholder text of the File Manager.
18
35
 
19
36
  ## 19.2.56 (2021-08-17)
20
37
 
package/README.md CHANGED
@@ -66,4 +66,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
66
66
 
67
67
  Check the changelog [here]( https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/filemanager/CHANGELOG.md?utm_source=npm&utm_campaign=filemanager)
68
68
 
69
- © Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
69
+ © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.