From 7e0f99b488eded0b426327e51ef3ae533194462d Mon Sep 17 00:00:00 2001 From: Kenneth Date: Mon, 15 Sep 2025 20:34:45 +0700 Subject: [PATCH 1/3] fix: fix z-index DashboardTemplateHeader --- src/templates/DashboardTemplate/Header/styles.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/templates/DashboardTemplate/Header/styles.tsx b/src/templates/DashboardTemplate/Header/styles.tsx index 6ffd760..cbdaebd 100644 --- a/src/templates/DashboardTemplate/Header/styles.tsx +++ b/src/templates/DashboardTemplate/Header/styles.tsx @@ -13,11 +13,13 @@ export const DashboardTemplateHeaderStyles = styled(Layout.Header, { ), })>` ${({ fixedOnScroll }) => { - return fixedOnScroll && + return ( + fixedOnScroll && css` position: sticky; top: 0; - z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase') ?? 1050}; - `; + z-index: ${getAliasToken('DashboardTemplate', 'zIndexBase')}; + ` + ); }} `; From c1d15d709b68e0064d3bf5ed37d17aa7162d8be9 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Tue, 16 Sep 2025 13:26:44 +0700 Subject: [PATCH 2/3] fix: fix export Result component --- src/molecules/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/molecules/index.ts b/src/molecules/index.ts index 970dbfe..63f7a60 100644 --- a/src/molecules/index.ts +++ b/src/molecules/index.ts @@ -31,6 +31,7 @@ export * from './Pagination'; export * from './Popconfirm'; export * from './Popover'; export * from './Radio'; +export * from './Result'; export * from './Select'; export * from './Skeleton'; export * from './Slider'; From 7abeaa0fb9a4a14bd8439b59c8c3ccb2a2c45287 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Tue, 16 Sep 2025 22:10:46 +0700 Subject: [PATCH 3/3] build: update CHANGELOG --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b50d093..e03b208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.7] + +### Refactor + +- Improve package.json. + +## [1.6.6] + +### Fixed + +- Fix bug get Form instance in `Form.ItemControl` component. + +## [1.6.5] + +### Fixed + +- Improve DashboardTemplate component part 2. + ## [1.6.4] ### Fixed