Skip to content

Commit

Permalink
fix(select): lowercase Select to select
Browse files Browse the repository at this point in the history
  • Loading branch information
pearmini committed Dec 5, 2022
1 parent 56150ed commit f354043
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/transform/sample.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { max } from 'd3-array';
import { TransformComponent as TC, G2Mark, Primitive } from '../runtime';
import { TransformComponent as TC, Primitive } from '../runtime';
import { SampleTransform } from '../spec';
import { createGroups } from './utils/order';
import { GroupN } from './groupN';
Expand Down
2 changes: 1 addition & 1 deletion src/transform/selectX.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TransformComponent as TC } from '../runtime';
import { SelectXTransform } from '../spec';
import { Select } from './Select';
import { Select } from './select';

export type SelectXOptions = Omit<SelectXTransform, 'type'>;

Expand Down
2 changes: 1 addition & 1 deletion src/transform/selectY.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TransformComponent as TC } from '../runtime';
import { SelectYTransform } from '../spec';
import { Select } from './Select';
import { Select } from './select';

export type SelectYOptions = Omit<SelectYTransform, 'type'>;

Expand Down

0 comments on commit f354043

Please sign in to comment.