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

@searchspring/snap-store-mobx

Package Overview
Dependencies
Maintainers
3
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@searchspring/snap-store-mobx - npm Package Compare versions

Comparing version 0.42.2 to 0.42.3

2

dist/cjs/Autocomplete/AutocompleteStore.js

@@ -50,2 +50,3 @@ "use strict";

sorting: mobx_1.observable,
history: mobx_1.observable,
});

@@ -99,2 +100,3 @@ return _this;

this.state.url = service;
this.initHistory();
}

@@ -101,0 +103,0 @@ }

3

dist/cjs/Search/Stores/SearchResultStore.js

@@ -148,5 +148,2 @@ "use strict";

var adjustedIndex = banner.config.position.index - minIndex;
if (adjustedIndex > productCount - 1) {
adjustedIndex = productCount + index;
}
results.splice(adjustedIndex, 0, banner);

@@ -153,0 +150,0 @@ });

@@ -29,2 +29,3 @@ import { makeObservable, observable } from 'mobx';

sorting: observable,
history: observable,
});

@@ -73,2 +74,3 @@ }

this.state.url = service;
this.initHistory();
}

@@ -75,0 +77,0 @@ }

@@ -108,6 +108,3 @@ import { makeObservable, observable } from 'mobx';

.forEach((banner, index) => {
let adjustedIndex = banner.config.position.index - minIndex;
if (adjustedIndex > productCount - 1) {
adjustedIndex = productCount + index;
}
const adjustedIndex = banner.config.position.index - minIndex;
results.splice(adjustedIndex, 0, banner);

@@ -114,0 +111,0 @@ });

{
"name": "@searchspring/snap-store-mobx",
"version": "0.42.2",
"version": "0.42.3",
"description": "Snap MobX Store",

@@ -23,8 +23,8 @@ "main": "dist/cjs/index.js",

"dependencies": {
"@searchspring/snap-toolbox": "^0.42.2",
"@searchspring/snap-toolbox": "^0.42.3",
"mobx": "^6.6.1"
},
"devDependencies": {
"@searchspring/snap-client": "^0.42.2",
"@searchspring/snap-url-manager": "^0.42.2"
"@searchspring/snap-client": "^0.42.3",
"@searchspring/snap-url-manager": "^0.42.3"
},

@@ -35,3 +35,3 @@ "sideEffects": false,

],
"gitHead": "eb4b7f79368a577a88a310f3627f70cea01d94cb"
"gitHead": "1f4391fecb93cba1e227bee2b965a9903b29c65b"
}

Sorry, the diff of this file is not supported yet

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