@skhemata/skhemata-blog
Version:
Skhemata Blog Web Component. This web component provides several sub components in addition to main component, allowing featured blogs, blog listing and blog post display.
101 lines (100 loc) • 2.86 kB
TypeScript
import '../skhemata-blog.js';
import { ArgTypes, Story } from './argTypes.js';
declare const _default: {
title: string;
component: string;
argTypes: {
apiWordpress: {
name: string;
control: string;
table: {
category: string;
type: {
summary: string;
detail: string;
};
};
description: string;
};
navigate: {
name: string;
table: {
category: string;
type: {
summary: string;
detail: string;
};
};
description: string;
};
skhemataBlogTextColor: {
name: string;
control: string;
description: string;
defaultValue: string;
table: {
category: string;
type: string;
};
};
skhemataBlogFeaturedTitleColor: {
name: string;
description: string;
defaultValue: string;
control: string;
table: {
category: string;
type: string;
};
};
skhemataBlogFeaturedReadMoreColor: {
name: string;
description: string;
defaultValue: string;
control: string;
table: {
category: string;
type: string;
};
};
skhemataBlogFeaturedReadMoreBackgroundColor: {
name: string;
description: string;
defaultValue: string;
control: string;
table: {
category: string;
type: string;
};
};
skhemataBlogFeaturedReadMoreColorHover: {
name: string;
description: string;
defaultValue: string;
control: string;
table: {
category: string;
type: string;
};
};
skhemataBlogFeaturedReadMoreBackgroundColorHover: {
name: string;
description: string;
defaultValue: string;
control: string;
table: {
category: string;
type: string;
};
};
};
};
export default _default;
interface SkhemataBlogFeaturedArgTypes extends ArgTypes {
skhemataBlogFeaturedTitleColor?: string;
skhemataBlogFeaturedReadMoreColor?: string;
skhemataBlogFeaturedReadMoreBackgroundColor?: string;
skhemataBlogFeaturedReadMoreColorHover?: string;
skhemataBlogFeaturedReadMoreBackgroundColorHover?: string;
}
export declare const Example: Story<SkhemataBlogFeaturedArgTypes>;