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

@ehfuse/mui-fadeout-loading-progress

v1.0.4

Published

A React component for Material-UI that provides a smooth fade-out loading indicator with customizable behavior

Downloads

102

Readme

MUI Fadeout Loading Progress

부드러운 페이드아웃 애니메이션과 완료 콜백을 제공하는 Material-UI 로딩 인디케이터 React 컴포넌트입니다.

A React component for Material-UI that provides a smooth fade-out loading indicator with customizable behavior and onComplete callback.

주요 기능 | Features

  • 🎨 부드러운 페이드아웃 애니메이션 (200ms) | Smooth fade-out animation (200ms)
  • 🔄 페이드아웃 후 자동 언마운트 | Automatic unmount after fade-out
  • 📦 TypeScript로 제작 | Built with TypeScript
  • 🎯 Material-UI 통합 | Material-UI integration
  • ⚡ 가볍고 고성능 | Lightweight and performant
  • 🪝 완료 콜백 지원 | Callback support on completion

API Signature

interface BackgroundConfig {
    show?: boolean; // default: true
    color?: string; // default: "255, 255, 255" - Supports hex (#fff), rgb(), rgba(), named colors, or RGB string
    opacity?: number; // default: 0.9 - Applied to background (0.0 ~ 1.0). Ignored if color is rgba
}

interface LoadingProgressProps {
    visible: boolean;
    onComplete?: () => void;
    fadeoutDuration?: number; // default: 200ms
    exitDelay?: number; // default: 0ms
    size?: number; // default: 40
    className?: string;
    style?: CSSProperties;
    sx?: SxProps<Theme>; // MUI sx prop for advanced styling
    indicator?: ReactNode | string; // Custom indicator or image URL
    background?: BackgroundConfig; // Background configuration
}

export function LoadingProgress(
    props: LoadingProgressProps
): JSX.Element | null;

📖 Documentation

Quick Start

npm install @ehfuse/mui-fadeout-loading-progress
import { LoadingProgress } from "@ehfuse/mui-fadeout-loading-progress";

function App() {
    const [loading, setLoading] = useState(true);

    return (
        <div>
            <LoadingProgress
                visible={loading}
                onComplete={() => console.log("Done!")}
            />
        </div>
    );
}

License

MIT License - Copyright (c) 2025 KIM YOUNG JIN ([email protected])

Links