@tachybase/plugin-block-charts 0.23.58 → 1.0.6

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.
@@ -0,0 +1,3 @@
1
+ export declare const GroupBlock: (props: any) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const fieldTransformers: (item: any, data: any, api: any) => string;
3
+ export declare const InternalGroupBlock: (props: any) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ export declare const GroupBlockConfigure: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
3
+ export declare const transformers: {
4
+ option: ({
5
+ label: string;
6
+ value: string;
7
+ component: (val: number, locale?: string, isNeedNegative?: boolean) => string;
8
+ childrens?: undefined;
9
+ } | {
10
+ label: string;
11
+ value: string;
12
+ childrens: {
13
+ label: string;
14
+ value: string;
15
+ component: (val: number) => string;
16
+ }[];
17
+ component?: undefined;
18
+ })[];
19
+ };
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { SchemaSettings, SchemaToolbarProps } from '@tachybase/client';
3
+ export declare const GroupBlockContext: React.Context<any>;
4
+ export declare const GroupBlockProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
5
+ export declare const GroupBlockInitializer: () => import("react/jsx-runtime").JSX.Element;
6
+ export declare const groupBlockSettings: SchemaSettings<{}>;
7
+ export declare const GroupBlockToolbar: (props: React.JSX.IntrinsicAttributes & SchemaToolbarProps & {
8
+ children?: React.ReactNode;
9
+ }) => import("react/jsx-runtime").JSX.Element;