-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(argument): Update to use @argument
- Loading branch information
Showing
25 changed files
with
354 additions
and
243 deletions.
There are no files selected for viewing
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
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,9 +1,15 @@ | ||
import EmberTableBaseCell from './ember-table-base-cell'; | ||
import { property } from '../utils/class'; | ||
import { readOnly } from 'ember-decorators/object'; | ||
import { alias } from 'ember-decorators/object/computed'; | ||
import { className } from 'ember-decorators/component'; | ||
|
||
import layout from '../templates/components/ember-table-cell'; | ||
|
||
export default class EmberTableCell extends EmberTableBaseCell { | ||
@property layout = layout; | ||
@property classNameBindings = ['isFixed::et-td']; | ||
layout = layout; | ||
|
||
// We have to alias because the class name changes per base cell type | ||
@className('', 'et-td') | ||
@readOnly @alias('isFixed') _isFixed; | ||
|
||
} |
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
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
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
Oops, something went wrong.