@univerjs-pro/engine-chart 1.0.0-alpha.3 → 1.0.0-alpha.5

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 (107) hide show
  1. package/lib/cjs/facade.js +1 -0
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/es/facade.js +1 -0
  4. package/lib/es/index.js +1 -1
  5. package/lib/facade.js +1 -0
  6. package/lib/index.js +1 -1
  7. package/lib/types/chart-builder/chart-builder-adapter.d.ts +13 -0
  8. package/lib/types/chart-builder/chart-builder.d.ts +35 -0
  9. package/lib/types/chart-builder/chart-description.d.ts +3 -0
  10. package/lib/types/chart-builder/chart-types.d.ts +459 -0
  11. package/lib/types/chart-builder/configuration/aggregation.d.ts +7 -0
  12. package/lib/types/chart-builder/configuration/appearance.d.ts +8 -0
  13. package/lib/types/chart-builder/configuration/area.d.ts +3 -0
  14. package/lib/types/chart-builder/configuration/axes.d.ts +26 -0
  15. package/lib/types/chart-builder/configuration/axis-pointer.d.ts +9 -0
  16. package/lib/types/chart-builder/configuration/bar.d.ts +3 -0
  17. package/lib/types/chart-builder/configuration/cartesian-series.d.ts +25 -0
  18. package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +40 -0
  19. package/lib/types/chart-builder/configuration/combination.d.ts +10 -0
  20. package/lib/types/chart-builder/configuration/funnel.d.ts +4 -0
  21. package/lib/types/chart-builder/configuration/heatmap.d.ts +9 -0
  22. package/lib/types/chart-builder/configuration/index.d.ts +29 -0
  23. package/lib/types/chart-builder/configuration/invalid-value.d.ts +3 -0
  24. package/lib/types/chart-builder/configuration/legend.d.ts +3 -0
  25. package/lib/types/chart-builder/configuration/line.d.ts +3 -0
  26. package/lib/types/chart-builder/configuration/mapping.d.ts +4 -0
  27. package/lib/types/chart-builder/configuration/mark-lines.d.ts +3 -0
  28. package/lib/types/chart-builder/configuration/palette.d.ts +4 -0
  29. package/lib/types/chart-builder/configuration/pareto.d.ts +7 -0
  30. package/lib/types/chart-builder/configuration/pie.d.ts +23 -0
  31. package/lib/types/chart-builder/configuration/point-mapping.d.ts +5 -0
  32. package/lib/types/chart-builder/configuration/radar.d.ts +5 -0
  33. package/lib/types/chart-builder/configuration/relation.d.ts +14 -0
  34. package/lib/types/chart-builder/configuration/subtitle.d.ts +3 -0
  35. package/lib/types/chart-builder/configuration/theme.d.ts +4 -0
  36. package/lib/types/chart-builder/configuration/title.d.ts +3 -0
  37. package/lib/types/chart-builder/configuration/trendline.d.ts +12 -0
  38. package/lib/types/chart-builder/configuration/waterfall.d.ts +12 -0
  39. package/lib/types/chart-builder/configuration/word-cloud.d.ts +7 -0
  40. package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +24 -0
  41. package/lib/types/chart-builder/conversion/chart-model-fields.d.ts +115 -0
  42. package/lib/types/chart-builder/conversion/chart-type-converter.d.ts +6 -0
  43. package/lib/types/chart-builder/conversion/describe-chart-model.d.ts +11 -0
  44. package/lib/types/chart-builder/conversion/resolve-chart-model-data.d.ts +5 -0
  45. package/lib/types/chart-builder/detached-chart-builder-adapter.d.ts +19 -0
  46. package/lib/types/chart-builder/index.d.ts +12 -0
  47. package/lib/types/chart-builder/internal/deep-freeze.d.ts +1 -0
  48. package/lib/types/chart-builder/internal/host-builder-runtime.d.ts +5 -0
  49. package/lib/types/chart-builder/internal/merge-description.d.ts +2 -0
  50. package/lib/types/enum.d.ts +28 -0
  51. package/lib/types/facade/builders/f-area-chart-builder.d.ts +33 -0
  52. package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +33 -0
  53. package/lib/types/facade/builders/f-combination-chart-builder.d.ts +66 -0
  54. package/lib/types/facade/builders/f-funnel-chart-builder.d.ts +61 -0
  55. package/lib/types/facade/builders/f-heatmap-chart-builder.d.ts +124 -0
  56. package/lib/types/facade/builders/f-line-chart-builder.d.ts +36 -0
  57. package/lib/types/facade/builders/f-pareto-chart-builder.d.ts +112 -0
  58. package/lib/types/facade/builders/f-pie-chart-builder.d.ts +324 -0
  59. package/lib/types/facade/builders/f-radar-chart-builder.d.ts +62 -0
  60. package/lib/types/facade/builders/f-relation-chart-builder.d.ts +184 -0
  61. package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +33 -0
  62. package/lib/types/facade/builders/f-waterfall-chart-builder.d.ts +226 -0
  63. package/lib/types/facade/builders/f-word-cloud-chart-builder.d.ts +91 -0
  64. package/lib/types/facade/builders/index.d.ts +13 -0
  65. package/lib/types/facade/chart-builder-registry.d.ts +8 -0
  66. package/lib/types/facade/chart-builder-type-map.d.ts +30 -0
  67. package/lib/types/facade/chart-host-builder-types.d.ts +21 -0
  68. package/lib/types/facade/f-axis-chart-builder.d.ts +245 -0
  69. package/lib/types/facade/f-cartesian-chart-builder.d.ts +146 -0
  70. package/lib/types/facade/f-chart-base.d.ts +82 -0
  71. package/lib/types/facade/f-chart-builder-base.d.ts +331 -0
  72. package/lib/types/facade/f-charts-base.d.ts +74 -0
  73. package/lib/types/facade/f-enum.d.ts +75 -0
  74. package/lib/types/facade/index.d.ts +16 -0
  75. package/lib/types/facade/internal/chart-builder-facade-context.d.ts +12 -0
  76. package/lib/types/facade/internal/constants.d.ts +2 -0
  77. package/lib/types/facade/internal/host-builder-composer.d.ts +16 -0
  78. package/lib/types/facade/register-builders.d.ts +1 -0
  79. package/lib/types/index.d.ts +10 -54
  80. package/lib/types/models/chart-host-style.d.ts +6 -1
  81. package/lib/types/models/chart-model.d.ts +141 -18
  82. package/lib/types/models/chart-resource-serializer.d.ts +10 -0
  83. package/lib/types/models/chart-semantic-axes.d.ts +4 -0
  84. package/lib/types/models/constants/default-chart-style.d.ts +21 -1
  85. package/lib/types/models/mode-converter/converters/waterfall-layout.d.ts +34 -0
  86. package/lib/types/models/mode-converter/render-spec-operators/mark-line.operator.d.ts +3 -0
  87. package/lib/types/models/mode-converter/render-spec-operators/tools.d.ts +2 -3
  88. package/lib/types/source/chart-data-item.d.ts +3 -0
  89. package/lib/types/types.d.ts +61 -2
  90. package/lib/types/util.d.ts +1 -3
  91. package/lib/types/utils/compact.d.ts +4 -0
  92. package/lib/umd/facade.js +1 -0
  93. package/lib/umd/index.js +1 -1
  94. package/package.json +14 -4
  95. package/lib/types/chart-model-api/chart-model-api.d.ts +0 -2
  96. package/lib/types/chart-model-api/chart-type-manifest.d.ts +0 -128
  97. package/lib/types/chart-model-api/chart-type-registry.d.ts +0 -56
  98. package/lib/types/chart-model-api/chart-type.d.ts +0 -7
  99. package/lib/types/chart-model-api/constants.d.ts +0 -99
  100. package/lib/types/chart-model-api/describe.d.ts +0 -3
  101. package/lib/types/chart-model-api/index.d.ts +0 -8
  102. package/lib/types/chart-model-api/patch-builder.d.ts +0 -9
  103. package/lib/types/chart-model-api/series-selector.d.ts +0 -3
  104. package/lib/types/chart-model-api/types.d.ts +0 -452
  105. package/lib/types/chart-model-api/utils.d.ts +0 -10
  106. package/lib/types/chart-model-api/validate.d.ts +0 -5
  107. package/lib/types/f-base-chart.d.ts +0 -25

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.