@orbcharts/presets-basic 3.0.0-beta.5 → 3.0.0-beta.7

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 (87) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-presets-basic.es.js +342 -162
  3. package/dist/orbcharts-presets-basic.umd.js +1 -1
  4. package/dist/src/index.d.ts +1 -0
  5. package/dist/src/params.d.ts +2 -1
  6. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BASIC.d.ts +4 -0
  7. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.d.ts +4 -0
  8. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.d.ts +4 -0
  9. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.d.ts +4 -0
  10. package/dist/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.d.ts +4 -0
  11. package/dist/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.d.ts +4 -0
  12. package/dist/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.d.ts +4 -0
  13. package/dist/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.d.ts +4 -0
  14. package/dist/src/relationship/index.d.ts +8 -0
  15. package/dist/src/tree/PRESET_TREE_MAP_BASIC.d.ts +4 -0
  16. package/dist/src/tree/index.d.ts +1 -1
  17. package/dist/src/types.d.ts +29 -16
  18. package/lib/core-types.ts +7 -7
  19. package/lib/plugins-basic-types.ts +6 -6
  20. package/package.json +42 -42
  21. package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +56 -56
  22. package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +52 -52
  23. package/src/grid/PRESET_BARS_ROUND.ts +39 -39
  24. package/src/grid/PRESET_BARS_THIN.ts +36 -36
  25. package/src/grid/PRESET_GRID_BASIC.ts +27 -27
  26. package/src/grid/PRESET_GRID_HORIZONTAL.ts +44 -44
  27. package/src/grid/PRESET_GRID_PN_SCALE.ts +35 -35
  28. package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +35 -35
  29. package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +40 -40
  30. package/src/grid/PRESET_LINES_BASIC.ts +35 -35
  31. package/src/grid/PRESET_LINES_CURVE.ts +38 -38
  32. package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +37 -37
  33. package/src/grid/PRESET_LINES_HORIZONTAL.ts +51 -51
  34. package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +37 -37
  35. package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +40 -40
  36. package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +39 -39
  37. package/src/grid/PRESET_LINE_AREAS_BASIC.ts +43 -43
  38. package/src/grid/PRESET_LINE_AREAS_CURVE.ts +48 -48
  39. package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +47 -47
  40. package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +47 -47
  41. package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +45 -45
  42. package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +48 -48
  43. package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +50 -50
  44. package/src/grid/index.ts +22 -22
  45. package/src/index.ts +6 -5
  46. package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +38 -38
  47. package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +86 -86
  48. package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +58 -58
  49. package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +60 -60
  50. package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +86 -86
  51. package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +104 -104
  52. package/src/multiGrid/index.ts +6 -6
  53. package/src/multiValue/PRESET_MULTI_VALUE_BASIC.ts +23 -23
  54. package/src/multiValue/PRESET_MULTI_VALUE_SEPARATE_CATEGORY.ts +26 -26
  55. package/src/multiValue/PRESET_SCATTER_BUBBLES_LINEAR_OPACITY.ts +26 -26
  56. package/src/multiValue/PRESET_SCATTER_BUBBLES_SCALING_BY_RADIUS.ts +26 -26
  57. package/src/multiValue/index.ts +3 -3
  58. package/src/params.ts +80 -71
  59. package/src/relationship/PRESET_FORCE_DIRECTED_BASIC.ts +23 -0
  60. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_BASIC.ts +23 -0
  61. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_FIX_ARROW_WIDTH.ts +28 -0
  62. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ARROW.ts +30 -0
  63. package/src/relationship/PRESET_FORCE_DIRECTED_BUBBLES_NONE_ZOOM.ts +25 -0
  64. package/src/relationship/PRESET_FORCE_DIRECTED_FIX_FONT_SIZE.ts +30 -0
  65. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ARROW.ts +28 -0
  66. package/src/relationship/PRESET_FORCE_DIRECTED_NONE_ZOOM.ts +25 -0
  67. package/src/relationship/index.ts +8 -0
  68. package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +18 -18
  69. package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -29
  70. package/src/series/PRESET_PIE_BASIC.ts +18 -18
  71. package/src/series/PRESET_PIE_DONUT.ts +23 -23
  72. package/src/series/PRESET_PIE_HALF_DONUT.ts +36 -36
  73. package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +24 -24
  74. package/src/series/PRESET_ROSE_BASIC.ts +19 -19
  75. package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +24 -24
  76. package/src/series/PRESET_SERIES_BASIC.ts +16 -16
  77. package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +17 -17
  78. package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +18 -18
  79. package/src/series/PRESET_SERIES_SUM_SERIES.ts +18 -18
  80. package/src/series/index.ts +13 -13
  81. package/src/tree/{PRESET_TREE_BASIC.ts → PRESET_TREE_MAP_BASIC.ts} +27 -27
  82. package/src/tree/index.ts +1 -1
  83. package/src/types.ts +349 -321
  84. package/tsconfig.base.json +13 -13
  85. package/tsconfig.json +2 -2
  86. package/vite.config.js +22 -22
  87. package/dist/src/tree/PRESET_TREE_BASIC.d.ts +0 -4
