2025-08-14 13:12:39 +02:00
|
|
|
import type {Preview} from '@storybook/angular';
|
2025-08-19 10:58:54 +02:00
|
|
|
// import 'remixicon/fonts/remixicon.css';
|
2025-08-14 12:18:20 +02:00
|
|
|
|
|
|
|
const preview: Preview = {
|
|
|
|
parameters: {
|
2025-08-14 13:12:39 +02:00
|
|
|
actions: {argTypesRegex: '^on[A-Z].*'},
|
2025-08-14 12:18:20 +02:00
|
|
|
controls: {
|
|
|
|
matchers: {
|
|
|
|
color: /(background|color)$/i,
|
|
|
|
date: /Date$/i,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default preview;
|