Socket
Socket
Sign inDemoInstall

@mui/base

Package Overview
Dependencies
10
Maintainers
8
Versions
127
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/base


Version published
Weekly downloads
3.7M
decreased by-19.13%
Maintainers
8
Created
Weekly downloads
 

Package description

What is @mui/base?

The @mui/base package is a collection of foundational components and utilities that are meant to be used as the building blocks for creating more complex Material-UI components. It provides low-level components with minimal styling that can be extended and customized for various use cases.

What are @mui/base's main functionalities?

Unstyled components

Provides unstyled versions of Material-UI components that can be used as a starting point for custom styling.

import { SliderUnstyled } from '@mui/base';

function MySlider() {
  return <SliderUnstyled defaultValue={30} />;
}

Hooks

Offers a set of hooks for managing component state and behavior, such as button states and focus management.

import { useButton } from '@mui/base/ButtonUnstyled';

function MyButton(props) {
  const { active, focusVisible, setFocusVisible, getRootProps } = useButton(props);
  return <button {...getRootProps()}>My Unstyled Button</button>;
}

Utilities

Includes utilities for handling owner state, component slots, and other low-level concerns in component development.

import { appendOwnerState } from '@mui/base';

function MyComponent(props) {
  const ownerState = { variant: 'contained' };
  const newProps = appendOwnerState(MyComponent, props, ownerState);
  return <div {...newProps} />;
}

Other packages similar to @mui/base

Changelog

Source

@mui/joy@5.0.0-alpha.60

  • <!-- 15 -->[Joy] Fix radius adjustment (#35629) @siriwatknp
  • <!-- 14 -->[Joy] Apply color inversion to components (#34602) @siriwatknp
  • <!-- 13 -->[Joy] Improve cursor pointer and add fallback for outlined variant (#35573) @siriwatknp
  • <!-- 12 -->[Joy] Miscellaneous fixes (#35552) @siriwatknp
  • <!-- 11 -->[Radio][joy] Use precise dimensions for radio icon (#35548) @hbjORbj

Readme

Source

@mui/base

This package hosts unstyled React components that can be used for creating custom design systems.

Installation

Install the package in your project directory with:

// with npm
npm install @mui/base

// with yarn
yarn add @mui/base

Documentation

The documentation

Keywords

FAQs

Last updated on 14 Dec 2021

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