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

@cute-widgets/base

v20.0.4

Published

Angular Material components styled with Bootstrap

Readme

CuteWidgets

@cute-widgets/base is an open-source UI component library for Angular applications. All components are implemented as native directives and styled using the design and utility classes of the Bootstrap 5+ framework. At the same time, the internal implementation and external API of core Cute Widgets are based on the source code of the popular MIT-licensed Angular Material library. In a sense, @cute-widgets/base is a complete reincarnation of the latter.

Architecture and Design Principles

Components adopt structural and behavioral patterns from Angular Material, including:

  • Consistent input/output naming ([disabled], (change))
  • Form control integration via ControlValueAccessor
  • Content projection using well-defined slots
  • Focus management and keyboard navigation
  • Accessibility attributes (ARIA roles, labels, states)
  • Responsive behavior out of the box
  • Seamless integration with Bootstrap classes and layout

Highlights

  • 35+ free components

The full set of Angular Material 20+ components is available in the open-source @cute-widgets/base package.

  • Looks like Bootstrap

Visual styling adheres to Bootstrap 5+ CSS classes. Components apply standard class names such as .btn, .form-control, .table, and .card, ensuring compatibility with existing Bootstrap projects.

  • Themes out of the box

Supports Bootstrap CSS variables, dark mode, embedded and custom color themes. The Bootstrap icon font is set by default.

  • Powered by Angular Material

Fully redesigned code of the popular library with almost full program interface compatibility, full a11y, keyboard navigation, internationalization, and enterprise-grade stability.

  • Ready for teams

Standalone components, signals, SSR, and lazy loading — all Angular’s latest features. No more custom CSS hacks and design compromises. Just a seamless, production-ready UI library for Angular 20+ applications.

  • PRO components

Advanced featured components (Carousel, ChartJs, EditMask, Dropdown, etc.) are available in @cute-widgets/pro library and need the Commercial license.

Get Started

  1. Install the open-source library
npm install @cute-widgets/base

or with yarn

yarn add @cute-widgets/base
  1. Copy and paste the following excerpt in your src/styles.scss file to include the minimum required compiled and minified CSS bundles:
@use "bootstrap/dist/css/bootstrap.min.css";
//@use "bootstrap/dist/css/bootstrap.rtl.min.css";
@use "bootstrap-icons/font/bootstrap-icons";
@use '@angular/cdk/overlay-prebuilt.css';

Note
You don't need to include Bootstrap's compiled and minified JavaScript plugins and use data-bs-* attributes in your components. All the necessary behavior is implemented within the Cute Widgets themselves.

  1. Import components

Just import the desired component module and start using it.

// app.component.ts
import {CuteButtonModule} from '@cute-widgets/base/button';
import {CuteCardModule} from '@cute-widgets/base/card';

@Component({
    selector: 'app-root',
    template: `
        <cute-card>
            <cute-card-header> My header </cite-card-header>
            <cute-card-body> My body </cute-card-body>
            <cute-card-footer>    
                <button cute-button color="primary">Click me</button>
            </cute-card-footer>    
        </cute-card>
    `,
    imports: [CuteButtonModule, CuteCardModule],
})
export class AppComponent {}

Why @cute-widgets/base?

✅ Simpler than Angular Material

Angular Material is powerful but often too heavy for simple projects. @cute-widgets/base offers:

  • Smaller bundle size
  • Fewer dependencies
  • More intuitive APIs
  • No mandatory theming engine
✅ Better than raw Bootstrap

Bootstrap is great, but lacks true Angular integration. Our components:

  • Are native Angular directives
  • Support reactive forms
  • Have proper change detection
  • Emit events, not just DOM events
✅ Designed for Real Projects

We focus on what developers actually need:

  • Clean, readable code
  • Predictable behavior
  • Easy customization
  • Supporting i18n and RTL
  • Great developer experience
✅ All components:
  • Use standard Bootstrap classes (e.g., .btn, .form-control)
  • Are fully accessible (ARIA, keyboard support)
  • Work with Bootstrap’s grid and utilities
  • Support dark mode via Bootstrap’s .bg-dark, .text-white, etc.

What's the next

Now you have a full set of open-source components available in the Angular Material library since 20.x version, but with the cute prefix and styled with Bootstrap 5+. In fact, you have much more.

Note
The developers of CuteWidgets have tried to ensure maximum compatibility in terms of selector names and input/output program interfaces with the parent library, changing only its visual representation. However, 100% compatibility of the internal API of components and services is not guaranteed and may change in the future.

To simplify the process of getting started with @cute-widgets/base components the small projects/showcase application was created. All you need to do is run the ng serve command in the terminal window and navigate to http://localhost:4200 in the browser, or press o+Enter in the development server's console window. For a detailed description of using a specific component, see the according .md file in the component's folder.

Here is another example of using base components similar to Bootstrap, but with Angular Material power. As you can see we just replace the mat* prefixes with cute* in a component's template:

<!-- @angular/material -->
<button matButton="outlined" color="primary" 
        (click)="onSaveButtonClick()">
    <mat-icon> save </mat-icon>
    Save changes
</button> 
<!-- @cute-widgets/base -->
<button cuteButton="outlined" color="primary" 
        (click)="onSaveButtonClick()">
  <cute-icon> bi-floppy </cute-icon>
  Save changes
</button> 

Contributing

For bug reports or feature requests, please use GitHub Issues. To contribute to the project, fork the CuteWidgets project and create a Pull Request in a separate branch.

License

Apache-2.0


© 2025 CuteWidgets Team. All rights reserved. 🌐