Discussion on Egret - Angular 19+ Admin Dashboard Template

Discussion on Egret - Angular 19+ Admin Dashboard Template

By
Cart 2,755 sales
Well Documented

ui-lib supports this item

Supported

This author's response time can be up to 2 business days.

822 comments found.

Hi Rafi,

is there a way to change the color of cartesian heatmap? Its going from yellow to red at the moment, but for me it needs to turn from green to red. Any suggestions?

I think you can change heatmap color from options, Please check out echart heatmap doc https://ecomfe.github.io/echarts-doc/public/en/option.html#series-heatmap.type

It seems that there is no option. Is there some other way which you can recommend?

You can change color only by using javascript options, because charts are rendered by javascript

Hi. In the CRUD table example, there’s no horizontal scroll bar when the width is small. How do I add a horizontal scroll bar? Thanks.

nvm, it’s there but just not visible.

There is a menu icon on the right hand side in topbar when width is small. That toggles menu when size is small.

Hello,

I have already said it before, but this is a great theme. I think as a developer is important to let you know when a user is happy :) Question: Is it possible somehow to use the “loading dots” that are shown in the app-load also when the app is busy (fetching data from the server)?

I found this AppLoaderService service that shows the spinner, but I am more fun of the yellow, blue dots shown at the beginning. Is it possible to use that in other parts of the app??

Thanks

PS the code I am talking about: ...

Yeah, You can use that. Here is HTML for that spinner

<div class="spinner">
   <div class="double-bounce1 mat-bg-accent" />
   <div class="double-bounce2 mat-bg-primary" />
</div>

You can make a component in shared folder with this html, use it anywhere you need.

Thanks!

after typing npm install how to fix the problems and don’t download the node_modules

npm WARN deprecated mixin-deep@1.3.1: Critical bug fixed in v2.0.1, please upgrade to the latest version. npm WARN deprecated set-value@2.0.0: Critical bug fixed in v3.0.1, please upgrade to the latest version. npm WARN deprecated set-value@0.4.3: Critical bug fixed in v3.0.1, please upgrade to the latest version.

You can delete node_modules folder and package-lock.json file then run npm install again. make sure you have latest version of npm.

I do all things that you said but the problem is again here

After “npm install” have you tried “ng serve”? does that throws any error? If there is no error and only warnings, you can ignore those warnings.

Using the seed-project for some reason I cannot set a working default route for path:’’. The redirectTo: ‘home” does not work in the seed project. It does work in the full project source code. I have not made changes to app.routing.ts that would break this. Any ideas why localhost:4200 will not redirect to localhost:4200/home? If I ng serve and type localhost:4200/home, the home page does load correctly. I also have a question on Stackoverflow regarding this issue: https://stackoverflow.com/questions/56728283/angular-redirectto-for-default-root-is-not-redirecting

Here is the app.routing for redirecting to “home” if path is empty

 { 
    path: '', 
    redirectTo: 'home', 
    pathMatch: 'full' 
  },
  {
    path: 'home',
    loadChildren: () => import('./views/home/home.module').then(m => m.HomeModule),
    data: { title: 'Choose A Demo' }
  },
  {
    path: '', 
    component: AuthLayoutComponent,
    children: [
      { 
        path: 'sessions', 
        loadChildren: () => import('./views/sessions/sessions.module').then(m => m.SessionsModule),
        data: { title: 'Session'} 
      }
    ]
  }
...

The README file instructions for integrating with the landing page are incomplete.

Simply adding the Landing page Home module to the Admin and then uncommenting the SCSS import is insufficient and will give compilation errors about the scrolllTo not being found

The user needs to also copy across the utls.js from the Home landing page since the Admin utils.js is missing many functions required for the Home landing page.

With that done the project will build but the default home page will be blank (so routing needs to be changed somehow too). And if you navigate to the landing home page URL directly you get broken images because assets for the landing page are needed too.

