npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@moneyforward/mfui-components

v3.11.0

Published

React UI Component Library for all Money Forward products

Readme

MFUI Components

React components for basic UI parts and layouts.

Library Requirements

MFUI requires certain libraries. Please check their versions. You can also check the recommended environment by referring to the libraries used in the projects under the examples/ directory.

Requirements

MFUI Components requires the following libraries with minimum versions:

  • React & React DOM: ≥18
  • TypeScript: ≥5.1.0

Notices

The following libraries are not mandatory, but if you are using them, MFUI requires at least the versions listed below:

  • Tailwind CSS ≥3.4.2

For detailed setup instructions with Tailwind CSS (v3 and v4), see the Tailwind Integration Guide.

Installation

1. Install the Package

Run the following command to install the package:

npm install @moneyforward/mfui-components

2. Install the Peer Dependencies

This package requires react and react-dom with version 17 or above as peer dependencies.

npm install react react-dom

3. (Only Vite with SSR user) Add libraries to the noExternal dependencies

If you're using Vite with Server Side Rendering feature, this step is required. Please add both @moneyforward/mfui-components and @moneyforward/mfui-icons-react to ssr.noExternal in your vite.config.ts.

export default defineConfig({
  // Other configurations
  ssr: {
    noExternal: ['@moneyforward/mfui-components', '@moneyforward/mfui-icons-react'],
  },
});

Usage

Import Styles to Your Global Stylesheet

Add the following line into your global stylesheet (e.g. globals.css for Next.js application):

@import url('@moneyforward/mfui-components/styles.css');

Use Components

This is the basic usage of Button. See the official documentation for all available components and how to use their properties.

import { Button } from '@moneyforward/mfui-components';

export function Foo() {
  return <Button priority="primary">Label</Button>;
}

Use Icons

Use icons by importing from @moneyforward/mfui-icons-react. See the official documentation for all available icons.

import { Add } from '@moneyforward/mfui-icons-react';
import { IconButton } from '@moneyforward/mfui-components';

export function Bar() {
  return (
    <IconButton>
      <Add />
    </IconButton>
  );
}

Reduce Bundle Size

If bundle size is a concern, import components from their specific paths so that tree shaking works with Next.js and Vite.

import { IconButton } from '@moneyforward/mfui-components/IconButton';

By importing components this way, unused code can be omitted from the final bundle.

About Experimental Features

Some features may be released in an "Experimental" state. These features are primarily in one of the following situations:

  • Features whose specifications defined in the design standards have not received sufficient feedback from products
  • Features that have well-defined design standards but need validation for React component usability

This experimental status allows us to gather practical feedback while ensuring the features meet our minimum quality standards.

Definition of Experimental

  • Breaking changes may occur
  • Some features may be missing or incomplete
  • Requirements may not be fully defined
  • A minimum quality standard of 60% is ensured
  • Expected to become stable in the next major release

Identifying Experimental Features

Experimental features can be identified through:

  • An "Experimental" tag in Storybook
  • "Experimental" annotations in JSDoc

All company names, product and service names, and logos are trademarks or registered trademarks of their respective owners.