2025-09-02 14:16:41 +02:00
|
|
|
import {Component, Input} from '@angular/core';
|
2025-09-15 17:46:00 +02:00
|
|
|
import {Copy} from '../../buttons/copy/copy';
|
2025-08-07 16:42:16 +02:00
|
|
|
|
|
|
|
@Component({
|
2025-08-08 10:57:00 +02:00
|
|
|
selector: 'sae-bot-talks',
|
2025-09-15 17:46:00 +02:00
|
|
|
imports: [
|
|
|
|
Copy
|
|
|
|
],
|
2025-08-07 16:42:16 +02:00
|
|
|
templateUrl: './bot-talks.html',
|
2025-09-02 14:16:41 +02:00
|
|
|
styleUrl: './bot-talks.scss'
|
2025-08-07 16:42:16 +02:00
|
|
|
})
|
|
|
|
export class BotTalks {
|
2025-09-02 14:16:41 +02:00
|
|
|
|
2025-09-15 17:46:00 +02:00
|
|
|
@Input() public message: string = 'Hello!';
|
2025-09-15 18:08:52 +02:00
|
|
|
@Input() public documents: Array<any> = [];
|
2025-09-15 17:46:00 +02:00
|
|
|
@Input() public appState: any = {};
|
2025-08-07 16:42:16 +02:00
|
|
|
}
|