Skip to content

Commit

Permalink
fix(): corrected some components based on stencil updates. Also moved…
Browse files Browse the repository at this point in the history
… style based linting to top level directory.
  • Loading branch information
jthoms1 committed Jun 28, 2017
1 parent c94a1b7 commit f511aec
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 42 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/core-hn-demo/stencil.config.js
Expand Up @@ -5,6 +5,6 @@ exports.config = {
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
],
collections: [
'@ionic/core'
'@ionic/core',
]
};
Expand Up @@ -4,7 +4,7 @@ import { GlobalNamespace, LoadingEvent, LoadingOptions, Loading, IonicController

@Component({
tag: 'ion-loading-controller',
styleUrls: 'loading-controller.scss'
styleUrl: 'loading-controller.scss'
})
export class LoadingController implements IonicControllerApi {
private ids = 0;
Expand Down
Expand Up @@ -4,7 +4,7 @@ import { GlobalNamespace, ModalEvent, ModalOptions, Modal, IonicControllerApi }

@Component({
tag: 'ion-modal-controller',
styleUrls: 'modal-controller.scss'
styleUrl: 'modal-controller.scss'
})
export class ModalController implements IonicControllerApi {
private ids = 0;
Expand Down
Expand Up @@ -3,7 +3,7 @@ import { Component, h, Prop } from '@stencil/core';

@Component({
tag: 'ion-skeleton-text',
styleUrls: 'skeleton-text.scss'
styleUrl: 'skeleton-text.scss'
})
export class SkeletonText {
@Prop() width: string = '100%';
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/slides/slide.tsx
Expand Up @@ -14,7 +14,7 @@ import { Component, h, VNodeData } from '@stencil/core';
*/
@Component({
tag: 'ion-slide',
styleUrls: 'slide.scss'
styleUrl: 'slide.scss'
})
export class Slide {
hostData(): VNodeData {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/slides/slides.tsx
Expand Up @@ -24,7 +24,7 @@ import { Swiper } from '../../vendor/swiper';

@Component({
tag: 'ion-slides',
styleUrls: 'slides.scss'
styleUrl: 'slides.scss'
})
export class Slides {
swiper: any;
Expand Down
36 changes: 0 additions & 36 deletions packages/ionic-angular/src/components/badge/badge.ios.scss

This file was deleted.

0 comments on commit f511aec

Please sign in to comment.