`;
@@ -38,34 +74,70 @@ exports[`WindowControl should render correctly 1`] = `
exports[`WindowControl should trigger mouse enter and leave event 1`] = `
-
- x
-
-
-
-
+
+
+
+
- -
-
-
-
-
+
+
+
+
- o
-
+
+
+
+
`;
@@ -73,34 +145,70 @@ exports[`WindowControl should trigger mouse enter and leave event 1`] = `
exports[`WindowControl should trigger mouse enter and leave event 2`] = `
-
- x
-
-
-
-
+
+
+
+
- -
-
-
-
-
+
+
+
+
- o
-
+
+
+
+
`;
diff --git a/src/components/Window/__tests__/__snapshots__/Windows.test.tsx.snap b/src/components/Window/__tests__/__snapshots__/Windows.test.tsx.snap
index 3adcfde..c243b26 100644
--- a/src/components/Window/__tests__/__snapshots__/Windows.test.tsx.snap
+++ b/src/components/Window/__tests__/__snapshots__/Windows.test.tsx.snap
@@ -3,62 +3,102 @@
exports[`Windows should render for default values 1`] = `
-
- x
-
-
-
-
- -
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- o
-
+
+ Top bar
+
+
- Top bar
+ Test
-
-
- Test
-
-
@@ -68,56 +108,96 @@ exports[`Windows should render for default values 1`] = `
exports[`Windows should render maximized window 1`] = `
-
- x
-
-
-
-
- -
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- o
-
-
-
-
-
-
- Test
+
+ Test
+
@@ -129,56 +209,96 @@ exports[`Windows should render maximized window 1`] = `
exports[`Windows should toggle maximize on double click on title bar 1`] = `
-
- x
-
-
-
-
- -
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- o
-
-
-
-
-
-
- Test
+
+ Test
+
@@ -190,56 +310,96 @@ exports[`Windows should toggle maximize on double click on title bar 1`] = `
exports[`Windows should trigger close on close button press 1`] = `
-
- x
-
-
-
-
- -
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- o
-
-
-
-
-
-
- Test
+
+ Test
+
@@ -251,56 +411,96 @@ exports[`Windows should trigger close on close button press 1`] = `
exports[`Windows should trigger maximize on maximize button press 1`] = `
-
- x
-
-
-
-
- -
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- o
-
-
-
-
-
-
- Test
+
+ Test
+
@@ -312,56 +512,96 @@ exports[`Windows should trigger maximize on maximize button press 1`] = `
exports[`Windows should trigger minimize on minimize button press 1`] = `
-
- x
-
-
-
-
- -
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- o
-
-
-
-
-
-
- Test
+
+ Test
+
diff --git a/src/localization/locales/en/main.json b/src/localization/locales/en/main.json
index c93ff81..e42955e 100644
--- a/src/localization/locales/en/main.json
+++ b/src/localization/locales/en/main.json
@@ -21,7 +21,7 @@
"loginPasswordText2": "Your password is required to enable Touch ID",
"inputPlaceholder": "Enter Password",
"passwordHintLabel": "Password Hint",
- "passwordHint": "Your password is the same as your macOS user account password. If you've forgotten it, try entering your Apple ID password or use the Reset Password assistant. Please use - 'Amit'",
+ "passwordHint": "Your password is the same as your macOS user account password. If you've forgotten it, try entering your Apple ID password or use the Reset Password assistant. Please use - '1234'",
"keyboard": {
"type": "ABC - India",
"option": {
diff --git a/src/providers/draggable/DraggableProvider.tsx b/src/providers/draggable/DraggableProvider.tsx
index 239d742..56b6af3 100644
--- a/src/providers/draggable/DraggableProvider.tsx
+++ b/src/providers/draggable/DraggableProvider.tsx
@@ -7,32 +7,30 @@ const DraggableProvider = ({
position,
maximized,
onPositionChange,
+ onStart,
}: DraggableProps) => {
const { width, height } = useWindowDimensions();
- const positionHandler = maximized
- ? {}
- : {
- onStop: (e: any, data: any) => {
- const { x, y } = data;
- onPositionChange({ x, y });
- },
- };
+ const draggableProps = {
+ handle: '.handle',
+ bounds: { left: 0, top: 0, right: width, bottom: height },
+ positionOffset: { x: 0, y: 28 },
+ defaultPosition: maximized ? position : { x: 0, y: 0 },
+ position: !maximized ? position : { x: 0, y: 0 },
+ grid: [3, 3] as [number, number],
+ scale: 1,
+ ...(maximized
+ ? {}
+ : {
+ onStart: onStart ? () => onStart() : undefined,
+ onStop: (_e: any, data: any) => {
+ const { x, y } = data;
+ onPositionChange({ x, y });
+ },
+ }),
+ } as React.ComponentProps;
- return (
-
- {children}
-
- );
+ return {children};
};
export default DraggableProvider;
diff --git a/src/providers/draggable/types.ts b/src/providers/draggable/types.ts
index 370328c..05510d0 100644
--- a/src/providers/draggable/types.ts
+++ b/src/providers/draggable/types.ts
@@ -8,4 +8,6 @@ export type DraggableProps = {
position: Position;
maximized: boolean;
onPositionChange: (position: Position) => void;
+ /** Called when a drag starts — use to bring window to front */
+ onStart?: () => void;
};
diff --git a/src/providers/routerProvider/__tests__/__snapshots__/RouterProvider.test.tsx.snap b/src/providers/routerProvider/__tests__/__snapshots__/RouterProvider.test.tsx.snap
index e12659a..da96577 100644
--- a/src/providers/routerProvider/__tests__/__snapshots__/RouterProvider.test.tsx.snap
+++ b/src/providers/routerProvider/__tests__/__snapshots__/RouterProvider.test.tsx.snap
@@ -24,12 +24,12 @@ exports[`RouterProvider should render for lock when power is on but user logged
class="css-sikaw0"
>
+
-
-
-
-
+
+
+
- Hide Visual Studio Code
+
+ Hide Finder
+
+
+ ⌘H
+
- Hide Others
+
+ Hide Others
+
+
+ ⌥⌘H
+
- Quit Visual Studio Code
+
+ Quit Finder
+
+
+ ⌘Q
+
- New File
+ New Finder Window
- New Window
+ New Folder
-
- Open File...
+ New Folder with Selection
- ⌘O
+ ⌃⌘N
- Open Folder...
+ New Smart Folder
- Open Workspace from file...
+
+ New Tab
+
+
+ ⌘T
+
+
- Open Recent
+
+ Open
+
+
+ ⌘O
+
-
+
+
+
+ Open With
+
+
+ >
+
+
+
+
+
+
+
+ Other...
+
+
+
+
- Save
+ Close Window
- ⌘S
+ ⌘W
+
- Save As...
+
+ Get Info
+
+
+ ⌘I
+
- Save All
+ Rename
- Auto Save
+ Compress
-
- Close Window
+
+ Duplicate
+
+
+ ⌘D
+
- Close Folder
+
+ Make Alias
+
+
+ ⌃⌘A
+
- Close Workspace
+
+ Quick Look
+
+
+ ⌘Y
+
+
+ Show Original
+
+
+ ⌘R
+
+
+
- Close Editor
+
+ Add to Sidebar
+
+
+ ⌃⌘T
+
- Exit
+
+ Move to Trash
+
+
+ ⌘⌫
+
-
-
-
- New Terminal
-
-
- ⌃ \`
-
-
-
-
- Split Terminal
-
-
- ⌘ /
-
-
-
-
-
- Run Task...
-
-
- ⇧ ⌘ B
-
-
-
- Run Build Task...
-
-
- Run Active File
-
-
- Run Selected Text
-
-
-
- Show Running Tasks
-
-
- Restart Running Task
-
-
- Terminate Task
+ Move to iPad
- Configure Tasks...
-
-
- Configure Default Build Task...
-
-
-
-
-
-
- Help
-
-
-
-
-
-
- Welcome
-
-
- Show All Commands
-
-
- Documentation
-
-
- Editor Playground
+ Tile Window to Left of Screen
- Show Release Notes
+ Tile Window to Right of Screen
- Keyboard Shortcuts Reference
+ Show Previous Tab
- ⌘K ⌘S
+ ⇧⌃⇥
- Video and Tutorials
-
-
- Tips and Tricks
-
-
-
- Join us on Youtube
-
-
- Search Feature Requests
+
+ Show Next Tab
+
+
+ ⌃⇥
+
- Report Issue
+ Merge All Windows
- View License
+ Bring All to Front
+
+
+
+
+
+ Help
+
+
+
+
+
- Privacy Statement
+ Search
- Toggle Developer Tools
-
-
- Open Process Explorer
+
+ macOS Help
+
+
+ ⌘?
+
@@ -3852,12 +3271,12 @@ exports[`RouterProvider should render mac for login 1`] = `
role="group"
>
- 67%
+ 98%
@@ -4245,7 +3665,7 @@ exports[`RouterProvider should render mac for login 1`] = `
@@ -4282,7 +3706,7 @@ exports[`RouterProvider should render mac for login 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:r5p:-menuitem-:r5q:"
+ id="menu-list-:r4g:-menuitem-:r4h:"
role="menuitem"
tabindex="-1"
type="button"
@@ -4294,7 +3718,41 @@ exports[`RouterProvider should render mac for login 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -4316,11 +3774,15 @@ exports[`RouterProvider should render mac for login 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wi-Fi
+
+
+ Home-5G
+
+
+
+
+
+
+
+
+
+
+
+ Bluetooth
+
+
+ On
+
+
+
+
+
+
+
+
+
+
+
+ AirDrop
+
+
+ Off
+
+
+
+
+
+
+
+
+
+
+ Not Playing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Focus
+
+
+
+
+
+ Display
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sound
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit Controls
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+ Thu May 14 11:01 AM
+
+
+
+
+ THURSDAY
+
+
+ 14
+
+
+
+ No Events Today
+
+
+
+
+
+ Pune ↗
+
+
+ 23°
+
+
+
+
+
+
+
+
+ Mostly Cloudy
+
+
+
+ H:29° L:22°
+
+
+
+
+
+ class="css-iamqmo"
+ >
+
+
+
+ Cupertino
+
+
+ Yesterday
+
+
+ -12:30
+
+
+
+
+
+
+
+ Tokyo
+
+
+ Today
+
+
+ +3:30
+
+
+
+
+
+
+
+ Sydney
+
+
+ Today
+
+
+ +4:30
+
+
+
+
+
+
+
+ Paris
+
+
+ Yesterday
+
+
+ -3:30
+
+
+
+
+
+
+
+
+
+ ▼ DOW
+
+
+ 52,499
+
+
+
+
+ ▼ S&P 500
+
+
+ 7,515
+
+
+
+
+ ▲ AAPL
+
+
+ 317.31
+
+
+
+
+
+ Economic Times
+
+
+ US stocks today: S&P 500 and Nasdaq open lo...
+
+
+
+
+
+
+ 1h 55m
+
+
+
+
+
+ 60m
+
+
+
+
+ 30m
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+ 12 AM
+
+
+ 6 AM
+
+
+ 12 PM
+
+
+
+
+
+
+
+
+ Xcode
+
+
+
+ 1h 14m
+
+
+
+
+
+
+ Chrome
+
+
+
+ 38m
+
+
+
+
+
+
+ Settings
+
+
+
+ 1m
+
+
+
+
+
+
+ Finder
+
+
+
+ 18s
+
+
+
+
+ Edit Widgets
+
+
+
+ ✕
+
+
+
-
-
-
- Thu May 14 11:01 AM
-
-
-
@@ -4716,9 +5058,6 @@ exports[`RouterProvider should render mac for login 1`] = `
-
diff --git a/src/router/lazyRouting/lazy_screen/private/__tests__/__snapshots__/LazyHomeScreen.test.tsx.snap b/src/router/lazyRouting/lazy_screen/private/__tests__/__snapshots__/LazyHomeScreen.test.tsx.snap
index 5c583fd..d71523a 100644
--- a/src/router/lazyRouting/lazy_screen/private/__tests__/__snapshots__/LazyHomeScreen.test.tsx.snap
+++ b/src/router/lazyRouting/lazy_screen/private/__tests__/__snapshots__/LazyHomeScreen.test.tsx.snap
@@ -238,7 +238,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
aria-controls="menu-list-:rd:"
aria-expanded="false"
aria-haspopup="menu"
- aria-label="code-top-bar-button"
+ aria-label="finder-top-bar-button"
class="chakra-menu__menu-button css-a89oud"
id="menu-button-:rd:"
>
@@ -248,7 +248,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
- Code
+ Finder
@@ -265,7 +265,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
tabindex="-1"
>
- About Visual Studio Code
+ About Finder
+
- Check for Updates...
+
+ Settings...
+
+
+ ⌘,
+
+
+
+
+
+ Empty Trash...
+
+
+ ⇧⌘⌫
+
+
+
+ Secure Empty Trash...
- Settings
+ Services
- settings
-
-
- Profiles
-
-
- extensions
+ No Services Apply
- Hide Visual Studio Code
+
+ Hide Finder
+
+
+ ⌘H
+
- Hide Others
+
+ Hide Others
+
+
+ ⌥⌘H
+
- Quit Visual Studio Code
+
+ Quit Finder
+
+
+ ⌘Q
+
@@ -455,7 +508,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
tabindex="-1"
>
- New File
+ New Finder Window
- New Window
+ New Folder
-
- Open File...
+ New Folder with Selection
- ⌘O
+ ⌃⌘N
- Open Folder...
+ New Smart Folder
- Open Workspace from file...
+
+ New Tab
+
+
+ ⌘T
+
+
- Open Recent
+
+ Open
+
+
+ ⌘O
+
-
+
+
+
+ Open With
+
+
+ >
+
+
+
+
+
+
+
+ Other...
+
+
+
+
- Save
+ Close Window
- ⌘S
+ ⌘W
+
- Save As...
+
+ Get Info
+
+
+ ⌘I
+
- Save All
+ Rename
- Auto Save
+ Compress
-
- Close Window
+
+ Duplicate
+
+
+ ⌘D
+
- Close Folder
+
+ Make Alias
+
+
+ ⌃⌘A
+
- Close Workspace
+
+ Quick Look
+
+
+ ⌘Y
+
+
+ Show Original
+
+
+ ⌘R
+
+
+
- Close Editor
+
+ Add to Sidebar
+
+
+ ⌃⌘T
+
- Exit
+
+ Move to Trash
+
+
+ ⌘⌫
+
-
-
+
+
+ Eject
+
+
+ ⌘E
+
+
+
+ Burn to Disc...
+
+
+
+
+ Find
+
+
+ ⌘F
+
+
+
+
- ⌘ Z
+ ⌘Z
- ⇧ ⌘ Z
+ ⇧⌘Z
- ⌘ X
+ ⌘X
- ⌘ C
+ ⌘C
- ⌘ V
+ ⌘V
-
- Find in Files
+ Select All
- ⇧ ⌘ H
+ ⌘A
- Replace in Files
+ Invert Selection
+ Show Clipboard
+
+
+
+ Tags...
+
+
+
+
+
+
+ View
+
+
+
+
+
+
- Toggle Line Comment
+ as Icons
- ⌘ /
+ ⌘1
- Toggle Block Comment
+ as List
- ⇧ ⌥ A
+ ⌘2
+
+ as Columns
+
+
+ ⌘3
+
+
+
- Emmet: Expand Abbreviation
+ as Gallery
- ⇥
+ ⌘4
+
+ Use Groups
+
+
+ ⌃⌘0
+
+
+
- Auto Fill
+ Sort By
+
- Contact...
+ Name
+ Kind
+
+
+ Date Last Opened
+
+
+ Date Added
+
+
+ Date Modified
+
+
+ Date Created
+
+
+ Size
+
+
- Passwords...
+ Tags
- Select All
+ Show Tab Bar
- ⌘ A
+ ⇧⌘T
- Expand Selection
+ Show Path Bar
- ⌃ ⇧ ⌘ →
+ ⌥⌘P
- Shrink Selection
+ Show Status Bar
- ⌃ ⇧ ⌘ ←
+ ⌘/
-
- Copy Line Up
+ Show Preview
- ⇧ ⌥ ↑
+ ⇧⌘P
+
-
- Copy Line Down
-
-
- ⇧ ⌥ ↓
-
+ Customize Toolbar...
- Move Line Up
+ Show View Options
- ⌥ ↑
+ ⌘J
+
+
+
+
+
+ Go
+
+
+
+
+
- Move Line Down
+ Back
- ⌥ ↓
+ ⌘[
- Duplicate Selection
-
-
-
- Add Cursor Above
+ Forward
- ⌥ ⌘ ↑
+ ⌘]
- Add Cursor Below
+ Enclosing Folder
- ⌥ ⌘ ↓
+ ⌘↑
+
- Add Cursor to Line End
+ Recents
- ⌃ ⇧ →
+ ⇧⌘F
- Add Next Occurrence
+ Documents
- ⌘ D
+ ⇧⌘O
- Add Previous Occurrence
+ Desktop
- ⇧ ⌘ D
+ ⇧⌘D
- Select All Occurrences
+ Downloads
- ⌘ F2
+ ⌥⌘L
-
-
- Switch to Cmd+Click for Multi-Cursor
-
-
-
-
-
-
- View
-
-
-
-
-
- Command Palette...
+ Home
- ⇧⌘P
+ ⇧⌘H
- Open View...
+ Library
-
- Appearance
+ Computer
- >
+ ⇧⌘C
- Editor Layout
+ AirDrop
- >
+ ⇧⌘R
-
- Explorer
+ Network
- ⇧ ⌘ E
+ ⇧⌘K
- Search
+ Applications
- ⇧ ⌘ F
+ ⇧⌘A
- Source Control
+ Utilities
- ⌃ ⇧ G
+ ⇧⌘U
+
- Run
-
-
- ⇧ ⌘ D
+
+
+ Recent Folders
+
+
+ >
+
+
+
+
+
+
+ Clear Menu
+
+
+
- Extensions
+ Go to Folder...
- ⇧ ⌘ X
+ ⇧⌘G
-
- Problems
+ Connect to Server...
- ⇧ ⌘ M
+ ⌘K
+
+
+
+
+
+ Window
+
+
+
+
+
- Output
+ Minimize
- ⇧ ⌘ U
+ ⌘M
-
- Debug Console
-
-
- ⇧ ⌘ D
-
+ Zoom
-
- Terminal
-
-
- ⌃ \`
-
+ Move to iPad
-
- Word Wrap
-
-
- ⌥ Z
-
-
-
-
-
-
-
- Go
-
-
-
-
-
-
-
- Back
-
-
- ⌃ -
-
-
-
-
- Forward
-
-
- ⌃ ⇧ -
-
-
-
-
- Last Edit Location
-
-
- ⌃ ⇧ -
-
-
-
-
-
- Switch Editor
-
-
- >
-
-
-
-
- Switch Group
-
-
- >
-
-
-
-
-
- Go to File...
-
-
- ⌘ P
-
-
-
-
- Go to Symbol in workspace...
-
-
- ⇧ ⌘ O
-
-
-
-
-
- Go to Symbol in Editor...
-
-
- ⌘ T
-
-
-
-
- Go to Definition
-
-
- F12
-
-
-
- Go to Declaration
-
-
- Go to Type Definition
-
-
-
- Go to Implementation
-
-
- ⌘ F12
-
-
-
-
- Go to References
-
-
- ⇧ F12
-
-
-
-
-
- Go to Line...
-
-
- ⌃ G
-
-
-
-
- Go to Bracket
-
-
- ⇧ ⌘ \\
-
-
-
-
-
- Next Problem
-
-
- F8
-
-
-
-
- Previous Problem
-
-
- ⇧ F8
-
-
-
-
-
- Next Change
-
-
- ⌃ ⇧ M
-
-
-
-
- Previous Change
-
-
- ⌃ ⇧ M
-
-
-
-
-
- New Terminal
-
-
- ⌃ \`
-
-
-
-
- Split Terminal
-
-
- ⌘ /
-
-
-
-
-
- Run Task...
-
-
- ⇧ ⌘ B
-
-
-
- Run Build Task...
-
-
- Run Active File
-
-
- Run Selected Text
-
-
-
- Show Running Tasks
-
-
- Restart Running Task
-
-
- Terminate Task
-
-
-
- Configure Tasks...
-
-
- Configure Default Build Task...
-
-
-
-
-
-
- Help
-
-
-
-
-
-
- Welcome
-
-
- Show All Commands
-
-
- Documentation
-
-
- Editor Playground
+ Tile Window to Left of Screen
- Show Release Notes
+ Tile Window to Right of Screen
- Keyboard Shortcuts Reference
+ Show Previous Tab
- ⌘K ⌘S
+ ⇧⌃⇥
- Video and Tutorials
-
-
- Tips and Tricks
-
-
-
- Join us on Youtube
-
-
- Search Feature Requests
+
+ Show Next Tab
+
+
+ ⌃⇥
+
- Report Issue
+ Merge All Windows
- View License
+ Bring All to Front
+
+
+
+
+
+ Help
+
+
+
+
+
- Privacy Statement
+ Search
- Toggle Developer Tools
-
-
- Open Process Explorer
+
+ macOS Help
+
+
+ ⌘?
+
@@ -2795,12 +2212,12 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
role="group"
>
- 67%
+ 98%
@@ -3188,7 +2606,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
@@ -3225,7 +2647,7 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:r5f:-menuitem-:r5g:"
+ id="menu-list-:r49:-menuitem-:r4a:"
role="menuitem"
tabindex="-1"
type="button"
@@ -3237,7 +2659,41 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -3259,11 +2715,15 @@ exports[`LazyHomeComponent should render correctly to match snapshot 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wi-Fi
+
+
+ Home-5G
+
+
+
+
+
+
+
+
+
+
+
+ Bluetooth
+
+
+ On
+
+
+
+
+
+
+
+
+
+
+
+ AirDrop
+
+
+ Off
+
+
+
+
+
+
+
+
+
+
+ Not Playing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Focus
+
+
+
+
+
+ Display
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sound
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit Controls
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+ Thu May 14 11:01 AM
+
+
+
+
+ THURSDAY
+
+
+ 14
+
+
+
+ No Events Today
+
+
+
+
+
+ Pune ↗
+
+
+ 23°
+
+
+
+
+
+
+
+
+ Mostly Cloudy
+
+
+
+ H:29° L:22°
+
+
+
+
+
+ class="css-iamqmo"
+ >
+
+
+
+ Cupertino
+
+
+ Yesterday
+
+
+ -12:30
+
+
+
+
+
+
+
+ Tokyo
+
+
+ Today
+
+
+ +3:30
+
+
+
+
+
+
+
+ Sydney
+
+
+ Today
+
+
+ +4:30
+
+
+
+
+
+
+
+ Paris
+
+
+ Yesterday
+
+
+ -3:30
+
+
+
+
+
+
+
+
+
+ ▼ DOW
+
+
+ 52,499
+
+
+
+
+ ▼ S&P 500
+
+
+ 7,515
+
+
+
+
+ ▲ AAPL
+
+
+ 317.31
+
+
+
+
+
+ Economic Times
+
+
+ US stocks today: S&P 500 and Nasdaq open lo...
+
diff --git a/src/screens/private/Home/TopBar/RightSideComponents/__tests__/__snapshots__/Wifi.test.tsx.snap b/src/screens/private/Home/TopBar/RightSideComponents/__tests__/__snapshots__/Wifi.test.tsx.snap
index 388e382..c8ec4fc 100644
--- a/src/screens/private/Home/TopBar/RightSideComponents/__tests__/__snapshots__/Wifi.test.tsx.snap
+++ b/src/screens/private/Home/TopBar/RightSideComponents/__tests__/__snapshots__/Wifi.test.tsx.snap
@@ -1,14 +1,14 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
-exports[`Wifi should open other network on other network item clicked is tapped 1`] = `
+exports[`Wifi should click wifi home option 1`] = `
@@ -33,7 +34,7 @@ exports[`Wifi should open other network on other network item clicked is tapped
@@ -70,7 +75,7 @@ exports[`Wifi should open other network on other network item clicked is tapped
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rq:-menuitem-:rr:"
+ id="menu-list-:rb:-menuitem-:rc:"
role="menuitem"
tabindex="-1"
type="button"
@@ -82,8 +87,8 @@ exports[`Wifi should open other network on other network item clicked is tapped
class="chakra-menu__divider css-1fmk8qx"
/>
@@ -104,164 +109,19 @@ exports[`Wifi should open other network on other network item clicked is tapped
/>
- Wi-Fi 1
-
-
-
-
-
-
-
- Wi-Fi 2
-
-
-
-
- Other Network
-
-
- >
-
-
-
-
- Wi-Fi settings...
-
-
-
-
-`;
-
-exports[`Wifi should open pop-up when Wifi icon is tapped 1`] = `
-
-
-
-
-
-
-
-
-
-
-
- Wi-Fi
+ Home-5G
-
-
-
- Weak Security (WPA)
+ Connected
+
-
@@ -283,11 +143,15 @@ exports[`Wifi should open pop-up when Wifi icon is tapped 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
`;
-exports[`Wifi should open wifi settings on wifi settings item clicked is tapped 1`] = `
+exports[`Wifi should open other network on other network item clicked is tapped 1`] = `
@@ -387,7 +256,7 @@ exports[`Wifi should open wifi settings on wifi settings item clicked is tapped
@@ -424,7 +297,7 @@ exports[`Wifi should open wifi settings on wifi settings item clicked is tapped
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rv:-menuitem-:r10:"
+ id="menu-list-:rl:-menuitem-:rm:"
role="menuitem"
tabindex="-1"
type="button"
@@ -436,7 +309,41 @@ exports[`Wifi should open wifi settings on wifi settings item clicked is tapped
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -458,11 +365,15 @@ exports[`Wifi should open wifi settings on wifi settings item clicked is tapped
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
Wi-Fi settings...
@@ -529,15 +444,16 @@ exports[`Wifi should open wifi settings on wifi settings item clicked is tapped
`;
-exports[`Wifi should open wifi weak security on wifi weak security item clicked is tapped 1`] = `
+exports[`Wifi should open pop-up when Wifi icon is tapped 1`] = `
@@ -557,12 +474,15 @@ exports[`Wifi should open wifi weak security on wifi weak security item clicked
@@ -599,9 +523,9 @@ exports[`Wifi should open wifi weak security on wifi weak security item clicked
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rl:-menuitem-:rm:"
+ id="menu-list-:r6:-menuitem-:r7:"
role="menuitem"
- tabindex="0"
+ tabindex="-1"
type="button"
>
Weak Security (WPA)
@@ -611,7 +535,41 @@ exports[`Wifi should open wifi weak security on wifi weak security item clicked
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -633,11 +591,15 @@ exports[`Wifi should open wifi weak security on wifi weak security item clicked
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
`;
-exports[`Wifi should render 1`] = `
+exports[`Wifi should open wifi settings on wifi settings item clicked is tapped 1`] = `
@@ -737,7 +704,7 @@ exports[`Wifi should render 1`] = `
`;
-exports[`Wifi should toggle wifi when wifi 1 is tapped 1`] = `
+exports[`Wifi should open wifi weak security on wifi weak security item clicked is tapped 1`] = `
@@ -912,7 +926,7 @@ exports[`Wifi should toggle wifi when wifi 1 is tapped 1`] = `
@@ -949,9 +967,9 @@ exports[`Wifi should toggle wifi when wifi 1 is tapped 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rb:-menuitem-:rc:"
+ id="menu-list-:rg:-menuitem-:rh:"
role="menuitem"
- tabindex="-1"
+ tabindex="0"
type="button"
>
Weak Security (WPA)
@@ -961,7 +979,41 @@ exports[`Wifi should toggle wifi when wifi 1 is tapped 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
`;
-exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
+exports[`Wifi should render 1`] = `
@@ -1087,7 +1148,7 @@ exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
@@ -1124,7 +1189,7 @@ exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rg:-menuitem-:rh:"
+ id="menu-list-:r1:-menuitem-:r2:"
role="menuitem"
tabindex="-1"
type="button"
@@ -1136,7 +1201,41 @@ exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -1158,11 +1257,15 @@ exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
@@ -1183,7 +1286,11 @@ exports[`Wifi should toggle wifi when wifi 2 is tapped 1`] = `
/>
- Wi-Fi 2
+
+ Office-WiFi
+
@@ -231,7 +231,7 @@ exports[`TopBar should render correctly to match snapshot 1`] = `
- Code
+ Finder
@@ -248,7 +248,7 @@ exports[`TopBar should render correctly to match snapshot 1`] = `
tabindex="-1"
>
- About Visual Studio Code
+ About Finder
+
- Check for Updates...
+
+ Settings...
+
+
+ ⌘,
+
+
+
+
+
+ Empty Trash...
+
+
+ ⇧⌘⌫
+
+
+
+ Secure Empty Trash...
- Settings
+ Services
- settings
-
-
- Profiles
-
-
- extensions
+ No Services Apply
- Hide Visual Studio Code
+
+ Hide Finder
+
+
+ ⌘H
+
- Hide Others
+
+ Hide Others
+
+
+ ⌥⌘H
+
- Quit Visual Studio Code
+
+ Quit Finder
+
+
+ ⌘Q
+
@@ -438,7 +491,7 @@ exports[`TopBar should render correctly to match snapshot 1`] = `
tabindex="-1"
>
- New File
+ New Finder Window
- New Window
+ New Folder
-
- Open File...
+ New Folder with Selection
- ⌘O
+ ⌃⌘N
- Open Folder...
+ New Smart Folder
- Open Workspace from file...
+
+ New Tab
+
+
+ ⌘T
+
+
- Open Recent
+
+ Open
+
+
+ ⌘O
+
-
+
+
+
+ Open With
+
+
+ >
+
+
+
+
+
+
+
+ Other...
+
+
+
+
- Save
+ Close Window
- ⌘S
+ ⌘W
+
- Save As...
+
+ Get Info
+
+
+ ⌘I
+
- Save All
+ Rename
- Auto Save
+ Compress
-
- Close Window
+
+ Duplicate
+
+
+ ⌘D
+
- Close Folder
+
+ Make Alias
+
+
+ ⌃⌘A
+
- Close Workspace
+
+ Quick Look
+
+
+ ⌘Y
+
+
+ Show Original
+
+
+ ⌘R
+
+
+
- Close Editor
+
+ Add to Sidebar
+
+
+ ⌃⌘T
+
- Exit
+
+ Move to Trash
+
+
+ ⌘⌫
+
-
- Select All
+ Show Tab Bar
- ⌘ A
+ ⇧⌘T
- Expand Selection
+ Show Path Bar
- ⌃ ⇧ ⌘ →
+ ⌥⌘P
- Shrink Selection
+ Show Status Bar
- ⌃ ⇧ ⌘ ←
+ ⌘/
-
- Copy Line Up
+ Show Preview
- ⇧ ⌥ ↑
+ ⇧⌘P
+
-
- Copy Line Down
-
-
- ⇧ ⌥ ↓
-
+ Customize Toolbar...
- Move Line Up
+ Show View Options
- ⌥ ↑
+ ⌘J
+
+
+
+
+
+ Go
+
+
+
+
+
- Move Line Down
+ Back
- ⌥ ↓
+ ⌘[
- Duplicate Selection
-
-
-
- Add Cursor Above
+ Forward
- ⌥ ⌘ ↑
+ ⌘]
- Add Cursor Below
+ Enclosing Folder
- ⌥ ⌘ ↓
+ ⌘↑
+
- Add Cursor to Line End
+ Recents
- ⌃ ⇧ →
+ ⇧⌘F
- Add Next Occurrence
+ Documents
- ⌘ D
+ ⇧⌘O
- Add Previous Occurrence
+ Desktop
- ⇧ ⌘ D
+ ⇧⌘D
- Select All Occurrences
+ Downloads
- ⌘ F2
+ ⌥⌘L
-
-
- Switch to Cmd+Click for Multi-Cursor
-
-
-
-
-
-
- View
-
-
-
-
-
- Command Palette...
+ Home
- ⇧⌘P
+ ⇧⌘H
- Open View...
+ Library
-
- Appearance
+ Computer
- >
+ ⇧⌘C
- Editor Layout
+ AirDrop
- >
+ ⇧⌘R
-
- Explorer
+ Network
- ⇧ ⌘ E
+ ⇧⌘K
- Search
+ Applications
- ⇧ ⌘ F
+ ⇧⌘A
- Source Control
+ Utilities
- ⌃ ⇧ G
+ ⇧⌘U
+
- Run
-
-
- ⇧ ⌘ D
+
+
+ Recent Folders
+
+
+ >
+
+
+
+
+
+
+ Clear Menu
+
+
+
- Extensions
+ Go to Folder...
- ⇧ ⌘ X
+ ⇧⌘G
-
- Problems
+ Connect to Server...
- ⇧ ⌘ M
+ ⌘K
+
+
+
+
+
+ Window
+
+
+
+
+
- Output
+ Minimize
- ⇧ ⌘ U
+ ⌘M
-
- Debug Console
-
-
- ⇧ ⌘ D
-
+ Zoom
-
- Terminal
-
-
- ⌃ \`
-
+ Move to iPad
-
- Word Wrap
-
-
- ⌥ Z
-
-
-
-
-
-
-
- Go
-
-
-
-
-
-
-
- Back
-
-
- ⌃ -
-
-
-
-
- Forward
-
-
- ⌃ ⇧ -
-
-
-
-
- Last Edit Location
-
-
- ⌃ ⇧ -
-
-
-
-
-
- Switch Editor
-
-
- >
-
+ Tile Window to Left of Screen
-
- Switch Group
-
-
- >
-
+ Tile Window to Right of Screen
- Go to File...
+ Show Previous Tab
- ⌘ P
+ ⇧⌃⇥
- Go to Symbol in workspace...
+ Show Next Tab
- ⇧ ⌘ O
+ ⌃⇥
-
-
- Go to Symbol in Editor...
-
-
- ⌘ T
-
-
-
-
- Go to Definition
-
-
- F12
-
-
-
- Go to Declaration
-
-
- Go to Type Definition
-
-
-
- Go to Implementation
-
-
- ⌘ F12
-
-
-
-
- Go to References
-
-
- ⇧ F12
-
+ Merge All Windows
-
- Go to Line...
-
-
- ⌃ G
-
+ Bring All to Front
+
+
+
+
+
+ Help
+
+
+
+
+
-
- Go to Bracket
-
-
- ⇧ ⌘ \\
-
+ Search
- Next Problem
+ macOS Help
- F8
+ ⌘?
-
-
- Previous Problem
-
-
- ⇧ F8
-
-
-
-
-
- Next Change
-
-
- ⌃ ⇧ M
-
-
-
-
- Previous Change
-
-
- ⌃ ⇧ M
-
-
-
- Appearance
+ Go to Folder...
- >
+ ⇧⌘G
- Editor Layout
+ Connect to Server...
- >
+ ⌘K
-
+
+
+
+
+
+ Window
+
+
+
+
+
- Explorer
+ Minimize
- ⇧ ⌘ E
+ ⌘M
-
- Search
-
-
- ⇧ ⌘ F
-
+ Zoom
-
- Source Control
-
-
- ⌃ ⇧ G
-
+ Move to iPad
+
-
- Run
-
-
- ⇧ ⌘ D
-
+ Tile Window to Left of Screen
-
- Extensions
-
-
- ⇧ ⌘ X
-
+ Tile Window to Right of Screen
-
- Problems
-
-
- ⇧ ⌘ M
-
-
-
- Output
+ Show Previous Tab
- ⇧ ⌘ U
+ ⇧⌃⇥
- Debug Console
+ Show Next Tab
- ⇧ ⌘ D
+ ⌃⇥
-
- Terminal
-
-
- ⌃ \`
-
+ Merge All Windows
-
- Word Wrap
-
-
- ⌥ Z
-
+ Bring All to Front
- Go
+ Help
@@ -1691,100 +2162,31 @@ exports[`Home should render correctly to match snapshot 1`] = `
-
- Go to Symbol in Editor...
-
-
- ⌘ T
-
-
-
-
- Go to Definition
-
-
- F12
-
-
-
- Go to Declaration
-
-
- Go to Type Definition
-
-
-
- Go to Implementation
-
-
- ⌘ F12
-
-
-
-
+
+
+
+
+
- Go to References
-
-
+
- ⇧ F12
-
-
-
-
+
+
-
- Go to Line...
-
-
- ⌃ G
-
-
-
-
+
+
+
+
- Go to Bracket
-
-
+
- ⇧ ⌘ \\
-
-
-
+
+
+
+
+ Display settings...
+
+
+
+
+
+
+ Amit Raikwar
+
+
+
+
+
+
+
-
-
- Next Problem
-
-
- F8
-
-
-
-
- Previous Problem
-
-
- ⇧ F8
-
-
-
-
-
- Next Change
-
-
- ⌃ ⇧ M
-
-
-
-
- Previous Change
-
-
- ⌃ ⇧ M
-
-
+ Amit Raikwar
+
- Select All
+ Show Tab Bar
- ⌘ A
+ ⇧⌘T
- Expand Selection
+ Show Path Bar
- ⌃ ⇧ ⌘ →
+ ⌥⌘P
- Shrink Selection
+ Show Status Bar
- ⌃ ⇧ ⌘ ←
+ ⌘/
-
- Copy Line Up
+ Show Preview
- ⇧ ⌥ ↑
+ ⇧⌘P
+
-
- Copy Line Down
-
-
- ⇧ ⌥ ↓
-
+ Customize Toolbar...
- Move Line Up
+ Show View Options
- ⌥ ↑
+ ⌘J
-
+
+
+
+
+ Go
+
+
+
+
+
+
- Move Line Down
+ Back
- ⌥ ↓
+ ⌘[
- Duplicate Selection
-
-
-
- Add Cursor Above
+ Forward
- ⌥ ⌘ ↑
+ ⌘]
- Add Cursor Below
+ Enclosing Folder
- ⌥ ⌘ ↓
+ ⌘↑
+
- Add Cursor to Line End
+ Recents
- ⌃ ⇧ →
+ ⇧⌘F
- Add Next Occurrence
+ Documents
- ⌘ D
+ ⇧⌘O
- Add Previous Occurrence
+ Desktop
- ⇧ ⌘ D
+ ⇧⌘D
- Select All Occurrences
+ Downloads
- ⌘ F2
+ ⌥⌘L
-
-
- Switch to Cmd+Click for Multi-Cursor
-
-
-
-
-
-
- View
-
-
-
-
-
- Command Palette...
+ Home
- ⇧⌘P
+ ⇧⌘H
- Open View...
+ Library
-
- Appearance
+ Computer
- >
+ ⇧⌘C
- Editor Layout
+ AirDrop
- >
+ ⇧⌘R
-
- Explorer
+ Network
- ⇧ ⌘ E
+ ⇧⌘K
- Search
+ Applications
- ⇧ ⌘ F
+ ⇧⌘A
- Source Control
+ Utilities
- ⌃ ⇧ G
+ ⇧⌘U
+
- Run
-
-
- ⇧ ⌘ D
+
+
+ Recent Folders
+
+
+ >
+
+
+
+
+
+
+ Clear Menu
+
+
+
- Extensions
+ Go to Folder...
- ⇧ ⌘ X
+ ⇧⌘G
-
- Problems
+ Connect to Server...
- ⇧ ⌘ M
-
-
-
-
- Output
-
-
- ⇧ ⌘ U
-
-
-
-
- Debug Console
-
-
- ⇧ ⌘ D
-
-
-
-
- Terminal
-
-
- ⌃ \`
-
-
-
-
-
- Word Wrap
-
-
- ⌥ Z
+ ⌘K
- Go
+ Window
@@ -5357,16 +5995,16 @@ exports[`Home should render correctly with apps to match snapshot 1`] = `
- Back
+ Minimize
- ⌃ -
+ ⌘M
-
- Forward
-
-
- ⌃ ⇧ -
-
+ Zoom
-
- Last Edit Location
-
-
- ⌃ ⇧ -
-
+ Move to iPad
-
- Switch Editor
-
-
- >
-
+ Tile Window to Left of Screen
-
- Switch Group
-
-
- >
-
+ Tile Window to Right of Screen
- Go to File...
+ Show Previous Tab
- ⌘ P
+ ⇧⌃⇥
- Go to Symbol in workspace...
+ Show Next Tab
- ⇧ ⌘ O
+ ⌃⇥
-
-
- Go to Symbol in Editor...
-
-
- ⌘ T
-
+ Merge All Windows
+
-
- Go to Definition
-
-
- F12
-
-
-
- Go to Declaration
-
-
- Go to Type Definition
+ Bring All to Front
-
+
+
+
+
-
- Go to Implementation
-
-
- ⌘ F12
-
-
+ Help
+
+
+
+
+
-
- Go to References
-
-
- ⇧ F12
-
+ Search
- Go to Line...
+ macOS Help
- ⌃ G
-
-
-
-
- Go to Bracket
-
-
- ⇧ ⌘ \\
-
-
-
-
-
- Next Problem
-
-
- F8
-
-
-
-
- Previous Problem
-
-
- ⇧ F8
-
-
-
-
-
- Next Change
-
-
- ⌃ ⇧ M
-
-
-
-
- Previous Change
-
-
- ⌃ ⇧ M
+ ⌘?
-
-
@@ -7325,9 +8002,6 @@ exports[`Home should render correctly with apps to match snapshot 1`] = `
-
`;
@@ -7360,12 +8034,12 @@ exports[`Home should render correctly with bin app to match snapshot 1`] = `
role="group"
>
+ >
+
+
+
+ Finder
+
+
+
+
+
+
+ About Finder
+
+
+
+ Empty Trash
+
+
+
+
+
+
+ File
+
+
+
+
+
+
+ Close Window
+
+
+
+
- 67%
+ 98%
@@ -7966,7 +8743,7 @@ exports[`Home should render correctly with bin app to match snapshot 1`] = `
@@ -8003,7 +8784,7 @@ exports[`Home should render correctly with bin app to match snapshot 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rv5:-menuitem-:rv6:"
+ id="menu-list-:r1ov:-menuitem-:r1p0:"
role="menuitem"
tabindex="-1"
type="button"
@@ -8015,7 +8796,41 @@ exports[`Home should render correctly with bin app to match snapshot 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -8037,11 +8852,15 @@ exports[`Home should render correctly with bin app to match snapshot 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
+ class="chakra-stack css-2kgjhe"
+ >
+
+
+
+
+
+
+
+ Wi-Fi
+
+
+ Home-5G
+
+
+
+
+
+
+
+
+
+
+
+ Bluetooth
+
+
+ On
+
+
+
+
+
+
+
+
+
+
+
+ AirDrop
+
+
+ Off
+
+
+
-
-
-
-
-
+
+
+
+
+
+ Not Playing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Focus
+
+
+
+
+
+ Display
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sound
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit Controls
+
+
+
+
+
+
-
-
- Thu May 14 11:01 AM
-
-
+ Thu May 14 11:01 AM
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ THURSDAY
+
+
+ 14
+
+
+
+ No Events Today
+
+
+
+
+
+ Pune ↗
+
+
+ 23°
+
+
+
+
+
+
+
+
+ Mostly Cloudy
+
+
+
+ H:29° L:22°
+
+
+
+
+
+
+
+
+
+
+
+ Cupertino
+
+
+ Yesterday
+
+
+ -12:30
+
+
+
+
+
+
+
+ Tokyo
+
+
+ Today
+
+
+ +3:30
+
+
+
+
+
+
+
+ Sydney
+
+
+ Today
+
+
+ +4:30
+
+
+
+
+
+
+
+ Paris
+
+
+ Yesterday
+
+
+ -3:30
+
+
+
+
+
+
+
+
+
+ ▼ DOW
+
+
+ 52,499
+
+
+
+
+ ▼ S&P 500
+
+
+ 7,515
+
+
+
+
+ ▲ AAPL
+
+
+ 317.31
+
+
+
+
+
+ Economic Times
+
+
+ US stocks today: S&P 500 and Nasdaq open lo...
+
+
+
+
+
+
+ 1h 55m
+
+
+
+
+
+ 60m
+
+
+
+
+ 30m
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+ 12 AM
+
+
+ 6 AM
+
+
+ 12 PM
+
+
+
+
+
+
+
+
+ Xcode
+
+
+
+ 1h 14m
+
+
+
+
+
+
+ Chrome
+
+
+
+ 38m
+
+
+
+
+
+
+ Settings
+
+
+
+ 1m
+
+
+
+
+
+
+ Finder
+
+
+
+ 18s
+
+
+
+
+
+
+
+ Edit Widgets
+
+
+
+ ✕
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- x
-
-
-
-
- -
-
-
-
-
- o
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+
+
+
+ Calendar
+
+
+
+
+
+
+ About Calendar
+
+
+
+ Preferences...
+
+
+
+
+
+
+ File
+
+
+
+
+
+
+ New Event
+
+
+
+
- 67%
+ 98%
@@ -9131,7 +10969,7 @@ exports[`Home should render correctly with calendar app to match snapshot 1`] =
@@ -9168,7 +11010,7 @@ exports[`Home should render correctly with calendar app to match snapshot 1`] =
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rf2:-menuitem-:rf3:"
+ id="menu-list-:rgb:-menuitem-:rgc:"
role="menuitem"
tabindex="-1"
type="button"
@@ -9180,8 +11022,8 @@ exports[`Home should render correctly with calendar app to match snapshot 1`] =
class="chakra-menu__divider css-1fmk8qx"
/>
@@ -9202,11 +11044,20 @@ exports[`Home should render correctly with calendar app to match snapshot 1`] =
/>
- Wi-Fi 1
+
+ Home-5G
+
+
+ Connected
+
- Wi-Fi 2
+
+ CoffeeShop-Free
+
-
+
+
+
+
+
+
+ Office-WiFi
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wi-Fi
+
+
+ Home-5G
+
+
+
+
+
+
+
+
+
+
+
+ Bluetooth
+
+
+ On
+
+
+
+
+
+
+
+
+
+
+
+ AirDrop
+
+
+ Off
+
+
+
+
+
+
+
+
+
+
+ Not Playing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Focus
+
+
+
+
+
+ Display
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sound
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit Controls
+
+
-
-
- Thu May 14 11:01 AM
-
-
+ Thu May 14 11:01 AM
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ THURSDAY
+
+
+ 14
+
+
+
+ No Events Today
+
+
+
+
+
+ Pune ↗
+
+
+ 23°
+
+
+
+
+
+
+
+
+ Mostly Cloudy
+
+
+
+ H:29° L:22°
+
+
+
+
+
+
+
+
+
+
+
+ Cupertino
+
+
+ Yesterday
+
+
+ -12:30
+
+
+
+
+
+
+
+ Tokyo
+
+
+ Today
+
+
+ +3:30
+
+
+
+
+
+
+
+ Sydney
+
+
+ Today
+
+
+ +4:30
+
+
+
+
+
+
+
+ Paris
+
+
+ Yesterday
+
+
+ -3:30
+
+
+
+
+
+
+
+
+
+ ▼ DOW
+
+
+ 52,499
+
+
+
+
+ ▼ S&P 500
+
+
+ 7,515
+
+
+
+
+ ▲ AAPL
+
+
+ 317.31
+
+
+
+
+
+ Economic Times
+
+
+ US stocks today: S&P 500 and Nasdaq open lo...
+
+
+
+
+
+
+ 1h 55m
+
+
+
+
+
+ 60m
+
+
+
+
+ 30m
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+ 12 AM
+
+
+ 6 AM
+
+
+ 12 PM
+
+
+
+
+
+
+
+
+ Xcode
+
+
+
+ 1h 14m
+
+
+
+
+
+
+ Chrome
+
+
+
+ 38m
+
+
+
+
+
+
+ Settings
+
+
+
+ 1m
+
+
+
+
+
+
+ Finder
+
+
+
+ 18s
+
+
+
+
+
+
+
+ Edit Widgets
+
+
+
+ ✕
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- x
-
-
-
-
- -
-
-
-
-
- o
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+
+
+
+ Chrome
+
+
+
+
+
+
+ About Google Chrome
+
+
+
+ Settings
+
+
+
+
+
+
+ File
+
+
+
+
+
+
+ New Tab
+
+
+ New Window
+
+
+
+
- 67%
+ 98%
@@ -10296,7 +13206,7 @@ exports[`Home should render correctly with chrome app to match snapshot 1`] = `
@@ -10333,7 +13247,7 @@ exports[`Home should render correctly with chrome app to match snapshot 1`] = `
aria-label="wifi-weak-security"
class="chakra-menu__menuitem css-cvp33l"
data-index="0"
- id="menu-list-:rgm:-menuitem-:rgn:"
+ id="menu-list-:rlj:-menuitem-:rlk:"
role="menuitem"
tabindex="-1"
type="button"
@@ -10345,7 +13259,41 @@ exports[`Home should render correctly with chrome app to match snapshot 1`] = `
class="chakra-menu__divider css-1fmk8qx"
/>
+
+
+
+
+
+
+ Home-5G
+
+
+ Connected
+
+
+
@@ -10367,11 +13315,15 @@ exports[`Home should render correctly with chrome app to match snapshot 1`] = `
/>
- Wi-Fi 1
+
+ CoffeeShop-Free
+
- Wi-Fi 2
+
+ Office-WiFi
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Wi-Fi
+
+
+ Home-5G
+
+
+
+
+
+
+
+
+
+
+
+ Bluetooth
+
+
+ On
+
+
+
+
+
+
+
+
+
+
+
+ AirDrop
+
+
+ Off
+
+
+
+
+
+
+
+
+
+
+ Not Playing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Focus
+
+
+
+
+
+ Display
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sound
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit Controls
+
+
+
+
+
+
-
-
- Thu May 14 11:01 AM
-
-
+ Thu May 14 11:01 AM
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ class="chakra-stack css-1jbmm9k"
+ >
+
+
+
+
+ THURSDAY
+
+
+ 14
+
+
+
+ No Events Today
+
+
+
+
+
+ Pune ↗
+
+
+ 23°
+
+
+
+
+
+
+
+
+ Mostly Cloudy
+
+
+
+ H:29° L:22°
+
+
+
+
+
+
+
+
+
+
+
+ Cupertino
+
+
+ Yesterday
+
+
+ -12:30
+
+
+
+
+
+
+
+ Tokyo
+
+
+ Today
+
+
+ +3:30
+
+
+
+
+
+
+
+ Sydney
+
+
+ Today
+
+
+ +4:30
+
+
+
+
+
+
+
+ Paris
+
+
+ Yesterday
+
+
+ -3:30
+
+
+
+
+
+
+
+
+
+ ▼ DOW
+
+
+ 52,499
+
+
+
+
+ ▼ S&P 500
+
+
+ 7,515
+
+
+
+
+ ▲ AAPL
+
+
+ 317.31
+
+
+
+
+
+ Economic Times
+
+
+ US stocks today: S&P 500 and Nasdaq open lo...
+
+
+
+
+
+
+ 1h 55m
+
+
+
+
+
+ 60m
+
+
+
+
+ 30m
+
+
+
+
+ 0
+
+
+
+
+
+
+
+
+
+ 12 AM
+
+
+ 6 AM
+
+
+ 12 PM
+
+
+
+
+
+
+
+
+ Xcode
+
+
+
+ 1h 14m
+
+
+
+
+
+
+ Chrome
+
+
+
+ 38m
+
+
+
+
+
+
+ Settings
+
+
+
+ 1m
+
+
+
+
+
+
+ Finder
+
+
+
+ 18s
+
+
+
+
+
+
+
+ Edit Widgets
+
+
+
+ ✕
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`;
+
+exports[`Home should render correctly with finder app to match snapshot 1`] = `
+