@tachybase/plugin-block-charts 1.3.17 → 1.3.19

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.
@@ -194,10 +194,10 @@ export declare const useChartFilter: () => {
194
194
  collection: string;
195
195
  query: any;
196
196
  }, filterValues: any) => any;
197
- getTranslatedTitle: (title: string) => string;
197
+ getTranslatedTitle: (this: unknown, title: string) => string;
198
198
  };
199
199
  export declare const useFilterVariable: () => {
200
- label: string;
200
+ label: any;
201
201
  value: string;
202
202
  key: string;
203
203
  children: {
@@ -1,14 +1,14 @@
1
1
  export declare const useDateVariable: ({ schema }: {
2
2
  schema: any;
3
3
  }) => {
4
- label: string;
4
+ label: any;
5
5
  value: string;
6
6
  key: string;
7
7
  disabled: boolean;
8
8
  children: {
9
9
  key: string;
10
10
  value: string;
11
- label: string;
11
+ label: any;
12
12
  disabled: boolean;
13
13
  }[];
14
14
  };
@@ -1,7 +1,7 @@
1
1
  export declare const useUserVariable: ({ schema }: {
2
2
  schema: any;
3
3
  }) => {
4
- label: string;
4
+ label: any;
5
5
  value: string;
6
6
  key: string;
7
7
  children: any;
@@ -1,5 +1,5 @@
1
1
  export declare const useVariableOptions: () => ({
2
- label: string;
2
+ label: any;
3
3
  value: string;
4
4
  key: string;
5
5
  children: {