@orbcharts/plugins-basic 3.0.0-beta.2 → 3.0.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +15169 -10684
- package/dist/orbcharts-plugins-basic.umd.js +296 -83
- package/dist/src/base/BaseBars.d.ts +4 -4
- package/dist/src/base/BaseBarsTriangle.d.ts +4 -4
- package/dist/src/base/BaseDots.d.ts +4 -4
- package/dist/src/base/BaseGroupAxis.d.ts +2 -2
- package/dist/src/base/BaseLegend.d.ts +1 -1
- package/dist/src/base/BaseLineAreas.d.ts +5 -5
- package/dist/src/base/BaseLines.d.ts +5 -5
- package/dist/src/base/BaseRacingBars.d.ts +23 -0
- package/dist/src/base/BaseRacingLabels.d.ts +20 -0
- package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
- package/dist/src/base/{BaseBarStack.d.ts → BaseStackedBars.d.ts} +8 -8
- package/dist/src/base/BaseValueAxis.d.ts +6 -8
- package/dist/src/base/BaseXAxis.d.ts +20 -0
- package/dist/src/base/BaseYAxis.d.ts +18 -0
- package/dist/src/grid/defaults.d.ts +5 -5
- package/dist/src/grid/gridObservables.d.ts +12 -5
- package/dist/src/grid/index.d.ts +3 -3
- package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
- package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
- package/dist/src/grid/plugins/StackedValueAxis.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/multiGrid/defaults.d.ts +4 -4
- package/dist/src/multiGrid/index.d.ts +3 -3
- package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
- package/dist/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
- package/dist/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
- package/dist/src/multiValue/defaults.d.ts +13 -0
- package/dist/src/multiValue/index.d.ts +12 -0
- package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
- package/dist/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
- package/dist/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
- package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/Scatter.d.ts +3 -0
- package/dist/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
- package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAux.d.ts +3 -0
- package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAxes_legacy.d.ts +3 -0
- package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
- package/dist/src/noneData/plugins/Container.d.ts +0 -1
- package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
- package/dist/src/relationship/defaults.d.ts +6 -0
- package/dist/src/relationship/index.d.ts +5 -0
- package/dist/src/relationship/plugins/ForceDirected.d.ts +3 -0
- package/dist/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
- package/dist/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
- package/dist/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
- package/dist/src/relationship/relationshipObservables.d.ts +1 -0
- package/dist/src/series/seriesObservables.d.ts +3 -3
- package/dist/src/utils/commonUtils.d.ts +2 -1
- package/dist/src/utils/d3Graphics.d.ts +2 -1
- package/dist/src/utils/d3Utils.d.ts +3 -2
- package/dist/src/utils/observables.d.ts +1 -1
- package/dist/src/utils/orbchartsUtils.d.ts +3 -3
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +44 -44
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +676 -674
- package/src/base/BaseDots.ts +464 -515
- package/src/base/BaseGroupAxis.ts +691 -679
- package/src/base/BaseLegend.ts +684 -680
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/BaseRacingBars.ts +552 -0
- package/src/base/BaseRacingLabels.ts +396 -0
- package/src/base/BaseRacingValueLabels.ts +403 -0
- package/src/base/{BaseBarStack.ts → BaseStackedBars.ts} +782 -780
- package/src/base/BaseTooltip.ts +386 -385
- package/src/base/BaseValueAxis.ts +600 -580
- package/src/base/BaseXAxis.ts +427 -0
- package/src/base/BaseYAxis.ts +389 -0
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +213 -244
- package/src/grid/gridObservables.ts +612 -545
- package/src/grid/index.ts +16 -16
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +107 -107
- package/src/grid/plugins/GridTooltip.ts +66 -66
- package/src/grid/plugins/GroupAux.ts +1120 -1098
- package/src/grid/plugins/GroupAxis.ts +73 -97
- package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/{BarStack.ts → StackedBars.ts} +64 -64
- package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
- package/src/grid/plugins/ValueAxis.ts +94 -93
- package/src/index.ts +6 -9
- package/src/multiGrid/defaults.ts +244 -224
- package/src/multiGrid/index.ts +15 -15
- package/src/multiGrid/multiGridObservables.ts +50 -49
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBars.ts} +106 -106
- package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
- package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
- package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +300 -298
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
- package/src/multiValue/defaults.ts +432 -0
- package/src/multiValue/index.ts +13 -0
- package/src/multiValue/multiValueObservables.ts +667 -0
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
- package/src/multiValue/plugins/RacingBars.ts +373 -0
- package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
- package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
- package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
- package/src/multiValue/plugins/Scatter.ts +426 -0
- package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
- package/src/multiValue/plugins/XAxis.ts +108 -0
- package/src/multiValue/plugins/XYAux.ts +683 -0
- package/src/multiValue/plugins/XYAxes.ts +195 -0
- package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
- package/src/multiValue/plugins/XZoom.ts +300 -0
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +28 -28
- package/src/noneData/plugins/Tooltip.ts +374 -374
- package/src/relationship/defaults.ts +222 -0
- package/src/relationship/index.ts +5 -0
- package/src/relationship/plugins/ForceDirected.ts +1174 -0
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1412 -0
- package/src/relationship/plugins/RelationshipLegend.ts +100 -0
- package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
- package/src/relationship/relationshipObservables.ts +50 -0
- package/src/series/defaults.ts +221 -206
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +636 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +284 -283
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +107 -107
- package/src/series/plugins/SeriesTooltip.ts +66 -66
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +102 -78
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -107
- package/src/tree/plugins/TreeMap.ts +341 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- package/src/utils/commonUtils.ts +31 -22
- package/src/utils/d3Graphics.ts +176 -174
- package/src/utils/d3Utils.ts +92 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +130 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/src/grid/plugins/BarStack.d.ts +0 -1
- package/dist/src/grid/plugins/GridZoom.d.ts +0 -1
- package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
- package/src/grid/plugins/RankingAxis.ts +0 -0
- package/src/multiValue/plugins/ScatterAxes.ts +0 -0
- package/src/relationship/plugins/Relationship.ts +0 -0
- /package/dist/src/{base/BaseGroupArea.d.ts → multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
- /package/dist/src/{grid/plugins/Ranking.d.ts → multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
- /package/dist/src/{grid/plugins/RankingAxis.d.ts → multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
- /package/dist/src/multiValue/plugins/{ScatterAxes.d.ts → RankingAxis_legacy.d.ts} +0 -0
- /package/{dist/src/relationship/plugins/Relationship.d.ts → src/multiValue/plugins/OrdinalBubbles.ts} +0 -0
- /package/src/{base/BaseGroupArea.ts → multiValue/plugins/OrdinalXAxis.ts} +0 -0
- /package/src/{grid/plugins/Ranking.ts → multiValue/plugins/RacingCounterAxis.ts} +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
export declare const XAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "XAxis", import('@orbcharts/plugins-basic-types').XAxisParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const XYAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "XYAxes", import('@orbcharts/plugins-basic-types').XYAxesParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const XZoom: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "XZoom", import('@orbcharts/plugins-basic-types').XZoomParams>;
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare const Container: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<any, "Container", import('@orbcharts/plugins-basic-types').ContainerPluginParams>;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ForceDirectedParams, ForceDirectedBubblesParams, RelationshipLegendParams, RelationshipTooltipParams } from '../../lib/plugins-basic-types';
|
2
|
+
|
3
|
+
export declare const DEFAULT_FORCE_DIRECTED_PARAMS: ForceDirectedParams;
|
4
|
+
export declare const DEFAULT_FORCE_DIRECTED_BUBBLES_PARAMS: ForceDirectedBubblesParams;
|
5
|
+
export declare const DEFAULT_RELATIONSHIP_LEGEND_PARAMS: RelationshipLegendParams;
|
6
|
+
export declare const DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS: RelationshipTooltipParams;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
export * from './defaults';
|
2
|
+
export { ForceDirected } from './plugins/ForceDirected';
|
3
|
+
export { ForceDirectedBubbles } from './plugins/ForceDirectedBubbles';
|
4
|
+
export { RelationshipLegend } from './plugins/RelationshipLegend';
|
5
|
+
export { RelationshipTooltip } from './plugins/RelationshipTooltip';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const RelationshipLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"relationship", "RelationshipLegend", import('@orbcharts/plugins-basic-types').RelationshipLegendParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const RelationshipTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"relationship", "RelationshipTooltip", import('@orbcharts/plugins-basic-types').RelationshipTooltipParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
|
-
import {
|
2
|
+
import { ContainerPosition } from '../../lib/core-types';
|
3
3
|
import * as d3 from 'd3';
|
4
4
|
export declare const seriesStartSelectionObservable: ({ selection, pluginName, separateSeries$, seriesLabels$, seriesContainerPosition$ }: {
|
5
5
|
selection: d3.Selection<any, unknown, any, unknown>;
|
6
6
|
pluginName: string;
|
7
7
|
separateSeries$: Observable<boolean>;
|
8
8
|
seriesLabels$: Observable<string[]>;
|
9
|
-
seriesContainerPosition$: Observable<
|
9
|
+
seriesContainerPosition$: Observable<ContainerPosition[]>;
|
10
10
|
}) => {
|
11
11
|
seriesStartSelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
12
12
|
};
|
@@ -15,7 +15,7 @@ export declare const seriesCenterSelectionObservable: ({ selection, pluginName,
|
|
15
15
|
pluginName: string;
|
16
16
|
separateSeries$: Observable<boolean>;
|
17
17
|
seriesLabels$: Observable<string[]>;
|
18
|
-
seriesContainerPosition$: Observable<
|
18
|
+
seriesContainerPosition$: Observable<ContainerPosition[]>;
|
19
19
|
}) => {
|
20
20
|
seriesCenterSelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
21
21
|
};
|
@@ -1,2 +1,3 @@
|
|
1
1
|
export declare function measureTextWidth(text: string, size?: number): number;
|
2
|
-
export declare function
|
2
|
+
export declare function getMinMax(data: number[]): [number, number];
|
3
|
+
export declare function toCurrency(num: number | null): string;
|
@@ -10,10 +10,11 @@ type Line = {
|
|
10
10
|
text: string;
|
11
11
|
};
|
12
12
|
export declare function renderCircleText(selection: d3.Selection<any, any, any, any>, { text, radius, lineHeight, isBreakAll, limit }: RenderCircleTextParams): d3.Selection<SVGTSpanElement, Line, SVGTextElement, any> | undefined;
|
13
|
-
export declare function renderTspansOnAxis(textSelection: d3.Selection<d3.BaseType, unknown, null, undefined>, { textArr, textSizePx, groupAxisPosition }: {
|
13
|
+
export declare function renderTspansOnAxis(textSelection: d3.Selection<d3.BaseType, unknown, null, undefined>, { textArr, textSizePx, groupAxisPosition, isContainerRotated }: {
|
14
14
|
textArr: string[];
|
15
15
|
textSizePx: number;
|
16
16
|
groupAxisPosition: 'top' | 'right' | 'bottom' | 'left';
|
17
|
+
isContainerRotated: boolean;
|
17
18
|
}): void;
|
18
19
|
export declare function renderTspansOnQuadrant(textSelection: d3.Selection<d3.BaseType, unknown, null, undefined>, { textArr, textSizePx, quadrant }: {
|
19
20
|
textArr: string[];
|
@@ -9,5 +9,6 @@ export declare function makeD3Arc({ axisWidth, innerRadius, outerRadius, padAngl
|
|
9
9
|
padAngle: number;
|
10
10
|
cornerRadius: number;
|
11
11
|
}): d3.Arc<any, d3.DefaultArcObject>;
|
12
|
-
export declare const parseTickFormatValue: (value: any, tickFormat: string | ((text: d3.NumberValue) => string)) => string;
|
13
|
-
export declare const parseDateTickFormatValue: (value: any, tickFormat: string | ((text: d3.NumberValue) => string)) => string;
|
12
|
+
export declare const parseTickFormatValue: (value: any, tickFormat: string | ((text: d3.NumberValue) => string | d3.NumberValue)) => string;
|
13
|
+
export declare const parseDateTickFormatValue: (value: any, tickFormat: string | ((text: d3.NumberValue) => string | d3.NumberValue)) => string;
|
14
|
+
export declare function isLightColor(color: string): boolean;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import * as d3 from 'd3';
|
3
|
-
export declare function d3EventObservable(selection: d3.Selection<any, any, any, any>, event: any): Observable<
|
3
|
+
export declare function d3EventObservable(selection: d3.Selection<any, any, any, any>, event: any): Observable<MouseEvent>;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { AxisPosition, ColorType, ChartParams, ComputedDatumBase,
|
1
|
+
import { AxisPosition, ColorType, ChartParams, ComputedDatumBase, ComputedDatumBaseValue, ComputedDatumBaseCategory } from '../../lib/core-types';
|
2
2
|
|
3
|
-
export declare function
|
3
|
+
export declare function getMinMaxValue(data: (ComputedDatumBase & ComputedDatumBaseValue)[]): [number, number];
|
4
4
|
export declare function getColor(colorType: ColorType, fullChartParams: ChartParams): string;
|
5
5
|
export declare function getSeriesValueColor(): void;
|
6
6
|
export declare function getCategoryValueColor({ datum, colorType, fullChartParams }: {
|
7
|
-
datum:
|
7
|
+
datum: ComputedDatumBaseCategory;
|
8
8
|
colorType: ColorType;
|
9
9
|
fullChartParams: ChartParams;
|
10
10
|
}): void;
|
package/lib/core-types.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
export * from '@orbcharts/core-types'
|
4
|
-
|
5
|
-
// test
|
6
|
-
// export * from '../../orbcharts-core-types/src'
|
7
|
-
|
1
|
+
|
2
|
+
|
3
|
+
export * from '@orbcharts/core-types'
|
4
|
+
|
5
|
+
// test
|
6
|
+
// export * from '../../orbcharts-core-types/src'
|
7
|
+
|
package/lib/core.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
export * from '@orbcharts/core'
|
4
|
-
|
5
|
-
// test
|
6
|
-
// export * from '../../orbcharts-core
|
1
|
+
|
2
|
+
|
3
|
+
export * from '@orbcharts/core'
|
4
|
+
|
5
|
+
// test
|
6
|
+
// export * from '../../orbcharts-core'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
|
2
|
-
export * from '@orbcharts/plugins-basic-types'
|
3
|
-
|
4
|
-
// test
|
5
|
-
// export * from '../../orbcharts-plugins-basic-types/src'
|
6
|
-
|
1
|
+
|
2
|
+
export * from '@orbcharts/plugins-basic-types'
|
3
|
+
|
4
|
+
// test
|
5
|
+
// export * from '../../orbcharts-plugins-basic-types/src'
|
6
|
+
|
package/package.json
CHANGED
@@ -1,44 +1,44 @@
|
|
1
|
-
{
|
2
|
-
"name": "@orbcharts/plugins-basic",
|
3
|
-
"version": "3.0.0-beta.
|
4
|
-
"description": "plugins for OrbCharts",
|
5
|
-
"author": "Blue Planet Inc.",
|
6
|
-
"license": "Apache-2.0",
|
7
|
-
"keywords": [
|
8
|
-
"d3",
|
9
|
-
"rxjs",
|
10
|
-
"svg",
|
11
|
-
"visualization",
|
12
|
-
"infographic",
|
13
|
-
"graph",
|
14
|
-
"chart"
|
15
|
-
],
|
16
|
-
"private": false,
|
17
|
-
"publishConfig": {
|
18
|
-
"access": "public",
|
19
|
-
"registry": "https://registry.npmjs.org/"
|
20
|
-
},
|
21
|
-
"files": [
|
22
|
-
"*"
|
23
|
-
],
|
24
|
-
"module": "./dist/orbcharts-plugins-basic.es.js",
|
25
|
-
"types": "./dist/src/index.d.ts",
|
26
|
-
"scripts": {
|
27
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
28
|
-
"build": "vite build --mode production"
|
29
|
-
},
|
30
|
-
"devDependencies": {
|
31
|
-
"@types/d3": "^7.4.0",
|
32
|
-
"ts-loader": "^9.4.2",
|
33
|
-
"typescript": "^5.0.4",
|
34
|
-
"vite": "^5.3.5",
|
35
|
-
"vite-plugin-dts": "^3.7.3"
|
36
|
-
},
|
37
|
-
"dependencies": {
|
38
|
-
"@orbcharts/core": "^3.0.0-beta.
|
39
|
-
"@orbcharts/core-types": "^3.0.0-beta.
|
40
|
-
"@orbcharts/plugins-basic-types": "^3.0.0-beta.
|
41
|
-
"d3": "^7.8.5",
|
42
|
-
"rxjs": "^7.8.1"
|
43
|
-
}
|
44
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@orbcharts/plugins-basic",
|
3
|
+
"version": "3.0.0-beta.20",
|
4
|
+
"description": "plugins for OrbCharts",
|
5
|
+
"author": "Blue Planet Inc.",
|
6
|
+
"license": "Apache-2.0",
|
7
|
+
"keywords": [
|
8
|
+
"d3",
|
9
|
+
"rxjs",
|
10
|
+
"svg",
|
11
|
+
"visualization",
|
12
|
+
"infographic",
|
13
|
+
"graph",
|
14
|
+
"chart"
|
15
|
+
],
|
16
|
+
"private": false,
|
17
|
+
"publishConfig": {
|
18
|
+
"access": "public",
|
19
|
+
"registry": "https://registry.npmjs.org/"
|
20
|
+
},
|
21
|
+
"files": [
|
22
|
+
"*"
|
23
|
+
],
|
24
|
+
"module": "./dist/orbcharts-plugins-basic.es.js",
|
25
|
+
"types": "./dist/src/index.d.ts",
|
26
|
+
"scripts": {
|
27
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
28
|
+
"build": "vite build --mode production"
|
29
|
+
},
|
30
|
+
"devDependencies": {
|
31
|
+
"@types/d3": "^7.4.0",
|
32
|
+
"ts-loader": "^9.4.2",
|
33
|
+
"typescript": "^5.0.4",
|
34
|
+
"vite": "^5.3.5",
|
35
|
+
"vite-plugin-dts": "^3.7.3"
|
36
|
+
},
|
37
|
+
"dependencies": {
|
38
|
+
"@orbcharts/core": "^3.0.0-beta.12",
|
39
|
+
"@orbcharts/core-types": "^3.0.0-beta.10",
|
40
|
+
"@orbcharts/plugins-basic-types": "^3.0.0-beta.14",
|
41
|
+
"d3": "^7.8.5",
|
42
|
+
"rxjs": "^7.8.1"
|
43
|
+
}
|
44
|
+
}
|