@fulate/echart 1.0.5 → 1.0.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.
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { EChartsPool, eChartsPoolKey } from "./pool";
2
2
  export type { EChartsPoolOptions } from "./pool";
3
3
  export { EChartsProperties, EChartsShape } from "./shape";
4
- export type { EChartsEventListener, EChartsShapeOption, EChartsShapeOptionPatch } from "./shape";
4
+ export type { EChartsEventListener, EChartsShapeOption } from "./shape";
5
5
  export type { EChartsActionPayload, EChartsDispatchActionOptions, EChartsInitOpts } from "./protocol";
6
6
  export { eChartsClipboardPlugin } from "./clipboard";
package/dist/shape.d.ts CHANGED
@@ -1,13 +1,11 @@
1
1
  import type { ElementTransformClass, Layer, PropertyChanges, Root } from "@fulate/core";
2
- import { Bitmap, RectangleProperties, type RectangleOption, type RectangleOptionPatch } from "@fulate/ui";
2
+ import { Bitmap, RectangleProperties, type RectangleOption } from "@fulate/ui";
3
3
  import type { EChartsActionPayload, EChartsDispatchActionOptions, EChartsInitOpts } from "./protocol";
4
4
  export type EChartsEventListener<Params = any> = (params: Params) => void;
5
5
  /** Whole-value chart configuration owned by authored/runtime property state. */
6
6
  export interface EChartsShapeOption<T = EChartsShape> extends RectangleOption<T> {
7
7
  echarts: EChartsInitOpts;
8
8
  }
9
- /** Authored/runtime patch; `echarts` is adopted as one whole value. */
10
- export type EChartsShapeOptionPatch<O extends EChartsShapeOption<any> = EChartsShapeOption> = RectangleOptionPatch<O>;
11
9
  /** Public properties base for typed EChartsShape subclasses. */
12
10
  export declare class EChartsProperties extends RectangleProperties {
13
11
  echarts: EChartsInitOpts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fulate/echart",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",