Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/select #307

Merged
merged 2 commits into from
Jun 19, 2024
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
7 changes: 7 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @parte-ds/web

## 0.1.104

### Patch Changes

- Updated dependencies
- @parte-ds/[email protected]

## 0.1.103

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parte-ds/web",
"version": "0.1.103",
"version": "0.1.104",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
6 changes: 6 additions & 0 deletions packages/parte-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @parte-ds/ui

## 1.22.7

### Patch Changes

- 🩹 Select menuPortal 스타일 수정 가능하도록 수정

## 1.22.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/parte-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parte-ds/ui",
"version": "1.22.6",
"version": "1.22.7",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
6 changes: 5 additions & 1 deletion packages/parte-ui/src/Select/useSelectStyle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { GroupBase, StylesConfig } from "react-select";
const useSelectStyle = <
T,
K extends boolean,
G extends GroupBase<T> = GroupBase<T>
G extends GroupBase<T> = GroupBase<T>,
>({
isError,
customStyles,
Expand Down Expand Up @@ -354,6 +354,10 @@ const useSelectStyle = <
...(props.isDisabled ? { color: theme.colors.N600 } : {}),
...customStyles?.dropdownIndicator?.(css, props),
}),
menuPortal: (css, props) => ({
...css,
...customStyles?.menuPortal?.(css, props),
}),
};
};

Expand Down
Loading