16.0.5 • Published 1 month ago

@codeffekt/ce-core v16.0.5

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 month ago

CE-CORE

Provides Angular core services, components, pipes and many others utilities facilitating web applications development of key features such as:

  • Authentification process
  • Forms
  • Smart tables (sort, filter, search)

Using CE-CORE

  1. Install required tools:

    npm install --save @codeffekt/ce-core

    ce-core relies on Angular Material and Boostrap:

    npm install --save @angular/material
    npm install --save boostrap
  2. Add CeCoreModule into your app.module.ts file:

    ...
    import { CeCoreModule } from '@codeffekt/ce-core';
    ...
    
    const myConfig: CeCoreModuleConfig = {
      api_url: 'my-api-url'
    };
    
    @NgModule({
      imports: [
        ...
        CeCoreModule.forRoot(myConfig)
      ],
      ...
      bootstrap: [AppComponent]
    })
    export class AppModule { }
  3. Add ce-core theme to your main scss file

    @import '@codeffekt/ce-core/assets/theme/ce-core

    or add it to angular.json:

    "styles": ["@codeffekt/ce-core/assets/theme/ce-core.scss"],

Library structure

Ce-core is splitted into Angular core concepts:

src/                        source code
|- auth/                    provide auth support utilies
|- forms/                   provide form widgets
+- ...                    
 
16.0.5

1 month ago

16.0.4

2 months ago

16.0.3

2 months ago

16.0.2

3 months ago

16.0.0

3 months ago

13.9.1

4 months ago

13.9.0

7 months ago