mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
💄 Add icons to all nodes which did not have any
This commit is contained in:
parent
df38e87992
commit
84154843c2
|
@ -17,24 +17,29 @@ import {
|
|||
faAngleDown,
|
||||
faAngleRight,
|
||||
faAngleUp,
|
||||
faArrowRight,
|
||||
faAt,
|
||||
faBug,
|
||||
faCalendar,
|
||||
faCheck,
|
||||
faCode,
|
||||
faCodeBranch,
|
||||
faCog,
|
||||
faCogs,
|
||||
faClone,
|
||||
faCloud,
|
||||
faCopy,
|
||||
faDotCircle,
|
||||
faEdit,
|
||||
faEnvelope,
|
||||
faExclamationTriangle,
|
||||
faExternalLinkAlt,
|
||||
faFile,
|
||||
faFileDownload,
|
||||
faFileExport,
|
||||
faFileImport,
|
||||
faFilePdf,
|
||||
faFolderOpen,
|
||||
faGlobe,
|
||||
faHdd,
|
||||
faHourglass,
|
||||
faImage,
|
||||
|
@ -42,6 +47,7 @@ import {
|
|||
faInfo,
|
||||
faInfoCircle,
|
||||
faKey,
|
||||
faMapSigns,
|
||||
faNetworkWired,
|
||||
faPause,
|
||||
faPen,
|
||||
|
@ -63,6 +69,7 @@ import {
|
|||
faTable,
|
||||
faTasks,
|
||||
faTerminal,
|
||||
faThLarge,
|
||||
faTimes,
|
||||
faTrash,
|
||||
faUndo,
|
||||
|
@ -76,24 +83,29 @@ library.add(faAngleDoubleLeft);
|
|||
library.add(faAngleDown);
|
||||
library.add(faAngleRight);
|
||||
library.add(faAngleUp);
|
||||
library.add(faArrowRight);
|
||||
library.add(faAt);
|
||||
library.add(faBug);
|
||||
library.add(faCalendar);
|
||||
library.add(faCheck);
|
||||
library.add(faCode);
|
||||
library.add(faCodeBranch);
|
||||
library.add(faCog);
|
||||
library.add(faCogs);
|
||||
library.add(faClone);
|
||||
library.add(faCloud);
|
||||
library.add(faCopy);
|
||||
library.add(faDotCircle);
|
||||
library.add(faEdit);
|
||||
library.add(faEnvelope);
|
||||
library.add(faExclamationTriangle);
|
||||
library.add(faExternalLinkAlt);
|
||||
library.add(faFile);
|
||||
library.add(faFileDownload);
|
||||
library.add(faFileExport);
|
||||
library.add(faFileImport);
|
||||
library.add(faFilePdf);
|
||||
library.add(faFolderOpen);
|
||||
library.add(faGlobe);
|
||||
library.add(faHdd);
|
||||
library.add(faHourglass);
|
||||
library.add(faImage);
|
||||
|
@ -101,6 +113,7 @@ library.add(faInbox);
|
|||
library.add(faInfo);
|
||||
library.add(faInfoCircle);
|
||||
library.add(faKey);
|
||||
library.add(faMapSigns);
|
||||
library.add(faNetworkWired);
|
||||
library.add(faPause);
|
||||
library.add(faPen);
|
||||
|
@ -122,6 +135,7 @@ library.add(faSyncAlt);
|
|||
library.add(faTable);
|
||||
library.add(faTasks);
|
||||
library.add(faTerminal);
|
||||
library.add(faThLarge);
|
||||
library.add(faTimes);
|
||||
library.add(faTrash);
|
||||
library.add(faUndo);
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue