Skip to content

Commit 7ca1011

Browse files
authored
Notebook Readonly (#313)
* fix: build * chore: add index.ts * chore: favor jupyterlabtheme * chore: jupyter react theme * chore: evolving example * chore: toolbar * lint * chore: colormode * chore: lite * fix: build * fix: mount * fix: mount * lint * lint
1 parent 6307f65 commit 7ca1011

File tree

144 files changed

+1811
-1277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+1811
-1277
lines changed

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datalayer/jupyter-react",
3-
"version": "0.18.6",
3+
"version": "0.18.7",
44
"description": "Jupyter React - React.js components 100% compatible with Jupyter.",
55
"license": "MIT",
66
"main": "lib/index.js",
@@ -260,7 +260,7 @@
260260
}
261261
}
262262
},
263-
"extension": "./lib/jupyter/lab/index.js",
263+
"extension": "./lib/jupyter/lab/plugin.js",
264264
"outputDir": "jupyter_react/labextension",
265265
"schemaDir": "schema",
266266
"webpackConfig": "./webpack.lab-config.js"

packages/react/src/jupyter/lab/JupyterLabColorMode.tsx renamed to packages/react/src/components/button/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
* MIT License
55
*/
66

7-
export type ColorMode = 'light' | 'dark';
7+
export * from './Button';
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './Cell';
8+
export * from './CellAdapter';
9+
export * from './CellCommands';
10+
export * from './CellState';
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './CodeMirrorEditor';
8+
export * from './CodeMirrorOutputToolbar';
9+
export * from './CodeMirrorTheme';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './Commands';
8+
export * from './CommandsAdapter';
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './Console';
8+
export * from './ConsoleAdapter';
9+
export * from './ConsoleState';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './Dialog';
8+
export * from './DialogAdapter';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './Environment';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './FileBrowser';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* Copyright (c) 2021-2023 Datalayer, Inc.
3+
*
4+
* MIT License
5+
*/
6+
7+
export * from './FileManagerJupyterLab';
8+
export * from './lab';

0 commit comments

Comments
 (0)