@etsoo/materialui 1.0.40 → 1.0.41
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/lib/DataSteps.js +2 -1
- package/package.json +1 -1
- package/src/DataSteps.tsx +1 -1
package/lib/DataSteps.js
CHANGED
|
@@ -77,8 +77,9 @@ export function DataSteps(props) {
|
|
|
77
77
|
return (React.createElement(TextField, { InputLabelProps: InputLabelProps, InputProps: {
|
|
78
78
|
onKeyDown: cancelInput,
|
|
79
79
|
onPaste: cancelInput,
|
|
80
|
+
sx: { cursor: 'pointer' },
|
|
80
81
|
endAdornment: (React.createElement(InputAdornment, { position: "end" },
|
|
81
82
|
React.createElement(IconButton, { edge: "end", size: "small" },
|
|
82
83
|
React.createElement(StartIcon, null))))
|
|
83
|
-
},
|
|
84
|
+
}, onClick: () => showStep(0), value: localValue, ...rest }));
|
|
84
85
|
}
|
package/package.json
CHANGED
package/src/DataSteps.tsx
CHANGED
|
@@ -184,6 +184,7 @@ export function DataSteps<T extends object>(props: DataStepsProps<T>) {
|
|
|
184
184
|
InputProps={{
|
|
185
185
|
onKeyDown: cancelInput,
|
|
186
186
|
onPaste: cancelInput,
|
|
187
|
+
sx: { cursor: 'pointer' },
|
|
187
188
|
endAdornment: (
|
|
188
189
|
<InputAdornment position="end">
|
|
189
190
|
<IconButton edge="end" size="small">
|
|
@@ -192,7 +193,6 @@ export function DataSteps<T extends object>(props: DataStepsProps<T>) {
|
|
|
192
193
|
</InputAdornment>
|
|
193
194
|
)
|
|
194
195
|
}}
|
|
195
|
-
sx={{ cursor: 'pointer' }}
|
|
196
196
|
onClick={() => showStep(0)}
|
|
197
197
|
value={localValue}
|
|
198
198
|
{...rest}
|