Skip to content

Commit 824be18

Browse files
authoredJan 29, 2025··
fix: hide stotybook actions (#264)
1 parent ac75f76 commit 824be18

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed
 

‎.storybook/main.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
44

55
const config: StorybookConfig = {
66
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
7-
addons: ['@storybook/addon-essentials', '@storybook/preset-scss', '@storybook/addon-docs'],
7+
addons: [
8+
{
9+
name: '@storybook/addon-essentials',
10+
options: {
11+
controls: false,
12+
actions: false,
13+
},
14+
},
15+
'@storybook/preset-scss',
16+
],
817
framework: {
918
name: '@storybook/react-webpack5',
1019
options: {fastRefresh: true},

‎.storybook/preview.ts

+1-11
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@ import {withTheme, withLang} from './decorators';
22

33
export const decorators = [withTheme, withLang];
44

5-
export const parameters = {
6-
actions: {argTypesRegex: '^on[A-Z].*'},
7-
controls: {
8-
matchers: {
9-
color: /(background|color)$/i,
10-
date: /Date$/,
11-
},
12-
},
13-
};
14-
155
export const globalTypes = {
166
theme: {
177
defaultValue: 'light',
@@ -37,4 +27,4 @@ export const globalTypes = {
3727
],
3828
},
3929
},
40-
}
30+
};

0 commit comments

Comments
 (0)
Please sign in to comment.