diff --git a/.stylelintrc.js b/.stylelintrc.js
index 059de2fca134a1..12f7a1c2197b6e 100644
--- a/.stylelintrc.js
+++ b/.stylelintrc.js
@@ -1,6 +1,11 @@
module.exports = {
processors: ['stylelint-processor-styled-components'],
extends: 'stylelint-config-standard',
+ ignoreFiles: [
+ // TypeScript declaration files contain no styles.
+ // Stylelint is also reporting parseError on `docs/types/react-docgen.d.ts`.
+ '**/*.d.ts',
+ ],
rules: {
'value-no-vendor-prefix': true,
'property-no-vendor-prefix': true,
diff --git a/docs/pages/api-docs/desktop-time-picker.js b/docs/pages/api-docs/desktop-time-picker.js
new file mode 100644
index 00000000000000..f92ef485a7ea03
--- /dev/null
+++ b/docs/pages/api-docs/desktop-time-picker.js
@@ -0,0 +1,23 @@
+import * as React from 'react';
+import ApiPage from 'docs/src/modules/components/ApiPage';
+import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
+import jsonPageContent from './desktop-time-picker.json';
+
+export default function Page(props) {
+ const { descriptions, pageContent } = props;
+ return
| 'hours'
| 'minutes'
| 'month'
| 'seconds'
| 'year'"
+ }
+ },
+ "orientation": {
+ "type": { "name": "enum", "description": "'landscape'
| 'portrait'" }
+ },
+ "PopperProps": { "type": { "name": "object" } },
+ "readOnly": { "type": { "name": "bool" } },
+ "rifmFormatter": { "type": { "name": "func" } },
+ "shouldDisableTime": { "type": { "name": "func" } },
+ "showToolbar": { "type": { "name": "bool" } },
+ "ToolbarComponent": { "type": { "name": "elementType" } },
+ "toolbarFormat": { "type": { "name": "string" } },
+ "toolbarPlaceholder": { "type": { "name": "node" } },
+ "toolbarTitle": { "type": { "name": "node" } },
+ "TransitionComponent": { "type": { "name": "elementType" } },
+ "value": {
+ "type": {
+ "name": "union",
+ "description": "any
| Date
| number
| string"
+ }
+ },
+ "views": {
+ "type": {
+ "name": "arrayOf",
+ "description": "Array<'hours'
| 'minutes'
| 'seconds'>"
+ }
+ }
+ },
+ "name": "DesktopTimePicker",
+ "styles": { "classes": [], "globalClasses": {}, "name": null },
+ "spread": false,
+ "forwardsRefTo": "HTMLInputElement",
+ "filename": "/packages/material-ui-lab/src/DesktopTimePicker/DesktopTimePicker.tsx",
+ "inheritance": null,
+ "demos": "",
+ "styledComponent": true,
+ "cssComponent": false
+}
diff --git a/docs/pages/api-docs/mobile-time-picker.js b/docs/pages/api-docs/mobile-time-picker.js
new file mode 100644
index 00000000000000..ba189fa14c47d5
--- /dev/null
+++ b/docs/pages/api-docs/mobile-time-picker.js
@@ -0,0 +1,23 @@
+import * as React from 'react';
+import ApiPage from 'docs/src/modules/components/ApiPage';
+import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
+import jsonPageContent from './mobile-time-picker.json';
+
+export default function Page(props) {
+ const { descriptions, pageContent } = props;
+ return
| 'hours'
| 'minutes'
| 'month'
| 'seconds'
| 'year'"
+ }
+ },
+ "orientation": {
+ "type": { "name": "enum", "description": "'landscape'
| 'portrait'" }
+ },
+ "readOnly": { "type": { "name": "bool" } },
+ "rifmFormatter": { "type": { "name": "func" } },
+ "shouldDisableTime": { "type": { "name": "func" } },
+ "showTodayButton": { "type": { "name": "bool" } },
+ "showToolbar": { "type": { "name": "bool" } },
+ "todayText": { "type": { "name": "node" } },
+ "ToolbarComponent": { "type": { "name": "elementType" } },
+ "toolbarFormat": { "type": { "name": "string" } },
+ "toolbarPlaceholder": { "type": { "name": "node" } },
+ "toolbarTitle": { "type": { "name": "node" } },
+ "value": {
+ "type": {
+ "name": "union",
+ "description": "any
| Date
| number
| string"
+ }
+ },
+ "views": {
+ "type": {
+ "name": "arrayOf",
+ "description": "Array<'hours'
| 'minutes'
| 'seconds'>"
+ }
+ }
+ },
+ "name": "MobileTimePicker",
+ "styles": { "classes": [], "globalClasses": {}, "name": null },
+ "spread": false,
+ "forwardsRefTo": "HTMLInputElement",
+ "filename": "/packages/material-ui-lab/src/MobileTimePicker/MobileTimePicker.tsx",
+ "inheritance": null,
+ "demos": "",
+ "styledComponent": true,
+ "cssComponent": false
+}
diff --git a/docs/pages/api-docs/static-time-picker.js b/docs/pages/api-docs/static-time-picker.js
new file mode 100644
index 00000000000000..09624bb4b1610d
--- /dev/null
+++ b/docs/pages/api-docs/static-time-picker.js
@@ -0,0 +1,23 @@
+import * as React from 'react';
+import ApiPage from 'docs/src/modules/components/ApiPage';
+import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
+import jsonPageContent from './static-time-picker.json';
+
+export default function Page(props) {
+ const { descriptions, pageContent } = props;
+ return
| 'mobile'" }
+ },
+ "getClockLabelText": { "type": { "name": "func" } },
+ "getOpenDialogAriaText": { "type": { "name": "func" } },
+ "InputAdornmentProps": { "type": { "name": "object" } },
+ "inputFormat": { "type": { "name": "string" } },
+ "mask": { "type": { "name": "string" } },
+ "minutesStep": { "type": { "name": "number" } },
+ "onAccept": { "type": { "name": "func" } },
+ "onClose": { "type": { "name": "func" } },
+ "onError": { "type": { "name": "func" } },
+ "onOpen": { "type": { "name": "func" } },
+ "open": { "type": { "name": "bool" } },
+ "OpenPickerButtonProps": { "type": { "name": "object" } },
+ "openPickerIcon": { "type": { "name": "node" } },
+ "openTo": {
+ "type": {
+ "name": "enum",
+ "description": "'date'
| 'hours'
| 'minutes'
| 'month'
| 'seconds'
| 'year'"
+ }
+ },
+ "orientation": {
+ "type": { "name": "enum", "description": "'landscape'
| 'portrait'" }
+ },
+ "readOnly": { "type": { "name": "bool" } },
+ "rifmFormatter": { "type": { "name": "func" } },
+ "shouldDisableTime": { "type": { "name": "func" } },
+ "showToolbar": { "type": { "name": "bool" } },
+ "ToolbarComponent": { "type": { "name": "elementType" } },
+ "toolbarFormat": { "type": { "name": "string" } },
+ "toolbarPlaceholder": { "type": { "name": "node" } },
+ "toolbarTitle": { "type": { "name": "node" } },
+ "value": {
+ "type": {
+ "name": "union",
+ "description": "any
| Date
| number
| string"
+ }
+ },
+ "views": {
+ "type": {
+ "name": "arrayOf",
+ "description": "Array<'hours'
| 'minutes'
| 'seconds'>"
+ }
+ }
+ },
+ "name": "StaticTimePicker",
+ "styles": { "classes": [], "globalClasses": {}, "name": null },
+ "spread": false,
+ "forwardsRefTo": "undefined",
+ "filename": "/packages/material-ui-lab/src/StaticTimePicker/StaticTimePicker.tsx",
+ "inheritance": null,
+ "demos": "",
+ "styledComponent": true,
+ "cssComponent": false
+}
diff --git a/docs/pages/api-docs/time-picker.js b/docs/pages/api-docs/time-picker.js
new file mode 100644
index 00000000000000..8ac417ff3dc7a9
--- /dev/null
+++ b/docs/pages/api-docs/time-picker.js
@@ -0,0 +1,23 @@
+import * as React from 'react';
+import ApiPage from 'docs/src/modules/components/ApiPage';
+import mapApiPageTranslations from 'docs/src/modules/utils/mapApiPageTranslations';
+import jsonPageContent from './time-picker.json';
+
+export default function Page(props) {
+ const { descriptions, pageContent } = props;
+ return
| 'hours'
| 'minutes'
| 'month'
| 'seconds'
| 'year'"
+ }
+ },
+ "orientation": {
+ "type": { "name": "enum", "description": "'landscape'
| 'portrait'" }
+ },
+ "PopperProps": { "type": { "name": "object" } },
+ "readOnly": { "type": { "name": "bool" } },
+ "rifmFormatter": { "type": { "name": "func" } },
+ "shouldDisableTime": { "type": { "name": "func" } },
+ "showTodayButton": { "type": { "name": "bool" } },
+ "showToolbar": { "type": { "name": "bool" } },
+ "todayText": { "type": { "name": "node" } },
+ "ToolbarComponent": { "type": { "name": "elementType" } },
+ "toolbarFormat": { "type": { "name": "string" } },
+ "toolbarPlaceholder": { "type": { "name": "node" } },
+ "toolbarTitle": { "type": { "name": "node" } },
+ "TransitionComponent": { "type": { "name": "elementType" } },
+ "value": {
+ "type": {
+ "name": "union",
+ "description": "any
| Date
| number
| string"
+ }
+ },
+ "views": {
+ "type": {
+ "name": "arrayOf",
+ "description": "Array<'hours'
| 'minutes'
| 'seconds'>"
+ }
+ }
+ },
+ "name": "TimePicker",
+ "styles": { "classes": [], "globalClasses": {}, "name": null },
+ "spread": false,
+ "forwardsRefTo": "HTMLInputElement",
+ "filename": "/packages/material-ui-lab/src/TimePicker/TimePicker.tsx",
+ "inheritance": null,
+ "demos": "
jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-es.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-es.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-es.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-fr.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-fr.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-fr.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ja.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ja.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ja.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-pt.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-pt.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-pt.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ru.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ru.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-ru.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-zh.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-zh.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker-zh.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/desktop-time-picker/desktop-time-picker.json b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker.json
new file mode 100644
index 00000000000000..a4a3ecea9a8a42
--- /dev/null
+++ b/docs/translations/api-docs/desktop-time-picker/desktop-time-picker.json
@@ -0,0 +1,46 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-de.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-de.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-de.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-es.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-es.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-es.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-fr.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-fr.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-fr.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ja.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ja.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ja.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-pt.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-pt.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-pt.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ru.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ru.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-ru.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-zh.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-zh.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker-zh.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/mobile-time-picker/mobile-time-picker.json b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker.json
new file mode 100644
index 00000000000000..1b7e0ac6d120eb
--- /dev/null
+++ b/docs/translations/api-docs/mobile-time-picker/mobile-time-picker.json
@@ -0,0 +1,51 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-de.json b/docs/translations/api-docs/static-time-picker/static-time-picker-de.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-de.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-es.json b/docs/translations/api-docs/static-time-picker/static-time-picker-es.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-es.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-fr.json b/docs/translations/api-docs/static-time-picker/static-time-picker-fr.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-fr.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-ja.json b/docs/translations/api-docs/static-time-picker/static-time-picker-ja.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-ja.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-pt.json b/docs/translations/api-docs/static-time-picker/static-time-picker-pt.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-pt.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-ru.json b/docs/translations/api-docs/static-time-picker/static-time-picker-ru.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-ru.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker-zh.json b/docs/translations/api-docs/static-time-picker/static-time-picker-zh.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker-zh.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/static-time-picker/static-time-picker.json b/docs/translations/api-docs/static-time-picker/static-time-picker.json
new file mode 100644
index 00000000000000..f4a6de24783425
--- /dev/null
+++ b/docs/translations/api-docs/static-time-picker/static-time-picker.json
@@ -0,0 +1,45 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "className": "className applied to the root component.",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "displayStaticWrapperAs": "Force static wrapper inner components to be rendered in mobile or desktop mode",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-de.json b/docs/translations/api-docs/time-picker/time-picker-de.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-de.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-es.json b/docs/translations/api-docs/time-picker/time-picker-es.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-es.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-fr.json b/docs/translations/api-docs/time-picker/time-picker-fr.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-fr.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-ja.json b/docs/translations/api-docs/time-picker/time-picker-ja.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-ja.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-pt.json b/docs/translations/api-docs/time-picker/time-picker-pt.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-pt.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-ru.json b/docs/translations/api-docs/time-picker/time-picker-ru.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-ru.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker-zh.json b/docs/translations/api-docs/time-picker/time-picker-zh.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker-zh.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/translations/api-docs/time-picker/time-picker.json b/docs/translations/api-docs/time-picker/time-picker.json
new file mode 100644
index 00000000000000..6c9b015576e14f
--- /dev/null
+++ b/docs/translations/api-docs/time-picker/time-picker.json
@@ -0,0 +1,54 @@
+{
+ "componentDescription": "",
+ "propDescriptions": {
+ "acceptRegex": "Regular expression to detect "accepted" symbols.",
+ "allowKeyboardControl": "Enables keyboard listener for moving between days in calendar.",
+ "ampm": "12h/24h view for hour selection clock.",
+ "ampmInClock": "Display ampm controls under the clock (instead of in the toolbar).",
+ "cancelText": "Cancel text message",
+ "className": "className applied to the root component.",
+ "clearable": "If true
, it shows the clear action in the picker dialog.",
+ "clearText": "Clear text message",
+ "dateAdapter": "Allows to pass configured date-io adapter directly. More info here jsx dateAdapter={new AdapterDateFns({ locale: ruLocale })}
",
+ "desktopModeMediaQuery": "CSS media query when Mobile
mode will be changed to Desktop
.",
+ "DialogProps": "Props applied to the Dialog
element.",
+ "disableCloseOnSelect": "If true
the popup or dialog will immediately close after submitting full date.",
+ "disabled": "If true
, the picker and text field are disabled.",
+ "disableIgnoringDatePartForTimeValidation": "Do not ignore date part when validating min/max time.",
+ "disableMaskedInput": "Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.",
+ "disableOpenPicker": "Do not render open picker button (renders only text field with validation).",
+ "getClockLabelText": "Accessible text that helps user to understand which time and view is selected.",
+ "getOpenDialogAriaText": "Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType",
+ "InputAdornmentProps": "Props to pass to keyboard input adornment.",
+ "inputFormat": "Format string.",
+ "mask": "Custom mask. Can be used to override generate from format. (e.g. //__ __: or //__ __: _M)",
+ "minutesStep": "Step over minutes.",
+ "okText": "Ok button text.",
+ "onAccept": "Callback fired when date is accepted @DateIOType.",
+ "onChange": "Callback fired when the value (the selected date) changes. @DateIOType.",
+ "onClose": "Callback fired when the popup requests to be closed. Use in controlled mode (see open).",
+ "onError": "Callback that fired when input value or new value
prop validation returns new validation error (or value is valid after error). In case of validation error detected reason
prop return non-null value and TextField
must be displayed in error
state. This can be used to render appropriate form error.renderInput
prop allows you to customize the rendered input. The props
argument of this render prop contains props of TextField that you need to forward. Pay specific attention to the ref
and inputProps
keys.",
+ "rifmFormatter": "Custom formatter to be passed into Rifm component.",
+ "shouldDisableTime": "Dynamically check if time is disabled or not. If returns false
appropriate time point will ot be acceptable.",
+ "showTodayButton": "If true
, the today button is displayed. Note that showClearButton
has a higher priority.",
+ "showToolbar": "If true
, show the toolbar even in desktop mode.",
+ "todayText": "Today text message",
+ "ToolbarComponent": "Component that will replace default toolbar renderer.",
+ "toolbarFormat": "Date format, that is displaying in toolbar.",
+ "toolbarPlaceholder": "Mobile picker date value placeholder, displaying if value
=== null
.",
+ "toolbarTitle": "Mobile picker title, displaying in the toolbar.",
+ "TransitionComponent": "Custom component for popper Transition.",
+ "value": "The value of the picker.",
+ "views": "Array of views to show."
+ },
+ "classDescriptions": {}
+}
diff --git a/docs/types/react-docgen.d.ts b/docs/types/react-docgen.d.ts
index 4dd706428828a1..dabc7ee5409dec 100644
--- a/docs/types/react-docgen.d.ts
+++ b/docs/types/react-docgen.d.ts
@@ -1,8 +1,40 @@
declare module 'react-docgen' {
- export type Handler = () => unknown;
+ import { ASTNode } from 'ast-types';
+ // `import { NodePath } from 'ast-types';` points to `const NodePath: NodePathConstructor` for unknown reasons.
+ import { NodePath as AstTypesNodePath } from 'ast-types/lib/node-path';
+
+ export { ASTNode };
+
+ // sound wrapper around `NodePath` from `ast-types` i.e. no `any`
+ export type NodePath