@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/index.js
CHANGED
|
@@ -1448,8 +1448,8 @@ var ControlledMenuFr = function (_a, externalRef) {
|
|
|
1448
1448
|
if (activeElement !== firstInputEl && activeElement !== lastInputEl)
|
|
1449
1449
|
return;
|
|
1450
1450
|
var isTextArea = activeElement.nodeName === "TEXTAREA";
|
|
1451
|
-
var suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave")
|
|
1452
|
-
var allowTabToSave = activeElement.getAttribute("data-allowtabtosave")
|
|
1451
|
+
var suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave") == "true" || isTextArea;
|
|
1452
|
+
var allowTabToSave = activeElement.getAttribute("data-allowtabtosave") == "true";
|
|
1453
1453
|
var invokeSave = function (reason) {
|
|
1454
1454
|
var _a, _b;
|
|
1455
1455
|
if (!(saveButtonRef === null || saveButtonRef === void 0 ? void 0 : saveButtonRef.current))
|