vue-wiguet-chatweb 0.1.28 → 0.1.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. package/README.md +68 -68
  2. package/dist/components/Chat.vue.d.ts +2 -5
  3. package/dist/components/DangerIcon.vue.d.ts +1 -1
  4. package/dist/components/IconAttach.vue.d.ts +1 -1
  5. package/dist/components/IconChat.vue.d.ts +1 -1
  6. package/dist/components/IconClose.vue.d.ts +1 -1
  7. package/dist/components/IconSend.vue.d.ts +1 -1
  8. package/dist/components/IconTelegram.vue.d.ts +1 -1
  9. package/dist/components/IconWhatsApp.vue.d.ts +1 -1
  10. package/dist/components/Loader.vue.d.ts +1 -1
  11. package/dist/components/MessageList.vue.d.ts +2 -3
  12. package/dist/components/ODialog/IPropsDialog.d.ts +1 -0
  13. package/dist/components/ODialog/ODialog.vue.d.ts +15 -13
  14. package/dist/components/Widget.vue.d.ts +2 -1
  15. package/dist/dto/app.dto.d.ts +1 -0
  16. package/dist/index.d.ts +1 -0
  17. package/dist/main.d.ts +1 -0
  18. package/dist/store/config.d.ts +1 -0
  19. package/dist/store/index.d.ts +1 -0
  20. package/dist/style.css +1 -1
  21. package/dist/vue-wiguet-chatweb.js +1769 -1829
  22. package/dist/vue-wiguet-chatweb.umd.cjs +26 -26
  23. package/package.json +66 -66
  24. package/src/assets/emojis/AngryIcon.svg +4 -4
  25. package/src/assets/emojis/HappiestIcon.svg +4 -4
  26. package/src/assets/emojis/HappyIcon.svg +4 -4
  27. package/src/assets/emojis/NeutralIcon.svg +4 -4
  28. package/src/assets/emojis/SadIcon.svg +4 -4
  29. package/src/components/Chat.vue +691 -691
  30. package/src/components/ChatMessage.vue +102 -102
  31. package/src/components/DangerIcon.vue +12 -12
  32. package/src/components/IconAttach.vue +24 -24
  33. package/src/components/IconChat.vue +23 -23
  34. package/src/components/IconClose.vue +5 -5
  35. package/src/components/IconSend.vue +8 -8
  36. package/src/components/IconTelegram.vue +28 -28
  37. package/src/components/IconWhatsApp.vue +39 -39
  38. package/src/components/IconWidget.vue +45 -45
  39. package/src/components/Loader.vue +31 -31
  40. package/src/components/LoadingComponent.vue +111 -111
  41. package/src/components/MessageList.vue +357 -357
  42. package/src/components/ODialog/IPropsDialog.ts +4 -4
  43. package/src/components/ODialog/IPropsSidebar.ts +13 -13
  44. package/src/components/ODialog/ODialog.vue +106 -84
  45. package/src/components/Widget.vue +187 -205
  46. package/src/components/__tests__/Chat.spec.ts +5 -5
  47. package/src/components/__tests__/ChatMessage.spec.ts +5 -5
  48. package/src/components/__tests__/MessageList.spec.ts +47 -47
  49. package/dist/App.vue.d.ts +0 -2
  50. package/dist/components/ChatMessage.vue.d.ts +0 -12
