@memori.ai/memori-react 7.21.1 → 7.23.0
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/CHANGELOG.md +56 -0
- package/dist/components/CompletionProviderStatus/CompletionProviderStatus.css +33 -23
- package/dist/components/CompletionProviderStatus/CompletionProviderStatus.js +85 -8
- package/dist/components/CompletionProviderStatus/CompletionProviderStatus.js.map +1 -1
- package/dist/components/KnownFacts/KnownFacts.js +1 -1
- package/dist/components/KnownFacts/KnownFacts.js.map +1 -1
- package/dist/components/StartPanel/StartPanel.css +29 -0
- package/dist/components/StartPanel/StartPanel.js +2 -1
- package/dist/components/StartPanel/StartPanel.js.map +1 -1
- package/dist/components/Typing/Typing.js +49 -47
- package/dist/components/Typing/Typing.js.map +1 -1
- package/dist/components/UploadButton/UploadButton.d.ts +1 -0
- package/dist/components/UploadButton/UploadButton.js +142 -3
- package/dist/components/UploadButton/UploadButton.js.map +1 -1
- package/dist/components/icons/Alert.d.ts +5 -0
- package/dist/components/icons/Alert.js +6 -0
- package/dist/components/icons/Alert.js.map +1 -0
- package/dist/components/icons/Info.d.ts +5 -0
- package/dist/components/icons/Info.js +6 -0
- package/dist/components/icons/Info.js.map +1 -0
- package/dist/components/icons/Warning.js +1 -1
- package/dist/components/icons/Warning.js.map +1 -1
- package/dist/components/ui/ConfirmDialog.css +42 -0
- package/dist/components/ui/ConfirmDialog.d.ts +11 -0
- package/dist/components/ui/ConfirmDialog.js +12 -0
- package/dist/components/ui/ConfirmDialog.js.map +1 -0
- package/dist/components/ui/Drawer.css +121 -96
- package/dist/components/ui/Drawer.d.ts +15 -6
- package/dist/components/ui/Drawer.js +44 -13
- package/dist/components/ui/Drawer.js.map +1 -1
- package/dist/locales/de.json +15 -0
- package/dist/locales/en.json +15 -0
- package/dist/locales/es.json +15 -0
- package/dist/locales/fr.json +7 -0
- package/dist/locales/it.json +15 -0
- package/dist/styles.css +6 -4
- package/esm/components/CompletionProviderStatus/CompletionProviderStatus.css +33 -23
- package/esm/components/CompletionProviderStatus/CompletionProviderStatus.js +85 -8
- package/esm/components/CompletionProviderStatus/CompletionProviderStatus.js.map +1 -1
- package/esm/components/KnownFacts/KnownFacts.js +1 -1
- package/esm/components/KnownFacts/KnownFacts.js.map +1 -1
- package/esm/components/StartPanel/StartPanel.css +29 -0
- package/esm/components/StartPanel/StartPanel.js +2 -1
- package/esm/components/StartPanel/StartPanel.js.map +1 -1
- package/esm/components/Typing/Typing.js +49 -47
- package/esm/components/Typing/Typing.js.map +1 -1
- package/esm/components/UploadButton/UploadButton.d.ts +1 -0
- package/esm/components/UploadButton/UploadButton.js +142 -3
- package/esm/components/UploadButton/UploadButton.js.map +1 -1
- package/esm/components/icons/Alert.d.ts +5 -0
- package/esm/components/icons/Alert.js +4 -0
- package/esm/components/icons/Alert.js.map +1 -0
- package/esm/components/icons/Info.d.ts +5 -0
- package/esm/components/icons/Info.js +4 -0
- package/esm/components/icons/Info.js.map +1 -0
- package/esm/components/icons/Warning.js +1 -1
- package/esm/components/icons/Warning.js.map +1 -1
- package/esm/components/ui/ConfirmDialog.css +42 -0
- package/esm/components/ui/ConfirmDialog.d.ts +11 -0
- package/esm/components/ui/ConfirmDialog.js +9 -0
- package/esm/components/ui/ConfirmDialog.js.map +1 -0
- package/esm/components/ui/Drawer.css +121 -96
- package/esm/components/ui/Drawer.d.ts +15 -6
- package/esm/components/ui/Drawer.js +45 -14
- package/esm/components/ui/Drawer.js.map +1 -1
- package/esm/locales/de.json +15 -0
- package/esm/locales/en.json +15 -0
- package/esm/locales/es.json +15 -0
- package/esm/locales/fr.json +7 -0
- package/esm/locales/it.json +15 -0
- package/esm/styles.css +6 -4
- package/package.json +1 -1
- package/src/components/BlockedMemoriBadge/__snapshots__/BlockedMemoriBadge.test.tsx.snap +10 -0
- package/src/components/CompletionProviderStatus/CompletionProviderStatus.css +33 -23
- package/src/components/CompletionProviderStatus/CompletionProviderStatus.stories.tsx +274 -21
- package/src/components/CompletionProviderStatus/CompletionProviderStatus.tsx +117 -21
- package/src/components/CompletionProviderStatus/__snapshots__/CompletionProviderStatus.test.tsx.snap +39 -21
- package/src/components/KnownFacts/KnownFacts.tsx +1 -1
- package/src/components/StartPanel/StartPanel.css +29 -0
- package/src/components/StartPanel/StartPanel.tsx +47 -0
- package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +827 -7
- package/src/components/Typing/Typing.tsx +52 -47
- package/src/components/UploadButton/UploadButton.tsx +206 -5
- package/src/components/UploadButton/__snapshots__/UploadButton.test.tsx.snap +1 -1
- package/src/components/icons/Alert.tsx +31 -0
- package/src/components/icons/Info.tsx +31 -0
- package/src/components/icons/Warning.tsx +2 -1
- package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +74 -0
- package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +148 -0
- package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +74 -0
- package/src/components/layouts/__snapshots__/ZoomedFullBody.test.tsx.snap +74 -0
- package/src/components/ui/ConfirmDialog.css +42 -0
- package/src/components/ui/ConfirmDialog.stories.tsx +216 -0
- package/src/components/ui/ConfirmDialog.test.tsx +124 -0
- package/src/components/ui/ConfirmDialog.tsx +58 -0
- package/src/components/ui/Drawer.css +121 -96
- package/src/components/ui/Drawer.stories.tsx +152 -67
- package/src/components/ui/Drawer.test.tsx +6 -2
- package/src/components/ui/Drawer.tsx +195 -89
- package/src/components/ui/__snapshots__/ConfirmDialog.test.tsx.snap +35 -0
- package/src/locales/de.json +15 -0
- package/src/locales/en.json +15 -0
- package/src/locales/es.json +15 -0
- package/src/locales/fr.json +7 -0
- package/src/locales/it.json +15 -0
- package/src/styles.css +6 -4
|
@@ -74,6 +74,80 @@ exports[`renders StartPanel for board of experts unchanged 1`] = `
|
|
|
74
74
|
Lorem ipsum.
|
|
75
75
|
</span>
|
|
76
76
|
</p>
|
|
77
|
+
<div
|
|
78
|
+
class="memori--start-privacy-explanation-container"
|
|
79
|
+
>
|
|
80
|
+
<p
|
|
81
|
+
class="memori--start-privacy-explanation"
|
|
82
|
+
>
|
|
83
|
+
write_and_speak.pagePrivacyExplanation
|
|
84
|
+
</p>
|
|
85
|
+
<div
|
|
86
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
87
|
+
>
|
|
88
|
+
<div
|
|
89
|
+
class="memori-tooltip--content"
|
|
90
|
+
>
|
|
91
|
+
<div
|
|
92
|
+
class="memori--privacy-tooltip-content"
|
|
93
|
+
>
|
|
94
|
+
<p>
|
|
95
|
+
|
|
96
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
97
|
+
</p>
|
|
98
|
+
<ul
|
|
99
|
+
class="memori--privacy-tooltip-content-list"
|
|
100
|
+
>
|
|
101
|
+
<li>
|
|
102
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
103
|
+
</li>
|
|
104
|
+
<li>
|
|
105
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
106
|
+
</li>
|
|
107
|
+
</ul>
|
|
108
|
+
<p>
|
|
109
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
110
|
+
</p>
|
|
111
|
+
<a
|
|
112
|
+
href="https://memori.ai/en/privacy-policy"
|
|
113
|
+
rel="noopener noreferrer"
|
|
114
|
+
target="_blank"
|
|
115
|
+
>
|
|
116
|
+
privacyPolicy
|
|
117
|
+
</a>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
<div
|
|
121
|
+
class="memori-tooltip--trigger"
|
|
122
|
+
>
|
|
123
|
+
<svg
|
|
124
|
+
aria-hidden="true"
|
|
125
|
+
class="memori--start-privacy-explanation-icon"
|
|
126
|
+
fill="none"
|
|
127
|
+
focusable="false"
|
|
128
|
+
role="img"
|
|
129
|
+
stroke="currentColor"
|
|
130
|
+
stroke-linecap="round"
|
|
131
|
+
stroke-linejoin="round"
|
|
132
|
+
stroke-width="1.5"
|
|
133
|
+
viewBox="0 0 24 24"
|
|
134
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
135
|
+
>
|
|
136
|
+
<circle
|
|
137
|
+
cx="12"
|
|
138
|
+
cy="12"
|
|
139
|
+
r="10"
|
|
140
|
+
/>
|
|
141
|
+
<path
|
|
142
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
143
|
+
/>
|
|
144
|
+
<path
|
|
145
|
+
d="M12 17L12.01 17"
|
|
146
|
+
/>
|
|
147
|
+
</svg>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
</div>
|
|
77
151
|
<button
|
|
78
152
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
79
153
|
>
|
|
@@ -199,6 +273,80 @@ exports[`renders StartPanel on instruct unchanged 1`] = `
|
|
|
199
273
|
Lorem ipsum.
|
|
200
274
|
</span>
|
|
201
275
|
</p>
|
|
276
|
+
<div
|
|
277
|
+
class="memori--start-privacy-explanation-container"
|
|
278
|
+
>
|
|
279
|
+
<p
|
|
280
|
+
class="memori--start-privacy-explanation"
|
|
281
|
+
>
|
|
282
|
+
write_and_speak.pagePrivacyExplanation
|
|
283
|
+
</p>
|
|
284
|
+
<div
|
|
285
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
286
|
+
>
|
|
287
|
+
<div
|
|
288
|
+
class="memori-tooltip--content"
|
|
289
|
+
>
|
|
290
|
+
<div
|
|
291
|
+
class="memori--privacy-tooltip-content"
|
|
292
|
+
>
|
|
293
|
+
<p>
|
|
294
|
+
|
|
295
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
296
|
+
</p>
|
|
297
|
+
<ul
|
|
298
|
+
class="memori--privacy-tooltip-content-list"
|
|
299
|
+
>
|
|
300
|
+
<li>
|
|
301
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
302
|
+
</li>
|
|
303
|
+
<li>
|
|
304
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
305
|
+
</li>
|
|
306
|
+
</ul>
|
|
307
|
+
<p>
|
|
308
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
309
|
+
</p>
|
|
310
|
+
<a
|
|
311
|
+
href="https://memori.ai/en/privacy-policy"
|
|
312
|
+
rel="noopener noreferrer"
|
|
313
|
+
target="_blank"
|
|
314
|
+
>
|
|
315
|
+
privacyPolicy
|
|
316
|
+
</a>
|
|
317
|
+
</div>
|
|
318
|
+
</div>
|
|
319
|
+
<div
|
|
320
|
+
class="memori-tooltip--trigger"
|
|
321
|
+
>
|
|
322
|
+
<svg
|
|
323
|
+
aria-hidden="true"
|
|
324
|
+
class="memori--start-privacy-explanation-icon"
|
|
325
|
+
fill="none"
|
|
326
|
+
focusable="false"
|
|
327
|
+
role="img"
|
|
328
|
+
stroke="currentColor"
|
|
329
|
+
stroke-linecap="round"
|
|
330
|
+
stroke-linejoin="round"
|
|
331
|
+
stroke-width="1.5"
|
|
332
|
+
viewBox="0 0 24 24"
|
|
333
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
334
|
+
>
|
|
335
|
+
<circle
|
|
336
|
+
cx="12"
|
|
337
|
+
cy="12"
|
|
338
|
+
r="10"
|
|
339
|
+
/>
|
|
340
|
+
<path
|
|
341
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
342
|
+
/>
|
|
343
|
+
<path
|
|
344
|
+
d="M12 17L12.01 17"
|
|
345
|
+
/>
|
|
346
|
+
</svg>
|
|
347
|
+
</div>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
202
350
|
<button
|
|
203
351
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
204
352
|
>
|
|
@@ -324,6 +472,80 @@ exports[`renders StartPanel unchanged 1`] = `
|
|
|
324
472
|
Lorem ipsum.
|
|
325
473
|
</span>
|
|
326
474
|
</p>
|
|
475
|
+
<div
|
|
476
|
+
class="memori--start-privacy-explanation-container"
|
|
477
|
+
>
|
|
478
|
+
<p
|
|
479
|
+
class="memori--start-privacy-explanation"
|
|
480
|
+
>
|
|
481
|
+
write_and_speak.pagePrivacyExplanation
|
|
482
|
+
</p>
|
|
483
|
+
<div
|
|
484
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
485
|
+
>
|
|
486
|
+
<div
|
|
487
|
+
class="memori-tooltip--content"
|
|
488
|
+
>
|
|
489
|
+
<div
|
|
490
|
+
class="memori--privacy-tooltip-content"
|
|
491
|
+
>
|
|
492
|
+
<p>
|
|
493
|
+
|
|
494
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
495
|
+
</p>
|
|
496
|
+
<ul
|
|
497
|
+
class="memori--privacy-tooltip-content-list"
|
|
498
|
+
>
|
|
499
|
+
<li>
|
|
500
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
501
|
+
</li>
|
|
502
|
+
<li>
|
|
503
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
504
|
+
</li>
|
|
505
|
+
</ul>
|
|
506
|
+
<p>
|
|
507
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
508
|
+
</p>
|
|
509
|
+
<a
|
|
510
|
+
href="https://memori.ai/en/privacy-policy"
|
|
511
|
+
rel="noopener noreferrer"
|
|
512
|
+
target="_blank"
|
|
513
|
+
>
|
|
514
|
+
privacyPolicy
|
|
515
|
+
</a>
|
|
516
|
+
</div>
|
|
517
|
+
</div>
|
|
518
|
+
<div
|
|
519
|
+
class="memori-tooltip--trigger"
|
|
520
|
+
>
|
|
521
|
+
<svg
|
|
522
|
+
aria-hidden="true"
|
|
523
|
+
class="memori--start-privacy-explanation-icon"
|
|
524
|
+
fill="none"
|
|
525
|
+
focusable="false"
|
|
526
|
+
role="img"
|
|
527
|
+
stroke="currentColor"
|
|
528
|
+
stroke-linecap="round"
|
|
529
|
+
stroke-linejoin="round"
|
|
530
|
+
stroke-width="1.5"
|
|
531
|
+
viewBox="0 0 24 24"
|
|
532
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
533
|
+
>
|
|
534
|
+
<circle
|
|
535
|
+
cx="12"
|
|
536
|
+
cy="12"
|
|
537
|
+
r="10"
|
|
538
|
+
/>
|
|
539
|
+
<path
|
|
540
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
541
|
+
/>
|
|
542
|
+
<path
|
|
543
|
+
d="M12 17L12.01 17"
|
|
544
|
+
/>
|
|
545
|
+
</svg>
|
|
546
|
+
</div>
|
|
547
|
+
</div>
|
|
548
|
+
</div>
|
|
327
549
|
<button
|
|
328
550
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
329
551
|
>
|
|
@@ -449,20 +671,94 @@ exports[`renders StartPanel with completion provider down unchanged 1`] = `
|
|
|
449
671
|
Lorem ipsum.
|
|
450
672
|
</span>
|
|
451
673
|
</p>
|
|
674
|
+
<div
|
|
675
|
+
class="memori--start-privacy-explanation-container"
|
|
676
|
+
>
|
|
677
|
+
<p
|
|
678
|
+
class="memori--start-privacy-explanation"
|
|
679
|
+
>
|
|
680
|
+
write_and_speak.pagePrivacyExplanation
|
|
681
|
+
</p>
|
|
682
|
+
<div
|
|
683
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
684
|
+
>
|
|
685
|
+
<div
|
|
686
|
+
class="memori-tooltip--content"
|
|
687
|
+
>
|
|
688
|
+
<div
|
|
689
|
+
class="memori--privacy-tooltip-content"
|
|
690
|
+
>
|
|
691
|
+
<p>
|
|
692
|
+
|
|
693
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
694
|
+
</p>
|
|
695
|
+
<ul
|
|
696
|
+
class="memori--privacy-tooltip-content-list"
|
|
697
|
+
>
|
|
698
|
+
<li>
|
|
699
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
700
|
+
</li>
|
|
701
|
+
<li>
|
|
702
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
703
|
+
</li>
|
|
704
|
+
</ul>
|
|
705
|
+
<p>
|
|
706
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
707
|
+
</p>
|
|
708
|
+
<a
|
|
709
|
+
href="https://memori.ai/en/privacy-policy"
|
|
710
|
+
rel="noopener noreferrer"
|
|
711
|
+
target="_blank"
|
|
712
|
+
>
|
|
713
|
+
privacyPolicy
|
|
714
|
+
</a>
|
|
715
|
+
</div>
|
|
716
|
+
</div>
|
|
717
|
+
<div
|
|
718
|
+
class="memori-tooltip--trigger"
|
|
719
|
+
>
|
|
720
|
+
<svg
|
|
721
|
+
aria-hidden="true"
|
|
722
|
+
class="memori--start-privacy-explanation-icon"
|
|
723
|
+
fill="none"
|
|
724
|
+
focusable="false"
|
|
725
|
+
role="img"
|
|
726
|
+
stroke="currentColor"
|
|
727
|
+
stroke-linecap="round"
|
|
728
|
+
stroke-linejoin="round"
|
|
729
|
+
stroke-width="1.5"
|
|
730
|
+
viewBox="0 0 24 24"
|
|
731
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
732
|
+
>
|
|
733
|
+
<circle
|
|
734
|
+
cx="12"
|
|
735
|
+
cy="12"
|
|
736
|
+
r="10"
|
|
737
|
+
/>
|
|
738
|
+
<path
|
|
739
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
740
|
+
/>
|
|
741
|
+
<path
|
|
742
|
+
d="M12 17L12.01 17"
|
|
743
|
+
/>
|
|
744
|
+
</svg>
|
|
745
|
+
</div>
|
|
746
|
+
</div>
|
|
747
|
+
</div>
|
|
452
748
|
<button
|
|
453
749
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
454
750
|
>
|
|
455
751
|
write_and_speak.tryMeButton
|
|
456
752
|
</button>
|
|
457
753
|
<div
|
|
458
|
-
class="memori-tooltip memori-tooltip--align-
|
|
754
|
+
class="memori-tooltip memori-tooltip--align-right memori--completion-provider-status--tooltip"
|
|
459
755
|
>
|
|
460
756
|
<div
|
|
461
757
|
class="memori-tooltip--content"
|
|
462
758
|
>
|
|
463
759
|
<div>
|
|
464
760
|
<p>
|
|
465
|
-
|
|
761
|
+
completionProviderMajorOutage
|
|
466
762
|
</p>
|
|
467
763
|
<p>
|
|
468
764
|
<a
|
|
@@ -480,14 +776,20 @@ exports[`renders StartPanel with completion provider down unchanged 1`] = `
|
|
|
480
776
|
>
|
|
481
777
|
<svg
|
|
482
778
|
aria-hidden="true"
|
|
483
|
-
class="memori--completion-provider-status--icon"
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
779
|
+
class="memori--completion-provider-status--icon memori--completion-provider-status--icon-error"
|
|
780
|
+
color="currentColor"
|
|
781
|
+
fill="none"
|
|
782
|
+
height="800px"
|
|
783
|
+
viewBox="0 0 24 24"
|
|
784
|
+
width="800px"
|
|
487
785
|
xmlns="http://www.w3.org/2000/svg"
|
|
488
786
|
>
|
|
489
787
|
<path
|
|
490
|
-
d="
|
|
788
|
+
d="M12 16H12.01M12 8V12M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z"
|
|
789
|
+
stroke="currentColor"
|
|
790
|
+
stroke-linecap="round"
|
|
791
|
+
stroke-linejoin="round"
|
|
792
|
+
stroke-width="2"
|
|
491
793
|
/>
|
|
492
794
|
</svg>
|
|
493
795
|
</div>
|
|
@@ -588,6 +890,80 @@ exports[`renders StartPanel with completions enabled unchanged 1`] = `
|
|
|
588
890
|
Lorem ipsum.
|
|
589
891
|
</span>
|
|
590
892
|
</p>
|
|
893
|
+
<div
|
|
894
|
+
class="memori--start-privacy-explanation-container"
|
|
895
|
+
>
|
|
896
|
+
<p
|
|
897
|
+
class="memori--start-privacy-explanation"
|
|
898
|
+
>
|
|
899
|
+
write_and_speak.pagePrivacyExplanation
|
|
900
|
+
</p>
|
|
901
|
+
<div
|
|
902
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
903
|
+
>
|
|
904
|
+
<div
|
|
905
|
+
class="memori-tooltip--content"
|
|
906
|
+
>
|
|
907
|
+
<div
|
|
908
|
+
class="memori--privacy-tooltip-content"
|
|
909
|
+
>
|
|
910
|
+
<p>
|
|
911
|
+
|
|
912
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
913
|
+
</p>
|
|
914
|
+
<ul
|
|
915
|
+
class="memori--privacy-tooltip-content-list"
|
|
916
|
+
>
|
|
917
|
+
<li>
|
|
918
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
919
|
+
</li>
|
|
920
|
+
<li>
|
|
921
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
922
|
+
</li>
|
|
923
|
+
</ul>
|
|
924
|
+
<p>
|
|
925
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
926
|
+
</p>
|
|
927
|
+
<a
|
|
928
|
+
href="https://memori.ai/en/privacy-policy"
|
|
929
|
+
rel="noopener noreferrer"
|
|
930
|
+
target="_blank"
|
|
931
|
+
>
|
|
932
|
+
privacyPolicy
|
|
933
|
+
</a>
|
|
934
|
+
</div>
|
|
935
|
+
</div>
|
|
936
|
+
<div
|
|
937
|
+
class="memori-tooltip--trigger"
|
|
938
|
+
>
|
|
939
|
+
<svg
|
|
940
|
+
aria-hidden="true"
|
|
941
|
+
class="memori--start-privacy-explanation-icon"
|
|
942
|
+
fill="none"
|
|
943
|
+
focusable="false"
|
|
944
|
+
role="img"
|
|
945
|
+
stroke="currentColor"
|
|
946
|
+
stroke-linecap="round"
|
|
947
|
+
stroke-linejoin="round"
|
|
948
|
+
stroke-width="1.5"
|
|
949
|
+
viewBox="0 0 24 24"
|
|
950
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
951
|
+
>
|
|
952
|
+
<circle
|
|
953
|
+
cx="12"
|
|
954
|
+
cy="12"
|
|
955
|
+
r="10"
|
|
956
|
+
/>
|
|
957
|
+
<path
|
|
958
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
959
|
+
/>
|
|
960
|
+
<path
|
|
961
|
+
d="M12 17L12.01 17"
|
|
962
|
+
/>
|
|
963
|
+
</svg>
|
|
964
|
+
</div>
|
|
965
|
+
</div>
|
|
966
|
+
</div>
|
|
591
967
|
<button
|
|
592
968
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
593
969
|
>
|
|
@@ -713,6 +1089,80 @@ exports[`renders StartPanel with deep thought but unlogged unchanged 1`] = `
|
|
|
713
1089
|
Lorem ipsum.
|
|
714
1090
|
</span>
|
|
715
1091
|
</p>
|
|
1092
|
+
<div
|
|
1093
|
+
class="memori--start-privacy-explanation-container"
|
|
1094
|
+
>
|
|
1095
|
+
<p
|
|
1096
|
+
class="memori--start-privacy-explanation"
|
|
1097
|
+
>
|
|
1098
|
+
write_and_speak.pagePrivacyExplanation
|
|
1099
|
+
</p>
|
|
1100
|
+
<div
|
|
1101
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
1102
|
+
>
|
|
1103
|
+
<div
|
|
1104
|
+
class="memori-tooltip--content"
|
|
1105
|
+
>
|
|
1106
|
+
<div
|
|
1107
|
+
class="memori--privacy-tooltip-content"
|
|
1108
|
+
>
|
|
1109
|
+
<p>
|
|
1110
|
+
|
|
1111
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
1112
|
+
</p>
|
|
1113
|
+
<ul
|
|
1114
|
+
class="memori--privacy-tooltip-content-list"
|
|
1115
|
+
>
|
|
1116
|
+
<li>
|
|
1117
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
1118
|
+
</li>
|
|
1119
|
+
<li>
|
|
1120
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
1121
|
+
</li>
|
|
1122
|
+
</ul>
|
|
1123
|
+
<p>
|
|
1124
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
1125
|
+
</p>
|
|
1126
|
+
<a
|
|
1127
|
+
href="https://memori.ai/en/privacy-policy"
|
|
1128
|
+
rel="noopener noreferrer"
|
|
1129
|
+
target="_blank"
|
|
1130
|
+
>
|
|
1131
|
+
privacyPolicy
|
|
1132
|
+
</a>
|
|
1133
|
+
</div>
|
|
1134
|
+
</div>
|
|
1135
|
+
<div
|
|
1136
|
+
class="memori-tooltip--trigger"
|
|
1137
|
+
>
|
|
1138
|
+
<svg
|
|
1139
|
+
aria-hidden="true"
|
|
1140
|
+
class="memori--start-privacy-explanation-icon"
|
|
1141
|
+
fill="none"
|
|
1142
|
+
focusable="false"
|
|
1143
|
+
role="img"
|
|
1144
|
+
stroke="currentColor"
|
|
1145
|
+
stroke-linecap="round"
|
|
1146
|
+
stroke-linejoin="round"
|
|
1147
|
+
stroke-width="1.5"
|
|
1148
|
+
viewBox="0 0 24 24"
|
|
1149
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1150
|
+
>
|
|
1151
|
+
<circle
|
|
1152
|
+
cx="12"
|
|
1153
|
+
cy="12"
|
|
1154
|
+
r="10"
|
|
1155
|
+
/>
|
|
1156
|
+
<path
|
|
1157
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
1158
|
+
/>
|
|
1159
|
+
<path
|
|
1160
|
+
d="M12 17L12.01 17"
|
|
1161
|
+
/>
|
|
1162
|
+
</svg>
|
|
1163
|
+
</div>
|
|
1164
|
+
</div>
|
|
1165
|
+
</div>
|
|
716
1166
|
<button
|
|
717
1167
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
718
1168
|
>
|
|
@@ -907,6 +1357,80 @@ exports[`renders StartPanel with deep thought enabled but without permission fla
|
|
|
907
1357
|
Lorem ipsum.
|
|
908
1358
|
</span>
|
|
909
1359
|
</p>
|
|
1360
|
+
<div
|
|
1361
|
+
class="memori--start-privacy-explanation-container"
|
|
1362
|
+
>
|
|
1363
|
+
<p
|
|
1364
|
+
class="memori--start-privacy-explanation"
|
|
1365
|
+
>
|
|
1366
|
+
write_and_speak.pagePrivacyExplanation
|
|
1367
|
+
</p>
|
|
1368
|
+
<div
|
|
1369
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
1370
|
+
>
|
|
1371
|
+
<div
|
|
1372
|
+
class="memori-tooltip--content"
|
|
1373
|
+
>
|
|
1374
|
+
<div
|
|
1375
|
+
class="memori--privacy-tooltip-content"
|
|
1376
|
+
>
|
|
1377
|
+
<p>
|
|
1378
|
+
|
|
1379
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
1380
|
+
</p>
|
|
1381
|
+
<ul
|
|
1382
|
+
class="memori--privacy-tooltip-content-list"
|
|
1383
|
+
>
|
|
1384
|
+
<li>
|
|
1385
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
1386
|
+
</li>
|
|
1387
|
+
<li>
|
|
1388
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
1389
|
+
</li>
|
|
1390
|
+
</ul>
|
|
1391
|
+
<p>
|
|
1392
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
1393
|
+
</p>
|
|
1394
|
+
<a
|
|
1395
|
+
href="https://memori.ai/en/privacy-policy"
|
|
1396
|
+
rel="noopener noreferrer"
|
|
1397
|
+
target="_blank"
|
|
1398
|
+
>
|
|
1399
|
+
privacyPolicy
|
|
1400
|
+
</a>
|
|
1401
|
+
</div>
|
|
1402
|
+
</div>
|
|
1403
|
+
<div
|
|
1404
|
+
class="memori-tooltip--trigger"
|
|
1405
|
+
>
|
|
1406
|
+
<svg
|
|
1407
|
+
aria-hidden="true"
|
|
1408
|
+
class="memori--start-privacy-explanation-icon"
|
|
1409
|
+
fill="none"
|
|
1410
|
+
focusable="false"
|
|
1411
|
+
role="img"
|
|
1412
|
+
stroke="currentColor"
|
|
1413
|
+
stroke-linecap="round"
|
|
1414
|
+
stroke-linejoin="round"
|
|
1415
|
+
stroke-width="1.5"
|
|
1416
|
+
viewBox="0 0 24 24"
|
|
1417
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1418
|
+
>
|
|
1419
|
+
<circle
|
|
1420
|
+
cx="12"
|
|
1421
|
+
cy="12"
|
|
1422
|
+
r="10"
|
|
1423
|
+
/>
|
|
1424
|
+
<path
|
|
1425
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
1426
|
+
/>
|
|
1427
|
+
<path
|
|
1428
|
+
d="M12 17L12.01 17"
|
|
1429
|
+
/>
|
|
1430
|
+
</svg>
|
|
1431
|
+
</div>
|
|
1432
|
+
</div>
|
|
1433
|
+
</div>
|
|
910
1434
|
<button
|
|
911
1435
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
912
1436
|
>
|
|
@@ -1094,6 +1618,80 @@ exports[`renders StartPanel with deep thought enabled unchanged 1`] = `
|
|
|
1094
1618
|
Lorem ipsum.
|
|
1095
1619
|
</span>
|
|
1096
1620
|
</p>
|
|
1621
|
+
<div
|
|
1622
|
+
class="memori--start-privacy-explanation-container"
|
|
1623
|
+
>
|
|
1624
|
+
<p
|
|
1625
|
+
class="memori--start-privacy-explanation"
|
|
1626
|
+
>
|
|
1627
|
+
write_and_speak.pagePrivacyExplanation
|
|
1628
|
+
</p>
|
|
1629
|
+
<div
|
|
1630
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
1631
|
+
>
|
|
1632
|
+
<div
|
|
1633
|
+
class="memori-tooltip--content"
|
|
1634
|
+
>
|
|
1635
|
+
<div
|
|
1636
|
+
class="memori--privacy-tooltip-content"
|
|
1637
|
+
>
|
|
1638
|
+
<p>
|
|
1639
|
+
|
|
1640
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
1641
|
+
</p>
|
|
1642
|
+
<ul
|
|
1643
|
+
class="memori--privacy-tooltip-content-list"
|
|
1644
|
+
>
|
|
1645
|
+
<li>
|
|
1646
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
1647
|
+
</li>
|
|
1648
|
+
<li>
|
|
1649
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
1650
|
+
</li>
|
|
1651
|
+
</ul>
|
|
1652
|
+
<p>
|
|
1653
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
1654
|
+
</p>
|
|
1655
|
+
<a
|
|
1656
|
+
href="https://memori.ai/en/privacy-policy"
|
|
1657
|
+
rel="noopener noreferrer"
|
|
1658
|
+
target="_blank"
|
|
1659
|
+
>
|
|
1660
|
+
privacyPolicy
|
|
1661
|
+
</a>
|
|
1662
|
+
</div>
|
|
1663
|
+
</div>
|
|
1664
|
+
<div
|
|
1665
|
+
class="memori-tooltip--trigger"
|
|
1666
|
+
>
|
|
1667
|
+
<svg
|
|
1668
|
+
aria-hidden="true"
|
|
1669
|
+
class="memori--start-privacy-explanation-icon"
|
|
1670
|
+
fill="none"
|
|
1671
|
+
focusable="false"
|
|
1672
|
+
role="img"
|
|
1673
|
+
stroke="currentColor"
|
|
1674
|
+
stroke-linecap="round"
|
|
1675
|
+
stroke-linejoin="round"
|
|
1676
|
+
stroke-width="1.5"
|
|
1677
|
+
viewBox="0 0 24 24"
|
|
1678
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1679
|
+
>
|
|
1680
|
+
<circle
|
|
1681
|
+
cx="12"
|
|
1682
|
+
cy="12"
|
|
1683
|
+
r="10"
|
|
1684
|
+
/>
|
|
1685
|
+
<path
|
|
1686
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
1687
|
+
/>
|
|
1688
|
+
<path
|
|
1689
|
+
d="M12 17L12.01 17"
|
|
1690
|
+
/>
|
|
1691
|
+
</svg>
|
|
1692
|
+
</div>
|
|
1693
|
+
</div>
|
|
1694
|
+
</div>
|
|
1097
1695
|
<button
|
|
1098
1696
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
1099
1697
|
>
|
|
@@ -1278,6 +1876,80 @@ exports[`renders StartPanel with existing sessionunchanged 1`] = `
|
|
|
1278
1876
|
Lorem ipsum.
|
|
1279
1877
|
</span>
|
|
1280
1878
|
</p>
|
|
1879
|
+
<div
|
|
1880
|
+
class="memori--start-privacy-explanation-container"
|
|
1881
|
+
>
|
|
1882
|
+
<p
|
|
1883
|
+
class="memori--start-privacy-explanation"
|
|
1884
|
+
>
|
|
1885
|
+
write_and_speak.pagePrivacyExplanation
|
|
1886
|
+
</p>
|
|
1887
|
+
<div
|
|
1888
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
1889
|
+
>
|
|
1890
|
+
<div
|
|
1891
|
+
class="memori-tooltip--content"
|
|
1892
|
+
>
|
|
1893
|
+
<div
|
|
1894
|
+
class="memori--privacy-tooltip-content"
|
|
1895
|
+
>
|
|
1896
|
+
<p>
|
|
1897
|
+
|
|
1898
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
1899
|
+
</p>
|
|
1900
|
+
<ul
|
|
1901
|
+
class="memori--privacy-tooltip-content-list"
|
|
1902
|
+
>
|
|
1903
|
+
<li>
|
|
1904
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
1905
|
+
</li>
|
|
1906
|
+
<li>
|
|
1907
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
1908
|
+
</li>
|
|
1909
|
+
</ul>
|
|
1910
|
+
<p>
|
|
1911
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
1912
|
+
</p>
|
|
1913
|
+
<a
|
|
1914
|
+
href="https://memori.ai/en/privacy-policy"
|
|
1915
|
+
rel="noopener noreferrer"
|
|
1916
|
+
target="_blank"
|
|
1917
|
+
>
|
|
1918
|
+
privacyPolicy
|
|
1919
|
+
</a>
|
|
1920
|
+
</div>
|
|
1921
|
+
</div>
|
|
1922
|
+
<div
|
|
1923
|
+
class="memori-tooltip--trigger"
|
|
1924
|
+
>
|
|
1925
|
+
<svg
|
|
1926
|
+
aria-hidden="true"
|
|
1927
|
+
class="memori--start-privacy-explanation-icon"
|
|
1928
|
+
fill="none"
|
|
1929
|
+
focusable="false"
|
|
1930
|
+
role="img"
|
|
1931
|
+
stroke="currentColor"
|
|
1932
|
+
stroke-linecap="round"
|
|
1933
|
+
stroke-linejoin="round"
|
|
1934
|
+
stroke-width="1.5"
|
|
1935
|
+
viewBox="0 0 24 24"
|
|
1936
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1937
|
+
>
|
|
1938
|
+
<circle
|
|
1939
|
+
cx="12"
|
|
1940
|
+
cy="12"
|
|
1941
|
+
r="10"
|
|
1942
|
+
/>
|
|
1943
|
+
<path
|
|
1944
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
1945
|
+
/>
|
|
1946
|
+
<path
|
|
1947
|
+
d="M12 17L12.01 17"
|
|
1948
|
+
/>
|
|
1949
|
+
</svg>
|
|
1950
|
+
</div>
|
|
1951
|
+
</div>
|
|
1952
|
+
</div>
|
|
1281
1953
|
<button
|
|
1282
1954
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
1283
1955
|
>
|
|
@@ -1403,6 +2075,80 @@ exports[`renders StartPanel with integrationConfig unchanged 1`] = `
|
|
|
1403
2075
|
Lorem ipsum.
|
|
1404
2076
|
</span>
|
|
1405
2077
|
</p>
|
|
2078
|
+
<div
|
|
2079
|
+
class="memori--start-privacy-explanation-container"
|
|
2080
|
+
>
|
|
2081
|
+
<p
|
|
2082
|
+
class="memori--start-privacy-explanation"
|
|
2083
|
+
>
|
|
2084
|
+
write_and_speak.pagePrivacyExplanation
|
|
2085
|
+
</p>
|
|
2086
|
+
<div
|
|
2087
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
2088
|
+
>
|
|
2089
|
+
<div
|
|
2090
|
+
class="memori-tooltip--content"
|
|
2091
|
+
>
|
|
2092
|
+
<div
|
|
2093
|
+
class="memori--privacy-tooltip-content"
|
|
2094
|
+
>
|
|
2095
|
+
<p>
|
|
2096
|
+
|
|
2097
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
2098
|
+
</p>
|
|
2099
|
+
<ul
|
|
2100
|
+
class="memori--privacy-tooltip-content-list"
|
|
2101
|
+
>
|
|
2102
|
+
<li>
|
|
2103
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
2104
|
+
</li>
|
|
2105
|
+
<li>
|
|
2106
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
2107
|
+
</li>
|
|
2108
|
+
</ul>
|
|
2109
|
+
<p>
|
|
2110
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
2111
|
+
</p>
|
|
2112
|
+
<a
|
|
2113
|
+
href="https://memori.ai/en/privacy-policy"
|
|
2114
|
+
rel="noopener noreferrer"
|
|
2115
|
+
target="_blank"
|
|
2116
|
+
>
|
|
2117
|
+
privacyPolicy
|
|
2118
|
+
</a>
|
|
2119
|
+
</div>
|
|
2120
|
+
</div>
|
|
2121
|
+
<div
|
|
2122
|
+
class="memori-tooltip--trigger"
|
|
2123
|
+
>
|
|
2124
|
+
<svg
|
|
2125
|
+
aria-hidden="true"
|
|
2126
|
+
class="memori--start-privacy-explanation-icon"
|
|
2127
|
+
fill="none"
|
|
2128
|
+
focusable="false"
|
|
2129
|
+
role="img"
|
|
2130
|
+
stroke="currentColor"
|
|
2131
|
+
stroke-linecap="round"
|
|
2132
|
+
stroke-linejoin="round"
|
|
2133
|
+
stroke-width="1.5"
|
|
2134
|
+
viewBox="0 0 24 24"
|
|
2135
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2136
|
+
>
|
|
2137
|
+
<circle
|
|
2138
|
+
cx="12"
|
|
2139
|
+
cy="12"
|
|
2140
|
+
r="10"
|
|
2141
|
+
/>
|
|
2142
|
+
<path
|
|
2143
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
2144
|
+
/>
|
|
2145
|
+
<path
|
|
2146
|
+
d="M12 17L12.01 17"
|
|
2147
|
+
/>
|
|
2148
|
+
</svg>
|
|
2149
|
+
</div>
|
|
2150
|
+
</div>
|
|
2151
|
+
</div>
|
|
1406
2152
|
<button
|
|
1407
2153
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
1408
2154
|
>
|
|
@@ -1628,6 +2374,80 @@ exports[`renders StartPanel with multilangual unchanged 1`] = `
|
|
|
1628
2374
|
</option>
|
|
1629
2375
|
</select>
|
|
1630
2376
|
</div>
|
|
2377
|
+
<div
|
|
2378
|
+
class="memori--start-privacy-explanation-container"
|
|
2379
|
+
>
|
|
2380
|
+
<p
|
|
2381
|
+
class="memori--start-privacy-explanation"
|
|
2382
|
+
>
|
|
2383
|
+
write_and_speak.pagePrivacyExplanation
|
|
2384
|
+
</p>
|
|
2385
|
+
<div
|
|
2386
|
+
class="memori-tooltip memori-tooltip--align-right"
|
|
2387
|
+
>
|
|
2388
|
+
<div
|
|
2389
|
+
class="memori-tooltip--content"
|
|
2390
|
+
>
|
|
2391
|
+
<div
|
|
2392
|
+
class="memori--privacy-tooltip-content"
|
|
2393
|
+
>
|
|
2394
|
+
<p>
|
|
2395
|
+
|
|
2396
|
+
write_and_speak.pagePrivacyExplanationList.allConversations
|
|
2397
|
+
</p>
|
|
2398
|
+
<ul
|
|
2399
|
+
class="memori--privacy-tooltip-content-list"
|
|
2400
|
+
>
|
|
2401
|
+
<li>
|
|
2402
|
+
write_and_speak.pagePrivacyExplanationList.anonymousUser
|
|
2403
|
+
</li>
|
|
2404
|
+
<li>
|
|
2405
|
+
write_and_speak.pagePrivacyExplanationList.registeredUser
|
|
2406
|
+
</li>
|
|
2407
|
+
</ul>
|
|
2408
|
+
<p>
|
|
2409
|
+
write_and_speak.pagePrivacyExplanationList.authorUsesInfo
|
|
2410
|
+
</p>
|
|
2411
|
+
<a
|
|
2412
|
+
href="https://memori.ai/en/privacy-policy"
|
|
2413
|
+
rel="noopener noreferrer"
|
|
2414
|
+
target="_blank"
|
|
2415
|
+
>
|
|
2416
|
+
privacyPolicy
|
|
2417
|
+
</a>
|
|
2418
|
+
</div>
|
|
2419
|
+
</div>
|
|
2420
|
+
<div
|
|
2421
|
+
class="memori-tooltip--trigger"
|
|
2422
|
+
>
|
|
2423
|
+
<svg
|
|
2424
|
+
aria-hidden="true"
|
|
2425
|
+
class="memori--start-privacy-explanation-icon"
|
|
2426
|
+
fill="none"
|
|
2427
|
+
focusable="false"
|
|
2428
|
+
role="img"
|
|
2429
|
+
stroke="currentColor"
|
|
2430
|
+
stroke-linecap="round"
|
|
2431
|
+
stroke-linejoin="round"
|
|
2432
|
+
stroke-width="1.5"
|
|
2433
|
+
viewBox="0 0 24 24"
|
|
2434
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2435
|
+
>
|
|
2436
|
+
<circle
|
|
2437
|
+
cx="12"
|
|
2438
|
+
cy="12"
|
|
2439
|
+
r="10"
|
|
2440
|
+
/>
|
|
2441
|
+
<path
|
|
2442
|
+
d="M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3"
|
|
2443
|
+
/>
|
|
2444
|
+
<path
|
|
2445
|
+
d="M12 17L12.01 17"
|
|
2446
|
+
/>
|
|
2447
|
+
</svg>
|
|
2448
|
+
</div>
|
|
2449
|
+
</div>
|
|
2450
|
+
</div>
|
|
1631
2451
|
<button
|
|
1632
2452
|
class="memori-button memori-button--primary memori-button--rounded memori-button--padded memori--start-button"
|
|
1633
2453
|
>
|