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

@camatsoft/components-angular

v5.2.4

Published

Official CamatSoft Components for Angular with a powerful datagrid and dynamic UI components, and Angular ReactiveForms-compatible form components.

Downloads

11

Readme

Camatsoft Components (csc)

Description

A reusable Angular component library built to simplify the creation of modern, interactive user interfaces.
Includes a powerful data grid, various UI components, and form-ready elements fully compatible with Angular Reactive Forms.

All components work native.
You don't need a libraries css same bootstrap or other libraries ts or js

✨ Installation

npm install @camatsoft/components-angular

Components for Angular by CamatSoft

| Integrations | NPM Version | Documentation | |---------|---------------|----------| | Camatsoft.Components.Angular | npm | documentation |

List of components

Components

| Name | Description | |------|-------------| | Datagrid | |

🧩 Included Components

General UI Components

| Name | Description | |------|-------------| | csc-datagrid | customizable and feature-rich data grid | | csc-icon | dynamic icon renderer | | csc-loader | loading indicator/spinner | | csc-modal | modal dialog window | | csc-notification | toast notification system | | csc-pagination | reusable pagination control | | csc-pdfviewer | PDF file viewer | | csc-progress | progress bar | | csc-tabpage | tabbed content view | | csc-widget | modular display container |

Form Components

| Name | Description | |------|-------------| | csc-dropdown-button | dropdown action button (Reactive Forms compatible) | | csc-datetime-picker | date & time picker (Reactive Forms compatible) | | csc-textarea | textarea (Reactive Forms compatible) | | csc-textbox | textbox (Reactive Forms compatible) |

🧪 Compatibility

  • ✅ Angular 17 to 19
  • ✅ Works with Reactive Forms and Template-driven Forms

Register Module

Register the module with the following command :

ts
ModuleRegistryService.registerModules('bundle');

Add Popup Container for the component

To add the popup container, include the following:

html
<csc-popup-container></csc-popup-container>
ts
import { PopupContainerComponent } from '@camatsoft/components-angular';

Exemples

In main.ts (EntryPoint) :

ModuleRegistryService.registerModules('bundle');

In app.component.ts (Root Component ts) :

import { PopupContainerComponent } from '@camatsoft/components-angular';

@Component({
    selector: ...,
    imports: [..., PopupContainerComponent],
    templateUrl: ...,
    styleUrl: ...,
})
export class AppComponent {}

In app.component.html (Root Component Html) :

<csc-popup-container></csc-popup-container>

i18N (Internationalization)

If you would like to add globalization support, create an i18N folder in your root directory:

/
  └── i18N
      └── cscomponents
          └── datagrid
              └── en-gb.json
              └── xx-xx.json
          └── modal
              └── en-gb.json
              └── xx-xx.json
          └── notification
              └── en-gb.json
              └── xx-xx.json
          └── en-gb.json
          └── xx-xx.json

Alternatively, you can specify the path in the environment variable:

DatagridEnvironmentConst.jsonPathDirectoryI18N = 'path/to/i18N/datagrid';
ModalEnvironmentConst.jsonPathDirectoryI18N = 'path/to/i18N/modal';
NotificationEnvironmentConst.jsonPathDirectoryI18N = 'path/to/i18N/notification';

Be careful: each component should have its own JSON file (e.g., xx-xx.json for specific locales).

Release Notes

v5.2.4

Add Widget Add FormComponentsManager Add Textbox Add Textarea

v5.2.3

Remove peerDependencies

v5.2.2

Add Tabpage

v5.2.1

Add Datagrid

v5.0.1

For Angular 19

v4.0.31

For Angular 17

v3.0.1

For Angular 16

v2.0.1

For Angular 14

v1.0.0

Create solution