Merge pull request #577 from alibaba/dependabot/npm_and_yarn/development-dependencies-333bd1d898
chore(deps-dev): bump the development-dependencies group with 16 updates
This commit is contained in:
Generated
+482
-469
File diff suppressed because it is too large
Load Diff
+10
-10
@@ -43,28 +43,28 @@
|
||||
"prepare": "husky || true"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^21.0.1",
|
||||
"@commitlint/cli": "^21.1.0",
|
||||
"@commitlint/config-conventional": "^21.0.1",
|
||||
"@eslint-react/eslint-plugin": "^5.9.2",
|
||||
"@eslint-react/eslint-plugin": "^5.10.0",
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@microsoft/api-extractor": "^7.58.9",
|
||||
"@tailwindcss/vite": "^4.3.1",
|
||||
"@tailwindcss/vite": "^4.3.2",
|
||||
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
||||
"@types/node": "^26.0.0",
|
||||
"@vitejs/plugin-react": "^6.0.2",
|
||||
"@types/node": "^26.0.1",
|
||||
"@vitejs/plugin-react": "^6.0.3",
|
||||
"chalk": "^5.6.2",
|
||||
"concurrently": "^10.0.3",
|
||||
"dotenv": "^17.4.2",
|
||||
"eslint": "^10.5.0",
|
||||
"eslint": "^10.6.0",
|
||||
"globals": "^17.7.0",
|
||||
"happy-dom": "^20.10.6",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^17.0.8",
|
||||
"prettier": "^3.8.4",
|
||||
"prettier": "^3.9.3",
|
||||
"typescript": "^6.0.3",
|
||||
"typescript-eslint": "^8.62.0",
|
||||
"unplugin-dts": "^1.0.1",
|
||||
"vite": "^8.0.14",
|
||||
"typescript-eslint": "^8.62.1",
|
||||
"unplugin-dts": "^1.0.3",
|
||||
"vite": "^8.1.0",
|
||||
"vite-plugin-css-injected-by-js": "^5.0.1",
|
||||
"vitest": "^4.1.9"
|
||||
},
|
||||
|
||||
@@ -255,11 +255,7 @@ export interface AgentErrorEvent {
|
||||
* Union type for all history events
|
||||
*/
|
||||
export type HistoricalEvent =
|
||||
| AgentStepEvent
|
||||
| ObservationEvent
|
||||
| UserTakeoverEvent
|
||||
| RetryEvent
|
||||
| AgentErrorEvent
|
||||
AgentStepEvent | ObservationEvent | UserTakeoverEvent | RetryEvent | AgentErrorEvent
|
||||
|
||||
/**
|
||||
* Agent lifecycle status.
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"@radix-ui/react-separator": "^1.1.10",
|
||||
"@radix-ui/react-slot": "^1.3.0",
|
||||
"@radix-ui/react-switch": "^1.3.1",
|
||||
"@tailwindcss/vite": "^4.3.1",
|
||||
"@tailwindcss/vite": "^4.3.2",
|
||||
"@types/chrome": "^0.2.0",
|
||||
"@types/react": "^19.2.17",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
@@ -24,18 +24,18 @@
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"idb": "^8.0.3",
|
||||
"lucide-react": "^1.21.0",
|
||||
"motion": "^12.40.0",
|
||||
"lucide-react": "^1.22.0",
|
||||
"motion": "^12.42.0",
|
||||
"next-themes": "^0.4.6",
|
||||
"react": "^19.2.6",
|
||||
"react-dom": "^19.2.6",
|
||||
"rough-notation": "^0.5.1",
|
||||
"simple-icons": "^16.24.0",
|
||||
"simple-icons": "^16.24.1",
|
||||
"sonner": "^2.0.7",
|
||||
"tailwind-merge": "^3.6.0",
|
||||
"tailwindcss": "^4.3.0",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"wxt": "^0.20.26"
|
||||
"wxt": "^0.20.27"
|
||||
},
|
||||
"dependencies": {
|
||||
"@page-agent/core": "1.10.0",
|
||||
|
||||
@@ -598,14 +598,12 @@ export default (
|
||||
isAnyRectVisible = true
|
||||
|
||||
// Viewport check for this rect
|
||||
if (
|
||||
!(
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)
|
||||
) {
|
||||
if (!(
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)) {
|
||||
isAnyRectInViewport = true
|
||||
break // Found a visible rect in viewport, no need to check others
|
||||
}
|
||||
@@ -985,12 +983,10 @@ export default (
|
||||
rect.height > 0 &&
|
||||
!(
|
||||
// Only check non-empty rects
|
||||
(
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)
|
||||
) {
|
||||
isAnyRectInViewport = true
|
||||
@@ -1103,14 +1099,12 @@ export default (
|
||||
for (const rect of rects) {
|
||||
if (rect.width === 0 || rect.height === 0) continue // Skip empty rects
|
||||
|
||||
if (
|
||||
!(
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)
|
||||
) {
|
||||
if (!(
|
||||
rect.bottom < -viewportExpansion ||
|
||||
rect.top > window.innerHeight + viewportExpansion ||
|
||||
rect.right < -viewportExpansion ||
|
||||
rect.left > window.innerWidth + viewportExpansion
|
||||
)) {
|
||||
return true // Found at least one rect in the viewport
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"lucide-react": "^1.21.0",
|
||||
"motion": "^12.40.0",
|
||||
"lucide-react": "^1.22.0",
|
||||
"motion": "^12.42.0",
|
||||
"next-themes": "^0.4.6",
|
||||
"react": "^19.2.6",
|
||||
"react-dom": "^19.2.6",
|
||||
"rough-notation": "^0.5.1",
|
||||
"simple-icons": "^16.24.0",
|
||||
"simple-icons": "^16.24.1",
|
||||
"sonner": "^2.0.7",
|
||||
"tailwind-merge": "^3.6.0",
|
||||
"tailwindcss": "^4.3.0",
|
||||
|
||||
Reference in New Issue
Block a user