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

deprecated-ui

v0.0.6

Published

The easiest Angular Component library

Downloads

14

Readme

logo.svg

Deprecated UI - Easy Component Library

The Deprecated UI component library is the pinnacle of innovation and efficiency, offering developers a comprehensive suite of reliable and modern solutions. Seamlessly integrated with Angular, this library empowers you to effortlessly upgrade your deprecated UI components and embrace the future of web development. With its intuitive interface, extensive customization options, and advanced features, Deprecated UI streamlines the process of refactoring your applications, ensuring a smooth transition to the latest industry standards. Experience the power of Angular Deprecated UI and unlock limitless creativity in designing visually stunning, high-performance web applications.

Specifications

Components

  1. Button

| props | |----------| | no specs |

  1. Player

| № | prop | Type | |---:|-----------:|------:| | 1 | source | string| | 2 | Audio name | string| | 3 | author name| string|

  1. Icon - no necessary props

Directives

  1. Ripple

| № | prop | Type | |---:|-------------:|------:| | 1 | ripple color | string|

  1. Drag N Drop - no props

Services

  1. Dialog Service

| № | prop | Type | what is this prop | |--:|-----------:|-----------------:|-----------------------------------------------:| | 1 | width | number | window width | | 2 | height | number | window height | | 3 | background | string | window background | | 4 | template | TemplateRef | template for which will be projected in window |

Important You need crete CSS variables for primary and secondary color and need crete CSS vars for --btnColor or else appearance will does-not work correctly

Usages

  1. Window
  import { Component, DestroyRef, inject, TemplateRef } from '@angular/core';
import { AppWrapperComponent } from '@deprecated-ui/cdk';
import { DialogService } from '@deprecated-ui/components';

@Component({
  standalone: true,
  imports: [AppWrapperComponent, DialogService],
  providers: [DialogService],
  template: `<dui-app-wrapper>
              <dui-button (click)="open()">face</dui-button>
             </dui-app-wrapper>
             `
})
export class AppComponent {
  private dialog = inject(DialogService);
  private destroyRef = inject(DestroyRef)

  public openDialog(template: TemplateRef<any>) {
    this.dialog.open(DialogComponent, {
        width: 200,
        height: 200,
        template: template
      }, { test: 'data' }
    )
      .pipe(takeUntilDestoyed(this.destroyRef))
      .subscribe()
  }
}

Questions:

Q: Why i need a subscribe for open the Dialog?

A: Because method open returns observable

Q: What is data?

A: It is unnecessary prop for window. This prop produce data what your want to your window