CSC link state to filters

This commit is contained in:
Tykayn 2025-09-10 16:02:31 +02:00 committed by tykayn
parent 0a8088b459
commit 8694a04ea9
31 changed files with 191 additions and 191 deletions

View file

@ -1 +0,0 @@
<p>index works!</p>

View file

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

View file

@ -1,11 +0,0 @@
import {Component} from '@angular/core';
@Component({
selector: 'sae-main-button',
imports: [],
templateUrl: './index.html',
styleUrl: './index.css'
})
export class Index {
}

View file

@ -13,6 +13,8 @@
name="from_text"
placeholder=""
rows="10"></textarea>
<sae-main-button></sae-main-button>
<button (click)="clickFileUpload(fileUpload)" class=" click-file-upload is-outlined">
<i class="ri-upload-cloud-2-line"></i>
<span class="label">

View file

@ -31,6 +31,10 @@
font-weight: 400;
line-height: 140%;
}
.click-file-upload {
cursor: pointer;
}
}
#fromText {

View file

@ -1,10 +1,11 @@
import {Component, EventEmitter, Output} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {Index} from '../index';
@Component({
selector: 'sae-translate-texts',
standalone: true,
imports: [FormsModule],
imports: [FormsModule, Index],
templateUrl: './translate-texts.html',
styleUrl: './translate-texts.scss'
})