Skip to content

Commit 46aefb2

Browse files
authored
Merge pull request #113 from CodeGov-org/nathan/create-update-proposal-review
create update proposal review
2 parents aaff284 + a695517 commit 46aefb2

50 files changed

Lines changed: 1394 additions & 287 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.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.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ import { DefineCustomElement } from '../../define-custom-element';
1515
selector: 'cg-copy-to-clipboard',
1616
standalone: true,
1717
changeDetection: ChangeDetectionStrategy.OnPush,
18-
template: `
19-
<ng-content />
20-
`,
18+
template: `<ng-content />`,
2119
})
2220
export class CopyToClipboardComponent {
2321
public readonly value =

lib/angular-ui/src/lib/molecules/dropdown/dropdown-btn-menu-item/dropdown-btn-menu-item.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-dropdown-btn-menu-item',
99
standalone: true,
1010
changeDetection: ChangeDetectionStrategy.OnPush,
11-
template: `
12-
<ng-content />
13-
`,
11+
template: `<ng-content />`,
1412
})
1513
export class DropdownBtnMenuItemComponent {}

0 commit comments

Comments
 (0)