@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
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "14.1.0",
5
+ "version": "14.1.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -166,9 +166,8 @@ export const ControlledMenuFr = (
166
166
  }
167
167
  }
168
168
 
169
- const isTextInput =
170
- "type" in activeElement &&
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":