
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@univerjs/sheets-thread-comment
Advanced tools
[
](https://img.shields.io/npm/l/@univerjs/sheets- thread-comment)
@univerjs/sheets-thread-comment provides the comment/annotation function of Univer Sheets.
# Use npm
npm install @univerjs/sheets-thread-comment
# Use pnpm
pnpm add @univerjs/sheets-thread-comment
import { UniverSheetsThreadCommentPlugin, IThreadCommentMentionDataService} from '@univerjs/sheets-thread-comment';
const mockUser = {
userID: 'mockId',
name: 'MockUser',
avatar: 'icon-url',
anonymous: false,
canBindAnonymous: false,
};
class CustomMentionDataService implements IThreadCommentMentionDataService {
trigger: string = '@';
// Get the common interface implementation of the mentioned user
async getMentions(search: string) {
return [
{
id: mockUser.userID,
label: mockUser.name,
type: 'user',
icon: mockUser.avatar,
},
{
id: '2',
label: 'User2',
type: 'user',
icon: mockUser.avatar,
},
];
}
}
univer.registerPlugin(UniverSheetsThreadCommentPlugin, {
overrides: [[IThreadCommentMentionDataService, { useClass: CustomMentionDataService }]],
});
FAQs
Thread comment integration for Univer Sheets.
The npm package @univerjs/sheets-thread-comment receives a total of 122,657 weekly downloads. As such, @univerjs/sheets-thread-comment popularity was classified as popular.
We found that @univerjs/sheets-thread-comment demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.