@jupyter/collaboration
Advanced tools
Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5
@@ -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; |
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", |
34744
23
968
12
3
+ Added@codemirror/state@^6.2.0
+ Added@codemirror/view@^6.7.0
+ Added@codemirror/state@6.5.2(transitive)
+ Added@codemirror/view@6.36.2(transitive)
+ Added@marijn/find-cluster-break@1.0.2(transitive)
+ Addedstyle-mod@4.1.2(transitive)
+ Addedw3c-keyname@2.2.8(transitive)
Updated@lumino/coreutils@^2.0.0
Updated@lumino/virtualdom@^2.0.0
Updated@lumino/widgets@^2.0.0