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

inkwell-ui-react-v10

v1.0.1

Published

A wrapper package for PrimeReact v10 components with V10 suffix exports for compatibility with Inkwell UI React.

Downloads

16

Readme

inkwell-ui-react-v10

A wrapper package for PrimeReact v10 components with V10 suffix exports for compatibility with Inkwell UI React.

Overview

This package provides re-exports of PrimeReact v10 components with a V10 suffix. It's designed to work alongside the newer Inkwell UI React library that uses PrimeReact v11, allowing both versions to coexist in the same application.

Installation

npm install inkwell-ui-react-v10

Peer Dependencies

Make sure you have the following peer dependencies installed:

npm install react react-dom

Usage

Import components with the V10 suffix:

import { CalendarV10, DropdownV10, DataTableV10 } from 'inkwell-ui-react-v10';

function MyComponent() {
  return (
    <div>
      <CalendarV10 />
      <DropdownV10 options={options} />
      <DataTableV10 value={data} />
    </div>
  );
}

Available Components

Form Components

  • CalendarV10
  • AutoCompleteV10
  • DropdownV10
  • InputMaskV10
  • CascadeSelectV10
  • ColorPickerV10
  • EditorV10
  • InputNumberV10
  • ListBoxV10
  • MentionV10
  • MultiSelectV10
  • MultiStateCheckboxV10
  • PasswordV10
  • TreeSelectV10
  • TriStateCheckboxV10
  • InputTextV10

Button Components

  • SplitButtonV10

Data Components

  • DataTableV10
  • ColumnV10
  • DataViewV10
  • DataViewLayoutOptionsV10
  • OrderListV10
  • OrganizationChartV10
  • PickListV10
  • TreeV10
  • TreeTableV10
  • VirtualScrollerV10

File Components

  • FileUploadV10

Menu Components

  • MegaMenuV10
  • BreadCrumbV10
  • ContextMenuV10
  • DockV10
  • MenuV10
  • MenubarV10
  • PanelMenuV10
  • TieredMenuV10

Message Components

  • MessagesV10
  • ToastV10

Media Components

  • CarouselV10
  • GalleriaV10
  • ImageV10

Overlay Components

  • SidebarV10
  • DialogV10
  • TooltipV10

Panel Components

  • PanelV10
  • TabViewV10
  • TabPanelV10
  • DeferredContentV10

Misc Components

  • ScrollTopV10
  • ProgressBarV10

API

  • addLocaleV10
  • PrimeReactAPIProviderV10

Theme

  • v10Styles - Path to the Lara Light Blue theme CSS

Why This Package?

This package solves the compatibility issue when you need to use both PrimeReact v10 and v11 components in the same application. By using the V10 suffix, you can:

  1. Gradually migrate from PrimeReact v10 to v11
  2. Use legacy v10 components alongside newer v11 components
  3. Maintain compatibility with existing codebases that rely on v10 features

PrimeReact Version

This package uses PrimeReact v10.9.7 under the hood.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Links