mirror of https://gitee.com/antv-l7/antv-l7
33 lines
882 B
TypeScript
33 lines
882 B
TypeScript
// tslint:disable-next-line:no-submodule-imports
|
|
import '!style-loader!css-loader!sass-loader!./iframe.scss';
|
|
import '@storybook/addon-console';
|
|
import { addParameters, configure } from '@storybook/react';
|
|
import { create } from '@storybook/theming';
|
|
|
|
addParameters({
|
|
options: {
|
|
isFullscreen: false,
|
|
showAddonsPanel: true,
|
|
showSearchBox: false,
|
|
panelPosition: 'bottom',
|
|
hierarchySeparator: /\./,
|
|
// hierarchyRootSeparator: /\|/,
|
|
enableShortcuts: true,
|
|
theme: create({
|
|
base: 'light',
|
|
brandTitle: 'L7 POC for new architecture',
|
|
brandUrl: 'https://github.com/xiaoiver/L7-POC',
|
|
gridCellSize: 12,
|
|
}),
|
|
},
|
|
});
|
|
|
|
// automatically import all files ending in *.stories.tsx
|
|
const req = require.context('../stories', true, /\.stories\.tsx$/);
|
|
|
|
function loadStories() {
|
|
req.keys().forEach(req);
|
|
}
|
|
|
|
configure(loadStories, module);
|