-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* build, dist test, spell check dictionary * locale, strings for metric graphCards * chart, Elements, Helpers, Legend, x, y axis label props * chartAxisLabel, allow html for victory charts * chartTooltip, dynamic padding for boundary * config, routes, rhosak product * dateHelpers, isCurrent for rangedMonthly, timestamp formats * graphCard, CardChart deprecated, original components * graphCard, CardChart refactor hooks, tally refactor, metrics * graphCardChartLegend, multiselector hook * graphCardChartTitleTooltip, move out of productView * graphCardChartTooltip, numbro formatting for floats * graphCardContext, settings, hooks for redux action, selectors * graphCardHelpers, chartSettings, numbro formatting * graphCardMetric, Metrics, standalone and combined graph cards * graphCardMetricTotals, card wrapper to display totals * loader, pass skeleton sizes * productView, Openshift, deprecated vs rhosak graph card * redux, graphReducer legend adjustment * styling, graphCard adjustments for standalone metrics
- Loading branch information
Showing
77 changed files
with
3,690 additions
and
1,079 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
"dismissable", | ||
"fadein", | ||
"flyout", | ||
"gibibyte", | ||
"gibibytes", | ||
"generatedid", | ||
"HHmmss", | ||
|
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
55 changes: 55 additions & 0 deletions
55
src/components/chart/__tests__/__snapshots__/chartAxisLabel.test.js.snap
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,55 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`ChartAxisLabel Component should handle an undefined coordinate: undefined y 1`] = ` | ||
<g> | ||
<foreignObject | ||
height="100%" | ||
width="100%" | ||
x={0} | ||
y={0} | ||
> | ||
<div | ||
className="curiosity-chartarea__axis-label-container curiosity-chartarea__axis-label-container-y curiosity-chartarea__axis-label-container-y-1" | ||
style={ | ||
Object { | ||
"top": "0px", | ||
} | ||
} | ||
xmlns="http://www.w3.org/1999/xhtml" | ||
> | ||
<div | ||
className="curiosity-chartarea__axis-label-container-content" | ||
> | ||
lorem ipsum | ||
</div> | ||
</div> | ||
</foreignObject> | ||
</g> | ||
`; | ||
|
||
exports[`ChartAxisLabel Component should return a basic component: basic 1`] = ` | ||
<g> | ||
<foreignObject | ||
height="100%" | ||
width="100%" | ||
x={0} | ||
y={0} | ||
> | ||
<div | ||
className="curiosity-chartarea__axis-label-container curiosity-chartarea__axis-label-container-y curiosity-chartarea__axis-label-container-y-0" | ||
style={ | ||
Object { | ||
"top": "3px", | ||
} | ||
} | ||
xmlns="http://www.w3.org/1999/xhtml" | ||
> | ||
<div | ||
className="curiosity-chartarea__axis-label-container-content" | ||
> | ||
hello world | ||
</div> | ||
</div> | ||
</foreignObject> | ||
</g> | ||
`; |
Oops, something went wrong.