Skip to content

Commit

Permalink
fix(all): docs for all missing props
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Oct 11, 2018
1 parent 5330574 commit a72fced
Show file tree
Hide file tree
Showing 119 changed files with 1,025 additions and 656 deletions.
8 changes: 4 additions & 4 deletions angular/src/directives/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export class MenuToggle {
}

export declare interface Nav extends StencilComponents<'IonNav'> {}
@Component({ selector: 'ion-nav', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['swipeGesture', 'animated', 'animation', 'delegate', 'rootParams', 'root'] })
@Component({ selector: 'ion-nav', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['delegate', 'swipeGesture', 'animated', 'animation', 'rootParams', 'root'] })
export class Nav {
ionNavWillLoad: EventEmitter<CustomEvent>;
ionNavWillChange: EventEmitter<CustomEvent>;
Expand All @@ -506,7 +506,7 @@ export class Nav {
constructor(r: ElementRef) {
const el = r.nativeElement;
proxyMethods(this, el, ['push', 'insert', 'insertPages', 'pop', 'popTo', 'popToRoot', 'removeIndex', 'setRoot', 'setPages', 'setRouteId', 'getRouteId', 'getActive', 'getByIndex', 'canGoBack', 'getPrevious']);
proxyInputs(this, el, ['swipeGesture', 'animated', 'animation', 'delegate', 'rootParams', 'root']);
proxyInputs(this, el, ['delegate', 'swipeGesture', 'animated', 'animation', 'rootParams', 'root']);
proxyOutputs(this, el, ['ionNavWillLoad', 'ionNavWillChange', 'ionNavDidChange']);
}
}
Expand Down Expand Up @@ -875,7 +875,7 @@ export class Thumbnail {
}

export declare interface Toggle extends StencilComponents<'IonToggle'> {}
@Component({ selector: 'ion-toggle', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['color', 'mode', 'name', 'checked', 'disabled', 'value'] })
@Component({ selector: 'ion-toggle', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: '<ng-content></ng-content>', inputs: ['mode', 'color', 'name', 'checked', 'disabled', 'value'] })
export class Toggle {
ionChange: EventEmitter<CustomEvent>;
ionFocus: EventEmitter<CustomEvent>;
Expand All @@ -884,7 +884,7 @@ export class Toggle {

constructor(r: ElementRef) {
const el = r.nativeElement;
proxyInputs(this, el, ['color', 'mode', 'name', 'checked', 'disabled', 'value']);
proxyInputs(this, el, ['mode', 'color', 'name', 'checked', 'disabled', 'value']);
proxyOutputs(this, el, ['ionChange', 'ionFocus', 'ionBlur', 'ionStyle']);
}
}
Expand Down
Loading

0 comments on commit a72fced

Please sign in to comment.