@mui/x-date-pickers 9.0.0-rc.0 → 9.0.2
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 +328 -6892
- package/DateField/DateField.js +0 -24
- package/DateField/DateField.mjs +0 -24
- package/DateTimeField/DateTimeField.js +0 -24
- package/DateTimeField/DateTimeField.mjs +0 -24
- package/LocalizationProvider/LocalizationProvider.d.mts +0 -6
- package/LocalizationProvider/LocalizationProvider.d.ts +0 -6
- package/LocalizationProvider/LocalizationProvider.js +1 -10
- package/LocalizationProvider/LocalizationProvider.mjs +0 -9
- package/LocalizationProvider/index.d.mts +1 -1
- package/LocalizationProvider/index.d.ts +1 -1
- package/LocalizationProvider/index.js +0 -6
- package/LocalizationProvider/index.mjs +1 -1
- package/PickersTextField/PickersFilledInput/PickersFilledInput.js +14 -19
- package/PickersTextField/PickersFilledInput/PickersFilledInput.mjs +14 -19
- package/PickersTextField/PickersInput/PickersInput.js +12 -17
- package/PickersTextField/PickersInput/PickersInput.mjs +12 -17
- package/PickersTextField/PickersInputBase/PickersInputBase.js +16 -12
- package/PickersTextField/PickersInputBase/PickersInputBase.mjs +16 -12
- package/PickersTextField/PickersInputBase/PickersInputBase.types.d.mts +34 -17
- package/PickersTextField/PickersInputBase/PickersInputBase.types.d.ts +34 -17
- package/PickersTextField/PickersOutlinedInput/PickersOutlinedInput.js +10 -14
- package/PickersTextField/PickersOutlinedInput/PickersOutlinedInput.mjs +10 -14
- package/PickersTextField/PickersTextField.js +68 -55
- package/PickersTextField/PickersTextField.mjs +68 -55
- package/PickersTextField/PickersTextField.types.d.mts +52 -40
- package/PickersTextField/PickersTextField.types.d.ts +52 -40
- package/PickersTextField/index.d.mts +1 -1
- package/PickersTextField/index.d.ts +1 -1
- package/TimeField/TimeField.js +1 -25
- package/TimeField/TimeField.mjs +1 -25
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/internals/components/PickerFieldUI.d.mts +4 -20
- package/internals/components/PickerFieldUI.d.ts +4 -20
- package/internals/components/PickerFieldUI.js +57 -49
- package/internals/components/PickerFieldUI.mjs +57 -49
- package/internals/hooks/useField/useField.js +15 -2
- package/internals/hooks/useField/useField.mjs +15 -2
- package/internals/hooks/useField/useField.utils.js +3 -9
- package/internals/hooks/useField/useField.utils.mjs +3 -9
- package/models/fields.d.mts +1 -1
- package/models/fields.d.ts +1 -1
- package/package.json +125 -125
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
4
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
5
|
-
const _excluded = ["
|
|
5
|
+
const _excluded = ["readOnly", "onClear", "clearable", "clearButtonPosition", "openPickerButtonPosition", "openPickerAriaLabel", "InputProps", "inputProps", "InputLabelProps", "FormHelperTextProps"],
|
|
6
6
|
_excluded2 = ["ownerState"],
|
|
7
7
|
_excluded3 = ["ownerState"],
|
|
8
8
|
_excluded4 = ["ownerState"],
|
|
9
9
|
_excluded5 = ["ownerState"],
|
|
10
|
-
_excluded6 = ["InputProps", "inputProps"];
|
|
10
|
+
_excluded6 = ["InputProps", "inputProps", "InputLabelProps", "FormHelperTextProps"];
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
import useEventCallback from '@mui/utils/useEventCallback';
|
|
13
13
|
import useForkRef from '@mui/utils/useForkRef';
|
|
@@ -15,41 +15,49 @@ import resolveComponentProps from '@mui/utils/resolveComponentProps';
|
|
|
15
15
|
import MuiIconButton from '@mui/material/IconButton';
|
|
16
16
|
import MuiInputAdornment from '@mui/material/InputAdornment';
|
|
17
17
|
import useSlotProps from '@mui/utils/useSlotProps';
|
|
18
|
+
import { warnOnce } from '@mui/x-internals/warning';
|
|
18
19
|
import { useFieldOwnerState } from "../hooks/useFieldOwnerState.mjs";
|
|
19
20
|
import { usePickerTranslations } from "../../hooks/index.mjs";
|
|
20
21
|
import { ClearIcon as MuiClearIcon } from "../../icons/index.mjs";
|
|
21
22
|
import { useNullablePickerContext } from "../hooks/useNullablePickerContext.mjs";
|
|
22
23
|
import { PickersTextField } from "../../PickersTextField/index.mjs";
|
|
23
24
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
24
|
-
const noop = () => {};
|
|
25
25
|
export const cleanFieldResponse = fieldResponse => {
|
|
26
|
-
const
|
|
27
|
-
|
|
26
|
+
const _ref = fieldResponse,
|
|
27
|
+
{
|
|
28
28
|
readOnly,
|
|
29
29
|
onClear,
|
|
30
30
|
clearable,
|
|
31
31
|
clearButtonPosition,
|
|
32
32
|
openPickerButtonPosition,
|
|
33
|
-
openPickerAriaLabel
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
openPickerAriaLabel,
|
|
34
|
+
// TODO v10: remove
|
|
35
|
+
// Explicitly discard legacy props that are no longer supported on `PickersTextField`.
|
|
36
|
+
// Without this, any leftover values would silently leak into `...other` and end up spread
|
|
37
|
+
// as unknown attributes on the underlying form control.
|
|
38
|
+
InputProps: legacyInputProps,
|
|
39
|
+
inputProps: legacyHtmlInputProps,
|
|
40
|
+
InputLabelProps: legacyInputLabelProps,
|
|
41
|
+
FormHelperTextProps: legacyFormHelperTextProps
|
|
42
|
+
} = _ref,
|
|
43
|
+
other = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
44
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
45
|
+
if (legacyInputProps || legacyHtmlInputProps || legacyInputLabelProps || legacyFormHelperTextProps) {
|
|
46
|
+
warnOnce(['MUI X: The `InputProps`, `inputProps`, `InputLabelProps` and `FormHelperTextProps` props are no longer supported on Picker / Field components.', 'They have been silently dropped because they would otherwise be forwarded as unknown attributes on the underlying form control.', 'Use the `slotProps` shape instead (`slotProps.input`, `slotProps.htmlInput`, `slotProps.inputLabel`, `slotProps.formHelperText`).', 'See https://mui.com/x/migration/migration-pickers-v8/#textfield-props for migration details.']);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
37
49
|
return {
|
|
38
50
|
clearable,
|
|
39
51
|
onClear,
|
|
40
52
|
clearButtonPosition,
|
|
41
53
|
openPickerButtonPosition,
|
|
42
54
|
openPickerAriaLabel,
|
|
43
|
-
textFieldProps: _extends({}, other,
|
|
55
|
+
textFieldProps: _extends({}, other, {
|
|
44
56
|
slotProps: _extends({}, other?.slotProps, {
|
|
45
|
-
input:
|
|
57
|
+
input: _extends({}, other?.slotProps?.input, {
|
|
46
58
|
readOnly
|
|
47
59
|
})
|
|
48
60
|
})
|
|
49
|
-
} : {
|
|
50
|
-
InputProps: _extends({}, InputProps ?? {}, {
|
|
51
|
-
readOnly
|
|
52
|
-
})
|
|
53
61
|
})
|
|
54
62
|
};
|
|
55
63
|
};
|
|
@@ -165,13 +173,14 @@ export function PickerFieldUI(props) {
|
|
|
165
173
|
ownerState
|
|
166
174
|
});
|
|
167
175
|
textFieldProps.ref = useForkRef(textFieldProps.ref, pickerContext?.rootRef);
|
|
168
|
-
const
|
|
169
|
-
const
|
|
176
|
+
const externalInputSlotProps = textFieldProps.slotProps?.input;
|
|
177
|
+
const additionalInputSlotProps = {};
|
|
178
|
+
const forkedInputRef = useForkRef(externalInputSlotProps?.ref, pickerContext?.triggerRef);
|
|
170
179
|
if (pickerContext) {
|
|
171
|
-
|
|
180
|
+
additionalInputSlotProps.ref = forkedInputRef;
|
|
172
181
|
}
|
|
173
|
-
if (!
|
|
174
|
-
|
|
182
|
+
if (!externalInputSlotProps?.startAdornment && (clearButtonPosition === 'start' || openPickerButtonPosition === 'start')) {
|
|
183
|
+
additionalInputSlotProps.startAdornment = /*#__PURE__*/_jsxs(InputAdornment, _extends({}, startInputAdornmentProps, {
|
|
175
184
|
children: [openPickerButtonPosition === 'start' && /*#__PURE__*/_jsx(OpenPickerButton, _extends({}, openPickerButtonProps, {
|
|
176
185
|
children: /*#__PURE__*/_jsx(OpenPickerIcon, _extends({}, openPickerIconProps))
|
|
177
186
|
})), clearButtonPosition === 'start' && /*#__PURE__*/_jsx(ClearButton, _extends({}, clearButtonProps, {
|
|
@@ -179,8 +188,8 @@ export function PickerFieldUI(props) {
|
|
|
179
188
|
}))]
|
|
180
189
|
}));
|
|
181
190
|
}
|
|
182
|
-
if (!
|
|
183
|
-
|
|
191
|
+
if (!externalInputSlotProps?.endAdornment && (clearButtonPosition === 'end' || openPickerButtonPosition === 'end')) {
|
|
192
|
+
additionalInputSlotProps.endAdornment = /*#__PURE__*/_jsxs(InputAdornment, _extends({}, endInputAdornmentProps, {
|
|
184
193
|
children: [clearButtonPosition === 'end' && /*#__PURE__*/_jsx(ClearButton, _extends({}, clearButtonProps, {
|
|
185
194
|
children: /*#__PURE__*/_jsx(ClearIcon, _extends({}, clearIconProps))
|
|
186
195
|
})), openPickerButtonPosition === 'end' && /*#__PURE__*/_jsx(OpenPickerButton, _extends({}, openPickerButtonProps, {
|
|
@@ -189,8 +198,8 @@ export function PickerFieldUI(props) {
|
|
|
189
198
|
}));
|
|
190
199
|
}
|
|
191
200
|
// handle the case of showing custom `inputAdornment` for Field components
|
|
192
|
-
if (!
|
|
193
|
-
|
|
201
|
+
if (!additionalInputSlotProps.endAdornment && !additionalInputSlotProps.startAdornment && pickerFieldUIContext.slots.inputAdornment) {
|
|
202
|
+
additionalInputSlotProps.endAdornment = /*#__PURE__*/_jsx(InputAdornment, _extends({}, endInputAdornmentProps));
|
|
194
203
|
}
|
|
195
204
|
if (clearButtonPosition != null) {
|
|
196
205
|
textFieldProps.sx = [{
|
|
@@ -209,19 +218,10 @@ export function PickerFieldUI(props) {
|
|
|
209
218
|
}
|
|
210
219
|
}, ...(Array.isArray(textFieldProps.sx) ? textFieldProps.sx : [textFieldProps.sx])];
|
|
211
220
|
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
// Remove the `input` slotProps to avoid them overriding the manually resolved `InputProps`.
|
|
218
|
-
// `slotProps` would take precedence over `InputProps`.
|
|
219
|
-
delete textFieldProps?.slotProps?.input;
|
|
220
|
-
// Remove the `slotProps` on `PickersTextField` as they are not supported.
|
|
221
|
-
delete textFieldProps?.slotProps;
|
|
222
|
-
return /*#__PURE__*/_jsx(TextField, _extends({}, textFieldProps, {
|
|
223
|
-
InputProps: resolvedTextFieldInputProps
|
|
224
|
-
}));
|
|
221
|
+
textFieldProps.slotProps = _extends({}, textFieldProps.slotProps, {
|
|
222
|
+
input: _extends({}, externalInputSlotProps, additionalInputSlotProps)
|
|
223
|
+
});
|
|
224
|
+
return /*#__PURE__*/_jsx(TextField, _extends({}, textFieldProps));
|
|
225
225
|
}
|
|
226
226
|
export function mergeSlotProps(slotPropsA, slotPropsB) {
|
|
227
227
|
if (!slotPropsA) {
|
|
@@ -237,8 +237,7 @@ export function mergeSlotProps(slotPropsA, slotPropsB) {
|
|
|
237
237
|
|
|
238
238
|
/**
|
|
239
239
|
* The `textField` slot props cannot be handled inside `PickerFieldUI` because it would be a breaking change to not pass the enriched props to `useField`.
|
|
240
|
-
*
|
|
241
|
-
* TODO: Address with the needed support for the `textField` slotProps given the change of minimum version of MUI.
|
|
240
|
+
* TODO v10: Remove the `textField` slot and clean this logic up.
|
|
242
241
|
*/
|
|
243
242
|
export function useFieldTextFieldProps(parameters) {
|
|
244
243
|
const {
|
|
@@ -249,15 +248,28 @@ export function useFieldTextFieldProps(parameters) {
|
|
|
249
248
|
const pickerFieldUIContext = React.useContext(PickerFieldUIContext);
|
|
250
249
|
const pickerContext = useNullablePickerContext();
|
|
251
250
|
const ownerState = useFieldOwnerState(externalForwardedProps);
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
251
|
+
|
|
252
|
+
// TODO v10: remove
|
|
253
|
+
// Strip the legacy `InputProps` / `inputProps` / `InputLabelProps` / `FormHelperTextProps`
|
|
254
|
+
// before they reach `PickersTextField`, which would silently ignore them. JS users without
|
|
255
|
+
// TypeScript checks would otherwise see their configuration vanish.
|
|
256
|
+
const _ref2 = externalForwardedProps ?? {},
|
|
257
|
+
{
|
|
258
|
+
InputProps: legacyInputProps,
|
|
259
|
+
inputProps: legacyHtmlInputProps,
|
|
260
|
+
InputLabelProps: legacyInputLabelProps,
|
|
261
|
+
FormHelperTextProps: legacyFormHelperTextProps
|
|
262
|
+
} = _ref2,
|
|
263
|
+
sanitizedExternalForwardedProps = _objectWithoutPropertiesLoose(_ref2, _excluded6);
|
|
264
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
265
|
+
if (legacyInputProps || legacyHtmlInputProps || legacyInputLabelProps || legacyFormHelperTextProps) {
|
|
266
|
+
warnOnce(['MUI X: Field components no longer accept the `InputProps`, `inputProps`, `InputLabelProps` and `FormHelperTextProps` props.', 'They have been dropped to avoid leaking unknown attributes onto the underlying form control.', 'Use the nested `slotProps.textField.slotProps.{input,htmlInput,inputLabel,formHelperText}` shape instead.']);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
257
269
|
const textFieldProps = useSlotProps({
|
|
258
270
|
elementType: PickersTextField,
|
|
259
271
|
externalSlotProps: mergeSlotProps(pickerFieldUIContext.slotProps.textField, slotProps?.textField),
|
|
260
|
-
externalForwardedProps:
|
|
272
|
+
externalForwardedProps: sanitizedExternalForwardedProps,
|
|
261
273
|
additionalProps: {
|
|
262
274
|
ref,
|
|
263
275
|
sx: pickerContext?.rootSx,
|
|
@@ -303,10 +315,6 @@ export function useFieldTextFieldProps(parameters) {
|
|
|
303
315
|
}
|
|
304
316
|
};
|
|
305
317
|
}
|
|
306
|
-
|
|
307
|
-
// TODO: Remove when mui/material-ui#35088 will be merged
|
|
308
|
-
textFieldProps.inputProps = _extends({}, inputProps, textFieldProps.inputProps);
|
|
309
|
-
textFieldProps.InputProps = _extends({}, InputProps, textFieldProps.InputProps);
|
|
310
318
|
return textFieldProps;
|
|
311
319
|
}
|
|
312
320
|
export function PickerFieldUIContextProvider(props) {
|
|
@@ -138,12 +138,25 @@ const useField = parameters => {
|
|
|
138
138
|
rootProps.onKeyDown(event);
|
|
139
139
|
});
|
|
140
140
|
const handleRootBlur = (0, _useEventCallback.default)(event => {
|
|
141
|
-
onBlur?.(event);
|
|
142
141
|
rootProps.onBlur(event);
|
|
142
|
+
// Skip the user callback when focus is only moving to another element inside the field
|
|
143
|
+
// (e.g. the section that gains focus after the focusable root gives it up).
|
|
144
|
+
const next = event.relatedTarget;
|
|
145
|
+
if (domGetters.isReady() && next instanceof Node && domGetters.getRoot().contains(next)) {
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
onBlur?.(event);
|
|
143
149
|
});
|
|
144
150
|
const handleRootFocus = (0, _useEventCallback.default)(event => {
|
|
145
|
-
onFocus?.(event);
|
|
146
151
|
rootProps.onFocus(event);
|
|
152
|
+
// Skip the user callback when focus is only arriving from another element inside the field
|
|
153
|
+
// (e.g. the focusable root receiving it before it is forwarded to a section, and the section
|
|
154
|
+
// focus event bubbling back up to the root).
|
|
155
|
+
const previous = event.relatedTarget;
|
|
156
|
+
if (domGetters.isReady() && previous instanceof Node && domGetters.getRoot().contains(previous)) {
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
onFocus?.(event);
|
|
147
160
|
});
|
|
148
161
|
const handleRootClick = (0, _useEventCallback.default)(event => {
|
|
149
162
|
// The click event on the clear or open button would propagate to the input, trigger this handler and result in an inadvertent section selection.
|
|
@@ -131,12 +131,25 @@ export const useField = parameters => {
|
|
|
131
131
|
rootProps.onKeyDown(event);
|
|
132
132
|
});
|
|
133
133
|
const handleRootBlur = useEventCallback(event => {
|
|
134
|
-
onBlur?.(event);
|
|
135
134
|
rootProps.onBlur(event);
|
|
135
|
+
// Skip the user callback when focus is only moving to another element inside the field
|
|
136
|
+
// (e.g. the section that gains focus after the focusable root gives it up).
|
|
137
|
+
const next = event.relatedTarget;
|
|
138
|
+
if (domGetters.isReady() && next instanceof Node && domGetters.getRoot().contains(next)) {
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
onBlur?.(event);
|
|
136
142
|
});
|
|
137
143
|
const handleRootFocus = useEventCallback(event => {
|
|
138
|
-
onFocus?.(event);
|
|
139
144
|
rootProps.onFocus(event);
|
|
145
|
+
// Skip the user callback when focus is only arriving from another element inside the field
|
|
146
|
+
// (e.g. the focusable root receiving it before it is forwarded to a section, and the section
|
|
147
|
+
// focus event bubbling back up to the root).
|
|
148
|
+
const previous = event.relatedTarget;
|
|
149
|
+
if (domGetters.isReady() && previous instanceof Node && domGetters.getRoot().contains(previous)) {
|
|
150
|
+
return;
|
|
151
|
+
}
|
|
152
|
+
onFocus?.(event);
|
|
140
153
|
});
|
|
141
154
|
const handleRootClick = useEventCallback(event => {
|
|
142
155
|
// The click event on the clear or open button would propagate to the input, trigger this handler and result in an inadvertent section selection.
|
|
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.validateSections = exports.removeLocalizedDigits = exports.parseSelectedSections = exports.mergeDateIntoReferenceDate = exports.isStringNumber = exports.isAndroid = exports.getSectionsBoundaries = exports.getSectionVisibleValue = exports.getSectionOrder = exports.getLocalizedDigits = exports.getLetterEditingOptions = exports.getDaysInWeekStr = exports.getDateSectionConfigFromFormatToken = exports.getDateFromDateSections = exports.doesSectionFormatHaveLeadingZeros = exports.createDateStrForHiddenInputFromSections = exports.cleanLeadingZeros = exports.cleanDigitSectionValue = exports.changeSectionValueFormat = exports.applyLocalizedDigits = exports.FORMAT_SECONDS_NO_LEADING_ZEROS = void 0;
|
|
8
8
|
var _formatErrorMessage2 = _interopRequireDefault(require("@mui/x-internals/formatErrorMessage"));
|
|
9
9
|
var _dateUtils = require("../../utils/date-utils");
|
|
10
|
+
var _timeUtils = require("../../utils/time-utils");
|
|
10
11
|
const getDateSectionConfigFromFormatToken = (adapter, formatToken) => {
|
|
11
12
|
const config = adapter.formatTokenMap[formatToken];
|
|
12
13
|
if (config == null) {
|
|
@@ -386,15 +387,8 @@ const transferDateSectionValue = (adapter, section, dateToTransferFrom, dateToTr
|
|
|
386
387
|
}
|
|
387
388
|
case 'meridiem':
|
|
388
389
|
{
|
|
389
|
-
const
|
|
390
|
-
|
|
391
|
-
if (isAM && mergedDateHours >= 12) {
|
|
392
|
-
return adapter.addHours(dateToTransferTo, -12);
|
|
393
|
-
}
|
|
394
|
-
if (!isAM && mergedDateHours < 12) {
|
|
395
|
-
return adapter.addHours(dateToTransferTo, 12);
|
|
396
|
-
}
|
|
397
|
-
return dateToTransferTo;
|
|
390
|
+
const meridiem = adapter.getHours(dateToTransferFrom) < 12 ? 'am' : 'pm';
|
|
391
|
+
return (0, _timeUtils.convertToMeridiem)(dateToTransferTo, meridiem, true, adapter);
|
|
398
392
|
}
|
|
399
393
|
case 'hours':
|
|
400
394
|
{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import _formatErrorMessage from "@mui/x-internals/formatErrorMessage";
|
|
2
2
|
import { getMonthsInYear } from "../../utils/date-utils.mjs";
|
|
3
|
+
import { convertToMeridiem } from "../../utils/time-utils.mjs";
|
|
3
4
|
export const getDateSectionConfigFromFormatToken = (adapter, formatToken) => {
|
|
4
5
|
const config = adapter.formatTokenMap[formatToken];
|
|
5
6
|
if (config == null) {
|
|
@@ -363,15 +364,8 @@ const transferDateSectionValue = (adapter, section, dateToTransferFrom, dateToTr
|
|
|
363
364
|
}
|
|
364
365
|
case 'meridiem':
|
|
365
366
|
{
|
|
366
|
-
const
|
|
367
|
-
|
|
368
|
-
if (isAM && mergedDateHours >= 12) {
|
|
369
|
-
return adapter.addHours(dateToTransferTo, -12);
|
|
370
|
-
}
|
|
371
|
-
if (!isAM && mergedDateHours < 12) {
|
|
372
|
-
return adapter.addHours(dateToTransferTo, 12);
|
|
373
|
-
}
|
|
374
|
-
return dateToTransferTo;
|
|
367
|
+
const meridiem = adapter.getHours(dateToTransferFrom) < 12 ? 'am' : 'pm';
|
|
368
|
+
return convertToMeridiem(dateToTransferTo, meridiem, true, adapter);
|
|
375
369
|
}
|
|
376
370
|
case 'hours':
|
|
377
371
|
{
|
package/models/fields.d.mts
CHANGED
|
@@ -143,7 +143,7 @@ export type BaseSingleInputPickersTextFieldProps = Omit<UseFieldReturnValue<Base
|
|
|
143
143
|
/**
|
|
144
144
|
* Props the built-in text field component can receive.
|
|
145
145
|
*/
|
|
146
|
-
export type BuiltInFieldTextFieldProps = Partial<Omit<PickersTextFieldProps, keyof ExportedPickersSectionListProps>>;
|
|
146
|
+
export type BuiltInFieldTextFieldProps = Partial<Omit<PickersTextFieldProps, keyof ExportedPickersSectionListProps | 'slots' | 'slotProps'>>;
|
|
147
147
|
export interface PickerTextFieldOwnerState extends FieldOwnerState {
|
|
148
148
|
/**
|
|
149
149
|
* `true` if the value of the field is currently empty.
|
package/models/fields.d.ts
CHANGED
|
@@ -143,7 +143,7 @@ export type BaseSingleInputPickersTextFieldProps = Omit<UseFieldReturnValue<Base
|
|
|
143
143
|
/**
|
|
144
144
|
* Props the built-in text field component can receive.
|
|
145
145
|
*/
|
|
146
|
-
export type BuiltInFieldTextFieldProps = Partial<Omit<PickersTextFieldProps, keyof ExportedPickersSectionListProps>>;
|
|
146
|
+
export type BuiltInFieldTextFieldProps = Partial<Omit<PickersTextFieldProps, keyof ExportedPickersSectionListProps | 'slots' | 'slotProps'>>;
|
|
147
147
|
export interface PickerTextFieldOwnerState extends FieldOwnerState {
|
|
148
148
|
/**
|
|
149
149
|
* `true` if the value of the field is currently empty.
|