Skip to content
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
"react-dom": "*"
},
"dependencies": {
"@rc-component/overflow": "^1.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

@rc-component/overflow npm package version 1.0.0

💡 Result:

Do you mean the scoped name "@rc-component/overflow"? There is no published package under that exact scope — the package is published as "rc-overflow". According to npm/unpkg the package has versions starting at 1.0.1 (and later), while the jsDelivr CDN index also lists a 1.0.0 build. See:

  • jsDelivr version list (includes 1.0.0). [1]
  • npm / unpkg package info showing 1.0.1+. [2]

If you want I can fetch the tarball for a specific version or check the registry metadata for rc-overflow@1.0.0.


@rc-component/overflow 依赖版本不可用

依赖指定 "@rc-component/overflow": "^1.0.0" 存在问题:npm 注册表中该包从 1.0.1 开始发布,不存在 1.0.0 版本。应将版本更新为 "^1.0.1" 或更新的稳定版本以确保从 npm 正确安装。

🤖 Prompt for AI Agents
In package.json at line 52, the dependency entry "@rc-component/overflow":
"^1.0.0" references a non-existent version (the package starts at 1.0.1); update
the version string to a valid published version such as "^1.0.1" (or a newer
stable release) and then run npm install (or yarn install) to update
node_modules and your lockfile so the dependency resolves correctly.

"@rc-component/trigger": "^3.0.0",
"@rc-component/util": "^1.3.0",
"@rc-component/virtual-list": "^1.0.1",
"clsx": "^2.1.1",
"rc-overflow": "^1.5.0"
"clsx": "^2.1.1"
},
"devDependencies": {
"@rc-component/father-plugin": "^2.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/SelectInput/Content/MultipleContent.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import { clsx } from 'clsx';
import Overflow from 'rc-overflow';
import Overflow from '@rc-component/overflow';
import Input from '../Input';
import { useSelectInputContext } from '../context';
import type { SharedContentProps } from '.';
Expand Down
Loading