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

@brightspace-ui/core

Package Overview
Dependencies
Maintainers
3
Versions
1442
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brightspace-ui/core - npm Package Compare versions

Comparing version 1.8.2 to 1.8.3

15

mixins/localize-mixin.js

@@ -36,2 +36,3 @@ import {

};
this.__updatedProperties = new Map();

@@ -48,11 +49,21 @@ }

removeListener(this.__languageChangeCallback);
this.__updatedProperties.clear();
}
shouldUpdate() {
shouldUpdate(changedProperties) {
const ready = this.__language !== undefined
&& this.__resources !== undefined;
if (!ready) {
changedProperties.forEach((oldValue, propName) => {
this.__updatedProperties.set(propName, oldValue);
});
return false;
}
return super.shouldUpdate();
this.__updatedProperties.forEach((oldValue, propName) => {
if (!changedProperties.has(propName)) {
changedProperties.set(propName, oldValue);
}
});
this.__updatedProperties.clear();
return super.shouldUpdate(changedProperties);
}

@@ -59,0 +70,0 @@

2

package.json
{
"name": "@brightspace-ui/core",
"version": "1.8.2",
"version": "1.8.3",
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",

@@ -5,0 +5,0 @@ "repository": "https://github.com/BrightspaceUI/core.git",

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