{ "version": 3, "sources": ["libs/galaxy/comment/src/comment.component.ts", "libs/galaxy/comment/src/comment.component.html", "libs/galaxy/comment/src/comment.module.ts", "libs/galaxy/comment/public_api.ts", "libs/galaxy/comment/index.ts"], "sourcesContent": ["import { Component, HostBinding, Input } from '@angular/core';\n\n@Component({\n selector: 'glxy-comment',\n templateUrl: './comment.component.html',\n styleUrls: ['./comment.component.scss'],\n standalone: false,\n})\nexport class CommentComponent {\n @HostBinding('class') class = 'glxy-comment';\n\n @Input() messageText?: string;\n\n @Input() messageFrom?: string;\n\n @Input() messageMetadata?: string;\n\n @Input() profilePicUrl?: string;\n\n @Input() subtitleText?: string;\n}\n", "