@linzjs/step-ag-grid 7.11.9 → 7.11.10
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/step-ag-grid.esm.js
CHANGED
|
@@ -1427,8 +1427,8 @@ var ControlledMenuFr = function (_a, externalRef) {
|
|
|
1427
1427
|
if (activeElement !== firstInputEl && activeElement !== lastInputEl)
|
|
1428
1428
|
return;
|
|
1429
1429
|
var isTextArea = activeElement.nodeName === "TEXTAREA";
|
|
1430
|
-
var suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave")
|
|
1431
|
-
var allowTabToSave = activeElement.getAttribute("data-allowtabtosave")
|
|
1430
|
+
var suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave") == "true" || isTextArea;
|
|
1431
|
+
var allowTabToSave = activeElement.getAttribute("data-allowtabtosave") == "true";
|
|
1432
1432
|
var invokeSave = function (reason) {
|
|
1433
1433
|
var _a, _b;
|
|
1434
1434
|
if (!(saveButtonRef === null || saveButtonRef === void 0 ? void 0 : saveButtonRef.current))
|