-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move project files to correct folder * Remove DODs from maps of health data * Change DOD to DOD_PERIOD * Remove DOD from Vis4 data * Tweaks to age group calculations * Update scripts * Fix paths * Disable Data Distributions in menu if no aggregate table data * Exit script if no source data * Move logic that checks for data * Remove unwanted text * Move data source check out of run.sh * Add documentation coverage * More Compodoc setup * Remove unneeded workaround * Add documentation to angular files * Fixes * Fixes to workflows * Fix conflicts * Fix conflicts * Change to workflows
- Loading branch information
Showing
220 changed files
with
3,450 additions
and
287 deletions.
There are no files selected for viewing
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
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
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,3 +1,4 @@ | ||
/** Build info */ | ||
export const buildInfo = { | ||
version: '1.0.0', | ||
lastCommitDate: new Date(1603996553000), | ||
|
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
...ore/components/banner/banner.component.ts → ...ore/components/banner/banner.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,16 @@ | ||
import { ChangeDetectionStrategy, Component, HostBinding } from '@angular/core'; | ||
|
||
|
||
/** | ||
* Page banner component | ||
*/ | ||
@Component({ | ||
selector: 'agc-banner', | ||
templateUrl: './banner.component.html', | ||
styleUrls: ['./banner.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class BannerComponent { | ||
/** HTML class name */ | ||
@HostBinding('class') readonly clsName = 'agc-banner'; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
...ents/page-footer/page-footer.component.ts → ...ents/page-footer/page-footer.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,17 +1,24 @@ | ||
import { ChangeDetectionStrategy, Component, EventEmitter, HostBinding, Input, Output } from '@angular/core'; | ||
|
||
|
||
/** | ||
* Page footer component | ||
*/ | ||
@Component({ | ||
selector: 'agc-page-footer', | ||
templateUrl: './page-footer.component.html', | ||
styleUrls: ['./page-footer.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class PageFooterComponent { | ||
/** HTML class name */ | ||
@HostBinding('class') readonly clsName = 'agc-page-footer'; | ||
|
||
/** Build date */ | ||
@Input() buildDate = new Date(); | ||
|
||
/** Emits when contact button clicked */ | ||
@Output() readonly contactClick = new EventEmitter<void>(); | ||
/** Emits when privacy policy button clicked */ | ||
@Output() readonly privacyClick = new EventEmitter<void>(); | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 9 additions & 1 deletion
10
...ents/page-header/page-header.component.ts → ...ents/page-header/page-header.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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
...e/components/sub-bar/sub-bar.component.ts → ...e/components/sub-bar/sub-bar.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,14 +1,19 @@ | ||
import { ChangeDetectionStrategy, Component, HostBinding, Input } from '@angular/core'; | ||
|
||
|
||
/** | ||
* Header sub bar component | ||
*/ | ||
@Component({ | ||
selector: 'agc-sub-bar', | ||
template: '', | ||
styleUrls: ['./sub-bar.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class SubBarComponent { | ||
/** HTML class name */ | ||
@HostBinding('class') readonly clsName = 'agc-sub-bar'; | ||
|
||
/** If sub bar is visible */ | ||
@Input() @HostBinding('class.visible') visible = true; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.