docs: cleanup references to `apache-superset/superset-ui` (#23796)

This commit is contained in:
Nicolas Charpentier 2023-04-25 11:18:27 -04:00 committed by GitHub
parent 7e4be7d1ea
commit 60c2e7013d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
37 changed files with 124 additions and 91 deletions

View File

@ -647,7 +647,7 @@ FEATURE_FLAGS = {
} }
``` ```
If you want to use the same flag in the client code, also add it to the FeatureFlag TypeScript enum in [@superset-ui/core](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-core/src/utils/featureFlags.ts). For example, If you want to use the same flag in the client code, also add it to the FeatureFlag TypeScript enum in [@superset-ui/core](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/utils/featureFlags.ts). For example,
```typescript ```typescript
export enum FeatureFlag { export enum FeatureFlag {

View File

@ -53,7 +53,7 @@ The Country Maps visualization already ships with the maps for the following cou
## Adding a New Country ## Adding a New Country
To add a new country to the list, you'd have to edit files in To add a new country to the list, you'd have to edit files in
[@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-country-map). [@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-country-map).
1. Generate a new GeoJSON file for your country following the guide in [this Jupyter notebook](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country%20Map%20GeoJSON%20Generator.ipynb). 1. Generate a new GeoJSON file for your country following the guide in [this Jupyter notebook](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country%20Map%20GeoJSON%20Generator.ipynb).
2. Edit the countries list in [legacy-plugin-chart-country-map/src/countries.ts](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts). 2. Edit the countries list in [legacy-plugin-chart-country-map/src/countries.ts](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts).

View File

@ -51,7 +51,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-embedded-sdk"
}, },
"homepage": "https://github.com/apache/superset#readme", "homepage": "https://github.com/apache/superset#readme",
"bugs": { "bugs": {

View File

@ -20,7 +20,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": { "author": {

View File

@ -14,7 +14,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/generator-superset"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-chart-controls#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/superset-ui-chart-controls"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-core#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/superset-ui-core"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -55,7 +55,7 @@ console.log(formatNumber('my_format', 1000));
``` ```
It also define constants for common d3 formats. See the full list of formats in It also define constants for common d3 formats. See the full list of formats in
[NumberFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-number-format/src/NumberFormats.js). [NumberFormats.js](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormats.ts).
```js ```js
import { NumberFormats } from '@superset-ui-number-format'; import { NumberFormats } from '@superset-ui-number-format';

View File

@ -52,7 +52,7 @@ console.log(formatTime('my_format', new Date(2018)));
``` ```
It also define constants for common d3 time formats. See It also define constants for common d3 time formats. See
[TimeFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-time-format/src/TimeFormats.js). [TimeFormats.js](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormats.ts).
```js ```js
import { TimeFormats } from '@superset-ui/core'; import { TimeFormats } from '@superset-ui/core';

View File

@ -14,7 +14,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/superset-ui-demo"
}, },
"keywords": [ "keywords": [
"storybook", "storybook",
@ -26,9 +27,9 @@
], ],
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-demo#readme",
"dependencies": { "dependencies": {
"@data-ui/event-flow": "^0.0.84", "@data-ui/event-flow": "^0.0.84",
"@emotion/cache": "^11.4.0", "@emotion/cache": "^11.4.0",

View File

@ -11,7 +11,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/superset-ui-switchboard"
}, },
"keywords": [ "keywords": [
"switchboard", "switchboard",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-calendar#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-calendar"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-chord"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-chord#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -10,7 +10,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-country-map"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -18,9 +19,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-country-map#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-event-flow"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-event-flow#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-heatmap#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-heatmap"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-plugin-chart-histogram"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-histogram#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-horizon#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-plugin-chart-horizon"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -11,7 +11,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-map-box"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-paired-t-test#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-paired-t-test"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-partition#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-plugin-chart-partition"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-pivot-table"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-pivot-table#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-rose#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-rose"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sankey-loop#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-sankey-loop"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-plugin-chart-sankey"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sankey#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sunburst#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-sunburst"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -5,13 +5,14 @@
"keywords": [ "keywords": [
"superset" "superset"
], ],
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-treemap#readme",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-treemap"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/legacy-plugin-chart-world-map"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-world-map#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -11,7 +11,8 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache/superset.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-preset-chart-deckgl"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "Superset", "author": "Superset",

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/legacy-preset-chart-nvd3"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-preset-chart-nvd3#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -11,7 +11,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/plugin-chart-echarts"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -19,9 +20,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-echarts#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -11,7 +11,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/plugin-chart-handlebars"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -19,9 +20,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-handlebars#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -11,7 +11,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/plugin-chart-pivot-table"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -19,9 +20,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-pivot-table#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -11,7 +11,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/plugin-chart-table"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -19,9 +20,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-table#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -13,7 +13,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/plugins/plugin-chart-word-cloud"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -21,9 +22,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-word-cloud#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View File

@ -14,7 +14,8 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git" "url": "https://github.com/apache/superset.git",
"directory": "superset-frontend/packages/preset-chart-xy"
}, },
"keywords": [ "keywords": [
"superset" "superset"
@ -22,9 +23,9 @@
"author": "Superset", "author": "Superset",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues" "url": "https://github.com/apache/superset/issues"
}, },
"homepage": "https://github.com/apache-superset/superset-ui#readme", "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/preset-chart-xy#readme",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },