UNPKG

@skhemata/skhemata-crowdfunding-campaign

Version:

Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.

61 lines (52 loc) 1.31 kB
import { html, TemplateResult } from '@skhemata/skhemata-base'; import '../skhemata-crowdfunding-campaign.js'; export default { title: 'SkhemataCrowdfundingCampaign', component: 'skhemata-crowdfunding-campaign', argTypes: { title: { control: 'text' }, counter: { control: 'number' }, textColor: { control: 'color' }, }, }; interface Story<T> { (args: T): TemplateResult; args?: Partial<T>; argTypes?: Record<string, unknown>; } interface ArgTypes { title?: string; counter?: number; textColor?: string; slot?: TemplateResult; } const Template: Story<ArgTypes> = ({ title = 'Hello world', counter = 5, textColor, slot, }: ArgTypes) => html` <skhemata-crowdfunding-campaign style="--skhemata-crowdfunding-campaign-text-color: ${textColor || 'black'}" .title=${title} .counter=${counter} > ${slot} </skhemata-crowdfunding-campaign> `; export const Regular = Template.bind({}); export const CustomTitle = Template.bind({}); CustomTitle.args = { title: 'My title', }; export const CustomCounter = Template.bind({}); CustomCounter.args = { counter: 123456, }; export const SlottedContent = Template.bind({}); SlottedContent.args = { slot: html`<p>Slotted content</p>`, }; SlottedContent.argTypes = { slot: { table: { disable: true } }, };