@abgov/angular-components 5.2.0 → 5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6749,15 +6749,21 @@ class GoabWorkSideMenu {
|
|
|
6749
6749
|
(_toggle)="_onToggle()"
|
|
6750
6750
|
(_navigate)="_onNavigate($event)"
|
|
6751
6751
|
>
|
|
6752
|
-
|
|
6753
|
-
<
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
|
|
6752
|
+
@if (primaryContent) {
|
|
6753
|
+
<div slot="primary">
|
|
6754
|
+
<ng-container [ngTemplateOutlet]="primaryContent"></ng-container>
|
|
6755
|
+
</div>
|
|
6756
|
+
}
|
|
6757
|
+
@if (secondaryContent) {
|
|
6758
|
+
<div slot="secondary">
|
|
6759
|
+
<ng-container [ngTemplateOutlet]="secondaryContent"></ng-container>
|
|
6760
|
+
</div>
|
|
6761
|
+
}
|
|
6762
|
+
@if (accountContent) {
|
|
6763
|
+
<div slot="account">
|
|
6764
|
+
<ng-container [ngTemplateOutlet]="accountContent"></ng-container>
|
|
6765
|
+
</div>
|
|
6766
|
+
}
|
|
6761
6767
|
</goa-work-side-menu>
|
|
6762
6768
|
}
|
|
6763
6769
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
@@ -6780,15 +6786,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImpor
|
|
|
6780
6786
|
(_toggle)="_onToggle()"
|
|
6781
6787
|
(_navigate)="_onNavigate($event)"
|
|
6782
6788
|
>
|
|
6783
|
-
|
|
6784
|
-
<
|
|
6785
|
-
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6790
|
-
|
|
6791
|
-
|
|
6789
|
+
@if (primaryContent) {
|
|
6790
|
+
<div slot="primary">
|
|
6791
|
+
<ng-container [ngTemplateOutlet]="primaryContent"></ng-container>
|
|
6792
|
+
</div>
|
|
6793
|
+
}
|
|
6794
|
+
@if (secondaryContent) {
|
|
6795
|
+
<div slot="secondary">
|
|
6796
|
+
<ng-container [ngTemplateOutlet]="secondaryContent"></ng-container>
|
|
6797
|
+
</div>
|
|
6798
|
+
}
|
|
6799
|
+
@if (accountContent) {
|
|
6800
|
+
<div slot="account">
|
|
6801
|
+
<ng-container [ngTemplateOutlet]="accountContent"></ng-container>
|
|
6802
|
+
</div>
|
|
6803
|
+
}
|
|
6792
6804
|
</goa-work-side-menu>
|
|
6793
6805
|
}
|
|
6794
6806
|
`,
|