n8n-nodes-typebot 1.3.18 → 1.3.20
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"]}}',
|
|
@@ -1,14 +1,7 @@
|
|
|
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
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
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>
|
|
3
|
+
<!-- For DARK mode - transparent background with white logo on dark background -->
|
|
4
|
+
<rect x="8" y="8" width="44" height="44" rx="8" fill="#1F2937"/>
|
|
5
|
+
<rect x="14" y="14" width="32" height="32" rx="6" fill="none" stroke="#FFFFFF" stroke-width="3"/>
|
|
6
|
+
<rect x="24" y="18" width="12" height="24" rx="2" fill="#FFFFFF" transform="rotate(-15 30 30)"/>
|
|
14
7
|
</svg>
|
|
Binary file
|
|
@@ -1,17 +1,8 @@
|
|
|
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
|
-
<!--
|
|
3
|
+
<!-- For LIGHT mode - white background with dark logo -->
|
|
4
4
|
<rect width="60" height="60" rx="12" fill="#FFFFFF"/>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<rect x="
|
|
8
|
-
|
|
9
|
-
<!-- Typebot logo - white icon -->
|
|
10
|
-
<g transform="translate(15, 15)">
|
|
11
|
-
<!-- Outer rounded rectangle (white border) -->
|
|
12
|
-
<rect x="0" y="0" width="30" height="30" rx="6" fill="none" stroke="#FFFFFF" stroke-width="3"/>
|
|
13
|
-
|
|
14
|
-
<!-- Slanted line (white) - the iconic "/" -->
|
|
15
|
-
<rect x="10" y="6" width="10" height="18" rx="2" fill="#FFFFFF" transform="rotate(-15 15 15)"/>
|
|
16
|
-
</g>
|
|
5
|
+
<rect x="8" y="8" width="44" height="44" rx="8" fill="#1F2937"/>
|
|
6
|
+
<rect x="14" y="14" width="32" height="32" rx="6" fill="none" stroke="#FFFFFF" stroke-width="3"/>
|
|
7
|
+
<rect x="24" y="18" width="12" height="24" rx="2" fill="#FFFFFF" transform="rotate(-15 30 30)"/>
|
|
17
8
|
</svg>
|