@tinacms/toolkit
Version:
Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.
38 lines (34 loc) • 1.05 kB
TypeScript
/**
*/
import * as React from 'react';
import { Form } from '../../forms';
interface FieldMetaProps extends React.HTMLAttributes<HTMLElement> {
name: string;
children: any;
actions?: any;
label?: string | boolean;
description?: string;
error?: string;
margin?: boolean;
index?: number;
triggerHoverEvents?: boolean;
tinaForm: Form;
}
export declare const ListFieldMeta: ({ name, label, description, error, margin, children, actions, index, tinaForm, triggerHoverEvents, ...props }: FieldMetaProps) => JSX.Element;
export declare const ListHeader: ({ children }: {
children?: any;
}) => JSX.Element;
export declare const ListMeta: ({ children }: {
children?: any;
}) => JSX.Element;
export declare const ListLabel: ({ children }: {
children?: any;
}) => JSX.Element;
export declare const ListPanel: ({ className, ...props }: {
[x: string]: any;
className?: string;
}) => JSX.Element;
export declare const EmptyList: ({ message }: {
message?: string;
}) => JSX.Element;
export {};