New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@evidence-dev/components

Package Overview
Dependencies
Maintainers
2
Versions
653
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evidence-dev/components - npm Package Compare versions

Comparing version

to
1.4.0

10

CHANGELOG.md
# @evidence-dev/components
## 1.4.0
### Minor Changes
- c68f658: Add maxWidth and minWidth style props to BigValue component. Default set for minWidth to give smaller BigValues more room.
### Patch Changes
- 79dca60: Fixes bug which prevented dev mode reloading on changes to queries in paramatarized pages
## 1.3.14

@@ -4,0 +14,0 @@

3

package.json
{
"name": "@evidence-dev/components",
"version": "1.3.14",
"version": "1.4.0",
"type": "module",

@@ -8,3 +8,2 @@ "dependencies": {

"@tidyjs/tidy": "2.4.4",
"blueimp-md5": "2.19.0",
"downloadjs": "1.4.7",

@@ -11,0 +10,0 @@ "echarts": "5.3.2",

export const showQueries: import("svelte/store").Writable<boolean>;
export const pageHasQueries: import("svelte/store").Writable<boolean>;
export const routeHash: import("svelte/store").Writable<string>;

@@ -8,2 +8,3 @@ import { dev } from '$app/env';

showQueries.subscribe((value) => browser && (localStorage.setItem('showQueries',(value))));
export const pageHasQueries = writable(true);
export const pageHasQueries = writable(true);
export const routeHash = writable('');

@@ -12,2 +12,4 @@ /** @typedef {typeof __propDef.props} BigValueProps */

downIsGood?: boolean;
maxWidth?: string;
minWidth?: string;
}, {

@@ -30,2 +32,4 @@ [evt: string]: CustomEvent<any>;

downIsGood?: boolean;
maxWidth?: string;
minWidth?: string;
};

@@ -32,0 +36,0 @@ events: {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet