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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@zemd/react-slottable

v3.0.4

Published

A lightweight concept to customize subcomponents in React

Readme

React Slottable for customizable components

A lightweight concept to customize subcomponents in React

The package provides a lightweight approach to give your component users ability to customize it's subcomponents easily. The idea is highly inspired by Material-UI.

Usage

Installation

npm install --save-dev @zemd/react-slottable
pnpm add -D @zemd/react-slottable

Writing components

The core concept of the library is slot. A slot is a part of a component that can be overridden and/or customized. For example, you want to create a Calendar, but you do not want to create a numerous amount of props to customize nested components. Instead, you can divide your components on slots and provide your users with the ability to customize them.

Let's create a simple Button component with startDecorator and endDecorator slots to show how it works:

import { type PropsWithSlots, useSlot } from "@zemd/react-slottable";

type ButtonProps = PropsWithSlots<
  React.PropsWithChildren<{
    // here you define your regular component props
    fullWidth?: boolean;
    disabled?: boolean;
    size?: "sm" | "md" | "xl";
    variant?: "solid" | "outlined";
    color?: "primary" | "secondary";
    className?: string;
  }>,
  ["startDecorator", "endDecorator"] // here you define your slots
>;

const DefaultDecorator: React.FC<{ className?: string }> = ({ className }) => {
  return <div className={className}>Default decorator</div>;
};

export const Button: React.FC<ButtonProps> = (rootProps) => {
  const { slots, slotProps, ...props } = rootProps;
  const StartDecoratorSlot = useSlot("startDecorator", rootProps, {
    slot: DefaultDecorator, // provide default decorator, but can be overridden by user
  });
  const EndDecoratorSlot = useSlot("startDecorator", rootProps);

  return (
    <button {...props}>
      {/* ^^^ do not forget to handle not standard attributes, e.g. fullWidth ...*/}
      <StartDecoratorSlot className="class-override" />
      {/* ^^^ you can provide default className ^^^ */}
      {props.children}
      <EndDecoratorSlot />
    </button>
  );
};

Now your users can use this Button:

const MyCustomLabelComponent: React.FC = () => {
  return <span>My custom label</span>;
};

export function HomePage(): React.JSX.Element {
  return (
    <div>
      <Button
        slots={{
          endDecorator: MyCustomLabelComponent,
        }}
        slotProps={{
          startDecorator: {
            prop1: "value",
          },
        }}
        className="my-custom-button-className"
      >
        Click me!
      </Button>
    </div>
  );
}

As you can see, StartDecoratorSlot was predefined with default component, which will be always shown until user overrides it. However, the EndDecoratorSlot was not predefined, so it will be empty until user provides a component for it.

License

The @zemd/react-slottable is licensed under Apache License 2.0 😇.

💙 💛 Donate