-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into export-typography…
…-types
- Loading branch information
Showing
19 changed files
with
244 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
docs/src/pages/components/toggle-button/ToggleButtonNotEmpty.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import FormatAlignLeftIcon from '@material-ui/icons/FormatAlignLeft'; | ||
import FormatAlignCenterIcon from '@material-ui/icons/FormatAlignCenter'; | ||
import FormatAlignRightIcon from '@material-ui/icons/FormatAlignRight'; | ||
import FormatAlignJustifyIcon from '@material-ui/icons/FormatAlignJustify'; | ||
import LaptopIcon from '@material-ui/icons/Laptop'; | ||
import TvIcon from '@material-ui/icons/Tv'; | ||
import PhoneAndroidIcon from '@material-ui/icons/PhoneAndroid'; | ||
import Grid from '@material-ui/core/Grid'; | ||
import ToggleButton from '@material-ui/lab/ToggleButton'; | ||
import ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
toggleContainer: { | ||
margin: theme.spacing(2, 0), | ||
}, | ||
})); | ||
|
||
export default function ToggleButtonNotEmpty() { | ||
const [alignment, setAlignment] = React.useState('left'); | ||
const [formats, setFormats] = React.useState(() => ['phone']); | ||
|
||
const handleFormat = (event, newFormats) => { | ||
if (newFormats.length) { | ||
setFormats(newFormats); | ||
} | ||
}; | ||
|
||
const handleAlignment = (event, newAlignment) => { | ||
if (newAlignment !== null) { | ||
setAlignment(newAlignment); | ||
} | ||
}; | ||
|
||
const classes = useStyles(); | ||
|
||
return ( | ||
<Grid container spacing={2}> | ||
<Grid item sm={12} md={6}> | ||
<div className={classes.toggleContainer}> | ||
<ToggleButtonGroup | ||
value={alignment} | ||
exclusive | ||
onChange={handleAlignment} | ||
aria-label="text alignment" | ||
> | ||
<ToggleButton value="left" aria-label="left aligned"> | ||
<FormatAlignLeftIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="center" aria-label="centered"> | ||
<FormatAlignCenterIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="right" aria-label="right aligned"> | ||
<FormatAlignRightIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="justify" aria-label="justified" disabled> | ||
<FormatAlignJustifyIcon /> | ||
</ToggleButton> | ||
</ToggleButtonGroup> | ||
</div> | ||
</Grid> | ||
<Grid item sm={12} md={6}> | ||
<div className={classes.toggleContainer}> | ||
<ToggleButtonGroup value={formats} onChange={handleFormat} aria-label="device"> | ||
<ToggleButton value="laptop" aria-label="laptop"> | ||
<LaptopIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="tv" aria-label="tv"> | ||
<TvIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="phone" aria-label="phone"> | ||
<PhoneAndroidIcon /> | ||
</ToggleButton> | ||
</ToggleButtonGroup> | ||
</div> | ||
</Grid> | ||
</Grid> | ||
); | ||
} |
80 changes: 80 additions & 0 deletions
80
docs/src/pages/components/toggle-button/ToggleButtonNotEmpty.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import FormatAlignLeftIcon from '@material-ui/icons/FormatAlignLeft'; | ||
import FormatAlignCenterIcon from '@material-ui/icons/FormatAlignCenter'; | ||
import FormatAlignRightIcon from '@material-ui/icons/FormatAlignRight'; | ||
import FormatAlignJustifyIcon from '@material-ui/icons/FormatAlignJustify'; | ||
import LaptopIcon from '@material-ui/icons/Laptop'; | ||
import TvIcon from '@material-ui/icons/Tv'; | ||
import PhoneAndroidIcon from '@material-ui/icons/PhoneAndroid'; | ||
import Grid from '@material-ui/core/Grid'; | ||
import ToggleButton from '@material-ui/lab/ToggleButton'; | ||
import ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
toggleContainer: { | ||
margin: theme.spacing(2, 0), | ||
}, | ||
})); | ||
|
||
export default function ToggleButtonNotEmpty() { | ||
const [alignment, setAlignment] = React.useState('left'); | ||
const [formats, setFormats] = React.useState(() => ['phone']); | ||
|
||
const handleFormat = (event: React.MouseEvent<HTMLElement>, newFormats: string[]) => { | ||
if (newFormats.length) { | ||
setFormats(newFormats); | ||
} | ||
}; | ||
|
||
const handleAlignment = (event: React.MouseEvent<HTMLElement>, newAlignment: string | null) => { | ||
if (newAlignment !== null) { | ||
setAlignment(newAlignment); | ||
} | ||
}; | ||
|
||
const classes = useStyles(); | ||
|
||
return ( | ||
<Grid container spacing={2}> | ||
<Grid item sm={12} md={6}> | ||
<div className={classes.toggleContainer}> | ||
<ToggleButtonGroup | ||
value={alignment} | ||
exclusive | ||
onChange={handleAlignment} | ||
aria-label="text alignment" | ||
> | ||
<ToggleButton value="left" aria-label="left aligned"> | ||
<FormatAlignLeftIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="center" aria-label="centered"> | ||
<FormatAlignCenterIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="right" aria-label="right aligned"> | ||
<FormatAlignRightIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="justify" aria-label="justified" disabled> | ||
<FormatAlignJustifyIcon /> | ||
</ToggleButton> | ||
</ToggleButtonGroup> | ||
</div> | ||
</Grid> | ||
<Grid item sm={12} md={6}> | ||
<div className={classes.toggleContainer}> | ||
<ToggleButtonGroup value={formats} onChange={handleFormat} aria-label="device"> | ||
<ToggleButton value="laptop" aria-label="laptop"> | ||
<LaptopIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="tv" aria-label="tv"> | ||
<TvIcon /> | ||
</ToggleButton> | ||
<ToggleButton value="phone" aria-label="phone"> | ||
<PhoneAndroidIcon /> | ||
</ToggleButton> | ||
</ToggleButtonGroup> | ||
</div> | ||
</Grid> | ||
</Grid> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.