Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@rmwc/provider
Advanced tools
A component that provides global configuration for RMWC.
You can wrap your top level App component with RMWC provider to set global configuration options. Just pass the options in as props.
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import App from './App'; // your main app component
import { RMWCProvider } from '@rmwc/provider';
// This example disables ripples globally by default
ReactDOM.render(
<RMWCProvider
// Globally disable ripples
ripple={false}
// Global options for icons
// Takes the same options as the icon component
icon={{
basename: 'material-icons'
}}
// Global options for typography
// allows mapping of a defaultTag or specific classes
// See the Typography docs for more info
typography={{
defaultTag: 'div',
headline1: 'h1'
}}
// Global options for tooltips
// Takes most of the options for tooltips
// See the Tooltip docs for more info
tootlip={{
align: 'right'
}}
>
<App />
</RMWCProvider>,
document.getElementById('root'),
);
A provider for setting global options in RMWC.
Name | Type | Description |
---|---|---|
children | React.ReactNode | Children to render |
icon | Partial<IconOptions> | Global options for icons |
ripple | undefined | false | true | Enable / Disable interaction ripples globally |
tooltip | Partial<TooltipOptions> | Global tooltip options |
typography | Partial<TypographyOptions> | Global typography options |
6.0.10 (2020-04-05)
FAQs
RMWC Provider component
The npm package @rmwc/provider receives a total of 0 weekly downloads. As such, @rmwc/provider popularity was classified as not popular.
We found that @rmwc/provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.