@orbcharts/plugins-basic 3.0.0-alpha.76 → 3.0.0-alpha.78

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.
Files changed (96) hide show
  1. package/dist/lib/plugins-basic-types.d.ts +1 -0
  2. package/dist/src/base/BaseBarStack.d.ts +1 -5
  3. package/dist/src/base/BaseBars.d.ts +1 -6
  4. package/dist/src/base/BaseBarsTriangle.d.ts +1 -6
  5. package/dist/src/base/BaseDots.d.ts +2 -8
  6. package/dist/src/base/BaseGroupAxis.d.ts +2 -16
  7. package/dist/src/base/BaseLegend.d.ts +2 -15
  8. package/dist/src/base/BaseLineAreas.d.ts +1 -4
  9. package/dist/src/base/BaseLines.d.ts +1 -4
  10. package/dist/src/base/BaseValueAxis.d.ts +2 -16
  11. package/dist/src/grid/defaults.d.ts +1 -1
  12. package/dist/src/grid/index.d.ts +0 -1
  13. package/dist/src/grid/plugins/BarStack.d.ts +1 -1
  14. package/dist/src/grid/plugins/Bars.d.ts +1 -1
  15. package/dist/src/grid/plugins/BarsPN.d.ts +1 -1
  16. package/dist/src/grid/plugins/BarsTriangle.d.ts +1 -1
  17. package/dist/src/grid/plugins/Dots.d.ts +1 -1
  18. package/dist/src/grid/plugins/GridLegend.d.ts +1 -1
  19. package/dist/src/grid/plugins/GroupAux.d.ts +1 -1
  20. package/dist/src/grid/plugins/GroupAxis.d.ts +1 -1
  21. package/dist/src/grid/plugins/LineAreas.d.ts +1 -1
  22. package/dist/src/grid/plugins/Lines.d.ts +1 -1
  23. package/dist/src/grid/plugins/ScalingArea.d.ts +1 -1
  24. package/dist/src/grid/plugins/ValueAxis.d.ts +1 -1
  25. package/dist/src/grid/plugins/ValueStackAxis.d.ts +1 -1
  26. package/dist/src/multiGrid/defaults.d.ts +1 -1
  27. package/dist/src/multiGrid/index.d.ts +0 -1
  28. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +1 -1
  29. package/dist/src/multiGrid/plugins/MultiBars.d.ts +1 -1
  30. package/dist/src/multiGrid/plugins/MultiBarsTriangle.d.ts +1 -1
  31. package/dist/src/multiGrid/plugins/MultiDots.d.ts +1 -1
  32. package/dist/src/multiGrid/plugins/MultiGridLegend.d.ts +1 -1
  33. package/dist/src/multiGrid/plugins/MultiGroupAxis.d.ts +1 -1
  34. package/dist/src/multiGrid/plugins/MultiLineAreas.d.ts +1 -1
  35. package/dist/src/multiGrid/plugins/MultiLines.d.ts +1 -1
  36. package/dist/src/multiGrid/plugins/MultiValueAxis.d.ts +1 -1
  37. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +1 -1
  38. package/dist/src/multiGrid/plugins/OverlappingValueAxes.d.ts +1 -1
  39. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +1 -1
  40. package/dist/src/noneData/defaults.d.ts +1 -1
  41. package/dist/src/noneData/index.d.ts +0 -1
  42. package/dist/src/noneData/plugins/Container.d.ts +1 -1
  43. package/dist/src/noneData/plugins/Tooltip.d.ts +1 -1
  44. package/dist/src/series/defaults.d.ts +1 -1
  45. package/dist/src/series/index.d.ts +0 -1
  46. package/dist/src/series/plugins/Bubbles.d.ts +1 -1
  47. package/dist/src/series/plugins/Pie.d.ts +1 -1
  48. package/dist/src/series/plugins/PieEventTexts.d.ts +1 -1
  49. package/dist/src/series/plugins/PieLabels.d.ts +1 -1
  50. package/dist/src/series/plugins/Rose.d.ts +1 -1
  51. package/dist/src/series/plugins/RoseLabels.d.ts +1 -1
  52. package/dist/src/series/plugins/SeriesLegend.d.ts +1 -1
  53. package/dist/src/tree/defaults.d.ts +1 -1
  54. package/dist/src/tree/index.d.ts +0 -1
  55. package/dist/src/tree/plugins/TreeLegend.d.ts +1 -1
  56. package/dist/src/tree/plugins/TreeMap.d.ts +1 -1
  57. package/lib/plugins-basic-types.ts +6 -0
  58. package/package.json +2 -1
  59. package/src/base/BaseBarStack.ts +6 -5
  60. package/src/base/BaseBars.ts +8 -7
  61. package/src/base/BaseBarsTriangle.ts +9 -7
  62. package/src/base/BaseDots.ts +11 -9
  63. package/src/base/BaseGroupAxis.ts +20 -19
  64. package/src/base/BaseLegend.ts +19 -17
  65. package/src/base/BaseLineAreas.ts +8 -6
  66. package/src/base/BaseLines.ts +14 -12
  67. package/src/base/BaseValueAxis.ts +18 -16
  68. package/src/grid/defaults.ts +1 -1
  69. package/src/grid/index.ts +1 -1
  70. package/src/grid/plugins/GroupAux.ts +1 -1
  71. package/src/multiGrid/defaults.ts +1 -1
  72. package/src/multiGrid/index.ts +1 -1
  73. package/src/multiGrid/plugins/MultiGridLegend.ts +1 -1
  74. package/src/noneData/defaults.ts +1 -1
  75. package/src/noneData/index.ts +1 -1
  76. package/src/series/defaults.ts +1 -1
  77. package/src/series/index.ts +1 -1
  78. package/src/series/plugins/Bubbles.ts +1 -1
  79. package/src/series/plugins/Pie.ts +1 -1
  80. package/src/series/plugins/PieEventTexts.ts +1 -1
  81. package/src/series/plugins/PieLabels.ts +1 -1
  82. package/src/series/plugins/Rose.ts +1 -1
  83. package/src/series/plugins/RoseLabels.ts +1 -1
  84. package/src/tree/defaults.ts +1 -1
  85. package/src/tree/index.ts +1 -1
  86. package/src/tree/plugins/TreeMap.ts +1 -1
  87. package/dist/src/grid/types.d.ts +0 -93
  88. package/dist/src/multiGrid/types.d.ts +0 -61
  89. package/dist/src/noneData/types.d.ts +0 -24
  90. package/dist/src/series/types.d.ts +0 -73
  91. package/dist/src/tree/types.d.ts +0 -21
  92. package/src/grid/types.ts +0 -124
  93. package/src/multiGrid/types.ts +0 -73
  94. package/src/noneData/types.ts +0 -26
  95. package/src/series/types.ts +0 -87
  96. package/src/tree/types.ts +0 -23
