diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d1860c840..9365295f43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Temporarily remove static type references in `slotClassNames` to prevent circular dependency crashes @kuzhelov ([#1145](https://github.com/stardust-ui/react/pull/1145)) - Fix `EventListener` to not rerender on `listener` prop change @layershifter ([#1132](https://github.com/stardust-ui/react/pull/1132)) - Fix circular dependencies from inferior modules to `index` files @kuzhelov ([#1148](https://github.com/stardust-ui/react/pull/1148)) -- Fix Invalid DOM property `stop-color` in Teams theme icons @codepretty ([1157](https://github.com/stardust-ui/react/pull/1157)) +- Fix Invalid DOM property `stop-color` in Teams theme icons @codepretty ([#1157](https://github.com/stardust-ui/react/pull/1157)) +- Fix invalid import in `Alert` @mnajdova ([#1159](https://github.com/stardust-ui/react/pull/1159)) ### Features - Add predefined icon set for the usages in the `Input`, `Dropdown` and `AccordionTitle` components @mnajdova ([#1120](https://github.com/stardust-ui/react/pull/1120)) diff --git a/packages/react/src/components/Alert/Alert.tsx b/packages/react/src/components/Alert/Alert.tsx index b412c64938..6ce09ec713 100644 --- a/packages/react/src/components/Alert/Alert.tsx +++ b/packages/react/src/components/Alert/Alert.tsx @@ -10,7 +10,7 @@ import { childrenExist, rtlTextContainer, } from '../../lib' -import { RenderResultConfig } from 'src/lib/renderComponent' +import { RenderResultConfig } from '../../lib/renderComponent' import { alertBehavior } from '../../lib/accessibility' import { Accessibility } from '../../lib/accessibility/types' import { ReactProps, ShorthandValue } from '../../types' diff --git a/packages/react/src/themes/teams/components/Alert/alertVariables.ts b/packages/react/src/themes/teams/components/Alert/alertVariables.ts index 17dcac90de..b4e2c6affd 100644 --- a/packages/react/src/themes/teams/components/Alert/alertVariables.ts +++ b/packages/react/src/themes/teams/components/Alert/alertVariables.ts @@ -1,7 +1,7 @@ import { FontWeightProperty } from 'csstype' import { pxToRem } from '../../../../lib' -import { SiteVariablesPrepared } from 'src/themes/types' +import { SiteVariablesPrepared } from '../../../types' export interface AlertVariables { borderStyle: string