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

@mutuamad-motor-network/ui-lab

v1.0.6

Published

Multi-brand component library for MUTUAMAD MOTOR NETWORK ecosystem

Readme

@mutuamad-motor-network/ui-lab

Multi-brand component library for the MUTUAMAD MOTOR NETWORK ecosystem, supporting Aurgi, MotorTown, and Neutral themes.

🚀 Installation

npm install @mutuamad-motor-network/ui-lab

📋 Prerequisites

  • React >= 17.0.0
  • Material-UI >= 6.0.0
  • TypeScript >= 4.5.0 (recommended)

🎯 Basic Usage

import { AppliedFilters, LoadingPageSkeleton } from '@mutuamad-motor-network/ui-lab';
import { aurgiTheme } from '@mutuamad-motor-network/ui-lab/themes';
import { ThemeProvider } from '@mui/material/styles';

function App() {
  return (
    <ThemeProvider theme={aurgiTheme}>
      <LoadingPageSkeleton />
      <AppliedFilters filtersApplied={[{ label: 'Estado', value: 'Activo' }]} />
    </ThemeProvider>
  );
}

🎨 Multi-Brand Theming

Choose from three built-in themes:

import {
  aurgiTheme, // Aurgi brand theme
  motorTownTheme, // MotorTown brand theme
  neutralTheme, // Default neutral theme
} from '@mutuamad-motor-network/ui-lab/themes';

// Use any theme with ThemeProvider
<ThemeProvider theme={motorTownTheme}>
  <YourApp />
</ThemeProvider>;

📦 Available Components

Dialog Components (7)

  • ApiKeyDialog - API key management dialog
  • BaseDialog - Flexible base dialog component
  • ConfirmationDialog - Confirmation prompt dialog
  • ImagesUploadDialog - Multiple image upload dialog
  • NotFoundModal - 404 not found modal
  • ReplaceImageDialog - Image replacement dialog
  • ScanQRDialog - QR code scanner dialog

Button Components (3)

  • BackButton - Navigation back button
  • ButtonLoader - Button with loading state
  • FileUploadButton - File upload with validation

Form & Input Components (3)

  • AdvanceFilters - Advanced filtering interface
  • FormikField - Formik-integrated form field
  • FieldDisplay - Read-only field display

List & Data Components (4)

  • AppliedFilters - Display applied filter chips
  • CheckList - Interactive checklist
  • Pagination - Data pagination controls
  • CheckImageStep - Image verification step

Card & Display Components (6)

  • InfoCard - Information display card
  • SupplyOrderCard - Supply order information card
  • SupplyOrderSummary - Order summary display
  • ErrorCard - Error state card
  • NoResultsCard - Empty state card
  • ImageCard - Image display card

Image & Media Components (4)

  • ImageGallery - Image gallery component
  • ImageDialog - Image display dialog
  • SelectImageStep - Image selection interface

Step & Workflow Components (2)

  • InstallPrompt - App installation prompt
  • PendingImagesAlert - Pending images notification

Utility & Feedback Components (2)

  • Loader - Loading spinner with backdrop options
  • LoadingPageSkeleton - Full page loading skeleton

🔧 TypeScript Support

Full TypeScript support with exported interfaces:

import type {
  AppliedFilterItem,
  ButtonLoaderProps,
  InfoCardProps,
} from '@mutuamad-motor-network/ui-lab';

const filters: AppliedFilterItem[] = [{ label: 'Estado', value: 'Activo' }];

📖 Advanced Usage

Theme Customization

import { createTheme } from '@mui/material/styles';
import { aurgiTheme } from '@mutuamad-motor-network/ui-lab/themes';

const customTheme = createTheme({
  ...aurgiTheme,
  palette: {
    ...aurgiTheme.palette,
    primary: {
      main: '#your-color',
    },
  },
});

Component Composition

import { BaseDialog, InfoCard } from '@mutuamad-motor-network/ui-lab';

function CustomDialog({ open, onClose }) {
  return (
    <BaseDialog open={open} onClose={onClose}>
      <BaseDialog.Header title="Custom Dialog" />
      <BaseDialog.Content>
        <InfoCard>
          <InfoCard.Header title="Information" />
          <InfoCard.Content>Your custom content here</InfoCard.Content>
        </InfoCard>
      </BaseDialog.Content>
      <BaseDialog.Actions>
        <Button onClick={onClose}>Close</Button>
      </BaseDialog.Actions>
    </BaseDialog>
  );
}

🏗️ Requirements

Peer Dependencies

{
  "react": ">=17.0.0",
  "react-dom": ">=17.0.0",
  "@mui/material": ">=6.0.0",
  "@emotion/react": ">=11.0.0",
  "@emotion/styled": ">=11.0.0"
}

Optional Dependencies

  • formik - Required only if using FormikField component

📚 Documentation & Examples

For interactive examples and detailed documentation, visit our Storybook.

🔄 Version Compatibility

| Library Version | React | Material-UI | Notes | | --------------- | ----- | ----------- | -------------------- | | 1.x.x | 17+ | 6+ | Current stable | | 2.x.x | 18+ | 6+ | Next major (planned) |

📄 License

This package is proprietary software of MUTUAMAD MOTOR NETWORK S.L.U. All rights reserved © 2025.

🐛 Issues & Support

This library is maintained by the MUTUAMAD MOTOR NETWORK development team.

  • Repository: https://github.com/mutuamad-motor-network/mmn-ui-lab
  • Issues: https://github.com/mutuamad-motor-network/mmn-ui-lab/issues