-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from e-picsa/feat/budget-tool-ui
Feat(budget): Editor Improvements
- Loading branch information
Showing
55 changed files
with
986 additions
and
502 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.
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
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
11 changes: 2 additions & 9 deletions
11
apps/picsa-tools/budget-tool/src/app/components/card/budget-card.scss
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
5 changes: 5 additions & 0 deletions
5
...ools/budget-tool/src/app/components/card/card-placeholder/card-placeholder.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,5 @@ | ||
<mat-card appearance="outlined" mat-elevation-z4 class="budget-card"> | ||
<button id="addCardButton" mat-button> | ||
<mat-icon id="addCardButtonIcon">add</mat-icon> | ||
</button> | ||
</mat-card> |
15 changes: 15 additions & 0 deletions
15
...ools/budget-tool/src/app/components/card/card-placeholder/card-placeholder.component.scss
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,15 @@ | ||
.budget-card { | ||
height: 100%; | ||
border-style: dashed; | ||
border-color: #848484; | ||
} | ||
#addCardButton { | ||
height: 100%; | ||
min-height: 120px; | ||
} | ||
#addCardButtonIcon { | ||
height: 36px; | ||
font-size: 36px; | ||
width: 36px; | ||
color: var(--color-black); | ||
} |
22 changes: 22 additions & 0 deletions
22
...s/budget-tool/src/app/components/card/card-placeholder/card-placeholder.component.spec.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,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { BudgetCardPlaceholderComponent } from './card-placeholder.component'; | ||
|
||
describe('BudgetCardPlaceholderComponent', () => { | ||
let component: BudgetCardPlaceholderComponent; | ||
let fixture: ComponentFixture<BudgetCardPlaceholderComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [BudgetCardPlaceholderComponent], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(BudgetCardPlaceholderComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
8 changes: 8 additions & 0 deletions
8
...-tools/budget-tool/src/app/components/card/card-placeholder/card-placeholder.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,8 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'budget-card-placeholder', | ||
templateUrl: './card-placeholder.component.html', | ||
styleUrls: ['./card-placeholder.component.scss', '../budget-card.scss'], | ||
}) | ||
export class BudgetCardPlaceholderComponent {} |
22 changes: 0 additions & 22 deletions
22
...a-tools/budget-tool/src/app/components/cell-editor/produce-consumed/produce-consumed.html
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
...csa-tools/budget-tool/src/app/components/cell-editor/produce-consumed/produce-consumed.ts
This file was deleted.
Oops, something went wrong.
83 changes: 0 additions & 83 deletions
83
...tools/budget-tool/src/app/components/cell-inline-editor/cell-inline-editor.component.html
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...tools/budget-tool/src/app/components/cell-inline-editor/cell-inline-editor.component.scss
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.