Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@logux/client

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@logux/client - npm Package Compare versions

Comparing version 0.8.4 to 0.8.5

badge/index.test.ts

3

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.8.5
* Remove `global` from `IndexedStore` (by Neville Franks).
## 0.8.4

@@ -5,0 +8,0 @@ * Fix `log()` for `logux/unsubscribe` actions.

6

indexed-store/index.js

@@ -71,4 +71,4 @@ import { isFirstOlder } from '@logux/core'

store.db.close()
if (global.document && global.document.reload) {
global.document.reload()
if (typeof document !== 'undefined' && document.reload) {
document.reload()
}

@@ -268,3 +268,3 @@ }

store.db.close()
await promisify(global.indexedDB.deleteDatabase(store.name))
await promisify(indexedDB.deleteDatabase(store.name))
}

@@ -271,0 +271,0 @@ }

{
"name": "@logux/client",
"version": "0.8.4",
"version": "0.8.5",
"description": "Logux base components to build web client",

@@ -5,0 +5,0 @@ "keywords": [

@@ -47,3 +47,3 @@ # Logux Client [![Cult Of Martians][cult-img]][cult]

import { CrossTabClient, badge, badgeEn, log } from '@logux/client'
import { badgeStyles } from '@logux/client/badge/style'
import { badgeStyles } from '@logux/client/badge/styles'

@@ -50,0 +50,0 @@ let userId = document.querySelector('meta[name=user]').content

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc