UNPKG

tinacms

Version:

[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms?color=blue)](https://github.com/tinacms/tinacms/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/tinacms.svg?style=flat)](https://www.npmjs.com/package/tinacms) [![Bui

33 lines (32 loc) 1.07 kB
import { Form } from '../../forms'; import * as React from 'react'; 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) => React.JSX.Element; export declare const ListHeader: ({ children }: { children?: any; }) => React.JSX.Element; export declare const ListMeta: ({ children }: { children?: any; }) => React.JSX.Element; export declare const ListLabel: ({ children }: { children?: any; }) => React.JSX.Element; export declare const ListPanel: ({ className, ...props }: { [x: string]: any; className?: string; }) => React.JSX.Element; export declare const EmptyList: ({ message }: { message?: string; }) => React.JSX.Element; export {};