@playbooks/ui
Version:
An interface library for Playbooks.
135 lines (132 loc) • 4.3 kB
TypeScript
// Generated by dts-bundle-generator v9.5.1
export interface Feedback {
type: string;
icon?: any;
title?: string;
text?: string;
tailwind?: any;
children?: any;
}
export declare const Feedback: ({ type, icon, title, text, tailwind, children }: Feedback) => import("react/jsx-runtime").JSX.Element;
export declare const ListFeedback: ({ icon, title, text, children, tailwind }: {
icon: any;
title: any;
text: any;
children: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const PageFeedback: ({ icon, title, text, children, tailwind }: {
icon: any;
title: any;
text: any;
children: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const PreviewFeedback: ({ icon, text, children, tailwind }: {
icon: any;
text: any;
children: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const SearchFeedback: ({ icon, text, children, tailwind }: {
icon: any;
text: any;
children: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const TableFeedback: ({ icon, title, text, tailwind }: {
icon: any;
title: any;
text: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Item: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const BadgeItem: ({ keyName, loading, value, tailwind }: {
keyName: any;
loading: any;
value: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const LinkItem: ({ keyName, loading, value, display, tailwind }: {
keyName: any;
loading: any;
value: any;
display: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ListItems: ({ keyName, loading, value, children, tailwind }: {
keyName: any;
loading: any;
value: any;
children: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const TextItem: ({ keyName, disclaimer, loading, value, tailwind }: {
keyName: any;
disclaimer: any;
loading: any;
value: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Pagination: ({ type, meta, params, setParams, taskRunning }: {
type?: string;
meta: any;
params: any;
setParams: any;
taskRunning?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
export declare const BtnPagination: ({ meta, params, setParams, taskRunning }: {
meta: any;
params: any;
setParams: any;
taskRunning: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const PagePagination: ({ meta, params, setParams }: {
meta: any;
params: any;
setParams: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const SliderPagination: ({ meta, params, setParams }: {
meta: any;
params: any;
setParams: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Skeleton: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const BasicSkeleton: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const GridSkeleton: ({ tailwind }: {
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ItemSkeleton: ({ count }: {
count: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ListSkeleton: ({ tailwind }: {
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const SearchSkeleton: ({ tailwind }: {
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const TableSkeleton: ({ count, grid, tailwind }: {
count: any;
grid: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Toast: (props: any) => import("react/jsx-runtime").JSX.Element;
export declare const ErrorToast: ({ toast, onRemove }: {
toast: any;
onRemove: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const InfoToast: ({ toast, onRemove }: {
toast: any;
onRemove: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const SuccessToast: ({ toast, onRemove }: {
toast: any;
onRemove: any;
}) => import("react/jsx-runtime").JSX.Element;
export declare const ViewToggle: ({ value, options, onClick, tailwind }: {
value: any;
options: any;
onClick: any;
tailwind: any;
}) => import("react/jsx-runtime").JSX.Element;
export {};