| 
														
															@@ -25,8 +25,11 @@ import { RoomDialog } from "./RoomDialog"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import { ErrorDialog } from "./ErrorDialog"; 
														 | 
														
														 | 
														
															 import { ErrorDialog } from "./ErrorDialog"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import { ShortcutsDialog } from "./ShortcutsDialog"; 
														 | 
														
														 | 
														
															 import { ShortcutsDialog } from "./ShortcutsDialog"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import { LoadingMessage } from "./LoadingMessage"; 
														 | 
														
														 | 
														
															 import { LoadingMessage } from "./LoadingMessage"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-import { GitHubCorner } from "./GitHubCorner"; 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import { CLASSES } from "../constants"; 
														 | 
														
														 | 
														
															 import { CLASSES } from "../constants"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+import { shield } from "./icons"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+import { GitHubCorner } from "./GitHubCorner"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+import "./LayerUI.scss"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															 interface LayerUIProps { 
														 | 
														
														 | 
														
															 interface LayerUIProps { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   actionManager: ActionManager; 
														 | 
														
														 | 
														
															   actionManager: ActionManager; 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -53,6 +56,18 @@ const LayerUI = ({ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 }: LayerUIProps) => { 
														 | 
														
														 | 
														
															 }: LayerUIProps) => { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   const isMobile = useIsMobile(); 
														 | 
														
														 | 
														
															   const isMobile = useIsMobile(); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+  const renderEncryptedIcon = () => ( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    <a 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      className="encrypted-icon tooltip" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      href="https://blog.excalidraw.com/end-to-end-encryption/" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      target="_blank" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      rel="noopener noreferrer" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    > 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      <span className="tooltip-text">{t("encrypted.tooltip")}</span> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      {shield} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    </a> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+  ); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   const renderExportDialog = () => { 
														 | 
														
														 | 
														
															   const renderExportDialog = () => { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     const createExporter = (type: ExportType): ExportCB => ( 
														 | 
														
														 | 
														
															     const createExporter = (type: ExportType): ExportCB => ( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       exportedElements, 
														 | 
														
														 | 
														
															       exportedElements, 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -178,6 +193,7 @@ const LayerUI = ({ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                   zoom={appState.zoom} 
														 | 
														
														 | 
														
															                   zoom={appState.zoom} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 /> 
														 | 
														
														 | 
														
															                 /> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															               </Island> 
														 | 
														
														 | 
														
															               </Island> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              {renderEncryptedIcon()} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             </Section> 
														 | 
														
														 | 
														
															             </Section> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           </Stack.Col> 
														 | 
														
														 | 
														
															           </Stack.Col> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         </div> 
														 | 
														
														 | 
														
															         </div> 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -222,7 +238,7 @@ const LayerUI = ({ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       onLockToggle={onLockToggle} 
														 | 
														
														 | 
														
															       onLockToggle={onLockToggle} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     /> 
														 | 
														
														 | 
														
															     /> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   ) : ( 
														 | 
														
														 | 
														
															   ) : ( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-    <> 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    <div className="layer-ui__wrapper"> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       {appState.isLoading && <LoadingMessage />} 
														 | 
														
														 | 
														
															       {appState.isLoading && <LoadingMessage />} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       {appState.errorMessage && ( 
														 | 
														
														 | 
														
															       {appState.errorMessage && ( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         <ErrorDialog 
														 | 
														
														 | 
														
															         <ErrorDialog 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -240,7 +256,7 @@ const LayerUI = ({ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         <GitHubCorner /> 
														 | 
														
														 | 
														
															         <GitHubCorner /> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       </aside> 
														 | 
														
														 | 
														
															       </aside> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       {renderFooter()} 
														 | 
														
														 | 
														
															       {renderFooter()} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-    </> 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    </div> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   ); 
														 | 
														
														 | 
														
															   ); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 }; 
														 | 
														
														 | 
														
															 }; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 |