1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

update jslib and fix webPlatformUtils (#741)

This commit is contained in:
Chad Scharf
2020-12-16 16:40:10 -05:00
committed by GitHub
parent f090e8febf
commit c2e1d325f2
3 changed files with 14 additions and 1 deletions

2
jslib

Submodule jslib updated: cc801ce0d7...ceb78d054c

5
package-lock.json generated
View File

@@ -1552,6 +1552,11 @@
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
"dev": true
},
"browser-process-hrtime": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",

View File

@@ -285,4 +285,12 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
supportsSecureStorage() {
return false;
}
getDefaultSystemTheme() {
return null as 'light' | 'dark';
}
onDefaultSystemThemeChange() {
/* noop */
}
}