Skip to content

Commit 23b177c

Browse files
committed
Merge pull request #113 from CodeGov-org/nathan/create-update-proposal-review
create update proposal review
2 parents aaff284 + a695517 commit 23b177c

123 files changed

Lines changed: 9124 additions & 13106 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/angular-ui/src/lib/atoms/card/card.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../define-custom-element';
88
selector: 'cg-card',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class CardComponent {}

lib/angular-ui/src/lib/atoms/icon-btn/icon-btn.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../define-custom-element';
88
selector: 'cg-icon-btn',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class IconBtnComponent {}

lib/angular-ui/src/lib/atoms/icons/check-circle-icon/check-circle-icon.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../../define-custom-element';
88
selector: 'cg-check-circle-icon',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class CheckCircleIconComponent {}

lib/angular-ui/src/lib/atoms/icons/dash-circle-icon/dash-circle-icon.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../../define-custom-element';
88
selector: 'cg-dash-circle-icon',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class DashCircleIconComponent {}

lib/angular-ui/src/lib/atoms/icons/profile-icon/profile-icon.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../../define-custom-element';
88
selector: 'cg-profile-icon',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class ProfileIconComponent {}

lib/angular-ui/src/lib/atoms/radio-input/radio-input.component.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ describe('RadioInputComponent', () => {
1313

1414
fixture = TestBed.createComponent(RadioInputComponent);
1515
component = fixture.componentInstance;
16+
fixture.componentRef.setInput('value', 1);
1617
fixture.detectChanges();
1718
});
1819

lib/angular-ui/src/lib/atoms/radio-input/radio-input.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ type TouchedFn = () => void;
2929
multi: true,
3030
},
3131
],
32-
template: `
33-
<ng-content />
34-
`,
32+
template: `<ng-content />`,
3533
})
3634
export class RadioInputComponent implements ControlValueAccessor {
3735
private notifyChange: ChangeFn = () => {};

lib/angular-ui/src/lib/atoms/text-btn/text-btn.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../define-custom-element';
88
selector: 'cg-text-btn',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class TextBtnComponent {}

lib/angular-ui/src/lib/molecules/collapsible/collapsible.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { DefineCustomElement } from '../../define-custom-element';
88
selector: 'cg-collapsible',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class CollapsibleComponent {}

lib/angular-ui/src/lib/molecules/copy-to-clipboard/copy-to-clipboard.component.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ describe('CopyToClipboardComponent', () => {
1313

1414
fixture = TestBed.createComponent(CopyToClipboardComponent);
1515
component = fixture.componentInstance;
16+
fixture.componentRef.setInput('value', 'https://example.com');
1617
fixture.detectChanges();
1718
});
1819

0 commit comments

Comments
 (0)