├── .copier-answers.yml ├── .github └── workflows │ ├── binder-on-pr.yml │ ├── build.yml │ ├── check-release.yml │ ├── enforce-label.yml │ ├── prep-release.yml │ ├── publish-release.yml │ └── update-integration-tests.yml ├── .gitignore ├── .prettierignore ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── babel.config.js ├── binder ├── environment.yml └── postBuild ├── doc ├── notebookWithTour.ipynb └── tourDemo.gif ├── examples └── Notebook Tour.ipynb ├── install.json ├── jest.config.js ├── jupyterlab_tour └── __init__.py ├── package.json ├── pyproject.toml ├── schema └── user-tours.json ├── setup.py ├── src ├── __tests__ │ └── plugin.spec.ts ├── components.tsx ├── constants.ts ├── defaults.tsx ├── icons.ts ├── index.ts ├── notebookButton.tsx ├── notebookTourManager.ts ├── plugin.tsx ├── svg.d.ts ├── tokens.ts ├── tour.ts ├── tourManager.ts ├── tsconfig.json └── userTourManager.ts ├── style ├── base.css ├── img │ ├── bad-pin.svg │ ├── notebook-pin.svg │ ├── person-pin.svg │ └── pin.svg ├── index.css └── index.js ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.test.json ├── ui-tests ├── README.md ├── jupyter_server_test_config.py ├── package.json ├── playwright-notebook.config.js ├── playwright.config.js ├── tests │ ├── jupyterlab-tour.spec.ts │ └── notebook-tour.spec.ts └── yarn.lock └── yarn.lock /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.github/workflows/binder-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/binder-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/update-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.github/workflows/update-integration-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.prettierignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/RELEASE.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/binder/postBuild -------------------------------------------------------------------------------- /doc/notebookWithTour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/doc/notebookWithTour.ipynb -------------------------------------------------------------------------------- /doc/tourDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/doc/tourDemo.gif -------------------------------------------------------------------------------- /examples/Notebook Tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/examples/Notebook Tour.ipynb -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/install.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/jest.config.js -------------------------------------------------------------------------------- /jupyterlab_tour/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/jupyterlab_tour/__init__.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schema/user-tours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/schema/user-tours.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/setup.py -------------------------------------------------------------------------------- /src/__tests__/plugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/__tests__/plugin.spec.ts -------------------------------------------------------------------------------- /src/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/components.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/defaults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/defaults.tsx -------------------------------------------------------------------------------- /src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/icons.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/notebookButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/notebookButton.tsx -------------------------------------------------------------------------------- /src/notebookTourManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/notebookTourManager.ts -------------------------------------------------------------------------------- /src/plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/plugin.tsx -------------------------------------------------------------------------------- /src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/svg.d.ts -------------------------------------------------------------------------------- /src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/tokens.ts -------------------------------------------------------------------------------- /src/tour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/tour.ts -------------------------------------------------------------------------------- /src/tourManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/tourManager.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/userTourManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/src/userTourManager.ts -------------------------------------------------------------------------------- /style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/style/base.css -------------------------------------------------------------------------------- /style/img/bad-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/style/img/bad-pin.svg -------------------------------------------------------------------------------- /style/img/notebook-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/style/img/notebook-pin.svg -------------------------------------------------------------------------------- /style/img/person-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/style/img/person-pin.svg -------------------------------------------------------------------------------- /style/img/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/style/img/pin.svg -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /ui-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/README.md -------------------------------------------------------------------------------- /ui-tests/jupyter_server_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/jupyter_server_test_config.py -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright-notebook.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/playwright-notebook.config.js -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/tests/jupyterlab-tour.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/tests/jupyterlab-tour.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/notebook-tour.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/tests/notebook-tour.spec.ts -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab-contrib/jupyterlab-tour/HEAD/yarn.lock --------------------------------------------------------------------------------