img-material-ui
v1.1.0
Published
A material-ui component which display an image from different sources based on the page's current width (based on material-ui defined breakpoints).
Downloads
2
Maintainers
Readme
img-material-ui
A material-ui component which displays an image from different sources based on the page's current width (based on material-ui defined breakpoints).
The order of breakpoints: xs, sm, md, lg, xl. You can find here the values defined currently by material-ui for these breakpoints.
Props
The component accepts the props defined bellow in the table.
Props accepted by ImgMaterialUi
| Name | Type | Required | Default | Description | |-------|---------------|----------|-----------|-------------------------------------------------------------------------------------| | id | string | no | undefined | The id of the field | | lg | string | no* | undefined | Source used for the lg breakpoint and wider screens (if not overridden) | | md | string | no* | undefined | Source used for the md breakpoint and wider screens (if not overridden) | | sm | string | no* | undefined | Source used for the sm breakpoint and wider screens (if not overridden) | | xl | string | no* | undefined | Source used for the xl breakpoint and wider screens (if not overridden) | | xs | string | no* | undefined | Source used for the xs breakpoint and bellow, and wider screens (if not overridden) | | style | CSSProperties | no | undefined | The style applied to the field |
no* means that at least one of them should be defined or an exception is triggered.
Versions
| ImgMaterialUi uses | Material-ui | React | |----------------------|-------------|--------| | -------------------: | :---------: | :----: | | 1.0.x | 3.9.2 | 16.8.4 | | 1.1.x | 3.9.3 | 16.8.6 |
About versioning schema used for ImgMaterialUi
- Major - it will be increased if the major version of the dependat package changes or there are breaking changes in the code of ImgMaterialUi
- Minor - it will be increased if no major version of the dependat package changes, but there are changes of the minor or patch versions of it
- Patch - it will be increased if there are no changes of the dependat packages, but there are non breaking changes in the code of ImgMaterialUi
Example
Displaying an image in three sizes based on the current window size:
import * as React from "react";
import ImgMaterialUi from "img-material-ui";
class App extends React.Component {
render() {
return (
<div className="App">
<ImgMaterialUi
xs="/img/logo-small.jpg"
md="/img/logo-medium.jpg"
lg="/img/logo-large.jpg"
/>
</div>
);
}
}
export default App;
Changelog
1.0.0
- img-material-ui is made publicly available
1.1.0
- Updated packages