Socket
Socket
Sign inDemoInstall

vconsole

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vconsole - npm Package Compare versions

Comparing version 3.11.1 to 3.11.2

6

CHANGELOG_CN.md
[English](./CHANGELOG.md) | 简体中文
## 3.11.2 (2022-01-20)
- `Feat(Storage)` 增加 "Clear" 按钮以批量删除所有 storage。 (issue #499)
- `Fix(Storage)` 修复无法删除 cookies 的问题。 (issue #499)
## 3.11.1 (2022-01-13)

@@ -4,0 +10,0 @@

English | [简体中文](./CHANGELOG_CN.md)
## 3.11.2 (2022-01-20)
- `Feat(Storage)` Added "Clear" button to batch delete all storage items. (issue #499)
- `Fix(Storage)` Fix the issue that deleting cookies fails. (issue #499)
## 3.11.1 (2022-01-13)

@@ -4,0 +10,0 @@

18

dist/vconsole.min.d.ts

@@ -691,4 +691,18 @@ declare module "lib/tool" {

}
declare module "storage/cookieStorage" {
import { CookieStorage } from 'cookie-storage';
import type { CookieOptions } from 'cookie-storage/lib/cookie-options';
export class VConsoleCookieStorage extends CookieStorage {
/**
* Deep remove a cookie.
*/
removeItem(key: string, cookieOptions?: CookieOptions): void;
/**
* Deep clear all cookies.
*/
clear(): void;
}
}
declare module "storage/storage.model" {
import { CookieStorage } from 'cookie-storage';
import { VConsoleCookieStorage } from "storage/cookieStorage";
import { VConsoleModel } from "lib/model";

@@ -700,3 +714,3 @@ interface IStorageItem {

export class VConsoleStorageModel extends VConsoleModel {
protected cookiesStorage: CookieStorage;
protected cookiesStorage: VConsoleCookieStorage;
protected storages: IStorageItem[];

@@ -703,0 +717,0 @@ /**

2

package.json
{
"name": "vconsole",
"version": "3.11.1",
"version": "3.11.2",
"description": "A lightweight, extendable front-end developer tool for mobile web page.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/Tencent/vConsole",

Sorry, the diff of this file is too big to display

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