cljs-react-material-ui icon indicating copy to clipboard operation
cljs-react-material-ui copied to clipboard

Clojurescript library for using material-ui.com

Results 14 cljs-react-material-ui issues
Sort by recently updated
recently updated
newest added

This fork builds off of the work of some of the other more recent forks in order to completely update to 1.4, bring this repo up to date with cljsjs/material-ui....

When I render this component: ``` clojure (defn simple-text-field [text] (let [text-state (r/atom text)] (fn [] [rui/text-field {:id "example" :value @text-state :on-change (fn [e] (reset! text-state (.. e -target -value)))}])))...

Getting errors such as: react-dom.inc.js:526 Warning: Expected `onMouseUp` listener to be a function, instead got `false`. If you used to conditionally omit it with onMouseUp={condition && value}, pass onMouseUp={condition ?...

update material-ui dependency to 1.0.0-beta4 update core.cljs to expose material ui 1.0 component api update elements.cljs to expose material ui react components via core.cljs api Signed-off-by: Matt Rkiouak I should...

Whenever I include this project, and do an advanced compile, the compilation includes two copies of React and ReactDOM leading to this error in the console: ```Invariant Violation: addComponentAsRefTo(...): Only...

Do you consider new branch for next material-ui https://github.com/callemall/material-ui/tree/next ? Now "Material-ui" next contains Layout, which is as for me very important point. Here is demo https://material-ui-1dab0.firebaseapp.com/#/layout/responsive-ui

With the replacement of camel-snake-kebab, props-kebab->camel->js does not handle mutlti level props. e.g. Setting (ui/flat-button {:label-style {:font-size "14px"}}). The :font-size keyword would not be handled.

Is there any way to only include certain components from the library, or is it all or nothing? For example, in material-ui, you can `import Button from 'material-ui/Button';` instead of...

The usage example has a mistake and makes it so that when people do copy/paste, they end up with a wrong example.