UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

65 lines 2.32 kB
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { __decorate, __spreadArrays } from "tslib"; import { NgModule } from '@angular/core'; import { NbSharedModule } from '../shared/shared.module'; import { NbButtonModule } from '../button/button.module'; import { NbInputModule } from '../input/input.module'; import { NbIconModule } from '../icon/icon.module'; import { NbChatComponent } from './chat.component'; import { NbChatMessageComponent } from './chat-message.component'; import { NbChatFormComponent } from './chat-form.component'; import { NbChatMessageTextComponent } from './chat-message-text.component'; import { NbChatMessageFileComponent } from './chat-message-file.component'; import { NbChatMessageQuoteComponent } from './chat-message-quote.component'; import { NbChatMessageMapComponent } from './chat-message-map.component'; import { NbChatOptions } from './chat.options'; var NB_CHAT_COMPONENTS = [ NbChatComponent, NbChatMessageComponent, NbChatFormComponent, NbChatMessageTextComponent, NbChatMessageFileComponent, NbChatMessageQuoteComponent, NbChatMessageMapComponent, ]; var NbChatModule = /** @class */ (function () { function NbChatModule() { } NbChatModule_1 = NbChatModule; NbChatModule.forRoot = function (options) { return { ngModule: NbChatModule_1, providers: [ { provide: NbChatOptions, useValue: options || {} }, ], }; }; NbChatModule.forChild = function (options) { return { ngModule: NbChatModule_1, providers: [ { provide: NbChatOptions, useValue: options || {} }, ], }; }; var NbChatModule_1; NbChatModule = NbChatModule_1 = __decorate([ NgModule({ imports: [ NbSharedModule, NbIconModule, NbInputModule, NbButtonModule, ], declarations: __spreadArrays(NB_CHAT_COMPONENTS), exports: __spreadArrays(NB_CHAT_COMPONENTS), }) ], NbChatModule); return NbChatModule; }()); export { NbChatModule }; //# sourceMappingURL=chat.module.js.map