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

fundamental-ngx-core-gcheishvili

v0.49.3-rc.1

Published

Fundamental Library for Angular - core

Downloads

6

Readme

@Fundamental-NGX/Core

npm version Build Status npm Slack REUSE status

Content

1. Description

The @fundamental-ngx/core library is a set of Angular components built using Fundamental Library Styles.

The Fundamental Library for Angular is an SAP Design System Angular component library used to build modern product user experiences with the SAP look and feel.

See Component Documentation for examples and API details.

2. Requirements

To download and use Fundamental Library for Angular, you will first need to install the node package manager.

Fundamental Library for Angular is intended for use with Angular 15 or newer.

Prior knowledge of Angular is recommended, to use the fundamental-ngx library.

3. Versioning

Check the Breaking Changes for the latest patches changes.

4. Getting Started

For an existing Angular CLI application,

  1. Video tutorial How to use the Fundamental Core Library

  2. Install Fundamental-NGX. ng add @fundamental-ngx/core For models prior to 0.10 use fundamental-ngx

    If you do not use the Angular CLI or if this command does not work for you, please see the full installation guide.

  3. Edit your tsconfig. Edit the target in your tsconfig.json to es5. The library is incompatible with later versions.

  4. Import the modules you want to use.

    To add the entire library, add the following import to your main application module.

    import { FundamentalNgxCoreModule } from '@fundamental-ngx/core';
    
    @NgModule({
        ...
        imports: [FundamentalNgxCoreModule],
    })
    export class DemoModule { }

    To include an individual Angular Fundamental component in your application, you only need to import the relevant module.

    For example, to use Switchs, add the following import to your main application module.

    import { CheckboxModule } from '@fundamental-ngx/core';

    Version 0.31.0 brings new way of importing individual modules, which is prefered way.

    import { CheckboxModule } from '@fundamental-ngx/core/checkbox';

    For models prior to 0.10 use fundamental-ngx

    import { CheckboxModule } from 'fundamental-ngx';
    
    @NgModule({
        ...
        imports: [CheckboxModule],
    })
    export class DemoModule { }
  5. Provide the RtlService. In your main application module, add RtlService to the list of providers. This service is needed to ensure proper right-to-left functionality for users with their browser set to an RTL language.

  6. Provide the ContentDensityService. In your main application module, you will also need to add ContentDensityService to the list of providers if you wish to manage the content density of you application from a single point.

  7. Add the component to your HTML.

    <fd-checkbox label="Fundamental Ngx Checkbox"></fd-checkbox>

5. Known Issues

Please see Issues.

6. Support

If you encounter an issue, you can create a ticket.

7. Contributing

If you want to contribute, please check the CONTRIBUTING.md documentation for contribution guidelines. Please follow the Angular commit message guidelines.

Check out the NEW_COMPONENT.md guide on building a new component for the library and creating the necessary documentation for your new component.

8. Similar Projects

Fundamental-react - React implementation of Fundamental Library Styles