18.0.2 • Published 8 months ago

@codeffekt/ce-core v18.0.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
8 months 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
+- ...                    
 
18.0.2

8 months ago

18.0.1

8 months ago

16.1.1

8 months ago

16.1.0

9 months ago

18.0.0

8 months ago

16.0.9

12 months ago

16.0.8

12 months ago

16.0.7

12 months ago

16.0.6

12 months ago

16.0.5

1 year ago

16.0.4

1 year ago

16.0.3

1 year ago

16.0.2

1 year ago

16.0.0

1 year ago

13.9.1

1 year ago

13.9.0

2 years ago