-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1252 from miguelcobain/colocated
run ember-component-template-colocation-migrator
- Loading branch information
Showing
82 changed files
with
655 additions
and
537 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-header-text'; | ||
|
||
/** | ||
* @class PaperCardheaderText | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card-header-text' | ||
tagName: 'md-card-header-text', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-header'; | ||
|
||
/** | ||
* @class PaperCardHeader | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card-header' | ||
tagName: 'md-card-header', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
/* eslint-disable ember/no-classic-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-media'; | ||
|
||
/** | ||
* @class PaperCardMedia | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: '', | ||
size: 'md' | ||
size: 'md', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-title-media'; | ||
|
||
/** | ||
* @class PaperCardTitleMedia | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card-title-media', | ||
size: 'md' | ||
size: 'md', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-title-text'; | ||
|
||
/** | ||
* @class PaperCardTitleText | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card-title-text' | ||
tagName: 'md-card-title-text', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card-title'; | ||
|
||
/** | ||
* @class PaperCardTitle | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card-title' | ||
tagName: 'md-card-title', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */ | ||
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
|
||
import layout from '../templates/components/paper-card'; | ||
|
||
/** | ||
* @class PaperCard | ||
* @extends Ember.Component | ||
*/ | ||
export default Component.extend({ | ||
layout, | ||
tagName: 'md-card' | ||
tagName: 'md-card', | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.