forked from jupyterlab/lumino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log of experiment with a single ShadowRoot for menu.
The benchmarking results were inconclusive; the expensive `Recalculate Styles` events for menubar still happen, so this may not be sufficient to solve the remaining bottlenecks but it certainly is feasible approach. More work would be needed on getting styles attached properly.
- Loading branch information
1 parent
1dba9cd
commit 2236740
Showing
2 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
|
||
declare module '*.css' { | ||
const script: string; | ||
export default script; | ||
} |