New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@jupyter/collaboration

Package Overview
Dependencies
Maintainers
7
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyter/collaboration - npm Package Compare versions

Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5

lib/cursors.d.ts

5

lib/collaboratorspanel.js

@@ -73,4 +73,5 @@ // Copyright (c) Jupyter Development Team.

canOpenCurrent = true;
currentFileLocation = value.current.split(':')[1];
current = PathExt.basename(currentFileLocation);
const path = value.current.split(':');
currentFileLocation = `${path[1]}:${path[2]}`;
current = PathExt.basename(path[2]);
current =

@@ -77,0 +78,0 @@ current.length > 25 ? current.slice(0, 12).concat('…') : current;

2

lib/components.d.ts
import { User } from '@jupyterlab/services';
import * as React from 'react';
declare type Props = {
type Props = {
user: User.IIdentity;

@@ -5,0 +5,0 @@ };

@@ -6,4 +6,5 @@ /**

export * from './tokens';
export * from './cursors';
export * from './menu';
export * from './userinfopanel';
export * from './collaboratorspanel';

@@ -8,4 +8,5 @@ // Copyright (c) Jupyter Development Team.

export * from './tokens';
export * from './cursors';
export * from './menu';
export * from './userinfopanel';
export * from './collaboratorspanel';

@@ -19,3 +19,3 @@ import type { Menu } from '@lumino/widgets';

*/
export declare type IAwareness = Awareness;
export type IAwareness = Awareness;
/**

@@ -22,0 +22,0 @@ * An interface describing the user menu.

{
"name": "@jupyter/collaboration",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"description": "JupyterLab - Real-Time Collaboration Widgets",

@@ -42,9 +42,11 @@ "homepage": "https://github.com/jupyterlab/jupyter_collaboration",

"dependencies": {
"@jupyterlab/apputils": "^4.0.0-alpha.19",
"@jupyterlab/coreutils": "^6.0.0-alpha.19",
"@jupyterlab/services": "^7.0.0-alpha.19",
"@jupyterlab/ui-components": "^4.0.0-alpha.33",
"@lumino/coreutils": "^2.0.0-beta.0",
"@lumino/virtualdom": "^2.0.0-beta.0",
"@lumino/widgets": "^2.0.0-beta.1",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.7.0",
"@jupyterlab/apputils": "^4.0.0-alpha.22",
"@jupyterlab/coreutils": "^6.0.0-alpha.22",
"@jupyterlab/services": "^7.0.0-alpha.22",
"@jupyterlab/ui-components": "^4.0.0-alpha.37",
"@lumino/coreutils": "^2.0.0",
"@lumino/virtualdom": "^2.0.0",
"@lumino/widgets": "^2.0.0",
"react": "^18.2.0",

@@ -55,4 +57,5 @@ "y-protocols": "^1.0.5",

"devDependencies": {
"@types/react": "^18.0.27",
"rimraf": "^4.1.2",
"typescript": "~4.7.3"
"typescript": "~5.0.2"
},

@@ -62,3 +65,2 @@ "publishConfig": {

},
"jupyterlab": {},
"typedoc": {

@@ -65,0 +67,0 @@ "entryPoint": "./src/index.ts",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc