// @ts-nocheck import { Component, Input } from "@angular/core"; /** * ActivityTimelineItemComponent * Individual card inside the timeline tree flow. */ @Component({ selector: "mayvio-activity-timeline-item", template: `

{{ title }}

{{ time }}

` }) export class ActivityTimelineItemComponent { @Input() status: "primary" | "success" | "warning" | "error" | "info" = "info"; @Input() time = ""; @Input() title = ""; @Input() hasDesc = true; @Input() className = ""; } /** * ActivityTimelineComponent * Container representing the vertical status event connector thread. */ @Component({ selector: "mayvio-activity-timeline", template: `
` }) export class ActivityTimelineComponent { @Input() className = ""; }