mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
55c201eb21
* convert all stories to typescript * stricter typing for element-ui imports
72 lines
1.3 KiB
JavaScript
72 lines
1.3 KiB
JavaScript
import './font-awesome-icons';
|
|
import './storybook.scss';
|
|
|
|
import ElementUI from 'element-ui';
|
|
import lang from 'element-ui/lib/locale/lang/en';
|
|
import locale from 'element-ui/lib/locale';
|
|
|
|
import designSystemComponents from '../src/plugins/n8nComponents';
|
|
|
|
import Vue from 'vue';
|
|
|
|
Vue.use(ElementUI);
|
|
Vue.use(designSystemComponents);
|
|
|
|
locale.use(lang);
|
|
|
|
// https://github.com/storybookjs/storybook/issues/6153
|
|
Vue.prototype.toJSON = function () {
|
|
return this;
|
|
};
|
|
|
|
export const parameters = {
|
|
actions: {
|
|
argTypesRegex: '^on[A-Z].*',
|
|
},
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
backgrounds: {
|
|
default: '--color-background-xlight',
|
|
values: [
|
|
{
|
|
name: '--color-background-dark',
|
|
value: 'var(--color-background-dark)',
|
|
},
|
|
{
|
|
name: '--color-background-base',
|
|
value: 'var(--color-background-base)',
|
|
},
|
|
{
|
|
name: '--color-background-light',
|
|
value: 'var(--color-background-light)',
|
|
},
|
|
{
|
|
name: '--color-background-lighter',
|
|
value: 'var(--color-background-lighter)',
|
|
},
|
|
{
|
|
name: '--color-background-xlight',
|
|
value: 'var(--color-background-xlight)',
|
|
},
|
|
],
|
|
},
|
|
themes: {
|
|
list: [
|
|
{
|
|
name: 'dark',
|
|
class: 'theme-dark',
|
|
color: '#000',
|
|
},
|
|
],
|
|
},
|
|
options: {
|
|
storySort: {
|
|
order: ['Docs', 'Styleguide', 'Atoms', 'Modules'],
|
|
},
|
|
},
|
|
};
|