@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/CHANGELOG.md +12 -0
- package/dist/TextField.js +3 -3
- package/dist/TextField.js.map +1 -1
- package/dist/labs/VirtualizedAutocomplete.js +1 -1
- package/dist/labs/VirtualizedAutocomplete.js.map +1 -1
- package/dist/src/TextField.d.ts.map +1 -1
- package/dist/tsconfig.production.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/TextField.tsx +2 -1
- package/src/labs/VirtualizedAutocomplete.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okta/odyssey-react-mui",
|
|
3
|
-
"version": "1.10.
|
|
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.
|
|
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": "
|
|
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,
|