change header columns elements in airwatch

This commit is contained in:
Tykayn 2025-08-14 12:18:20 +02:00 committed by tykayn
parent 219fa8c4f9
commit fa8a7ca996
215 changed files with 26292 additions and 45 deletions

View file

@ -0,0 +1,16 @@
<div class="source">
<i class="ri-file-3-line"></i>
<span class="title">{{ source.title || 'Source sans nom' }}</span>
<div class="actions has-text-right">
<i class="ri-file-add-line"></i>
<i class="ri-arrow-down-s-line"></i>
</div>
<div class="description">
{{ source.description || description }}
</div>
</div>

View file

@ -0,0 +1,31 @@
.source {
padding: 10px;
margin-bottom: 10px;
background: white;
color: #000;
font-size: 14px;
font-weight: 400;
line-height: 20px;
cursor: pointer;
border-radius: 4px;
.title {
color: #1E1F22;
font-size: 14px;
font-weight: 600;
margin-left: 3px;
}
.actions {
color: #005AA2;
float: right;
}
&:hover {
background: #ECF3FA;
}
.description {
margin-top: 7px;
}
}

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SourceBlock } from './source-block';
describe('SourceBlock', () => {
let component: SourceBlock;
let fixture: ComponentFixture<SourceBlock>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [SourceBlock]
})
.compileComponents();
fixture = TestBed.createComponent(SourceBlock);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,14 @@
import {Component, Input} from '@angular/core';
import {ChatbotSource} from '../../services/conversations.service';
@Component({
selector: 'app-source-block',
imports: [],
templateUrl: './source-block.html',
styleUrl: './source-block.scss'
})
export class SourceBlock {
@Input() source: ChatbotSource = {} as ChatbotSource;
description: string = "lorem blah blah";
}