@codeffekt/ce-core
v18.0.9
Published
Angular library for CeForms rendering
Downloads
307
Readme
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
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
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 { }
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
+- ...