{ "version": 3, "sources": ["src/app/shared/tag-badge/tag-badge.component.ts", "src/app/shared/tag-badge/tag-badge.component.html"], "sourcesContent": ["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\nimport {CommonModule} from \"@angular/common\";\n\n/**\n * What type of cursor to apply to the tag badge\n */\nexport enum TagBadgeCursor {\n /**\n * Allows the user to select text\n * cursor: default\n */\n Selectable,\n /**\n * Informs the user they can click and interact with badge\n * cursor: pointer\n */\n Clickable,\n /**\n * Informs the user they cannot click or interact with badge\n * cursor: not-allowed\n */\n NotAllowed,\n}\n\n@Component({\n selector: 'app-tag-badge',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './tag-badge.component.html',\n styleUrls: ['./tag-badge.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TagBadgeComponent {\n\n @Input() selectionMode: TagBadgeCursor = TagBadgeCursor.Selectable;\n @Input() fillStyle: 'filled' | 'outline' = 'outline';\n\n get TagBadgeCursor() {\n return TagBadgeCursor;\n }\n}\n", "