Socket
Socket
Sign inDemoInstall

@rmwc/provider

Package Overview
Dependencies
4
Maintainers
1
Versions
159
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rmwc/provider


Version published
Weekly downloads
8.7K
increased by10.27%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

v14.2.9 (2024-07-03)

This was a version bump only, there were no code changes.

Readme

Source

Provider

A component that provides global configuration for RMWC.

  • Module @rmwc/provider

You can wrap your top level App component with RMWC provider to set global configuration options. Just pass the options in as props.


  `
  import 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
      tooltip={{
        align: 'right'
      }}
    >
      <App />
    </RMWCProvider>,
    document.getElementById('root'),
  );
`

<RMWCProvider ripple={false}>
  <Button>Click me</Button>
</RMWCProvider>
<RMWCProvider ripple={true}>
  <Button>Click me</Button>
</RMWCProvider>

RMWCProvider

A provider for setting global options in RMWC.

Props

NameTypeDescription
childrenReactNodeChildren to render
iconPartial<IconOptions>Global options for icons
ripplebooleanEnable / Disable interaction ripples globally
tooltipPartial<TooltipOptions>Global tooltip options
typographyPartial<TypographyOptions>Global typography options

Keywords

FAQs

Last updated on 03 Jul 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc