- Align Google Material Design Lite and make it be npm modulized.
- That is, can be used at server-side, you can do things like isomorphic.
- React Components!!
- Use original Google Material Design Lite styles.
- Easily hackable and ES6 friendly.
- We can provide more features than MDL.
$ npm install mdor --save
Current components included:
- Badge
- Button
- Checkbox
- Radio Button
- Ripple Effect
- Slider
- Tooltip
Please checkout: demo link
var Slider = require('mdor').Slider;
...
render: function () {
return <Slider width="30vw" maxWidth="260" value="0" min="0" max="100" />;
}
var Badge = require('mdor').Badge;
...
render: function () {
return <Badge icon="1" iconify>account_box</Badge>;
}
Props Name | Props Type | Required | description |
---|---|---|---|
class | string | no | custom classes that you want to bind on |
icon | ( string | number ) | yes | text that shows on the badge |
iconify | bool | no | determine the content of badge is an material icon or not |
style | object | no | custom styles that you want to bind on |
var Button = require('mdor').Button;
...
render: function () {
var onButtonClick = function () {
console.log('clicked');
};
return <Button type="fab" colored onClick={onButtonClick} ><i className="material-icons">mood</i></Button>;
}
Props Name | Props Type | Required | description |
---|---|---|---|
colored | bool | no | make button colored |
disabled | bool | no | make button disabled |
type | string | no | type of button, value can be fab , mini-fab or just don't give this props |
onClick | func | no | for listening on the click event |