@@ -1,103 +1,103 @@
1
- <template>
2
- <div class="chat-message">
3
-
4
- <div class="bubble" :class="self ? 'left' : 'right'">
5
- <div :class="self ? 'content-left' : 'content-right'">
6
- <div class="message">
7
- {{ message.messages.dataMessage }}
8
- </div>
9
- <div class="detail-message flex justify-content-between">
10
- <span class="mr-5" v-if="message.messages.user?.nombreCompleto">
11
- {{ textCapitalize(message.messages.user.nombreCompleto) }}
12
- </span>
13
- <span class="mr-5" v-else>
14
- </span>
15
- <span>
16
- {{ formatTimeAPDate(message.messages.createdAt) }}
17
- </span>
18
- </div>
19
- </div>
20
- </div>
21
- </div>
22
- </template>
23
-
24
- <script setup lang="ts">
25
- // TODO: parece que no se usa el componente
26
- import { computed } from 'vue';
27
- import { formatTimeAPDate,textCapitalize } from '../resources/functions.helpers'
28
- const props = defineProps({
29
- message:{ type: Object, required: true },
30
- });
31
-
32
- const self = computed(() => {
33
- return props.message.messages.responseOrigin;
34
- });
35
-
36
- </script>
37
-
38
- <style scoped>
39
- .bubble {
40
- --r: 25px;
41
- /* the radius */
42
- --t: 30px;
43
- /* the size of the tail */
44
-
45
- max-width: 50%;
46
- min-width: 250px;
47
- padding: calc(2*var(--r)/3);
48
- -webkit-mask:
49
- radial-gradient(var(--t) at var(--_d) 0, #0000 98%, #000 102%) var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,
50
- conic-gradient(at var(--r) var(--r), #000 75%, #0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,
51
- radial-gradient(50% 50%, #000 98%, #0000 101%) 0 0/var(--r) var(--r) space padding-box;
52
- /* background: linear-gradient(135deg, #FE6D00, #1384C5) border-box; */
53
- color: #fff;
54
- }
55
-
56
- .left {
57
- --_d: 0%;
58
- border-left: var(--t) solid #0000;
59
- margin-right: var(--t);
60
- background-color: #fcd7ae;
61
- color:#4d4d4d;
62
- place-self: start;
63
- }
64
-
65
- .bubble > .content-left{
66
- margin-right: 10px;
67
- margin-bottom: 1px;
68
- }
69
-
70
- .right {
71
- --_d: 100%;
72
- border-right: var(--t) solid #0000;
73
- margin-left: var(--t);
74
- background-color: #fdeedb;
75
- color:#4d4d4d;
76
- place-self: end;
77
- }
78
-
79
- .bubble > .content-right{
80
- margin-bottom: 1px;
81
- margin-right: 10px;
82
- }
83
-
84
- .message {
85
- text-align: initial;
86
- word-break: break-all;
87
- margin-bottom: 10px;
88
- }
89
- .detail-message{
90
- font-size: 10px;
91
- color: #808080;
92
- display: flex;
93
- justify-content:space-between;
94
- }
95
-
96
- .chat-message {
97
- display: flex;
98
- flex-direction: column;
99
- justify-content: center;
100
- /* box-shadow: 0 2px 8px rgba(0, 0, 0, 20%); */
101
- }
102
-
1
+ <template>
2
+ <div class="chat-message">
3
+
4
+ <div class="bubble" :class="self ? 'left' : 'right'">
5
+ <div :class="self ? 'content-left' : 'content-right'">
6
+ <div class="message">
7
+ {{ message.messages.dataMessage }}
8
+ </div>
9
+ <div class="detail-message flex justify-content-between">
10
+ <span class="mr-5" v-if="message.messages.user?.nombreCompleto">
11
+ {{ textCapitalize(message.messages.user.nombreCompleto) }}
12
+ </span>
13
+ <span class="mr-5" v-else>
14
+ </span>
15
+ <span>
16
+ {{ formatTimeAPDate(message.messages.createdAt) }}
17
+ </span>
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </template>
23
+
24
+ <script setup lang="ts">
25
+ // TODO: parece que no se usa el componente
26
+ import { computed } from 'vue';
27
+ import { formatTimeAPDate,textCapitalize } from '../resources/functions.helpers'
28
+ const props = defineProps({
29
+ message:{ type: Object, required: true },
30
+ });
31
+
32
+ const self = computed(() => {
33
+ return props.message.messages.responseOrigin;
34
+ });
35
+
36
+ </script>
37
+
38
+ <style scoped>
39
+ .bubble {
40
+ --r: 25px;
41
+ /* the radius */
42
+ --t: 30px;
43
+ /* the size of the tail */
44
+
45
+ max-width: 50%;
46
+ min-width: 250px;
47
+ padding: calc(2*var(--r)/3);
48
+ -webkit-mask:
49
+ radial-gradient(var(--t) at var(--_d) 0, #0000 98%, #000 102%) var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,
50
+ conic-gradient(at var(--r) var(--r), #000 75%, #0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,
51
+ radial-gradient(50% 50%, #000 98%, #0000 101%) 0 0/var(--r) var(--r) space padding-box;
52
+ /* background: linear-gradient(135deg, #FE6D00, #1384C5) border-box; */
53
+ color: #fff;
54
+ }
55
+
56
+ .left {
57
+ --_d: 0%;
58
+ border-left: var(--t) solid #0000;
59
+ margin-right: var(--t);
60
+ background-color: #fcd7ae;
61
+ color:#4d4d4d;
62
+ place-self: start;
63
+ }
64
+
65
+ .bubble > .content-left{
66
+ margin-right: 10px;
67
+ margin-bottom: 1px;
68
+ }
69
+
70
+ .right {
71
+ --_d: 100%;
72
+ border-right: var(--t) solid #0000;
73
+ margin-left: var(--t);
74
+ background-color: #fdeedb;
75
+ color:#4d4d4d;
76
+ place-self: end;
77
+ }
78
+
79
+ .bubble > .content-right{
80
+ margin-bottom: 1px;
81
+ margin-right: 10px;
82
+ }
83
+
84
+ .message {
85
+ text-align: initial;
86
+ word-break: break-all;
87
+ margin-bottom: 10px;
88
+ }
89
+ .detail-message{
90
+ font-size: 10px;
91
+ color: #808080;
92
+ display: flex;
93
+ justify-content:space-between;
94
+ }
95
+
96
+ .chat-message {
97
+ display: flex;
98
+ flex-direction: column;
99
+ justify-content: center;
100
+ /* box-shadow: 0 2px 8px rgba(0, 0, 0, 20%); */
101
+ }
102
+
103
103
  </style>
@@ -1,12 +1,12 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
- <path
4
- fill="rgb(248 113 113)"
5
- d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"
6
- />
7
- </svg>
8
- </template>
9
-
10
- <script setup lang="ts"></script>
11
-
12
- <style scoped></style>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <path
4
+ fill="rgb(248 113 113)"
5
+ d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"
6
+ />
7
+ </svg>
8
+ </template>
9
+
10
+ <script setup lang="ts"></script>
11
+
12
+ <style scoped></style>
@@ -1,24 +1,24 @@
1
- <template>
2
- <svg
3
- version="1.1"
4
- id="Layer_1"
5
- xmlns="http://www.w3.org/2000/svg"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- viewBox="0 0 280.067 280.067"
8
- xml:space="preserve"
9
- >
10
- <g>
11
- <path
12
- fill="currentColor"
13
- d="M149.823,257.142c-31.398,30.698-81.882,30.576-113.105-0.429
14
- c-31.214-30.987-31.337-81.129-0.42-112.308l-0.026-0.018L149.841,31.615l14.203-14.098c23.522-23.356,61.65-23.356,85.172,0
15
- s23.522,61.221,0,84.586l-125.19,123.02l-0.044-0.035c-15.428,14.771-40.018,14.666-55.262-0.394
16
- c-15.244-15.069-15.34-39.361-0.394-54.588l-0.044-0.053l13.94-13.756l69.701-68.843l13.931,13.774l-83.632,82.599
17
- c-7.701,7.596-7.701,19.926,0,27.53s20.188,7.604,27.88,0L235.02,87.987l-0.035-0.026l0.473-0.403
18
- c15.682-15.568,15.682-40.823,0-56.39s-41.094-15.568-56.776,0l-0.42,0.473l-0.026-0.018l-14.194,14.089L50.466,158.485
19
- c-23.522,23.356-23.522,61.221,0,84.577s61.659,23.356,85.163,0l99.375-98.675l14.194-14.089l14.194,14.089l-14.194,14.098
20
- l-99.357,98.675C149.841,257.159,149.823,257.142,149.823,257.142z"
21
- />
22
- </g>
23
- </svg>
24
- </template>
1
+ <template>
2
+ <svg
3
+ version="1.1"
4
+ id="Layer_1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ viewBox="0 0 280.067 280.067"
8
+ xml:space="preserve"
9
+ >
10
+ <g>
11
+ <path
12
+ fill="currentColor"
13
+ d="M149.823,257.142c-31.398,30.698-81.882,30.576-113.105-0.429
14
+ c-31.214-30.987-31.337-81.129-0.42-112.308l-0.026-0.018L149.841,31.615l14.203-14.098c23.522-23.356,61.65-23.356,85.172,0
15
+ s23.522,61.221,0,84.586l-125.19,123.02l-0.044-0.035c-15.428,14.771-40.018,14.666-55.262-0.394
16
+ c-15.244-15.069-15.34-39.361-0.394-54.588l-0.044-0.053l13.94-13.756l69.701-68.843l13.931,13.774l-83.632,82.599
17
+ c-7.701,7.596-7.701,19.926,0,27.53s20.188,7.604,27.88,0L235.02,87.987l-0.035-0.026l0.473-0.403
18
+ c15.682-15.568,15.682-40.823,0-56.39s-41.094-15.568-56.776,0l-0.42,0.473l-0.026-0.018l-14.194,14.089L50.466,158.485
19
+ c-23.522,23.356-23.522,61.221,0,84.577s61.659,23.356,85.163,0l99.375-98.675l14.194-14.089l14.194,14.089l-14.194,14.098
20
+ l-99.357,98.675C149.841,257.159,149.823,257.142,149.823,257.142z"
21
+ />
22
+ </g>
23
+ </svg>
24
+ </template>
@@ -1,23 +1,23 @@
1
- <template>
2
- <svg
3
- version="1.1"
4
- id="Capa_1"
5
- xmlns="http://www.w3.org/2000/svg"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- viewBox="-10 -10 78 78"
8
- xml:space="preserve"
9
- >
10
- <g>
11
- <path
12
- style="fill: orange"
13
- d="M29,1.5c-16.016,0-29,11.641-29,26c0,5.292,1.768,10.211,4.796,14.318
14
- C4.398,46.563,3.254,53.246,0,56.5c0,0,9.943-1.395,16.677-5.462c0.007,0.003,0.015,0.006,0.022,0.009
15
- c2.764-1.801,5.532-3.656,6.105-4.126c0.3-0.421,0.879-0.548,1.33-0.277c0.296,0.178,0.483,0.503,0.489,0.848
16
- c0.01,0.622-0.005,0.784-5.585,4.421C22.146,52.933,25.498,53.5,29,53.5c16.016,0,29-11.641,29-26S45.016,1.5,29,1.5z"
17
- />
18
- <circle style="fill: #ffffff" cx="15" cy="27.5" r="3" />
19
- <circle style="fill: #ffffff" cx="29" cy="27.5" r="3" />
20
- <circle style="fill: #ffffff" cx="43" cy="27.5" r="3" />
21
- </g>
22
- </svg>
23
- </template>
1
+ <template>
2
+ <svg
3
+ version="1.1"
4
+ id="Capa_1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ viewBox="-10 -10 78 78"
8
+ xml:space="preserve"
9
+ >
10
+ <g>
11
+ <path
12
+ style="fill: orange"
13
+ d="M29,1.5c-16.016,0-29,11.641-29,26c0,5.292,1.768,10.211,4.796,14.318
14
+ C4.398,46.563,3.254,53.246,0,56.5c0,0,9.943-1.395,16.677-5.462c0.007,0.003,0.015,0.006,0.022,0.009
15
+ c2.764-1.801,5.532-3.656,6.105-4.126c0.3-0.421,0.879-0.548,1.33-0.277c0.296,0.178,0.483,0.503,0.489,0.848
16
+ c0.01,0.622-0.005,0.784-5.585,4.421C22.146,52.933,25.498,53.5,29,53.5c16.016,0,29-11.641,29-26S45.016,1.5,29,1.5z"
17
+ />
18
+ <circle style="fill: #ffffff" cx="15" cy="27.5" r="3" />
19
+ <circle style="fill: #ffffff" cx="29" cy="27.5" r="3" />
20
+ <circle style="fill: #ffffff" cx="43" cy="27.5" r="3" />
21
+ </g>
22
+ </svg>
23
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M16 31C24.2843 31 31 24.2843 31 16C31 7.71573 24.2843 1 16 1C7.71573 1 1 7.71573 1 16C1 24.2843 7.71573 31 16 31Z" stroke="#B3B3B3" stroke-miterlimit="10"/>
4
- <path d="M19.78 22.3L15.98 16.63H15.9601L12.2001 22.3H11.0701L15.37 15.8899L11.25 9.69995H12.38L15.98 15.08H16L19.67 9.69995H20.8L16.55 15.82L20.92 22.3H19.77H19.78Z" fill="#B3B3B3"/>
5
- </svg>
1
+ <template>
2
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M16 31C24.2843 31 31 24.2843 31 16C31 7.71573 24.2843 1 16 1C7.71573 1 1 7.71573 1 16C1 24.2843 7.71573 31 16 31Z" stroke="#B3B3B3" stroke-miterlimit="10"/>
4
+ <path d="M19.78 22.3L15.98 16.63H15.9601L12.2001 22.3H11.0701L15.37 15.8899L11.25 9.69995H12.38L15.98 15.08H16L19.67 9.69995H20.8L16.55 15.82L20.92 22.3H19.77H19.78Z" fill="#B3B3B3"/>
5
+ </svg>
6
6
  </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
- <path
4
- fill="currentColor"
5
- d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"
6
- />
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
3
+ <path
4
+ fill="currentColor"
5
+ d="M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"
6
+ />
7
+ </svg>
8
+ </template>
@@ -1,28 +1,28 @@
1
- <template>
2
- <svg
3
- viewBox="0 0 256 256"
4
- version="1.1"
5
- xmlns="http://www.w3.org/2000/svg"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- preserveAspectRatio="xMidYMid"
8
- >
9
- <g>
10
- <path
11
- d="M128,0 C57.307,0 0,57.307 0,128 L0,128 C0,198.693 57.307,256 128,256 L128,256 C198.693,256 256,198.693 256,128 L256,128 C256,57.307 198.693,0 128,0 L128,0 Z"
12
- fill="#40B3E0"
13
- ></path>
14
- <path
15
- d="M190.2826,73.6308 L167.4206,188.8978 C167.4206,188.8978 164.2236,196.8918 155.4306,193.0548 L102.6726,152.6068 L83.4886,143.3348 L51.1946,132.4628 C51.1946,132.4628 46.2386,130.7048 45.7586,126.8678 C45.2796,123.0308 51.3546,120.9528 51.3546,120.9528 L179.7306,70.5928 C179.7306,70.5928 190.2826,65.9568 190.2826,73.6308"
16
- fill="#FFFFFF"
17
- ></path>
18
- <path
19
- d="M98.6178,187.6035 C98.6178,187.6035 97.0778,187.4595 95.1588,181.3835 C93.2408,175.3085 83.4888,143.3345 83.4888,143.3345 L161.0258,94.0945 C161.0258,94.0945 165.5028,91.3765 165.3428,94.0945 C165.3428,94.0945 166.1418,94.5735 163.7438,96.8115 C161.3458,99.0505 102.8328,151.6475 102.8328,151.6475"
20
- fill="#D2E5F1"
21
- ></path>
22
- <path
23
- d="M122.9015,168.1154 L102.0335,187.1414 C102.0335,187.1414 100.4025,188.3794 98.6175,187.6034 L102.6135,152.2624"
24
- fill="#B5CFE4"
25
- ></path>
26
- </g>
27
- </svg>
28
- </template>
1
+ <template>
2
+ <svg
3
+ viewBox="0 0 256 256"
4
+ version="1.1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ preserveAspectRatio="xMidYMid"
8
+ >
9
+ <g>
10
+ <path
11
+ d="M128,0 C57.307,0 0,57.307 0,128 L0,128 C0,198.693 57.307,256 128,256 L128,256 C198.693,256 256,198.693 256,128 L256,128 C256,57.307 198.693,0 128,0 L128,0 Z"
12
+ fill="#40B3E0"
13
+ ></path>
14
+ <path
15
+ d="M190.2826,73.6308 L167.4206,188.8978 C167.4206,188.8978 164.2236,196.8918 155.4306,193.0548 L102.6726,152.6068 L83.4886,143.3348 L51.1946,132.4628 C51.1946,132.4628 46.2386,130.7048 45.7586,126.8678 C45.2796,123.0308 51.3546,120.9528 51.3546,120.9528 L179.7306,70.5928 C179.7306,70.5928 190.2826,65.9568 190.2826,73.6308"
16
+ fill="#FFFFFF"
17
+ ></path>
18
+ <path
19
+ d="M98.6178,187.6035 C98.6178,187.6035 97.0778,187.4595 95.1588,181.3835 C93.2408,175.3085 83.4888,143.3345 83.4888,143.3345 L161.0258,94.0945 C161.0258,94.0945 165.5028,91.3765 165.3428,94.0945 C165.3428,94.0945 166.1418,94.5735 163.7438,96.8115 C161.3458,99.0505 102.8328,151.6475 102.8328,151.6475"
20
+ fill="#D2E5F1"
21
+ ></path>
22
+ <path
23
+ d="M122.9015,168.1154 L102.0335,187.1414 C102.0335,187.1414 100.4025,188.3794 98.6175,187.6034 L102.6135,152.2624"
24
+ fill="#B5CFE4"
25
+ ></path>
26
+ </g>
27
+ </svg>
28
+ </template>
@@ -1,39 +1,39 @@
1
- <template>
2
- <svg
3
- version="1.1"
4
- id="Capa_1"
5
- xmlns="http://www.w3.org/2000/svg"
6
- xmlns:xlink="http://www.w3.org/1999/xlink"
7
- viewBox="0 0 455.731 455.731"
8
- xml:space="preserve"
9
- >
10
- <g>
11
- <rect
12
- x="0"
13
- y="0"
14
- style="fill: #1bd741"
15
- width="455.731"
16
- height="455.731"
17
- />
18
- <g>
19
- <path
20
- style="fill: #ffffff"
21
- d="M68.494,387.41l22.323-79.284c-14.355-24.387-21.913-52.134-21.913-80.638
22
- c0-87.765,71.402-159.167,159.167-159.167s159.166,71.402,159.166,159.167c0,87.765-71.401,159.167-159.166,159.167
23
- c-27.347,0-54.125-7-77.814-20.292L68.494,387.41z M154.437,337.406l4.872,2.975c20.654,12.609,44.432,19.274,68.762,19.274
24
- c72.877,0,132.166-59.29,132.166-132.167S300.948,95.321,228.071,95.321S95.904,154.611,95.904,227.488
25
- c0,25.393,7.217,50.052,20.869,71.311l3.281,5.109l-12.855,45.658L154.437,337.406z"
26
- />
27
- <path
28
- style="fill: #ffffff"
29
- d="M183.359,153.407l-10.328-0.563c-3.244-0.177-6.426,0.907-8.878,3.037
30
- c-5.007,4.348-13.013,12.754-15.472,23.708c-3.667,16.333,2,36.333,16.667,56.333c14.667,20,42,52,90.333,65.667
31
- c15.575,4.404,27.827,1.435,37.28-4.612c7.487-4.789,12.648-12.476,14.508-21.166l1.649-7.702c0.524-2.448-0.719-4.932-2.993-5.98
32
- l-34.905-16.089c-2.266-1.044-4.953-0.384-6.477,1.591l-13.703,17.764c-1.035,1.342-2.807,1.874-4.407,1.312
33
- c-9.384-3.298-40.818-16.463-58.066-49.687c-0.748-1.441-0.562-3.19,0.499-4.419l13.096-15.15
34
- c1.338-1.547,1.676-3.722,0.872-5.602l-15.046-35.201C187.187,154.774,185.392,153.518,183.359,153.407z"
35
- />
36
- </g>
37
- </g>
38
- </svg>
39
- </template>
1
+ <template>
2
+ <svg
3
+ version="1.1"
4
+ id="Capa_1"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ xmlns:xlink="http://www.w3.org/1999/xlink"
7
+ viewBox="0 0 455.731 455.731"
8
+ xml:space="preserve"
9
+ >
10
+ <g>
11
+ <rect
12
+ x="0"
13
+ y="0"
14
+ style="fill: #1bd741"
15
+ width="455.731"
16
+ height="455.731"
17
+ />
18
+ <g>
19
+ <path
20
+ style="fill: #ffffff"
21
+ d="M68.494,387.41l22.323-79.284c-14.355-24.387-21.913-52.134-21.913-80.638
22
+ c0-87.765,71.402-159.167,159.167-159.167s159.166,71.402,159.166,159.167c0,87.765-71.401,159.167-159.166,159.167
23
+ c-27.347,0-54.125-7-77.814-20.292L68.494,387.41z M154.437,337.406l4.872,2.975c20.654,12.609,44.432,19.274,68.762,19.274
24
+ c72.877,0,132.166-59.29,132.166-132.167S300.948,95.321,228.071,95.321S95.904,154.611,95.904,227.488
25
+ c0,25.393,7.217,50.052,20.869,71.311l3.281,5.109l-12.855,45.658L154.437,337.406z"
26
+ />
27
+ <path
28
+ style="fill: #ffffff"
29
+ d="M183.359,153.407l-10.328-0.563c-3.244-0.177-6.426,0.907-8.878,3.037
30
+ c-5.007,4.348-13.013,12.754-15.472,23.708c-3.667,16.333,2,36.333,16.667,56.333c14.667,20,42,52,90.333,65.667
31
+ c15.575,4.404,27.827,1.435,37.28-4.612c7.487-4.789,12.648-12.476,14.508-21.166l1.649-7.702c0.524-2.448-0.719-4.932-2.993-5.98
32
+ l-34.905-16.089c-2.266-1.044-4.953-0.384-6.477,1.591l-13.703,17.764c-1.035,1.342-2.807,1.874-4.407,1.312
33
+ c-9.384-3.298-40.818-16.463-58.066-49.687c-0.748-1.441-0.562-3.19,0.499-4.419l13.096-15.15
34
+ c1.338-1.547,1.676-3.722,0.872-5.602l-15.046-35.201C187.187,154.774,185.392,153.518,183.359,153.407z"
35
+ />
36
+ </g>
37
+ </g>
38
+ </svg>
39
+ </template>
@@ -1,46 +1,46 @@
1
- <template>
2
- <svg width="87" height="87" viewBox="0 0 87 87" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <g filter="url(#filter0_d_4007_3488)">
4
- <path d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"/>
5
- <path d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z" fill="#F28B0C"/>
6
- <path d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z" fill="#F28B0C"/>
7
- <path d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z" fill="#F28B0C"/>
8
- <path d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z" fill="#F28B0C"/>
9
- </g>
10
- <defs>
11
- <filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
- <feOffset dy="4"/>
15
- <feGaussianBlur stdDeviation="2"/>
16
- <feComposite in2="hardAlpha" operator="out"/>
17
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
18
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"/>
19
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"/>
20
- </filter>
21
- </defs>
22
- </svg>
23
-
24
- <!-- <svg width="87" height="87" viewBox="0 0 87 87" fill="none" xmlns="http://www.w3.org/2000/svg">
25
- <g filter="url(#filter0_d_4007_3488)">
26
- <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"/>
27
- <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z"/>
28
- <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z"/>
29
- <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z"/>
30
- <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z"/>
31
- </g>
32
- <defs>
33
- <filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
34
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
35
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
36
- <feOffset dy="4"/>
37
- <feGaussianBlur stdDeviation="2"/>
38
- <feComposite in2="hardAlpha" operator="out"/>
39
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
40
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"/>
41
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"/>
42
- </filter>
43
- </defs>
44
- </svg> -->
45
-
1
+ <template>
2
+ <svg width="87" height="87" viewBox="0 0 87 87" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <g filter="url(#filter0_d_4007_3488)">
4
+ <path d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"/>
5
+ <path d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z" fill="#F28B0C"/>
6
+ <path d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z" fill="#F28B0C"/>
7
+ <path d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z" fill="#F28B0C"/>
8
+ <path d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z" fill="#F28B0C"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset dy="4"/>
15
+ <feGaussianBlur stdDeviation="2"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"/>
20
+ </filter>
21
+ </defs>
22
+ </svg>
23
+
24
+ <!-- <svg width="87" height="87" viewBox="0 0 87 87" fill="none" xmlns="http://www.w3.org/2000/svg">
25
+ <g filter="url(#filter0_d_4007_3488)">
26
+ <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"/>
27
+ <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z"/>
28
+ <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z"/>
29
+ <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z"/>
30
+ <path clip-rule="evenodd" fill="currentColor" fill-rule="evenodd" d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z"/>
31
+ </g>
32
+ <defs>
33
+ <filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
34
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
35
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
36
+ <feOffset dy="4"/>
37
+ <feGaussianBlur stdDeviation="2"/>
38
+ <feComposite in2="hardAlpha" operator="out"/>
39
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
40
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"/>
42
+ </filter>
43
+ </defs>
44
+ </svg> -->
45
+
46
46
  </template>