@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
|
@@ -12656,21 +12656,19 @@ class DetailsView {
|
|
|
12656
12656
|
case 'ctrlHome':
|
|
12657
12657
|
case 'tab':
|
|
12658
12658
|
case 'shiftTab':
|
|
12659
|
-
if (!
|
|
12660
|
-
|
|
12661
|
-
|
|
12662
|
-
|
|
12663
|
-
|
|
12664
|
-
|
|
12665
|
-
|
|
12666
|
-
|
|
12667
|
-
|
|
12668
|
-
|
|
12669
|
-
|
|
12670
|
-
|
|
12671
|
-
|
|
12672
|
-
this.addHeaderFocus(e);
|
|
12673
|
-
}
|
|
12659
|
+
if (!this.parent.allowMultiSelection && e.action === 'ctrlHome') {
|
|
12660
|
+
this.gridObj.selectRow(0);
|
|
12661
|
+
}
|
|
12662
|
+
else if (e.action === 'shiftTab') {
|
|
12663
|
+
this.handleReverseTabNavigation(e);
|
|
12664
|
+
}
|
|
12665
|
+
else if (e.action === 'tab') {
|
|
12666
|
+
this.isTabKeypressed = true;
|
|
12667
|
+
this.addHeaderFocus(e);
|
|
12668
|
+
this.isTabKeypressed = false;
|
|
12669
|
+
}
|
|
12670
|
+
else {
|
|
12671
|
+
this.addHeaderFocus(e);
|
|
12674
12672
|
}
|
|
12675
12673
|
break;
|
|
12676
12674
|
case 'ctrlEnd':
|
|
@@ -13088,9 +13086,11 @@ class DetailsView {
|
|
|
13088
13086
|
nameFocus.setAttribute('tabindex', '0');
|
|
13089
13087
|
nameFocus.focus();
|
|
13090
13088
|
addClass([nameFocus], [FOCUS, FOCUSED]);
|
|
13091
|
-
treeFocus
|
|
13092
|
-
|
|
13093
|
-
|
|
13089
|
+
if (!isNullOrUndefined(treeFocus)) {
|
|
13090
|
+
treeFocus.setAttribute('tabindex', '0');
|
|
13091
|
+
if (treeFocus.tabIndex === 0 && nameFocus.tabIndex === 0) {
|
|
13092
|
+
removeClass([treeFocus], [FOCUS, FOCUSED]);
|
|
13093
|
+
}
|
|
13094
13094
|
}
|
|
13095
13095
|
}
|
|
13096
13096
|
}
|
|
@@ -13156,6 +13156,10 @@ class DetailsView {
|
|
|
13156
13156
|
if (headers.length === 0) {
|
|
13157
13157
|
return;
|
|
13158
13158
|
}
|
|
13159
|
+
if (isNullOrUndefined(focusedItem)) {
|
|
13160
|
+
this.moveFocusToHeader(headers[headers.length - 1]);
|
|
13161
|
+
return;
|
|
13162
|
+
}
|
|
13159
13163
|
if (!isNullOrUndefined(focusedItem) && focusedItem.classList.contains('e-rowcell')) {
|
|
13160
13164
|
const row = focusedItem.parentElement;
|
|
13161
13165
|
const cells = row ? Array.from(row.querySelectorAll('.e-rowcell:not(.e-gridchkbox)')) : [];
|