@@ -1,19 +1,19 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_SERIES, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES: PresetPartial<'series', Partial<PresetSeriesPluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES',
8
- description: '分開顯示Series並合併Series資料',
9
- dataFormatter: {
10
- sort: (a, b) => b.value - a.value,
11
- separateSeries: true,
12
- sumSeries: true,
13
- },
14
- allPluginParams: {
15
- // ...ALL_PLUGIN_PARAMS_SERIES,
16
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
17
- }
18
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_SERIES, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES: PresetPartial<'series', Partial<PresetSeriesPluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES',
8
+ description: '分開顯示Series並合併Series資料',
9
+ dataFormatter: {
10
+ sort: (a, b) => b.value - a.value,
11
+ separateSeries: true,
12
+ sumSeries: true,
13
+ },
14
+ allPluginParams: {
15
+ // ...ALL_PLUGIN_PARAMS_SERIES,
16
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
17
+ }
18
+ }
19
19
  PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.dataFormatter.sort.toString = () => `(a, b) => b.value - a.value`
@@ -1,18 +1,18 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_SERIES, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_SERIES_SUM_SERIES: PresetPartial<'series', Partial<PresetSeriesPluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_SERIES_SUM_SERIES',
8
- description: '合併Series資料',
9
- dataFormatter: {
10
- sort: (a, b) => b.value - a.value,
11
- sumSeries: true
12
- },
13
- allPluginParams: {
14
- // ...ALL_PLUGIN_PARAMS_SERIES,
15
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
16
- }
17
- }
18
- PRESET_SERIES_SUM_SERIES.dataFormatter.sort.toString = () => `(a, b) => b.value - a.value`
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetSeriesPluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_SERIES, ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_SERIES_SUM_SERIES: PresetPartial<'series', Partial<PresetSeriesPluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_SERIES_SUM_SERIES',
8
+ description: '合併Series資料',
9
+ dataFormatter: {
10
+ sort: (a, b) => b.value - a.value,
11
+ sumSeries: true
12
+ },
13
+ allPluginParams: {
14
+ // ...ALL_PLUGIN_PARAMS_SERIES,
15
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
16
+ }
17
+ }
18
+ PRESET_SERIES_SUM_SERIES.dataFormatter.sort.toString = () => `(a, b) => b.value - a.value`
@@ -1,13 +1,13 @@
1
- export { PRESET_BUBBLES_SCALING_BY_RADIUS } from './PRESET_BUBBLES_SCALING_BY_RADIUS'
2
- export { PRESET_BUBBLES_SEPARATE_SERIES } from './PRESET_BUBBLES_SEPARATE_SERIES'
3
- export { PRESET_PIE_BASIC } from './PRESET_PIE_BASIC'
4
- export { PRESET_PIE_DONUT } from './PRESET_PIE_DONUT'
5
- export { PRESET_PIE_HALF_DONUT } from './PRESET_PIE_HALF_DONUT'
6
- export { PRESET_PIE_WITH_INNER_LABELS } from './PRESET_PIE_WITH_INNER_LABELS'
7
- export { PRESET_ROSE_BASIC } from './PRESET_ROSE_BASIC'
8
- export { PRESET_ROSE_SCALING_BY_RADIUS } from './PRESET_ROSE_SCALING_BY_RADIUS'
9
- export { PRESET_SERIES_BASIC } from './PRESET_SERIES_BASIC'
10
- // export { PRESET_SERIES_DESC } from './PRESET_SERIES_DESC'
11
- export { PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES } from './PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES'
12
- export { PRESET_SERIES_SEPARATE_SERIES } from './PRESET_SERIES_SEPARATE_SERIES'
13
- export { PRESET_SERIES_SUM_SERIES } from './PRESET_SERIES_SUM_SERIES'
1
+ export { PRESET_BUBBLES_SCALING_BY_RADIUS } from './PRESET_BUBBLES_SCALING_BY_RADIUS'
2
+ export { PRESET_BUBBLES_SEPARATE_SERIES } from './PRESET_BUBBLES_SEPARATE_SERIES'
3
+ export { PRESET_PIE_BASIC } from './PRESET_PIE_BASIC'
4
+ export { PRESET_PIE_DONUT } from './PRESET_PIE_DONUT'
5
+ export { PRESET_PIE_HALF_DONUT } from './PRESET_PIE_HALF_DONUT'
6
+ export { PRESET_PIE_WITH_INNER_LABELS } from './PRESET_PIE_WITH_INNER_LABELS'
7
+ export { PRESET_ROSE_BASIC } from './PRESET_ROSE_BASIC'
8
+ export { PRESET_ROSE_SCALING_BY_RADIUS } from './PRESET_ROSE_SCALING_BY_RADIUS'
9
+ export { PRESET_SERIES_BASIC } from './PRESET_SERIES_BASIC'
10
+ // export { PRESET_SERIES_DESC } from './PRESET_SERIES_DESC'
11
+ export { PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES } from './PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES'
12
+ export { PRESET_SERIES_SEPARATE_SERIES } from './PRESET_SERIES_SEPARATE_SERIES'
13
+ export { PRESET_SERIES_SUM_SERIES } from './PRESET_SERIES_SUM_SERIES'
@@ -1,27 +1,27 @@
1
- import type { PresetPartial } from '../../lib/core-types'
2
- import type { PresetTreePluginParams, PresetNoneDataPluginParams } from '../types'
3
- // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
-
5
- export const PRESET_TREE_BASIC: PresetPartial<'tree', Partial<PresetTreePluginParams>
6
- & Partial<PresetNoneDataPluginParams>> = {
7
- name: 'PRESET_TREE_BASIC',
8
- description: '基本Tree參數',
9
- chartParams: {
10
- padding: {
11
- top: 40,
12
- right: 40,
13
- bottom: 60,
14
- left: 40
15
- },
16
- },
17
- allPluginParams: {
18
- // ...ALL_PLUGIN_PARAMS_NONE_DATA,
19
- TreeMap: {},
20
- TreeLegend: {
21
- // position: 'bottom',
22
- // justify: 'center',
23
- placement: 'bottom',
24
- padding: 14,
25
- }
26
- }
27
- }
1
+ import type { PresetPartial } from '../../lib/core-types'
2
+ import type { PresetTreePluginParams, PresetNoneDataPluginParams } from '../types'
3
+ // import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
4
+
5
+ export const PRESET_TREE_MAP_BASIC: PresetPartial<'tree', Partial<PresetTreePluginParams>
6
+ & Partial<PresetNoneDataPluginParams>> = {
7
+ name: 'PRESET_TREE_MAP_BASIC',
8
+ description: '基本Tree Map參數',
9
+ chartParams: {
10
+ padding: {
11
+ top: 40,
12
+ right: 40,
13
+ bottom: 60,
14
+ left: 40
15
+ },
16
+ },
17
+ allPluginParams: {
18
+ // ...ALL_PLUGIN_PARAMS_NONE_DATA,
19
+ TreeMap: {},
20
+ TreeLegend: {
21
+ // position: 'bottom',
22
+ // justify: 'center',
23
+ placement: 'bottom',
24
+ padding: 14,
25
+ }
26
+ }
27
+ }
package/src/tree/index.ts CHANGED
@@ -1 +1 @@
1
- export { PRESET_TREE_BASIC } from './PRESET_TREE_BASIC'
1
+ export { PRESET_TREE_MAP_BASIC } from './PRESET_TREE_MAP_BASIC'