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

@lg-tools/codemods

v0.7.1

Published

Codemods for LeafyGreen UI

Readme

Codemods

npm (scoped)

Installation

PNPM

pnpm add @lg-tools/codemods

Yarn

yarn add @lg-tools/codemods

NPM

npm install @lg-tools/codemods

Usage

pnpm lg codemod <codemod-name> <path> [...options]

Arguments

codemod

name of codemod, see available codemods below.

path

files or directory to transform

Options

-i or --ignore

Glob patterns to ignore

pnpm lg codemod <codemod-name> <path> --ignore **/node_modules/** **/.next/**

-d or --dry

Dry run (no changes to files are made)

pnpm lg codemod <codemod-name> <path> --dry

-p or --print

Print transformed files to stdout and changes are also made to files

pnpm lg codemod <codemod-name> <path> --print

-f or --force

Bypass Git safety checks and forcibly run codemods.

pnpm lg codemod <codemod-name> <path> --force

--packages

Restrict the codemod to certain packages

pnpm lg codemod <codemod-name> <path> --packages @leafygreen-ui/popover @leafygreen-ui/select

Codemods

modal-v20

This codemod can be used to upgrade Modal components to v20.

By default, the codemod will apply for all below listed packages. Use the --packages flag to filter for a subset of these. However, it is recommended to upgrade all packages simultaneously.

  • @leafygreen-ui/modal
  • @leafygreen-ui/confirmation-modal
  • @leafygreen-ui/marketing-modal

This codemod does the following:

  1. Renames className prop to backdropClassName

  2. Renames contentClassName prop to className

  3. Adds guidance comment for initialFocus prop usage

    Note: The initialFocus prop was temporarily removed in Modal v20.0.0 but has been restored in v20.2+ with enhanced functionality. The codemod now preserves the prop and adds a recommendation to use refs instead of selector strings for better type safety.

pnpm lg codemod modal-v20 <path>

Before:

import Modal from '@leafygreen-ui/modal';
import ConfirmationModal from '@leafygreen-ui/confirmation-modal';

<Modal
  open={open}
  setOpen={setOpen}
  className="backdrop-style"
  contentClassName="modal-content"
  initialFocus="#primary-button"
>
  <button id="primary-button">Primary Action</button>
</Modal>

<ConfirmationModal
  open={open}
  setOpen={setOpen}
  className="confirmation-backdrop"
  contentClassName="confirmation-content"
  initialFocus="#confirm-button"
  title="Confirm"
>
  <button id="confirm-button">Confirm</button>
</ConfirmationModal>

After (as of Modal v20.2+):

import Modal from '@leafygreen-ui/modal';
import ConfirmationModal from '@leafygreen-ui/confirmation-modal';

{
  /* Note: The initialFocus prop now supports React refs in addition to selector strings. Consider using a ref for better type safety. */
}
<Modal
  open={open}
  setOpen={setOpen}
  backdropClassName="backdrop-style"
  className="modal-content"
  initialFocus="#primary-button"
>
  <button id="primary-button">Primary Action</button>
</Modal>;

{
  /* Note: The initialFocus prop now supports React refs in addition to selector strings. Consider using a ref for better type safety. */
}
<ConfirmationModal
  open={open}
  setOpen={setOpen}
  backdropClassName="confirmation-backdrop"
  className="confirmation-content"
  initialFocus="#confirm-button"
  title="Confirm"
>
  <button id="confirm-button">Confirm</button>
</ConfirmationModal>;

named-exports

This codemod converts default imports to named imports for LeafyGreen UI components.

By default, the codemod will apply for all below listed packages. Use the --packages flag to filter for a subset of these.

  • @leafygreen-ui/badge
  • @leafygreen-ui/banner
  • @leafygreen-ui/button
  • @leafygreen-ui/callout
  • @leafygreen-ui/card
  • @leafygreen-ui/checkbox
  • @leafygreen-ui/code
  • @leafygreen-ui/confirmation-modal
  • @leafygreen-ui/copyable
  • @leafygreen-ui/expandable-card
  • @leafygreen-ui/form-footer
  • @leafygreen-ui/icon
  • @leafygreen-ui/icon-button
  • @leafygreen-ui/inline-definition
  • @leafygreen-ui/logo
  • @leafygreen-ui/marketing-modal
  • @leafygreen-ui/modal
  • @leafygreen-ui/pagination
  • @leafygreen-ui/popover
  • @leafygreen-ui/portal
  • @leafygreen-ui/stepper
  • @leafygreen-ui/text-area
  • @leafygreen-ui/text-input
  • @leafygreen-ui/toggle
  • @leafygreen-ui/tooltip
pnpm lg codemod named-exports <path>

Before:

import Button, { Size } from '@leafygreen-ui/button';
import LGModal from '@leafygreen-ui/modal';
import Tooltip from '@leafygreen-ui/tooltip';

After:

import { Button, Size } from '@leafygreen-ui/button';
import { Modal as LGModal } from '@leafygreen-ui/modal';
import { Tooltip } from '@leafygreen-ui/tooltip';

popover-v12

This codemod can be used to get started in refactoring LG components dependent on v12+ of @leafygreen-ui/popover.

By default, the codemod will apply for all below listed packages. Use the --packages flag to filter for a subset of these.

