Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase graphic container width to show bigger numbers #1466

Merged
merged 2 commits into from
Jul 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 37 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"svelte-loader": "3.1.2"
},
"dependencies": {
"d3-array": "^3.0.1",
Iinh marked this conversation as resolved.
Show resolved Hide resolved
"d3-format": "2.0.0",
"d3-scale": "4.0.0",
"d3-scale-chromatic": "3.0.0",
Expand Down
3 changes: 1 addition & 2 deletions src/components/explore/AggregationComparisonGraph.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<script>
import { Axis } from '@graph-paper/guides';

import { DataGraphic } from '@graph-paper/datagraphic';

import { tooltip as tooltipAction } from '@graph-paper/core/actions';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';
Iinh marked this conversation as resolved.
Show resolved Hide resolved

import ReferenceSymbol from '../ReferenceSymbol.svelte';

Expand Down
3 changes: 2 additions & 1 deletion src/components/explore/AggregationsOverTimeGraph.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
import { fly } from 'svelte/transition';
import { cubicOut as easing } from 'svelte/easing';

import { DataGraphic } from '@graph-paper/datagraphic';
import { Axis } from '@graph-paper/guides';
import { Line } from '@graph-paper/elements';

import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

import Tweenable from '../Tweenable.svelte';
import Springable from '../Springable.svelte';

Expand Down
2 changes: 1 addition & 1 deletion src/components/explore/ClientVolumeOverTimeGraph.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script>
import { DataGraphic } from '@graph-paper/datagraphic';
import { Axis } from '@graph-paper/guides';
import { Line } from '@graph-paper/elements';

import Tweenable from '../Tweenable.svelte';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

import FirefoxReleaseVersionMarkers from '../FirefoxReleaseVersionMarkers.svelte';

Expand Down
2 changes: 1 addition & 1 deletion src/components/explore/CompareClientVolumeGraph.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script>
import { DataGraphic } from '@graph-paper/datagraphic';
import { tooltip as tooltipAction } from '@graph-paper/core/actions/tooltip';

import { Axis } from '@graph-paper/guides';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

import Tweenable from '../Tweenable.svelte';
import ChartTitle from './ChartTitle.svelte';
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/Proportion.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script>
import { onMount } from 'svelte';
import { fade } from 'svelte/transition';
import { DataGraphic } from '@graph-paper/datagraphic';
import { Axis } from '@graph-paper/guides';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

import { createCatColorMap } from '../../utils/color-maps';

Expand Down
2 changes: 1 addition & 1 deletion src/components/home/Quantile.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script>
import { onMount } from 'svelte';
import { fade } from 'svelte/transition';
import { DataGraphic } from '@graph-paper/datagraphic';
import { Axis } from '@graph-paper/guides';
import Violin from './Violin.svelte';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

import { formatCount, formatPercentDecimal } from '../../utils/formatters';

Expand Down
2 changes: 1 addition & 1 deletion src/components/table/ProportionSM.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
import { tweened } from 'svelte/motion';
import { cubicOut as easing } from 'svelte/easing';
import { DataGraphic } from '@graph-paper/datagraphic';
import DataGraphic from '../../graph-paper/datagraphic/DataGraphic.svelte';

export let value;
export let hovered = false;
Expand Down
Loading