up airwatch imports

This commit is contained in:
Tykayn 2025-09-22 14:53:02 +02:00 committed by tykayn
parent e815c56815
commit 4e57a2368a
17 changed files with 169 additions and 79 deletions

View file

@ -1,7 +1,4 @@
<button
[ngClass]="{
'is-disabled': disabled
}"
class="sae-main-button is-{{kind}} is-size-{{size}}"
>
@ -18,3 +15,4 @@
<i class="ri ri-{{icon}}"></i>
}
</button>

View file

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