chore(): update to ionic-rules/strict

This commit is contained in:
Manu Mtz.-Almeida
2018-07-29 23:10:26 +02:00
parent 7292fc7d38
commit c1b61d0fee
148 changed files with 354 additions and 407 deletions

View File

@ -1,9 +1,9 @@
import { Component, Element, Event, EventEmitter, Listen, Prop, State, Watch } from '@stencil/core';
import { ActionSheetButton, ActionSheetOptions, AlertInput, AlertOptions, CssClassMap, Mode, PopoverOptions, SelectInputChangeEvent, SelectInterface, SelectPopoverOption, StyleEvent } from '../../interface';
import { deferEvent, renderHiddenInput } from '../../utils/helpers';
import { createThemedClasses, hostContext } from '../../utils/theme';
@Component({
tag: 'ion-select',
styleUrls: {
@ -110,7 +110,6 @@ export class Select {
*/
@Event() ionStyle!: EventEmitter<StyleEvent>;
@Watch('disabled')
disabledChanged() {
this.emitStyle();
@ -220,7 +219,6 @@ export class Select {
});
}
componentWillLoad() {
if (!this.value) {
this.value = this.multiple ? [] : undefined;