@@ -0,0 +1 @@
1
+ export * from '@orbcharts/plugins-basic-types';
@@ -1,12 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
3
  import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, DataFormatterGrid, EventGrid, ChartParams, GridContainerPosition, TransformData } from '../../lib/core-types';
4
+ import { BaseBarStackParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseBarStackParams {
6
- barWidth: number;
7
- barGroupPadding: number;
8
- barRadius: number | boolean;
9
- }
10
6
  interface BaseBarStackContext {
11
7
  selection: d3.Selection<any, unknown, any, unknown>;
12
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,13 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
3
  import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, GridContainerPosition, EventGrid, ChartParams, TransformData } from '../../lib/core-types';
4
+ import { BaseBarsParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseBarsParams {
6
- barWidth: number;
7
- barPadding: number;
8
- barGroupPadding: number;
9
- barRadius: number | boolean;
10
- }
11
6
  interface BaseBarsContext {
12
7
  selection: d3.Selection<any, unknown, any, unknown>;
13
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,13 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
3
  import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, DataFormatterTypeMap, EventGrid, ChartParams, GridContainerPosition, TransformData } from '../../lib/core-types';
4
+ import { BaseBarsTriangleParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseBarsTriangleParams {
6
- barWidth: number;
7
- barPadding: number;
8
- barGroupPadding: number;
9
- linearGradientOpacity: [number, number];
10
- }
11
6
  interface BaseBarsContext {
12
7
  selection: d3.Selection<any, unknown, any, unknown>;
13
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,14 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
- import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, EventGrid, ChartParams, GridContainerPosition, TransformData, ColorType } from '../../lib/core-types';
3
+ import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, EventGrid, ChartParams, GridContainerPosition, TransformData } from '../../lib/core-types';
4
+ import { BaseDotsParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseDotsParams {
6
- radius: number;
7
- fillColorType: ColorType;
8
- strokeColorType: ColorType;
9
- strokeWidth: number;
10
- onlyShowHighlighted: boolean;
11
- }
12
6
  interface BaseDotsContext {
13
7
  selection: d3.Selection<any, unknown, any, unknown>;
14
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,22 +1,8 @@
1
1
  import { Observable } from 'rxjs';
2
- import { ColorType, ComputedDataGrid, GridContainerPosition, DataFormatterGrid, ChartParams, TransformData } from '../../lib/core-types';
2
+ import { ComputedDataGrid, GridContainerPosition, DataFormatterGrid, ChartParams, TransformData } from '../../lib/core-types';
3
+ import { BaseGroupAxisParams } from '../../lib/plugins-basic-types';
3
4
  import { BasePluginFn } from './types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseGroupAxisParams {
6
- labelOffset: [number, number];
7
- labelColorType: ColorType;
8
- axisLineVisible: boolean;
9
- axisLineColorType: ColorType;
10
- ticks: number | null | 'all';
11
- tickFormat: string | ((text: any) => string);
12
- tickLineVisible: boolean;
13
- tickPadding: number;
14
- tickFullLine: boolean;
15
- tickFullLineDasharray: string;
16
- tickColorType: ColorType;
17
- tickTextRotate: number;
18
- tickTextColorType: ColorType;
19
- }
20
6
  interface BaseGroupAxisContext {
21
7
  selection: d3.Selection<any, unknown, any, unknown>;
22
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,21 +1,8 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
- import { ChartParams, Layout, ColorType } from '../../lib/core-types';
3
+ import { ChartParams, Layout } from '../../lib/core-types';
4
+ import { BaseLegendParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseLegendParams {
6
- position: 'top' | 'bottom' | 'left' | 'right';
7
- justify: 'start' | 'center' | 'end';
8
- padding: number;
9
- backgroundFill: ColorType;
10
- backgroundStroke: ColorType;
11
- textColorType: ColorType;
12
- gap: number;
13
- seriesList: Array<{
14
- listRectWidth: number;
15
- listRectHeight: number;
16
- listRectRadius: number;
17
- }>;
18
- }
19
6
  interface BaseLegendContext {
20
7
  rootSelection: d3.Selection<any, unknown, any, unknown>;
21
8
  seriesLabels$: Observable<string[]>;
@@ -1,11 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
3
  import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, DataFormatterGrid, EventGrid, GridContainerPosition, ChartParams, Layout, TransformData } from '../../lib/core-types';
4
+ import { BaseLineAreasParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseLineAreasParams {
6
- lineCurve: string;
7
- linearGradientOpacity: [number, number];
8
- }
9
6
  interface BaseLineAreasContext {
10
7
  selection: d3.Selection<any, unknown, any, unknown>;
11
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,11 +1,8 @@
1
1
  import { Observable, Subject } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
3
  import { ComputedDatumGrid, ComputedDataGrid, ComputedLayoutDataGrid, DataFormatterGrid, EventGrid, GridContainerPosition, ChartParams, Layout, TransformData } from '../../lib/core-types';
4
+ import { BaseLinesParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseLinesParams {
6
- lineCurve: string;
7
- lineWidth: number;
8
- }
9
6
  interface BaseLinesContext {
10
7
  selection: d3.Selection<any, unknown, any, unknown>;
11
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,22 +1,8 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { BasePluginFn } from './types';
3
- import { ComputedDataGrid, DataFormatterGrid, ChartParams, GridContainerPosition, TransformData, ColorType } from '../../lib/core-types';
3
+ import { ComputedDataGrid, DataFormatterGrid, ChartParams, GridContainerPosition, TransformData } from '../../lib/core-types';
4
+ import { BaseValueAxisParams } from '../../lib/plugins-basic-types';
4
5
  import * as d3 from 'd3';
5
- export interface BaseValueAxisParams {
6
- labelOffset: [number, number];
7
- labelColorType: ColorType;
8
- axisLineVisible: boolean;
9
- axisLineColorType: ColorType;
10
- ticks: number;
11
- tickFormat: string | ((text: d3.NumberValue) => string);
12
- tickLineVisible: boolean;
13
- tickPadding: number;
14
- tickFullLine: boolean;
15
- tickFullLineDasharray: string;
16
- tickColorType: ColorType;
17
- tickTextRotate: number;
18
- tickTextColorType: ColorType;
19
- }
20
6
  interface BaseLinesContext {
21
7
  selection: d3.Selection<any, unknown, any, unknown>;
22
8
  computedData$: Observable<ComputedDataGrid>;
@@ -1,4 +1,4 @@
1
- import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, ScalingAreaParams, GridLegendParams } from './types';
1
+ import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, ScalingAreaParams, GridLegendParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_LINES_PARAMS: LinesParams;
4
4
  export declare const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams;
@@ -1,5 +1,4 @@
1
1
  export * from './defaults';
2
- export * from './types';
3
2
  export { Lines } from './plugins/Lines';
4
3
  export { LineAreas } from './plugins/LineAreas';
5
4
  export { Bars } from './plugins/Bars';
@@ -1 +1 @@
1
- export declare const BarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarStack", import('..').BarStackParams>;
1
+ export declare const BarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarStack", import('@orbcharts/plugins-basic-types').BarStackParams>;
@@ -1 +1 @@
1
- export declare const Bars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Bars", import('..').BarsParams>;
1
+ export declare const Bars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Bars", import('@orbcharts/plugins-basic-types').BarsParams>;
@@ -1 +1 @@
1
- export declare const BarsPN: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarsPN", import('..').BarsParams>;
1
+ export declare const BarsPN: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarsPN", import('@orbcharts/plugins-basic-types').BarsParams>;
@@ -1 +1 @@
1
- export declare const BarsTriangle: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarsTriangle", import('..').BarsTriangleParams>;
1
+ export declare const BarsTriangle: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "BarsTriangle", import('@orbcharts/plugins-basic-types').BarsTriangleParams>;
@@ -1 +1 @@
1
- export declare const Dots: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Dots", import('..').DotsParams>;
1
+ export declare const Dots: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Dots", import('@orbcharts/plugins-basic-types').DotsParams>;
@@ -1 +1 @@
1
- export declare const GridLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridLegend", import('..').GridLegendParams>;
1
+ export declare const GridLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridLegend", import('@orbcharts/plugins-basic-types').GridLegendParams>;
@@ -1,3 +1,3 @@
1
- import { GroupAuxParams } from '../types';
1
+ import { GroupAuxParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const GroupAux: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GroupAux", GroupAuxParams>;
@@ -1 +1 @@
1
- export declare const GroupAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GroupAxis", import('..').GroupAxisParams>;
1
+ export declare const GroupAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GroupAxis", import('@orbcharts/plugins-basic-types').GroupAxisParams>;
@@ -1 +1 @@
1
- export declare const LineAreas: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "LineAreas", import('..').LineAreasParams>;
1
+ export declare const LineAreas: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "LineAreas", import('@orbcharts/plugins-basic-types').LineAreasParams>;
@@ -1 +1 @@
1
- export declare const Lines: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Lines", import('..').LinesParams>;
1
+ export declare const Lines: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "Lines", import('@orbcharts/plugins-basic-types').LinesParams>;
@@ -1 +1 @@
1
- export declare const ScalingArea: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ScalingArea", import('..').ScalingAreaParams>;
1
+ export declare const ScalingArea: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ScalingArea", import('@orbcharts/plugins-basic-types').ScalingAreaParams>;
@@ -1 +1 @@
1
- export declare const ValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ValueAxis", import('..').ValueAxisParams>;
1
+ export declare const ValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ValueAxis", import('@orbcharts/plugins-basic-types').ValueAxisParams>;
@@ -1 +1 @@
1
- export declare const ValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ValueStackAxis", import('..').ValueStackAxisParams>;
1
+ export declare const ValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ValueStackAxis", import('@orbcharts/plugins-basic-types').ValueStackAxisParams>;
@@ -1,4 +1,4 @@
1
- import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } from './types';
1
+ import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams;
4
4
  export declare const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams;
@@ -1,5 +1,4 @@
1
1
  export * from './defaults';
2
- export * from './types';
3
2
  export { MultiGridLegend } from './plugins/MultiGridLegend';
4
3
  export { MultiBars } from './plugins/MultiBars';
5
4
  export { MultiBarStack } from './plugins/MultiBarStack';
@@ -1 +1 @@
1
- export declare const MultiBarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBarStack", import('..').MultiBarStackParams>;
1
+ export declare const MultiBarStack: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBarStack", import('@orbcharts/plugins-basic-types').MultiBarStackParams>;
@@ -1 +1 @@
1
- export declare const MultiBars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBars", import('..').MultiBarsParams>;
1
+ export declare const MultiBars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBars", import('@orbcharts/plugins-basic-types').MultiBarsParams>;
@@ -1 +1 @@
1
- export declare const MultiBarsTriangle: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBarsTriangle", import('..').MultiBarsTriangleParams>;
1
+ export declare const MultiBarsTriangle: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiBarsTriangle", import('@orbcharts/plugins-basic-types').MultiBarsTriangleParams>;
@@ -1 +1 @@
1
- export declare const MultiDots: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiDots", import('..').MultiDotsParams>;
1
+ export declare const MultiDots: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiDots", import('@orbcharts/plugins-basic-types').MultiDotsParams>;
@@ -1 +1 @@
1
- export declare const MultiGridLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGridLegend", import('..').MultiGridLegendParams>;
1
+ export declare const MultiGridLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGridLegend", import('@orbcharts/plugins-basic-types/dist/src/types/MultiGridPluginParams').MultiGridLegendParams>;
@@ -1 +1 @@
1
- export declare const MultiGroupAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGroupAxis", import('..').MultiGroupAxisParams>;
1
+ export declare const MultiGroupAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGroupAxis", import('@orbcharts/plugins-basic-types').MultiGroupAxisParams>;
@@ -1 +1 @@
1
- export declare const MultiLineAreas: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiLineAreas", import('..').MultiLineAreasParams>;
1
+ export declare const MultiLineAreas: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiLineAreas", import('@orbcharts/plugins-basic-types').MultiLineAreasParams>;
@@ -1 +1 @@
1
- export declare const MultiLines: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiLines", import('..').MultiLinesParams>;
1
+ export declare const MultiLines: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiLines", import('@orbcharts/plugins-basic-types').MultiLinesParams>;
@@ -1 +1 @@
1
- export declare const MultiValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiValueAxis", import('..').MultiValueAxisParams>;
1
+ export declare const MultiValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiValueAxis", import('@orbcharts/plugins-basic-types').MultiValueAxisParams>;
@@ -1 +1 @@
1
- export declare const MultiValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiValueStackAxis", import('..').MultiValueAxisParams>;
1
+ export declare const MultiValueStackAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiValueStackAxis", import('@orbcharts/plugins-basic-types').MultiValueAxisParams>;
@@ -1 +1 @@
1
- export declare const OverlappingValueAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingValueAxes", import('..').OverlappingValueAxesParams>;
1
+ export declare const OverlappingValueAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingValueAxes", import('@orbcharts/plugins-basic-types').OverlappingValueAxesParams>;
@@ -1 +1 @@
1
- export declare const OverlappingValueStackAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingValueStackAxes", import('..').OverlappingValueStackAxesParams>;
1
+ export declare const OverlappingValueStackAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingValueStackAxes", import('@orbcharts/plugins-basic-types').OverlappingValueStackAxesParams>;
@@ -1,4 +1,4 @@
1
- import { ContainerPluginParams, TooltipParams } from './types';
1
+ import { ContainerPluginParams, TooltipParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const CONTAINER_PLUGIN_PARAMS: ContainerPluginParams;
4
4
  export declare const TOOLTIP_PARAMS: TooltipParams;
@@ -1,3 +1,2 @@
1
1
  export * from './defaults';
2
- export * from './types';
3
2
  export { Tooltip } from './plugins/Tooltip';
@@ -1 +1 @@
1
- export declare const Container: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<any, "Container", import('..').ContainerPluginParams>;
1
+ export declare const Container: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<any, "Container", import('@orbcharts/plugins-basic-types').ContainerPluginParams>;
@@ -1,3 +1,3 @@
1
1
  import { PluginConstructor } from '../../../lib/core-types';
2
2
 
3
- export declare const Tooltip: PluginConstructor<any, "Tooltip", import('..').TooltipParams>;
3
+ export declare const Tooltip: PluginConstructor<any, "Tooltip", import('@orbcharts/plugins-basic-types').TooltipParams>;
@@ -1,4 +1,4 @@
1
- import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams } from './types';
1
+ import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_BUBBLES_PARAMS: BubblesParams;
4
4
  export declare const DEFAULT_PIE_PARAMS: PieParams;
@@ -1,5 +1,4 @@
1
1
  export * from './defaults';
2
- export * from './types';
3
2
  export { Bubbles } from './plugins/Bubbles';
4
3
  export { Pie } from './plugins/Pie';
5
4
  export { PieEventTexts } from './plugins/PieEventTexts';
@@ -1,3 +1,3 @@
1
- import { BubblesParams } from '../types';
1
+ import { BubblesParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const Bubbles: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "Bubbles", BubblesParams>;
@@ -1,3 +1,3 @@
1
- import { PieParams } from '../types';
1
+ import { PieParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const Pie: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "Pie", PieParams>;
@@ -1,3 +1,3 @@
1
- import { PieEventTextsParams } from '../types';
1
+ import { PieEventTextsParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const PieEventTexts: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "PieEventTexts", PieEventTextsParams>;
@@ -1,3 +1,3 @@
1
- import { PieLabelsParams } from '../types';
1
+ import { PieLabelsParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const PieLabels: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "PieLabels", PieLabelsParams>;
@@ -1,6 +1,6 @@
1
1
  import { ComputedDatumSeries } from '../../../lib/core-types';
2
2
  import { D3PieDatum } from '../seriesUtils';
3
- import { RoseParams } from '../types';
3
+ import { RoseParams } from '../../../lib/plugins-basic-types';
4
4
 
5
5
  export interface PieDatum extends D3PieDatum {
6
6
  data: ComputedDatumSeries;
@@ -1,3 +1,3 @@
1
- import { RoseLabelsParams } from '../types';
1
+ import { RoseLabelsParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const RoseLabels: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "RoseLabels", RoseLabelsParams>;
@@ -1 +1 @@
1
- export declare const SeriesLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "SeriesLegend", import('..').SeriesLegendParams>;
1
+ export declare const SeriesLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "SeriesLegend", import('@orbcharts/plugins-basic-types').SeriesLegendParams>;
@@ -1,4 +1,4 @@
1
- import { TreeMapParams, TreeLegendParams } from './types';
1
+ import { TreeMapParams, TreeLegendParams } from '../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const DEFAULT_TREE_MAP_PARAMS: TreeMapParams;
4
4
  export declare const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams;
@@ -1,4 +1,3 @@
1
1
  export * from './defaults';
2
- export * from './types';
3
2
  export { TreeLegend } from './plugins/TreeLegend';
4
3
  export { TreeMap } from './plugins/TreeMap';
@@ -1 +1 @@
1
- export declare const TreeLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"tree", "TreeLegend", import('..').TreeLegendParams>;
1
+ export declare const TreeLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"tree", "TreeLegend", import('@orbcharts/plugins-basic-types').TreeLegendParams>;
@@ -1,3 +1,3 @@
1
- import { TreeMapParams } from '../types';
1
+ import { TreeMapParams } from '../../../lib/plugins-basic-types';
2
2
 
3
3
  export declare const TreeMap: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"tree", "TreeMap", TreeMapParams>;
@@ -0,0 +1,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,6 +1,6 @@
1
1
  {
2
2
  "name": "@orbcharts/plugins-basic",
3
- "version": "3.0.0-alpha.76",
3
+ "version": "3.0.0-alpha.78",
4
4
  "description": "plugins for OrbCharts",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -37,6 +37,7 @@
37
37
  "dependencies": {
38
38
  "@orbcharts/core": "^3.0.0-alpha.68",
39
39
  "@orbcharts/core-types": "^3.0.0-alpha.3",
40
+ "@orbcharts/plugins-basic-types": "^3.0.0-alpha.2",
40
41
  "d3": "^7.8.5",
41
42
  "rxjs": "^7.8.1"
42
43
  }
@@ -20,16 +20,17 @@ import type {
20
20
  GridContainerPosition,
21
21
  Layout,
22
22
  TransformData } from '../../lib/core-types'
23
+ import type { BaseBarStackParams } from '../../lib/plugins-basic-types'
23
24
  import { getD3TransitionEase } from '../utils/d3Utils'
24
25
  import { getClassName, getUniID } from '../utils/orbchartsUtils'
25
26
  import { gridSelectionsObservable } from '../grid/gridObservables'
26
27
  import { shareReplay } from 'rxjs/operators'
27
28
 
28
- export interface BaseBarStackParams {
29
- barWidth: number
30
- barGroupPadding: number
31
- barRadius: number | boolean
32
- }
29
+ // export interface BaseBarStackParams {
30
+ // barWidth: number
31
+ // barGroupPadding: number
32
+ // barRadius: number | boolean
33
+ // }
33
34
 
34
35
  interface BaseBarStackContext {
35
36
  selection: d3.Selection<any, unknown, any, unknown>
@@ -19,17 +19,18 @@ import type {
19
19
  ChartParams,
20
20
  Layout,
21
21
  TransformData } from '../../lib/core-types'
22
+ import type { BaseBarsParams } from '../../lib/plugins-basic-types'
22
23
  import { getD3TransitionEase } from '../utils/d3Utils'
23
24
  import { getClassName, getUniID } from '../utils/orbchartsUtils'
24
25
  import { gridSelectionsObservable } from '../grid/gridObservables'
25
26
 
26
- export interface BaseBarsParams {
27
- // barType: BarType
28
- barWidth: number
29
- barPadding: number
30
- barGroupPadding: number // 群組和群組間的間隔
31
- barRadius: number | boolean
32
- }
27
+ // export interface BaseBarsParams {
28
+ // // barType: BarType
29
+ // barWidth: number
30
+ // barPadding: number
31
+ // barGroupPadding: number // 群組和群組間的間隔
32
+ // barRadius: number | boolean
33
+ // }
33
34
 
34
35
  interface BaseBarsContext {
35
36
  selection: d3.Selection<any, unknown, any, unknown>
@@ -19,17 +19,19 @@ import type {
19
19
  ChartParams,
20
20
  GridContainerPosition,
21
21
  Layout,
22
- TransformData } from '../../lib/core-types'
22
+ TransformData
23
+ } from '../../lib/core-types'
24
+ import type { BaseBarsTriangleParams } from '../../lib/plugins-basic-types'
23
25
  import { getD3TransitionEase } from '../utils/d3Utils'
24
26
  import { getClassName, getUniID } from '../utils/orbchartsUtils'
25
27
  import { gridSelectionsObservable } from '../grid/gridObservables'
26
28
 
27
- export interface BaseBarsTriangleParams {
28
- barWidth: number
29
- barPadding: number
30
- barGroupPadding: number // 群組和群組間的間隔
31
- linearGradientOpacity: [number, number]
32
- }
29
+ // export interface BaseBarsTriangleParams {
30
+ // barWidth: number
31
+ // barPadding: number
32
+ // barGroupPadding: number // 群組和群組間的間隔
33
+ // linearGradientOpacity: [number, number]
34
+ // }
33
35
 
34
36
  interface BaseBarsContext {
35
37
  selection: d3.Selection<any, unknown, any, unknown>
@@ -17,18 +17,20 @@ import type {
17
17
  GridContainerPosition,
18
18
  Layout,
19
19
  TransformData,
20
- ColorType } from '../../lib/core-types'
20
+ ColorType
21
+ } from '../../lib/core-types'
22
+ import type { BaseDotsParams } from '../../lib/plugins-basic-types'
21
23
  import { getDatumColor, getClassName, getUniID } from '../utils/orbchartsUtils'
22
24
  import { gridSelectionsObservable } from '../grid/gridObservables'
23
25
 
24
- export interface BaseDotsParams {
25
- radius: number
26
- fillColorType: ColorType
27
- strokeColorType: ColorType
28
- strokeWidth: number
29
- // strokeWidthWhileHighlight: number
30
- onlyShowHighlighted: boolean
31
- }
26
+ // export interface BaseDotsParams {
27
+ // radius: number
28
+ // fillColorType: ColorType
29
+ // strokeColorType: ColorType
30
+ // strokeWidth: number
31
+ // // strokeWidthWhileHighlight: number
32
+ // onlyShowHighlighted: boolean
33
+ // }
32
34
 
33
35
  interface BaseDotsContext {
34
36
  selection: d3.Selection<any, unknown, any, unknown>