n8n-nodes-typebot 1.3.3 → 1.3.5
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,7 +7,10 @@ class Typebot {
|
|
|
7
7
|
this.description = {
|
|
8
8
|
displayName: 'Typebot',
|
|
9
9
|
name: 'typebot',
|
|
10
|
-
icon:
|
|
10
|
+
icon: {
|
|
11
|
+
light: 'file:typebot.svg',
|
|
12
|
+
dark: 'file:typebot.dark.svg',
|
|
13
|
+
},
|
|
11
14
|
group: ['transform'],
|
|
12
15
|
version: 1,
|
|
13
16
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<!-- Typebot Logo - WHITE for dark backgrounds (TRANSPARENT background) -->
|
|
4
|
+
<g transform="translate(12, 12)">
|
|
5
|
+
<!-- Outer rounded rectangle (white border) -->
|
|
6
|
+
<rect x="0" y="0" width="36" height="36" rx="7" fill="none" stroke="#FFFFFF" stroke-width="3.5"/>
|
|
7
|
+
|
|
8
|
+
<!-- Inner rounded rectangle (transparent - no fill) -->
|
|
9
|
+
<rect x="5.4" y="5.4" width="25.2" height="25.2" rx="4.2" fill="none"/>
|
|
10
|
+
|
|
11
|
+
<!-- Slanted line (white) - the iconic "/" -->
|
|
12
|
+
<rect x="13.2" y="9" width="9.6" height="18.6" rx="1.8" fill="#FFFFFF" transform="rotate(-15 18 18)"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
Binary file
|
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="
|
|
3
|
-
<!--
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
<!-- Typebot Logo - centered and scaled -->
|
|
7
|
-
<g transform="translate(106, 106)">
|
|
2
|
+
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<!-- Typebot Logo - BLACK for light backgrounds (TRANSPARENT background) -->
|
|
4
|
+
<g transform="translate(12, 12)">
|
|
8
5
|
<!-- Outer rounded rectangle (black border) -->
|
|
9
|
-
<rect x="0" y="0" width="
|
|
6
|
+
<rect x="0" y="0" width="36" height="36" rx="7" fill="none" stroke="#000000" stroke-width="3.5"/>
|
|
10
7
|
|
|
11
|
-
<!-- Inner rounded rectangle (
|
|
12
|
-
<rect x="
|
|
8
|
+
<!-- Inner rounded rectangle (transparent - no fill) -->
|
|
9
|
+
<rect x="5.4" y="5.4" width="25.2" height="25.2" rx="4.2" fill="none"/>
|
|
13
10
|
|
|
14
11
|
<!-- Slanted line (black) - the iconic "/" -->
|
|
15
|
-
<rect x="
|
|
12
|
+
<rect x="13.2" y="9" width="9.6" height="18.6" rx="1.8" fill="#000000" transform="rotate(-15 18 18)"/>
|
|
16
13
|
</g>
|
|
17
14
|
</svg>
|