feat: instances on worker

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 949eded4ee
commit 43936e21d9
21 changed files with 589 additions and 184 deletions
+2 -1
View File
@@ -3,7 +3,7 @@ import { CloseOutlined } from '@ant-design/icons';
import { Button, Drawer, type DrawerProps } from 'antd';
const ScrollerModal = (props: DrawerProps) => {
const { title, closable = true, ...restProps } = props;
const { title, closable = true, maskClosable = false, ...restProps } = props;
const { EscHint } = useEscHint({
enabled: !props.keyboard && props.open
});
@@ -15,6 +15,7 @@ const ScrollerModal = (props: DrawerProps) => {
<Drawer
{...restProps}
closable={false}
maskClosable={maskClosable}
title={
<div className="flex-between flex-center">
<span