Skip to content

Commit e7aa2b1

Browse files
committed
lint: fixes
1 parent 91625df commit e7aa2b1

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/appbar/angular/app-bar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component } from '@angular/core';
2-
import { ActionBarComponent, isInvisibleNode, isView, NgView, ViewClassMeta, ViewExtensions } from '@nativescript/angular';
2+
import { ActionBarComponent, NgView, ViewClassMeta, ViewExtensions, isInvisibleNode, isView } from '@nativescript/angular';
33
import { ActionBar, ActionItem, ActionItems, NavigationButton } from '@nativescript/core';
44

55
export function isActionItem(view: any): view is ActionItem {

src/appbar/appbar.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './appbar.ios'
1+
export * from './appbar.ios';

src/core/postinstall.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
require("@nativescript/hook")(__dirname).postinstall();
1+
require('@nativescript/hook')(__dirname).postinstall();

src/floatingactionbutton/floatingactionbutton-common.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ import { textProperty } from '@nativescript/core/ui/text-base';
55
export const imageSourceProperty = new Property<FloatingActionButtonBase, ImageSource>({ name: 'imageSource' });
66

77
export const srcProperty = new Property<FloatingActionButtonBase, any>({
8-
name: 'src',
8+
name: 'src'
99
});
1010

1111
export const sizeProperty = new Property<FloatingActionButtonBase, string>({
1212
name: 'size',
13-
affectsLayout: true,
13+
affectsLayout: true
1414
});
1515

1616
export const expandedProperty = new Property<FloatingActionButtonBase, boolean>({
1717
name: 'expanded',
18-
affectsLayout: true,
18+
affectsLayout: true
1919
});
2020

2121
@CSSType('MDFloatingActionButton')
@@ -33,15 +33,15 @@ export abstract class FloatingActionButtonBase extends Button {
3333
@cssProperty rippleColor: Color;
3434
@cssProperty dynamicElevationOffset: number;
3535

36-
public srcCompat: string;
3736
public fabSize: string;
3837
public fabCustomSize: number;
39-
public imageSource: ImageSource;
40-
public src: string | ImageSource;
41-
public isLoading: boolean;
4238
public size: 'mini' | 'auto' | 'normal';
4339
public expanded: boolean;
4440

41+
42+
public imageSource: ImageSource;
43+
public src: string | ImageSource;
44+
public isLoading: boolean;
4545
/**
4646
* @internal //copied from image common
4747
*/

0 commit comments

Comments
 (0)