@syncfusion/ej2-filemanager 34.1.29 → 34.1.31
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.
- package/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +22 -18
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +22 -18
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/file-manager/layout/details-view.js +22 -18
- package/styles/bds-lite.css +5 -0
- package/styles/bds.css +5 -0
- package/styles/bootstrap-dark-lite.css +5 -0
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap-lite.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4-lite.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark-lite.css +5 -0
- package/styles/bootstrap5-dark.css +5 -0
- package/styles/bootstrap5-lite.css +5 -0
- package/styles/bootstrap5.3-lite.css +5 -0
- package/styles/bootstrap5.3.css +5 -0
- package/styles/bootstrap5.css +5 -0
- package/styles/fabric-dark-lite.css +5 -0
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric-lite.css +5 -0
- package/styles/fabric.css +5 -0
- package/styles/file-manager/_layout.scss +5 -0
- package/styles/file-manager/bds.css +5 -0
- package/styles/file-manager/bootstrap-dark.css +5 -0
- package/styles/file-manager/bootstrap.css +5 -0
- package/styles/file-manager/bootstrap4.css +5 -0
- package/styles/file-manager/bootstrap5-dark.css +5 -0
- package/styles/file-manager/bootstrap5.3.css +5 -0
- package/styles/file-manager/bootstrap5.css +5 -0
- package/styles/file-manager/fabric-dark.css +5 -0
- package/styles/file-manager/fabric.css +5 -0
- package/styles/file-manager/fluent-dark.css +5 -0
- package/styles/file-manager/fluent.css +5 -0
- package/styles/file-manager/fluent2.css +5 -0
- package/styles/file-manager/highcontrast-light.css +5 -0
- package/styles/file-manager/highcontrast.css +5 -0
- package/styles/file-manager/material-dark.css +5 -0
- package/styles/file-manager/material.css +5 -0
- package/styles/file-manager/material3-dark.css +5 -0
- package/styles/file-manager/material3.css +5 -0
- package/styles/file-manager/tailwind-dark.css +5 -0
- package/styles/file-manager/tailwind.css +5 -0
- package/styles/file-manager/tailwind3.css +5 -0
- package/styles/fluent-dark-lite.css +5 -0
- package/styles/fluent-dark.css +5 -0
- package/styles/fluent-lite.css +5 -0
- package/styles/fluent.css +5 -0
- package/styles/fluent2-lite.css +5 -0
- package/styles/fluent2.css +5 -0
- package/styles/highcontrast-light-lite.css +5 -0
- package/styles/highcontrast-light.css +5 -0
- package/styles/highcontrast-lite.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/material-dark-lite.css +5 -0
- package/styles/material-dark.css +5 -0
- package/styles/material-lite.css +5 -0
- package/styles/material.css +5 -0
- package/styles/material3-dark-lite.css +5 -0
- package/styles/material3-dark.css +5 -0
- package/styles/material3-lite.css +5 -0
- package/styles/material3.css +5 -0
- package/styles/tailwind-dark-lite.css +5 -0
- package/styles/tailwind-dark.css +5 -0
- package/styles/tailwind-lite.css +5 -0
- package/styles/tailwind.css +5 -0
- package/styles/tailwind3-lite.css +5 -0
- package/styles/tailwind3.css +5 -0
|
@@ -12888,21 +12888,19 @@ var DetailsView = /** @__PURE__ @class */ (function () {
|
|
|
12888
12888
|
case 'ctrlHome':
|
|
12889
12889
|
case 'tab':
|
|
12890
12890
|
case 'shiftTab':
|
|
12891
|
-
if (!
|
|
12892
|
-
|
|
12893
|
-
|
|
12894
|
-
|
|
12895
|
-
|
|
12896
|
-
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
|
|
12900
|
-
|
|
12901
|
-
|
|
12902
|
-
|
|
12903
|
-
|
|
12904
|
-
this.addHeaderFocus(e);
|
|
12905
|
-
}
|
|
12891
|
+
if (!this.parent.allowMultiSelection && e.action === 'ctrlHome') {
|
|
12892
|
+
this.gridObj.selectRow(0);
|
|
12893
|
+
}
|
|
12894
|
+
else if (e.action === 'shiftTab') {
|
|
12895
|
+
this.handleReverseTabNavigation(e);
|
|
12896
|
+
}
|
|
12897
|
+
else if (e.action === 'tab') {
|
|
12898
|
+
this.isTabKeypressed = true;
|
|
12899
|
+
this.addHeaderFocus(e);
|
|
12900
|
+
this.isTabKeypressed = false;
|
|
12901
|
+
}
|
|
12902
|
+
else {
|
|
12903
|
+
this.addHeaderFocus(e);
|
|
12906
12904
|
}
|
|
12907
12905
|
break;
|
|
12908
12906
|
case 'ctrlEnd':
|
|
@@ -13320,9 +13318,11 @@ var DetailsView = /** @__PURE__ @class */ (function () {
|
|
|
13320
13318
|
nameFocus.setAttribute('tabindex', '0');
|
|
13321
13319
|
nameFocus.focus();
|
|
13322
13320
|
addClass([nameFocus], [FOCUS, FOCUSED]);
|
|
13323
|
-
treeFocus
|
|
13324
|
-
|
|
13325
|
-
|
|
13321
|
+
if (!isNullOrUndefined(treeFocus)) {
|
|
13322
|
+
treeFocus.setAttribute('tabindex', '0');
|
|
13323
|
+
if (treeFocus.tabIndex === 0 && nameFocus.tabIndex === 0) {
|
|
13324
|
+
removeClass([treeFocus], [FOCUS, FOCUSED]);
|
|
13325
|
+
}
|
|
13326
13326
|
}
|
|
13327
13327
|
}
|
|
13328
13328
|
};
|
|
@@ -13388,6 +13388,10 @@ var DetailsView = /** @__PURE__ @class */ (function () {
|
|
|
13388
13388
|
if (headers.length === 0) {
|
|
13389
13389
|
return;
|
|
13390
13390
|
}
|
|
13391
|
+
if (isNullOrUndefined(focusedItem)) {
|
|
13392
|
+
this.moveFocusToHeader(headers[headers.length - 1]);
|
|
13393
|
+
return;
|
|
13394
|
+
}
|
|
13391
13395
|
if (!isNullOrUndefined(focusedItem) && focusedItem.classList.contains('e-rowcell')) {
|
|
13392
13396
|
var row = focusedItem.parentElement;
|
|
13393
13397
|
var cells = row ? Array.from(row.querySelectorAll('.e-rowcell:not(.e-gridchkbox)')) : [];
|