-
-
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.
update paper-content to "pseudo-octane"
- Loading branch information
1 parent
27b24d4
commit be0ff0d
Showing
4 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* @module ember-paper | ||
*/ | ||
import Component from '@ember/component'; | ||
import { tagName, layout } from '@ember-decorators/component'; | ||
import template from './template'; | ||
|
||
/** | ||
* @class PaperContent | ||
* @extends Component | ||
*/ | ||
@tagName('') | ||
@layout(template) | ||
class PaperContent extends Component {} | ||
|
||
export default PaperContent; |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<md-content | ||
class="md-default-theme {{if @padding "md-padding"}}" | ||
md-scroll-y={{@scroll-y}} | ||
...attributes> | ||
{{yield}} | ||
</md-content> |
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,3 +1 @@ | ||
import PaperContent from 'ember-paper/components/paper-content'; | ||
|
||
export default PaperContent; | ||
export { default } from 'ember-paper/components/paper-content/component'; |