Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit b68a73c

Browse files
committed
feat(ionic): update to v5
1 parent 4cf9a12 commit b68a73c

File tree

6 files changed

+17
-24
lines changed

6 files changed

+17
-24
lines changed

package-lock.json

Lines changed: 12 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@ionic-native/core": "5.16.0",
5656
"@ionic-native/splash-screen": "5.16.0",
5757
"@ionic-native/status-bar": "5.16.0",
58-
"@ionic/angular": "4.11.4",
58+
"@ionic/angular": "5.0.0",
5959
"cordova-android": "8.1.0",
6060
"cordova-ios": "5.0.1",
6161
"cordova-plugin-device": "2.0.3",

projects/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@angular/forms": ">=8.0.0 <9.0.0",
2525
"@angular/platform-browser": ">=8.0.0 <9.0.0",
2626
"@angular/router": ">=8.0.0 <9.0.0",
27-
"@ionic/angular": "^4.0.0",
27+
"@ionic/angular": "^4.0.0 || ^5.0.0",
2828
"rxjs": ">=6.4.0"
2929
},
3030
"author": "Fivethree Team",

projects/core/src/lib/expandable/expandable-indicator/expandable-indicator.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { FivExpandable } from '../expandable.component';
77
styleUrls: ['./expandable-indicator.component.scss']
88
})
99
export class FivExpandableIndicator implements OnInit {
10-
@Input() icon = 'ios-arrow-down';
10+
@Input() icon = 'chevron-down';
1111

1212
constructor(public expandable: FivExpandable) {}
1313

projects/core/src/lib/router-item/router-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class FivRouterItem implements OnInit, AfterViewInit {
2929

3030
@Input() detail?: boolean;
3131

32-
@Input() detailIcon = 'ios-arrow-forward';
32+
@Input() detailIcon = 'chevron-forward';
3333

3434
@Input() disabled = false;
3535

src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div style="position: relative;" header class="ion-activatable" (click)="ex.toggle()">
2121
<ion-item lines="none">
2222
<ion-label>Documentation</ion-label>
23-
<fiv-expandable-indicator icon="ios-arrow-down"></fiv-expandable-indicator>
23+
<fiv-expandable-indicator icon="chevron-down"></fiv-expandable-indicator>
2424

2525
</ion-item>
2626
<ion-ripple-effect type="bounded"></ion-ripple-effect>

0 commit comments

Comments
 (0)