Skip to content

Commit e05db9b

Browse files
committed
Fix up repostory URLs in some packages
1 parent 5355288 commit e05db9b

File tree

6 files changed

+31
-18
lines changed

6 files changed

+31
-18
lines changed

package-lock.json

+8-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
2-
"name": "deephaven-js-plugins",
2+
"name": "deephaven-plugins",
3+
"private": true,
4+
"version": "0.1.0",
35
"workspaces": [
46
"./plugins/*/src/js/"
57
],
8+
"engines": {
9+
"node": ">=6",
10+
"npm": ">=8"
11+
},
612
"scripts": {
713
"docker": "docker compose up deephaven-plugins --build",
814
"start": "run-p \"start:packages -- {@}\" serve:plugins --",

plugins/auth-keycloak/src/js/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"main": "dist/index.js",
1616
"repository": {
1717
"type": "git",
18-
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
18+
"url": "git+https://github.com/deephaven/deephaven-plugins"
1919
},
2020
"bugs": {
21-
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
21+
"url": "https://github.com/deephaven/deephaven-plugins/issues"
2222
},
23-
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
23+
"homepage": "https://github.com/deephaven/deephaven-plugins",
2424
"scripts": {
2525
"start": "vite build --watch",
2626
"build": "vite build",

plugins/plotly-express/src/js/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
},
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
27+
"url": "git+https://github.com/deephaven/deephaven-plugins"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
30+
"url": "https://github.com/deephaven/deephaven-plugins/issues"
3131
},
32-
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
32+
"homepage": "https://github.com/deephaven/deephaven-plugins",
3333
"scripts": {
3434
"start": "vite build --watch",
3535
"build": "tsc && vite build",

plugins/plotly/src/js/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"main": "dist/index.js",
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
16+
"url": "git+https://github.com/deephaven/deephaven-plugins"
1717
},
1818
"bugs": {
19-
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
19+
"url": "https://github.com/deephaven/deephaven-plugins/issues"
2020
},
21-
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
21+
"homepage": "https://github.com/deephaven/deephaven-plugins",
2222
"scripts": {
2323
"start": "vite build --watch",
2424
"build": "vite build",

plugins/ui/DESIGN.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ st.write("Result:", res)
120120
### Interactive Query
121121

122122
Early prototype: https://github.com/mofojed/deephaven-plugin-interactive
123-
UI: https://github.com/mofojed/deephaven-js-plugins/tree/interactive
123+
UI: https://github.com/mofojed/deephaven-plugins/tree/interactive
124124

125125
#### Basic Example
126126

@@ -1020,11 +1020,12 @@ A tabs component can be used to organize content in a collection of tabs, allowi
10201020

10211021
###### Parameters
10221022

1023-
| Parameter | Type | Description |
1024-
| ----------------------- | ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1025-
| `*children` | `Tab \| TabList \| TabPanels` | The tab panels to render within the tabs component. |
1026-
| `on_change` | `Callable[[Key], None] \| None` | Alias of `on_selection_change`. Handler that is called when the tab selection changes. |
1027-
| `**props` | `Any` | Any other [Tabs](https://react-spectrum.adobe.com/react-spectrum/Tabs.html#tabs-props) prop
1023+
| Parameter | Type | Description |
1024+
| ----------- | ------------------------------- | ------------------------------------------------------------------------------------------- |
1025+
| `*children` | `Tab \| TabList \| TabPanels` | The tab panels to render within the tabs component. |
1026+
| `on_change` | `Callable[[Key], None] \| None` | Alias of `on_selection_change`. Handler that is called when the tab selection changes. |
1027+
| `**props` | `Any` | Any other [Tabs](https://react-spectrum.adobe.com/react-spectrum/Tabs.html#tabs-props) prop |
1028+
10281029
|
10291030

10301031
|

0 commit comments

Comments
 (0)