update packages

This commit is contained in:
abearxiong 2025-03-26 01:25:28 +08:00
parent cbef0943de
commit c1247eba32
4 changed files with 382 additions and 417 deletions

1
.npmrc
View File

@ -1,3 +1,2 @@
//npm.xiongxiao.me/:_authToken=${ME_NPM_TOKEN}
@abearxiong:registry=https://npm.pkg.github.com
//registry.npmjs.org/:_authToken=${NPM_TOKEN}

View File

@ -19,16 +19,15 @@
"author": "abearxiong <xiongxiao@xiongxiao.me>",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@ant-design/icons": "^6.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@kevisual/cache": "^0.0.1",
"@kevisual/query": "0.0.9-alpha.2",
"@kevisual/query": "0.0.15",
"@kevisual/router": "0.0.9",
"@kevisual/system-lib": "0.0.21-beta.3",
"@kevisual/system-lib": "0.0.21",
"@kevisual/system-ui": "^0.0.3",
"@kevisual/ui": "^0.0.4-alpha-1",
"@mui/material": "^6.4.6",
"@mui/material": "^6.4.8",
"@tiptap/core": "^2.11.5",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-document": "^2.11.5",
@ -53,40 +52,40 @@
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"lowlight": "^3.3.0",
"lucide-react": "^0.477.0",
"lucide-react": "^0.484.0",
"marked": "^15.0.7",
"nanoid": "^5.1.2",
"nanoid": "^5.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-draggable": "^4.4.6",
"react-resizable": "^3.0.5",
"react-resizable-panels": "^2.1.7",
"react-router": "^7.2.0",
"react-router-dom": "^7.2.0",
"react-router": "^7.4.0",
"react-router-dom": "^7.4.0",
"react-toastify": "^11.0.5",
"tiptap-markdown": "^0.8.10",
"turndown": "^7.2.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@eslint/js": "^9.23.0",
"@kevisual/types": "^0.0.6",
"@tailwindcss/vite": "^4.0.9",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@tailwindcss/vite": "^4.0.16",
"@types/node": "^22.13.13",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/react-resizable": "^3.0.8",
"@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint": "^9.23.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.9",
"tailwindcss": "^4.0.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.0"
"typescript-eslint": "^8.28.0",
"vite": "^6.2.3"
}
}

740
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,25 +0,0 @@
import { Panel, PanelGroup, PanelResizeHandle } from 'react-resizable-panels';
import clsx from 'clsx';
import { useRef } from 'react';
export const SplitPanel = (porps: any) => {
const { direction, headerHeight, showHeader, chatBoxHeight, showChatBox, bodyHeight, showFooter, footerClassName, className } = porps;
const editorRef = useRef<HTMLDivElement>(null);
return (
<PanelGroup autoSaveId='example' direction={direction} className='w-full h-full editor-container relative'>
<Panel minSize={10} defaultSize={headerHeight} className={clsx('editor-header h-10', showHeader ? 'block' : 'hidden')}>
<div className='w-full h-full'>{/* editor-header */}</div>
</Panel>
<PanelResizeHandle className={clsx('editor-resize-handle border-gray-300 border-1', showHeader ? 'block' : 'hidden')} />
<Panel minSize={10} defaultSize={chatBoxHeight} className={clsx('editor-chat-box h-66', showChatBox ? 'block' : 'hidden')}>
<div className='w-full h-full'>{/* editor-chat-box */}</div>
</Panel>
<PanelResizeHandle className={clsx('editor-resize-handle border-gray-300 border-1', showChatBox ? 'block' : 'hidden')} />
<Panel minSize={10} defaultSize={bodyHeight}>
<div ref={editorRef} className={clsx('w-full h-full node-editor', className)}></div>
</Panel>
<Panel className={clsx('editor-footer h-10', showFooter ? 'block' : 'hidden', footerClassName)}>
<div className='w-full h-full'>{/* editor-footer */}</div>
</Panel>
</PanelGroup>
);
};