Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
fundamental-ngx
Advanced tools
The fundamental-ngx
library is a set of Angular components built using SAP Fundamental Styles.
The SAP Fundamental Styles library is a design system and HTML/CSS component library used to build modern product user experiences with the SAP look and feel.
See Component Documentation for examples and API details.
To download and use Fundamental NGX, you will first need to install the node package manager.
Fundamental NGX is intended for use with Angular 5 or newer.
Prior knowledge of Angular is recommended.
For an existing Angular CLI application,
Install Fundamental-NGX.
ng add 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.
Import the modules you want to use.
To add the entire library, add the following import to your main application module.
import { FundamentalNgxModule } from 'fundamental-ngx';
@NgModule({
...
imports: [FundamentalNgxModule],
})
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 Toggles, add the following import to your main application module.
import { ToggleModule } from 'fundamental-ngx';
@NgModule({
...
imports: [ToggleModule],
})
export class DemoModule { }
Add the component to your HTML.
<fd-toggle [size]="'l'" [(checked)]="checked">Large Toggle</fd-toggle>
Fundamental NGX makes use of Jasmine and Karma for its unit tests.
Run ng test fundamental-ngx
. Append --code-coverage
to generate code coverage documentation.
The fundamental-ngx
library follows Semantic Versioning. These components strictly adhere to the [MAJOR].[MINOR].[PATCH]
numbering system (also known as [BREAKING].[FEATURE].[FIX]
).
Merges to the master
branch will be published as a prerelease. Prereleases will include an rc version (e.g. [MAJOR].[MINOR].[PATCH]-rc.[RC]
).
Please see Issues.
If you encounter an issue, you can create a ticket.
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.
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v.2 except as noted otherwise in the LICENSE file.
Fundamental-react - React implementation of SAP Fundamental Styles
Fundamental-vue - Vue implementation of SAP Fundamental Styles
FAQs
SAP Fundamentals, implemented in Angular
The npm package fundamental-ngx receives a total of 0 weekly downloads. As such, fundamental-ngx popularity was classified as not popular.
We found that fundamental-ngx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.