Skip to content

Commit

Permalink
feat(toast): in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Jun 7, 2019
1 parent 0758af4 commit bbbba1f
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 77 deletions.
118 changes: 64 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,13 @@
"@angular/platform-browser": "^7.2.6",
"@angular/platform-browser-dynamic": "^7.2.6",
"@angular/router": "^7.2.6",
"@igo2/auth": "^1.0.0-alpha.1",
"@igo2/common": "^1.0.0-alpha.1",
"@igo2/context": "^1.0.0-alpha.1",
"@igo2/core": "^1.0.0-alpha.1",
"@igo2/geo": "^1.0.0-alpha.1",
"@igo2/integration": "^1.0.0-alpha.1",
"@igo2/utils": "^1.0.0-alpha.1",
"@turf/helpers": "^6.1.4",
"@turf/line-intersect": "^6.0.2",
"@igo2/auth": "^1.0.0-alpha.2",
"@igo2/common": "^1.0.0-alpha.2",
"@igo2/context": "^1.0.0-alpha.2",
"@igo2/core": "^1.0.0-alpha.2",
"@igo2/geo": "^1.0.0-alpha.2",
"@igo2/integration": "^1.0.0-alpha.2",
"@igo2/utils": "^1.0.0-alpha.2",
"classlist.js": "^1.1.20150312",
"core-js": "^2.6.5",
"file-saver": "^1.3.8",
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/portal/portal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
</app-expansion-panel>

<app-toast-panel
[results]="queryResults"
[store]="searchStore"
[@toastPanelOffsetX]="sidenavOpened"
[@toastPanelOffsetY]="expansionPanelExpanded">
Expand Down
8 changes: 4 additions & 4 deletions src/app/pages/portal/toast-panel/toast-panel.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,31 @@
igoStopPropagation
panelLeftButton
(click)="onListClick()">
<mat-icon>list</mat-icon>
<mat-icon svgIcon="format-list-bulleted-square"></mat-icon>
</button>

<button
mat-icon-button
igoStopPropagation
panelLeftButton
(click)="onPreviousClick()">
<mat-icon>chevron_left</mat-icon>
<mat-icon svgIcon="chevron-left"></mat-icon>
</button>

<button
mat-icon-button
igoStopPropagation
panelRightButton
(click)="onNextClick()">
<mat-icon>chevron_right</mat-icon>
<mat-icon svgIcon="chevron-right"></mat-icon>
</button>

<button
mat-icon-button
igoStopPropagation
panelRightButton
(click)="onCloseClick()">
<mat-icon>close</mat-icon>
<mat-icon svgIcon="close"></mat-icon>
</button>

<div
Expand Down
Loading

0 comments on commit bbbba1f

Please sign in to comment.