Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align typedoc config with JupyterLab #696

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ header:
- 'binder/postBuild'
- 'binder/start'
- 'CNAME'
- 'typedoc-theme'
- 'LICENSE'
- 'yarn.lock'

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"lint-staged": "^13.1.0",
"prettier": "^3.0.0",
"shell-quote": "^1.7.2",
"typedoc": "^0.24.8",
"typedoc-plugin-mdn-links": "^3.0.3",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.20",
"typescript": "~5.1.3"
},
"jupyter-releaser": {
Expand Down
4 changes: 0 additions & 4 deletions packages/algorithm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "algorithm"
},
"devDependencies": {
"@lumino/buildutils": "^2.0.1",
"@microsoft/api-extractor": "^7.36.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/algorithm/src/array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export namespace ArrayExt {
/**
* Find the index of the last value which matches a predicate.
*
* @param object - The array-like object to search.
* @param array - The array-like object to search.
*
* @param fn - The predicate function to apply to the values.
*
Expand Down
6 changes: 6 additions & 0 deletions packages/algorithm/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "algorithm",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/application/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "application"
},
"dependencies": {
"@lumino/commands": "^2.3.0",
"@lumino/coreutils": "^2.1.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/application/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "application",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/collections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "collections"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/collections/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "collections",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
"test:nobrowser": "cd tests && karma start",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "commands"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/commands/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "commands",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/coreutils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "coreutils"
},
"devDependencies": {
"@lumino/buildutils": "^2.0.1",
"@microsoft/api-extractor": "^7.36.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/coreutils/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "coreutils",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/datagrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
"test:nobrowser": "cd tests && karma start",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "datagrid"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/datagrid/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "datagrid",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/disposable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "disposable"
},
"dependencies": {
"@lumino/signaling": "^2.1.2"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/disposable/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "disposable",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/domutils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "domutils"
},
"devDependencies": {
"@lumino/buildutils": "^2.0.1",
"@microsoft/api-extractor": "^7.36.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/domutils/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "domutils",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/dragdrop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "dragdrop"
},
"dependencies": {
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2"
Expand Down
6 changes: 6 additions & 0 deletions packages/dragdrop/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "dragdrop",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/keyboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "keyboard"
},
"devDependencies": {
"@lumino/buildutils": "^2.0.1",
"@microsoft/api-extractor": "^7.36.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/keyboard/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function getKeyboardLayout(): IKeyboardLayout {
/**
* Set the global application keyboard layout instance.
*
* @param - The keyboard layout for use by the application.
* @param layout The keyboard layout for use by the application.
*
* #### Notes
* The keyboard layout should typically be set on application startup
Expand Down Expand Up @@ -197,7 +197,7 @@ export namespace KeycodeLayout {
/**
* Extract the set of keys from a code map.
*
* @param code - The code map of interest.
* @param codes - The code map of interest.
*
* @returns A set of the keys in the code map.
*/
Expand Down
6 changes: 6 additions & 0 deletions packages/keyboard/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "keyboard",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "messaging"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/collections": "^2.0.1"
Expand Down
6 changes: 6 additions & 0 deletions packages/messaging/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "messaging",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/polling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "polling"
},
"dependencies": {
"@lumino/coreutils": "^2.1.2",
"@lumino/disposable": "^2.1.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/polling/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "polling",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/properties/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "properties"
},
"devDependencies": {
"@lumino/buildutils": "^2.0.1",
"@microsoft/api-extractor": "^7.36.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/properties/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "properties",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/signaling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
"test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "signaling"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/coreutils": "^2.1.2"
Expand Down
6 changes: 6 additions & 0 deletions packages/signaling/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "signaling",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/virtualdom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
"test:nobrowser": "cd tests && karma start",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "virtualdom"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/virtualdom/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "virtualdom",
"readme": "none"
}
4 changes: 0 additions & 4 deletions packages/widgets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@
"test:nobrowser": "cd tests && karma start",
"watch": "tsc --build --watch"
},
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "widgets"
},
"dependencies": {
"@lumino/algorithm": "^2.0.1",
"@lumino/commands": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/src/accordionlayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export namespace AccordionLayout {
/**
* Render the element for a section title.
*
* @param data - The data to use for rendering the section title.
* @param title - The data to use for rendering the section title.
*
* @returns A element representing the section title.
*/
Expand Down
2 changes: 0 additions & 2 deletions packages/widgets/src/singletonlayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ export class SingletonLayout extends Layout {
/**
* Attach a widget to the parent's DOM node.
*
* @param index - The current index of the widget in the layout.
*
* @param widget - The widget to attach to the parent.
*
* #### Notes
Expand Down
6 changes: 6 additions & 0 deletions packages/widgets/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": ["../../typedoc.base.json"],
"entryPoints": ["src/index.ts"],
"name": "widgets",
"readme": "none"
}
11 changes: 0 additions & 11 deletions tsconfig.docs.json

This file was deleted.

Loading
Loading