More complete integration instructions should be included.

I just updated Egret and integration instructions. Thanks for pointing out that issue!

Hi!

For some reason, my ngx-datatable implemented using this template only refresh my data when hover somewhere inside the table, and I need autorefresh on it ¿Can you help me about this issue?

Thanks!

Hi, You need to use ChangeDetectorRef

inject ChangeDetectorRef in component

constructor(
    private dataService: MyDataService
    private cdr: ChangeDetectorRef
  ) {}

Then, in your subscription use markForCheck()

this.dataService.subscribe(res => {
        ...
        this.cdr.markForCheck();
    });

Is there a guide to integrate this with an already existing project? Is that possible?

In the documentation I received, it only talks about starting from scratch with the project of the theme.

Thank you

If your existing app uses lazy loading modules then you can import your app’s module one by one in Egret’s “views” folder and create route for imported module in Egret’s app.routing.ts

In egret template Everything you see without topbar & sidebar lives in “views” folder.

Hi , I recently purchased egret , I am trying to do npm install , it says,

vj@vj-VirtualBox:~/Downloads/egret/Egret-v8.0.0/seed-project$ npm install npm WARN deprecated core-js@2.4.1: core-js@<2.6.8 is no longer maintained. Please, upgrade to core-js@3 or at least to actual version of core-js@2. npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/angular-calendar-dec8ea63/bundles/angular-calendar.umd.min.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/platform-browser-682b2889/bundles/platform-browser.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/ng2-dragula-ca5ce353/dist/fesm5/ng2-dragula.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/zone.js-efe975eb/dist/zone-node.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/forms-31da51d5/bundles/forms.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/core-b54e8f81/core.metadata.json’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/flex-layout-33b119b1/bundles/flex-layout-core.umd.min.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/chart.js-d35cbff8/dist/Chart.min.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/common-22f21064/bundles/common-http.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/router-3d395ac0/bundles/router.umd.min.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/animations-a52c0ba2/bundles/animations-browser.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/compiler-cli-8a5cf85d/ngcc/src/host/esm5_host.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/compiler-cli-8a5cf85d/ngcc/src/host/esm5_host.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/quill-40e0eab3/dist/quill.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.dom.iterable.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/hammerjs-57e16b70/tests/unit/assets/qunit.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.collection.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.core.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.generator.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.iterable.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/platform-browser-dynamic-3c9077fb/fesm5/testing.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.promise.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/platform-browser-dynamic-3c9077fb/fesm5/testing.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.dom.iterable.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.proxy.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.collection.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.reflect.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.core.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.symbol.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2015.symbol.wellknown.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@ngu/carousel-3a11a653/fesm5/ngu-carousel.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2016.array.include.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.generator.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2016.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.iterable.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2016.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.promise.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/flag-icon-css-0364e80a/flags/1×1/dz.svg’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.intl.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.proxy.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/flag-icon-css-0364e80a/flags/1×1/ec.svg’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.object.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.reflect.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.sharedmemory.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.symbol.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2015.symbol.wellknown.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.string.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2016.array.include.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/compiler-8102c039/bundles/compiler.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2017.typedarrays.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2016.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/company_tree.json’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.asynciterable.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2016.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/company.json’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/cdk-ee530417/bundles/cdk-a11y.umd.js.map’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/forRowGrouping.json’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.intl.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.intl.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.object.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.promise.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.sharedmemory.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2018.regexp.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2019.array.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.string.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2019.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2017.typedarrays.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2019.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.asynciterable.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2019.string.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es2019.symbol.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/icons-reference.html’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-d1312bb6/lib/lib.es5.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.intl.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/icons.css’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.promise.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2018.regexp.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2019.array.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2019.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2019.full.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2019.string.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es2019.symbol.d.ts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/typescript-17e075fe/lib/lib.es5.d.ts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/language-service-1d8bb61c/bundles/language-service.umd.min.js’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/json/schema’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/logger’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/terminal’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/material-674bae94/bundles/material-chips.umd.min.js’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/material-674bae94/bundles/material-chips.umd.min.js.map’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/utils’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/platform-browser-dynamic-3c9077fb/fesm2015/testing.js’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular/platform-browser-dynamic-3c9077fb/fesm2015/testing.js.map’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/virtual-fs’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/company_tree.json’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/company.json’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/data/forRowGrouping.json’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@angular-devkit/core-24438a02/src/workspace’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, lstat ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/fonts’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/icons-reference.html’ npm WARN tar ENOENT: no such file or directory, open ’/home/vj/Downloads/egret/Egret-v8.0.0/seed-project/node_modules/.staging/@swimlane/ngx-datatable-f5bba833/assets/icons.css’ npm WARN agm/<redpre#1> requires a peer of @angular/common4.0.0 || ^5.0.0 but none is installed. You must install peer dependencies yourself. npm WARN agm/<redpre#2> requires a peer of @angular/core4.0.0 || 5.0.0 but none is installed. You must install peer dependencies yourself. npm WARN ngu/<redpre#3> requires a peer of @angular/common6.0.0-rc.0 || 6.0.0 but none is installed. You must install peer dependencies yourself. npm WARN ngu/<redpre#4> requires a peer of @angular/core6.0.0-rc.0 || 6.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-calendar@0.26.4 requires a peer of angular/animations>=6.0.0 <8.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-calendar@0.26.4 requires a peer of angular/common>=6.0.0 <8.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-calendar@0.26.4 requires a peer of angular/core>=6.0.0 <8.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-in-memory-web-api@0.8.0 requires a peer of angular/common>=6.0.0 <8.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-in-memory-web-api@0.8.0 requires a peer of angular/core>=6.0.0 <8.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-star-rating@4.0.0-beta.3 requires a peer of angular/core4.0.0 || 5.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-star-rating@4.0.0-beta.3 requires a peer of angular/forms4.0.0 || 5.0.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-star-rating@4.0.0-beta.3 requires a peer of rxjs@5.1.0 but none is installed. You must install peer dependencies yourself. npm WARN angular-star-rating@4.0.0-beta.3 requires a peer of zone.js@0.8.4 but none is installed. You must install peer dependencies yourself. npm WARN ng2-charts@2.2.2 requires a peer of angular/common7.2.0 but none is installed. You must install peer dependencies yourself. npm WARN ng2-charts@2.2.2 requires a peer of angular/core7.2.0 but none is installed. You must install peer dependencies yourself. npm WARN ng2-charts@2.2.2 requires a peer of chart.js@2.7.3 but none is installed. You must install peer dependencies yourself. npm WARN ngx-quill@4.8.0 requires a peer of angular/common5.0.0 || ^6.0.0 || ^7.0.0 but none is installed. You must install peer dependencies yourself. npm WARN ngx-quill@4.8.0 requires a peer of angular/core5.0.0 || 6.0.0 || ^7.0.0 but none is installed. You must install peer dependencies yourself. npm WARN ngx-quill@4.8.0 requires a peer of angular/forms5.0.0 || 6.0.0 || ^7.0.0 but none is installed. You must install peer dependencies yourself. npm WARN codelyzer@5.1.0 requires a peer of tslint@5.0.0 but none is installed. You must install peer dependencies yourself.

