├── .coveragerc ├── .github └── workflows │ ├── build.yml │ ├── enforce-label.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .stylelintrc.yaml ├── .yarnrc.yml ├── LICENSE ├── LICENSE.txt ├── README.md ├── RELEASE.md ├── codecov.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── helper.js │ ├── conf.py │ ├── develop-install.rst │ ├── examples │ ├── index.rst │ └── introduction.nblink │ ├── index.rst │ ├── installing.rst │ └── introduction.rst ├── examples └── introduction.ipynb ├── install.json ├── package.json ├── pyproject.toml ├── pytest.ini ├── readthedocs.yml ├── setup.py ├── sidecar-main-area.gif ├── sidecar-ref-anchor.png ├── sidecar.gif ├── sidecar ├── __init__.py ├── _frontend.py └── sidecar.py ├── src ├── index.ts ├── version.ts └── widget.ts ├── style ├── base.css ├── index.css └── index.js ├── tests ├── karma.conf.js └── src │ ├── index.spec.ts │ ├── tsconfig.json │ └── utils.spec.ts ├── tsconfig.json └── yarn.lock /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = sidecar/tests/* 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | tests/ 4 | .jshintrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/.stylelintrc.yaml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/RELEASE.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/_static/helper.js -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/develop-install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/develop-install.rst -------------------------------------------------------------------------------- /docs/source/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/examples/index.rst -------------------------------------------------------------------------------- /docs/source/examples/introduction.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/examples/introduction.nblink -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/installing.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /examples/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/examples/introduction.ipynb -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/install.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/setup.py -------------------------------------------------------------------------------- /sidecar-main-area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar-main-area.gif -------------------------------------------------------------------------------- /sidecar-ref-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar-ref-anchor.png -------------------------------------------------------------------------------- /sidecar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar.gif -------------------------------------------------------------------------------- /sidecar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar/__init__.py -------------------------------------------------------------------------------- /sidecar/_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar/_frontend.py -------------------------------------------------------------------------------- /sidecar/sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/sidecar/sidecar.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/src/version.ts -------------------------------------------------------------------------------- /src/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/src/widget.ts -------------------------------------------------------------------------------- /style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/style/base.css -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /tests/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/tests/karma.conf.js -------------------------------------------------------------------------------- /tests/src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/tests/src/index.spec.ts -------------------------------------------------------------------------------- /tests/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/tests/src/tsconfig.json -------------------------------------------------------------------------------- /tests/src/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/tests/src/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-widgets/jupyterlab-sidecar/HEAD/yarn.lock --------------------------------------------------------------------------------