@okta/odyssey-react-mui 1.10.0 → 1.10.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@okta/odyssey-react-mui",
3
- "version": "1.10.0",
3
+ "version": "1.10.3",
4
4
  "description": "React MUI components for Odyssey, Okta's design system",
5
5
  "author": "Okta, Inc.",
6
6
  "license": "Apache-2.0",
@@ -51,7 +51,7 @@
51
51
  "@mui/system": "^5.14.9",
52
52
  "@mui/utils": "^5.11.2",
53
53
  "@mui/x-date-pickers": "^5.0.15",
54
- "@okta/odyssey-design-tokens": "1.10.0",
54
+ "@okta/odyssey-design-tokens": "1.10.3",
55
55
  "date-fns": "^2.30.0",
56
56
  "i18next": "^23.5.1",
57
57
  "material-react-table": "^2.0.2",
@@ -63,5 +63,5 @@
63
63
  "react": ">=17 <19",
64
64
  "react-dom": ">=17 <19"
65
65
  },
66
- "gitHead": "b17865a3ac9cae5525f11b8f1715d166557057a8"
66
+ "gitHead": "a6212214c614cc9e2b6199d805e253d4fad586a4"
67
67
  }
package/src/TextField.tsx CHANGED
@@ -189,10 +189,10 @@ const TextField = forwardRef<HTMLInputElement, TextFieldProps>(
189
189
  )
190
190
  }
191
191
  id={id}
192
- inputMode={inputMode}
193
192
  inputProps={{
194
193
  "aria-errormessage": errorMessageElementId,
195
194
  "aria-labelledby": labelElementId,
195
+ inputmode: inputMode,
196
196
  }}
197
197
  inputRef={inputRef}
198
198
  multiline={isMultiline}
@@ -220,6 +220,7 @@ const TextField = forwardRef<HTMLInputElement, TextFieldProps>(
220
220
  inputValues,
221
221
  hasInitialFocus,
222
222
  endAdornment,
223
+ inputMode,
223
224
  isMultiline,
224
225
  nameOverride,
225
226
  onBlur,
@@ -273,7 +273,7 @@ const VirtualizedAutocomplete = <
273
273
  )}
274
274
  />
275
275
  ),
276
- [errorMessage, hint, isOptional, label, nameOverride]
276
+ [errorMessage, errorMessageList, hint, isOptional, label, nameOverride]
277
277
  );
278
278
  const onChange = useCallback<
279
279
  NonNullable<