Socket
Socket
Sign inDemoInstall

@mui/base

Package Overview
Dependencies
21
Maintainers
10
Versions
117
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @mui/base

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.


Version published
Weekly downloads
4.5M
increased by1.9%
Maintainers
10
Install size
6.18 MB
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

Readme

Source

Base UI logo

Base UI

Base UI is a library of headless ("unstyled") React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

Installation

Install the package in your project directory with:

npm install @mui/base

Documentation

Visit https://mui.com/base-ui/ to view the full documentation.

Questions

For how-to questions that don't involve making changes to the code base, please use Stack Overflow instead of GitHub issues. Use the "base-ui" tag on Stack Overflow to make it easier for the community to find your question.

Examples

Our documentation features a collection of example projects using Base UI.

Contributing

Read the contributing guide to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.

Contributing to Base UI is about more than just issues and pull requests! There are many other ways to support Base UI beyond contributing to the code base.

Changelog

The changelog is regularly updated to reflect what's changed in each new release.

Roadmap

Future plans and high-priority features and enhancements can be found in the roadmap.

License

This project is licensed under the terms of the MIT license.

Security

For details of supported versions and contact details for reporting security issues, please refer to the security policy.

Keywords

FAQs

Last updated on 19 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc