@skhemata/skhemata-form
Version:
Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.
25 lines • 752 B
JavaScript
import { html } from '@skhemata/skhemata-base';
import '../skhemata-form';
import { argTypes } from './argTypes';
export default {
title: 'General/SkhemataForm/SkhemataFormQuill',
component: 'skhemata-form-quill',
argTypes: {
...argTypes,
},
};
const Template = ({ label = 'Quill Editor', horizontal = false, description = 'Visual Editor', valid = true, }) => html `
<skhemata-form-quill
.label=${label}
.horizontal=${horizontal}
.description=${description}
.valid=${valid}
></skhemata-form-quill>
</skhemata-form>
`;
export const Example = Template.bind({});
Example.args = {
label: 'Quill Edtior',
description: 'Visual Editor',
};
//# sourceMappingURL=SkhemataFormQuill.stories.js.map