mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
4.0.0-beta.7
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ionic/angular",
|
||||
"version": "4.0.0-beta.6",
|
||||
"version": "4.0.0-beta.7",
|
||||
"description": "Angular specific wrappers for @ionic/core",
|
||||
"keywords": [
|
||||
"ionic",
|
||||
@@ -43,7 +43,7 @@
|
||||
"css/"
|
||||
],
|
||||
"dependencies": {
|
||||
"@ionic/core": "4.0.0-beta.6"
|
||||
"@ionic/core": "4.0.0-beta.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/common": "^6.1.0",
|
||||
|
||||
@@ -436,12 +436,13 @@ export class Label {
|
||||
}
|
||||
|
||||
export declare interface List extends StencilComponents<'IonList'> {}
|
||||
@Component({ selector: 'ion-list', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['lines', 'inset'] })
|
||||
@Component({ selector: 'ion-list', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['mode', 'lines', 'inset'] })
|
||||
export class List {
|
||||
|
||||
constructor(r: ElementRef) {
|
||||
const el = r.nativeElement;
|
||||
proxyInputs(this, el, ['lines', 'inset']);
|
||||
proxyMethods(this, el, ['closeSlidingItems']);
|
||||
proxyInputs(this, el, ['mode', 'lines', 'inset']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user