├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── binder-on-pr.yml │ ├── build.yml │ ├── check-release.yml │ ├── enforce-label.yml │ └── update-integration-tests.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── babel.config.js ├── binder ├── environment.yml └── postBuild ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── logo-icon.png │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ └── user_guide.ipynb ├── install.json ├── jest.config.js ├── jupyter-config ├── nb-config │ └── jupyterlab_ui_profiler.json └── server-config │ └── jupyterlab_ui_profiler.json ├── jupyterlab_ui_profiler └── __init__.py ├── package.json ├── pyproject.toml ├── readthedocs.yml ├── setup.py ├── src ├── __tests__ │ ├── jupyterlab-ui-profiler.spec.ts │ └── statistics.spec.ts ├── benchmark.ts ├── browserProfiler.d.ts ├── css.ts ├── dramaturg.ts ├── index.ts ├── jsBenchmarks.ts ├── lumino.tsx ├── profiler.ts ├── scenarios.ts ├── schema │ ├── benchmark-base.json │ ├── benchmark-execution.json │ ├── benchmark-profile.json │ ├── benchmark-rule-group.json │ ├── benchmark-rule-usage.json │ ├── benchmark-rule.json │ ├── benchmark-sheet.json │ ├── scenario-base.json │ ├── scenario-completer.json │ ├── scenario-create-cells.json │ ├── scenario-debugger.json │ ├── scenario-menu-open.json │ ├── scenario-scroll.json │ ├── scenario-sidebars.json │ └── scenario-tabs.json ├── statistics.ts ├── styleBenchmarks.tsx ├── table.ts ├── templates.tsx ├── tokens.ts ├── types │ ├── _benchmark-base.ts │ ├── _benchmark-execution.ts │ ├── _benchmark-profile.ts │ ├── _benchmark-rule-group.ts │ ├── _benchmark-rule-usage.ts │ ├── _benchmark-rule.ts │ ├── _benchmark-sheet.ts │ ├── _scenario-base.ts │ ├── _scenario-completer.ts │ ├── _scenario-create-cells.ts │ ├── _scenario-debugger.ts │ ├── _scenario-menu-open.ts │ ├── _scenario-scroll.ts │ ├── _scenario-sidebars.ts │ ├── _scenario-tabs.ts │ └── index.ts ├── ui.tsx └── utils.ts ├── style ├── base.css ├── index.css └── index.js ├── tsconfig.json ├── ui-tests ├── README.md ├── jupyter_server_test_config.py ├── package.json ├── playwright.config.js ├── tests │ ├── profiler.spec.ts │ ├── profiler.spec.ts-snapshots │ │ ├── launcher-linux.png │ │ └── ui-profiler-linux.png │ ├── results.spec.ts │ ├── results.spec.ts-snapshots │ │ ├── boxplot-linux.png │ │ ├── result-options-linux.png │ │ ├── result-summary-linux.png │ │ ├── rule-usage-linux.png │ │ ├── rules-linux.png │ │ ├── self-profiling-macro-trace-linux.png │ │ ├── self-profiling-micro-details-linux.png │ │ ├── style-rule-groups-blocks-linux.png │ │ ├── style-rule-groups-rules-linux.png │ │ ├── style-sheets-linux.png │ │ ├── style-sheets-results-linux.png │ │ └── ui-profiler-with-boxplot-linux.png │ └── ui-profiler-results │ │ ├── execution-time_menuOpen.profile.json │ │ ├── rule-usage_menuOpen.profile.json │ │ ├── self-profile_completer-macro.profile.json │ │ ├── self-profile_completer-micro.profile.json │ │ ├── style-rule-group_menuOpen.profile.json │ │ ├── style-rule_menuOpen.profile.json │ │ └── style-sheet_menuOpen.profile.json └── yarn.lock └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/binder-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.github/workflows/binder-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/update-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.github/workflows/update-integration-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/RELEASE.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/binder/postBuild -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/source/_static/logo-icon.png -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/user_guide.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/docs/source/user_guide.ipynb -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/install.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/jest.config.js -------------------------------------------------------------------------------- /jupyter-config/nb-config/jupyterlab_ui_profiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/jupyter-config/nb-config/jupyterlab_ui_profiler.json -------------------------------------------------------------------------------- /jupyter-config/server-config/jupyterlab_ui_profiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/jupyter-config/server-config/jupyterlab_ui_profiler.json -------------------------------------------------------------------------------- /jupyterlab_ui_profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/jupyterlab_ui_profiler/__init__.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/setup.py -------------------------------------------------------------------------------- /src/__tests__/jupyterlab-ui-profiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/__tests__/jupyterlab-ui-profiler.spec.ts -------------------------------------------------------------------------------- /src/__tests__/statistics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/__tests__/statistics.spec.ts -------------------------------------------------------------------------------- /src/benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/benchmark.ts -------------------------------------------------------------------------------- /src/browserProfiler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/browserProfiler.d.ts -------------------------------------------------------------------------------- /src/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/css.ts -------------------------------------------------------------------------------- /src/dramaturg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/dramaturg.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jsBenchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/jsBenchmarks.ts -------------------------------------------------------------------------------- /src/lumino.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/lumino.tsx -------------------------------------------------------------------------------- /src/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/profiler.ts -------------------------------------------------------------------------------- /src/scenarios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/scenarios.ts -------------------------------------------------------------------------------- /src/schema/benchmark-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-base.json -------------------------------------------------------------------------------- /src/schema/benchmark-execution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-execution.json -------------------------------------------------------------------------------- /src/schema/benchmark-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-profile.json -------------------------------------------------------------------------------- /src/schema/benchmark-rule-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-rule-group.json -------------------------------------------------------------------------------- /src/schema/benchmark-rule-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-rule-usage.json -------------------------------------------------------------------------------- /src/schema/benchmark-rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-rule.json -------------------------------------------------------------------------------- /src/schema/benchmark-sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/benchmark-sheet.json -------------------------------------------------------------------------------- /src/schema/scenario-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-base.json -------------------------------------------------------------------------------- /src/schema/scenario-completer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-completer.json -------------------------------------------------------------------------------- /src/schema/scenario-create-cells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-create-cells.json -------------------------------------------------------------------------------- /src/schema/scenario-debugger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-debugger.json -------------------------------------------------------------------------------- /src/schema/scenario-menu-open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-menu-open.json -------------------------------------------------------------------------------- /src/schema/scenario-scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-scroll.json -------------------------------------------------------------------------------- /src/schema/scenario-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-sidebars.json -------------------------------------------------------------------------------- /src/schema/scenario-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/schema/scenario-tabs.json -------------------------------------------------------------------------------- /src/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/statistics.ts -------------------------------------------------------------------------------- /src/styleBenchmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/styleBenchmarks.tsx -------------------------------------------------------------------------------- /src/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/table.ts -------------------------------------------------------------------------------- /src/templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/templates.tsx -------------------------------------------------------------------------------- /src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/tokens.ts -------------------------------------------------------------------------------- /src/types/_benchmark-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-base.ts -------------------------------------------------------------------------------- /src/types/_benchmark-execution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-execution.ts -------------------------------------------------------------------------------- /src/types/_benchmark-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-profile.ts -------------------------------------------------------------------------------- /src/types/_benchmark-rule-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-rule-group.ts -------------------------------------------------------------------------------- /src/types/_benchmark-rule-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-rule-usage.ts -------------------------------------------------------------------------------- /src/types/_benchmark-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-rule.ts -------------------------------------------------------------------------------- /src/types/_benchmark-sheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_benchmark-sheet.ts -------------------------------------------------------------------------------- /src/types/_scenario-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-base.ts -------------------------------------------------------------------------------- /src/types/_scenario-completer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-completer.ts -------------------------------------------------------------------------------- /src/types/_scenario-create-cells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-create-cells.ts -------------------------------------------------------------------------------- /src/types/_scenario-debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-debugger.ts -------------------------------------------------------------------------------- /src/types/_scenario-menu-open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-menu-open.ts -------------------------------------------------------------------------------- /src/types/_scenario-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-scroll.ts -------------------------------------------------------------------------------- /src/types/_scenario-sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-sidebars.ts -------------------------------------------------------------------------------- /src/types/_scenario-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/_scenario-tabs.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/src/utils.ts -------------------------------------------------------------------------------- /style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/style/base.css -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/README.md -------------------------------------------------------------------------------- /ui-tests/jupyter_server_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/jupyter_server_test_config.py -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/tests/profiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/profiler.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/profiler.spec.ts-snapshots/launcher-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/profiler.spec.ts-snapshots/launcher-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/profiler.spec.ts-snapshots/ui-profiler-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/profiler.spec.ts-snapshots/ui-profiler-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/boxplot-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/boxplot-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/result-options-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/result-options-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/result-summary-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/result-summary-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/rule-usage-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/rule-usage-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/rules-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/rules-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/self-profiling-macro-trace-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/self-profiling-macro-trace-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/self-profiling-micro-details-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/self-profiling-micro-details-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/style-rule-groups-blocks-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/style-rule-groups-blocks-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/style-rule-groups-rules-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/style-rule-groups-rules-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/style-sheets-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/style-sheets-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/style-sheets-results-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/style-sheets-results-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/results.spec.ts-snapshots/ui-profiler-with-boxplot-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/results.spec.ts-snapshots/ui-profiler-with-boxplot-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/execution-time_menuOpen.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/execution-time_menuOpen.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/rule-usage_menuOpen.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/rule-usage_menuOpen.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/self-profile_completer-macro.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/self-profile_completer-macro.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/self-profile_completer-micro.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/self-profile_completer-micro.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/style-rule-group_menuOpen.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/style-rule-group_menuOpen.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/style-rule_menuOpen.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/style-rule_menuOpen.profile.json -------------------------------------------------------------------------------- /ui-tests/tests/ui-profiler-results/style-sheet_menuOpen.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/tests/ui-profiler-results/style-sheet_menuOpen.profile.json -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/ui-profiler/HEAD/yarn.lock --------------------------------------------------------------------------------