Skip to content

Commit b275eb6

Browse files
committed
feat: add node icons
1 parent 1553a62 commit b275eb6

58 files changed

Lines changed: 107 additions & 131 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/api/src/nodes/audio/melotts-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class MelottsNode extends ExecutableNode {
1313
type: "melotts",
1414
description: "Converts text to natural-sounding speech using MeloTTS",
1515
tags: ["Audio", "AI"],
16-
icon: "audio",
16+
icon: "mic",
1717
computeCost: 10,
1818
inputs: [
1919
{

apps/api/src/nodes/browser/cloudflare-browser-markdown-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class CloudflareBrowserMarkdownNode extends ExecutableNode {
1515
description:
1616
"Fetch markdown from a rendered page using Cloudflare Browser Rendering.",
1717
tags: ["Browser"],
18-
icon: "markdown",
18+
icon: "file-text",
1919
computeCost: 10,
2020
asTool: true,
2121
inputs: [

apps/api/src/nodes/geo/boolean-concave-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanConcaveNode extends ExecutableNode {
1212
description:
1313
"Takes a polygon and returns true or false as to whether it is concave or not.",
1414
tags: ["Geo"],
15-
icon: "polygon",
15+
icon: "square",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-intersects-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanIntersectsNode extends ExecutableNode {
1212
description:
1313
"Returns true if the intersection results in a geometry whose dimension is equal to the maximum dimension of the two source geometries.",
1414
tags: ["Geo"],
15-
icon: "intersect",
15+
icon: "squares-intersect",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-overlap-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanOverlapNode extends ExecutableNode {
1212
description:
1313
"Compares two geometries of the same dimension and returns true if their intersection set results in a geometry different from both but of the same dimension. Applies to Polygon/Polygon, LineString/LineString, Multipoint/Multipoint, MultiLineString/MultiLineString and MultiPolygon/MultiPolygon.",
1414
tags: ["Geo"],
15-
icon: "intersect",
15+
icon: "squares-intersect",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-parallel-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanParallelNode extends ExecutableNode {
1212
description:
1313
"Returns True if each segment of line1 is parallel to the correspondent segment of line2.",
1414
tags: ["Geo"],
15-
icon: "parallel",
15+
icon: "git-compare",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-point-on-line-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanPointOnLineNode extends ExecutableNode {
1212
description:
1313
"Returns true if a point is on a line. Accepts optional parameters to ignore start/end vertices and set epsilon tolerance.",
1414
tags: ["Geo"],
15-
icon: "point-on-line",
15+
icon: "mouse-pointer",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-touches-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanTouchesNode extends ExecutableNode {
1212
description:
1313
"Returns true if none of the points common to both geometries intersect the interiors of both geometries.",
1414
tags: ["Geo"],
15-
icon: "touch",
15+
icon: "touchpad",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-valid-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanValidNode extends ExecutableNode {
1212
description:
1313
"Checks if the geometry is valid according to the OGC Simple Feature Specification.",
1414
tags: ["Geo"],
15-
icon: "valid",
15+
icon: "check-circle",
1616
inlinable: true,
1717
inputs: [
1818
{

apps/api/src/nodes/geo/boolean-within-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class BooleanWithinNode extends ExecutableNode {
1212
description:
1313
"Returns true if the first geometry is completely within the second geometry.",
1414
tags: ["Geo"],
15-
icon: "within",
15+
icon: "mouse-pointer-2",
1616
inlinable: true,
1717
inputs: [
1818
{

0 commit comments

Comments
 (0)