Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

## [0.17.0](https://github.com/frontapp/front-ui-kit/compare/v0.16.1...v0.17.0) (2025-10-22)


### Features

* large plus icon ([#291](https://github.com/frontapp/front-ui-kit/issues/291)) ([cdf4ce3](https://github.com/frontapp/front-ui-kit/commit/cdf4ce381448bedff2d3cece4f1e91b9c8626b7a))
- large plus icon ([#291](https://github.com/frontapp/front-ui-kit/issues/291)) ([cdf4ce3](https://github.com/frontapp/front-ui-kit/commit/cdf4ce381448bedff2d3cece4f1e91b9c8626b7a))

## [0.16.1](https://github.com/frontapp/front-ui-kit/compare/v0.16.0...v0.16.1) (2025-10-21)

Expand Down
2 changes: 1 addition & 1 deletion src/elements/dropdown/dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
border-radius: 8px;
background: white;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
border: 1px solid ${greys.shade40};
border: 1px solid ${greys.shade20};
width: 100%;
overflow: auto;
${(p) => css`
Expand Down Expand Up @@ -170,7 +170,7 @@
() =>
React.Children.toArray(children).some((child) => {
if (!isValidElement(child) || !child.props) return false;
const childProps = child.props as Record<string, unknown>;

Check warning on line 173 in src/elements/dropdown/dropdown.tsx

View workflow job for this annotation

GitHub Actions / lint

Do not use any type assertions
return 'submenu' in childProps && Boolean(childProps.submenu);
}),
[children]
Expand Down
Loading