@syncfusion/ej2-filemanager 26.1.40 → 26.2.4

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 26.1.40
3
+ * version : 26.2.4
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-filemanager@*",
3
- "_id": "@syncfusion/ej2-filemanager@26.1.35",
3
+ "_id": "@syncfusion/ej2-filemanager@26.1.40",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-Kz+p1X25H0dKm6Pl5oI9TFsx9JX0p6DnhqRzo4rDGDPWoC7WwvIsgC0kuqSsL0PF3UHamOSo+ulM72s/oVBbqQ==",
5
+ "_integrity": "sha512-U8+p+7IyfvFnheZ4QWtIg7cVEz8O5aM3bbWDIjMSGSQpJ6fiVw2ZQ0OVtDjKT0VyftXWzK8z8r1VRyxs4Lb5Gg==",
6
6
  "_location": "/@syncfusion/ej2-filemanager",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -24,8 +24,8 @@
24
24
  "/@syncfusion/ej2-richtexteditor",
25
25
  "/@syncfusion/ej2-vue-filemanager"
26
26
  ],
27
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-26.1.35.tgz",
28
- "_shasum": "8ebc88cab205114720fc33d2282657d71f0a3066",
27
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-26.1.40.tgz",
28
+ "_shasum": "ed19291bd23658b6b41e218940bcf2320c3e9c45",
29
29
  "_spec": "@syncfusion/ej2-filemanager@*",
30
30
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
31
31
  "author": {
@@ -36,16 +36,16 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~26.1.37",
40
- "@syncfusion/ej2-buttons": "~26.1.40",
41
- "@syncfusion/ej2-data": "~26.1.40",
42
- "@syncfusion/ej2-grids": "~26.1.40",
43
- "@syncfusion/ej2-inputs": "~26.1.40",
44
- "@syncfusion/ej2-layouts": "~26.1.38",
45
- "@syncfusion/ej2-lists": "~26.1.35",
46
- "@syncfusion/ej2-navigations": "~26.1.40",
47
- "@syncfusion/ej2-popups": "~26.1.38",
48
- "@syncfusion/ej2-splitbuttons": "~26.1.35"
39
+ "@syncfusion/ej2-base": "~26.2.4",
40
+ "@syncfusion/ej2-buttons": "~26.2.4",
41
+ "@syncfusion/ej2-data": "~26.2.4",
42
+ "@syncfusion/ej2-grids": "~26.2.4",
43
+ "@syncfusion/ej2-inputs": "~26.2.4",
44
+ "@syncfusion/ej2-layouts": "~26.2.4",
45
+ "@syncfusion/ej2-lists": "~26.2.4",
46
+ "@syncfusion/ej2-navigations": "~26.2.4",
47
+ "@syncfusion/ej2-popups": "~26.2.4",
48
+ "@syncfusion/ej2-splitbuttons": "~26.2.4"
49
49
  },
50
50
  "deprecated": false,
51
51
  "description": "Essential JS 2 FileManager Component",
@@ -75,6 +75,6 @@
75
75
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
76
76
  },
77
77
  "typings": "index.d.ts",
78
- "version": "26.1.40",
78
+ "version": "26.2.4",
79
79
  "sideEffects": false
80
80
  }
@@ -580,7 +580,9 @@ var DetailsView = /** @class */ (function () {
580
580
  };
581
581
  DetailsView.prototype.onPathChanged = function (args) {
582
582
  this.parent.isCut = false;
583
- if (this.parent.breadcrumbbarModule.searchObj.element.value.trim() === '' && this.gridObj) {
583
+ var pathField = this.parent.detailsViewSettings.columns.find(function (column) { return column.field === 'filterPath'; });
584
+ if ((this.parent.breadcrumbbarModule.searchObj.element.value.trim() === '' && this.gridObj) ||
585
+ (!isNullOrUndefined(pathField) && !isNullOrUndefined(pathField.hideAtMedia) && pathField.hideAtMedia !== '')) {
584
586
  this.parent.searchedItems = [];
585
587
  if (!this.parent.isFiltered) {
586
588
  this.removePathColumn(false);