-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature flag root content page created (#1508)
- Loading branch information
Showing
5 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
...ag-root-page/feature-flag-root-page-content/feature-flag-root-page-content.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<app-common-section-card-list> | ||
<div section-card>Hi I'm a section card 1</div> | ||
</app-common-section-card-list> |
Empty file.
12 changes: 12 additions & 0 deletions
12
...flag-root-page/feature-flag-root-page-content/feature-flag-root-page-content.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
import { CommonSectionCardListComponent } from '../../../../../../shared-standalone-component-lib/components'; | ||
|
||
@Component({ | ||
selector: 'app-feature-flag-root-page-content', | ||
standalone: true, | ||
imports: [CommonSectionCardListComponent], | ||
templateUrl: './feature-flag-root-page-content.component.html', | ||
styleUrl: './feature-flag-root-page-content.component.scss', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class FeatureFlagRootPageContentComponent {} |
2 changes: 1 addition & 1 deletion
2
...ashboard/feature-flags/pages/feature-flag-root-page/feature-flag-root-page.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<app-common-root-page> | ||
<app-feature-flag-root-page-header header></app-feature-flag-root-page-header> | ||
<!-- content element goes here (section card list) --> | ||
<app-feature-flag-root-page-content content></app-feature-flag-root-page-content> | ||
</app-common-root-page> |
3 changes: 2 additions & 1 deletion
3
.../dashboard/feature-flags/pages/feature-flag-root-page/feature-flag-root-page.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import { Component } from '@angular/core'; | ||
import { CommonRootPageComponent } from '../../../../../shared-standalone-component-lib/components'; | ||
import { FeatureFlagRootPageHeaderComponent } from './feature-flag-root-page-header/feature-flag-root-page-header.component'; | ||
import { FeatureFlagRootPageContentComponent } from './feature-flag-root-page-content/feature-flag-root-page-content.component'; | ||
|
||
@Component({ | ||
selector: 'app-feature-flag-root-page', | ||
standalone: true, | ||
templateUrl: './feature-flag-root-page.component.html', | ||
styleUrl: './feature-flag-root-page.component.scss', | ||
imports: [CommonRootPageComponent, FeatureFlagRootPageHeaderComponent], | ||
imports: [CommonRootPageComponent, FeatureFlagRootPageHeaderComponent, FeatureFlagRootPageContentComponent], | ||
}) | ||
export class FeatureFlagRootPageComponent {} |