ci: Upgrade eslint, prettier, typescript, and some other dev tooling (no-changelog) (#8895)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-03-26 14:22:57 +01:00
committed by GitHub
parent 117b57ccc5
commit 372d5c7d01
190 changed files with 1142 additions and 1198 deletions

View File

@@ -64,7 +64,7 @@ function onSelected(item: INodeCreateElement) {
icon: item.properties.icon,
iconType: 'icon',
},
}
}
: {}),
...(item.properties.panelClass ? { panelClass: item.properties.panelClass } : {}),
rootView: activeViewStack.value.rootView,
@@ -218,8 +218,8 @@ registerKeyHook('MainViewArrowLeft', {
:root-view="activeViewStack.rootView"
show-icon
show-request
@addWebhookNode="selectNodeType([WEBHOOK_NODE_TYPE])"
@addHttpNode="selectNodeType([HTTP_REQUEST_NODE_TYPE])"
@add-webhook-node="selectNodeType([WEBHOOK_NODE_TYPE])"
@add-http-node="selectNodeType([HTTP_REQUEST_NODE_TYPE])"
/>
</template>
</ItemsRenderer>

View File

@@ -13,7 +13,7 @@
@mousedown="onMouseDown"
@mouseup="onMouseUp"
>
<NodesListPanel @nodeTypeSelected="onNodeTypeSelected" />
<NodesListPanel @node-type-selected="onNodeTypeSelected" />
</div>
</SlideTransition>
</div>

View File

@@ -33,7 +33,7 @@ const searchPlaceholder = computed(() =>
isActionsMode.value
? i18n.baseText('nodeCreator.actionsCategory.searchActions', {
interpolate: { node: activeViewStack.value.title as string },
})
})
: i18n.baseText('nodeCreator.searchBar.searchNodes'),
);
@@ -118,7 +118,7 @@ function onBackButton() {
<transition
v-if="viewStacks.length > 0"
:name="`panel-slide-${activeViewStack.transitionDirection}`"
@afterLeave="onTransitionEnd"
@after-leave="onTransitionEnd"
>
<aside
:key="`${activeViewStack.uuid}`"
@@ -169,7 +169,7 @@ function onBackButton() {
: $locale.baseText('nodeCreator.searchBar.searchNodes')
"
:model-value="activeViewStack.search"
@update:modelValue="onSearch"
@update:model-value="onSearch"
/>
<div :class="$style.renderedItems">
<n8n-notice

View File

@@ -116,7 +116,7 @@ function getAiNodesBySubcategory(nodes: INodeTypeDescription[], subcategory: str
type: 'file',
icon: 'openai',
fileBuffer: '/static/open-ai.svg',
}
}
: undefined,
},
}))