-
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.
bump ember-test-selectors to v6 with fixed tests
- Loading branch information
Showing
14 changed files
with
83 additions
and
72 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
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
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,31 +1,31 @@ | ||
{{#each this.wrappedRowArray as |rowValue|}} | ||
{{#-ember-table-private/row-wrapper | ||
rowValue=rowValue | ||
columns=this.columns | ||
|
||
columnMetaCache=this.columnMetaCache | ||
rowMetaCache=this.rowMetaCache | ||
|
||
canSelect=this.canSelect | ||
rowSelectionMode=this.rowSelectionMode | ||
checkboxSelectionMode=this.checkboxSelectionMode | ||
|
||
rowsCount=this.wrappedRowArray.length | ||
|
||
as |api| | ||
}} | ||
{{#if (has-block)}} | ||
{{yield (hash | ||
rowValue=api.rowValue | ||
rowMeta=api.rowMeta | ||
cells=api.cells | ||
rowSelectionMode=api.rowSelectionMode | ||
rowsCount=api.rowsCount | ||
|
||
row=(component "ember-tr" api=api) | ||
)}} | ||
{{else}} | ||
{{ember-tr api=api}} | ||
{{/if}} | ||
{{/-ember-table-private/row-wrapper}} | ||
{{/each}} | ||
{{#each this.wrappedRowArray as |rowValue|}} | ||
{{#-ember-table-private/row-wrapper | ||
rowValue=rowValue | ||
columns=this.columns | ||
columnMetaCache=this.columnMetaCache | ||
rowMetaCache=this.rowMetaCache | ||
canSelect=this.canSelect | ||
rowSelectionMode=this.rowSelectionMode | ||
checkboxSelectionMode=this.checkboxSelectionMode | ||
rowsCount=this.wrappedRowArray.length | ||
as |api| | ||
}} | ||
{{#if (has-block)}} | ||
{{yield (hash | ||
rowValue=api.rowValue | ||
rowMeta=api.rowMeta | ||
cells=api.cells | ||
rowSelectionMode=api.rowSelectionMode | ||
rowsCount=api.rowsCount | ||
row=(component "ember-tr" api=api) | ||
)}} | ||
{{else}} | ||
{{ember-tr api=api}} | ||
{{/if}} | ||
{{/-ember-table-private/row-wrapper}} | ||
{{/each}} |
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,10 @@ | ||
{{#if (has-block)}} | ||
{{yield this.columnValue this.columnMeta this.rowMeta}} | ||
{{else}} | ||
{{this.columnValue.name}} | ||
|
||
{{ember-th/sort-indicator columnMeta=this.columnMeta}} | ||
|
||
{{ember-th/resize-handle columnMeta=this.columnMeta}} | ||
{{/if}} | ||
{{#if (has-block)}} | ||
{{yield this.columnValue this.columnMeta this.rowMeta}} | ||
{{else}} | ||
{{this.columnValue.name}} | ||
|
||
{{ember-th/sort-indicator columnMeta=this.columnMeta}} | ||
|
||
{{ember-th/resize-handle columnMeta=this.columnMeta}} | ||
{{/if}} |
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,13 +1,14 @@ | ||
{{#each this.wrappedRows as |api|}} | ||
{{#if (has-block)}} | ||
{{yield (hash | ||
cells=api.cells | ||
isHeader=api.isHeader | ||
rowsCount=api.rowsCount | ||
|
||
row=(component "ember-tr" api=api) | ||
)}} | ||
{{else}} | ||
{{ember-tr api=api}} | ||
{{/if}} | ||
{{/each}} | ||
{{#each this.wrappedRows as |api|}} | ||
{{#if (has-block)}} | ||
{{yield (hash | ||
cells=api.cells | ||
isHeader=api.isHeader | ||
rowsCount=api.rowsCount | ||
|
||
row=(component "ember-tr" api=api) | ||
)}} | ||
{{else}} | ||
{{ember-tr api=api}} | ||
{{/if}} | ||
{{/each}} |
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
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