Skip to content

Commit

Permalink
SelectItem case sensitive import (#2945)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored May 30, 2022
1 parent 92536f8 commit aaa589a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/lib/cascadeselect/CascadeSelect.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import { CSSTransitionProps } from '../csstransition';
import { SelectItemOptionsType } from '../selectitem/SelectItem';
import { SelectItemOptionsType } from '../selectitem/selectitem';

type CascadeSelectItemTemplateType = React.ReactNode | ((option: any) => React.ReactNode);

Expand Down
2 changes: 1 addition & 1 deletion components/lib/listbox/ListBox.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import { SelectItemOptionsType } from '../selectitem/SelectItem';
import { SelectItemOptionsType } from '../selectitem/selectitem';
import TooltipOptions from '../tooltip/tooltipoptions';
import { VirtualScrollerProps } from '../virtualscroller';

Expand Down
2 changes: 1 addition & 1 deletion components/lib/multiselect/MultiSelect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import TooltipOptions from '../tooltip/tooltipoptions';
import { CSSTransitionProps } from '../csstransition';
import { IconType } from '../utils';
import { VirtualScrollerProps } from '../virtualscroller';
import { SelectItemOptionsType } from '../selectitem/SelectItem';
import { SelectItemOptionsType } from '../selectitem/selectitem';

type MultiSelectOptionGroupTemplateType = React.ReactNode | ((option: any, index: number) => React.ReactNode);

Expand Down
2 changes: 1 addition & 1 deletion components/lib/selectbutton/SelectButton.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import TooltipOptions from '../tooltip/tooltipoptions';
import { SelectItemOptionsType } from '../selectitem/SelectItem';
import { SelectItemOptionsType } from '../selectitem/selectitem';

type SelectButtonOptionDisabledType = string | ((option: any) => boolean);

Expand Down

0 comments on commit aaa589a

Please sign in to comment.