
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
fluxible-plugin-material-ui
Advanced tools
Simple plugin to provide the right context for material-ui
Provides Material UI theme access to your Fluxible application.
var Fluxible = require('fluxible');
var muiPlugin = require('fluxible-plugin-material-ui');
var app = new Fluxible();
app.plug(muiPlugin());
Now, in your app component set the child context properly:
// ...
Application = provideContext(Application, {
muiTheme: React.PropTypes.object
});
module.exports = Application;
After that, you can just follow the Material UI docs to render your ui components.
If you want to customize your themes, you will need access to the theme manager. You will need to set an additional property in the child context in your app component:
// ...
Application = provideContext(Application, {
ThemeManager: React.PropTypes.object,
muiTheme: React.PropTypes.object
});
module.exports = Application;
Then, in your components:
componentDidMount: function () {
this.context.ThemeManager.setTheme(..)
}
This software is free to use under the Yahoo! Inc. BSD license. See the LICENSE file for license text and copyright information.
FAQs
Simple plugin to provide the right context for material-ui
The npm package fluxible-plugin-material-ui receives a total of 0 weekly downloads. As such, fluxible-plugin-material-ui popularity was classified as not popular.
We found that fluxible-plugin-material-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.