@linzjs/step-ag-grid 14.1.0 → 14.1.1
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/package.json
CHANGED
|
@@ -166,9 +166,8 @@ export const ControlledMenuFr = (
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
const
|
|
170
|
-
|
|
171
|
-
(activeElement.type === "text" || activeElement.type == null || activeElement.type === "textarea");
|
|
169
|
+
const type = activeElement.getAttribute("type");
|
|
170
|
+
const isTextInput = type === "text" || type == null || type === "textarea";
|
|
172
171
|
|
|
173
172
|
switch (activeElement.nodeName) {
|
|
174
173
|
case "INPUT":
|