{"version":3,"sources":["./src/app/agt/agt.module.ts","./src/app/agt/agt-routing.module.ts","./src/app/agt/agt.component.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;;;;GAIG;AACsC;AACM;AACS;AACH;AACL;AAChD,gCAAgC;IAYnB,SAAS,SAAT,SAAS;CACrB;AADY,SAAS;IAVrB,8DAAQ,CAAC;QACR,YAAY,EAAE,CAAC,2DAAY,CAAC;QAC5B,OAAO,EAAE;YACP,oEAAgB;YAChB,eAAe;YACf,kEAAmB;YACnB,6DAAc;SACf;QACD,SAAS,EAAE,CAAC,2DAAY,CAAC;KAC1B,CAAC;GACW,SAAS,CACrB;AADqB;;;;;;;;;;;;;;;;;;;;ACtBkC;AACf;AAElC,MAAM,MAAM,GAAW;IAC5B;;;;QAII;IACJ;QACE,IAAI,EAAE,UAAU;QAChB,YAAY,EAAE,GAAG,EAAE,CAAC,2KAAoC;aACrD,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC;KAC/B;IACD,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,EAAE;IACvD,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,UAAU,EAAE;CACvC,CAAC;IAMW,gBAAgB,SAAhB,gBAAgB;CAC5B;AADY,gBAAgB;IAJ5B,8DAAQ,CAAC;QACR,OAAO,EAAE,CAAC,4DAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;QACxC,OAAO,EAAE,CAAC,4DAAY,CAAC;KACxB,CAAC;GACW,gBAAgB,CAC5B;AAD4B;;;;;;;;;;;;;;;;;;ACtB7B;;;;GAIG;AAC+C;AAClD,8EAA8E;IAMjE,YAAY,SAAZ,YAAY;IAEvB;IACA,CAAC;IAED,QAAQ;QACN,mCAAmC;IACrC,CAAC;CACF;;AARY,YAAY;IAJxB,+DAAS,CAAC;QACT,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,uGAAuG;KAClH,CAAC;GACW,YAAY,CAQxB;AARwB","file":"agt-agt-module-es2015.js","sourcesContent":["/**\n * @license\n * Copyright Akveo. All Rights Reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n */\nimport { NgModule } from '@angular/core';\nimport { AgtComponent } from './agt.component';\nimport { AgtRoutingModule } from './agt-routing.module';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { NbLayoutModule } from '@nebular/theme';\n// import { ThemeModule } from ;\n\n@NgModule({\n declarations: [AgtComponent],\n imports: [\n AgtRoutingModule,\n // ThemeModule,\n ReactiveFormsModule,\n NbLayoutModule,\n ],\n bootstrap: [AgtComponent],\n})\nexport class AgtModule {\n}\n","import { RouterModule, Routes } from '@angular/router';\nimport { NgModule } from '@angular/core';\n\nexport const routes: Routes = [\n /*{\n path: 'employee',\n loadChildren: () => import('./employee/employee.module')\n .then(m => m.EmployeeModule),\n },*/\n {\n path: 'identity',\n loadChildren: () => import('./identity/identity.module')\n .then(m => m.IdentityModule),\n },\n { path: '', redirectTo: 'identity', pathMatch: 'full' },\n { path: '**', redirectTo: 'identity' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AgtRoutingModule {\n}\n","/**\n * @license\n * Copyright Akveo. All Rights Reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n */\nimport { Component, OnInit } from '@angular/core';\n// import { AnalyticsService } from '../../app/@core/utils/analytics.service';\n\n@Component({\n selector: 'ngx-agt',\n template: ` `,\n})\nexport class AgtComponent implements OnInit {\n\n constructor(/*private analytics: AnalyticsService*/) {\n }\n\n ngOnInit() {\n // this.analytics.trackPageViews();\n }\n}\n"],"sourceRoot":"webpack:///"}