Skip to content

Commit

Permalink
docs and integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Dec 25, 2019
1 parent 7004dd5 commit 6b997b3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/htmlviewer-extension/package.json
Expand Up @@ -36,7 +36,8 @@
"@jupyterlab/application": "^2.0.0-alpha.4",
"@jupyterlab/apputils": "^2.0.0-alpha.4",
"@jupyterlab/docregistry": "^2.0.0-alpha.4",
"@jupyterlab/htmlviewer": "^2.0.0-alpha.4"
"@jupyterlab/htmlviewer": "^2.0.0-alpha.4",
"@jupyterlab/ui-components": "^2.0.0-alpha.4"
},
"devDependencies": {
"rimraf": "~3.0.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/htmlviewer-extension/tsconfig.json
Expand Up @@ -17,6 +17,9 @@
},
{
"path": "../htmlviewer"
},
{
"path": "../ui-components"
}
]
}
9 changes: 7 additions & 2 deletions packages/ui-components/src/icon/jlicon.tsx
Expand Up @@ -204,10 +204,15 @@ export namespace JLIcon {
*/
className?: string;

/**
* The icon's outermost node, which acts as a container for the actual
* svg node. If container is not supplied, it will be created
*/
container?: HTMLElement;

/**
* HTML element tag of the icon's outermost node, which acts as a
* container for the actual svg node
* HTML element tag used to create the icon's outermost container node,
* if no container is passed in
*/
tag?: 'div' | 'span';

Expand Down

0 comments on commit 6b997b3

Please sign in to comment.