n8n-nodes-typebot 1.3.6 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,10 +7,7 @@ class Typebot {
|
|
|
7
7
|
this.description = {
|
|
8
8
|
displayName: 'Typebot',
|
|
9
9
|
name: 'typebot',
|
|
10
|
-
icon:
|
|
11
|
-
light: 'file:typebot.svg',
|
|
12
|
-
dark: 'file:typebot.dark.svg',
|
|
13
|
-
},
|
|
10
|
+
icon: 'file:typebot.svg',
|
|
14
11
|
group: ['transform'],
|
|
15
12
|
version: 1,
|
|
16
13
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<!--
|
|
4
|
-
<rect width="60" height="60" rx="
|
|
3
|
+
<!-- Orange background - visible on both light and dark -->
|
|
4
|
+
<rect width="60" height="60" rx="12" fill="#FF8C42"/>
|
|
5
5
|
|
|
6
|
-
<!-- Typebot Logo -
|
|
6
|
+
<!-- Typebot Logo - WHITE on orange -->
|
|
7
7
|
<g transform="translate(12, 12)">
|
|
8
|
-
<!-- Outer rounded rectangle (
|
|
9
|
-
<rect x="0" y="0" width="36" height="36" rx="7" fill="none" stroke="#
|
|
8
|
+
<!-- Outer rounded rectangle (white border) -->
|
|
9
|
+
<rect x="0" y="0" width="36" height="36" rx="7" fill="none" stroke="#FFFFFF" stroke-width="4"/>
|
|
10
10
|
|
|
11
|
-
<!--
|
|
12
|
-
<rect x="
|
|
13
|
-
|
|
14
|
-
<!-- Slanted line (black) - the iconic "/" -->
|
|
15
|
-
<rect x="13.2" y="9" width="9.6" height="18.6" rx="1.8" fill="#000000" transform="rotate(-15 18 18)"/>
|
|
11
|
+
<!-- Slanted line (white) - the iconic "/" -->
|
|
12
|
+
<rect x="13" y="8" width="10" height="20" rx="2" fill="#FFFFFF" transform="rotate(-15 18 18)"/>
|
|
16
13
|
</g>
|
|
17
14
|
</svg>
|