mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
c667511e29
Wer
25 lines
414 B
TypeScript
25 lines
414 B
TypeScript
import type { Preview } from '@storybook/svelte';
|
|
import '../src/app.postcss';
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/
|
|
}
|
|
},
|
|
backgrounds: {
|
|
default: 'GitButler_1',
|
|
values: [
|
|
{
|
|
name: 'GitButler_1',
|
|
value: '#27272A'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
};
|
|
|
|
export default preview;
|