\r\n","\r\nimport { NgModule } from '@angular/core';\r\n\r\n// Helpers\r\nimport { ReactiveFormsModule, FormsModule } from '@angular/forms';\r\nimport { environment } from 'src/environments/environment';\r\n\r\nimport { MatPaginatorIntl } from '@angular/material/paginator';\r\n import { MAT_SELECT_SCROLL_STRATEGY } from '@angular/material/select';\r\n import { RouterModule } from '@angular/router';\r\nimport { CustomPaginator } from '../helpers/CustomPaginatorConfiguration';\r\nimport { Overlay, BlockScrollStrategy } from '@angular/cdk/overlay';\r\nimport { DemoMaterialModule } from '../helpers/material-modules';\r\nimport { FileManagerComponent } from './file-manager/file-manager.component';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nexport function scrollFactory(overlay: Overlay): () => BlockScrollStrategy {\r\n return () => overlay.scrollStrategies.block();\r\n}\r\n\r\n@NgModule({\r\n declarations: [\r\n FileManagerComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n RouterModule,\r\n DemoMaterialModule,\r\n ],\r\n exports: [\r\n ReactiveFormsModule,\r\n FormsModule,\r\n DemoMaterialModule,\r\n FileManagerComponent\r\n ],\r\n providers: [\r\n { provide: MatPaginatorIntl, useValue: CustomPaginator() },\r\n { provide: MAT_SELECT_SCROLL_STRATEGY, useFactory: scrollFactory, deps: [Overlay] }\r\n ]\r\n})\r\nexport class SharedModule { }\r\n","// This file can be replaced during build by using the `fileReplacements` array.\n// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.\n// The list of file replacements can be found in `angular.json`.\n\nexport const environment = {\n production: false,\n apiUrl: 'https://histoaiapi.expertapps.com.sa/api',\n\n};\n\n/*\n * For easier debugging in development mode, you can import the following file\n * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.\n *\n * This import should be commented out in production mode because it will have a negative impact\n * on performance if an error is thrown.\n */\n// import 'zone.js/dist/zone-error'; // Included with Angular CLI.\n","import { enableProdMode } from '@angular/core';\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';\n\nimport { AppModule } from './app/app.module';\nimport { environment } from './environments/environment';\n\nif (environment.production) {\n enableProdMode();\n}\n\nplatformBrowserDynamic().bootstrapModule(AppModule)\n .catch(err => console.error(err));\n"]}