From d35230d070d2eedcfa6b1346fe6db91bb1ced891 Mon Sep 17 00:00:00 2001 From: Ruan23 Date: Mon, 30 May 2022 14:43:24 +1200 Subject: [PATCH] Update SelectItem import statement The actual file name when pulling from npm is "selectitem" and not "SelectItem", so when running builds on case sensitive OS, the build fails --- components/lib/dropdown/Dropdown.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/dropdown/Dropdown.d.ts b/components/lib/dropdown/Dropdown.d.ts index 0e7fe8d6a4..f04e1174a5 100755 --- a/components/lib/dropdown/Dropdown.d.ts +++ b/components/lib/dropdown/Dropdown.d.ts @@ -2,7 +2,7 @@ import * as React from 'react'; import TooltipOptions from '../tooltip/tooltipoptions'; import { CSSTransitionProps } from '../csstransition'; import { VirtualScrollerProps } from '../virtualscroller'; -import { SelectItemOptionsType } from '../selectitem/SelectItem'; +import { SelectItemOptionsType } from '../selectitem/selectitem'; type DropdownOptionGroupTemplateType = React.ReactNode | ((option: any, index: number) => React.ReactNode);