This is Ui-kit-lib to create plugins according to the template and visual on the platform preview.mef.dev with the help of ready made solutions.It provides users with the opportunity to explore and test various components and functionalities of the library before using them in their own projects.
How to create your first Ui-package click here
Also you can check displaying of all the elements together here UI-kit-demo.
This guide created for Angular@15 version project. Cause we will use packages compatible with Angular 15 version.
You can use the library on the following versions of Angular:
Angular/CLI | @natec/mef-dev-ui-kit |
---|---|
v.13 | v.1 |
v.14 | v.14 |
v.15 | v.15 |
v.16 | v.16 |
Firstly you need to install following packages:
@natec/mef-dev-ui-kit:
npm i @natec/mef-dev-ui-kit@15
Simple table extension with sorting, filtering, paging... for Angular apps. ngx-datatable:
npm i @swimlane/ngx-datatable@20
Sleek, intuitive, and powerful front-end framework for faster and easier web development. bootstrap:
npm i bootstrap@5
Ngx-bootstrap provides Bootstrap components powered by Angular, so you don't need to include original JS components.ngx-bootstrap:
npm i ngx-bootstrap@10
CSS font-family parser/stringifier. Font-awesome:
npm i font-awesome@4
Now you need to add path in your Angular.json file
"architect": {
"build": {
"options": {
"styles": [
"node_modules/bootstrap/scss/bootstrap.scss",
"node_modules/@natec/mef-dev-ui-kit/src/lib/styles/pg/core.scss",
"node_modules/font-awesome/scss/font-awesome.scss",
"src/styles.scss"
]
}
}
}
Firstly, you need to import BrowserAnimationsModule in your app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
You need to import Module from Ui-kit-lib installed earlier in your own module, and add to imports too. Example:
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MefDevCardModule } from '@natec/mef-dev-ui-kit';
@NgModule({
declarations:[],
imports: [
CommonModule,
MefDevCardModule,
]
})
export class CardsModule { }
After, you can use MefDev components in your project. Example of usage:
<mefdev-card
class="b-color-Light-Gray-2 pt-3"
[description] = "'Description'"
[card_type]="'type'"
[img]="'assets/imgs/store/Frame 521.png'">
<ng-template #card_title >
card_title
</ng-template>
<ng-template #card_footer>
card_footer
</ng-template>
</mefdev-card>
Examples of other components you can find in this documentation in left menubar.