fix(editor): Update and fix storybook (was failing to run in local dev mode) (#6180)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Csaba Tuncsik 2023-05-04 17:43:58 +02:00 committed by GitHub
parent 814ea5185c
commit 1e6a75f341
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2077 additions and 650 deletions

View file

@ -20,7 +20,6 @@ module.exports = {
}, },
}, },
}, },
'storybook-addon-designs',
'storybook-addon-themes', 'storybook-addon-themes',
], ],
webpackFinal: async (config) => { webpackFinal: async (config) => {

View file

@ -5,12 +5,12 @@ import ElementUI from 'element-ui';
import lang from 'element-ui/lib/locale/lang/en'; import lang from 'element-ui/lib/locale/lang/en';
import locale from 'element-ui/lib/locale'; import locale from 'element-ui/lib/locale';
import designSystemComponents from '../src/plugins/n8nComponents'; import { N8nPlugin } from '../src/plugin';
import Vue from 'vue'; import Vue from 'vue';
Vue.use(ElementUI); Vue.use(ElementUI);
Vue.use(designSystemComponents); Vue.use(N8nPlugin);
locale.use(lang); locale.use(lang);
@ -58,7 +58,7 @@ export const parameters = {
list: [ list: [
{ {
name: 'dark', name: 'dark',
class: 'theme-dark', class: 'theme-dark-beta',
color: '#000', color: '#000',
}, },
], ],

View file

@ -42,12 +42,13 @@
"@fortawesome/fontawesome-svg-core": "^1.2.36", "@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4", "@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.9", "@fortawesome/vue-fontawesome": "^2.0.9",
"@storybook/addon-actions": "^7.0.0-beta.46", "@storybook/addon-actions": "^7.0.7",
"@storybook/addon-essentials": "^7.0.0-beta.46", "@storybook/addon-docs": "^7.0.7",
"@storybook/addon-links": "^7.0.0-beta.46", "@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-links": "^7.0.7",
"@storybook/addon-postcss": "^3.0.0-alpha.1", "@storybook/addon-postcss": "^3.0.0-alpha.1",
"@storybook/vue": "^7.0.0-beta.46", "@storybook/vue": "^7.0.7",
"@storybook/vue-webpack5": "^7.0.0-beta.46", "@storybook/vue-webpack5": "^7.0.7",
"@testing-library/jest-dom": "^5.16.5", "@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^5.8.3", "@testing-library/vue": "^5.8.3",
"@types/markdown-it": "^12.2.3", "@types/markdown-it": "^12.2.3",
@ -63,8 +64,7 @@
"node-notifier": "^10.0.1", "node-notifier": "^10.0.1",
"sass": "^1.58.0", "sass": "^1.58.0",
"sass-loader": "^13.2.0", "sass-loader": "^13.2.0",
"storybook": "^7.0.0-beta.46", "storybook": "^7.0.7",
"storybook-addon-designs": "^6.3.1",
"storybook-addon-themes": "^6.1.0", "storybook-addon-themes": "^6.1.0",
"trim": "^1.0.1", "trim": "^1.0.1",
"vite": "^4.0.4", "vite": "^4.0.4",

View file

@ -1,3 +1,5 @@
import { Meta } from '@storybook/addon-docs';
<Meta title="Docs/Introduction" /> <Meta title="Docs/Introduction" />
# Welcome to n8n Storybook # Welcome to n8n Storybook

File diff suppressed because it is too large Load diff