{"version":3,"sources":["webpack:///src/app/directives/directives.module.ts","webpack:///src/app/modules/shared/components/major-actions/major-actions.component.ts","webpack:///src/app/modules/shared/components/major-actions/major-actions.component.html","webpack:///src/app/modules/shared/components/major-actions/major-actions.module.ts","webpack:///src/app/modules/shared/components/rating/rating.module.ts","webpack:///src/app/modules/shared/pipes.shared.module.ts","webpack:///src/app/modules/shared/primary-components/reader-feedback-card/reader-feedback-card.component.html","webpack:///src/app/modules/shared/primary-components/reader-feedback-card/reader-feedback-card.component.ts","webpack:///src/app/modules/shared/primary-components/reader-feedback-card/reader-feedback-card.module.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport {HoverDirective} from './hover.directive';\nimport {AutoFocusDirective} from './auto-focus.directive';\nimport {BgSliderDirective} from './bg-slider.directive';\nimport {CallDirective} from './call.directive';\nimport {ChatDirective} from './chat.directive';\nimport {HoverUnionDirective} from './hover-union';\nimport {IsGrantedDirective} from './is-granted.directive';\nimport {MatchHeightsDirective} from './match-heights.directive';\nimport {NgxModalDraggableDirective} from './ngx-modal-draggable.directive ';\nimport {DigitOnlyDirective} from './digit-only.directive';\n@NgModule({\n declarations: [\n AutoFocusDirective,\n BgSliderDirective,\n CallDirective,\n ChatDirective,\n HoverDirective,\n HoverUnionDirective,\n IsGrantedDirective,\n MatchHeightsDirective,\n NgxModalDraggableDirective,\n DigitOnlyDirective\n ],\n exports: [\n AutoFocusDirective,\n BgSliderDirective,\n CallDirective,\n ChatDirective,\n HoverDirective,\n HoverUnionDirective,\n IsGrantedDirective,\n MatchHeightsDirective,\n NgxModalDraggableDirective,\n DigitOnlyDirective\n ],\n})\nexport class DirectivesModule { }\n","import {Component, Input, OnInit} from '@angular/core';\n\n@Component({\n selector: 'shared-major-actions',\n templateUrl: './major-actions.component.html',\n styleUrls: ['./major-actions.component.scss'],\n})\nexport class MajorActionsComponent implements OnInit {\n\n constructor() {\n }\n\n @Input()\n set data(item) {\n }\n\n ngOnInit() {\n }\n\n}\n","