mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
19e333e660
* refactor(editor-ui): update 'vue-json-pretty' and adjust component to preserve same behaviour (#4152) * fix(editor-ui): export interface to solve 'TS4082: Default export of the module has or is using private name' error temporarily * refactor(editor-ui): update 'vue-json-pretty' and adjust component to preserve same behaviour * refactor(editor-ui): move json data view into its own component (#4158) * refactor(editor-ui): move json data view into its own component * fix(editor-ui): make JSON data component work again * fix(editor-ui): JSON data component type issues * fix(editor-ui): JSON data component prop 'inputData' * refactor(editor-ui): rename helper function * fix(editor-ui): add declaration to `vue-json-pretty` component * refactor(editor-ui): JSON mapping move more logic to new component * refactor(editor-ui): some cleanup in JSON mapping component * refactor(editor-ui): changing key mapping translation * refactor(editor-ui): add basic drag'n'drop functionality to JSON view * refactor(editor-ui): moving JSON view actions into separate components * fix(editor-ui): JSON view action copy default selected path * fix(editor-ui): refactor draggable to play nicer with other (3rd party) components * fix(editor-ui): improve draggable performance * fix(editor-ui): add disable user selection class to body * fix(editor-ui): reduce click handler cognitive load in JSON view copy actions * fix(editor-ui): JSON view mapped path * fix(editor-ui): remove unnecessary wrapper around RunDataTable.vue * fix(editor-ui): respect input node distance when json parameter path is copied * fix(editor-ui): JSON mapping property highlight * fix(editor-ui): block event only on mousemove for draggable to not select content * refactor(editor-ui): fixing prop types and organising imports * fix(editor-ui): JSON view use double quotes where appropriate * fix(editor-ui): fix new package additions after merge conflict * fix(editor-ui): fix package update after merge conflict * fix(editor-ui): JSON view prop names text break * fix(editor-ui): use kebab-case name for component * fix(editor-ui): calling convertPath on draggable node path * feat(editor-ui): add mapping discoverability tooltip to mappable inputs (#4227) * refactor(editor-ui): move json data view into its own component * fix(editor-ui): make JSON data component work again * fix(editor-ui): JSON data component type issues * fix(editor-ui): JSON data component prop 'inputData' * refactor(editor-ui): rename helper function * fix(editor-ui): add declaration to `vue-json-pretty` component * refactor(editor-ui): JSON mapping move more logic to new component * refactor(editor-ui): some cleanup in JSON mapping component * refactor(editor-ui): changing key mapping translation * refactor(editor-ui): add basic drag'n'drop functionality to JSON view * refactor(editor-ui): moving JSON view actions into separate components * fix(editor-ui): JSON view action copy default selected path * fix(editor-ui): refactor draggable to play nicer with other (3rd party) components * fix(editor-ui): improve draggable performance * fix(editor-ui): add disable user selection class to body * fix(editor-ui): reduce click handler cognitive load in JSON view copy actions * fix(editor-ui): JSON view mapped path * fix(editor-ui): remove unnecessary wrapper around RunDataTable.vue * fix(editor-ui): respect input node distance when json parameter path is copied * fix(editor-ui): JSON mapping property highlight * fix(editor-ui): block event only on mousemove for draggable to not select content * refactor(editor-ui): fixing prop types and organising imports * fix(editor-ui): JSON view use double quotes where appropriate * fix(editor-ui): fix new package additions after merge conflict * fix(editor-ui): fix package update after merge conflict * fix(editor-ui): JSON view prop names text break * fix(editor-ui): update helper after merge conflict * refactor(editor-ui): cleanup RunaDataTable tooltips * refactor(editor-ui): add temporary static tooltip to input with mapping * fix(editor-ui): input mapping tooltip proper input name * fix(editor-ui): show input mapping tooltip when conditions are met * fix(editor-ui): show different input mapping tooltip for different view types (table, json) * fix(editor-ui): drop lodash isEmpty * fix(editor-ui): using and keeping only getter function * fix(editor-ui): check `INodeExecutionData[]` array emptyness (still needs some improvement) * feat(editor-ui): add telemetry calls to data mapping (#4250) * fix(editor-ui): add types package for jsonpath * fix(editor-ui): JSON view drag'n'drop telemetry call * fix(editor-ui): add data mapping tooltip close telemetry to parameter input * fix(editor-ui): execute previous node tooltip linebreak * fix(editor-ui): input data mapping tooltip show-hide logic * fix(editor-ui): input data mapping tooltip position * fix(editor-ui): using a placeholder gif in mapping discoverability tooltip * refactor(design-system): adding optional configurable buttons to tooltip (#4260) * refactor(design-system): unbreaking wrapper around element ui tooltip * fix(design-system): update test snapshot * refactor(design-system): adding buttons to tooltip * fix(design-system): update test snapshot * fix(design-system): change tooltip props and some cleanup * fix(design-system): update test snapshot * chore: fix package lock file after merge * fix(editor-ui): modifications according to Max's review (#4273) * fix(editor-ui): modifications according to Max's review * fix(editor-ui): JSON prop names should not be written bold * fix(editor-ui): use proper animated gif in JSON data mapping discoverability tooltip
108 lines
3.4 KiB
JSON
108 lines
3.4 KiB
JSON
{
|
|
"name": "n8n-editor-ui",
|
|
"version": "0.162.0",
|
|
"description": "Workflow Editor UI for n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env VUE_APP_PUBLIC_PATH=\"/{{BASE_PATH}}/\" NODE_OPTIONS=\"--max-old-space-size=8192\" vite build",
|
|
"dev": "npm run serve",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json && eslint .",
|
|
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint . --fix",
|
|
"format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/editor-ui/**/**.ts --write",
|
|
"serve": "cross-env VUE_APP_URL_BASE_API=http://localhost:5678/ vite --host 0.0.0.0 --port 8080 dev",
|
|
"test": "vitest run",
|
|
"test:ci": "vitest run --coverage",
|
|
"test:dev": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource/open-sans": "^4.5.0",
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
|
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.3",
|
|
"@fortawesome/vue-fontawesome": "^2.0.2",
|
|
"axios": "^0.21.1",
|
|
"dateformat": "^3.0.3",
|
|
"fast-json-stable-stringify": "^2.1.0",
|
|
"file-saver": "^2.0.2",
|
|
"flatted": "^3.2.4",
|
|
"jquery": "^3.4.1",
|
|
"jsonpath": "^1.1.1",
|
|
"jsplumb": "2.15.4",
|
|
"lodash.camelcase": "^4.3.0",
|
|
"lodash.debounce": "^4.0.8",
|
|
"lodash.get": "^4.4.2",
|
|
"lodash.orderby": "^4.6.0",
|
|
"lodash.set": "^4.3.2",
|
|
"luxon": "^2.3.0",
|
|
"monaco-editor": "^0.30.1",
|
|
"n8n-design-system": "~0.36.0",
|
|
"n8n-workflow": "~0.118.0",
|
|
"normalize-wheel": "^1.0.1",
|
|
"prismjs": "^1.17.1",
|
|
"quill": "2.0.0-dev.4",
|
|
"quill-autoformat": "^0.1.1",
|
|
"timeago.js": "^4.0.2",
|
|
"uuid": "^8.3.2",
|
|
"v-click-outside": "^3.1.2",
|
|
"vue": "~2.6.11",
|
|
"vue-agile": "^2.0.0",
|
|
"vue-fragment": "1.5.1",
|
|
"vue-i18n": "^8.26.7",
|
|
"vue-json-pretty": "1.9.2",
|
|
"vue-prism-editor": "^0.3.0",
|
|
"vue-router": "^3.0.6",
|
|
"vue-template-compiler": "~2.6.11",
|
|
"vue-typed-mixins": "^0.2.0",
|
|
"vue2-boring-avatars": "0.3.4",
|
|
"vue2-teleport": "^1.0.1",
|
|
"vue2-touch-events": "^3.2.1",
|
|
"vuex": "^3.1.1",
|
|
"xss": "^1.0.10"
|
|
},
|
|
"devDependencies": {
|
|
"@intlify/vue-i18n-loader": "^1.1.0",
|
|
"@n8n_io/eslint-config": "",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/vue": "^6.6.1",
|
|
"@types/dateformat": "^3.0.0",
|
|
"@types/express": "^4.17.6",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/jsonpath": "^0.2.0",
|
|
"@types/lodash.camelcase": "^4.3.6",
|
|
"@types/lodash.get": "^4.4.6",
|
|
"@types/lodash.set": "^4.3.6",
|
|
"@types/luxon": "^2.0.9",
|
|
"@types/node": "^16.11.22",
|
|
"@types/quill": "^2.0.1",
|
|
"@types/uuid": "^8.3.2",
|
|
"@vitejs/plugin-legacy": "^1.8.2",
|
|
"@yfwz100/vite-plugin-vue2-i18n": "^1.0.0-2",
|
|
"c8": "^7.12.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^8.0.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-vue": "^7.16.0",
|
|
"jshint": "^2.9.7",
|
|
"sass": "^1.54.9",
|
|
"sass-loader": "^8.0.2",
|
|
"string-template-parser": "^1.2.6",
|
|
"tslint": "^6.1.2",
|
|
"typescript": "~4.8.0",
|
|
"vite": "2.9",
|
|
"vite-plugin-html": "^3.2.0",
|
|
"vite-plugin-monaco-editor": "^1.0.10",
|
|
"vite-plugin-vue2": "^2.0.1",
|
|
"vue-tsc": "^0.34.15"
|
|
}
|
|
}
|