Release Notes
Welcome to the latest release of Keep React! This version brings several improvements and updates to our components while maintaining the familiar UI look and feel.
Alert
The Alert component structure has been updated for better consistency. Here are the changes:
- Alert.Container is now AlertContainer
- Alert.Body is now AlertBody
- Alert.Dismiss is now AlertDismiss
- Alert.Link is now AlertLink
- Alert.Icon is now AlertIcon
- Alert.Title is now AlertTitle
- Alert.Description is now AlertDescription
<Alert color="primary">
<AlertContainer>
<AlertIcon />
<AlertTitle>...</AlertTitle>
<AlertDescription>...</AlertDescription>
</AlertContainer>
<AlertLink href="/">...</AlertLink>
<AlertDismiss />
</Alert>
Carousel
We have revamped the Carousel component structure. Here are the changes:
- Carousel.Control is now CarouselControl
- Carousel.Buttons is now CarouselButtons
- Carousel.Item is now CarouselItem
- Carousel.Slides is now CarouselSlides
- Carousel.Indicators is now CarouselIndicators
- Carousel.PrevButton is now CarouselPrevButton
- Carousel.NextButton is now CarouselNextButton
<Carousel>
<CarouselSlides>
<CarouselItem>...</CarouselItem>
<CarouselItem>...</CarouselItem>
<CarouselItem>...</CarouselItem>
</CarouselSlides>
<CarouselControl>
<CarouselButtons>
<CarouselPrevButton />
<CarouselNextButton />
</CarouselButtons>
<CarouselIndicators />
</CarouselControl>
</Carousel>
Card, Modal, Accordion, and More
Similarly, other components like Card, Modal, Accordion, and many more have undergone structural updates for consistency and clarity.
Updated Component List
- Accordion
- Alert
- Avatar
- Breadcrumb
- ButtonGroup
- Card
- Carousel
- Drawer
- Dropdown
- Empty
- Input
- Modal
- Navbar
- Notification
- Number Input
- Pagination
- Popover
- Progress
- Rating
- Sidebar
- Skeleton
- Slider
- Steps
- Table
- Tabs
- Timeline
- Upload
Dark Mode
With the release of Keep React v.1.4.0, dark mode is now available for all components. Enhance your user interface with this sleek new feature and provide a better experience for users who prefer darker themes.
Next Js Server and Client Component
Starting from this version, you can now use Keep components in our Next.js server components without the need for the "use client" directive. Even though our components are still client-side components, they can seamlessly integrate with Next.js server components, offering greater flexibility in your project architecture.
Contributors
This release was made possible by: