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

@pragma-dev-kit/pragma-ds-react

v0.0.27

Published

⚛️ Components library for pragma design system

Readme

@pragma-dev-kit/pragma-ds-react

⚛️ Librería de componentes React para Pragma Design System

NPM Version React TypeScript

📦 Instalación

npm install @pragma-dev-kit/pragma-ds-react

O con yarn:

yarn add @pragma-dev-kit/pragma-ds-react

⚙️ Configuración

1. Importar estilos y definir elementos personalizados

Configura los estilos globales y elementos personalizados en tu archivo main.jsx o main.tsx:

import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.jsx';

// 🎨 Importar estilos globales
import '@pragma-dev-kit/pragma-ds/dist/pragma-ds/pragma-ds.css';

// 🔧 Definir elementos personalizados
import { defineCustomElements } from '@pragma-dev-kit/pragma-ds-react';

// Inicializar componentes web
defineCustomElements();

ReactDOM.createRoot(document.getElementById('root')).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
);

🚀 Uso de componentes

Ejemplo básico

import React from 'react';
import { PdsButton, PdsInput, PdsCheckbox } from '@pragma-dev-kit/pragma-ds-react';

function App() {
  return (
    <div className="app-container">
      <h1>Mi aplicación con Pragma DS</h1>

      <PdsInput label="Nombre" placeholder="Ingresa tu nombre" />

      <PdsCheckbox label="Acepto términos y condiciones" />

      <PdsButton variant="primary">Enviar</PdsButton>
    </div>
  );
}

export default App;

Ejemplo con estado y eventos

import React, { useState } from 'react';
import { PdsButton, PdsInput, PdsToast } from '@pragma-dev-kit/pragma-ds-react';

function FormExample() {
  const [name, setName] = useState('');
  const [showToast, setShowToast] = useState(false);

  const handleSubmit = () => {
    setShowToast(true);
  };

  return (
    <div>
      <PdsInput
        label="Nombre"
        value={name}
        onInput={(e) => setName(e.target.value)}
      />

      <PdsButton variant="primary" onClick={handleSubmit}>
        Enviar
      </PdsButton>

      {showToast && <PdsToast message="Formulario enviado con éxito" />}
    </div>
  );
}

📋 Componentes disponibles

  • PdsButton - Botones con diferentes variantes (primary, secondary, tertiary)
  • PdsInput - Campos de entrada de texto
  • PdsTextarea - Áreas de texto multilínea
  • PdsCheckbox - Casillas de verificación
  • PdsRadio - Botones de radio
  • PdsToggle - Interruptores de encendido/apagado
  • PdsDropdown - Menús desplegables
  • PdsAvatar - Avatares de usuario
  • PdsCard - Tarjetas de contenido
  • PdsBreadcrumb - Navegación de migas de pan
  • PdsPagination - Paginación de contenido
  • PdsToast - Notificaciones toast
  • PdsTooltip - Tooltips informativos
  • PdsIcon - Iconos del sistema
  • PdsIconButton - Botones con iconos
  • PdsAccordion - Acordeones expandibles
  • PdsTab - Pestañas de navegación
  • PdsTables - Tablas de datos
  • PdsTags - Etiquetas
  • PdsLoading - Indicadores de carga
  • PdsStepper - Pasos de proceso
  • PdsSearch - Barra de búsqueda
  • PdsFilter - Filtros
  • PdsCalendar - Calendario

💡 Tips y mejores prácticas

✅ Recomendaciones

  • Usa componentes funcionales: Los hooks de React funcionan perfectamente con Pragma DS
  • Maneja el estado correctamente: Usa useState y useEffect para controlar el estado
  • Implementa validación: Crea hooks personalizados para validación de formularios
  • Optimiza renders: Usa React.memo para componentes que no cambian frecuentemente

⚠️ Consideraciones

  • Compatibilidad: Requiere React 18 o superior
  • Elementos personalizados: Asegúrate de llamar defineCustomElements() antes de usar los componentes
  • Estilos globales: Los estilos CSS deben importarse una sola vez en el punto de entrada

📚 Documentación

Para ver ejemplos interactivos y documentación completa de cada componente, visita nuestro Storybook.

🔗 Enlaces útiles

🐛 Reportar problemas

Si encuentras algún problema o tienes sugerencias, por favor abre un issue en nuestro repositorio de GitHub.

📄 Licencia

ISC