up build conf csc

This commit is contained in:
Tykayn 2025-10-08 16:08:04 +02:00 committed by tykayn
parent 4994c9b12a
commit eaa0752845
19 changed files with 5150 additions and 13670 deletions

View file

@ -1,14 +1,14 @@
import {Component} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {MainButton} from '../main-button/main-button';
import {NgClass} from '@angular/common';
import {CommonModule, NgClass} from '@angular/common';
@Component({
selector: 'sae-feedback-button',
imports: [
FormsModule,
MainButton,
NgClass
NgClass, CommonModule
],
templateUrl: './feedback-button.html',
styleUrl: './feedback-button.scss'

View file

@ -1,5 +1,4 @@
import {Component, Input} from '@angular/core';
// import {NgClass} from '@angular/common/directives';
export type ButtonKindType = '' | 'primary' | 'secondary' | 'ghost' | 'link';
export type ButtonSizeType = '' | 'large' | 'medium' | 'small' | 'extrasm';
@ -8,9 +7,7 @@ export type inconPositionKindType = '' | 'left' | 'right';
@Component({
selector: 'sae-m-button',
standalone: true,
imports: [
// NgClass,
],
imports: [],
templateUrl: './main-button.html',
styleUrl: './main-button.scss'
})