gov-gui
Version:
Gov UI Component Library Typscript Build
179 lines (178 loc) • 4.79 kB
TypeScript
import '../../global/animate.min.css';
/** Cards are flexible content containers that can hold a variety of elements such as images, text, and buttons.
* They are commonly used to present information in a structured manner, allowing for easy interaction and engagement.
* Cards can include headers, paragraphs, and action buttons to enhance user experience and drive specific actions. */
declare const _default: {
title: string;
tags: string[];
parameters: {
actions: {
handles: string[];
};
};
argTypes: {
cardTitle: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
description: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
imageSrc: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
buttonText: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
showButton: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: boolean;
};
category: string;
};
};
alignment: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
imageClip: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
animation: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
animationDelay: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
animationSpeed: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
content: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
cardButtonClicked: {
action: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: () => void;
};
category: string;
};
};
};
};
export default _default;
export declare const Card: any;