diff --git a/package-lock.json b/package-lock.json index ea10bfe4d..d5e2ee174 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,12 @@ { - "name": "deephaven-js-plugins", + "name": "deephaven-plugins", + "version": "0.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "deephaven-js-plugins", + "name": "deephaven-plugins", + "version": "0.1.0", "workspaces": [ "./plugins/*/src/js/" ], @@ -36,6 +38,10 @@ "prettier": "3.0.0", "vite": "~4.1.4" }, + "engines": { + "node": ">=6", + "npm": ">=8" + }, "optionalDependencies": { "@esbuild/aix-ppc64": "0.19.12", "@esbuild/android-arm": "0.16.17", diff --git a/package.json b/package.json index 74105aff8..a79c3530f 100644 --- a/package.json +++ b/package.json @@ -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 --", diff --git a/plugins/auth-keycloak/src/js/package.json b/plugins/auth-keycloak/src/js/package.json index cba564a3c..3b9a462f5 100644 --- a/plugins/auth-keycloak/src/js/package.json +++ b/plugins/auth-keycloak/src/js/package.json @@ -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", diff --git a/plugins/plotly-express/src/js/package.json b/plugins/plotly-express/src/js/package.json index b04ce4309..2ffb158d9 100644 --- a/plugins/plotly-express/src/js/package.json +++ b/plugins/plotly-express/src/js/package.json @@ -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", diff --git a/plugins/plotly/src/js/package.json b/plugins/plotly/src/js/package.json index 65836d11f..ee8db40fc 100644 --- a/plugins/plotly/src/js/package.json +++ b/plugins/plotly/src/js/package.json @@ -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", diff --git a/plugins/ui/DESIGN.md b/plugins/ui/DESIGN.md index 1b1d9ff7f..c7aa9c2f2 100644 --- a/plugins/ui/DESIGN.md +++ b/plugins/ui/DESIGN.md @@ -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 @@ -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 | + | |