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 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'; 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')}; + ` + ); }} `;