This codemod does the following:

  1. Adds an explicit usePortal={true} declaration if left undefined and consolidates the usePortal and renderMode props into a single renderMode prop for components in the following packages:
  • @leafygreen-ui/combobox
  • @leafygreen-ui/menu
  • @leafygreen-ui/popover
  • @leafygreen-ui/select
  • @leafygreen-ui/split-button
  • @leafygreen-ui/tooltip
  1. Removes popoverZIndex, portalClassName, portalContainer, portalRef, scrollContainer, and usePortal props from the following components:
  • @leafygreen-ui/info-sprinkle
  • @leafygreen-ui/inline-definition
  • @leafygreen-ui/number-input
  1. Removes popoverZIndex, portalClassName, portalContainer, portalRef, and scrollContainer props from the following components:
  • @leafygreen-ui/date-picker
  • @leafygreen-ui/guide-cue
  1. Removes popoverZIndex, portalClassName, portalContainer, scrollContainer, and usePortal props from Code component in the @leafygreen-ui/code package

  2. Removes portalClassName, portalContainer, portalRef, scrollContainer, and usePortal props from SearchInput component in the @leafygreen-ui/search-input package

  3. Removes shouldTooltipUsePortal prop from Copyable component in the @leafygreen-ui/copyable package

  4. Replaces justify="fit" prop value with justify="middle" for components in the following packages:

  • @leafygreen-ui/date-picker
  • @leafygreen-ui/info-sprinkle
  • @leafygreen-ui/inline-definition
  • @leafygreen-ui/menu
  • @leafygreen-ui/popover
  • @leafygreen-ui/tooltip
pnpm lg codemod popover-v12 <path> --packages @leafygreen-ui/combobox @leafygreen-ui/code @leafygreen-ui/info-sprinkle @leafygreen-ui/copyable

Before:

import LeafyGreenCode from '@leafygreen-ui/code';
import { Combobox as LGCombobox } from '@leafygreen-ui/combobox';
import { DatePicker } from '@leafygreen-ui/date-picker';
import { InfoSprinkle } from '@leafygreen-ui/info-sprinkle';
import { Menu } from '@leafygreen-ui/menu';
import Copyable from '@leafygreen-ui/copyable';
import Tooltip from '@leafygreen-ui/tooltip';

<LGCombobox />
<LGCombobox usePortal={true} />
<LGCombobox usePortal={false} />

<LeafyGreenCode portalClassName="portal-class" portalRef={ref} usePortal />
<InfoSprinkle popoverZIndex={9999} usePortal={false} />

<DatePicker portalContainer={containerRef} scrollContainer={containerRef} />
<Menu portalClassName="portal-class" usePortal />

<Copyable shouldTooltipUsePortal />
<Copyable shouldTooltipUsePortal={true} />
<Copyable shouldTooltipUsePortal={false} />

<Menu justify="fit" renderMode="top-layer" />
<Tooltip justify="fit" renderMode="top-layer" />

After:

import LeafyGreenCode from '@leafygreen-ui/code';
import { Combobox as LGCombobox } from '@leafygreen-ui/combobox';
import { DatePicker } from '@leafygreen-ui/date-picker';
import { InfoSprinkle } from '@leafygreen-ui/info-sprinkle';
import { Menu } from '@leafygreen-ui/menu';
import Copyable from '@leafygreen-ui/copyable';

<LGCombobox renderMode="portal" />
<LGCombobox renderMode="portal" />
<LGCombobox renderMode="inline" />

<LeafyGreenCode />
<InfoSprinkle />

<DatePicker portalContainer={containerRef} scrollContainer={containerRef} />
<Menu portalClassName="portal-class" usePortal />

<Copyable />
<Copyable />
<Copyable />

<Menu justify="middle" renderMode="top-layer" />
<Tooltip justify="middle" renderMode="top-layer" />

loading-spinner-v5

This codemod can be used to upgrade Spinner components to v5 of @leafygreen-ui/loading-indicator.

This codemod applies to the following package:

  • @leafygreen-ui/loading-indicator

This codemod does the following:

  1. Converts displayOption prop to size prop with appropriate value mapping
  2. Removes description prop and adds guidance comment
  3. Removes baseFontSize prop if present
pnpm lg codemod loading-spinner-v5 <path>

Before:

import { Spinner } from '@leafygreen-ui/loading-indicator';

<Spinner
  displayOption="default-vertical"
  description="Loading data..."
  darkMode={true}
/>
<Spinner
  displayOption="large-vertical"
  description="Processing..."
  baseFontSize={16}
/>

After:

import { Spinner } from '@leafygreen-ui/loading-indicator';

/* Previous description: "Loading data..." */
/* TODO: The Spinner component no longer supports the `description` prop. Please render description text separately using the Typography component. */

<Spinner size="default" darkMode={true} />;

/* Previous description: "Processing..." */
/* TODO: The Spinner component no longer supports the `description` prop. Please render description text separately using the Typography component. */
<Spinner size="large" />;

tabs-v17

This codemod can be used to get started in upgrading LG Tabs instances to v17 of @leafygreen-ui/tabs.

In LG Tabs instances, this codemod will rename the selected prop to value and the setSelected prop to onValueChange.

pnpm lg codemod tabs-v17 <path>

Before:

import { Tabs, Tab } from '@leafygreen-ui/tabs';

<Tabs selected={0} setSelected={() => {}}>
  <Tab name="Tab 1">Tab 1</Tab>
  <Tab name="Tab 2">Tab 2</Tab>
</Tabs>;

After:

import { Tabs, Tab } from '@leafygreen-ui/tabs';

<Tabs value={0} onValueChange={() => {}}>
  <Tab name="Tab 1">Tab 1</Tab>
  <Tab name="Tab 2">Tab 2</Tab>
</Tabs>;