@tachybase/plugin-block-charts 0.23.40 → 0.23.47

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.
@@ -9,7 +9,7 @@ export declare class GroupedTable extends AntdChart {
9
9
  * measures 度量配置
10
10
  * fieldProps 度量和维度构造的列配置, interface 维度类型, transformer 维度转换器 label 显示名称
11
11
  * dimensions 维度配置
12
- * query 图表查询条件, measures 度量配置, dimensions 维度配置, filters 过滤条件, orders 排序条件, limit 限制条数
12
+ * query 图表查询条件, measures 指标配置, dimensions 维度配置, filters 过滤条件, orders 排序条件, limit 限制条数
13
13
  */
14
14
  getProps({ data, fieldProps, advanced, ctx }: RenderProps): {
15
15
  bordered: boolean;
@@ -3,7 +3,9 @@ interface IOptions {
3
3
  [key: string]: any;
4
4
  };
5
5
  dataIndex: string;
6
- render: Function | undefined;
6
+ render?: Function | undefined;
7
+ dimensions: string[];
8
+ isHiddenField: boolean;
7
9
  }
8
10
  export declare function renderText(text: string | number | null | undefined, record: Record<string, any>, options: IOptions): string | number;
9
11
  export {};
@@ -1,2 +1,2 @@
1
1
  import React from 'react';
2
- export declare const ChartFilterCheckbox: React.ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & React.RefAttributes<unknown>>;
2
+ export declare const ChartFilterCheckbox: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;