UNPKG

@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.

121 lines (120 loc) 3.25 kB
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; }; blogPagePath: { name: string; table: { category: string; type: { summary: string; }; }; description: string; }; navigate: { name: string; table: { category: string; type: { summary: string; detail: string; }; }; description: string; }; slug: { name: string; control: string; table: { category: string; type: { summary: string; }; }; description: string; }; skhemataBlogTextColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; skhemataBlogLinkColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; skhemataBlogPostBackButtonColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; skhemataBlogPostBackButtonBackgroundColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; skhemataBlogPostSocialIconColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; skhemataBlogPostHeadingColor: { name: string; control: string; description: string; defaultValue: string; table: { category: string; type: string; }; }; }; }; export default _default; interface SkhemataBlogPostArgTypes extends ArgTypes { skhemataBlogPostHeadingColor?: string; skhemataBlogPostBackButtonColor?: string; skhemataBlogPostBackButtonBackgroundColor?: string; skhemataBlogPostSocialIconColor?: string; } export declare const Example: Story<SkhemataBlogPostArgTypes>;