@anjuna/angular

The @anjuna/angular module is a set of Angular-specific wrappers and helpers to plug the main component library into Angular's APIs and patterns.

Usage no npm install needed!

<script type="module">
  import anjunaAngular from 'https://cdn.skypack.dev/@anjuna/angular';
</script>

README

Core

The @anjuna/angular module is a set of Angular-specific wrappers and helpers to plug the main component library into Angular's APIs and patterns.

Getting Started

npm install @anjuna/angular

Once installed, you can import the module into any Angular module you need it.

import {NgModule, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
import {AnjunaModule} from '@anjuna/angular';

@NgModule({
    imports: [
        // Other imports
        AnjunaModule
    ],
    declarations: [
        // application components
    ],
    schemas: [
        CUSTOM_ELEMENTS_SCHEMA
    ]
})
export class MyModule {}