-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save suggestions to notebook metadata (#8)
- Loading branch information
1 parent
16aadd3
commit 26b0012
Showing
18 changed files
with
925 additions
and
192 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 |
---|---|---|
@@ -1,7 +1,22 @@ | ||
import { LabIcon } from '@jupyterlab/ui-components'; | ||
import hintStr from '../style/icon/hint.svg'; | ||
import minimizeStr from '../style/icon/minimize.svg'; | ||
import expandStr from '../style/icon/expand.svg'; | ||
import collapseStr from '../style/icon/collapse.svg'; | ||
|
||
export const hintIcon = new LabIcon({ | ||
name: 'jupyter-suggestions:hintIcon', | ||
svgstr: hintStr | ||
}); | ||
export const minimizeIcon = new LabIcon({ | ||
name: 'jupyter-suggestions:minimizeIcon', | ||
svgstr: minimizeStr | ||
}); | ||
export const expandIcon = new LabIcon({ | ||
name: 'jupyter-suggestions:expandIcon', | ||
svgstr: expandStr | ||
}); | ||
export const collapseIcon = new LabIcon({ | ||
name: 'jupyter-suggestions:collapseIcon', | ||
svgstr: collapseStr | ||
}); |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.