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

complexes-next-components

v1.4.21

Published

![npm version](https://img.shields.io/npm/v/complexes-next-components) ![npm downloads](https://img.shields.io/npm/dm/complexes-next-components) ![license](https://img.shields.io/npm/l/complexes-next-components)

Readme

Complexes Components

npm version
npm downloads
license

Versions


Before Starting

Installation

npm i complexes-next-components


/tailwind.config.ts
import type { Config } from "tailwindcss";

  content: [
    "./node_modules/complexes-next-components/dist/complexes-next-components.js",
  ]

complexesui usalle Avatar

import { Avatar } from "complexes-next-components";

<Avatar
  src="/GitHub.png"
  alt="Miguel"
  size="sm"
  border="none"
  shape="rounded"
/>;

complexesui usalle InputField

import { InputField } from "complexes-next-components";

<InputField
  placeholder="nombre"
  inputSize="full"
  rounded="md"
  className="mt-2"
  regexType= "letters"
  prefixElement= "<FaUpload className="text-blue-600 w-5 h-5" />",
  type="text"
  {...register("name")}
  hasError={!!errors.name}
  errorMessage={errors.name?.message}
/>;

complexesui usalle MultiSelect

import { MultiSelect } from "complexes-next-components";

const [selectedOptions, setSelectedOptions] = useState<string[]>([]);

const options = [
  { value: "Bogotá", label: "Bogotá" },
  { value: "Medellin", label: "Medellin" },
  { value: "Cali", label: "Cali" },
];

<MultiSelect
  id="city"
  defaultOption="Ciudad"
  options={options}
  inputSize="full"
  regexType= "alphanumeric",
  rounded="md"
  hasError={false}
  className="mt-2"
  onChange={setSelectedOptions}
  value={selectedOptions}
/>;

complexesui usalle SelectField

import { SelectField } from "complexes-next-components";

const [selectedOption, setSelectedOption] = useState("");

const options = [
  { value: "Bogotá", label: "Bogotá" },
  { value: "Medellin", label: "Medellin" },
  { value: "Cali", label: "Cali" },
];

<SelectField
  tKeyHelpText={t("country")}
  tKeyDefaultOption={t("country")}
  searchable
  defaultOption="Pais"
  helpText="Pais"
  sizeHelp="sm"
  id="country"
  options={options}
  inputSize="lg"
  regexType= "numeric",
  rounded="md"
  {...register("country")}
  hasError={!!errors.country}
  errorMessage={errors.country?.message}
/>;

complexesui usalle Tabs

ts import { Tabs } from "complexes-next-components";

const tabs = [ { label: "Frontend", children: , colVariant: "default", size: "md", background: "default", padding: "md", rounded: "lg", }, ]


# complexesui usalle Modal

```ts
import { Modal, Text } from "complexes-next-components";

<Modal isOpen={isOpen} onClose={onClose} title={title}>
  <Text colVariant="primary">description</Text>
</Modal>;

complexesui usalle Button

import { Button } from "complexes-next-components";
    const { t } = useTranslation();
   <Title size="md" font="semi">Complexes</Title>

    <Button tKey={language} colVariant="warning">
      t("traduccion")
    </Button>

complexesui usalle Buton

import { Button } from "complexes-next-components";

   <Title size="md" font="semi">Complexes</Title>

    <Buton colVariant="warning">
        button
    </Buton>

complexesui usalle Tittle

import { Title } from "complexes-next-components";

<Title size="md" font="semi">
  Complexes
</Title>;

complexesui usalle Text

import { Text } from "complexes-next-components";

<Text size="lg" font="semi">
  Complexes
</Text>;

Contributing

If you have ideas, find any issues, or want to contribute, please visit our GitHub repository:

GitHub - complexes-next-components