not sure if the package.json is the right one.. :( , i have also asked for github request , using https://ui-lib.com/github-access/ )

Please check your email, I sent you invitation.

Your error log is not helpful, I can not find what’s happening. if possible send a screenshot of terminal where error first show up.

Hi I just purchased your Angular Template. Please invite my GitHub ID: “sweetog”. Thanks!

Can you please request github access here https://ui-lib.com/github-access/ ?

Hi, I tried opening the main dashboard in the live preview theme with IE11, but the result was a blank page. Is Internet Explore 11 fully supported? Thank you

IE 11 is fully supported. I think I forget to include polyfills for IE in demo.

Hi , I have purchesd this theme, I am in the process of migrating old angular 2 theme to this. What about angular 8 support now ? all componnets will work here ?

Few APIs has been changed and deprecated. Everything won’t work perfectly, you may need to update APIs in your project.

If you are using old version of Egret it’s better to update your project instead of using new version of Egret.

Update guide https://update.angular.io/

When I am running the latest build in my project it is generating a lot of warning from _palette.scss. Just running the downloaded version does not generate the warning. I am lost why is my project generating the warning.

WARNING: You probably don’t mean to use the color value black in interpolation here. It may end up represented as black, which will likely produce invalid CSS. Always quote color names when using them as strings or map keys (for example, “black” ). If you really want to use the color value here, use ’”” + $colorName’. 91 │ .text-#{$colorName}-#{$shade} { │ ^^^^^^ ? src\assets\styles\scss\_palette.scss 91:15 @import stdin 56:9 root stylesheet

?

Angular 8 switched from the native Sass compiler to the JavaScript compiler. I think JavaScript compiler generating warnings. Try after installing node-sass “npm install node-sass—save-dev”

Thanks. This worked

hay rafi,

i have some troubles with installing your template, i bought it some month ago and used it in so many projets. so thank you for this awesome angular template!!

but my problems with your latest update is “git” but idk why..

my error log:

npm ERR! code ENOGIT npm ERR! Error while executing: npm ERR! undefined ls-remote -h -t ssh://git@github.com/angular/web-animations-js.git npm ERR! npm ERR! undefined npm ERR! No git binary found in $PATH npm ERR! npm ERR! Failed using git. npm ERR! Please check if you have git installed and in your PATH. but i have git installed and git is set in path aswell.. maybe you can help me with this error

When did you get this error? during npm install?

yes but already fixed it! the fix was to add git.exe and cmd to path variabel twice. first in system variables and in user aswell

Great, Thanks!

Hi, I bought the Egret Angular Tempalte +7 Material Design Admin Template and I’d like to have the access to the GitHub Repo. Thank you and Good Job

Please request github access here https://ui-lib.com/github-access/

Thanks!

Hi Rafi, I left a message for you on the forum… I’d love to have a brief chat to you over skype if possible. My skype ID is “goughv” and email gough@imagecloud.tv

Thanks, Gough Venter www.imagecloud.tv

Sent an email. Thanks!

Love your work Rafi… I like the way this template if pure Angular with MD without any other 3rd party contaminants. When using the i18n json for translations, it works for Header-Top & Header-Side, but how do we get it to work for components we add to the project?

TranslateModule is attached to AppModule. You need to define your translation here(assets/i18n/en.json)

{
    "HELLO": "hello" 
}

Then you will use “translate” pipe in component’s template

<div>{{ 'HELLO' | translate }}</div>

Here is the documentation https://github.com/ngx-translate/core#3-define-the-translations

Thanks!

Hello, on June 4 I bought the Egret Angular Tempalte +7 Material Design Admin Template and I never got the link to enter the Github repository. Neither username is nico4kd and email is nicolasbstr@gmail.com

From already thank you very much.

Best regards

Nicolás

I’ve sent you an email please check. Thanks!

Hi, I had purchased Angular Landing and I would like you confirm if I buy Egret you’ll support its integration with your Angular Landing page.

Also, as I noticed that many other sellers have upgraded to Angular 8, I would like to know when would you upgrade both Landing and Egret ?

Hi, I’ll help you to integrate. it’s easy & simple. I’ll upgrade both landing and admin template soon, hopefully next week. Thanks

Hi Rafi! When i install egret-admin and run with “ng serve” , my font size is different from “http://egret.ui-lib.com/”. Your app has a bigger font. How to manage this?

Yes….there is no error

Rafi, don’t worry. It works fine in other machine. Thanks.

Great! :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey