Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.27 KB

v2.4.0.mdx

File metadata and controls

53 lines (41 loc) · 1.27 KB
title description releaseUrl releaseDate version
Version 2.4.0
Explore the changelog for Chakra UI version 2.4.0. Learn about the latest features, bug fixes, and improvements.
November 14, 2022
2.4.0

All packages

Fix issue where using @chakra-ui/react or any sub-package in a TypeScript project with "type": "module" in package.json and "moduleResolution": "Node16" in tsconfig.json cannot find the types.

Introduced new Card component

export function Basic() {
  return (
    <Card>
      <CardHeader>
        <Heading size="md"> Customer dashboard</Heading>
      </CardHeader>
      <CardBody>
        <Text>View a summary of all your customers over the last month.</Text>
      </CardBody>
      <CardFooter>
        <Button>View here</Button>
      </CardFooter>
    </Card>
  )
}

Remove Dict type dependency from createStyleContext

Fixed issue where dynamically changing a tooltip's isDisabled when it is open didn't have any effect.

Now, changing the isDisabled prop will close the tooltip leading to a more consistent behavior.

Refactor theme to use CSS variables