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

@venkat91/ark-ui-components

v1.0.9

Published

React component library built on Ark UI with TypeScript and Panda CSS

Readme

@venkat91/ark-ui-components

Modern, accessible React component library built on Ark UI with TypeScript and Panda CSS.

🚀 Installation

npm install @venkat91/ark-ui-components

📦 Setup & Usage

1. Install the package

npm install @venkat91/ark-ui-components

2. Import the CSS styles

⚠️ Important: You must import the CSS styles for components to render correctly.

In your main CSS file or app entry point:

@import '@venkat91/ark-ui-components/styles.css';

Or in your JavaScript/TypeScript entry point:

import '@venkat91/ark-ui-components/styles.css';

3. Use the components

import { CustomButton, CustomDialog, CustomSlider } from '@venkat91/ark-ui-components';

function App() {
  return (
    <div>
      <CustomButton variant="primary" size="md">
        Click Me
      </CustomButton>
      
      <CustomDialog 
        trigger="Open Dialog"
        title="Welcome"
        description="This is a pre-built dialog component"
      />
      
      <CustomSlider 
        label="Volume"
        min={0}
        max={100}
        defaultValue={50}
      />
    </div>
  );
}

🛠️ Available Components

| Component | Description | Key Props | |-----------|-------------|-----------| | CustomButton | Versatile button with variants, sizes, and loading states | variant, size, loading, leftIcon, rightIcon | | CustomDialog | Modal dialogs with flexible content options | trigger, title, description, content | | CustomTab | Dynamic tab interfaces with customizable items | items, defaultValue, onValueChange | | CustomSlider | Range input with configurable min/max/step | min, max, step, value, onValueChange | | CustomPopover | Contextual overlays with smart positioning | trigger, content, title, description |

📚 Component Examples

CustomButton

import { CustomButton } from '@venkat91/ark-ui-components';

// Basic usage
<CustomButton variant="primary">Primary Button</CustomButton>

// With icons and loading
<CustomButton 
  variant="secondary" 
  size="lg"
  loading={isLoading}
  leftIcon={<SaveIcon />}
>
  Save Changes
</CustomButton>

CustomDialog

import { CustomDialog } from '@venkat91/ark-ui-components';

// Simple dialog
<CustomDialog 
  trigger="Open Dialog"
  title="Confirmation"
  description="Are you sure you want to continue?"
/>

// Custom content
<CustomDialog 
  trigger="Custom Dialog"
  content={<MyCustomForm />}
/>

CustomTab

import { CustomTab } from '@venkat91/ark-ui-components';

const tabItems = [
  { label: "Tab 1", value: "tab1", content: <div>Content 1</div> },
  { label: "Tab 2", value: "tab2", content: <div>Content 2</div> },
];

<CustomTab 
  items={tabItems}
  defaultValue="tab1"
  onValueChange={(value) => console.log(value)}
/>

CustomSlider

import { CustomSlider } from '@venkat91/ark-ui-components';

<CustomSlider 
  label="Volume"
  min={0}
  max={100}
  step={5}
  defaultValue={50}
  onValueChange={(value) => setVolume(value)}
/>

CustomPopover

import { CustomPopover } from '@venkat91/ark-ui-components';

<CustomPopover 
  trigger="Help"
  title="Information"
  description="This feature helps you manage your settings."
/>

🎨 Styling

This library uses Panda CSS for styling. All components come pre-styled with:

  • Modern design with clean aesthetics
  • Responsive behavior across screen sizes
  • Dark mode support (where applicable)
  • Accessible colors meeting WCAG guidelines

♿ Accessibility

Built with accessibility in mind:

  • WCAG 2.1 AA compliant
  • Full keyboard navigation
  • Screen reader support
  • ARIA attributes on all interactive elements
  • Focus management for modals and complex components

🔧 TypeScript Support

Fully typed with TypeScript:

import type { CustomDialogProps, TabItem } from '@venkat91/ark-ui-components';

const dialogProps: CustomDialogProps = {
  trigger: "Open",
  title: "My Dialog"
};

const tabItems: TabItem[] = [
  { label: "Home", value: "home", content: <HomePage /> }
];

📋 Requirements

  • React: >=18.0.0
  • Node.js: >=18.0.0

🏗️ Built With

📄 License

MIT © My Ark UI Team

🤝 Contributing

This component library is designed for internal use but contributions are welcome! Please refer to the main repository for contribution guidelines.


Happy building! 🚀