@univerjs-pro/engine-chart 1.0.0-alpha.2 → 1.0.0-alpha.4

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 (157) hide show
  1. package/README.md +9 -3
  2. package/lib/cjs/facade.js +1 -0
  3. package/lib/cjs/index.js +1 -1
  4. package/lib/es/facade.js +1 -0
  5. package/lib/es/index.js +1 -1
  6. package/lib/facade.js +1 -0
  7. package/lib/index.js +1 -1
  8. package/lib/types/chart-builder/chart-builder-adapter.d.ts +13 -0
  9. package/lib/types/chart-builder/chart-builder.d.ts +35 -0
  10. package/lib/types/chart-builder/chart-description.d.ts +3 -0
  11. package/lib/types/chart-builder/chart-types.d.ts +459 -0
  12. package/lib/types/chart-builder/configuration/aggregation.d.ts +7 -0
  13. package/lib/types/chart-builder/configuration/appearance.d.ts +8 -0
  14. package/lib/types/chart-builder/configuration/area.d.ts +3 -0
  15. package/lib/types/chart-builder/configuration/axes.d.ts +26 -0
  16. package/lib/types/chart-builder/configuration/axis-pointer.d.ts +9 -0
  17. package/lib/types/chart-builder/configuration/bar.d.ts +3 -0
  18. package/lib/types/chart-builder/configuration/cartesian-series.d.ts +25 -0
  19. package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +40 -0
  20. package/lib/types/chart-builder/configuration/combination.d.ts +10 -0
  21. package/lib/types/chart-builder/configuration/funnel.d.ts +4 -0
  22. package/lib/types/chart-builder/configuration/heatmap.d.ts +9 -0
  23. package/lib/types/chart-builder/configuration/index.d.ts +29 -0
  24. package/lib/types/chart-builder/configuration/invalid-value.d.ts +3 -0
  25. package/lib/types/chart-builder/configuration/legend.d.ts +3 -0
  26. package/lib/types/chart-builder/configuration/line.d.ts +3 -0
  27. package/lib/types/chart-builder/configuration/mapping.d.ts +4 -0
  28. package/lib/types/chart-builder/configuration/mark-lines.d.ts +3 -0
  29. package/lib/types/chart-builder/configuration/palette.d.ts +4 -0
  30. package/lib/types/chart-builder/configuration/pareto.d.ts +7 -0
  31. package/lib/types/chart-builder/configuration/pie.d.ts +23 -0
  32. package/lib/types/chart-builder/configuration/point-mapping.d.ts +5 -0
  33. package/lib/types/chart-builder/configuration/radar.d.ts +5 -0
  34. package/lib/types/chart-builder/configuration/relation.d.ts +14 -0
  35. package/lib/types/chart-builder/configuration/subtitle.d.ts +3 -0
  36. package/lib/types/chart-builder/configuration/theme.d.ts +4 -0
  37. package/lib/types/chart-builder/configuration/title.d.ts +3 -0
  38. package/lib/types/chart-builder/configuration/trendline.d.ts +12 -0
  39. package/lib/types/chart-builder/configuration/waterfall.d.ts +12 -0
  40. package/lib/types/chart-builder/configuration/word-cloud.d.ts +7 -0
  41. package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +24 -0
  42. package/lib/types/chart-builder/conversion/chart-model-fields.d.ts +115 -0
  43. package/lib/types/chart-builder/conversion/chart-type-converter.d.ts +6 -0
  44. package/lib/types/chart-builder/conversion/describe-chart-model.d.ts +11 -0
  45. package/lib/types/chart-builder/conversion/resolve-chart-model-data.d.ts +5 -0
  46. package/lib/types/chart-builder/detached-chart-builder-adapter.d.ts +19 -0
  47. package/lib/types/chart-builder/index.d.ts +12 -0
  48. package/lib/types/chart-builder/internal/deep-freeze.d.ts +1 -0
  49. package/lib/types/chart-builder/internal/host-builder-runtime.d.ts +5 -0
  50. package/lib/types/chart-builder/internal/merge-description.d.ts +2 -0
  51. package/lib/types/enum.d.ts +36 -0
  52. package/lib/types/facade/builders/f-area-chart-builder.d.ts +33 -0
  53. package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +33 -0
  54. package/lib/types/facade/builders/f-combination-chart-builder.d.ts +66 -0
  55. package/lib/types/facade/builders/f-funnel-chart-builder.d.ts +61 -0
  56. package/lib/types/facade/builders/f-heatmap-chart-builder.d.ts +124 -0
  57. package/lib/types/facade/builders/f-line-chart-builder.d.ts +36 -0
  58. package/lib/types/facade/builders/f-pareto-chart-builder.d.ts +112 -0
  59. package/lib/types/facade/builders/f-pie-chart-builder.d.ts +324 -0
  60. package/lib/types/facade/builders/f-radar-chart-builder.d.ts +62 -0
  61. package/lib/types/facade/builders/f-relation-chart-builder.d.ts +184 -0
  62. package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +33 -0
  63. package/lib/types/facade/builders/f-waterfall-chart-builder.d.ts +226 -0
  64. package/lib/types/facade/builders/f-word-cloud-chart-builder.d.ts +91 -0
  65. package/lib/types/facade/builders/index.d.ts +13 -0
  66. package/lib/types/facade/chart-builder-registry.d.ts +8 -0
  67. package/lib/types/facade/chart-builder-type-map.d.ts +30 -0
  68. package/lib/types/facade/chart-host-builder-types.d.ts +21 -0
  69. package/lib/types/facade/f-axis-chart-builder.d.ts +245 -0
  70. package/lib/types/facade/f-cartesian-chart-builder.d.ts +146 -0
  71. package/lib/types/facade/f-chart-base.d.ts +82 -0
  72. package/lib/types/facade/f-chart-builder-base.d.ts +331 -0
  73. package/lib/types/facade/f-charts-base.d.ts +74 -0
  74. package/lib/types/facade/f-enum.d.ts +75 -0
  75. package/lib/types/facade/index.d.ts +16 -0
  76. package/lib/types/facade/internal/chart-builder-facade-context.d.ts +12 -0
  77. package/lib/types/facade/internal/constants.d.ts +2 -0
  78. package/lib/types/facade/internal/host-builder-composer.d.ts +16 -0
  79. package/lib/types/facade/register-builders.d.ts +1 -0
  80. package/lib/types/index.d.ts +74 -15
  81. package/lib/types/models/chart-data-operators/build-chart-data.d.ts +6 -1
  82. package/lib/types/models/chart-data-operators/cartesian-point-data.d.ts +43 -0
  83. package/lib/types/models/chart-data-operators/operators.d.ts +6 -6
  84. package/lib/types/models/chart-element-axis-id.d.ts +9 -0
  85. package/lib/types/models/chart-element-edit-overlay/chart-element-edit-overlay.d.ts +38 -0
  86. package/lib/types/models/chart-element-edit-overlay/index.d.ts +4 -0
  87. package/lib/types/models/chart-element-edit-overlay/palette.d.ts +2 -0
  88. package/lib/types/models/chart-element-edit-overlay/resolve-chart-element-hit-layout.d.ts +16 -0
  89. package/lib/types/models/chart-element-edit-overlay/types.d.ts +20 -0
  90. package/lib/types/models/chart-host-style.d.ts +40 -0
  91. package/lib/types/models/chart-model.d.ts +181 -49
  92. package/lib/types/models/chart-render-input-resolver.d.ts +13 -0
  93. package/lib/types/models/chart-render-model-manager.service.d.ts +26 -0
  94. package/lib/types/models/chart-resource-serializer.d.ts +10 -0
  95. package/lib/types/models/chart-semantic-axes.d.ts +4 -0
  96. package/lib/types/models/constants/build-in-theme/index.d.ts +12 -12
  97. package/lib/types/models/constants/build-in-theme/univer-gradient1.d.ts +1 -1
  98. package/lib/types/models/constants/build-in-theme/univer-gradient2.d.ts +1 -1
  99. package/lib/types/models/constants/build-in-theme/univer-gradient3.d.ts +1 -1
  100. package/lib/types/models/constants/build-in-theme/univer-gradient4.d.ts +1 -1
  101. package/lib/types/models/constants/build-in-theme/univer-gradient5.d.ts +1 -1
  102. package/lib/types/models/constants/build-in-theme/univer-gradient6.d.ts +1 -1
  103. package/lib/types/models/constants/build-in-theme/univer1.d.ts +1 -1
  104. package/lib/types/models/constants/build-in-theme/univer2.d.ts +1 -1
  105. package/lib/types/models/constants/build-in-theme/univer3.d.ts +1 -1
  106. package/lib/types/models/constants/build-in-theme/univer4.d.ts +1 -1
  107. package/lib/types/models/constants/build-in-theme/univer5.d.ts +1 -1
  108. package/lib/types/models/constants/build-in-theme/univer6.d.ts +1 -1
  109. package/lib/types/models/constants/default-chart-style.d.ts +21 -1
  110. package/lib/types/models/constants/default.d.ts +3 -1
  111. package/lib/types/models/echart-render-model.d.ts +37 -2
  112. package/lib/types/models/image-chart-host.d.ts +2 -1
  113. package/lib/types/models/mode-converter/converters/waterfall-layout.d.ts +34 -0
  114. package/lib/types/models/mode-converter/mode-converter.d.ts +0 -2
  115. package/lib/types/models/mode-converter/render-spec-operators/legend-size.d.ts +2 -1
  116. package/lib/types/models/mode-converter/render-spec-operators/mark-line.operator.d.ts +3 -0
  117. package/lib/types/models/mode-converter/render-spec-operators/tools.d.ts +2 -3
  118. package/lib/types/models/series-style/series-style-resolver.d.ts +9 -0
  119. package/lib/types/source/chart-data-item.d.ts +3 -0
  120. package/lib/types/source/source-util.d.ts +1 -1
  121. package/lib/types/source/static-chart-source.d.ts +11 -3
  122. package/lib/types/types.d.ts +162 -39
  123. package/lib/types/util.d.ts +2 -4
  124. package/lib/types/utils/compact.d.ts +4 -0
  125. package/lib/types/wordcloud-chart/adapters/echarts/chart-view.d.ts +2 -2
  126. package/lib/types/wordcloud-chart/adapters/echarts/install.d.ts +2 -2
  127. package/lib/types/wordcloud-chart/adapters/echarts/layout-register.d.ts +2 -2
  128. package/lib/types/wordcloud-chart/adapters/echarts/series-model.d.ts +2 -2
  129. package/lib/types/wordcloud-chart/core/collision/box-shape-engine.d.ts +1 -1
  130. package/lib/types/wordcloud-chart/core/collision/engine.d.ts +1 -1
  131. package/lib/types/wordcloud-chart/core/collision/footprint.d.ts +1 -1
  132. package/lib/types/wordcloud-chart/core/collision/glyph-shape-engine.d.ts +1 -1
  133. package/lib/types/wordcloud-chart/core/collision/grid.d.ts +1 -1
  134. package/lib/types/wordcloud-chart/core/layout/candidates.d.ts +1 -1
  135. package/lib/types/wordcloud-chart/core/layout/layout-config.d.ts +1 -1
  136. package/lib/types/wordcloud-chart/core/layout/layout.d.ts +1 -2
  137. package/lib/types/wordcloud-chart/core/layout/phases.d.ts +1 -1
  138. package/lib/types/wordcloud-chart/core/layout/place-word.d.ts +1 -1
  139. package/lib/types/wordcloud-chart/core/layout/placement-stats.d.ts +1 -1
  140. package/lib/types/wordcloud-chart/core/layout/placement-types.d.ts +1 -1
  141. package/lib/types/wordcloud-chart/core/layout/placement-word-manager.d.ts +1 -1
  142. package/lib/types/wordcloud-chart/core/layout/runtime-mask.d.ts +1 -1
  143. package/lib/types/wordcloud-chart/core/layout/word-prepare.d.ts +1 -1
  144. package/lib/types/wordcloud-chart/core/shape/shape-mask.d.ts +1 -1
  145. package/lib/types/wordcloud-chart/index.d.ts +3 -2
  146. package/lib/types/wordcloud-chart/types.d.ts +2 -0
  147. package/lib/umd/facade.js +1 -0
  148. package/lib/umd/index.js +1 -1
  149. package/package.json +15 -5
  150. package/lib/types/wordcloud-chart/core/collision/types.d.ts +0 -1
  151. package/lib/types/wordcloud-chart/core/layout/types.d.ts +0 -1
  152. package/lib/types/wordcloud-chart/core/shape/types.d.ts +0 -1
  153. package/lib/types/wordcloud-chart/core/text/types.d.ts +0 -1
  154. package/lib/types/wordcloud-chart/core/types/option.d.ts +0 -1
  155. package/lib/types/wordcloud-chart/core/types/shape.d.ts +0 -1
  156. package/lib/types/wordcloud-chart/core/types/word.d.ts +0 -1
  157. package/lib/types/wordcloud-chart/echarts.d.ts +0 -2

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.