diff --git a/src/@fuse/components/alert/alert.component.html b/src/@fuse/components/alert/alert.component.html index 5c234dd0..0d512055 100644 --- a/src/@fuse/components/alert/alert.component.html +++ b/src/@fuse/components/alert/alert.component.html @@ -1,80 +1,93 @@ -
- -
- - -
- -
- -
- - -
- - - - - - - - - - - - - - - -
-
- - -
-
- -
- -
- -
-
- - - -
+ + @if (appearance === 'border') { +
+ } + + + @if (showIcon) { +
+ +
+ +
+ + +
+ @if (type === 'primary') { + + } + + @if (type === 'accent') { + + } + + @if (type === 'warn') { + + } + + @if (type === 'basic') { + + } + + @if (type === 'info') { + + } + + @if (type === 'success') { + + } + + @if (type === 'warning') { + + } + + @if (type === 'error') { + + } +
+
+ } + + +
+
+ +
+ +
+ +
+
+ + + + +} diff --git a/src/@fuse/components/alert/alert.component.ts b/src/@fuse/components/alert/alert.component.ts index 8b742df8..7c6d2c21 100644 --- a/src/@fuse/components/alert/alert.component.ts +++ b/src/@fuse/components/alert/alert.component.ts @@ -1,5 +1,5 @@ import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion'; -import { NgIf } from '@angular/common'; + import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -35,7 +35,7 @@ import { Subject, filter, takeUntil } from 'rxjs'; animations: fuseAnimations, exportAs: 'fuseAlert', standalone: true, - imports: [NgIf, MatIconModule, MatButtonModule], + imports: [MatIconModule, MatButtonModule], }) export class FuseAlertComponent implements OnChanges, OnInit, OnDestroy { /* eslint-disable @typescript-eslint/naming-convention */ diff --git a/src/@fuse/components/card/card.component.html b/src/@fuse/components/card/card.component.html index 76e4ff07..94e8e77a 100644 --- a/src/@fuse/components/card/card.component.html +++ b/src/@fuse/components/card/card.component.html @@ -1,5 +1,5 @@ - +@if (flippable) {
@@ -9,15 +9,17 @@
- +} - +@if (!flippable) { -
- -
-
+ @if (expanded) { +
+ +
+ } +} diff --git a/src/@fuse/components/card/card.component.ts b/src/@fuse/components/card/card.component.ts index 9eedb4be..f1eacce7 100644 --- a/src/@fuse/components/card/card.component.ts +++ b/src/@fuse/components/card/card.component.ts @@ -1,5 +1,5 @@ import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion'; -import { NgIf } from '@angular/common'; + import { Component, HostBinding, @@ -19,7 +19,7 @@ import { FuseCardFace } from '@fuse/components/card/card.types'; animations: fuseAnimations, exportAs: 'fuseCard', standalone: true, - imports: [NgIf], + imports: [], }) export class FuseCardComponent implements OnChanges { /* eslint-disable @typescript-eslint/naming-convention */ diff --git a/src/@fuse/components/loading-bar/loading-bar.component.html b/src/@fuse/components/loading-bar/loading-bar.component.html index 0ecb7763..05003422 100644 --- a/src/@fuse/components/loading-bar/loading-bar.component.html +++ b/src/@fuse/components/loading-bar/loading-bar.component.html @@ -1,3 +1,3 @@ - +@if (show) { - +} diff --git a/src/@fuse/components/loading-bar/loading-bar.component.ts b/src/@fuse/components/loading-bar/loading-bar.component.ts index 59a16159..daaa6ade 100644 --- a/src/@fuse/components/loading-bar/loading-bar.component.ts +++ b/src/@fuse/components/loading-bar/loading-bar.component.ts @@ -1,5 +1,5 @@ import { coerceBooleanProperty } from '@angular/cdk/coercion'; -import { NgIf } from '@angular/common'; + import { Component, inject, @@ -21,7 +21,7 @@ import { Subject, takeUntil } from 'rxjs'; encapsulation: ViewEncapsulation.None, exportAs: 'fuseLoadingBar', standalone: true, - imports: [NgIf, MatProgressBarModule], + imports: [MatProgressBarModule], }) export class FuseLoadingBarComponent implements OnChanges, OnInit, OnDestroy { private _fuseLoadingService = inject(FuseLoadingService); diff --git a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html index bc7a1dc6..6dd4dd9c 100644 --- a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html +++ b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.html @@ -5,15 +5,11 @@ [ngClass]="item.classes?.wrapper" > - + @if (item.link && !item.externalLink && !item.function && !item.disabled) {
-
+ } - + @if (item.link && item.externalLink && !item.function && !item.disabled) { - + } - + @if (!item.link && item.function && !item.disabled) {
-
+ } - + @if (item.link && !item.externalLink && item.function && !item.disabled) {
-
+ } - + @if (item.link && item.externalLink && item.function && !item.disabled) { - + } - + @if (!item.link && !item.function && !item.disabled) {
-
+ } - + @if (item.disabled) {
-
+ }
- + @if (item.icon) { - + }
@@ -142,17 +126,17 @@ {{ item.title }}
- + @if (item.subtitle) {
{{ item.subtitle }}
-
+ } - + @if (item.badge) {
- + } diff --git a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts index 0aed519c..060946cd 100644 --- a/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts +++ b/src/@fuse/components/navigation/horizontal/components/basic/basic.component.ts @@ -1,4 +1,4 @@ -import { NgClass, NgIf, NgTemplateOutlet } from '@angular/common'; +import { NgClass, NgTemplateOutlet } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -29,7 +29,6 @@ import { Subject, takeUntil } from 'rxjs'; standalone: true, imports: [ NgClass, - NgIf, RouterLink, RouterLinkActive, MatTooltipModule, diff --git a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html index 39734024..76475d31 100644 --- a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html +++ b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.html @@ -1,8 +1,8 @@ - +@if (!child) {
-
+} - + @for (item of item.children; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'basic') {
-
+ } - + @if ( + item.type === 'aside' || + item.type === 'collapsable' || + item.type === 'group' + ) {
-
+ } - + @if (item.type === 'divider') {
-
-
-
+ } + } + }
@@ -92,18 +88,18 @@ class="fuse-horizontal-navigation-item" [ngClass]="{ 'fuse-horizontal-navigation-item-disabled': item.disabled, - 'fuse-horizontal-navigation-item-active-forced': item.active + 'fuse-horizontal-navigation-item-active-forced': item.active, }" [matTooltip]="item.tooltip || ''" > - + @if (item.icon) { - + }
@@ -112,7 +108,7 @@ {{ item.title }}
- + @if (item.subtitle) {
@@ -120,11 +116,11 @@ {{ item.subtitle }}
-
+ }
- + @if (item.badge) {
- + }
diff --git a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.ts b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.ts index 8c4be74b..a474a4a5 100644 --- a/src/@fuse/components/navigation/horizontal/components/branch/branch.component.ts +++ b/src/@fuse/components/navigation/horizontal/components/branch/branch.component.ts @@ -1,5 +1,5 @@ import { BooleanInput } from '@angular/cdk/coercion'; -import { NgClass, NgFor, NgIf, NgTemplateOutlet } from '@angular/common'; +import { NgClass, NgTemplateOutlet } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -27,11 +27,9 @@ import { Subject, takeUntil } from 'rxjs'; changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [ - NgIf, NgClass, MatMenuModule, NgTemplateOutlet, - NgFor, FuseHorizontalNavigationBasicItemComponent, forwardRef(() => FuseHorizontalNavigationBranchItemComponent), FuseHorizontalNavigationDividerItemComponent, diff --git a/src/@fuse/components/navigation/horizontal/horizontal.component.html b/src/@fuse/components/navigation/horizontal/horizontal.component.html index 8b7310ed..1c193f38 100644 --- a/src/@fuse/components/navigation/horizontal/horizontal.component.html +++ b/src/@fuse/components/navigation/horizontal/horizontal.component.html @@ -1,41 +1,37 @@
- + @for (item of navigation; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'basic') { - + } - + @if ( + item.type === 'aside' || + item.type === 'collapsable' || + item.type === 'group' + ) { - + } - + @if (item.type === 'spacer') { - - - + } + } + }
diff --git a/src/@fuse/components/navigation/horizontal/horizontal.component.ts b/src/@fuse/components/navigation/horizontal/horizontal.component.ts index 327c991d..6c03011f 100644 --- a/src/@fuse/components/navigation/horizontal/horizontal.component.ts +++ b/src/@fuse/components/navigation/horizontal/horizontal.component.ts @@ -1,4 +1,3 @@ -import { NgFor, NgIf } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -30,8 +29,6 @@ import { FuseHorizontalNavigationSpacerItemComponent } from './components/spacer exportAs: 'fuseHorizontalNavigation', standalone: true, imports: [ - NgFor, - NgIf, FuseHorizontalNavigationBasicItemComponent, FuseHorizontalNavigationBranchItemComponent, FuseHorizontalNavigationSpacerItemComponent, diff --git a/src/@fuse/components/navigation/vertical/components/aside/aside.component.html b/src/@fuse/components/navigation/vertical/components/aside/aside.component.html index 34dff3ae..d6189342 100644 --- a/src/@fuse/components/navigation/vertical/components/aside/aside.component.html +++ b/src/@fuse/components/navigation/vertical/components/aside/aside.component.html @@ -8,18 +8,18 @@ [ngClass]="{ 'fuse-vertical-navigation-item-active': active, 'fuse-vertical-navigation-item-disabled': item.disabled, - 'fuse-vertical-navigation-item-active-forced': item.active + 'fuse-vertical-navigation-item-active-forced': item.active, }" [matTooltip]="item.tooltip || ''" > - + @if (item.icon) { - + }
@@ -28,17 +28,17 @@ {{ item.title }}
- + @if (item.subtitle) {
{{ item.subtitle }}
-
+ } - + @if (item.badge) {
- + }
- +@if (!skipChildren) {
- + @for (item of item.children; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'basic') { - + } - + @if (item.type === 'collapsable') { - + } - + @if (item.type === 'divider') { - + } - + @if (item.type === 'group') { - + } - + @if (item.type === 'spacer') { - - - + } + } + }
-
+} diff --git a/src/@fuse/components/navigation/vertical/components/aside/aside.component.ts b/src/@fuse/components/navigation/vertical/components/aside/aside.component.ts index 0113cd0b..c11efb6e 100644 --- a/src/@fuse/components/navigation/vertical/components/aside/aside.component.ts +++ b/src/@fuse/components/navigation/vertical/components/aside/aside.component.ts @@ -1,5 +1,5 @@ import { BooleanInput } from '@angular/cdk/coercion'; -import { NgClass, NgFor, NgIf } from '@angular/common'; +import { NgClass } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -32,9 +32,7 @@ import { Subject, filter, takeUntil } from 'rxjs'; imports: [ NgClass, MatTooltipModule, - NgIf, MatIconModule, - NgFor, FuseVerticalNavigationBasicItemComponent, FuseVerticalNavigationCollapsableItemComponent, FuseVerticalNavigationDividerItemComponent, diff --git a/src/@fuse/components/navigation/vertical/components/basic/basic.component.html b/src/@fuse/components/navigation/vertical/components/basic/basic.component.html index 39603bc8..f10bac11 100644 --- a/src/@fuse/components/navigation/vertical/components/basic/basic.component.html +++ b/src/@fuse/components/navigation/vertical/components/basic/basic.component.html @@ -5,15 +5,11 @@ [ngClass]="item.classes?.wrapper" > - + @if (item.link && !item.externalLink && !item.function && !item.disabled) { - + } - + @if (item.link && item.externalLink && !item.function && !item.disabled) { - + } - + @if (!item.link && item.function && !item.disabled) {
-
+ } - + @if (item.link && !item.externalLink && item.function && !item.disabled) { - + } - + @if (item.link && item.externalLink && item.function && !item.disabled) { - + } - + @if (!item.link && !item.function && !item.disabled) {
-
+ } - + @if (item.disabled) {
-
+ } - + @if (item.icon) { - + }
@@ -142,17 +126,17 @@ {{ item.title }}
- + @if (item.subtitle) {
{{ item.subtitle }}
-
+ } - + @if (item.badge) {
- + } diff --git a/src/@fuse/components/navigation/vertical/components/basic/basic.component.ts b/src/@fuse/components/navigation/vertical/components/basic/basic.component.ts index f83988da..182018d5 100644 --- a/src/@fuse/components/navigation/vertical/components/basic/basic.component.ts +++ b/src/@fuse/components/navigation/vertical/components/basic/basic.component.ts @@ -1,4 +1,4 @@ -import { NgClass, NgIf, NgTemplateOutlet } from '@angular/common'; +import { NgClass, NgTemplateOutlet } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -28,7 +28,6 @@ import { Subject, takeUntil } from 'rxjs'; standalone: true, imports: [ NgClass, - NgIf, RouterLink, RouterLinkActive, MatTooltipModule, diff --git a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.html b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.html index 56c806f3..6dc96ff9 100644 --- a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.html +++ b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.html @@ -10,13 +10,13 @@ (click)="toggleCollapsable()" > - + @if (item.icon) { - + }
@@ -25,17 +25,17 @@ {{ item.title }}
- + @if (item.subtitle) {
{{ item.subtitle }}
-
+ }
- + @if (item.badge) {
- + }
-
- - - - - - - +@if (!isCollapsed) { +
+ @for (item of item.children; track trackByFn($index, item)) { + + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { + + @if (item.type === 'basic') { + + } - - - - + + @if (item.type === 'collapsable') { + + } - - - - + + @if (item.type === 'divider') { + + } - - - - + + @if (item.type === 'group') { + + } - - - - - - -
+ + @if (item.type === 'spacer') { + + } + } + } +
+} diff --git a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts index 2bf347e3..ca7a464d 100644 --- a/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts +++ b/src/@fuse/components/navigation/vertical/components/collapsable/collapsable.component.ts @@ -1,5 +1,5 @@ import { BooleanInput } from '@angular/cdk/coercion'; -import { NgClass, NgFor, NgIf } from '@angular/common'; +import { NgClass } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -33,9 +33,7 @@ import { Subject, filter, takeUntil } from 'rxjs'; imports: [ NgClass, MatTooltipModule, - NgIf, MatIconModule, - NgFor, FuseVerticalNavigationBasicItemComponent, forwardRef(() => FuseVerticalNavigationCollapsableItemComponent), FuseVerticalNavigationDividerItemComponent, diff --git a/src/@fuse/components/navigation/vertical/components/group/group.component.html b/src/@fuse/components/navigation/vertical/components/group/group.component.html index febc6eba..efdf0218 100644 --- a/src/@fuse/components/navigation/vertical/components/group/group.component.html +++ b/src/@fuse/components/navigation/vertical/components/group/group.component.html @@ -6,13 +6,13 @@ >
- + @if (item.icon) { - + }
@@ -21,17 +21,17 @@ {{ item.title }}
- + @if (item.subtitle) {
{{ item.subtitle }}
-
+ }
- + @if (item.badge) {
- + }
- +@for (item of item.children; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'basic') { - + } - + @if (item.type === 'collapsable') { - + } - + @if (item.type === 'divider') { - + } - + @if (item.type === 'group') { - + } - + @if (item.type === 'spacer') { - - - + } + } +} diff --git a/src/@fuse/components/navigation/vertical/components/group/group.component.ts b/src/@fuse/components/navigation/vertical/components/group/group.component.ts index 71b3b513..9a959537 100644 --- a/src/@fuse/components/navigation/vertical/components/group/group.component.ts +++ b/src/@fuse/components/navigation/vertical/components/group/group.component.ts @@ -1,5 +1,5 @@ import { BooleanInput } from '@angular/cdk/coercion'; -import { NgClass, NgFor, NgIf } from '@angular/common'; +import { NgClass } from '@angular/common'; import { ChangeDetectionStrategy, ChangeDetectorRef, @@ -27,9 +27,7 @@ import { Subject, takeUntil } from 'rxjs'; standalone: true, imports: [ NgClass, - NgIf, MatIconModule, - NgFor, FuseVerticalNavigationBasicItemComponent, FuseVerticalNavigationCollapsableItemComponent, FuseVerticalNavigationDividerItemComponent, diff --git a/src/@fuse/components/navigation/vertical/vertical.component.html b/src/@fuse/components/navigation/vertical/vertical.component.html index d1360e14..f925b6a8 100644 --- a/src/@fuse/components/navigation/vertical/vertical.component.html +++ b/src/@fuse/components/navigation/vertical/vertical.component.html @@ -10,7 +10,7 @@ fuseScrollbar [fuseScrollbarOptions]="{ wheelPropagation: inner, - suppressScrollX: true + suppressScrollX: true, }" #navigationContent > @@ -22,13 +22,11 @@ - + @for (item of navigation; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'aside') { - + } - + @if (item.type === 'basic') { - + } - + @if (item.type === 'collapsable') { - + } - + @if (item.type === 'divider') { - + } - + @if (item.type === 'group') { - + } - + @if (item.type === 'spacer') { - - - + } + } + } - +@if (activeAsideItemId) {
- + @for (item of navigation; track trackByFn($index, item)) { - + @if ((item.hidden && !item.hidden(item)) || !item.hidden) { - + @if (item.type === 'aside' && item.id === activeAsideItemId) { - - - + } + } + }
-
+} diff --git a/src/@fuse/components/navigation/vertical/vertical.component.ts b/src/@fuse/components/navigation/vertical/vertical.component.ts index 8913ad47..446afcf9 100644 --- a/src/@fuse/components/navigation/vertical/vertical.component.ts +++ b/src/@fuse/components/navigation/vertical/vertical.component.ts @@ -6,7 +6,7 @@ import { } from '@angular/animations'; import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion'; import { ScrollStrategy, ScrollStrategyOptions } from '@angular/cdk/overlay'; -import { DOCUMENT, NgFor, NgIf } from '@angular/common'; +import { DOCUMENT } from '@angular/common'; import { AfterViewInit, ChangeDetectionStrategy, @@ -67,8 +67,6 @@ import { standalone: true, imports: [ FuseScrollbarDirective, - NgFor, - NgIf, FuseVerticalNavigationAsideItemComponent, FuseVerticalNavigationBasicItemComponent, FuseVerticalNavigationCollapsableItemComponent, diff --git a/src/@fuse/services/confirmation/dialog/dialog.component.html b/src/@fuse/services/confirmation/dialog/dialog.component.html index 6da9b321..36e0d1c6 100644 --- a/src/@fuse/services/confirmation/dialog/dialog.component.html +++ b/src/@fuse/services/confirmation/dialog/dialog.component.html @@ -1,6 +1,6 @@
- + @if (data.dismissible) {
-
+ }
- + @if (data.icon.show) {
-
+ } - + @if (data.title || data.message) {
- + @if (data.title) {
-
+ } - + @if (data.message) {
-
+ }
-
+ }
- + @if (data.actions.confirm.show || data.actions.cancel.show) {
- + @if (data.actions.cancel.show) { - + } - + @if (data.actions.confirm.show) { - + }
-
+ }
diff --git a/src/@fuse/services/confirmation/dialog/dialog.component.ts b/src/@fuse/services/confirmation/dialog/dialog.component.ts index 3b1299d8..f9604d9a 100644 --- a/src/@fuse/services/confirmation/dialog/dialog.component.ts +++ b/src/@fuse/services/confirmation/dialog/dialog.component.ts @@ -1,4 +1,4 @@ -import { NgClass, NgIf } from '@angular/common'; +import { NgClass } from '@angular/common'; import { Component, ViewEncapsulation, inject } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; import { MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog'; @@ -25,7 +25,7 @@ import { FuseConfirmationConfig } from '@fuse/services/confirmation/confirmation ], encapsulation: ViewEncapsulation.None, standalone: true, - imports: [NgIf, MatButtonModule, MatDialogModule, MatIconModule, NgClass], + imports: [MatButtonModule, MatDialogModule, MatIconModule, NgClass], }) export class FuseConfirmationDialogComponent { data: FuseConfirmationConfig = inject(MAT_DIALOG_DATA);