Skip to content

Commit

Permalink
Fix up repostory URLs in some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mofojed committed Jul 17, 2024
1 parent 5355288 commit e05db9b
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 18 deletions.
10 changes: 8 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "deephaven-js-plugins",
"name": "deephaven-plugins",
"private": true,
"version": "0.1.0",
"workspaces": [
"./plugins/*/src/js/"
],
"engines": {
"node": ">=6",
"npm": ">=8"
},
"scripts": {
"docker": "docker compose up deephaven-plugins --build",
"start": "run-p \"start:packages -- {@}\" serve:plugins --",
Expand Down
6 changes: 3 additions & 3 deletions plugins/auth-keycloak/src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
"url": "git+https://github.com/deephaven/deephaven-plugins"
},
"bugs": {
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
"url": "https://github.com/deephaven/deephaven-plugins/issues"
},
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
"homepage": "https://github.com/deephaven/deephaven-plugins",
"scripts": {
"start": "vite build --watch",
"build": "vite build",
Expand Down
6 changes: 3 additions & 3 deletions plugins/plotly-express/src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
"url": "git+https://github.com/deephaven/deephaven-plugins"
},
"bugs": {
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
"url": "https://github.com/deephaven/deephaven-plugins/issues"
},
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
"homepage": "https://github.com/deephaven/deephaven-plugins",
"scripts": {
"start": "vite build --watch",
"build": "tsc && vite build",
Expand Down
6 changes: 3 additions & 3 deletions plugins/plotly/src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/deephaven/deephaven-js-plugins"
"url": "git+https://github.com/deephaven/deephaven-plugins"
},
"bugs": {
"url": "https://github.com/deephaven/deephaven-js-plugins/issues"
"url": "https://github.com/deephaven/deephaven-plugins/issues"
},
"homepage": "https://github.com/deephaven/deephaven-js-plugins",
"homepage": "https://github.com/deephaven/deephaven-plugins",
"scripts": {
"start": "vite build --watch",
"build": "vite build",
Expand Down
13 changes: 7 additions & 6 deletions plugins/ui/DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ st.write("Result:", res)
### Interactive Query

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

#### Basic Example

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

###### Parameters

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

|

|
Expand Down

0 comments on commit e05db9b

Please sign in to comment.