cometchat-visual-builder-no-code 1.0.10-test5 → 1.0.10-test7
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.
- package/dist/CometChat/components/CometChatDetails/CometChatThreadedMessages.d.ts +3 -0
- package/dist/CometChat/components/CometChatMessages/CometChatMessages.d.ts +4 -2
- package/dist/CometChat/components/CometChatSearchView/CometChatSearchView.d.ts +19 -0
- package/dist/CometChat/components/CometChatSelector/CometChatSelector.d.ts +1 -0
- package/dist/CometChat/components/CometChatSelector/CometChatTabs.d.ts +1 -0
- package/dist/CometChat/context/appReducer.d.ts +192 -0
- package/dist/CometChatNoCode/services/builders.d.ts +2 -1
- package/dist/assets/svg/close2x.09f99d39f2d15fce3d6e.svg +12 -0
- package/dist/assets/svg/link_icon_2x.36e20b3a8c0cb0f48554.svg +3 -0
- package/dist/assets/svg/search_message_icon.90a1149086a61b9d62c9.svg +14 -0
- package/dist/icons/docked_close_icon.svg +9 -2
- package/dist/main.js +1 -1
- package/package.json +2 -2
|
@@ -6,6 +6,9 @@ interface ThreadProps {
|
|
|
6
6
|
selectedItem: CometChat.User | CometChat.Group | CometChat.Conversation | CometChat.Call | CallLog | undefined;
|
|
7
7
|
onClose?: () => void;
|
|
8
8
|
showComposer?: boolean;
|
|
9
|
+
onSubtitleClicked?: () => void;
|
|
10
|
+
goToMessageId?: string;
|
|
11
|
+
searchKeyword?: string;
|
|
9
12
|
}
|
|
10
13
|
export declare const CometChatThreadedMessages: (props: ThreadProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
14
|
export {};
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import '../../styles/CometChatMessages/CometChatMessages.css';
|
|
2
|
-
import { JSX } from 'react';
|
|
3
2
|
interface MessagesViewProps {
|
|
4
3
|
user?: CometChat.User;
|
|
5
4
|
group?: CometChat.Group;
|
|
6
|
-
|
|
5
|
+
onHeaderClicked: () => void;
|
|
7
6
|
onThreadRepliesClick: (message: CometChat.BaseMessage) => void;
|
|
7
|
+
onSearchClicked?: () => void;
|
|
8
8
|
showComposer?: boolean;
|
|
9
9
|
onBack?: () => void;
|
|
10
|
+
goToMessageId?: string;
|
|
11
|
+
searchKeyword?: string;
|
|
10
12
|
}
|
|
11
13
|
export declare const CometChatMessages: (props: MessagesViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import '../../styles/CometChatSearchView/CometChatSearchView.css';
|
|
2
|
+
interface MessagesViewProps {
|
|
3
|
+
/** The user to search messages for (used in one-on-one conversations) */
|
|
4
|
+
user?: CometChat.User;
|
|
5
|
+
/** The group to search messages in (used in group conversations) */
|
|
6
|
+
group?: CometChat.Group;
|
|
7
|
+
/** Callback function triggered when the search view is closed */
|
|
8
|
+
onClose?: () => void;
|
|
9
|
+
/** Callback function triggered when a message is clicked in search results */
|
|
10
|
+
onMessageClicked?: (message: CometChat.BaseMessage) => void;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* CometChatSearchView component renders a search interface for messages.
|
|
14
|
+
*
|
|
15
|
+
* @param {MessagesViewProps} props - The props for the component.
|
|
16
|
+
* @returns {JSX.Element} The rendered search view.
|
|
17
|
+
*/
|
|
18
|
+
declare const CometChatSearchView: (props: MessagesViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export default CometChatSearchView;
|
|
@@ -13,6 +13,7 @@ interface SelectorProps {
|
|
|
13
13
|
onHide?: () => void;
|
|
14
14
|
onNewChatClicked?: () => void;
|
|
15
15
|
onGroupCreated?: (group: CometChat.Group) => void;
|
|
16
|
+
onSearchClicked?: () => void;
|
|
16
17
|
hideCreateGroupButton?: boolean;
|
|
17
18
|
}
|
|
18
19
|
declare const MemoizedCometChatSelector: React.MemoExoticComponent<(props: SelectorProps) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -16,6 +16,12 @@ export interface defaultStateType {
|
|
|
16
16
|
group: CometChat.Group;
|
|
17
17
|
};
|
|
18
18
|
isFreshChat?: boolean;
|
|
19
|
+
goToMessageId?: string;
|
|
20
|
+
showMessagesSearch?: boolean;
|
|
21
|
+
showConversationsSearch?: boolean;
|
|
22
|
+
sideComponentTop?: string;
|
|
23
|
+
threadSearchMessage?: CometChat.BaseMessage;
|
|
24
|
+
searchKeyword?: string;
|
|
19
25
|
}
|
|
20
26
|
export declare const defaultAppState: defaultStateType;
|
|
21
27
|
export declare const appReducer: (state: defaultStateType | undefined, action: any) => {
|
|
@@ -36,6 +42,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
36
42
|
group: CometChat.Group;
|
|
37
43
|
} | undefined;
|
|
38
44
|
isFreshChat?: boolean | undefined;
|
|
45
|
+
goToMessageId?: string | undefined;
|
|
46
|
+
showMessagesSearch?: boolean | undefined;
|
|
47
|
+
showConversationsSearch?: boolean | undefined;
|
|
48
|
+
sideComponentTop?: string | undefined;
|
|
49
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
50
|
+
searchKeyword?: string | undefined;
|
|
39
51
|
} | {
|
|
40
52
|
selectedItem: any;
|
|
41
53
|
activeTab: string;
|
|
@@ -54,6 +66,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
54
66
|
group: CometChat.Group;
|
|
55
67
|
} | undefined;
|
|
56
68
|
isFreshChat?: boolean | undefined;
|
|
69
|
+
goToMessageId?: string | undefined;
|
|
70
|
+
showMessagesSearch?: boolean | undefined;
|
|
71
|
+
showConversationsSearch?: boolean | undefined;
|
|
72
|
+
sideComponentTop?: string | undefined;
|
|
73
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
74
|
+
searchKeyword?: string | undefined;
|
|
57
75
|
} | {
|
|
58
76
|
selectedItemUser: any;
|
|
59
77
|
activeTab: string;
|
|
@@ -72,6 +90,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
72
90
|
group: CometChat.Group;
|
|
73
91
|
} | undefined;
|
|
74
92
|
isFreshChat?: boolean | undefined;
|
|
93
|
+
goToMessageId?: string | undefined;
|
|
94
|
+
showMessagesSearch?: boolean | undefined;
|
|
95
|
+
showConversationsSearch?: boolean | undefined;
|
|
96
|
+
sideComponentTop?: string | undefined;
|
|
97
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
98
|
+
searchKeyword?: string | undefined;
|
|
75
99
|
} | {
|
|
76
100
|
selectedItemGroup: any;
|
|
77
101
|
activeTab: string;
|
|
@@ -90,6 +114,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
90
114
|
group: CometChat.Group;
|
|
91
115
|
} | undefined;
|
|
92
116
|
isFreshChat?: boolean | undefined;
|
|
117
|
+
goToMessageId?: string | undefined;
|
|
118
|
+
showMessagesSearch?: boolean | undefined;
|
|
119
|
+
showConversationsSearch?: boolean | undefined;
|
|
120
|
+
sideComponentTop?: string | undefined;
|
|
121
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
122
|
+
searchKeyword?: string | undefined;
|
|
93
123
|
} | {
|
|
94
124
|
selectedItemCall: any;
|
|
95
125
|
activeTab: string;
|
|
@@ -108,8 +138,15 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
108
138
|
group: CometChat.Group;
|
|
109
139
|
} | undefined;
|
|
110
140
|
isFreshChat?: boolean | undefined;
|
|
141
|
+
goToMessageId?: string | undefined;
|
|
142
|
+
showMessagesSearch?: boolean | undefined;
|
|
143
|
+
showConversationsSearch?: boolean | undefined;
|
|
144
|
+
sideComponentTop?: string | undefined;
|
|
145
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
146
|
+
searchKeyword?: string | undefined;
|
|
111
147
|
} | {
|
|
112
148
|
sideComponent: any;
|
|
149
|
+
sideComponentTop: any;
|
|
113
150
|
activeTab: string;
|
|
114
151
|
selectedItem: CometChat.Conversation | undefined;
|
|
115
152
|
selectedItemUser: CometChat.User | undefined;
|
|
@@ -123,6 +160,11 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
123
160
|
group: CometChat.Group;
|
|
124
161
|
} | undefined;
|
|
125
162
|
isFreshChat?: boolean | undefined;
|
|
163
|
+
goToMessageId?: string | undefined;
|
|
164
|
+
showMessagesSearch?: boolean | undefined;
|
|
165
|
+
showConversationsSearch?: boolean | undefined;
|
|
166
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
167
|
+
searchKeyword?: string | undefined;
|
|
126
168
|
} | {
|
|
127
169
|
threadedMessage: any;
|
|
128
170
|
activeTab: string;
|
|
@@ -141,6 +183,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
141
183
|
group: CometChat.Group;
|
|
142
184
|
} | undefined;
|
|
143
185
|
isFreshChat?: boolean | undefined;
|
|
186
|
+
goToMessageId?: string | undefined;
|
|
187
|
+
showMessagesSearch?: boolean | undefined;
|
|
188
|
+
showConversationsSearch?: boolean | undefined;
|
|
189
|
+
sideComponentTop?: string | undefined;
|
|
190
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
191
|
+
searchKeyword?: string | undefined;
|
|
144
192
|
} | {
|
|
145
193
|
showNewChat: any;
|
|
146
194
|
activeTab: string;
|
|
@@ -159,6 +207,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
159
207
|
group: CometChat.Group;
|
|
160
208
|
} | undefined;
|
|
161
209
|
isFreshChat?: boolean | undefined;
|
|
210
|
+
goToMessageId?: string | undefined;
|
|
211
|
+
showMessagesSearch?: boolean | undefined;
|
|
212
|
+
showConversationsSearch?: boolean | undefined;
|
|
213
|
+
sideComponentTop?: string | undefined;
|
|
214
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
215
|
+
searchKeyword?: string | undefined;
|
|
162
216
|
} | {
|
|
163
217
|
newChat: any;
|
|
164
218
|
showNewChat: boolean;
|
|
@@ -174,6 +228,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
174
228
|
threadedMessage: CometChat.BaseMessage | undefined;
|
|
175
229
|
showJoinGroup: boolean;
|
|
176
230
|
isFreshChat?: boolean | undefined;
|
|
231
|
+
goToMessageId?: string | undefined;
|
|
232
|
+
showMessagesSearch?: boolean | undefined;
|
|
233
|
+
showConversationsSearch?: boolean | undefined;
|
|
234
|
+
sideComponentTop?: string | undefined;
|
|
235
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
236
|
+
searchKeyword?: string | undefined;
|
|
177
237
|
} | {
|
|
178
238
|
showJoinGroup: any;
|
|
179
239
|
activeTab: string;
|
|
@@ -192,6 +252,12 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
192
252
|
group: CometChat.Group;
|
|
193
253
|
} | undefined;
|
|
194
254
|
isFreshChat?: boolean | undefined;
|
|
255
|
+
goToMessageId?: string | undefined;
|
|
256
|
+
showMessagesSearch?: boolean | undefined;
|
|
257
|
+
showConversationsSearch?: boolean | undefined;
|
|
258
|
+
sideComponentTop?: string | undefined;
|
|
259
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
260
|
+
searchKeyword?: string | undefined;
|
|
195
261
|
} | {
|
|
196
262
|
isFreshChat: any;
|
|
197
263
|
activeTab: string;
|
|
@@ -210,4 +276,130 @@ export declare const appReducer: (state: defaultStateType | undefined, action: a
|
|
|
210
276
|
user: CometChat.User;
|
|
211
277
|
group: CometChat.Group;
|
|
212
278
|
} | undefined;
|
|
279
|
+
goToMessageId?: string | undefined;
|
|
280
|
+
showMessagesSearch?: boolean | undefined;
|
|
281
|
+
showConversationsSearch?: boolean | undefined;
|
|
282
|
+
sideComponentTop?: string | undefined;
|
|
283
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
284
|
+
searchKeyword?: string | undefined;
|
|
285
|
+
} | {
|
|
286
|
+
goToMessageId: any;
|
|
287
|
+
activeTab: string;
|
|
288
|
+
selectedItem: CometChat.Conversation | undefined;
|
|
289
|
+
selectedItemUser: CometChat.User | undefined;
|
|
290
|
+
selectedItemGroup: CometChat.Group | undefined;
|
|
291
|
+
selectedItemCall: CometChat.Call | undefined;
|
|
292
|
+
sideComponent: {
|
|
293
|
+
visible: boolean;
|
|
294
|
+
type: string;
|
|
295
|
+
};
|
|
296
|
+
threadedMessage: CometChat.BaseMessage | undefined;
|
|
297
|
+
showNewChat: boolean;
|
|
298
|
+
showJoinGroup: boolean;
|
|
299
|
+
newChat?: {
|
|
300
|
+
user: CometChat.User;
|
|
301
|
+
group: CometChat.Group;
|
|
302
|
+
} | undefined;
|
|
303
|
+
isFreshChat?: boolean | undefined;
|
|
304
|
+
showMessagesSearch?: boolean | undefined;
|
|
305
|
+
showConversationsSearch?: boolean | undefined;
|
|
306
|
+
sideComponentTop?: string | undefined;
|
|
307
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
308
|
+
searchKeyword?: string | undefined;
|
|
309
|
+
} | {
|
|
310
|
+
showMessagesSearch: any;
|
|
311
|
+
sideComponentTop: string;
|
|
312
|
+
activeTab: string;
|
|
313
|
+
selectedItem: CometChat.Conversation | undefined;
|
|
314
|
+
selectedItemUser: CometChat.User | undefined;
|
|
315
|
+
selectedItemGroup: CometChat.Group | undefined;
|
|
316
|
+
selectedItemCall: CometChat.Call | undefined;
|
|
317
|
+
sideComponent: {
|
|
318
|
+
visible: boolean;
|
|
319
|
+
type: string;
|
|
320
|
+
};
|
|
321
|
+
threadedMessage: CometChat.BaseMessage | undefined;
|
|
322
|
+
showNewChat: boolean;
|
|
323
|
+
showJoinGroup: boolean;
|
|
324
|
+
newChat?: {
|
|
325
|
+
user: CometChat.User;
|
|
326
|
+
group: CometChat.Group;
|
|
327
|
+
} | undefined;
|
|
328
|
+
isFreshChat?: boolean | undefined;
|
|
329
|
+
goToMessageId?: string | undefined;
|
|
330
|
+
showConversationsSearch?: boolean | undefined;
|
|
331
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
332
|
+
searchKeyword?: string | undefined;
|
|
333
|
+
} | {
|
|
334
|
+
showConversationsSearch: any;
|
|
335
|
+
activeTab: string;
|
|
336
|
+
selectedItem: CometChat.Conversation | undefined;
|
|
337
|
+
selectedItemUser: CometChat.User | undefined;
|
|
338
|
+
selectedItemGroup: CometChat.Group | undefined;
|
|
339
|
+
selectedItemCall: CometChat.Call | undefined;
|
|
340
|
+
sideComponent: {
|
|
341
|
+
visible: boolean;
|
|
342
|
+
type: string;
|
|
343
|
+
};
|
|
344
|
+
threadedMessage: CometChat.BaseMessage | undefined;
|
|
345
|
+
showNewChat: boolean;
|
|
346
|
+
showJoinGroup: boolean;
|
|
347
|
+
newChat?: {
|
|
348
|
+
user: CometChat.User;
|
|
349
|
+
group: CometChat.Group;
|
|
350
|
+
} | undefined;
|
|
351
|
+
isFreshChat?: boolean | undefined;
|
|
352
|
+
goToMessageId?: string | undefined;
|
|
353
|
+
showMessagesSearch?: boolean | undefined;
|
|
354
|
+
sideComponentTop?: string | undefined;
|
|
355
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
356
|
+
searchKeyword?: string | undefined;
|
|
357
|
+
} | {
|
|
358
|
+
threadSearchMessage: any;
|
|
359
|
+
activeTab: string;
|
|
360
|
+
selectedItem: CometChat.Conversation | undefined;
|
|
361
|
+
selectedItemUser: CometChat.User | undefined;
|
|
362
|
+
selectedItemGroup: CometChat.Group | undefined;
|
|
363
|
+
selectedItemCall: CometChat.Call | undefined;
|
|
364
|
+
sideComponent: {
|
|
365
|
+
visible: boolean;
|
|
366
|
+
type: string;
|
|
367
|
+
};
|
|
368
|
+
threadedMessage: CometChat.BaseMessage | undefined;
|
|
369
|
+
showNewChat: boolean;
|
|
370
|
+
showJoinGroup: boolean;
|
|
371
|
+
newChat?: {
|
|
372
|
+
user: CometChat.User;
|
|
373
|
+
group: CometChat.Group;
|
|
374
|
+
} | undefined;
|
|
375
|
+
isFreshChat?: boolean | undefined;
|
|
376
|
+
goToMessageId?: string | undefined;
|
|
377
|
+
showMessagesSearch?: boolean | undefined;
|
|
378
|
+
showConversationsSearch?: boolean | undefined;
|
|
379
|
+
sideComponentTop?: string | undefined;
|
|
380
|
+
searchKeyword?: string | undefined;
|
|
381
|
+
} | {
|
|
382
|
+
searchKeyword: any;
|
|
383
|
+
activeTab: string;
|
|
384
|
+
selectedItem: CometChat.Conversation | undefined;
|
|
385
|
+
selectedItemUser: CometChat.User | undefined;
|
|
386
|
+
selectedItemGroup: CometChat.Group | undefined;
|
|
387
|
+
selectedItemCall: CometChat.Call | undefined;
|
|
388
|
+
sideComponent: {
|
|
389
|
+
visible: boolean;
|
|
390
|
+
type: string;
|
|
391
|
+
};
|
|
392
|
+
threadedMessage: CometChat.BaseMessage | undefined;
|
|
393
|
+
showNewChat: boolean;
|
|
394
|
+
showJoinGroup: boolean;
|
|
395
|
+
newChat?: {
|
|
396
|
+
user: CometChat.User;
|
|
397
|
+
group: CometChat.Group;
|
|
398
|
+
} | undefined;
|
|
399
|
+
isFreshChat?: boolean | undefined;
|
|
400
|
+
goToMessageId?: string | undefined;
|
|
401
|
+
showMessagesSearch?: boolean | undefined;
|
|
402
|
+
showConversationsSearch?: boolean | undefined;
|
|
403
|
+
sideComponentTop?: string | undefined;
|
|
404
|
+
threadSearchMessage?: import("@cometchat/chat-sdk-javascript").BaseMessage | undefined;
|
|
213
405
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Fetch NoCode style settings by App ID or Variant ID.
|
|
2
|
+
* Fetch NoCode style settings by App ID or Chat Variant ID.
|
|
3
|
+
* If ERR_BUILDER_NOT_FOUND is encountered, falls back to fetching all builders.
|
|
3
4
|
*/
|
|
4
5
|
export declare const fetchNoCodeStyles: (appId?: string, variantID?: string) => Promise<any>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Icons/24/Close</title>
|
|
4
|
+
<g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
|
5
|
+
<g id="Icons/24/Close" stroke="#000000" stroke-width="1.5">
|
|
6
|
+
<g id="Group" transform="translate(5.000000, 5.000000)">
|
|
7
|
+
<line x1="0" y1="0" x2="14" y2="14" id="Path-9"></line>
|
|
8
|
+
<line x1="0" y1="0" x2="14" y2="14" id="Path-9" transform="translate(7.000000, 7.000000) scale(-1, 1) translate(-7.000000, -7.000000) "></line>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
2
|
+
<path d="M11.3334 4.6665H8.66671V5.99984H11.3334C12.4334 5.99984 13.3334 6.89984 13.3334 7.99984C13.3334 9.09984 12.4334 9.99984 11.3334 9.99984H8.66671V11.3332H11.3334C13.1734 11.3332 14.6667 9.83984 14.6667 7.99984C14.6667 6.15984 13.1734 4.6665 11.3334 4.6665ZM7.33337 9.99984H4.66671C3.56671 9.99984 2.66671 9.09984 2.66671 7.99984C2.66671 6.89984 3.56671 5.99984 4.66671 5.99984H7.33337V4.6665H4.66671C2.82671 4.6665 1.33337 6.15984 1.33337 7.99984C1.33337 9.83984 2.82671 11.3332 4.66671 11.3332H7.33337V9.99984ZM5.33337 7.33317H10.6667V8.6665H5.33337V7.33317Z" fill="#A1A1A1"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120" fill="none">
|
|
2
|
+
<g clip-path="url(#clip0_13442_134983)">
|
|
3
|
+
<path opacity="0.2" d="M105 45.2598H97.5V64.0098C97.5 74.3635 89.1037 82.7598 78.75 82.7598H45V90.2598C45 98.5435 51.7162 105.26 60 105.26H82.5L98.85 118.872C100.44 120.196 102.806 119.982 104.13 118.392C104.692 117.717 105 116.866 105 115.985V105.26C113.284 105.26 120 98.5435 120 90.2598V60.2598C120 51.976 113.284 45.2598 105 45.2598Z" fill="#DCDCDC"/>
|
|
4
|
+
<path opacity="0.2" d="M75 0.259766H15C6.71625 0.259766 0 6.97602 0 15.2598V60.2598C0 68.5435 6.71625 75.2598 15 75.2598V89.6223C15 91.6923 16.68 93.3723 18.75 93.3723C19.6425 93.3723 20.5088 93.0535 21.1875 92.4723L41.25 75.2598H75C83.2838 75.2598 90 68.5435 90 60.2598V15.2598C90 6.97602 83.2838 0.259766 75 0.259766ZM27.7875 43.0473C27.4575 43.411 27.0788 43.726 26.6625 43.9848C26.2575 44.2585 25.8337 44.4985 25.3875 44.6973C24.9225 44.8698 24.4462 45.0085 23.9625 45.1098C23.4825 45.2148 22.9912 45.2635 22.5 45.2598C18.3563 45.2598 15 41.9035 15 37.7598C14.9213 33.6198 18.2138 30.196 22.3538 30.1173C22.8937 30.106 23.4338 30.1548 23.9625 30.2598C24.4462 30.361 24.9225 30.4998 25.3875 30.6723C25.8412 30.8598 26.2688 31.096 26.6625 31.3848C27.0713 31.6435 27.4462 31.9435 27.7875 32.2848C29.2425 33.7323 30.0413 35.7085 30 37.7598C29.9925 39.7473 29.1975 41.6485 27.7875 43.0473ZM50.2875 43.0473C48.8887 44.4573 46.9875 45.2523 45 45.2598C44.5125 45.316 44.025 45.316 43.5375 45.2598C43.0537 45.1585 42.5775 45.0198 42.1125 44.8473C41.6662 44.6485 41.2425 44.4085 40.8375 44.1348C40.4175 43.8648 40.0275 43.5535 39.675 43.1973C38.2425 41.7535 37.4588 39.7923 37.5 37.7598C37.4437 37.2723 37.4437 36.7848 37.5 36.2973C37.6012 35.8135 37.74 35.3373 37.9125 34.8723C38.1 34.4185 38.3363 33.991 38.625 33.5973C38.8913 33.1848 39.195 32.7948 39.525 32.4348C39.885 32.1048 40.275 31.801 40.6875 31.5348C41.0813 31.246 41.5087 31.0098 41.9625 30.8223C42.4725 30.5898 42.9975 30.4023 43.5375 30.2598C47.5987 29.4498 51.5475 32.0898 52.3575 36.151C52.4625 36.6798 52.5112 37.2198 52.5 37.7598C52.5 39.7398 51.72 41.641 50.325 43.0473H50.2875ZM72.7875 43.0473C72.4575 43.411 72.0788 43.726 71.6625 43.9848C71.2575 44.2585 70.8338 44.4985 70.3875 44.6973C69.9225 44.8698 69.4463 45.0085 68.9625 45.1098C68.4825 45.2148 67.9912 45.2635 67.5 45.2598C63.3563 45.2598 60 41.9035 60 37.7598C59.9212 33.6198 63.2138 30.196 67.3538 30.1173C67.8938 30.106 68.4337 30.1548 68.9625 30.2598C69.4463 30.361 69.9225 30.4998 70.3875 30.6723C70.8413 30.8598 71.2688 31.096 71.6625 31.3848C72.0713 31.6435 72.4463 31.9435 72.7875 32.2848C74.2425 33.7323 75.0413 35.7085 75 37.7598C74.9925 39.7473 74.1975 41.6485 72.7875 43.0473Z" fill="#DCDCDC"/>
|
|
5
|
+
<path d="M47.7349 18.3633C41.9551 18.3602 36.3043 20.0713 31.497 23.2801C26.6898 26.4889 22.9422 31.0513 20.7283 36.3902C18.5143 41.7291 17.9334 47.6047 19.0591 53.2738C20.1847 58.9429 22.9664 64.1508 27.0522 68.2389C31.138 72.3269 36.3445 75.1114 42.013 76.2401C47.6815 77.3688 53.5574 76.7911 58.8975 74.58C64.2376 72.3688 68.802 68.6237 72.0134 63.8182C75.2248 59.0127 76.9389 53.3628 76.9389 47.583C76.9389 39.8362 73.8626 32.4064 68.3862 26.9271C62.9099 21.4478 55.4817 18.3674 47.7349 18.3633Z" fill="white" stroke="#A1A1A1" stroke-width="1.57011" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M68.5233 68.7793L76.311 76.567" stroke="#A1A1A1" stroke-width="1.57011" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M75.4307 72.7835L73.0113 75.3144C71.9267 76.4489 71.9672 78.2479 73.1017 79.3324L94.0982 99.4041C95.2328 100.489 97.0317 100.448 98.1163 99.3137L100.536 96.7827C101.62 95.6482 101.58 93.8493 100.445 92.7647L79.4487 72.693C78.3142 71.6084 76.5153 71.6489 75.4307 72.7835Z" fill="#A1A1A1"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="clip0_13442_134983">
|
|
11
|
+
<rect width="120" height="120" fill="white"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_16464_48467)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 5.64705V21.2469C0 22.7685 1.23504 24 2.75855 24H21.2889C22.8136 24 24.0475 22.7674 24.0475 21.2469V2.7531C24.0475 1.23147 22.8124 0 21.2889 0H10.0787V2.75159C10.0787 4.27204 8.91465 5.50459 7.39144 5.50459H6.79438L4.74332 7.96946L4.95096 5.64705H0ZM17.6434 7.97164C17.2982 7.3728 16.8502 6.87244 16.2996 6.47051C15.7489 6.06855 15.1242 5.76915 14.4256 5.57228C13.727 5.3754 12.9996 5.27696 12.2434 5.27696C11.2078 5.27696 10.2872 5.44924 9.48176 5.79375C8.67628 6.13826 7.99413 6.61815 7.43521 7.23337C6.87629 7.8486 6.45302 8.57865 6.16535 9.42352C5.87769 10.2684 5.73385 11.1831 5.73385 12.1674C5.73385 13.119 5.89001 13.9926 6.20233 14.7882C6.51468 15.5839 6.95028 16.2689 7.50919 16.8431C8.06807 17.4173 8.74617 17.8643 9.54342 18.1843C10.3407 18.5042 11.216 18.6641 12.1694 18.6641C13.8626 18.6641 15.2516 18.2212 16.3365 17.3352C17.4215 16.4493 18.079 15.1615 18.3091 13.4717H14.9311C14.816 14.2591 14.5324 14.8867 14.0804 15.3543C13.6283 15.8218 12.9831 16.0556 12.1448 16.0556C11.6023 16.0556 11.142 15.9326 10.7639 15.6865C10.3859 15.4404 10.0859 15.1246 9.86397 14.739C9.64205 14.3535 9.48176 13.9228 9.38313 13.4471C9.2845 12.9713 9.2352 12.5037 9.2352 12.0444C9.2352 11.5686 9.2845 11.0887 9.38313 10.6048C9.48176 10.1208 9.65028 9.67785 9.88861 9.27589C10.127 8.87396 10.4352 8.54584 10.8133 8.29155C11.1913 8.03726 11.6598 7.9101 12.2187 7.9101C13.7146 7.9101 14.5776 8.64015 14.8078 10.1003H18.2351C18.1859 9.27997 17.9886 8.57044 17.6434 7.97164Z" fill="white"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_16464_48467">
|
|
7
|
+
<rect width="24" height="24" rx="12" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
3
10
|
</svg>
|