-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply ember-no-implicit-this-codemod
Apply ember-no-implicit-this-codemod. This joins a multi-line element onto a single line if it is not prettier-folded (1 arg per line), so apply prettier to these to re-fold them. It also converts single- to double-quote, so revert those changes. Use yapplabs version of package ember-radio-button. Remove package ember-raf-scheduler, which is not updated for Ember v4. utils/draw/axisBrush.js : comment out use of ember-raf-scheduler. axisScaleChangedRaf() : call fn directly instead of via scheduler.
- Loading branch information
1 parent
aebbd64
commit 8aab55d
Showing
107 changed files
with
1,532 additions
and
963 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{{#each subComponents as |subComponent|}} | ||
{{component subComponent data=data tableData=tableData axis=axis}} | ||
{{#each this.subComponents as |subComponent|}} | ||
{{component subComponent data=this.data tableData=this.tableData axis=this.axis}} | ||
{{/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,24 +1,24 @@ | ||
<span id='axis-charts-span'>Axis-Charts</span> | ||
{{#each blockViews as |chartBlock|}} | ||
{{draw/block-view axis=axis axisID=axisID block=chartBlock blocksData=blocksData}} | ||
{{#each this.blockViews as |chartBlock|}} | ||
{{draw/block-view axis=this.axis axisID=this.axisID block=chartBlock blocksData=this.blocksData}} | ||
{{/each}} | ||
|
||
{{#if blocks}} | ||
Blocks {{blocks.length}} {{chartsArray.length}} | ||
{{#each chartsArray as |chart|}} | ||
{{axis-chart axis=axis axisID=axisID blocks=blocks blocksData=blocksData axisCharts=this chart=chart }} | ||
{{#if this.blocks}} | ||
Blocks {{this.blocks.length}} {{this.chartsArray.length}} | ||
{{#each this.chartsArray as |chart|}} | ||
{{axis-chart axis=this.axis axisID=this.axisID blocks=this.blocks blocksData=this.blocksData axisCharts=this chart=chart }} | ||
{{/each}} | ||
{{ resizeEffectHere }} | ||
{{ drawContentEffect }} | ||
{{ this.resizeEffectHere }} | ||
{{ this.drawContentEffect }} | ||
|
||
{{else}} | ||
<div class="Chart"> | ||
{{content-editable | ||
value=selection | ||
value=this.selection | ||
placeholder="Paste Chart Here" | ||
class="chart pasteData" | ||
type="text"}} | ||
|
||
</div> | ||
{{/if}} | ||
{{toggleChartTypeEffect}} | ||
{{this.toggleChartTypeEffect}} |
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,7 +1,12 @@ | ||
|
||
{{#data-table data=tableData selectionMode='multiple' | ||
selectionChanged=(action 'selectionChanged') classNames=tableClassNames as |t|}} | ||
{{#data-table | ||
data=this.tableData | ||
selectionMode='multiple' | ||
selectionChanged=(action "selectionChanged") | ||
classNames=this.tableClassNames | ||
as |t| | ||
}} | ||
{{t.selectionColumn}} | ||
{{t.column propertyName='feature' name='Feature'}} | ||
{{t.column propertyName='position' name='Position'}} | ||
{{/data-table}} | ||
{{/data-table}} |
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.