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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ui5/webcomponents-ngx

v0.3.1

Published

### Description This library represents a set of Angular components that wrap the [@ui5/webcomponents](https://sap.github.io/ui5-webcomponents) library. Every component is compatible with vanilla ui5-webcomponents and can be used in the same way, but also

Downloads

1,265

Readme

Ui5 Webcomponents for Angular

Description

This library represents a set of Angular components that wrap the @ui5/webcomponents library. Every component is compatible with vanilla ui5-webcomponents and can be used in the same way, but also provides a set of Angular specific approaches, for a seamless integration with Angular.

Installation

For automated installation run the following command in your Angular project:

  ng add @ui5/webcomponents-ngx

Usage

Components

There are two main modules in this library: UiMainModule and Ui5FioriModule, which are used to import the components as a batch. If you need to import all of the components, you can use the Ui5WebcomponentsModule which imports both of the above modules. All the components that are included in this library, are standalone and can be used as such, by importing from their respective secondary entrypoints of the library.

import { Ui5MainModule } from '@ui5/webcomponents-ngx/main'; // Main module import
import { Ui5FioriModule } from '@ui5/webcomponents-ngx/fiori'; // Fiori module import
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx'; // All components import

Theming

For using theming, you need import the Ui5ThemingModule in your app module.

import { Ui5WebcomponentsThemingModule } from '@ui5/webcomponents-ngx/theming'; // Theming module import

@NgModule({
  imports: [
    BrowserModule,
    Ui5WebcomponentsThemingModule, // Theming module import
  ]
})
export class AppModule { }

note: ng-add schematic automatically does these steps for you, so we strongly encourage you to use it.

Other configurations

You can configure other parts of the library, such as language, animationMode and fetchDefaultLanguage by using the Ui5WebcomponentsConfigModule.forRoot.

import { Ui5WebcomponentsConfigModule } from '@ui5/webcomponents-ngx/config'; // Config module import

@NgModule({
  imports: [
    BrowserModule,
    Ui5WebcomponentsConfigModule.forRoot({
      language: 'en',
      animationMode: 'none',
      fetchDefaultLanguage: false
    })
  ]
})
export class AppModule { }