Skip to content

Commit

Permalink
style changed
Browse files Browse the repository at this point in the history
  • Loading branch information
CoNETProject committed Dec 5, 2023
1 parent 67b835d commit 2853212
Show file tree
Hide file tree
Showing 36 changed files with 3,012 additions and 1,273 deletions.
46 changes: 24 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,41 +32,43 @@
"@conet.project/seguro-worker-lib": "0.13.9",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@mui/lab": "^5.0.0-alpha.153",
"primereact": "^10.1.1",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.19",
"@mui/base": "5.0.0-beta.25",
"@mui/material-next": "^6.0.0-alpha.111",
"@mui/lab": "^5.0.0-alpha.154",
"primereact": "^10.2.1",
"@react-icons/all-files": "^4.1.0",
"@tippyjs/react": "^4.2.6",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.5",
"framer-motion": "^10.16.10",
"get-port": "^7.0.0",
"react-draggable": "^4.4.6",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^5.4.5",
"react-lottie-player": "^1.5.5",
"react-router-dom": "^6.19.0",
"react-router-dom": "^6.20.0",
"uuid": "^9.0.1",
"web-vitals": "^3.5.0",
"country-flag-icons": "^1.5.7",
"@webcontainer/api": "^1.1.8"

"country-flag-icons": "^1.5.9",
"@webcontainer/api": "^1.1.8",
"@material/material-color-utilities": "^0.2.7"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/node-logger": "^7.5.3",
"@storybook/preset-create-react-app": "^7.5.3",
"@storybook/react": "^7.5.3",
"@testing-library/jest-dom": "^6.1.4",
"@storybook/addon-actions": "^7.6.3",
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-links": "^7.6.3",
"@storybook/node-logger": "^7.6.3",
"@storybook/preset-create-react-app": "^7.6.3",
"@storybook/react": "^7.6.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@types/react": "^18.2.38",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.1",
"@types/react": "^18.2.39",
"@types/react-document-meta": "^3.0.5",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
Expand All @@ -77,7 +79,7 @@
"concurrently": "^8.2.2",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"electron":"^27.1.0",
"electron":"^27.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"modern-normalize": "^2.0.0",
Expand All @@ -91,7 +93,7 @@
"styled-components": "^6.1.1",
"typescript": "^5.3.2",
"wait-on": "^7.2.0",
"caniuse-lite": "^1.0.30001564",
"caniuse-lite": "^1.0.30001565",
"react-swipeable-views": "^0.14.0"
},
"browserslist": {
Expand Down
12 changes: 12 additions & 0 deletions src/API/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,18 @@ export const createPasscode : (passcord: string, local: string) => Promise < Sta
})
}

export const encrypt_deletePasscode : () => Promise < StartWorkerResolveForAPI > = () => {
return new Promise( resolve => {

const cmd: WorkerCommand = {
cmd: 'encrypt_deletePasscode',
uuid: v4(),
data: []
}
return postMessage (cmd, resolve)
})
}


export const checkLocaldemond: () => Promise < StartWorkerResolveForAPI > = () => {
return new Promise(resolve => {
Expand Down
Loading

0 comments on commit 2853212

Please sign in to comment.