diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6c1f5cf6..d058de17 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+### [5.0.6-0](https://github.com/starwit/react-image-annotate/compare/5.0.5...5.0.6-0) (2024-03-27)
+
### [5.0.5](https://github.com/starwit/react-image-annotate/compare/5.0.4...5.0.5) (2024-03-21)
### [5.0.4](https://github.com/starwit/react-image-annotate/compare/5.0.2-1...5.0.4) (2024-03-20)
diff --git a/package-lock.json b/package-lock.json
index a2fcf2ec..64482afc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@starwit/react-image-annotate",
- "version": "5.0.5",
+ "version": "5.0.6-0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@starwit/react-image-annotate",
- "version": "5.0.5",
+ "version": "5.0.6-0",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
diff --git a/package.json b/package.json
index 16bc5a85..5f06c5c8 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@starwit/react-image-annotate",
- "version": "5.0.5",
+ "version": "5.0.6-0",
"private": false,
"type": "module",
"files": [
diff --git a/src/ClassSelectionMenu/index.jsx b/src/ClassSelectionMenu/index.jsx
index 4c432331..218efb91 100644
--- a/src/ClassSelectionMenu/index.jsx
+++ b/src/ClassSelectionMenu/index.jsx
@@ -80,6 +80,7 @@ export const ClassSelectionMenu = ({
subTitle=""
icon={}
expandedByDefault
+ noScroll={true}
>
{regionClsList.map((label, index) => (
({
@@ -24,28 +24,29 @@ const EmptyTextDiv = styled('div')(() => ({
padding: 20,
}))
-const listItemTextStyle = {paddingLeft: 16}
+const listItemTextStyle = { paddingLeft: 16 }
export const HistorySidebarBox = ({
history,
onRestoreHistory,
}) => {
- const {t} = useTranslation();
+ const { t } = useTranslation();
return (
}
+ icon={}
expandedByDefault
+ noScroll={true}
>
{history.length === 0 && (
{t("no.history")}
)}
- {history.map(({name, time}, i) => (
-
+ {history.map(({ name, time }, i) => (
+
}
expandedByDefault
+ noScroll={true}
>
diff --git a/src/SidebarBoxContainer/index.jsx b/src/SidebarBoxContainer/index.jsx
index 99f6366b..165414a0 100644
--- a/src/SidebarBoxContainer/index.jsx
+++ b/src/SidebarBoxContainer/index.jsx
@@ -10,12 +10,12 @@ export const SidebarBoxContainer = ({
title,
subTitle,
children,
- noScroll = false,
+ noScroll,
expandedByDefault = false,
}) => {
return (
-
+
{children}
diff --git a/src/workspace/SidebarBox/index.jsx b/src/workspace/SidebarBox/index.jsx
index 6dc14242..cfd0de67 100644
--- a/src/workspace/SidebarBox/index.jsx
+++ b/src/workspace/SidebarBox/index.jsx
@@ -1,7 +1,6 @@
// @flow
import React, { useState, memo, useCallback } from "react"
-import Paper from "@mui/material/Paper"
import { createTheme, styled, ThemeProvider } from "@mui/material/styles"
import ExpandIcon from "@mui/icons-material/ExpandMore"
import IconButton from "@mui/material/IconButton"
@@ -37,7 +36,7 @@ export const SidebarBox = ({
title,
subTitle,
children,
- noScroll = false,
+ noScroll,
expandedByDefault,
}) => {
const content = (
@@ -88,7 +87,7 @@ export const SidebarBox = ({
{content}
diff --git a/src/workspace/SidebarBox/styles.js b/src/workspace/SidebarBox/styles.js
index 8802bb44..97e27d76 100644
--- a/src/workspace/SidebarBox/styles.js
+++ b/src/workspace/SidebarBox/styles.js
@@ -50,9 +50,5 @@ export default {
expandedContent: {
maxHeight: 300,
overflowY: "auto",
- "&.noScroll": {
- overflowY: "visible",
- overflow: "visible",
- },
},
}
\ No newline at end of file