💄 Add icons to all nodes which did not have any
This commit is contained in:
@@ -12,6 +12,7 @@ export class If implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'IF',
|
||||
name: 'if',
|
||||
icon: 'fa:map-signs',
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
description: 'Splits a stream depending on defined compare operations.',
|
||||
|
||||
@@ -11,7 +11,7 @@ export class Merge implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Merge',
|
||||
name: 'merge',
|
||||
icon: 'fa:clone',
|
||||
icon: 'fa:code-branch',
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
description: 'Merges data of multiple streams once data of both is available',
|
||||
|
||||
@@ -8,9 +8,9 @@ import {
|
||||
|
||||
export class NoOp implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'No Operation',
|
||||
displayName: 'No Operation, do nothing',
|
||||
name: 'noOp',
|
||||
icon: 'fa:pen',
|
||||
icon: 'fa:arrow-right',
|
||||
group: ['organization'],
|
||||
version: 1,
|
||||
description: 'No Operation',
|
||||
|
||||
@@ -17,6 +17,7 @@ export class ReadBinaryFile implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Read Binary File',
|
||||
name: 'readBinaryFile',
|
||||
icon: 'fa:file-import',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Reads a binary file from disk',
|
||||
|
||||
@@ -19,6 +19,7 @@ export class ReadBinaryFiles implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Read Binary Files',
|
||||
name: 'readBinaryFiles',
|
||||
icon: 'fa:file-import',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Reads binary files from disk',
|
||||
|
||||
@@ -11,7 +11,7 @@ export class ReadFileFromUrl implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Read File From Url',
|
||||
name: 'readFileFromUrl',
|
||||
icon: 'fa:globe',
|
||||
icon: 'fa:file-download',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Reads a file from an URL',
|
||||
|
||||
@@ -15,6 +15,7 @@ export class ReadPdf implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Read PDF',
|
||||
name: 'Read PDF',
|
||||
icon: 'fa:file-pdf',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Reads a PDF and extracts its content',
|
||||
|
||||
@@ -20,6 +20,7 @@ export class RenameKeys implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Rename Keys',
|
||||
name: 'renameKeys',
|
||||
icon: 'fa:edit',
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
description: 'Renames keys.',
|
||||
|
||||
@@ -12,6 +12,7 @@ export class Set implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Set',
|
||||
name: 'set',
|
||||
icon: 'fa:pen',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Sets values on the items and removes if selected all other values.',
|
||||
|
||||
@@ -10,6 +10,7 @@ export class SplitInBatches implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Split In Batches',
|
||||
name: 'splitInBatches',
|
||||
icon: 'fa:th-large',
|
||||
group: ['organization'],
|
||||
version: 1,
|
||||
description: 'Saves the originally incoming data and with each itteration it returns a predefined amount of them.',
|
||||
|
||||
@@ -10,6 +10,7 @@ export class Start implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Start',
|
||||
name: 'start',
|
||||
icon: 'fa:play',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Starts the workflow execution from this node',
|
||||
|
||||
@@ -21,7 +21,7 @@ export class WriteBinaryFile implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Write Binary File',
|
||||
name: 'writeBinaryFile',
|
||||
icon: 'fa:save',
|
||||
icon: 'fa:file-export',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
description: 'Writes a binary file to disk',
|
||||
|
||||
Reference in New Issue
Block a user