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

@lightningjs/blits

Package Overview
Dependencies
Maintainers
0
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/blits - npm Package Compare versions

Comparing version

to
1.16.1

7

CHANGELOG.md
# Changelog
## v1.16.1
_17 jan 2025_
- Fixed issue in certain browsers caused by route query params functionality (and optimized for performance)
## v1.16.0

@@ -4,0 +11,0 @@

2

package.json
{
"name": "@lightningjs/blits",
"version": "1.16.0",
"version": "1.16.1",
"description": "Blits: The Lightning 3 App Development Framework",

@@ -5,0 +5,0 @@ "bin": "bin/index.js",

@@ -159,2 +159,9 @@ /*

holder.set('h', '100%')
const queryParamsData = {}
const queryParamsEntries = [...queryParams.entries()]
for (let i = 0; i < queryParamsEntries.length; i++) {
queryParamsData[queryParamsEntries[i][0]] = queryParamsEntries[i][1]
}
// merge props with potential route params, navigation data and route data to be injected into the component instance

@@ -166,6 +173,3 @@ const props = {

...route.data,
...queryParams.entries().reduce((obj, item) => {
obj[item[0]] = item[1]
return obj
}, {}),
...queryParamsData,
}

@@ -172,0 +176,0 @@