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

conexys-elements

v1.1.0

Published

Conexys Project Library

Readme

Conexys Components

React component library for Conexys projects.

🚀 Now with TypeScript support! This project is in the process of migrating to TypeScript for a better development experience and type safety.

Installation

npm install conexys-elements
# or using yarn
yarn add conexys-elements

Dependencies

This package has the following peer dependencies:

  • @fingerprintjs/fingerprintjs >= 5.0.1
  • @mui/icons-material >= 7.3.7
  • @mui/material >= 7.3.7
  • axios >= 1.13.2
  • date-fns >= 4.1.0
  • jodit-react >= 5.2.38
  • react >= 19.2.3
  • react-dom >= 19.2.3
  • react-helmet-async >= 2.0.5
  • react-hook-form >= 7.71.1
  • react-i18next >= 16.5.3
  • react-router-dom >= 7.12.0
  • react-select >= 5.10.2
  • react-transition-group >= 4.4.5
  • sweetalert2 >= 11.26.17
  • sweetalert2-react-content >= 5.1.1

Make sure to install these dependencies in your project:

npm install react react-dom @mui/material @mui/icons-material axios react-i18next react-helmet-async react-router-dom sweetalert2 sweetalert2-react-content date-fns jodit-react react-select react-hook-form react-transition-group @fingerprintjs/fingerprintjs

Usage

JavaScript

import { Card, Loading, ActionButtons } from 'conexys-elements';

function MyComponent() {
  return (
    <div>
      <Card title="My Card">
        Card content
      </Card>
      
      <ActionButtons 
        onCancel={() => console.log('Cancelled')}
        onSubmit={() => console.log('Submitted')}
        cancelText="Cancel"
        submitText="Submit"
      />
    </div>
  );
}

Initializing Shared Services

To initialize shared services in your application:

import { initializeSharedServices, initializeSharedComponents } from 'conexys-elements';

// In your main component or initialization file
useEffect(() => {
  initializeSharedServices();
  initializeSharedComponents();
}, []);

TypeScript

import { Card, Loading, ActionButtons } from 'conexys-elements';
import type { ButtonProps } from 'conexys-elements';

function MyComponent() {
  return (
    <div>
      <Card title="My Card">
        Card content
      </Card>
      
      <ActionButtons 
        onCancel={() => console.log('Cancelled')}
        onSubmit={() => console.log('Submitted')}
        cancelText="Cancel"
        submitText="Submit"
      />
    </div>
  );
}

Types are automatically included, and your IDE will provide full autocompletion.

Language Files

The package includes basic translations in Spanish and Catalan. To use them, configure i18next with the correct path to the language files located in node_modules/conexys-elements/dist/language/.

Development

Migration to TypeScript

This project is in the process of migrating to TypeScript. For more information about the migration process, see MIGRACION_TYPESCRIPT.md.

Available Scripts

  • npm run build - Compiles the project
  • npm run type-check - Checks TypeScript types without compiling
  • npm run type-check:watch - Checks types in watch mode

License

MIT