2021-09-09 01:14:59 +00:00
|
|
|
import '@maxgraph/css/common.css';
|
2021-04-15 04:09:10 +00:00
|
|
|
|
|
|
|
export const parameters = {
|
2021-09-09 01:14:59 +00:00
|
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
2021-04-15 04:09:10 +00:00
|
|
|
controls: {
|
|
|
|
matchers: {
|
|
|
|
color: /(background|color)$/i,
|
|
|
|
date: /Date$/,
|
|
|
|
},
|
|
|
|
},
|
2021-09-09 01:14:59 +00:00
|
|
|
};
|
2021-04-20 12:22:55 +00:00
|
|
|
|
2021-04-21 04:54:09 +00:00
|
|
|
export const globalTypes = {
|
2021-04-20 12:22:55 +00:00
|
|
|
width: {
|
|
|
|
type: 'number',
|
2021-09-09 01:14:59 +00:00
|
|
|
defaultValue: 800,
|
2021-04-20 12:22:55 +00:00
|
|
|
},
|
|
|
|
height: {
|
|
|
|
type: 'number',
|
2021-09-09 01:14:59 +00:00
|
|
|
defaultValue: 600,
|
|
|
|
},
|
2021-04-20 12:22:55 +00:00
|
|
|
};
|