@material-ui/core APIs
- Button
- Typography
- IconButton
- Grid
- TextField
- makeStyles
- Box
- List
- ListItem
- CircularProgress
- ListItemText
- Paper
- Divider
- Tooltip
- DialogContent
- Toolbar
- AppBar
- Card
- Dialog
- Container
- DialogTitle
- FormControl
- MenuItem
- Theme
- FormControlLabel
- CardContent
- CssBaseline
- DialogActions
- createStyles
- Select
- Link
- Checkbox
- DialogContentText
- Snackbar
- TableCell
- TableRow
- Table
- TableBody
- useMediaQuery
- InputAdornment
- ListItemIcon
- Switch
- Chip
- TableHead
- InputLabel
- withStyles
- Avatar
- ThemeProvider
- Drawer
- LinearProgress
- Menu
- CardActions
- createMuiTheme
- TableContainer
- Tab
- Tabs
- Slider
- ListItemSecondaryAction
- useTheme
- CardHeader
- Collapse
- Popover
- Radio
- Hidden
- FormGroup
- Fade
- InputBase
- FormHelperText
- ListSubheader
- Fab
- Input
- Badge
- Step
- AccordionDetails
- AccordionSummary
- RadioGroup
- ButtonGroup
- Slide
- ListItemAvatar
- Stepper
- SvgIcon
- Accordion
- StepLabel
- Modal
- FormLabel
- ClickAwayListener
- ButtonProps
- WithStyles
- Backdrop
- Popper
- createTheme
- ButtonBase
- CardMedia
- MuiThemeProvider
- OutlinedInput
- TextFieldProps
- Grow
- TablePagination
- TextareaAutosize
- darken
- CardActionArea
- TypographyProps
- StepButton
- SelectProps
- Zoom
- TableSortLabel
- styled
- lighten
- InputProps
- GridProps
- fade
- ThemeOptions
- BoxProps
- ExpansionPanel
- ExpansionPanelSummary
- ExpansionPanelDetails
- useScrollTrigger
- TooltipProps
- PopoverProps
- MobileStepper
- TableFooter
- Icon
- debounce
- Breadcrumbs
- BottomNavigation
- StepConnector
- SwipeableDrawer
- ButtonBaseProps
- MenuList
- DialogProps
- Portal
- SvgIconTypeMap
- capitalize
- alpha
- colors
- InputBaseProps
- NativeSelect
- ChipProps
- IconButtonProps
- emphasize
- SnackbarContent
- PaletteType
- CheckboxProps
- GridSize
- GridItemsAlignment
- SvgIconProps
- SnackbarOrigin
- NoSsr
- withTheme
- WithTheme
- TextareaAutosizeProps
- ExpansionPanelActions
- createSvgIcon
- SnackbarContentProps
- BreadcrumbsProps
- LinearProgressProps
- responsiveFontSizes
- ThemeProviderProps
- GridSpacing
- SliderTypeMap
- TabsActions
- PaperProps
- SnackbarCloseReason
- Alert
- Stack
- Skeleton
- ExtendButton
- ExtendButtonBase
- AlertProps
- ImageList
- ImageListItem
- StepContent
- getLuminance
- LinkProps
- StepIconProps
- ToolbarProps
- isWidthUp
- WithWidthProps
- isWidthDown
- PopperProps
- Options
- ServerStyleSheets
- WithWidth
- BottomNavigationAction
- InputAdornmentProps
- FormControlProps
- hexToRgb
- ListItemProps
- AppBarProps
- TypographyClassKey
- Autocomplete
- StylesProvider
Other Related APIs
@material-ui/core#FormControlProps TypeScript Examples
The following examples show how to use
@material-ui/core#FormControlProps.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SelectWorkflow.tsx From github-deploy-center with MIT License | 5 votes |
export function SelectWorkflow({
workflowId,
onChange,
FormControlProps = {},
}: {
workflowId: number
onChange: (workflowId: number) => void
FormControlProps?: FormControlProps
}) {
const workflows = useFetchWorkflows()
const { selectedApplication } = useAppState()
if (!selectedApplication) return null
if (workflows.error) {
return <Alert severity="error">Could not load workflows</Alert>
}
const workflowsSorted = (workflows.data ?? []).orderBy(
[
(workflow) => {
const containsName = workflow.name
.toLowerCase()
.includes(selectedApplication.name.toLowerCase().split(' ')[0])
const containsDeploy = workflow.name.toLowerCase().includes('deploy')
return containsDeploy && containsName
? WorkflowRelevance.NameAndDeploy
: containsName
? WorkflowRelevance.Name
: containsDeploy
? WorkflowRelevance.Deploy
: WorkflowRelevance.None
},
(w) => w.name,
],
['desc', 'asc']
)
return (
<FormControl variant="outlined" {...FormControlProps}>
<InputLabel id="workflow-select-label">Workflow</InputLabel>
{workflows.isLoading ? (
<CircularProgress />
) : workflows.data ? (
<Select
labelId="workflow-select-label"
id="workflow-select"
value={workflowId}
label="Workflow"
onChange={(e) => {
const workflowId =
typeof e.target.value === 'number'
? (e.target.value as number)
: 0
onChange(workflowId)
}}>
<MenuItem value={0}>
<em>None</em>
</MenuItem>
{workflowsSorted.map((workflow) => (
<MenuItem key={workflow.id} value={workflow.id}>
{workflow.name}
</MenuItem>
))}
</Select>
) : null}
</FormControl>
)
}